From f24754ec877e95e7a3951093309532d3e9d869ba Mon Sep 17 00:00:00 2001 From: nemanjam Date: Mon, 6 May 2024 09:30:40 +0200 Subject: [PATCH] bump version --- README.md | 14 +++++++------- docs/release notes/release-notes.md | 4 ++++ package.json | 2 +- source/manifest-v2-firefox.json | 2 +- source/manifest-v3-chrome.json | 2 +- source/manifest.json | 2 +- source/reddit-comments/popup/section-link.tsx | 2 +- 7 files changed, 16 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index c8bba13..608f4a2 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,11 @@ Chrome/Firefox extension for easier tracking of new comments on Reddit. Free, op #### Update 2024 -Around January 2024. Reddit moved all users to the new design and made version `v0.0.4` outdated. In April 2024. I updated the extension to `1.1.0` to support the new design, and that is the only Reddit design that is supported (available on `www.reddit.com`). +Around January 2024. Reddit moved all users to the new design and made version `v0.0.4` outdated. In April 2024. I updated the extension to `1.1.1` to support the new design, and that is the only Reddit design that is supported (available on `www.reddit.com`). The screenshot bellow shows the new design, demo video shows deprecated design - all features are the same, it shouldn't be a problem. -Version `1.1.0` also includes `Immediately` checkbox to mark the current thread as read manually. +Version `1.1.1` also includes `Immediately` checkbox to mark the current thread as read manually. ## Screenshots @@ -49,19 +49,19 @@ Version `1.1.0` also includes `Immediately` checkbox to mark the current thread ### Install manually -Go to release page [https://github.com/nemanjam/reddit-unread-comments/releases/tag/1.1.0](https://github.com/nemanjam/reddit-unread-comments/releases/tag/1.1.0) and download Firefox `.xpi` or Chrome `.zip`. +Go to release page [https://github.com/nemanjam/reddit-unread-comments/releases/tag/1.1.1](https://github.com/nemanjam/reddit-unread-comments/releases/tag/1.1.1) and download Firefox `.xpi` or Chrome `.zip`. - **Firefox manual install:** - - In Firefox click `Settings` (three horizontal lines in the top-right corner), click `Extensions tab`, click `Gear` icon right from `Manage Your Extensions`, choose `Install Add-on From File...` from the menu and browse `reddit-unread-comments-1.1.0-firefox.xpi` file which you can download from the release page. + - In Firefox click `Settings` (three horizontal lines in the top-right corner), click `Extensions tab`, click `Gear` icon right from `Manage Your Extensions`, choose `Install Add-on From File...` from the menu and browse `reddit-unread-comments-1.1.1-firefox.xpi` file which you can download from the release page. - - **Firefox `.xpi`:** [reddit-unread-comments-1.1.0-firefox.xpi](https://github.com/nemanjam/reddit-unread-comments/releases/download/1.1.0/reddit-unread-comments-1.1.0-firefox.xpi) + - **Firefox `.xpi`:** [reddit-unread-comments-1.1.1-firefox.xpi](https://github.com/nemanjam/reddit-unread-comments/releases/download/1.1.1/reddit-unread-comments-1.1.1-firefox.xpi) - **Chrome manual install:** - - In Chrome navigate to `chrome://extensions/`, switch `Enable developer mode` to true, click `Load unpacked` and browse `reddit-unread-comments-1.1.0-chrome.zip` file which you can download from the release page. + - In Chrome navigate to `chrome://extensions/`, switch `Enable developer mode` to true, click `Load unpacked` and browse `reddit-unread-comments-1.1.1-chrome.zip` file which you can download from the release page. - - **Chrome `.zip`:** [reddit-unread-comments-1.1.0-chrome.zip](https://github.com/nemanjam/reddit-unread-comments/releases/download/1.1.0/reddit-unread-comments-1.1.0-chrome.zip) + - **Chrome `.zip`:** [reddit-unread-comments-1.1.1-chrome.zip](https://github.com/nemanjam/reddit-unread-comments/releases/download/1.1.1/reddit-unread-comments-1.1.1-chrome.zip) ## Usage diff --git a/docs/release notes/release-notes.md b/docs/release notes/release-notes.md index c32cf64..935b16b 100644 --- a/docs/release notes/release-notes.md +++ b/docs/release notes/release-notes.md @@ -17,3 +17,7 @@ Screenshot of User Settings popup and highlighted unread comments and highlighte - replace the existing debounce function with `debounceLeading` and `debounceTrailing` from lodash 3. Add `retryAndWait` function for better awaitng thread loading state +#### 1.1.1 + +1. fix highlight on active tab + diff --git a/package.json b/package.json index bbad198..dbb6810 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "reddit-unread-comments", - "version": "1.1.0", + "version": "1.1.1", "description": "Web extension for easier tracking of new comments on Reddit.", "private": false, "repository": "https://github.com/nemanjam/reddit-unread-comments", diff --git a/source/manifest-v2-firefox.json b/source/manifest-v2-firefox.json index c8cda3b..d9e9cf7 100644 --- a/source/manifest-v2-firefox.json +++ b/source/manifest-v2-firefox.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Reddit Unread Comments", - "version": "1.1.0", + "version": "1.1.1", "icons": { "16": "assets/icons/favicon-16.png", diff --git a/source/manifest-v3-chrome.json b/source/manifest-v3-chrome.json index 593d661..45e27a5 100644 --- a/source/manifest-v3-chrome.json +++ b/source/manifest-v3-chrome.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "Reddit Unread Comments", - "version": "1.1.0", + "version": "1.1.1", "icons": { "16": "assets/icons/favicon-16.png", diff --git a/source/manifest.json b/source/manifest.json index c8cda3b..d9e9cf7 100644 --- a/source/manifest.json +++ b/source/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Reddit Unread Comments", - "version": "1.1.0", + "version": "1.1.1", "icons": { "16": "assets/icons/favicon-16.png", diff --git a/source/reddit-comments/popup/section-link.tsx b/source/reddit-comments/popup/section-link.tsx index db37a87..9e8b02a 100644 --- a/source/reddit-comments/popup/section-link.tsx +++ b/source/reddit-comments/popup/section-link.tsx @@ -20,7 +20,7 @@ const SectionLink: FC = () => { Reddit Unread Comments - Version: 1.1.0 + Version: 1.1.1