From 5cd7f9bbf717639bfa7fc206f71fc2221aca653e Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Tue, 14 May 2024 08:01:26 -0700 Subject: [PATCH 1/3] Update uninstall instructions Signed-off-by: Matt Friedman --- language/en/info_acp_webpushnotifications.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/en/info_acp_webpushnotifications.php b/language/en/info_acp_webpushnotifications.php index 0bfe64b..919dfb1 100644 --- a/language/en/info_acp_webpushnotifications.php +++ b/language/en/info_acp_webpushnotifications.php @@ -40,7 +40,7 @@ $lang = array_merge($lang, [ 'ACP_WEBPUSH_EXT_SETTINGS' => 'Web Push settings', 'ACP_WEBPUSH_REMOVE_WARNING' => 'Web Push Notifications are now built-in to phpBB', - 'ACP_WEBPUSH_REMOVE_NOTICE' => 'The extension “phpBB Browser Push Notifications” is no longer needed and should be uninstalled.
All settings and user preferences associated with the extension will be migrated into phpBB‘s built-in push notifications when you uninstall the extension.', + 'ACP_WEBPUSH_REMOVE_NOTICE' => 'The extension “phpBB Browser Push Notifications” is no longer needed and should be uninstalled and removed.
All settings and user preferences associated with the extension will be migrated into phpBB‘s built-in push notifications when you uninstall the extension.', 'LOG_CONFIG_WEBPUSH' => 'Altered Web Push settings', 'LOG_WEBPUSH_MESSAGE_FAIL' => 'Web Push message could not be sent: %s', 'LOG_WEBPUSH_SUBSCRIPTION_REMOVED' => 'Removed Web Push subscription:» %s', From 00721d589c410fe97241a7ede076c3799da4806a Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Tue, 14 May 2024 08:01:39 -0700 Subject: [PATCH 2/3] Bump to 1.0.0-RC2 Signed-off-by: Matt Friedman --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index a970db6..1296631 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "type": "phpbb-extension", "description": "An official phpBB extension that allows board users to receive browser-based push notifications.", "homepage": "https://www.phpbb.com", - "version": "1.0.0-RC1", + "version": "1.0.0-RC2", "license": "GPL-2.0-only", "authors": [ { From 07ba9e1bb63905b79b8e3e899a9825cb984c72b3 Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Tue, 14 May 2024 08:09:47 -0700 Subject: [PATCH 3/3] Add a changelog Signed-off-by: Matt Friedman --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..3388e79 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +# Changelog + +### 1.0.0-RC2 - 2024-05-14 + +- NOTE: If upgrading from RC1 to RC2, you must fully uninstall (disable and purge) RC1 and install RC2 as a fresh installation. +- Fixed an issue when uninstalling the extension that resulted in migration failures due to running migration files in the wrong order. +- Fixed an issue related to push URL paths so subscription data will be maintained after upgrading a forum to phpBB 4. + +### 1.0.0-RC1 - 2024-05-12 + +- First public release