Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
4ab12b1
Address a RuboCop violation: Remove a redundant `()` occurrence
mokagio Sep 5, 2022
a80dee4
Rename `branch_to_build` parameter into `branch`
mokagio Sep 5, 2022
fbd81f3
Add default `branch` value in lanes to trigger release builds
mokagio Sep 5, 2022
0c4b6e8
Leverage default parameter in `trigger_..._build` usage
mokagio Sep 5, 2022
b49e1b3
Centralize logic to compute release branch name
mokagio Sep 5, 2022
b8946d6
Update Gutenberg ref
Sep 5, 2022
f505242
Update Gutenberg ref
Sep 5, 2022
9be95d8
Bump version number
mokagio Sep 6, 2022
aab6779
Merge remote-tracking branch 'origin/release/20.7' into mokagio/align…
mokagio Sep 6, 2022
4074f06
Update Gutenberg ref
Sep 6, 2022
a69469e
Merge pull request #19286 from wordpress-mobile/gutenberg/integrate_r…
Sep 6, 2022
b037b8d
Rename `branch_to_build` parameter into `branch` (#19281)
mokagio Sep 6, 2022
f9bed49
Release script: Update gutenberg-mobile ref
SiobhyB Sep 6, 2022
bd67004
Update Gutenberg Mobile reference
SiobhyB Sep 6, 2022
a6e7641
Fix syntax used to reference Gutenberg Mobile
SiobhyB Sep 6, 2022
1f6ceec
Update syntax used to reference Gutenberg Mobile
SiobhyB Sep 6, 2022
0a4bc36
Apply changes to Podfile
SiobhyB Sep 6, 2022
a04467a
Merge `origin/release/20.7` into `merge/release-20.6.1-into-20.7`
mokagio Sep 6, 2022
5f5ca6d
Merge hotfix 20.6.1 into release 20.7 (#19292)
mokagio Sep 7, 2022
5bc83f3
Manually update `release_notes.txt` with late entry for 20.7
mokagio Sep 7, 2022
da69066
Update app translations – `Localizable.strings`
mokagio Sep 7, 2022
9c28ff9
Update WordPress metadata translations
mokagio Sep 7, 2022
3edf90a
Update Jetpack metadata translations
mokagio Sep 7, 2022
86cb7bb
Bump version number
mokagio Sep 7, 2022
3a1f704
Add editorialized release notes for Jetpack 20.7
mokagio Sep 8, 2022
912f9f7
Add editorialized release notes for WordPress 20.7
mokagio Sep 8, 2022
200812a
Update metadata strings
mokagio Sep 8, 2022
2053338
Update metadata strings
mokagio Sep 8, 2022
7d2af83
Update to latest Gutenberg Mobile reference
SiobhyB Sep 8, 2022
0f46ab1
Reference latest Gutenberg Mobile tag
SiobhyB Sep 8, 2022
51126f6
Merge pull request #19290 from wordpress-mobile/gutenberg/integrate_r…
SiobhyB Sep 8, 2022
7c4410d
Fix Jetpack app review URL
Sep 8, 2022
f1b0f42
Reverted unnecessary change
Sep 8, 2022
bb68432
Merge pull request #19299 from wordpress-mobile/fix/rate-us-for-jetpa…
Sep 8, 2022
04fbb2e
Update app translations – `Localizable.strings`
mokagio Sep 9, 2022
9a4825d
Update WordPress metadata translations
mokagio Sep 9, 2022
6347041
Update Jetpack metadata translations
mokagio Sep 9, 2022
ff9ed6f
Bump version number
mokagio Sep 9, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ abstract_target 'Apps' do
## Gutenberg (React Native)
## =====================
##
gutenberg tag: 'v1.82.0'
gutenberg tag: 'v1.82.1'

## Third party libraries
## =====================
Expand Down
202 changes: 101 additions & 101 deletions Podfile.lock

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions WordPress/Classes/System/WordPressAppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -437,9 +437,11 @@ extension WordPressAppDelegate {
utility.register(section: "notifications", significantEventCount: 5)
utility.systemWideSignificantEventCountRequiredForPrompt = 10
utility.setVersion(version)
utility.checkIfAppReviewPromptsHaveBeenDisabled(success: nil, failure: {
DDLogError("Was unable to retrieve data about throttling")
})
if AppConfiguration.isWordPress {
utility.checkIfAppReviewPromptsHaveBeenDisabled(success: nil, failure: {
DDLogError("Was unable to retrieve data about throttling")
})
}
Comment on lines -440 to +444
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comes from https://github.com/wordpress-mobile/WordPress-iOS/pull/19299/files which was merged in release/20.7 after code freeze 👍

}

@objc func configureAppCenterSDK() {
Expand Down
12 changes: 3 additions & 9 deletions WordPress/Jetpack/Resources/AppStoreStrings.po
Original file line number Diff line number Diff line change
Expand Up @@ -81,17 +81,11 @@ msgctxt "app_store_keywords"
msgid "social,notes,jetpack,writing,geotagging,media,blog,website,blogging,journal"
msgstr ""

msgctxt "v20.6-whats-new"
msgctxt "v20.7-whats-new"
msgid ""
"Up, up, and away! You can now add and log in via self-hosted sites in the Jetpack app.\n"
"Links in action sheets (those pop-up menus on your device that bring up extra options) are now blue instead of green.\n"
"\n"
"See what’s new in the app in the What’s New feature modals. Talk about meta.\n"
"\n"
"Stay warm, friends—the pages list will no longer freeze when a page’s featured image is a GIF.\n"
"\n"
"File Download stats aren’t supported on self-hosted Jetpack sites, so you won’t see that section in your Stats section anymore.\n"
"\n"
"Like using Jetpack? Tell your friends all about it. You can now share the app through the About and Me screens.\n"
"We’ve also made Jetpack Social more noticeable in the Sharing section of your site settings, as well as in your post settings. Let’s get social.\n"
msgstr ""

#. translators: This is a promo message that will be attached on top of the first screenshot in the App Store.
Expand Down
4 changes: 3 additions & 1 deletion WordPress/Jetpack/Resources/release_notes.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
* [*] Block Editor: Update link colors in action sheets from green to blue [https://github.com/WordPress/gutenberg/pull/42996]
Links in action sheets (those pop-up menus on your device that bring up extra options) are now blue instead of green.
Copy link
Contributor

@AliSoftware AliSoftware Sep 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry for missing this earlier and before this was sent for editorial, but looking at WordPress/gutenberg#42996 it seems that this change in Gutenberg might only after iOS after all and this shouldn't have been added to the Android release notes?

cc @SiobhyB @dcalhoun ?

Never mind, I though I was reviewing the PR for Android… this is the PR for iOS, so all good 😊

Copy link
Contributor

@AliSoftware AliSoftware Sep 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Though this entry in the release notes for Jetpack still feels odd, because it's about Jetpack and yet we're saying we updated colors from green to blue, not the other way around…?!

Or @mokagio did you accidentally swapped the WP and JP release notes when you copied the Editorialized versions in the wrong files?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For posterity, just x-posting the comment here to confirm all looks good with the notes: wordpress-mobile/WordPress-Android#17145 (comment)


We’ve also made Jetpack Social more noticeable in the Sharing section of your site settings, as well as in your post settings. Let’s get social.
6 changes: 2 additions & 4 deletions WordPress/Resources/AppStoreStrings.po
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,9 @@ msgctxt "app_store_keywords"
msgid "blogger,writing,blogging,web,maker,online,store,business,make,create,write,blogs"
msgstr ""

msgctxt "v20.6-whats-new"
msgctxt "v20.7-whats-new"
msgid ""
"Stay warm, friends—the pages list will no longer freeze when a page’s featured image is a GIF.\n"
"\n"
"File Download stats aren’t supported on self-hosted Jetpack sites, so you won’t see that section in your Stats section anymore.\n"
"This release is short and sweet: we’ve made Jetpack Social more noticeable in the Sharing section of your site settings, as well as in your post settings. Let’s get social.\n"
msgstr ""

#. translators: This is a standard chunk of text used to tell a user what's new with a release when nothing major has changed.
Expand Down
68 changes: 53 additions & 15 deletions WordPress/Resources/ar.lproj/Localizable.strings
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Translation-Revision-Date: 2022-08-30 15:54:08+0000 */
/* Translation-Revision-Date: 2022-09-07 23:54:07+0000 */
/* Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5)))); */
/* Generator: GlotPress/4.0.0-alpha.1 */
/* Language: ar */
Expand Down Expand Up @@ -1890,9 +1890,6 @@ translators: Block name. %s: The localized block name */
/* Title of a prompt saying the app needs an internet connection before it can load post formats */
"Connection not available" = "الاتصال غير متاح";

/* Section title for Publicize services in Sharing screen */
"Connections" = "اتصالات";

/* Support email label. */
"Contact Email" = "البريد الإلكتروني لجهة الاتصال";

Expand Down Expand Up @@ -4063,6 +4060,15 @@ translators: Block name. %s: The localized block name */
/* Noun. Title. Links to the blog's Settings screen. */
"Jetpack Settings" = "إعدادات Jetpack";

/* Section title for Publicize services in Sharing screen */
"Jetpack Social Connections" = "عمليات الربط بـ Jetpack Social";

/* Message to show when Publicize connection synchronization failed */
"Jetpack Social connection synchronization failed" = "فشلت مزامنة الربط بـ Jetpack Social";

/* Message to show when Publicize service synchronization failed */
"Jetpack Social service synchronization failed" = "فشلت مزامنة خدمة Jetpack Social";

/* The default Jetpack view message used when an error occurred */
"Jetpack could not be installed at this time." = "يتعذر تنصيب Jetpack في الوقت الحالي.";

Expand Down Expand Up @@ -5989,15 +5995,6 @@ translators: %s: Select control button label e.g. \"Button width\" */
/* Insights 'Publicize' header */
"Publicize" = "إشهار";

/* Message to show when Publicize connection synchronization failed */
"Publicize connection synchronization failed" = "فشلت مزامنة إشهار الاتصال";

/* Message to show when Publicize service synchronization failed */
"Publicize service synchronization failed" = "فشلت مزامنة إشهار الخدمة";

/* Title. `Publicize` is used as a verb here but `Share` (verb) would also work here. The `%@` is a placeholder for the service name. */
"Publicize to %@" = "إشهار إلى %@";

/* Button shown when the author is asked for publishing confirmation.
Button title. Publishes a post.
Label for the publish (verb) button. Tapping publishes a draft post.
Expand Down Expand Up @@ -6917,15 +6914,17 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */
/* Title for the button that will share the link for the downlodable backup file */
"Share link" = "رابط المشاركة";

/* Title. `The `%@` is a placeholder for the service name. */
"Share post to %@" = "مشاركة التدوينة في %@";

/* Title for button allowing users to share information about the app with friends, such as via Messages */
"Share with Friends" = "مشاركة مع الأصدقاء";

/* Aztec's Text Placeholder
Share Extension Content Body Text Placeholder */
"Share your story here..." = "شارك قصتك هنا...";

/* Label for the Sharing section in post Settings. Should be the same as WP core.
Noun. Title. Links to a blog's sharing options.
/* Noun. Title. Links to a blog's sharing options.
The menu item to select during a guided tour.
Title for blog detail sharing screen. */
"Sharing" = "مشاركة";
Expand Down Expand Up @@ -9920,6 +9919,45 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */
/* Title of the Jetpack powered overlay. */
"jetpack.branding.overlay.title" = "ووردبريس أفضل مع Jetpack";

/* Add an author prompt for the jetpack prologue */
"jetpack.prologue.prompt.addAuthor" = "إضافة مؤلف";

/* Build a site prompt for the jetpack prologue */
"jetpack.prologue.prompt.buildSite" = "إنشاء موقع";

/* Check notifications prompt for the jetpack prologue */
"jetpack.prologue.prompt.checkNotifications" = "التحقُّق من الإشعارات";

/* Share on Facebook prompt for the jetpack prologue */
"jetpack.prologue.prompt.fbShare" = "شارك على فيسبوك";

/* Fix a security issue prompt for the jetpack prologue */
"jetpack.prologue.prompt.fixSecurity" = "إصلاح مشكلة الأمان";

/* Post a photo prompt for the jetpack prologue */
"jetpack.prologue.prompt.postPhoto" = "نشر صورة";

/* Read an article prompt for the jetpack prologue */
"jetpack.prologue.prompt.readArticle" = "قراءة مقالة";

/* Respond to comments prompt for the jetpack prologue */
"jetpack.prologue.prompt.respondComments" = "الرد على التعليقات";

/* Restore a backup prompt for the jetpack prologue */
"jetpack.prologue.prompt.restoreBackup" = "استعادة نسخة احتياطية";

/* Search for plugins prompt for the jetpack prologue */
"jetpack.prologue.prompt.searchPlugins" = "البحث عن الإضافات";

/* Search for posts or sites prompt for the jetpack prologue */
"jetpack.prologue.prompt.searchPosts" = "البحث عن التدوينات أو المواقع";

/* Watch your stats prompt for the jetpack prologue */
"jetpack.prologue.prompt.watchStats" = "رصد إحصاءاتك";

/* Write a blog prompt for the jetpack prologue */
"jetpack.prologue.prompt.writeBlog" = "كتابة مدونة";

/* Later today */
"later today" = "في وقتٍ لاحقٍ اليوم";

Expand Down
15 changes: 1 addition & 14 deletions WordPress/Resources/bg.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -595,9 +595,6 @@
/* Title of a prompt saying the app needs an internet connection before it can load post formats */
"Connection not available" = "Връзката не е налична";

/* Section title for Publicize services in Sharing screen */
"Connections" = "Връзки";

/* Button label for contacting support
Button title that opens the support page
Button to contact support on Start Over settings page
Expand Down Expand Up @@ -1981,15 +1978,6 @@
/* Insights 'Publicize' header */
"Publicize" = "Споделяне";

/* Message to show when Publicize connection synchronization failed */
"Publicize connection synchronization failed" = "Синхронизацията на връзката с услугата за споделяне се провали";

/* Message to show when Publicize service synchronization failed */
"Publicize service synchronization failed" = "Синхронизацията на услугата за споделяне се провали";

/* Title. `Publicize` is used as a verb here but `Share` (verb) would also work here. The `%@` is a placeholder for the service name. */
"Publicize to %@" = "Споделяне в %@";

/* Button shown when the author is asked for publishing confirmation.
Button title. Publishes a post.
Label for the publish (verb) button. Tapping publishes a draft post.
Expand Down Expand Up @@ -2320,8 +2308,7 @@
Share Extension Content Body Text Placeholder */
"Share your story here..." = "Споделете вашата история тук...";

/* Label for the Sharing section in post Settings. Should be the same as WP core.
Noun. Title. Links to a blog's sharing options.
/* Noun. Title. Links to a blog's sharing options.
The menu item to select during a guided tour.
Title for blog detail sharing screen. */
"Sharing" = "Споделяне";
Expand Down
15 changes: 1 addition & 14 deletions WordPress/Resources/cs.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -1788,9 +1788,6 @@ translators: Block name. %s: The localized block name */
/* Title of a prompt saying the app needs an internet connection before it can load post formats */
"Connection not available" = "Připojení není povolené";

/* Section title for Publicize services in Sharing screen */
"Connections" = "Připojení";

/* Support email label. */
"Contact Email" = "Kontaktní e-mail";

Expand Down Expand Up @@ -5732,15 +5729,6 @@ translators: %s: Select control button label e.g. \"Button width\" */
/* Insights 'Publicize' header */
"Publicize" = "Publikovaná";

/* Message to show when Publicize connection synchronization failed */
"Publicize connection synchronization failed" = "Publikování se nezdařilo, chyba spojení";

/* Message to show when Publicize service synchronization failed */
"Publicize service synchronization failed" = "Publikování se nezdařilo, chyba synchronizace";

/* Title. `Publicize` is used as a verb here but `Share` (verb) would also work here. The `%@` is a placeholder for the service name. */
"Publicize to %@" = "Publikovat na %@";

/* Button shown when the author is asked for publishing confirmation.
Button title. Publishes a post.
Label for the publish (verb) button. Tapping publishes a draft post.
Expand Down Expand Up @@ -6637,8 +6625,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */
Share Extension Content Body Text Placeholder */
"Share your story here..." = "Podělte se o svůj příběh...";

/* Label for the Sharing section in post Settings. Should be the same as WP core.
Noun. Title. Links to a blog's sharing options.
/* Noun. Title. Links to a blog's sharing options.
The menu item to select during a guided tour.
Title for blog detail sharing screen. */
"Sharing" = "Sdílení";
Expand Down
15 changes: 1 addition & 14 deletions WordPress/Resources/cy.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -549,9 +549,6 @@
/* Title of a prompt saying the app needs an internet connection before it can load post formats */
"Connection not available" = "Nid oes cysylltiad ar gael";

/* Section title for Publicize services in Sharing screen */
"Connections" = "Cysylltiadau";

/* Button label for contacting support
Button title that opens the support page
Button to contact support on Start Over settings page
Expand Down Expand Up @@ -1761,15 +1758,6 @@
/* Insights 'Publicize' header */
"Publicize" = "Publicize";

/* Message to show when Publicize connection synchronization failed */
"Publicize connection synchronization failed" = "Methodd Publicize gydweddu eich cyhoeddusrwydd";

/* Message to show when Publicize service synchronization failed */
"Publicize service synchronization failed" = "Methodd Publicize gydweddu eich cyhoeddusrwydd";

/* Title. `Publicize` is used as a verb here but `Share` (verb) would also work here. The `%@` is a placeholder for the service name. */
"Publicize to %@" = "Publicize i %@";

/* Button shown when the author is asked for publishing confirmation.
Button title. Publishes a post.
Label for the publish (verb) button. Tapping publishes a draft post.
Expand Down Expand Up @@ -2086,8 +2074,7 @@
Share Extension Content Body Text Placeholder */
"Share your story here..." = "Rhanwch eich stori yma...";

/* Label for the Sharing section in post Settings. Should be the same as WP core.
Noun. Title. Links to a blog's sharing options.
/* Noun. Title. Links to a blog's sharing options.
The menu item to select during a guided tour.
Title for blog detail sharing screen. */
"Sharing" = "Rhannu";
Expand Down
Loading