├── .docs ├── README.md └── scripts │ ├── build_site.sh │ └── deploy.yml ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── README.md ├── develop ├── .template │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── package.json.hbs │ ├── src │ │ ├── components │ │ │ └── {{pascalCase component}}.tsx │ │ ├── globals.ts │ │ ├── types │ │ │ └── IPluginApi.ts │ │ ├── {{camelCase projectName}}.scss │ │ ├── {{camelCase projectName}}.tsx │ │ └── {{camelCase projectName}}.yml │ └── tsconfig.json ├── README.md ├── external-links-enhanced │ ├── .prettierignore │ ├── .prettierrc │ ├── CHANGELOG.md │ ├── README.md │ ├── dist │ │ ├── custom │ │ │ ├── bluesky.svg │ │ │ ├── custom.json │ │ │ └── onlyfans.svg │ │ ├── externalLinksEnhanced.css │ │ ├── externalLinksEnhanced.js │ │ └── externalLinksEnhanced.yml │ ├── package.json │ ├── src │ │ ├── components │ │ │ ├── ExternalLinkButtons.tsx │ │ │ ├── ExternalLinkIconButton.tsx │ │ │ ├── IconRenderer.tsx │ │ │ └── LinkDropdownMenu.tsx │ │ ├── externalLinksEnhanced.scss │ │ ├── externalLinksEnhanced.tsx │ │ ├── externalLinksEnhanced.yml │ │ ├── globals.ts │ │ ├── hooks │ │ │ └── useExternalLinkSpecs.ts │ │ ├── types │ │ │ ├── IPluginApi.ts │ │ │ └── LinkDefinitions.ts │ │ └── utils │ │ │ ├── icon.ts │ │ │ ├── json.ts │ │ │ ├── svg.ts │ │ │ └── text.ts │ └── tsconfig.json ├── flexible-date-input │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── dist │ │ ├── flexibleDateInput.js │ │ └── flexibleDateInput.yml │ ├── package.json │ ├── src │ │ ├── components │ │ │ └── DateInputHelper.tsx │ │ ├── flexibleDateInput.tsx │ │ ├── flexibleDateInput.yml │ │ ├── globals.ts │ │ └── types │ │ │ ├── IDateInputProps.ts │ │ │ └── IPluginApi.ts │ └── tsconfig.json ├── package.json ├── plopfile.js ├── qx-scene-card │ ├── .prettierignore │ ├── .prettierrc │ ├── CHANGELOG.md │ ├── README.md │ ├── dist │ │ ├── fonts │ │ │ ├── Inter-Bold.woff2 │ │ │ ├── Inter-Light.woff2 │ │ │ ├── Inter-Regular.woff2 │ │ │ └── Inter-Thin.woff2 │ │ ├── qxSceneCard.css │ │ ├── qxSceneCard.js │ │ └── qxSceneCard.yml │ ├── package.json │ ├── src │ │ ├── components │ │ │ ├── Footer.tsx │ │ │ ├── Performers │ │ │ │ ├── PerformerHoverPopover.tsx │ │ │ │ ├── PerformerList.tsx │ │ │ │ └── PerformerListLink.tsx │ │ │ └── SceneCardDetails.tsx │ │ ├── fonts │ │ │ ├── Inter-Bold.woff2 │ │ │ ├── Inter-Light.woff2 │ │ │ ├── Inter-Regular.woff2 │ │ │ └── Inter-Thin.woff2 │ │ ├── globals.ts │ │ ├── helpers │ │ │ ├── FadeWatched.ts │ │ │ ├── PopoverButtons.ts │ │ │ └── StudioLogo.ts │ │ ├── hooks │ │ │ ├── usePerformerQuery.ts │ │ │ ├── useSceneDate.tsx │ │ │ └── useSettings.ts │ │ ├── qxSceneCard.scss │ │ ├── qxSceneCard.tsx │ │ ├── qxSceneCard.yml │ │ ├── types │ │ │ ├── IPerformer.ts │ │ │ ├── IPluginApi.ts │ │ │ ├── IScene.ts │ │ │ ├── ISceneCard.ts │ │ │ └── IStudio.ts │ │ └── utils │ │ │ └── text.ts │ └── tsconfig.json ├── qx-scene-page │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── TODO.md │ ├── dist │ │ ├── fonts │ │ │ ├── Inter-Bold.woff2 │ │ │ ├── Inter-Light.woff2 │ │ │ ├── Inter-Regular.woff2 │ │ │ └── Inter-Thin.woff2 │ │ ├── qxScenePage.css │ │ ├── qxScenePage.js │ │ └── qxScenePage.yml │ ├── package.json │ ├── src │ │ ├── components │ │ │ ├── Details │ │ │ │ ├── Description.tsx │ │ │ │ ├── Details.tsx │ │ │ │ ├── Editor.tsx │ │ │ │ ├── Filters │ │ │ │ │ ├── FilterButton.tsx │ │ │ │ │ ├── FilterOverlay.tsx │ │ │ │ │ └── Slider.tsx │ │ │ │ ├── Header.tsx │ │ │ │ └── Performers │ │ │ │ │ ├── PerformerItem.tsx │ │ │ │ │ └── PerformerList.tsx │ │ │ └── SidePanel │ │ │ │ ├── PerformerPanel.tsx │ │ │ │ ├── QueuePanel.tsx │ │ │ │ ├── SceneItem.tsx │ │ │ │ ├── SceneList.tsx │ │ │ │ ├── SidePanel.tsx │ │ │ │ └── StudioPanel.tsx │ │ ├── fonts │ │ │ ├── Inter-Bold.woff2 │ │ │ ├── Inter-Light.woff2 │ │ │ ├── Inter-Regular.woff2 │ │ │ └── Inter-Thin.woff2 │ │ ├── globals.ts │ │ ├── hooks │ │ │ ├── useConfiguration.tsx │ │ │ ├── usePerformerScenes.tsx │ │ │ └── useStudioScenes.tsx │ │ ├── qxScenePage.scss │ │ ├── qxScenePage.tsx │ │ ├── qxScenePage.yml │ │ ├── types │ │ │ ├── IPerformer.ts │ │ │ ├── IPluginApi.ts │ │ │ ├── IQxScenePageSettings.ts │ │ │ ├── IScene.ts │ │ │ ├── ISceneFilter.ts │ │ │ ├── ISceneMarker.ts │ │ │ ├── IStudio.ts │ │ │ └── ITag.ts │ │ └── utils │ │ │ └── TextUtils.ts │ └── tsconfig.json ├── stash-notes │ ├── dist │ │ ├── stashNotes.js │ │ └── stashNotes.yml │ ├── package.json │ ├── src │ │ ├── stashNotes.tsx │ │ └── stashNotes.yml │ └── tsconfig.json └── stash-notifications │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── dist │ ├── stashNotifications.css │ ├── stashNotifications.js │ └── stashNotifications.yml │ ├── package.json │ ├── src │ ├── components │ │ ├── NotificationDropdown.tsx │ │ ├── StashNotificationsButton.tsx │ │ └── modal │ │ │ ├── NotificationModal.tsx │ │ │ ├── PackageModalBody.tsx │ │ │ ├── PluginNotification.tsx │ │ │ └── ScraperNotification.tsx │ ├── globals.ts │ ├── hooks │ │ ├── useNotifications.tsx │ │ └── usePackageUpdateChecking.ts │ ├── stashNotifications.scss │ ├── stashNotifications.tsx │ ├── stashNotifications.yml │ └── types │ │ ├── INotification.ts │ │ ├── IPackage.ts │ │ └── IPluginApi.ts │ └── tsconfig.json └── plugins ├── externalLinksEnhanced ├── CHANGELOG.md ├── README.md ├── custom │ ├── bluesky.svg │ ├── custom.json │ └── onlyfans.svg ├── externalLinksEnhanced.css ├── externalLinksEnhanced.js └── externalLinksEnhanced.yml ├── flexibleDateInput ├── flexibleDateInput.js └── flexibleDateInput.yml ├── qxSceneCard ├── CHANGELOG.md ├── README.md ├── fonts │ ├── Inter-Bold.woff2 │ ├── Inter-Light.woff2 │ ├── Inter-Regular.woff2 │ └── Inter-Thin.woff2 ├── qxSceneCard.css ├── qxSceneCard.js └── qxSceneCard.yml ├── qxStudioCardCSSTweak ├── README.md ├── qxStudioCardCSSTweak.css └── qxStudioCardCSSTweak.yml ├── qxTagCardCSSTweak ├── README.md ├── qxTagCardCSSTweak.css └── qxTagCardCSSTweak.yml ├── stashNotes ├── stashNotes.js └── stashNotes.yml └── stashNotifications ├── README.md ├── stashNotifications.css ├── stashNotifications.js └── stashNotifications.yml /.docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/.docs/README.md -------------------------------------------------------------------------------- /.docs/scripts/build_site.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/.docs/scripts/build_site.sh -------------------------------------------------------------------------------- /.docs/scripts/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/.docs/scripts/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /_site 2 | node_modules 3 | yarn.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/README.md -------------------------------------------------------------------------------- /develop/.template/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/.template/.prettierignore -------------------------------------------------------------------------------- /develop/.template/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/.template/.prettierrc -------------------------------------------------------------------------------- /develop/.template/README.md: -------------------------------------------------------------------------------- 1 | # {{pascalCase projectName}} 2 | 3 | A plugin for Stash. -------------------------------------------------------------------------------- /develop/.template/package.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/.template/package.json.hbs -------------------------------------------------------------------------------- /develop/.template/src/components/{{pascalCase component}}.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/.template/src/components/{{pascalCase component}}.tsx -------------------------------------------------------------------------------- /develop/.template/src/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/.template/src/globals.ts -------------------------------------------------------------------------------- /develop/.template/src/types/IPluginApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/.template/src/types/IPluginApi.ts -------------------------------------------------------------------------------- /develop/.template/src/{{camelCase projectName}}.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /develop/.template/src/{{camelCase projectName}}.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/.template/src/{{camelCase projectName}}.tsx -------------------------------------------------------------------------------- /develop/.template/src/{{camelCase projectName}}.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/.template/src/{{camelCase projectName}}.yml -------------------------------------------------------------------------------- /develop/.template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/.template/tsconfig.json -------------------------------------------------------------------------------- /develop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/README.md -------------------------------------------------------------------------------- /develop/external-links-enhanced/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/.prettierignore -------------------------------------------------------------------------------- /develop/external-links-enhanced/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/.prettierrc -------------------------------------------------------------------------------- /develop/external-links-enhanced/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/CHANGELOG.md -------------------------------------------------------------------------------- /develop/external-links-enhanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/README.md -------------------------------------------------------------------------------- /develop/external-links-enhanced/dist/custom/bluesky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/dist/custom/bluesky.svg -------------------------------------------------------------------------------- /develop/external-links-enhanced/dist/custom/custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/dist/custom/custom.json -------------------------------------------------------------------------------- /develop/external-links-enhanced/dist/custom/onlyfans.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/dist/custom/onlyfans.svg -------------------------------------------------------------------------------- /develop/external-links-enhanced/dist/externalLinksEnhanced.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/dist/externalLinksEnhanced.css -------------------------------------------------------------------------------- /develop/external-links-enhanced/dist/externalLinksEnhanced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/dist/externalLinksEnhanced.js -------------------------------------------------------------------------------- /develop/external-links-enhanced/dist/externalLinksEnhanced.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/dist/externalLinksEnhanced.yml -------------------------------------------------------------------------------- /develop/external-links-enhanced/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/package.json -------------------------------------------------------------------------------- /develop/external-links-enhanced/src/components/ExternalLinkButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/src/components/ExternalLinkButtons.tsx -------------------------------------------------------------------------------- /develop/external-links-enhanced/src/components/ExternalLinkIconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/src/components/ExternalLinkIconButton.tsx -------------------------------------------------------------------------------- /develop/external-links-enhanced/src/components/IconRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/src/components/IconRenderer.tsx -------------------------------------------------------------------------------- /develop/external-links-enhanced/src/components/LinkDropdownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/src/components/LinkDropdownMenu.tsx -------------------------------------------------------------------------------- /develop/external-links-enhanced/src/externalLinksEnhanced.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/src/externalLinksEnhanced.scss -------------------------------------------------------------------------------- /develop/external-links-enhanced/src/externalLinksEnhanced.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/src/externalLinksEnhanced.tsx -------------------------------------------------------------------------------- /develop/external-links-enhanced/src/externalLinksEnhanced.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/src/externalLinksEnhanced.yml -------------------------------------------------------------------------------- /develop/external-links-enhanced/src/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/src/globals.ts -------------------------------------------------------------------------------- /develop/external-links-enhanced/src/hooks/useExternalLinkSpecs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/src/hooks/useExternalLinkSpecs.ts -------------------------------------------------------------------------------- /develop/external-links-enhanced/src/types/IPluginApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/src/types/IPluginApi.ts -------------------------------------------------------------------------------- /develop/external-links-enhanced/src/types/LinkDefinitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/src/types/LinkDefinitions.ts -------------------------------------------------------------------------------- /develop/external-links-enhanced/src/utils/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/src/utils/icon.ts -------------------------------------------------------------------------------- /develop/external-links-enhanced/src/utils/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/src/utils/json.ts -------------------------------------------------------------------------------- /develop/external-links-enhanced/src/utils/svg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/src/utils/svg.ts -------------------------------------------------------------------------------- /develop/external-links-enhanced/src/utils/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/src/utils/text.ts -------------------------------------------------------------------------------- /develop/external-links-enhanced/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/external-links-enhanced/tsconfig.json -------------------------------------------------------------------------------- /develop/flexible-date-input/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/flexible-date-input/.prettierignore -------------------------------------------------------------------------------- /develop/flexible-date-input/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/flexible-date-input/.prettierrc -------------------------------------------------------------------------------- /develop/flexible-date-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/flexible-date-input/README.md -------------------------------------------------------------------------------- /develop/flexible-date-input/dist/flexibleDateInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/flexible-date-input/dist/flexibleDateInput.js -------------------------------------------------------------------------------- /develop/flexible-date-input/dist/flexibleDateInput.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/flexible-date-input/dist/flexibleDateInput.yml -------------------------------------------------------------------------------- /develop/flexible-date-input/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/flexible-date-input/package.json -------------------------------------------------------------------------------- /develop/flexible-date-input/src/components/DateInputHelper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/flexible-date-input/src/components/DateInputHelper.tsx -------------------------------------------------------------------------------- /develop/flexible-date-input/src/flexibleDateInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/flexible-date-input/src/flexibleDateInput.tsx -------------------------------------------------------------------------------- /develop/flexible-date-input/src/flexibleDateInput.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/flexible-date-input/src/flexibleDateInput.yml -------------------------------------------------------------------------------- /develop/flexible-date-input/src/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/flexible-date-input/src/globals.ts -------------------------------------------------------------------------------- /develop/flexible-date-input/src/types/IDateInputProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/flexible-date-input/src/types/IDateInputProps.ts -------------------------------------------------------------------------------- /develop/flexible-date-input/src/types/IPluginApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/flexible-date-input/src/types/IPluginApi.ts -------------------------------------------------------------------------------- /develop/flexible-date-input/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/flexible-date-input/tsconfig.json -------------------------------------------------------------------------------- /develop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/package.json -------------------------------------------------------------------------------- /develop/plopfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/plopfile.js -------------------------------------------------------------------------------- /develop/qx-scene-card/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/.prettierignore -------------------------------------------------------------------------------- /develop/qx-scene-card/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/.prettierrc -------------------------------------------------------------------------------- /develop/qx-scene-card/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/CHANGELOG.md -------------------------------------------------------------------------------- /develop/qx-scene-card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/README.md -------------------------------------------------------------------------------- /develop/qx-scene-card/dist/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/dist/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /develop/qx-scene-card/dist/fonts/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/dist/fonts/Inter-Light.woff2 -------------------------------------------------------------------------------- /develop/qx-scene-card/dist/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/dist/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /develop/qx-scene-card/dist/fonts/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/dist/fonts/Inter-Thin.woff2 -------------------------------------------------------------------------------- /develop/qx-scene-card/dist/qxSceneCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/dist/qxSceneCard.css -------------------------------------------------------------------------------- /develop/qx-scene-card/dist/qxSceneCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/dist/qxSceneCard.js -------------------------------------------------------------------------------- /develop/qx-scene-card/dist/qxSceneCard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/dist/qxSceneCard.yml -------------------------------------------------------------------------------- /develop/qx-scene-card/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/package.json -------------------------------------------------------------------------------- /develop/qx-scene-card/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/components/Footer.tsx -------------------------------------------------------------------------------- /develop/qx-scene-card/src/components/Performers/PerformerHoverPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/components/Performers/PerformerHoverPopover.tsx -------------------------------------------------------------------------------- /develop/qx-scene-card/src/components/Performers/PerformerList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/components/Performers/PerformerList.tsx -------------------------------------------------------------------------------- /develop/qx-scene-card/src/components/Performers/PerformerListLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/components/Performers/PerformerListLink.tsx -------------------------------------------------------------------------------- /develop/qx-scene-card/src/components/SceneCardDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/components/SceneCardDetails.tsx -------------------------------------------------------------------------------- /develop/qx-scene-card/src/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /develop/qx-scene-card/src/fonts/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/fonts/Inter-Light.woff2 -------------------------------------------------------------------------------- /develop/qx-scene-card/src/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /develop/qx-scene-card/src/fonts/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/fonts/Inter-Thin.woff2 -------------------------------------------------------------------------------- /develop/qx-scene-card/src/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/globals.ts -------------------------------------------------------------------------------- /develop/qx-scene-card/src/helpers/FadeWatched.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/helpers/FadeWatched.ts -------------------------------------------------------------------------------- /develop/qx-scene-card/src/helpers/PopoverButtons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/helpers/PopoverButtons.ts -------------------------------------------------------------------------------- /develop/qx-scene-card/src/helpers/StudioLogo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/helpers/StudioLogo.ts -------------------------------------------------------------------------------- /develop/qx-scene-card/src/hooks/usePerformerQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/hooks/usePerformerQuery.ts -------------------------------------------------------------------------------- /develop/qx-scene-card/src/hooks/useSceneDate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/hooks/useSceneDate.tsx -------------------------------------------------------------------------------- /develop/qx-scene-card/src/hooks/useSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/hooks/useSettings.ts -------------------------------------------------------------------------------- /develop/qx-scene-card/src/qxSceneCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/qxSceneCard.scss -------------------------------------------------------------------------------- /develop/qx-scene-card/src/qxSceneCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/qxSceneCard.tsx -------------------------------------------------------------------------------- /develop/qx-scene-card/src/qxSceneCard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/qxSceneCard.yml -------------------------------------------------------------------------------- /develop/qx-scene-card/src/types/IPerformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/types/IPerformer.ts -------------------------------------------------------------------------------- /develop/qx-scene-card/src/types/IPluginApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/types/IPluginApi.ts -------------------------------------------------------------------------------- /develop/qx-scene-card/src/types/IScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/types/IScene.ts -------------------------------------------------------------------------------- /develop/qx-scene-card/src/types/ISceneCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/types/ISceneCard.ts -------------------------------------------------------------------------------- /develop/qx-scene-card/src/types/IStudio.ts: -------------------------------------------------------------------------------- 1 | export interface IStudio { 2 | id: number; 3 | name: string; 4 | } 5 | -------------------------------------------------------------------------------- /develop/qx-scene-card/src/utils/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/src/utils/text.ts -------------------------------------------------------------------------------- /develop/qx-scene-card/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-card/tsconfig.json -------------------------------------------------------------------------------- /develop/qx-scene-page/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/.prettierignore -------------------------------------------------------------------------------- /develop/qx-scene-page/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/.prettierrc -------------------------------------------------------------------------------- /develop/qx-scene-page/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/README.md -------------------------------------------------------------------------------- /develop/qx-scene-page/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/TODO.md -------------------------------------------------------------------------------- /develop/qx-scene-page/dist/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/dist/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /develop/qx-scene-page/dist/fonts/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/dist/fonts/Inter-Light.woff2 -------------------------------------------------------------------------------- /develop/qx-scene-page/dist/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/dist/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /develop/qx-scene-page/dist/fonts/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/dist/fonts/Inter-Thin.woff2 -------------------------------------------------------------------------------- /develop/qx-scene-page/dist/qxScenePage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/dist/qxScenePage.css -------------------------------------------------------------------------------- /develop/qx-scene-page/dist/qxScenePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/dist/qxScenePage.js -------------------------------------------------------------------------------- /develop/qx-scene-page/dist/qxScenePage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/dist/qxScenePage.yml -------------------------------------------------------------------------------- /develop/qx-scene-page/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/package.json -------------------------------------------------------------------------------- /develop/qx-scene-page/src/components/Details/Description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/components/Details/Description.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/components/Details/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/components/Details/Details.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/components/Details/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/components/Details/Editor.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/components/Details/Filters/FilterButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/components/Details/Filters/FilterButton.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/components/Details/Filters/FilterOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/components/Details/Filters/FilterOverlay.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/components/Details/Filters/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/components/Details/Filters/Slider.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/components/Details/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/components/Details/Header.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/components/Details/Performers/PerformerItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/components/Details/Performers/PerformerItem.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/components/Details/Performers/PerformerList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/components/Details/Performers/PerformerList.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/components/SidePanel/PerformerPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/components/SidePanel/PerformerPanel.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/components/SidePanel/QueuePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/components/SidePanel/QueuePanel.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/components/SidePanel/SceneItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/components/SidePanel/SceneItem.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/components/SidePanel/SceneList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/components/SidePanel/SceneList.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/components/SidePanel/SidePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/components/SidePanel/SidePanel.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/components/SidePanel/StudioPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/components/SidePanel/StudioPanel.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /develop/qx-scene-page/src/fonts/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/fonts/Inter-Light.woff2 -------------------------------------------------------------------------------- /develop/qx-scene-page/src/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /develop/qx-scene-page/src/fonts/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/fonts/Inter-Thin.woff2 -------------------------------------------------------------------------------- /develop/qx-scene-page/src/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/globals.ts -------------------------------------------------------------------------------- /develop/qx-scene-page/src/hooks/useConfiguration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/hooks/useConfiguration.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/hooks/usePerformerScenes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/hooks/usePerformerScenes.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/hooks/useStudioScenes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/hooks/useStudioScenes.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/qxScenePage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/qxScenePage.scss -------------------------------------------------------------------------------- /develop/qx-scene-page/src/qxScenePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/qxScenePage.tsx -------------------------------------------------------------------------------- /develop/qx-scene-page/src/qxScenePage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/qxScenePage.yml -------------------------------------------------------------------------------- /develop/qx-scene-page/src/types/IPerformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/types/IPerformer.ts -------------------------------------------------------------------------------- /develop/qx-scene-page/src/types/IPluginApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/types/IPluginApi.ts -------------------------------------------------------------------------------- /develop/qx-scene-page/src/types/IQxScenePageSettings.ts: -------------------------------------------------------------------------------- 1 | interface IQxScenePageSettings { 2 | showPerformerAge: boolean; 3 | } 4 | -------------------------------------------------------------------------------- /develop/qx-scene-page/src/types/IScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/types/IScene.ts -------------------------------------------------------------------------------- /develop/qx-scene-page/src/types/ISceneFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/types/ISceneFilter.ts -------------------------------------------------------------------------------- /develop/qx-scene-page/src/types/ISceneMarker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/types/ISceneMarker.ts -------------------------------------------------------------------------------- /develop/qx-scene-page/src/types/IStudio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/types/IStudio.ts -------------------------------------------------------------------------------- /develop/qx-scene-page/src/types/ITag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/types/ITag.ts -------------------------------------------------------------------------------- /develop/qx-scene-page/src/utils/TextUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/src/utils/TextUtils.ts -------------------------------------------------------------------------------- /develop/qx-scene-page/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/qx-scene-page/tsconfig.json -------------------------------------------------------------------------------- /develop/stash-notes/dist/stashNotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notes/dist/stashNotes.js -------------------------------------------------------------------------------- /develop/stash-notes/dist/stashNotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notes/dist/stashNotes.yml -------------------------------------------------------------------------------- /develop/stash-notes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notes/package.json -------------------------------------------------------------------------------- /develop/stash-notes/src/stashNotes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notes/src/stashNotes.tsx -------------------------------------------------------------------------------- /develop/stash-notes/src/stashNotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notes/src/stashNotes.yml -------------------------------------------------------------------------------- /develop/stash-notes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notes/tsconfig.json -------------------------------------------------------------------------------- /develop/stash-notifications/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/.prettierignore -------------------------------------------------------------------------------- /develop/stash-notifications/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/.prettierrc -------------------------------------------------------------------------------- /develop/stash-notifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/README.md -------------------------------------------------------------------------------- /develop/stash-notifications/dist/stashNotifications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/dist/stashNotifications.css -------------------------------------------------------------------------------- /develop/stash-notifications/dist/stashNotifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/dist/stashNotifications.js -------------------------------------------------------------------------------- /develop/stash-notifications/dist/stashNotifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/dist/stashNotifications.yml -------------------------------------------------------------------------------- /develop/stash-notifications/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/package.json -------------------------------------------------------------------------------- /develop/stash-notifications/src/components/NotificationDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/src/components/NotificationDropdown.tsx -------------------------------------------------------------------------------- /develop/stash-notifications/src/components/StashNotificationsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/src/components/StashNotificationsButton.tsx -------------------------------------------------------------------------------- /develop/stash-notifications/src/components/modal/NotificationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/src/components/modal/NotificationModal.tsx -------------------------------------------------------------------------------- /develop/stash-notifications/src/components/modal/PackageModalBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/src/components/modal/PackageModalBody.tsx -------------------------------------------------------------------------------- /develop/stash-notifications/src/components/modal/PluginNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/src/components/modal/PluginNotification.tsx -------------------------------------------------------------------------------- /develop/stash-notifications/src/components/modal/ScraperNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/src/components/modal/ScraperNotification.tsx -------------------------------------------------------------------------------- /develop/stash-notifications/src/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/src/globals.ts -------------------------------------------------------------------------------- /develop/stash-notifications/src/hooks/useNotifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/src/hooks/useNotifications.tsx -------------------------------------------------------------------------------- /develop/stash-notifications/src/hooks/usePackageUpdateChecking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/src/hooks/usePackageUpdateChecking.ts -------------------------------------------------------------------------------- /develop/stash-notifications/src/stashNotifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/src/stashNotifications.scss -------------------------------------------------------------------------------- /develop/stash-notifications/src/stashNotifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/src/stashNotifications.tsx -------------------------------------------------------------------------------- /develop/stash-notifications/src/stashNotifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/src/stashNotifications.yml -------------------------------------------------------------------------------- /develop/stash-notifications/src/types/INotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/src/types/INotification.ts -------------------------------------------------------------------------------- /develop/stash-notifications/src/types/IPackage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/src/types/IPackage.ts -------------------------------------------------------------------------------- /develop/stash-notifications/src/types/IPluginApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/src/types/IPluginApi.ts -------------------------------------------------------------------------------- /develop/stash-notifications/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/develop/stash-notifications/tsconfig.json -------------------------------------------------------------------------------- /plugins/externalLinksEnhanced/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/externalLinksEnhanced/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/externalLinksEnhanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/externalLinksEnhanced/README.md -------------------------------------------------------------------------------- /plugins/externalLinksEnhanced/custom/bluesky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/externalLinksEnhanced/custom/bluesky.svg -------------------------------------------------------------------------------- /plugins/externalLinksEnhanced/custom/custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/externalLinksEnhanced/custom/custom.json -------------------------------------------------------------------------------- /plugins/externalLinksEnhanced/custom/onlyfans.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/externalLinksEnhanced/custom/onlyfans.svg -------------------------------------------------------------------------------- /plugins/externalLinksEnhanced/externalLinksEnhanced.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/externalLinksEnhanced/externalLinksEnhanced.css -------------------------------------------------------------------------------- /plugins/externalLinksEnhanced/externalLinksEnhanced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/externalLinksEnhanced/externalLinksEnhanced.js -------------------------------------------------------------------------------- /plugins/externalLinksEnhanced/externalLinksEnhanced.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/externalLinksEnhanced/externalLinksEnhanced.yml -------------------------------------------------------------------------------- /plugins/flexibleDateInput/flexibleDateInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/flexibleDateInput/flexibleDateInput.js -------------------------------------------------------------------------------- /plugins/flexibleDateInput/flexibleDateInput.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/flexibleDateInput/flexibleDateInput.yml -------------------------------------------------------------------------------- /plugins/qxSceneCard/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/qxSceneCard/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/qxSceneCard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/qxSceneCard/README.md -------------------------------------------------------------------------------- /plugins/qxSceneCard/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/qxSceneCard/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /plugins/qxSceneCard/fonts/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/qxSceneCard/fonts/Inter-Light.woff2 -------------------------------------------------------------------------------- /plugins/qxSceneCard/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/qxSceneCard/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /plugins/qxSceneCard/fonts/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/qxSceneCard/fonts/Inter-Thin.woff2 -------------------------------------------------------------------------------- /plugins/qxSceneCard/qxSceneCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/qxSceneCard/qxSceneCard.css -------------------------------------------------------------------------------- /plugins/qxSceneCard/qxSceneCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/qxSceneCard/qxSceneCard.js -------------------------------------------------------------------------------- /plugins/qxSceneCard/qxSceneCard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/qxSceneCard/qxSceneCard.yml -------------------------------------------------------------------------------- /plugins/qxStudioCardCSSTweak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/qxStudioCardCSSTweak/README.md -------------------------------------------------------------------------------- /plugins/qxStudioCardCSSTweak/qxStudioCardCSSTweak.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/qxStudioCardCSSTweak/qxStudioCardCSSTweak.css -------------------------------------------------------------------------------- /plugins/qxStudioCardCSSTweak/qxStudioCardCSSTweak.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/qxStudioCardCSSTweak/qxStudioCardCSSTweak.yml -------------------------------------------------------------------------------- /plugins/qxTagCardCSSTweak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/qxTagCardCSSTweak/README.md -------------------------------------------------------------------------------- /plugins/qxTagCardCSSTweak/qxTagCardCSSTweak.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/qxTagCardCSSTweak/qxTagCardCSSTweak.css -------------------------------------------------------------------------------- /plugins/qxTagCardCSSTweak/qxTagCardCSSTweak.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/qxTagCardCSSTweak/qxTagCardCSSTweak.yml -------------------------------------------------------------------------------- /plugins/stashNotes/stashNotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/stashNotes/stashNotes.js -------------------------------------------------------------------------------- /plugins/stashNotes/stashNotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/stashNotes/stashNotes.yml -------------------------------------------------------------------------------- /plugins/stashNotifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/stashNotifications/README.md -------------------------------------------------------------------------------- /plugins/stashNotifications/stashNotifications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/stashNotifications/stashNotifications.css -------------------------------------------------------------------------------- /plugins/stashNotifications/stashNotifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/stashNotifications/stashNotifications.js -------------------------------------------------------------------------------- /plugins/stashNotifications/stashNotifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QxxxGit/stash-plugins/HEAD/plugins/stashNotifications/stashNotifications.yml --------------------------------------------------------------------------------