diff --git a/CHANGELOG.md b/CHANGELOG.md index 79e0383..42af12c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.24.1 Stash Userscripts Bundle +### 0.3.1 Stash Stats +#### Fixed +- Fix showing unmatched instead of matched stats + ## 0.24.0 Stash Userscripts Bundle ### 0.6.0 Stash Batch Result Toggle #### Changed diff --git a/config.py b/config.py index 309820a..f2b80bf 100644 --- a/config.py +++ b/config.py @@ -1,4 +1,4 @@ GITHUB_ROOT_URL = r"https://raw.githubusercontent.com/7dJx1qP/stash-userscripts/%%BRANCH%%/" -BUNDLE_VERSION = "0.24.0" +BUNDLE_VERSION = "0.24.1" SERVER_URL = "http://localhost:9999" NAMESPACE = "https://github.com/7dJx1qP/stash-userscripts" \ No newline at end of file diff --git a/dist/public/Stash Stats.user.js b/dist/public/Stash Stats.user.js index f3b48fa..86cd80a 100644 --- a/dist/public/Stash Stats.user.js +++ b/dist/public/Stash Stats.user.js @@ -2,7 +2,7 @@ // @name Stash Stats // @namespace https://github.com/7dJx1qP/stash-userscripts // @description Add stats to stats page -// @version 0.3.0 +// @version 0.3.1 // @author 7dJx1qP // @match http://localhost:9999/* // @grant unsafeWindow @@ -45,7 +45,7 @@ "stash_id_endpoint": { "endpoint": "", "stash_id": "", - "modifier": "IS_NULL" + "modifier": "NOT_NULL" } } }, @@ -73,7 +73,7 @@ "stash_id_endpoint": { "endpoint": "", "stash_id": "", - "modifier": "IS_NULL" + "modifier": "NOT_NULL" } } }, @@ -99,7 +99,7 @@ "stash_id_endpoint": { "endpoint": "", "stash_id": "", - "modifier": "IS_NULL" + "modifier": "NOT_NULL" } } }, diff --git a/dist/public/Stash Userscripts Bundle.user.js b/dist/public/Stash Userscripts Bundle.user.js index 0207bbc..e8708b6 100644 --- a/dist/public/Stash Userscripts Bundle.user.js +++ b/dist/public/Stash Userscripts Bundle.user.js @@ -2,7 +2,7 @@ // @name Stash Userscripts Bundle // @namespace https://github.com/7dJx1qP/stash-userscripts // @description Stash Userscripts Bundle -// @version 0.24.0 +// @version 0.24.1 // @author 7dJx1qP // @match http://localhost:9999/* // @resource IMPORTED_CSS https://raw.githubusercontent.com/fengyuanchen/cropperjs/main/dist/cropper.min.css diff --git a/src/body/Stash Stats.user.js b/src/body/Stash Stats.user.js index 4cd382c..2711d12 100644 --- a/src/body/Stash Stats.user.js +++ b/src/body/Stash Stats.user.js @@ -34,7 +34,7 @@ "stash_id_endpoint": { "endpoint": "", "stash_id": "", - "modifier": "IS_NULL" + "modifier": "NOT_NULL" } } }, @@ -62,7 +62,7 @@ "stash_id_endpoint": { "endpoint": "", "stash_id": "", - "modifier": "IS_NULL" + "modifier": "NOT_NULL" } } }, @@ -88,7 +88,7 @@ "stash_id_endpoint": { "endpoint": "", "stash_id": "", - "modifier": "IS_NULL" + "modifier": "NOT_NULL" } } }, diff --git a/src/header/Stash Stats.user.js b/src/header/Stash Stats.user.js index e3762c0..c946fa0 100644 --- a/src/header/Stash Stats.user.js +++ b/src/header/Stash Stats.user.js @@ -2,7 +2,7 @@ // @name Stash Stats // @namespace %NAMESPACE% // @description Add stats to stats page -// @version 0.3.0 +// @version 0.3.1 // @author 7dJx1qP // @match %MATCHURL% // @grant unsafeWindow