version bump
This commit is contained in:
parent
3a0124a8e9
commit
9182387bb8
4 changed files with 11 additions and 8 deletions
|
@ -2,10 +2,12 @@
|
|||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [v1.5.2] - 2021-09-29
|
||||
### Added
|
||||
- Map: show items for bounds, open items in viewer, tap gesture to toggle fullscreen
|
||||
- Info: remove metadata (Exif, XMP, etc.)
|
||||
- Accessibility: support "time to take action" settings
|
||||
- Accessibility: support "time to take action" and "remove animations" settings
|
||||
|
||||
### Changed
|
||||
- upgraded Flutter to stable v2.5.1
|
||||
|
|
|
@ -347,6 +347,8 @@ class _MapPageContentState extends State<MapPageContent> with SingleTickerProvid
|
|||
|
||||
void _toggleOverlay() => _overlayVisible.value = !_overlayVisible.value;
|
||||
|
||||
// TODO TLAD [map] as of Flutter v2.5.1 / google_maps_flutter v2.0.10, toggling overlay changes the size of the map, which is an issue for Google Maps on Android 12
|
||||
// cf https://github.com/flutter/flutter/issues/90556
|
||||
Future<void> _onOverlayVisibleChange({bool animate = true}) async {
|
||||
if (_overlayVisible.value) {
|
||||
if (animate) {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: aves
|
||||
description: A visual media gallery and metadata explorer app.
|
||||
repository: https://github.com/deckerst/aves
|
||||
version: 1.5.1+55
|
||||
version: 1.5.2+56
|
||||
publish_to: none
|
||||
|
||||
environment:
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
Thanks for using Aves!
|
||||
v1.5.1:
|
||||
- fixed hanging app for collections with specific video formats
|
||||
- added bug reporting instructions
|
||||
v1.5.0:
|
||||
v1.5.2:
|
||||
- faster launch
|
||||
- edit Exif dates
|
||||
- customize quick actions when selecting pictures
|
||||
- UI changes for collection thumbnails and albums
|
||||
- accessibility support for settings "time to take action" and "remove animations"
|
||||
- open images and videos from the map
|
||||
- remove metadata from images
|
||||
Full changelog available on GitHub
|
Loading…
Reference in a new issue