Skip to content

Commit 9ecaeb8

Browse files
committed
Add state setter for lua
1 parent ee313fc commit 9ecaeb8

21 files changed

+732
-720
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,9 @@ jobs:
205205
cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:'
206206
cache-path: '${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:'
207207
- name: ✅ Enable platforms
208-
run: flutter config --enable-linux-desktop
208+
run: |
209+
rm -f "$(dirname "$(dirname "$(command -v flutter)")")/engine/src/.gn"
210+
flutter config --enable-linux-desktop
209211
- name: 📦 Get dependencies
210212
run: |
211213
flutter clean
@@ -231,6 +233,10 @@ jobs:
231233
- name: 🏭 Make binary executable
232234
run: |
233235
chmod +x build/linux/${{ matrix.arch.dir }}/release/bundle/setonix
236+
- name: Update files to arm64
237+
if: ${{ matrix.arch.name == 'arm64' }}
238+
run: |
239+
sed -i 's/^Architecture: amd64/Architecture: arm64/' linux/debian/DEBIAN/control
234240
- name: Build .deb executable
235241
run: |
236242
cp -fr build/linux/${{ matrix.arch.dir }}/release/bundle linux/debian/usr/bin
@@ -335,7 +341,9 @@ jobs:
335341
cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:'
336342
cache-path: '${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:'
337343
- name: ✅ Enable platforms
338-
run: flutter config --enable-linux-desktop
344+
run: |
345+
rm -f "$(dirname "$(dirname "$(command -v flutter)")")/engine/src/.gn"
346+
flutter config --enable-linux-desktop
339347
- name: 📦 Get dependencies
340348
run: |
341349
flutter clean

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ jobs:
231231
echo '' >> $GITHUB_ENV
232232
echo 'EOF' >> $GITHUB_ENV
233233
- name: Discord Webhook Action
234-
uses: tsickert/discord-webhook@v6.0.0
234+
uses: tsickert/discord-webhook@v7.0.0
235235
if: ${{ github.event.inputs.stable == 'true' || github.ref == 'refs/heads/main' }}
236236
with:
237237
webhook-url: ${{ secrets.WEBHOOK_URL }}
@@ -243,7 +243,7 @@ jobs:
243243
Download it here: https://setonix.world/downloads
244244
https://github.com/LinwoodDev/Setonix/releases/tag/v${{ env.SETONIX_VERSION }}
245245
- name: Discord Webhook Action
246-
uses: tsickert/discord-webhook@v6.0.0
246+
uses: tsickert/discord-webhook@v7.0.0
247247
if: ${{ github.event.inputs.stable == 'false' && github.ref == 'refs/heads/develop' }}
248248
with:
249249
webhook-url: ${{ secrets.WEBHOOK_URL }}

api/pubspec.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ packages:
2929
dependency: "direct main"
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: transitive
3838
description:
@@ -117,10 +117,10 @@ packages:
117117
dependency: transitive
118118
description:
119119
name: built_value
120-
sha256: "28a712df2576b63c6c005c465989a348604960c0958d28be5303ba9baa841ac2"
120+
sha256: "8b158ab94ec6913e480dc3f752418348b5ae099eb75868b5f4775f0572999c61"
121121
url: "https://pub.dev"
122122
source: hosted
123-
version: "8.9.3"
123+
version: "8.9.4"
124124
checked_yaml:
125125
dependency: transitive
126126
description:
@@ -512,10 +512,10 @@ packages:
512512
dependency: transitive
513513
description:
514514
name: web
515-
sha256: cd3543bd5798f6ad290ea73d210f423502e71900302dde696f8bff84bf89a1cb
515+
sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
516516
url: "https://pub.dev"
517517
source: hosted
518-
version: "1.1.0"
518+
version: "1.1.1"
519519
web_socket:
520520
dependency: transitive
521521
description:

app/android/Gemfile.lock

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ GEM
1010
artifactory (3.0.17)
1111
atomos (0.1.3)
1212
aws-eventstream (1.3.1)
13-
aws-partitions (1.1054.0)
14-
aws-sdk-core (3.219.0)
13+
aws-partitions (1.1061.0)
14+
aws-sdk-core (3.220.0)
1515
aws-eventstream (~> 1, >= 1.3.0)
1616
aws-partitions (~> 1, >= 1.992.0)
1717
aws-sigv4 (~> 1.9)
@@ -135,7 +135,7 @@ GEM
135135
google-cloud-errors (~> 1.0)
136136
google-cloud-env (1.6.0)
137137
faraday (>= 0.17.3, < 3.0)
138-
google-cloud-errors (1.4.0)
138+
google-cloud-errors (1.5.0)
139139
google-cloud-storage (1.47.0)
140140
addressable (~> 2.8)
141141
digest-crc (~> 0.4)
@@ -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)

app/pubspec.lock

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ packages:
2929
dependency: "direct main"
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: transitive
3838
description:
@@ -149,10 +149,10 @@ packages:
149149
dependency: transitive
150150
description:
151151
name: built_value
152-
sha256: "28a712df2576b63c6c005c465989a348604960c0958d28be5303ba9baa841ac2"
152+
sha256: "8b158ab94ec6913e480dc3f752418348b5ae099eb75868b5f4775f0572999c61"
153153
url: "https://pub.dev"
154154
source: hosted
155-
version: "8.9.3"
155+
version: "8.9.4"
156156
characters:
157157
dependency: transitive
158158
description:
@@ -254,10 +254,10 @@ packages:
254254
dependency: "direct main"
255255
description:
256256
name: device_info_plus
257-
sha256: "72d146c6d7098689ff5c5f66bcf593ac11efc530095385356e131070333e64da"
257+
sha256: "306b78788d1bb569edb7c55d622953c2414ca12445b41c9117963e03afc5c513"
258258
url: "https://pub.dev"
259259
source: hosted
260-
version: "11.3.0"
260+
version: "11.3.3"
261261
device_info_plus_platform_interface:
262262
dependency: transitive
263263
description:
@@ -419,10 +419,10 @@ packages:
419419
dependency: "direct main"
420420
description:
421421
name: flutter_bloc
422-
sha256: "153856bdaac302bbdc58a1d1403d50c40557254aa05eaeed40515d88a25a526b"
422+
sha256: "1046d719fbdf230330d3443187cc33cc11963d15c9089f6cc56faa42a4c5f0cc"
423423
url: "https://pub.dev"
424424
source: hosted
425-
version: "9.0.0"
425+
version: "9.1.0"
426426
flutter_driver:
427427
dependency: transitive
428428
description: flutter
@@ -556,10 +556,10 @@ packages:
556556
dependency: "direct main"
557557
description:
558558
name: go_router
559-
sha256: "04539267a740931c6d4479a10d466717ca5901c6fdfd3fcda09391bbb8ebd651"
559+
sha256: f02fd7d2a4dc512fec615529824fdd217fecb3a3d3de68360293a551f21634b3
560560
url: "https://pub.dev"
561561
source: hosted
562-
version: "14.8.0"
562+
version: "14.8.1"
563563
graphs:
564564
dependency: transitive
565565
description:
@@ -596,10 +596,10 @@ packages:
596596
dependency: "direct main"
597597
description:
598598
name: idb_shim
599-
sha256: "2fe625a67b693ae9b7d02bc8f3ff7c5176ab6be5c9e4ac2cd11924fbb54b5a6c"
599+
sha256: "57b08ee7adb01931a05de88e74e6a7f6fd91e84368f00a79ee6b3fdd07e7ac43"
600600
url: "https://pub.dev"
601601
source: hosted
602-
version: "2.6.2"
602+
version: "2.6.4+1"
603603
integration_test:
604604
dependency: "direct dev"
605605
description: flutter
@@ -1022,10 +1022,10 @@ packages:
10221022
dependency: transitive
10231023
description:
10241024
name: sembast
1025-
sha256: f90377eb5ef66ac5a42d7afd72f4f900c436a2528d6b67b318fb2b9f5484bbe5
1025+
sha256: "06b0274ca48ea92aedeab62303fc9ade3272684c842e9447be3e9b040f935559"
10261026
url: "https://pub.dev"
10271027
source: hosted
1028-
version: "3.8.4"
1028+
version: "3.8.4+1"
10291029
setonix_api:
10301030
dependency: "direct main"
10311031
description:
@@ -1068,10 +1068,10 @@ packages:
10681068
dependency: transitive
10691069
description:
10701070
name: shared_preferences_android
1071-
sha256: a768fc8ede5f0c8e6150476e14f38e2417c0864ca36bb4582be8e21925a03c22
1071+
sha256: "9f9f3d372d4304723e6136663bb291c0b93f5e4c8a4a6314347f481a33bda2b1"
10721072
url: "https://pub.dev"
10731073
source: hosted
1074-
version: "2.4.6"
1074+
version: "2.4.7"
10751075
shared_preferences_foundation:
10761076
dependency: transitive
10771077
description:
@@ -1377,10 +1377,10 @@ packages:
13771377
dependency: transitive
13781378
description:
13791379
name: web
1380-
sha256: cd3543bd5798f6ad290ea73d210f423502e71900302dde696f8bff84bf89a1cb
1380+
sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
13811381
url: "https://pub.dev"
13821382
source: hosted
1383-
version: "1.1.0"
1383+
version: "1.1.1"
13841384
web_socket:
13851385
dependency: transitive
13861386
description:
@@ -1417,10 +1417,10 @@ packages:
14171417
dependency: transitive
14181418
description:
14191419
name: win32_registry
1420-
sha256: "21ec76dfc731550fd3e2ce7a33a9ea90b828fdf19a5c3bcf556fa992cfa99852"
1420+
sha256: "6f1b564492d0147b330dd794fee8f512cec4977957f310f9951b5f9d83618dae"
14211421
url: "https://pub.dev"
14221422
source: hosted
1423-
version: "1.1.5"
1423+
version: "2.1.0"
14241424
window_manager:
14251425
dependency: "direct main"
14261426
description:

0 commit comments

Comments
 (0)