Skip to content

Commit 272c402

Browse files
committed
chore: use forked editor dependencies
1 parent a2f9884 commit 272c402

4 files changed

Lines changed: 22 additions & 13 deletions

File tree

lib/data/ssh/persistent_shell.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ final class PersistentShell {
163163

164164
_stdoutSub = session.stdout
165165
.cast<List<int>>()
166-
.transform(const Utf8Decoder(allowMalformed: true))
166+
.transform(const Utf8Decoder(_allowMalformed: true))
167167
.listen(
168168
_handleStdout,
169169
onError: _handleStreamError,
@@ -172,7 +172,7 @@ final class PersistentShell {
172172

173173
_stderrSub = session.stderr
174174
.cast<List<int>>()
175-
.transform(const Utf8Decoder(allowMalformed: true))
175+
.transform(const Utf8Decoder(_allowMalformed: true))
176176
.listen(
177177
_handleStderr,
178178
onError: _handleStreamError,

packages/fl_lib

pubspec.lock

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -723,12 +723,13 @@ packages:
723723
source: hosted
724724
version: "2.2.0"
725725
icons_plus:
726-
dependency: transitive
726+
dependency: "direct main"
727727
description:
728-
name: icons_plus
729-
sha256: "8e2f601b8605d45dd55b106a0da084a1809125077a49574ca22e8bcd5b6e86f0"
730-
url: "https://pub.dev"
731-
source: hosted
728+
path: "."
729+
ref: main
730+
resolved-ref: "42670d29c8c1cffb7203dd110e0009ba98709667"
731+
url: "https://github.com/lollipopkit/icons_plus"
732+
source: git
732733
version: "5.0.0"
733734
image:
734735
dependency: transitive
@@ -1212,10 +1213,11 @@ packages:
12121213
re_editor:
12131214
dependency: "direct main"
12141215
description:
1215-
name: re_editor
1216-
sha256: dd4e6ca7350a8fa0cda4e425b82a0c3c010f0f6b3f618c74223e05b8129ab629
1217-
url: "https://pub.dev"
1218-
source: hosted
1216+
path: "."
1217+
ref: main
1218+
resolved-ref: d5d70020da74082d182301a49e2bb87d30f0ab66
1219+
url: "https://github.com/lollipopkit/re-editor"
1220+
source: git
12191221
version: "0.8.0"
12201222
re_highlight:
12211223
dependency: transitive

pubspec.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ dependencies:
3030
hive_ce_flutter: ^2.3.1
3131
intl: ^0.20.2
3232
json_annotation: ^4.9.0
33-
re_editor: ^0.8.0
33+
re_editor:
34+
git:
35+
url: https://github.com/lollipopkit/re-editor
36+
ref: main
3437
responsive_framework: ^1.5.1
3538
riverpod_annotation: ^4.0.2
3639
shared_preferences: ^2.1.1
@@ -43,6 +46,10 @@ dependencies:
4346
path: packages/dartssh2
4447
circle_chart:
4548
path: packages/circle_chart
49+
icons_plus:
50+
git:
51+
url: https://github.com/lollipopkit/icons_plus
52+
ref: main
4653
xterm:
4754
path: packages/xterm
4855
computer:

0 commit comments

Comments
 (0)