Skip to content

Commit

Permalink
chore: bump version to 3.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DenverCoder1 committed Jun 23, 2023
1 parent 35ef050 commit 938de53
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ The following are known limitations that cannot be fixed:

## Changelog

### Changes in 3.17.1

- Fixed issue with headers not being passed when using Firefox
- Added explicit variable declaration that was previously implicit
- Minor refactoring

### Changes in 3.17.0

- Added support for Pushshift API token authentication
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.17.0",
"version": "3.17.1",
"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.17.0",
"version": "3.17.1",
"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.17.0
// @version 3.17.1
// @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.17.0";
const VERSION = "3.17.1";

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

0 comments on commit 938de53

Please sign in to comment.