Replace movie with group (#5280)

This commit is contained in:
DogmaDragon 2024-09-22 06:18:12 +03:00 committed by GitHub
parent 476688c84d
commit 3abdcbee6f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 19 additions and 19 deletions

View file

@ -10,7 +10,7 @@ The text field allows you to search using keywords. Keyword searching matches on
|------|-----------------|
| Scene | Title, Details, Path, OSHash, Checksum, Marker titles |
| Image | Title, Path, Checksum |
| Movie | Title |
| Group | Title |
| Marker | Title, Scene title |
| Gallery | Title, Path, Checksum |
| Performer | Name, Aliases |

View file

@ -8,7 +8,7 @@ The metadata given to Stash can be exported into the JSON format. This structure
* `performers`
* `scenes`
* `studios`
* `movies`
* `groups`
## File naming
@ -22,7 +22,7 @@ When exported, files are named with different formats depending on the object ty
| Performers | `<name>.json` |
| Scenes | `<title or first file basename>.<hash>.json` |
| Studios | `<name>.json` |
| Movies | `<name>.json` |
| Groups | `<name>.json` |
Note that the file naming is not significant when importing. All json files will be read from the subdirectories.

View file

@ -12,7 +12,7 @@
|-------------------|--------|
| `g s` | Scenes |
| `g i` | Images |
| `g v` | Movies |
| `g v` | Groups |
| `g k` | Markers |
| `g l` | Galleries |
| `g p` | Performers |
@ -104,28 +104,28 @@
[//]: # "(| `l` | Focus Gallery selector |)"
[//]: # "(| `u` | Focus Studio selector |)"
[//]: # "(| `p` | Focus Performers selector |)"
[//]: # "(| `v` | Focus Movies selector |)"
[//]: # "(| `v` | Focus Groups selector |)"
[//]: # "(| `t` | Focus Tags selector |)"
## Movies Page shortcuts
## Groups Page shortcuts
| Keyboard sequence | Action |
|-------------------|--------|
| `n` | New Movie |
| `n` | New Group |
## Movie Page shortcuts
## Group Page shortcuts
| Keyboard sequence | Action |
|-------------------|--------|
| `e` | Edit Movie |
| `s s` | Save Movie |
| `d d` | Delete Movie |
| `e` | Edit Group |
| `s s` | Save Group |
| `d d` | Delete Group |
| `r {1-5}` | [Edit mode] Set rating (stars) |
| `r 0` | [Edit mode] Unset rating (stars) |
| `r {0-9} {0-9}` | [Edit mode] Set rating (decimal - `r 0 0` for `10.0`) |
| ``r ` `` | [Edit mode] Unset rating (decimal) |
| `,` | Expand/Collapse Details |
| `Ctrl + v` | Paste Movie image |
| `Ctrl + v` | Paste Group image |
[//]: # "Commented until implementation is dealt with"
[//]: # "(| `u` | Focus Studio selector (in edit mode) |)"

View file

@ -248,7 +248,7 @@ The following object types are supported:
* `SceneMarker`
* `Image`
* `Gallery`
* `Movie`
* `Group`
* `Performer`
* `Studio`
* `Tag`
@ -296,7 +296,7 @@ For example, here is the `args` values for a Scene update operation:
"studio_id":null,
"gallery_ids":null,
"performer_ids":null,
"movies":null,
"groups":null,
"tag_ids":["21"],
"cover_image":null,
"stash_ids":null

View file

@ -15,7 +15,7 @@ Stash supports scraping of metadata from various external sources.
| | Fragment | Search | URL |
|---|:---:|:---:|:---:|
| gallery | ✔️ | | ✔️ |
| movie | | | ✔️ |
| group | | | ✔️ |
| performer | | ✔️ | ✔️ |
| scene | ✔️ | ✔️ | ✔️ |
@ -94,7 +94,7 @@ When used in combination with stash-box, the user can optionally submit scene fi
| | Has Tagger | Source Selection |
|---|:---:|:---:|
| gallery | | |
| movie | | |
| group | | |
| performer | ✔️ | |
| scene | ✔️ | ✔️ |

View file

@ -153,9 +153,9 @@ Returns `void`.
- `Icon`
- `ImageDetailPanel`
- `ModalSetting`
- `MovieIDSelect`
- `MovieSelect`
- `MovieSelect.sort`
- `GroupIDSelect`
- `GroupSelect`
- `GroupSelect.sort`
- `NumberSetting`
- `PerformerDetailsPanel`
- `PerformerDetailsPanel.DetailGroup`