Merge branch 'develop'
This commit is contained in:
commit
363052f03e
5 changed files with 31 additions and 21 deletions
|
@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
## <a id="unreleased"></a>[Unreleased]
|
||||
|
||||
## <a id="v1.6.5"></a>[v1.6.5] - 2022-05-25
|
||||
## <a id="v1.6.6"></a>[v1.6.6] - 2022-05-25
|
||||
|
||||
### Added
|
||||
|
||||
|
@ -27,6 +27,8 @@ All notable changes to this project will be documented in this file.
|
|||
- Android scrolling screenshot support
|
||||
- Voice Access scrolling support
|
||||
|
||||
## <a id="v1.6.5"></a>[v1.6.5] - 2022-05-25 [YANKED]
|
||||
|
||||
## <a id="v1.6.4"></a>[v1.6.4] - 2022-04-19
|
||||
|
||||
### Added
|
||||
|
|
5
fastlane/metadata/android/en-US/changelogs/1072.txt
Normal file
5
fastlane/metadata/android/en-US/changelogs/1072.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
In v1.6.6:
|
||||
- bottom navigation bar
|
||||
- fast scroll with breadcrumbs
|
||||
- settings search
|
||||
Full changelog available on GitHub
|
|
@ -2,6 +2,7 @@ import 'package:aves/model/settings/settings.dart';
|
|||
import 'package:aves/theme/durations.dart';
|
||||
import 'package:aves/widgets/aves_app.dart';
|
||||
import 'package:aves/widgets/common/fx/blurred.dart';
|
||||
import 'package:aves/widgets/common/providers/query_provider.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
|
@ -100,7 +101,9 @@ class AvesAppBar extends StatelessWidget {
|
|||
final pushing = direction == HeroFlightDirection.push;
|
||||
Widget popBuilder(context, child) => Opacity(opacity: 1 - animation.value, child: child);
|
||||
Widget pushBuilder(context, child) => Opacity(opacity: animation.value, child: child);
|
||||
return Material(
|
||||
return QueryProvider(
|
||||
initialQuery: null,
|
||||
child: Material(
|
||||
type: MaterialType.transparency,
|
||||
child: DefaultTextStyle(
|
||||
style: DefaultTextStyle.of(toHero).style,
|
||||
|
@ -119,6 +122,7 @@ class AvesAppBar extends StatelessWidget {
|
|||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ repository: https://github.com/deckerst/aves
|
|||
# - github changelog: /CHANGELOG.md
|
||||
# - play changelog: /whatsnew/whatsnew-en-US
|
||||
# - izzy changelog: /fastlane/metadata/android/en-US/changelogs/1XXX.txt
|
||||
version: 1.6.5+71
|
||||
version: 1.6.6+72
|
||||
publish_to: none
|
||||
|
||||
environment:
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
Thanks for using Aves!
|
||||
In v1.6.5:
|
||||
In v1.6.6:
|
||||
- bottom navigation bar
|
||||
- fast scroll with breadcrumbs
|
||||
- settings search
|
||||
|
|
Loading…
Reference in a new issue