From 8b05269b2e9752ca9d0d9755e14f833dcdae38ce Mon Sep 17 00:00:00 2001 From: Forrest Guice Date: Tue, 7 Apr 2026 23:22:14 -0700 Subject: [PATCH 1/6] bump version 3 (0.2.1) -> 4 (0.2.2) --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 7479ce9..401654b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -14,8 +14,8 @@ android { targetSdkVersion 34 compileSdk 34 - versionCode 3 - versionName "0.2.1" + versionCode 4 + versionName "0.2.2" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' vectorDrawables.useSupportLibrary = true From 984c401b552f089d9ab8828dd0e8c776f79510de Mon Sep 17 00:00:00 2001 From: Forrest Guice Date: Tue, 7 Apr 2026 23:25:11 -0700 Subject: [PATCH 2/6] changelog --- CHANGELOG.md | 8 +++++++- fastlane/metadata/android/en-US/changelogs/4.txt | 4 ++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/4.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c3bdc2..2542dbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ ~ -### v0.2.1 (2023-8-21) +### v0.2.2 (2026-04-08) +* adds support for "Material You" (needs Suntimes v0.17.0+). +* adds exception handler and crash report notification. +* adds "online help" button (https://forrestguice.github.io/Suntimes/help/addons/solunarperiods). +* updates build; targetSdkVersion 33 -> 34; Gradle 6.5 -> 8.7; Android Gradle Plugin 4.1.3 -> 8.5.2. + +### v0.2.1 (2023-08-21) * adds support for system theme (night mode), high contrast app themes, and "text size" settings. * fixes crash when using "calendar integration" menu item (#6). * updates build; targetSdkVersion 28 -> 33; Gradle 4.4 -> 6.5; Android Gradle Plugin 3.1.3 -> 4.1.3; migrates from legacy support libraries to AndroidX. diff --git a/fastlane/metadata/android/en-US/changelogs/4.txt b/fastlane/metadata/android/en-US/changelogs/4.txt new file mode 100644 index 0000000..d995071 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/4.txt @@ -0,0 +1,4 @@ +- adds support for "Material You" (needs Suntimes v0.17.0+). +- adds crash report notification. +- adds "online help" button. +- updates targetSdk to Android 14 (api 34). \ No newline at end of file From 8da17914c44a5fefa3e7e9c5a249d598dbd91986 Mon Sep 17 00:00:00 2001 From: Forrest Guice Date: Tue, 7 Apr 2026 23:46:23 -0700 Subject: [PATCH 3/6] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2542dbd..bf019bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ * adds exception handler and crash report notification. * adds "online help" button (https://forrestguice.github.io/Suntimes/help/addons/solunarperiods). * updates build; targetSdkVersion 33 -> 34; Gradle 6.5 -> 8.7; Android Gradle Plugin 4.1.3 -> 8.5.2. +* updates build; adds nightly build flavor (#9). ### v0.2.1 (2023-08-21) * adds support for system theme (night mode), high contrast app themes, and "text size" settings. From 97fb785171d0f05b7cbea04fd1d669529ba01c78 Mon Sep 17 00:00:00 2001 From: Forrest Guice Date: Wed, 22 Apr 2026 23:10:47 -0700 Subject: [PATCH 4/6] readme --- README.md | 6 +++--- app/src/main/res/values/strings.xml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 741caf1..3228f4b 100644 --- a/README.md +++ b/README.md @@ -17,10 +17,10 @@ This app displays sunrise, sunset, moonrise, moonset, lunar noon, lunar midnight ## Donations ## Do you find value in this software? Please pay as you feel. -[![paypal](https://www.paypalobjects.com/webstatic/en_US/i/btn/png/silver-rect-paypal-26px.png)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=NZJ5FJBCKY6K2) - +[![paypal](https://www.paypalobjects.com/webstatic/en_US/i/btn/png/silver-rect-paypal-26px.png)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=NZJ5FJBCKY6K2) + ## Bug Reports ## Use the issue tracker to submit a bug report or a feature request. @@ -33,7 +33,7 @@ Solunar Periods does not collect, store, or transmit personal user data. It cont __Solunar Periods is an addon for Suntimes.__ It uses the `suntimes.permission.READ_CALCULATOR` permission in order to access data provided by this app. https://github.com/forrestguice/SuntimesWidget/wiki/Privacy ## Legal Stuff -Copyright (C) 2020-2025 **Forrest Guice** +Copyright (C) 2020-2026 **Forrest Guice** ``` SolunarPeriods is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index dd8b779..2b51071 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -15,7 +15,7 @@ Source Code:
- Copyright © 2020-2025 Forrest Guice
+ Copyright © 2020-2026 Forrest Guice
Source code available under GPLv3. ]]>
From 551cd1c2fac00d55312e60c339c55e35f6436756 Mon Sep 17 00:00:00 2001 From: Forrest Guice Date: Wed, 22 Apr 2026 23:15:54 -0700 Subject: [PATCH 5/6] changelog --- CHANGELOG.md | 5 +++-- fastlane/metadata/android/en-US/changelogs/4.txt | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf019bd..f81a469 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,11 @@ ~ -### v0.2.2 (2026-04-08) +### v0.2.2 (2026-04-27) * adds support for "Material You" (needs Suntimes v0.17.0+). +* adds support for "show coordinates" option (needs Suntimes v0.17.0+). * adds exception handler and crash report notification. * adds "online help" button (https://forrestguice.github.io/Suntimes/help/addons/solunarperiods). -* updates build; targetSdkVersion 33 -> 34; Gradle 6.5 -> 8.7; Android Gradle Plugin 4.1.3 -> 8.5.2. +* updates build; targetSdkVersion 33 -> 34 (Android 14); Gradle 6.5 -> 8.7; Android Gradle Plugin 4.1.3 -> 8.5.2. * updates build; adds nightly build flavor (#9). ### v0.2.1 (2023-08-21) diff --git a/fastlane/metadata/android/en-US/changelogs/4.txt b/fastlane/metadata/android/en-US/changelogs/4.txt index d995071..63a9566 100644 --- a/fastlane/metadata/android/en-US/changelogs/4.txt +++ b/fastlane/metadata/android/en-US/changelogs/4.txt @@ -1,4 +1,5 @@ - adds support for "Material You" (needs Suntimes v0.17.0+). +- adds support for "show coordinates" option (needs Suntimes v0.17.0+). - adds crash report notification. - adds "online help" button. -- updates targetSdk to Android 14 (api 34). \ No newline at end of file +- updates targetSdk to Android 14. \ No newline at end of file From 8991f5f26fccde523389f4e48997b302caec4635 Mon Sep 17 00:00:00 2001 From: Forrest Guice Date: Thu, 18 Jun 2026 13:41:43 -0700 Subject: [PATCH 6/6] changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f81a469..2a20176 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ~ -### v0.2.2 (2026-04-27) +### v0.2.2 (2026-06-18) * adds support for "Material You" (needs Suntimes v0.17.0+). * adds support for "show coordinates" option (needs Suntimes v0.17.0+). * adds exception handler and crash report notification.