Skip to content

Commit

Permalink
chore: bump version to 3.16.3
Browse files Browse the repository at this point in the history
  • Loading branch information
DenverCoder1 committed Feb 15, 2023
1 parent 4de8146 commit 2ef0d7b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,13 @@ The following are known limitations that cannot be fixed:

## Changelog

### Changes in 3.16.3

- Added support for `[ Removed by Reddit ]` comments in moderator view
- Added icon to Userscript metadata
- Added more error handling for Pushshift API issues
- Prevent class names from being added to user flairs on old Reddit

### Changes in 3.16.2

- Updated manifest v2 permissions list for Firefox 109 support
Expand Down
2 changes: 1 addition & 1 deletion manifest-v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Unedit and Undelete for Reddit",
"description": "Show original comments and posts from before they were edited or removed",
"version": "3.16.2",
"version": "3.16.3",
"content_scripts": [
{
"run_at": "document_idle",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "Unedit and Undelete for Reddit",
"description": "Show original comments and posts from before they were edited or removed",
"version": "3.16.2",
"version": "3.16.3",
"content_scripts": [
{
"run_at": "document_idle",
Expand Down
4 changes: 2 additions & 2 deletions script.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name Unedit and Undelete for Reddit
// @namespace http://tampermonkey.net/
// @version 3.16.2
// @version 3.16.3
// @description Creates the option next to edited and deleted Reddit comments/posts to show the original comment from before it was edited
// @author Jonah Lawrence (DenverCoder1)
// @grant none
Expand Down Expand Up @@ -36,7 +36,7 @@
* The current version of the script
* @type {string}
*/
const VERSION = "3.16.2";
const VERSION = "3.16.3";

/**
* Whether or not we are on old reddit and not redesign.
Expand Down

0 comments on commit 2ef0d7b

Please sign in to comment.