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.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [v1.5.2] - 2021-09-29
|
||||||
### Added
|
### Added
|
||||||
- Map: show items for bounds, open items in viewer, tap gesture to toggle fullscreen
|
- Map: show items for bounds, open items in viewer, tap gesture to toggle fullscreen
|
||||||
- Info: remove metadata (Exif, XMP, etc.)
|
- Info: remove metadata (Exif, XMP, etc.)
|
||||||
- Accessibility: support "time to take action" settings
|
- Accessibility: support "time to take action" and "remove animations" settings
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- upgraded Flutter to stable v2.5.1
|
- upgraded Flutter to stable v2.5.1
|
||||||
|
|
|
@ -347,6 +347,8 @@ class _MapPageContentState extends State<MapPageContent> with SingleTickerProvid
|
||||||
|
|
||||||
void _toggleOverlay() => _overlayVisible.value = !_overlayVisible.value;
|
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 {
|
Future<void> _onOverlayVisibleChange({bool animate = true}) async {
|
||||||
if (_overlayVisible.value) {
|
if (_overlayVisible.value) {
|
||||||
if (animate) {
|
if (animate) {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
name: aves
|
name: aves
|
||||||
description: A visual media gallery and metadata explorer app.
|
description: A visual media gallery and metadata explorer app.
|
||||||
repository: https://github.com/deckerst/aves
|
repository: https://github.com/deckerst/aves
|
||||||
version: 1.5.1+55
|
version: 1.5.2+56
|
||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
Thanks for using Aves!
|
Thanks for using Aves!
|
||||||
v1.5.1:
|
v1.5.2:
|
||||||
- fixed hanging app for collections with specific video formats
|
|
||||||
- added bug reporting instructions
|
|
||||||
v1.5.0:
|
|
||||||
- faster launch
|
- faster launch
|
||||||
- edit Exif dates
|
- UI changes for collection thumbnails and albums
|
||||||
- customize quick actions when selecting pictures
|
- 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
|
Full changelog available on GitHub
|
Loading…
Reference in a new issue