diff --git a/CHANGELOG.md b/CHANGELOG.md
index 23d569d..f554e94 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,15 @@
# Changelog
+### 1.1.0 - 2026-05-28
+
+- Added a new **PWA settings** section to the ACP alongside the existing Web Push settings.
+ - Moved the PWA short name and app icon settings into this section.
+ - Added options to configure PWA theme colours for each installed board style.
+ - Added an option to display a prompt inviting mobile-device users to install the board as an app for PWA and push notification functionality.
+- Added validation to ensure push subscriptions are only accepted from recognised push notification services.
+- Improved error handling for failed or rejected subscription requests, avoiding misleading messages and cleaning up failed browser-side subscriptions.
+- Automatically removes subscriptions for endpoints that are expired, unauthorized, or permanently unavailable.
+
### 1.0.4 - 2026-02-20
- Added a new optional pop-up/prompt asking board members to subscribe to push notifications.
diff --git a/composer.json b/composer.json
index cbf7cf7..4e2b3af 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/customise/db/extension/webpushnotifications/",
- "version": "1.1.0-dev",
+ "version": "1.1.0",
"license": "GPL-2.0-only",
"authors": [
{
diff --git a/composer.lock b/composer.lock
index c7447e6..d3cbe71 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "ecb9034c8c529b039adf78c8963ad450",
+ "content-hash": "bc026c93f95601aa865acfd69042c74e",
"packages": [
{
"name": "brick/math",
@@ -1510,7 +1510,7 @@
],
"aliases": [],
"minimum-stability": "stable",
- "stability-flags": [],
+ "stability-flags": {},
"prefer-stable": false,
"prefer-lowest": false,
"platform": {
@@ -1520,6 +1520,6 @@
"ext-mbstring": "*",
"ext-openssl": "*"
},
- "platform-dev": [],
- "plugin-api-version": "2.2.0"
+ "platform-dev": {},
+ "plugin-api-version": "2.9.0"
}
diff --git a/language/en/webpushnotifications_module_acp.php b/language/en/webpushnotifications_module_acp.php
index 0c2af23..3550005 100644
--- a/language/en/webpushnotifications_module_acp.php
+++ b/language/en/webpushnotifications_module_acp.php
@@ -39,7 +39,7 @@
$lang = array_merge($lang, [
// Web push settings
- 'ACP_WEBPUSH_SETTINGS_EXPLAIN' => 'Here you can enable Web Push for board notifications. Web Push is a protocol for the real-time delivery of events to user agents, commonly referred to as push messages. It is compatible with the majority of modern browsers on both desktop and mobile devices. Users can opt to receive Web Push alerts in their browser by subscribing and enabling their preferred notifications in the UCP.
To enable push notifications on Apple mobile devices, your site needs to function as a Progressive Web Application (PWA). This requires users to add your site to their device’s home screen. Configure app metadata and install behaviour under PWA settings.',
+ 'ACP_WEBPUSH_SETTINGS_EXPLAIN' => 'Here you can enable Web Push for board notifications. Web Push is a protocol for the real-time delivery of events to user agents, commonly referred to as push messages. It is compatible with the majority of modern browsers on both desktop and mobile devices. Users can opt to receive Web Push alerts in their browser by subscribing and enabling their preferred notifications in the UCP.
To support push notifications on Apple mobile devices, your site must function as a Progressive Web App (PWA). Apple requires users to add the site to their device’s home screen before push notifications can be enabled. Configure app appearance under PWA settings.',
'WEBPUSH_ENABLE' => 'Enable Web Push',
'WEBPUSH_ENABLE_EXPLAIN' => 'Allow users to receive notifications in their browser or device via Web Push. To utilise Web Push, you must input or generate valid VAPID identification keys.',
'WEBPUSH_GENERATE_VAPID_KEYS' => 'Generate Identification keys',
@@ -56,7 +56,7 @@
'WEBPUSH_INSECURE_SERVER_ERROR' => 'This board is not using a secure SSL/HTTPS protocol, which is required for enabling web push notifications. Alternatively, the server environment might be misconfigured. Ensure that the HTTPS and HEADER_CLIENT_PROTO server environment variables are correctly configured.',
// PWA Settings
- 'ACP_PWA_SETTINGS_EXPLAIN' => 'Here you can configure Progressive Web App (PWA) features, including app metadata, icons, theme colours, and install prompts.',
+ 'ACP_PWA_SETTINGS_EXPLAIN' => 'Progressive Web Apps (PWAs) allow users to install your board on their mobile device and use it like an app. These settings control the app name, icons, colours, and install prompts shown to users.',
'PWA_SHORT_NAME' => 'Short site name',
'PWA_SHORT_NAME_EXPLAIN' => 'Your site name in 12 characters or fewer, which may be used as a label for an icon on a mobile device’s home screen. (If this field is left empty, the first 12 characters of the Site name will be used.)',
'PWA_SHORT_NAME_INVALID' => '“Short site name” exceeds the 12 character limit.',