Compare commits

..

4 Commits

Author SHA1 Message Date
lollipopkit🏳️‍⚧️
aacda6c6f8 refactor: move direct-included repos under packages 2026-02-06 14:54:42 +08:00
lollipopkit🏳️‍⚧️
4b06f508c0 fix: scope analysis to app sources 2026-02-06 14:44:18 +08:00
lollipopkit🏳️‍⚧️
10ee4242e7 fix: checkout submodules in analysis workflow 2026-02-06 14:41:23 +08:00
lollipopkit🏳️‍⚧️
d4f053f843 opt.: include core repos via submodules 2026-02-06 14:38:27 +08:00
9 changed files with 43 additions and 33 deletions

View File

@@ -19,6 +19,7 @@ jobs:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
with: with:
fetch-depth: 1 fetch-depth: 1
submodules: recursive
- uses: subosito/flutter-action@v2 - uses: subosito/flutter-action@v2
with: with:
@@ -29,7 +30,7 @@ jobs:
# Consider passing '--fatal-infos' for slightly stricter analysis. # Consider passing '--fatal-infos' for slightly stricter analysis.
- name: Analyze project source - name: Analyze project source
run: dart analyze run: flutter analyze lib test
# Your project will need to have tests in test/ and a dependency on # Your project will need to have tests in test/ and a dependency on
# package:test for this step to succeed. Note that Flutter projects will # package:test for this step to succeed. Note that Flutter projects will

20
.gitmodules vendored Normal file
View File

@@ -0,0 +1,20 @@
[submodule "dartssh2"]
path = packages/dartssh2
url = https://github.com/lollipopkit/dartssh2
branch = master
[submodule "xterm"]
path = packages/xterm
url = https://github.com/lollipopkit/xterm.dart
branch = master
[submodule "fl_lib"]
path = packages/fl_lib
url = https://github.com/lollipopkit/fl_lib
branch = main
[submodule "fl_build"]
path = packages/fl_build
url = https://github.com/lppcg/fl_build.git
branch = main
[submodule "server_box_monitor"]
path = packages/server_box_monitor
url = https://github.com/lollipopkit/server_box_monitor
branch = main

1
packages/dartssh2 Submodule

Submodule packages/dartssh2 added at b6c1c7b42f

1
packages/fl_build Submodule

Submodule packages/fl_build added at 61ee37ea6f

1
packages/fl_lib Submodule

Submodule packages/fl_lib added at 5a653c5d82

1
packages/xterm Submodule

Submodule packages/xterm added at cdd22e4d0c

View File

@@ -366,11 +366,9 @@ packages:
dartssh2: dartssh2:
dependency: "direct main" dependency: "direct main"
description: description:
path: "." path: "packages/dartssh2"
ref: "v1.0.293" relative: true
resolved-ref: "3eedfd55916eede70aeb28605469a43623a9791b" source: path
url: "https://github.com/lollipopkit/dartssh2"
source: git
version: "2.12.0" version: "2.12.0"
dbus: dbus:
dependency: transitive dependency: transitive
@@ -479,11 +477,9 @@ packages:
fl_build: fl_build:
dependency: "direct dev" dependency: "direct dev"
description: description:
path: "." path: "packages/fl_build"
ref: "v1.0.53" relative: true
resolved-ref: "61ee37ea6f082592f5be56340b7746dce4ffbfda" source: path
url: "https://github.com/lppcg/fl_build.git"
source: git
version: "1.0.0" version: "1.0.0"
fl_chart: fl_chart:
dependency: "direct main" dependency: "direct main"
@@ -496,11 +492,9 @@ packages:
fl_lib: fl_lib:
dependency: "direct main" dependency: "direct main"
description: description:
path: "." path: "packages/fl_lib"
ref: "v1.0.363" relative: true
resolved-ref: "4b745be6f33b2e7f274d44f26175df440345cefb" source: path
url: "https://github.com/lollipopkit/fl_lib"
source: git
version: "0.0.1" version: "0.0.1"
flutter: flutter:
dependency: "direct main" dependency: "direct main"
@@ -1861,11 +1855,9 @@ packages:
xterm: xterm:
dependency: "direct main" dependency: "direct main"
description: description:
path: "." path: "packages/xterm"
ref: "v4.0.13" relative: true
resolved-ref: "6343b0e5f744d2c11090d34690ad5049ebbc599b" source: path
url: "https://github.com/lollipopkit/xterm.dart"
source: git
version: "4.0.0" version: "4.0.0"
yaml: yaml:
dependency: transitive dependency: transitive

View File

@@ -40,17 +40,13 @@ dependencies:
xml: ^6.4.2 # for parsing nvidia-smi xml: ^6.4.2 # for parsing nvidia-smi
url_launcher: ^6.2.6 url_launcher: ^6.2.6
dartssh2: dartssh2:
git: path: packages/dartssh2
url: https://github.com/lollipopkit/dartssh2
ref: v1.0.293
circle_chart: circle_chart:
git: git:
url: https://github.com/lollipopkit/circle_chart url: https://github.com/lollipopkit/circle_chart
ref: main ref: main
xterm: xterm:
git: path: packages/xterm
url: https://github.com/lollipopkit/xterm.dart
ref: v4.0.13
computer: computer:
git: git:
url: https://github.com/lollipopkit/dart_computer url: https://github.com/lollipopkit/dart_computer
@@ -64,9 +60,7 @@ dependencies:
url: https://github.com/lollipopkit/plain_notification_token url: https://github.com/lollipopkit/plain_notification_token
ref: v1.0.23 ref: v1.0.23
fl_lib: fl_lib:
git: path: packages/fl_lib
url: https://github.com/lollipopkit/fl_lib
ref: v1.0.363
dependency_overrides: dependency_overrides:
# webdav_client_plus: # webdav_client_plus:
@@ -101,9 +95,7 @@ dev_dependencies:
# url: https://github.com/lollipopkit/riverpod_reg # url: https://github.com/lollipopkit/riverpod_reg
# ref: v0.0.2 # ref: v0.0.2
fl_build: fl_build:
git: path: packages/fl_build
url: https://github.com/lppcg/fl_build.git
ref: v1.0.53
flutter: flutter:
generate: true generate: true