Skip to content

Commit 67f3179

Browse files
authored
Merge pull request #682 from wger-project/feature/flexible-routines
Flutter changes for the flexible routines
2 parents e3abcf2 + 4fe4d48 commit 67f3179

File tree

620 files changed

+17173
-8414
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

620 files changed

+17173
-8414
lines changed

.github/workflows/build-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: subosito/flutter-action@v2
2727
with:
2828
channel: stable
29-
flutter-version: 3.27.x
29+
flutter-version: 3.29.x
3030

3131
- name: Flutter info
3232
run: |

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
cache: true
2222
channel: 'stable'
23-
flutter-version: '3.27.x'
23+
flutter-version: '3.29.x'
2424

2525
- run: dart --version
2626
- run: flutter --version

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,4 @@ app.*.map.json
5353
# Others
5454
/vendor/bundle/ruby/
5555
/coverage/
56+
/lib/l10n/generated/

Gemfile.lock

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,18 @@ GEM
1010
public_suffix (>= 2.0.2, < 7.0)
1111
artifactory (3.0.17)
1212
atomos (0.1.3)
13-
aws-eventstream (1.3.0)
14-
aws-partitions (1.1042.0)
15-
aws-sdk-core (3.216.1)
13+
aws-eventstream (1.3.2)
14+
aws-partitions (1.1065.0)
15+
aws-sdk-core (3.220.1)
1616
aws-eventstream (~> 1, >= 1.3.0)
1717
aws-partitions (~> 1, >= 1.992.0)
1818
aws-sigv4 (~> 1.9)
19+
base64
1920
jmespath (~> 1, >= 1.6.1)
20-
aws-sdk-kms (1.97.0)
21+
aws-sdk-kms (1.99.0)
2122
aws-sdk-core (~> 3, >= 3.216.0)
2223
aws-sigv4 (~> 1.5)
23-
aws-sdk-s3 (1.178.0)
24+
aws-sdk-s3 (1.182.0)
2425
aws-sdk-core (~> 3, >= 3.216.0)
2526
aws-sdk-kms (~> 1)
2627
aws-sigv4 (~> 1.5)
@@ -34,7 +35,7 @@ GEM
3435
commander (4.6.0)
3536
highline (~> 2.0.0)
3637
declarative (0.0.20)
37-
digest-crc (0.6.5)
38+
digest-crc (0.7.0)
3839
rake (>= 12.0.0, < 14.0.0)
3940
domain_name (0.6.20240107)
4041
dotenv (2.8.1)
@@ -131,12 +132,12 @@ GEM
131132
google-apis-core (>= 0.11.0, < 2.a)
132133
google-apis-storage_v1 (0.31.0)
133134
google-apis-core (>= 0.11.0, < 2.a)
134-
google-cloud-core (1.7.1)
135+
google-cloud-core (1.8.0)
135136
google-cloud-env (>= 1.0, < 3.a)
136137
google-cloud-errors (~> 1.0)
137138
google-cloud-env (1.6.0)
138139
faraday (>= 0.17.3, < 3.0)
139-
google-cloud-errors (1.4.0)
140+
google-cloud-errors (1.5.0)
140141
google-cloud-storage (1.47.0)
141142
addressable (~> 2.8)
142143
digest-crc (~> 0.4)
@@ -154,9 +155,10 @@ GEM
154155
highline (2.0.3)
155156
http-cookie (1.0.8)
156157
domain_name (~> 0.5)
157-
httpclient (2.8.3)
158+
httpclient (2.9.0)
159+
mutex_m
158160
jmespath (1.6.2)
159-
json (2.9.1)
161+
json (2.10.2)
160162
jwt (2.10.1)
161163
base64
162164
logger (1.6.5)
@@ -178,7 +180,7 @@ GEM
178180
trailblazer-option (>= 0.1.1, < 0.2.0)
179181
uber (< 0.2.0)
180182
retriable (3.1.2)
181-
rexml (3.4.0)
183+
rexml (3.4.1)
182184
rouge (3.28.0)
183185
ruby2_keywords (0.0.5)
184186
rubyzip (2.4.1)

README.md

Lines changed: 7 additions & 22 deletions

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ if (keystorePropertiesFile.exists()) {
2323

2424
android {
2525
namespace = "de.wger.flutter"
26-
compileSdkVersion 34
27-
ndkVersion "25.1.8937393"
26+
compileSdkVersion 35
27+
ndkVersion "26.3.11579264"
2828

2929
compileOptions {
3030
sourceCompatibility JavaVersion.VERSION_11

android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
android:name="${applicationName}"
2727
android:label="wger"
2828
android:icon="@mipmap/ic_launcher"
29+
android:enableOnBackInvokedCallback="true"
2930
android:networkSecurityConfig="@xml/network_security_config">
3031

3132
<meta-data
Lines changed: 1 addition & 45 deletions
-22.6 KB
13.3 KB

0 commit comments

Comments
 (0)