mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
* Add Plugins Path setting * Fix/improve cache invalidation * Hide load error when collapsing package source * Package manager style tweaks * Show error if installed packages query failed * Prevent "No packages found" flicker * Show <unknown> if empty version * Always show latest version, highlight if new version available * Fix issues with non-unique cross-source package ids * Don't wrap id, version and date * Decrease collapse button padding * Display description for scraper packages * Fix default packages population * Change default package path to community --------- Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
71 lines
877 B
GraphQL
71 lines
877 B
GraphQL
query Plugins {
|
|
plugins {
|
|
id
|
|
name
|
|
enabled
|
|
description
|
|
url
|
|
version
|
|
|
|
tasks {
|
|
name
|
|
description
|
|
}
|
|
|
|
hooks {
|
|
name
|
|
description
|
|
hooks
|
|
}
|
|
|
|
settings {
|
|
name
|
|
display_name
|
|
description
|
|
type
|
|
}
|
|
|
|
requires
|
|
|
|
paths {
|
|
css
|
|
javascript
|
|
}
|
|
}
|
|
}
|
|
|
|
query PluginTasks {
|
|
pluginTasks {
|
|
name
|
|
description
|
|
plugin {
|
|
id
|
|
name
|
|
enabled
|
|
}
|
|
}
|
|
}
|
|
|
|
query InstalledPluginPackages {
|
|
installedPackages(type: Plugin) {
|
|
...PackageData
|
|
}
|
|
}
|
|
|
|
query InstalledPluginPackagesStatus {
|
|
installedPackages(type: Plugin) {
|
|
...PackageData
|
|
source_package {
|
|
...PackageData
|
|
}
|
|
}
|
|
}
|
|
|
|
query AvailablePluginPackages($source: String!) {
|
|
availablePackages(source: $source, type: Plugin) {
|
|
...PackageData
|
|
requires {
|
|
package_id
|
|
}
|
|
}
|
|
}
|