diff --git a/CHANGES.md b/CHANGES.md index c035dc4b..a4368696 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,11 +11,20 @@ Changes: - None yet Fixes: - - Add additional appelate attachment page detection logic([#352](https://github.com/freelawproject/recap-chrome/pull/352)) - + - None yet + For developers: - Nothing yet +## 2.4.2 (2023-12-15) + +Features: + - Adds annual tab popup asking for support from all users (sorry). + +Fixes: + - Add additional appellate attachment page detection logic([#352](https://github.com/freelawproject/recap-chrome/pull/352)) + + ## 2.4.1 (2023-11-17) Changes: diff --git a/package.json b/package.json index 7dbff12a..2bb0749f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "recap-chrome", - "version": "2.4.1", + "version": "2.4.2", "description": "RECAP improves the experience of using PACER, the online public acces system for the U.S. federal courts", "main": " ", "directories": { diff --git a/src/background.js b/src/background.js index b2ab3b99..161f1628 100644 --- a/src/background.js +++ b/src/background.js @@ -83,6 +83,10 @@ function showNotificationTab(details){ chrome.tabs.create({ url: 'https://free.law/fundraiser/2022/recap' }); + } else if (details.reason === 'update' && currentVersion === '2.4.2'){ + chrome.tabs.create({ + url: 'https://donate.free.law/forms/11' + }); } } diff --git a/src/manifest.json b/src/manifest.json index dfa0f968..2d92afbf 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -4,7 +4,7 @@ "author": "Free Law Project and the Center for Information Technology and Policy at Princeton", "description": "RECAP improves the experience of using PACER, the online public access system for the U.S. federal courts.", "homepage_url": "https://free.law/recap/", - "version": "2.4.1", + "version": "2.4.2", "icons": { "16": "assets/images/icon-16.png", "19": "assets/images/icon-19.png",