Skip to content

Commit

Permalink
Merge pull request #20659 from wordpress-mobile/release/24.7
Browse files Browse the repository at this point in the history
Merge 24.7 editorialized release notes to trunk
  • Loading branch information
oguzkocer authored Apr 17, 2024
2 parents e855b08 + 687b082 commit 1cd2d9a
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 19 deletions.
13 changes: 7 additions & 6 deletions WordPress/jetpack_metadata/PlayStoreStrings.po
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ msgstr ""
"X-Generator: VsCode\n"
"Project-Id-Version: Jetpack - Apps - Android - Release Notes\n"

msgctxt "release_note_247"
msgid ""
"24.7:\n"
"We redesigned the site picker screen. You can now pin your favorite sites, see recently accessed sites, and more. We also removed the ability to show and hide sites.\n"
"(Did we say the word “sites” enough? We think so.)\n"
msgstr ""

msgctxt "release_note_246"
msgid ""
"24.6:\n"
Expand All @@ -18,12 +25,6 @@ msgid ""
"- We changed the infinity symbol to “100%” on the Stats screen. And in that moment, I swear we were 100%.\n"
msgstr ""

msgctxt "release_note_245"
msgid ""
"24.5:\n"
"Good news, everyone: we fixed the broken links on your announcement badge screen. Insights into your biggest publishing accomplishments are just a tap away.\n"
msgstr ""

#. translators: Release notes for this version to be displayed in the Play Store. Limit to 500 characters including spaces and commas!
#. translators: Title to be displayed in the Play Store. Limit to 30 characters including spaces and commas!
msgctxt "play_store_app_title"
Expand Down
5 changes: 2 additions & 3 deletions WordPress/jetpack_metadata/release_notes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
* [**] Site picker: Added the feature to pin sites, redesigned the UI, and deprecated the Show/Hide sites functionality. [https://github.com/wordpress-mobile/WordPress-Android/pull/20521]
* [*] [internal] Updates the way the app retrieves the User-Agent request header [https://github.com/wordpress-mobile/WordPress-Android/pull/20603]

We redesigned the site picker screen. You can now pin your favorite sites, see recently accessed sites, and more. We also removed the ability to show and hide sites.
(Did we say the word “sites” enough? We think so.)
13 changes: 7 additions & 6 deletions WordPress/metadata/PlayStoreStrings.po
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,20 @@ msgstr ""
"X-Generator: VsCode\n"
"Project-Id-Version: Release Notes & Play Store Descriptions\n"

msgctxt "release_note_247"
msgid ""
"24.7:\n"
"We redesigned the site picker screen. You can now pin your favorite sites, see recently accessed sites, and more. We also removed the ability to show and hide sites.\n"
"(Did we say the word “sites” enough? We think so.)\n"
msgstr ""

msgctxt "release_note_246"
msgid ""
"24.6:\n"
"- We fixed a handful of issues with highlighted text formatting. We don’t know about you, but that’s the highlight of our week.\n"
"- The app now supports text suggestions that are longer than the visible space in the editor. No crashes—just predictive text, as far as the eye can see.\n"
msgstr ""

msgctxt "release_note_245"
msgid ""
"24.5:\n"
"The best things in life are worth the wait, like fresh-baked cookies, your coffee order, and the latest releases from your favorite app. (That’s us. See you next update.)\n"
msgstr ""

#. translators: Release notes for this version to be displayed in the Play Store. Limit to 500 characters including spaces and commas!
#. translators: Shorter Release notes for this version to be displayed in the Play Store. Limit to 500 characters including spaces and commas!
msgctxt "sample_post_content"
Expand Down
5 changes: 2 additions & 3 deletions WordPress/metadata/release_notes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
* [**] Site picker: Added the feature to pin sites, redesigned the UI, and deprecated the Show/Hide sites functionality. [https://github.com/wordpress-mobile/WordPress-Android/pull/20521]
* [*] [internal] Updates the way the app retrieves the User-Agent request header [https://github.com/wordpress-mobile/WordPress-Android/pull/20603]

We redesigned the site picker screen. You can now pin your favorite sites, see recently accessed sites, and more. We also removed the ability to show and hide sites.
(Did we say the word “sites” enough? We think so.)
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,13 @@ public static void startServiceForCommentSnippet(Context context, long blogId, l
intent.putExtra(ARG_BLOG_ID, blogId);
intent.putExtra(ARG_POST_ID, postId);
intent.putExtra(ARG_PAGE_INFO, PageInfo.COMMENTS_SNIPPET_PAGE);
context.startService(intent);
try {
context.startService(intent);
} catch (IllegalStateException e) {
// This can happen if the app still appears to be running in the background
// see: https://github.com/wordpress-mobile/WordPress-Android/issues/18666
AppLog.e(AppLog.T.READER, "Unable to start ReaderCommentService: " + e.getMessage());
}
}

public static void stopService(Context context) {
Expand Down

0 comments on commit 1cd2d9a

Please sign in to comment.