Update screenshots and metadata

Update pipeline to build new module
This commit is contained in:
Geoffroy Bonneville
2025-11-08 14:33:39 -05:00
parent 157b577397
commit 92263bc4ec
20 changed files with 33 additions and 33 deletions

View File

@@ -1,2 +1,2 @@
json_key_file("../..//Downloads/donext-f9e67-1184ae400b09.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
package_name("com.wismna.geoffroy.donext") # e.g. com.krausefx.app
json_key_file("./fastlane/keys/donext-f9e67-5038064982b0")
package_name("com.wismna.geoffroy.donext")

View File

@@ -1,38 +1,26 @@
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
#
# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane
default_platform(:android)
platform :android do
desc "Runs all the tests"
desc "Run all unit tests"
lane :test do
gradle(task: "test")
gradle(task: "testDebugUnitTest")
end
desc "Submit a new Beta Build to Crashlytics Beta"
desc "Build a release APK or AAB for beta testing"
lane :beta do
gradle(task: "clean assembleRelease")
crashlytics
# sh "your_script.sh"
# You can also use other beta testing services here
gradle(task: "clean bundleRelease")
upload_to_play_store(
track: "beta",
aab: "app/build/outputs/bundle/release/app-release.aab"
)
end
desc "Deploy a new version to the Google Play"
desc "Deploy the production version to Google Play"
lane :deploy do
gradle(task: "clean assembleRelease")
upload_to_play_store
gradle(task: "clean bundleRelease")
upload_to_play_store(
track: "production",
aab: "app/build/outputs/bundle/release/app-release.aab"
)
end
end

View File

@@ -1 +1,11 @@
Update to SDK version 35
Complete UI overhaul that gives DoNext a nice, modern look.
Complete code rewrite to Kotlin and Android Jetpack, with a better architecture.
Task lists are now displayed in a navigation menu
Tasks are now ordered by priority and not cycles
All tasks can be Done or Removed instead of only the first one
A Recycle Bin was added
The whole Next and cycles mechanism was removed
The History page was removed and its features split between the regular task lists and the Recycle Bin
The Today view is not a separate concept now, it's based on the tasks due date
No more Settings page as it's not needed anymore (but it may come back later if required)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 KiB

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 121 KiB

View File

@@ -1 +1 @@
A new way to manage your tasks!
A simple and fast app to manage your tasks!

View File

@@ -1 +1 @@
DoNext
DoNext v2