diff --git a/changelog.md b/changelog.md index 147af7d..aafdc3d 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,23 @@ # Changelog +## [v2.0.0] - 2024-04-11 + +### Added + +- feat: support Firefox for Android ([#38](https://github.com/Robot-Inventor/hide-view-count/pull/38)) +- feat: support new TweetDeck URL ([#39](https://github.com/Robot-Inventor/hide-view-count/pull/39)) + +### Fixed + +- Performance is now more stable than ever + +## [v1.5.0] - 2023-02-26 + +### Fixed + +- Support for Twitter specification changes [3c45ae7](https://github.com/Robot-Inventor/hide-view-count/commit/3c45ae7b560b9c1961c92c1f9f6ff23d9ffdc7df) +- Fixed a bug that hid the time displayed in the upper right corner of tweets [3c45ae7](https://github.com/Robot-Inventor/hide-view-count/commit/3c45ae7b560b9c1961c92c1f9f6ff23d9ffdc7df) + ## [v1.4.0] - 2023-01-12 ### Fixed diff --git a/index.user.js b/index.user.js index fe07ab6..1b90bb1 100644 --- a/index.user.js +++ b/index.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name Hide View Count // @namespace https://github.com/Robot-Inventor/hide-view-count -// @version 1.5.0 +// @version 2.0.0 // @description This extension hides the number of impressions on Twitter and prevents the creation of an approval desire monster. It won't allow the View Count to be displayed for even a second! // @author Robot-Inventor (ろぼいん / @keita_roboin) // @match https://twitter.com/* diff --git a/package-lock.json b/package-lock.json index 6c8b0e6..1e56353 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "hide-impression", - "version": "1.5.0", + "version": "2.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "hide-impression", - "version": "1.5.0", + "version": "2.0.0", "license": "MIT", "dependencies": { "chokidar": "^3.6.0", diff --git a/package.json b/package.json index c5917b6..212c475 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hide-impression", - "version": "1.5.0", + "version": "2.0.0", "description": "Browser extension to hide the number of Twitter impressions", "main": "index.js", "scripts": { @@ -35,4 +35,4 @@ "webpack": "^5.91.0", "webpack-cli": "^5.1.4" } -} \ No newline at end of file +}