diff --git a/assets/terms.md b/assets/terms.md index eb7e5d18e..1a35e35a7 100644 --- a/assets/terms.md +++ b/assets/terms.md @@ -4,7 +4,7 @@ Aves is an open-source gallery and metadata explorer app allowing you to access You must use the app for legal, authorized and acceptable purposes. # Disclaimer -This app is released "as-is", without any warranty, responsibility or liability. Use of the app is at your own risk. +This app is released “as-is”, without any warranty, responsibility or liability. Use of the app is at your own risk. # Privacy policy Aves does not collect any personal data in its standard use. We never have access to your photos and videos. This also means that we cannot get them back for you if you delete them without backing them up. diff --git a/lib/model/availability.dart b/lib/model/availability.dart index 593077b6e..303a75884 100644 --- a/lib/model/availability.dart +++ b/lib/model/availability.dart @@ -42,7 +42,7 @@ class AvesAvailability { return _hasPlayServices; } - // local geolocation with `geocoder` requires Play Services + // local geocoding with `geocoder` requires Play Services Future get canLocatePlaces => Future.wait([isConnected, hasPlayServices]).then((results) => results.every((result) => result)); Future get isNewVersionAvailable async { diff --git a/lib/model/entry.dart b/lib/model/entry.dart index 39d506b0b..024fdefa0 100644 --- a/lib/model/entry.dart +++ b/lib/model/entry.dart @@ -456,7 +456,7 @@ class AvesEntry { } } - // quick reverse geolocation to find the country, using an offline asset + // quick reverse geocoding to find the country, using an offline asset Future _locateCountry() async { if (hasAddress) return; final countryCode = await countryTopology.countryCode(latLng); @@ -472,7 +472,7 @@ class AvesEntry { ); } - // full reverse geolocation, requiring Play Services and some connectivity + // full reverse geocoding, requiring Play Services and some connectivity Future locatePlace({@required bool background}) async { if (hasPlace) return; diff --git a/lib/model/source/location.dart b/lib/model/source/location.dart index 6248e4b02..0641340c2 100644 --- a/lib/model/source/location.dart +++ b/lib/model/source/location.dart @@ -33,7 +33,7 @@ mixin LocationMixin on SourceBase { await _locatePlaces(); } - // quick reverse geolocation to find the countries, using an offline asset + // quick reverse geocoding to find the countries, using an offline asset Future _locateCountries() async { final todo = visibleEntries.where((entry) => entry.hasGps && entry.addressDetails?.countryCode == null).toSet(); if (todo.isEmpty) return; @@ -56,7 +56,7 @@ mixin LocationMixin on SourceBase { // debugPrint('$runtimeType _locateCountries complete in ${stopwatch.elapsed.inSeconds}s'); } - // full reverse geolocation, requiring Play Services and some connectivity + // full reverse geocoding, requiring Play Services and some connectivity Future _locatePlaces() async { if (!(await availability.canLocatePlaces)) return; diff --git a/lib/widgets/viewer/info/basic_section.dart b/lib/widgets/viewer/info/basic_section.dart index acfd8119d..68888fd84 100644 --- a/lib/widgets/viewer/info/basic_section.dart +++ b/lib/widgets/viewer/info/basic_section.dart @@ -35,7 +35,7 @@ class BasicSection extends StatelessWidget { bool get showMegaPixels => entry.isPhoto && megaPixels != null && megaPixels > 0; - String get rasterResolutionText => '${entry.resolutionText}${showMegaPixels ? ' ($megaPixels MP)' : ''}'; + String get rasterResolutionText => '${entry.resolutionText}${showMegaPixels ? ' • $megaPixels MP' : ''}'; @override Widget build(BuildContext context) {