Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nemanjam committed May 6, 2024
1 parent 3442f15 commit f24754e
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 12 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down
4 changes: 4 additions & 0 deletions docs/release notes/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion source/manifest-v2-firefox.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion source/manifest-v3-chrome.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion source/manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion source/reddit-comments/popup/section-link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const SectionLink: FC = () => {
Reddit Unread Comments
</Text>
<Text as="label" size="1">
Version: 1.1.0
Version: 1.1.1
</Text>
</Flex>
</Flex>
Expand Down

0 comments on commit f24754e

Please # to comment.