Skip to content

Commit ac043ba

Browse files
committed
Merge branch 'master' into nutrition-plan-stats
# Conflicts: # lib/models/nutrition/nutritional_plan.g.dart # lib/widgets/measurements/charts.dart # lib/widgets/measurements/entries.dart # lib/widgets/weight/weight_overview.dart
2 parents 40dbb76 + 76adb1a commit ac043ba

File tree

90 files changed

+7632
-3665
lines changed

Some content is hidden

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

90 files changed

+7632
-3665
lines changed

.github/actions/flutter-common/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ runs:
99
uses: subosito/flutter-action@v2
1010
with:
1111
channel: stable
12-
flutter-version: 3.32.2
12+
flutter-version: 3.32.8
1313
cache: true
1414

1515
- name: Install Flutter dependencies

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ If applicable, please link to any related issues (`Closes #123`,
1212

1313
- [ ] Tests for the changes have been added (for bug fixes / features)
1414
- [ ] Set a 100 character limit in your editor/IDE to avoid white space diffs in the PR
15-
(run `dart format --line-length=100 .`)
15+
(run `dart format .`)
1616
- [ ] Updated/added relevant documentation (doc comments with `///`).
1717
- [ ] Added relevant reviewers.

.github/workflows/build-android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout application
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
ref: ${{ inputs.ref }}
2222

@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-latest
4747
steps:
4848
- name: Checkout application
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v5
5050
with:
5151
ref: ${{ inputs.ref }}
5252

.github/workflows/build-apple.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,15 @@ jobs:
1111
runs-on: macos-latest
1212
steps:
1313
- name: Checkout application
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
with:
1616
ref: ${{ inputs.ref }}
1717

18+
# This seems to be related to https://github.com/actions/runner-images/issues/12758
19+
- name: Xcode setup
20+
run: |
21+
sudo xcode-select --switch /Applications/Xcode_16.4.app
22+
1823
- name: Common flutter setup
1924
uses: ./.github/actions/flutter-common
2025

@@ -34,13 +39,18 @@ jobs:
3439
runs-on: macos-latest
3540
steps:
3641
- name: Checkout application
37-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
3843
with:
3944
ref: ${{ inputs.ref }}
4045

4146
- name: Common flutter setup
4247
uses: ./.github/actions/flutter-common
4348

49+
# This seems to be related to https://github.com/actions/runner-images/issues/12758
50+
- name: Xcode setup
51+
run: |
52+
sudo xcode-select --switch /Applications/Xcode_16.4.app
53+
4454
- name: Build .xcarchive
4555
run: |
4656
flutter build ipa --release --no-codesign
@@ -57,7 +67,7 @@ jobs:
5767
runs-on: macos-latest
5868
steps:
5969
- name: Checkout application
60-
uses: actions/checkout@v4
70+
uses: actions/checkout@v5
6171
with:
6272
ref: ${{ inputs.ref }}
6373

.github/workflows/build-linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# runner: ubuntu-24.04-arm
2626
steps:
2727
- name: Checkout application
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
with:
3030
ref: ${{ inputs.ref }}
3131

@@ -56,14 +56,14 @@ jobs:
5656
steps:
5757

5858
- name: Checkout flatpak-flathub repo
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v5
6060
with:
6161
repository: wger-project/de.wger.flutter
6262

6363
- name: Bump version and update manifest
6464
run: |
65-
pip install pyyaml toml
66-
git clone https://github.com/TheAppgineer/flatpak-flutter.git --branch 0.7.0 ../flatpak-flutter
65+
pip install pyyaml toml packaging
66+
git clone https://github.com/TheAppgineer/flatpak-flutter.git --branch 0.7.2 ../flatpak-flutter
6767
python bump-wger-version.py ${{ inputs.ref }}
6868
../flatpak-flutter/flatpak-flutter.py --app-module wger flatpak-flutter.json
6969

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: windows-latest
1616
steps:
1717
- name: Checkout application
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
with:
2020
ref: ${{ inputs.ref }}
2121

.github/workflows/bump-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414

1515
- name: Checkout application
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0 # needed to push changes
1919
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Run tests
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121

2222
- name: Common flutter setup
2323
uses: ./.github/actions/flutter-common

.github/workflows/linter.yml.bak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: flutter pub get
2727

2828
- name: Check for formatting issues (run "dart format . ")
29-
run: dart format --line-length=100 .
29+
run: dart format .
3030

3131
- name: Push a commit with the changed files
3232
continue-on-error: true

.github/workflows/make-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ jobs:
6161
- build_linux
6262
steps:
6363
- name: Checkout application
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v5
6565
with:
6666
ref: ${{ github.event.inputs.version }}
6767

6868
- name: Download builds
69-
uses: actions/download-artifact@v4
69+
uses: actions/download-artifact@v5
7070
with:
7171
path: /tmp/
7272

@@ -105,7 +105,7 @@ jobs:
105105
# - build_apple
106106
# steps:
107107
# - name: Checkout application
108-
# uses: actions/checkout@v4
108+
# uses: actions/checkout@v5
109109
# with:
110110
# ref: feature/build-process
111111
# # ref: ${{ github.event.inputs.version }}
@@ -114,7 +114,7 @@ jobs:
114114
# uses: ./.github/actions/flutter-common
115115
#
116116
# - name: Download builds
117-
# uses: actions/download-artifact@v4
117+
# uses: actions/download-artifact@v5
118118
# with:
119119
# path: /tmp/
120120
#
@@ -133,7 +133,7 @@ jobs:
133133

134134
steps:
135135
- name: Download builds
136-
uses: actions/download-artifact@v4
136+
uses: actions/download-artifact@v5
137137

138138
- name: Make Github release
139139
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)