Skip to content

Commit

Permalink
add yellow/green star icon and menu to wishlist page
Browse files Browse the repository at this point in the history
  • Loading branch information
7dJx1qP committed Sep 16, 2022
1 parent c6f9e2c commit 7461243
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
GITHUB_ROOT_URL = r"https://raw.githubusercontent.com/7dJx1qP/stashdb-userscripts/%%BRANCH%%/"
BUNDLE_VERSION = "0.2.4"
BUNDLE_VERSION = "0.2.5"
SERVER_URL = "https://stashdb.org"
NAMESPACE = "https://github.com/7dJx1qP/stashdb-userscripts"
2 changes: 1 addition & 1 deletion dist/public/StashDB Userscripts Bundle.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// @name StashDB Userscripts Bundle
// @namespace https://github.com/7dJx1qP/stashdb-userscripts
// @description StashDB Userscripts Bundle
// @version 0.2.4
// @version 0.2.5
// @author 7dJx1qP
// @match https://stashdb.org/*
// @resource IMPORTED_CSS https://raw.githubusercontent.com/7dJx1qP/stashdb-userscripts/master/dist/public/scene.css
Expand Down
3 changes: 2 additions & 1 deletion src/StashDBUserscriptLibrary.js
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,8 @@
(stashType === 'scenes' && !stashId) ||
(stashType === 'performers' && stashId && !action) ||
(stashType === 'studios' && stashId && !action) ||
(stashType === 'tags' && stashId && !action)) {
(stashType === 'tags' && stashId && !action) ||
(stashType === 'wishlist' && !stashId)) {
waitForElementByXpath('(//div[contains(@class, "HomePage-scenes")]/div[@class="col"]|//div[@class="scenes-list"]/div[@class="row"]/div[@class="col-3"])/div[contains(@class, "SceneCard")]', (xpath, el) => {
const sceneCards = document.querySelectorAll('.row .SceneCard');
for (const sceneCard of sceneCards) {
Expand Down

0 comments on commit 7461243

Please sign in to comment.