Skip to content

Commit 013d8d5

Browse files
committed
Added session view/editor (with calendar oooo fancy)
1 parent 50b9443 commit 013d8d5

File tree

24 files changed

+2140
-43
lines changed

24 files changed

+2140
-43
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,14 @@ jobs:
1919
runs-on: ubuntu-latest
2020
outputs:
2121
version: ${{ steps.parse.outputs.version }}
22-
flutter_version: ${{ steps.parse.outputs.flutter_version }}
2322
steps:
2423
- uses: actions/checkout@v4
2524
- name: Parse vars.yml
2625
id: parse
2726
run: |
2827
version=$(grep 'name: tk_version' vars.yml -A1 | grep 'value:' | awk '{print $2}')
29-
flutter_version=$(grep 'name: flutter_version' vars.yml -A1 | grep 'value:' | awk '{print $2}')
3028
echo "version=$version" >> "$GITHUB_OUTPUT"
31-
echo "flutter_version=$flutter_version" >> "$GITHUB_OUTPUT"
3229
echo "Version: $version"
33-
echo "Flutter: $flutter_version"
3430
3531
# ── Build Flutter web client ────────────────────────────────────────
3632
build-web-client:
@@ -41,7 +37,6 @@ jobs:
4137
- uses: actions/checkout@v4
4238
- uses: subosito/flutter-action@v2
4339
with:
44-
flutter-version: ${{ needs.read-vars.outputs.flutter_version }}
4540
channel: stable
4641
- name: Generate Flutter Icons
4742
working-directory: client
@@ -187,7 +182,6 @@ jobs:
187182

188183
- uses: subosito/flutter-action@v2
189184
with:
190-
flutter-version: ${{ needs.read-vars.outputs.flutter_version }}
191185
channel: stable
192186

193187
# Android needs Java

.github/workflows/qc.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,6 @@ on:
1111
- master
1212

1313
jobs:
14-
read-vars:
15-
name: Read Variables
16-
runs-on: ubuntu-latest
17-
outputs:
18-
flutter_version: ${{ steps.parse.outputs.flutter_version }}
19-
steps:
20-
- uses: actions/checkout@v4
21-
- name: Parse vars.yml
22-
id: parse
23-
run: |
24-
flutter_version=$(grep 'name: flutter_version' vars.yml -A1 | grep 'value:' | awk '{print $2}')
25-
echo "flutter_version=$flutter_version" >> "$GITHUB_OUTPUT"
26-
echo "Flutter: $flutter_version"
27-
2814
protobuf-check:
2915
name: Protobuf Linting
3016
runs-on: ubuntu-latest
@@ -62,15 +48,13 @@ jobs:
6248
run: cargo clippy --all-targets -- -D warnings
6349

6450
flutter-check:
65-
needs: [read-vars]
6651
runs-on: ubuntu-latest
6752
env:
6853
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6954
steps:
7055
- uses: actions/checkout@v4
7156
- uses: subosito/flutter-action@v2
7257
with:
73-
flutter-version: ${{ needs.read-vars.outputs.flutter_version }}
7458
channel: stable
7559
- run: flutter --version
7660
- name: Get dependencies

client/lib/base/base_rail.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ class BaseRail extends HookConsumerWidget {
5555
label: Text('Team'),
5656
),
5757
NavigationRailDestination(
58-
icon: Icon(Icons.help),
59-
label: Text('Help'),
58+
icon: Icon(Icons.event_note),
59+
label: Text('Sessions'),
6060
),
6161
],
6262
),

0 commit comments

Comments
 (0)