Skip to content

Commit

Permalink
Merge release/2.34 final into trunk (#1697)
Browse files Browse the repository at this point in the history
  • Loading branch information
mokagio authored Sep 24, 2024
2 parents f0c98fa + 0f9d97c commit 0d67638
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .buildkite/release-pipelines/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

steps:
- label: Publish Release
plugins: [$CI_TOOLKIT_plugin]
plugins: [$CI_TOOLKIT_PLUGIN]
command: |
echo '--- :robot_face: Use bot for git operations'
source use-bot-for-git wpmobilebot
Expand Down
4 changes: 2 additions & 2 deletions .configure
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"project_name": "Simplenote-Android",
"branch": "trunk",
"pinned_hash": "2c5509d08ff9b9620381f4dc602fc2e5edcfcb40",
"pinned_hash": "1761b0a77a5371f9127c5d0575c90f938d864537",
"files_to_copy": [
{
"file": "android/simplenote/Simplenote/gradle.properties",
Expand All @@ -25,7 +25,7 @@
},
{
"file": "android/Simplenote/google-upload-credentials.json",
"destination": ".configure-files/google-upload-credentials.json",
"destination": "~/.configure/simplenote-android/secrets/google-upload-credentials.json",
"encrypt": true
}
],
Expand Down
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ STORE_METADATA_SOURCE_DEFAULT_FOLDER = File.join(STORE_METADATA_SOURCE_FOLDER, S
RELEASE_NOTES_PATH = File.join(STORE_METADATA_SOURCE_DEFAULT_FOLDER, 'changelogs', 'default.txt')
RELEASE_NOTES_SOURCE_PATH = File.join(PROJECT_ROOT_FOLDER, 'RELEASE-NOTES.txt')

UPLOAD_TO_PLAY_STORE_JSON_KEY = File.join(PROJECT_ROOT_FOLDER, '.configure-files', 'google-upload-credentials.json')
UPLOAD_TO_PLAY_STORE_JSON_KEY = File.join(Dir.home, '.configure', 'simplenote-android', 'secrets', 'google-upload-credentials.json')

GRADLE_APK_OUTPUT_PATH = File.join(BUILD_FOLDER, 'outputs', 'apk', 'release', 'Simplenote-release.apk')

Expand Down
4 changes: 4 additions & 0 deletions fastlane/lanes/build.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@
# While transitioning between the current approach and the new one where the upload is a dedicated lane (this) support both beta flag and explicit track name.
if track.nil?
track = beta ? 'beta' : 'production'
UI.important("No track was given. Track has been computed to '#{track}' based on the beta flag value being '#{beta}'.")
elsif track == 'production' && beta == true
UI.important("Inconstistent input track = '#{track}' and beta = '#{beta}'. Will change beta to 'false'.")
beta = false
end

upload_to_play_store(
Expand Down
2 changes: 2 additions & 0 deletions fastlane/metadata/android/ar/changelogs/default.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
2.34:
التحسينات جارية
2 changes: 2 additions & 0 deletions fastlane/metadata/android/de-DE/changelogs/default.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
2.34:
Verbesserungen hinter den Kulissen
2 changes: 2 additions & 0 deletions fastlane/metadata/android/es-ES/changelogs/default.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
2.34:
Mejoras en los detalles técnicos
2 changes: 1 addition & 1 deletion fastlane/metadata/android/fr-FR/changelogs/default.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
2.34 :
Des améliorations sous le capot
Des améliorations en préparation
2 changes: 2 additions & 0 deletions fastlane/metadata/android/iw-IL/changelogs/default.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
2.34:
שיפורים מתחת למכסה המנוע
2 changes: 1 addition & 1 deletion fastlane/metadata/android/ru-RU/changelogs/default.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
2.34:
Целый мешок усовершенствований.
Целый мешок усовершенствований
2 changes: 1 addition & 1 deletion fastlane/metadata/android/tr-TR/changelogs/default.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
2.34:
Arka planda yapılan iyileştirmeler.
Arka planda yapılan iyileştirmeler
2 changes: 1 addition & 1 deletion fastlane/metadata/android/zh-CN/changelogs/default.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
2.34:
后台进行的改进。
后台改进
2 changes: 1 addition & 1 deletion version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
versionName=2.34
versionCode=171
versionCode=174

0 comments on commit 0d67638

Please sign in to comment.