Skip to content

Commit 9ced725

Browse files
committed
Update to 0.4.0
1 parent cccda29 commit 9ced725

File tree

9 files changed

+221
-200
lines changed

9 files changed

+221
-200
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,17 @@ jobs:
8888
name: apk-x86_64-build
8989
path: app/linwood-flow-android-x86_64.apk
9090
build-windows:
91-
runs-on: windows-2022
91+
runs-on: windows-2025
9292
defaults:
9393
run:
9494
working-directory: app
9595
steps:
9696
- name: ⬆️ Checkout
9797
uses: actions/checkout@v4
9898
- name: Make yq tool available on Windows runners
99-
run: choco install yq
99+
run: |
100+
choco install yq
101+
choco install innosetup
100102
- uses: subosito/[email protected]
101103
with:
102104
flutter-version-file: app/pubspec.yaml
@@ -189,7 +191,9 @@ jobs:
189191
cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:'
190192
cache-path: '${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:'
191193
- name: ✅ Enable platforms
192-
run: flutter config --enable-linux-desktop
194+
run: |
195+
rm -f "$(dirname "$(dirname "$(command -v flutter)")")/engine/src/.gn"
196+
flutter config --enable-linux-desktop
193197
- name: 📦 Get dependencies
194198
run: |
195199
flutter clean
@@ -208,6 +212,10 @@ jobs:
208212
- name: 🏭 Make binary executable
209213
run: |
210214
chmod +x build/linux/${{ matrix.arch.dir }}/release/bundle/flow
215+
- name: Update files to arm64
216+
if: ${{ matrix.arch.name == 'arm64' }}
217+
run: |
218+
sed -i 's/^Architecture: amd64/Architecture: arm64/' linux/debian/DEBIAN/control
211219
- name: Build .deb executable
212220
run: |
213221
cp -fr build/linux/${{ matrix.arch.dir }}/release/bundle linux/debian/usr/bin
@@ -312,7 +320,9 @@ jobs:
312320
cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:'
313321
cache-path: '${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:'
314322
- name: ✅ Enable platforms
315-
run: flutter config --enable-linux-desktop
323+
run: |
324+
rm -f "$(dirname "$(dirname "$(command -v flutter)")")/engine/src/.gn"
325+
flutter config --enable-linux-desktop
316326
- name: 📦 Get dependencies
317327
run: |
318328
flutter clean
@@ -560,7 +570,9 @@ jobs:
560570
name: ipa-build
561571
- name: 📦 Zip artifacts
562572
run: |
563-
zip -r linwood-flow-windows-x86_64.zip windows-build/*
573+
cd windows-build
574+
zip -r ../linwood-flow-windows-x86_64.zip *
575+
cd ..
564576
tar -C linux-x86_64-build -czf linwood-flow-linux-x86_64.tar.gz .
565577
tar -C linux-arm64-build -czf linwood-flow-linux-arm64.tar.gz .
566578
tar -C linux-x86_64-alternative-build -czf linwood-flow-linux-alternative-x86_64.tar.gz .

app/AppImageBuilder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ AppDir:
1111
id: dev.linwood.flow
1212
name: Linwood Flow
1313
icon: dev.linwood.flow
14-
version: 0.3.2
14+
version: 0.4.0
1515
exec: flow
1616
exec_args: $@
1717
apt:

app/android/Gemfile.lock

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ GEM
1010
artifactory (3.0.17)
1111
atomos (0.1.3)
1212
aws-eventstream (1.3.1)
13-
aws-partitions (1.1051.0)
14-
aws-sdk-core (3.218.1)
13+
aws-partitions (1.1059.0)
14+
aws-sdk-core (3.219.0)
1515
aws-eventstream (~> 1, >= 1.3.0)
1616
aws-partitions (~> 1, >= 1.992.0)
1717
aws-sigv4 (~> 1.9)
1818
base64
1919
jmespath (~> 1, >= 1.6.1)
20-
aws-sdk-kms (1.98.0)
20+
aws-sdk-kms (1.99.0)
2121
aws-sdk-core (~> 3, >= 3.216.0)
2222
aws-sigv4 (~> 1.5)
23-
aws-sdk-s3 (1.181.0)
23+
aws-sdk-s3 (1.182.0)
2424
aws-sdk-core (~> 3, >= 3.216.0)
2525
aws-sdk-kms (~> 1)
2626
aws-sigv4 (~> 1.5)
@@ -153,7 +153,8 @@ GEM
153153
highline (2.0.3)
154154
http-cookie (1.0.8)
155155
domain_name (~> 0.5)
156-
httpclient (2.8.3)
156+
httpclient (2.9.0)
157+
mutex_m
157158
jmespath (1.6.2)
158159
json (2.10.1)
159160
jwt (2.10.1)
@@ -162,6 +163,7 @@ GEM
162163
mini_mime (1.1.5)
163164
multi_json (1.15.0)
164165
multipart-post (2.4.1)
166+
mutex_m (0.3.0)
165167
nanaimo (0.4.0)
166168
naturally (2.2.1)
167169
nkf (0.2.0)
@@ -225,4 +227,4 @@ DEPENDENCIES
225227
screengrab
226228

227229
BUNDLED WITH
228-
2.6.4
230+
2.6.5

app/linux/debian/DEBIAN/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: linwood-flow
2-
Version: 0.3.2
2+
Version: 0.4.0
33
Section: base
44
Priority: optional
55
Homepage: https://github.com/LinwoodDev/Flo

app/pubspec.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ packages:
2929
dependency: transitive
3030
description:
3131
name: archive
32-
sha256: "528579c7e4579719f04b21eeeeddfd73a18b31dabc22766893b7d1be7f49b967"
32+
sha256: "0c64e928dcbefddecd234205422bcfc2b5e6d31be0b86fef0d0dd48d7b4c9742"
3333
url: "https://pub.dev"
3434
source: hosted
35-
version: "4.0.3"
35+
version: "4.0.4"
3636
args:
3737
dependency: "direct main"
3838
description:
@@ -262,10 +262,10 @@ packages:
262262
dependency: transitive
263263
description:
264264
name: dev_build
265-
sha256: "8e215c30e555d6f5b0619f50be2c3f49c0bf9bf4426a3dcddf0654f943420b4b"
265+
sha256: f658f2fbf601b40d103fb9cb8db277da0a2022173950aa2aadf0f8cbcdf7c8c3
266266
url: "https://pub.dev"
267267
source: hosted
268-
version: "1.1.2+4"
268+
version: "1.1.2+5"
269269
dynamic_color:
270270
dependency: "direct main"
271271
description:
@@ -402,10 +402,10 @@ packages:
402402
dependency: "direct main"
403403
description:
404404
name: flutter_bloc
405-
sha256: "153856bdaac302bbdc58a1d1403d50c40557254aa05eaeed40515d88a25a526b"
405+
sha256: "1046d719fbdf230330d3443187cc33cc11963d15c9089f6cc56faa42a4c5f0cc"
406406
url: "https://pub.dev"
407407
source: hosted
408-
version: "9.0.0"
408+
version: "9.1.0"
409409
flutter_lints:
410410
dependency: "direct dev"
411411
description:
@@ -1113,10 +1113,10 @@ packages:
11131113
dependency: "direct main"
11141114
description:
11151115
name: sqflite_common_ffi_web
1116-
sha256: "61ea702e7aba727f28be7ead00b84c19c745cd4a4934d0c41473303df11ac9ea"
1116+
sha256: "983cf7b33b16e6bc086c8e09f6a1fae69d34cdb167d7acaf64cbd3515942d4e6"
11171117
url: "https://pub.dev"
11181118
source: hosted
1119-
version: "0.4.5+4"
1119+
version: "1.0.0"
11201120
sqflite_darwin:
11211121
dependency: transitive
11221122
description:

app/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
1515
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
1616
# Read more about iOS versioning at
1717
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
18-
version: 0.3.2+9
18+
version: 0.4.0+9
1919

2020
environment:
2121
sdk: ">=3.0.0 <4.0.0"
@@ -53,7 +53,7 @@ dependencies:
5353
sqflite_common: ^2.5.3
5454
sqflite: ^2.3.3
5555
sqflite_common_ffi: ^2.3.3
56-
sqflite_common_ffi_web: ^0.4.3+1
56+
sqflite_common_ffi_web: ^1.0.0
5757
sqlite3_flutter_libs: ^0.5.20
5858
sqlite3: ^2.4.2
5959
dynamic_color: ^1.7.0

docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
"@phosphor-icons/react": "^2.1.7",
1717
"@types/react": "^19.0.10",
1818
"@types/react-dom": "^19.0.4",
19-
"astro": "^5.4.0",
19+
"astro": "^5.4.1",
2020
"react": "^19.0.0",
2121
"react-dom": "^19.0.0",
2222
"remark-gemoji": "^8.0.0",
2323
"remark-heading-id": "^1.0.1",
24-
"typescript": "^5.7.3"
24+
"typescript": "^5.8.2"
2525
},
2626
"packageManager": "[email protected]",
2727
"devDependencies": {

0 commit comments

Comments
 (0)