From 3e6dc716506cdc40fbd919ad47264abf1653a0dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 10:24:29 +0000 Subject: [PATCH 1/2] Bump re_editor from 0.9.0 to 0.10.0 Bumps [re_editor](https://github.com/reqable/re-editor) from 0.9.0 to 0.10.0. - [Changelog](https://github.com/reqable/re-editor/blob/main/CHANGELOG.md) - [Commits](https://github.com/reqable/re-editor/commits) --- updated-dependencies: - dependency-name: re_editor dependency-version: 0.10.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pubspec.lock | 4 ++-- pubspec.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index 29f331d..9bcff76 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -700,10 +700,10 @@ packages: dependency: "direct main" description: name: re_editor - sha256: "73e5daf7041b382c07ed707d5efd2d0a53851bb9eb6d6987260229ae0ed2f458" + sha256: "66671c4774a6b4c5254c9a53ab35a083e7e7da9ae371c519bcf491c70a2a4e56" url: "https://pub.dev" source: hosted - version: "0.9.0" + version: "0.10.0" re_highlight: dependency: "direct main" description: diff --git a/pubspec.yaml b/pubspec.yaml index 5dd68a6..d4c119c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -43,7 +43,7 @@ dependencies: meta: ^1.18.0 path: ^1.9.1 path_provider: ^2.1.6 - re_editor: ^0.9.0 + re_editor: ^0.10.0 re_highlight: ^0.0.3 rxdart: ^0.28.0 shared_preferences: ^2.5.5 From 215ac04812ae3a51c72dfa2365e95a2c49b25092 Mon Sep 17 00:00:00 2001 From: TechnicJelle <22576047+TechnicJelle@users.noreply.github.com> Date: Tue, 7 Jul 2026 21:08:15 +0200 Subject: [PATCH 2/2] Fix for re_editor 0.10.0 --- lib/project_view/configs/advanced_editor.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/project_view/configs/advanced_editor.dart b/lib/project_view/configs/advanced_editor.dart index ac10f5e..807a2af 100644 --- a/lib/project_view/configs/advanced_editor.dart +++ b/lib/project_view/configs/advanced_editor.dart @@ -161,7 +161,7 @@ class _AdvancedEditorState extends ConsumerState { onChanged: (_) => hasChanged = true, controller: codeController, wordWrap: false, - sperator: const SizedBox(width: 12), + leadingDivider: const SizedBox(width: 12), scrollbarBuilder: (context, child, details) { return Scrollbar(controller: details.controller, child: child); },