diff --git a/README.md b/README.md index a56bc6c..85a930c 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +# Locus is no longer maintained. See [#160](https://github.com/Myzel394/locus/issues/160) for more info + # Locus

@@ -34,6 +36,10 @@ encrypts your location end-to-end, meaning that no one, not even we, can read it location decentralized on multiple servers of your choice using Nostr, meaning that you are not locked to a service. No authentication required. +Locus is currently not in active development. I am unable to work on it as much as I would like. +I will still fix security issues and maintain it, but there will not be any new features in the +foreseeable future. I am open for any Pull Requests. + # Download **iOS currently does not have a release. You will need to build and install the app yourself.** @@ -65,13 +71,7 @@ Translate Locus into your language so that other people can use it more easily. ## Donate It might sound crazy, but if you would just donate 1$, it would totally mean to world to me, since -it's a really small amount and if everyone did that, I can totally focus on Locus and my other open +it's a really small amount and if everyone did that, I can totally focus on Alibi and my other open source projects. :) -You can donate via: - -* [GitHub Sponsors](https://github.com/sponsors/Myzel394) -* Bitcoin: `bc1qw054829yj8e2u8glxnfcg3w22dkek577mjt5x6` -* - -Monero: `83dm5wyuckG4aPbuMREHCEgLNwVn5i7963SKBhECaA7Ueb7DKBTy639R3QfMtb3DsFHMp8u6WGiCFgbdRDBBcz5sLduUtm8` +You can donate via [GitHub Sponsors](https://github.com/sponsors/Myzel394) or via [crypto currencies](https://github.com/Myzel394/contact-me?tab=readme-ov-file#donations). diff --git a/lib/screens/view_details_screen_widgets/LocationPointsList.dart b/lib/screens/view_details_screen_widgets/LocationPointsList.dart index 37699fb..a8f5ebc 100644 --- a/lib/screens/view_details_screen_widgets/LocationPointsList.dart +++ b/lib/screens/view_details_screen_widgets/LocationPointsList.dart @@ -67,8 +67,8 @@ class _LocationPointsListState extends State { final locationFetchers = context.watch(); final fetcher = locationFetchers.findFetcher(widget.view)!; final locations = fetcher.isLoading - ? fetcher.sortedLocations - : fetcher.locations.toList(); + ? fetcher.locations.toList() + : fetcher.sortedLocations.toList(); return ListView.builder( shrinkWrap: true,