Skip to content

Commit 58e8e7a

Browse files
committed
chore: bump version to 3.17.3
1 parent 64a194a commit 58e8e7a

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,14 @@ The following are known limitations that cannot be fixed:
7676

7777
## Changelog
7878

79+
### Changes in 3.17.3
80+
81+
- Make inline fetch fix only apply to Firefox
82+
- Store hidden state of token container so it is hidden if previously closed (will reopen if token is used and is invalid)
83+
7984
### Changes in 3.17.2
8085

81-
- Fixed an unsafe inline issue in Chrome from the previous version (not released on Chrome)
86+
- ~~Fixed an unsafe inline issue in Chrome from previous version (not released on Chrome)~~
8287

8388
### Changes in 3.17.1
8489

manifest-v2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "Unedit and Undelete for Reddit",
44
"description": "Show original comments and posts from before they were edited or removed",
5-
"version": "3.17.2",
5+
"version": "3.17.3",
66
"content_scripts": [
77
{
88
"run_at": "document_idle",

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "Unedit and Undelete for Reddit",
44
"description": "Show original comments and posts from before they were edited or removed",
5-
"version": "3.17.2",
5+
"version": "3.17.3",
66
"content_scripts": [
77
{
88
"run_at": "document_idle",

script.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ==UserScript==
22
// @name Unedit and Undelete for Reddit
33
// @namespace http://tampermonkey.net/
4-
// @version 3.17.2
4+
// @version 3.17.3
55
// @description Creates the option next to edited and deleted Reddit comments/posts to show the original comment from before it was edited
66
// @author Jonah Lawrence (DenverCoder1)
77
// @grant none
@@ -36,7 +36,7 @@
3636
* The current version of the script
3737
* @type {string}
3838
*/
39-
const VERSION = "3.17.2";
39+
const VERSION = "3.17.3";
4040

4141
/**
4242
* Whether or not we are on old reddit and not redesign.

0 commit comments

Comments
 (0)