Compare commits

...

1 Commits

Author SHA1 Message Date
0d42fad708 v1.4.7+68
All checks were successful
Flutter Schmutter / build (push) Successful in 3m37s
2025-06-23 16:32:15 +02:00
3 changed files with 12 additions and 7 deletions

View File

@ -41,7 +41,7 @@ jobs:
TAR_OPTIONS: --no-same-owner TAR_OPTIONS: --no-same-owner
- name: build apk - name: build apk
run: flutter build apk --release run: flutter build apk --release --split-per-abi -v
- name: release-build - name: release-build
uses: akkuman/gitea-release-action@v1 uses: akkuman/gitea-release-action@v1
@ -49,7 +49,9 @@ jobs:
NODE_OPTIONS: '--experimental-fetch' NODE_OPTIONS: '--experimental-fetch'
with: with:
files: |- files: |-
build/app/outputs/flutter-apk/app-release.apk build/app/outputs/flutter-apk/app-armeabi-v7a-release.apk
build/app/outputs/flutter-apk/app-arm64-v8a-release.apk
build/app/outputs/flutter-apk/app-x86_64-release.apk
token: '${{secrets.RELEASE_TOKEN}}' token: '${{secrets.RELEASE_TOKEN}}'
- name: upload apk to f-droid server - name: upload apk to f-droid server
@ -57,5 +59,5 @@ jobs:
BUILD_NUMBER=$(grep '^version:' pubspec.yaml | sed 's/.*+//') BUILD_NUMBER=$(grep '^version:' pubspec.yaml | sed 's/.*+//')
curl -X POST "https://flumm.io/pullfdroid.php" \ curl -X POST "https://flumm.io/pullfdroid.php" \
-F "token=${{ secrets.PULLER_TOKEN }}" \ -F "token=${{ secrets.PULLER_TOKEN }}" \
-F "apk=@build/app/outputs/flutter-apk/app-release.apk" \ -F "apk=@build/app/outputs/flutter-apk/app-arm64-v8a-release.apk" \
-F "build=$BUILD_NUMBER" -F "build=$BUILD_NUMBER"

View File

@ -359,10 +359,13 @@ class _MediaDetailScreenState extends State<MediaDetailScreen> {
} }
final MediaItem currentItem = final MediaItem currentItem =
mediaController.items[_currentIndex.value]; mediaController.items[_currentIndex.value];
final bool hasSoftButtons = MediaQuery.of(context).padding.bottom > 24.0;
return DraggableScrollableSheet( return DraggableScrollableSheet(
initialChildSize: 0.11, initialChildSize: hasSoftButtons ? 0.11 : 0.2,
minChildSize: 0.11, minChildSize: hasSoftButtons ? 0.11 : 0.2,
maxChildSize: 0.245, maxChildSize: hasSoftButtons ? 0.245 : 0.2,
snap: true, snap: true,
builder: (context, scrollController) => ListView( builder: (context, scrollController) => ListView(
controller: scrollController, controller: scrollController,

View File

@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts # In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix. # of the product and file versions while build-number is used as the build suffix.
version: 1.4.6+67 version: 1.4.7+68
environment: environment:
sdk: ^3.9.0-100.2.beta sdk: ^3.9.0-100.2.beta