mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-10 06:07:57 -06:00
chore: Add internal test track, update changelogs for v28
This commit is contained in:
@@ -21,6 +21,27 @@ platform :android do
|
|||||||
gradle(task: "test")
|
gradle(task: "test")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
desc "Submit a new internal build to Google Play"
|
||||||
|
lane :internal do
|
||||||
|
sh "flutter build appbundle -v"
|
||||||
|
upload_to_play_store(
|
||||||
|
track: 'internal',
|
||||||
|
aab: '../build/app/outputs/bundle/release/app-release.aab',
|
||||||
|
json_key_data: ENV['PLAY_STORE_CREDENTIALS'],
|
||||||
|
release_status: "draft",
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
desc "Promote internal track to alpha"
|
||||||
|
lane :promote_to_beta do
|
||||||
|
upload_to_play_store(
|
||||||
|
track: 'internal',
|
||||||
|
track_promote_to: 'alpha',
|
||||||
|
json_key_data: ENV['PLAY_STORE_CREDENTIALS'],
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
desc "Submit a new alpha build to Google Play"
|
desc "Submit a new alpha build to Google Play"
|
||||||
lane :alpha do
|
lane :alpha do
|
||||||
sh "flutter build appbundle -v"
|
sh "flutter build appbundle -v"
|
||||||
@@ -37,7 +58,6 @@ platform :android do
|
|||||||
upload_to_play_store(
|
upload_to_play_store(
|
||||||
track: 'alpha',
|
track: 'alpha',
|
||||||
track_promote_to: 'beta',
|
track_promote_to: 'beta',
|
||||||
skip_upload_changelogs: true,
|
|
||||||
json_key_data: ENV['PLAY_STORE_CREDENTIALS'],
|
json_key_data: ENV['PLAY_STORE_CREDENTIALS'],
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
@@ -58,7 +78,6 @@ platform :android do
|
|||||||
upload_to_play_store(
|
upload_to_play_store(
|
||||||
track: 'beta',
|
track: 'beta',
|
||||||
track_promote_to: 'production',
|
track_promote_to: 'production',
|
||||||
skip_upload_changelogs: true,
|
|
||||||
json_key_data: ENV['PLAY_STORE_CREDENTIALS'],
|
json_key_data: ENV['PLAY_STORE_CREDENTIALS'],
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
Diese Version ist eine Betaversion und enthält neue Features und Umstrukturierungen. Deshalb wird empfohlen, die App neu zu installieren!
|
||||||
|
* Neues Feature: Massenbearbeitung von Dokumenten.
|
||||||
|
* Neues Feature: Unterstützung für mehrere Accounts und mehrere Instanzen mit schnellem Wechsel zwischen diesen (Achtung: Die in paperless-ngx 1.14.0 neu hinzugefügten Berechtigungen sind hier noch nicht enthalten!)
|
||||||
|
* Bugfixes
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
This version is a beta and contains new features and some restructurings. Therefore it is highly recommended to perform a fresh installation of the app.
|
||||||
|
* New feature: Document bulk edits
|
||||||
|
* New feature: Support for multiple accounts and multiple instances with quick switching between them (Note: This does not yet include the new multi-user features introduced in paperless-ngx 1.14.0!)
|
||||||
|
* Bugfixes
|
||||||
Reference in New Issue
Block a user