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 | | Scene | Title, Details, Path, OSHash, Checksum, Marker titles |
| Image | Title, Path, Checksum | | Image | Title, Path, Checksum |
| Movie | Title | | Group | Title |
| Marker | Title, Scene title | | Marker | Title, Scene title |
| Gallery | Title, Path, Checksum | | Gallery | Title, Path, Checksum |
| Performer | Name, Aliases | | Performer | Name, Aliases |

View file

@ -8,7 +8,7 @@ The metadata given to Stash can be exported into the JSON format. This structure
* `performers` * `performers`
* `scenes` * `scenes`
* `studios` * `studios`
* `movies` * `groups`
## File naming ## File naming
@ -22,7 +22,7 @@ When exported, files are named with different formats depending on the object ty
| Performers | `<name>.json` | | Performers | `<name>.json` |
| Scenes | `<title or first file basename>.<hash>.json` | | Scenes | `<title or first file basename>.<hash>.json` |
| Studios | `<name>.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. 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 s` | Scenes |
| `g i` | Images | | `g i` | Images |
| `g v` | Movies | | `g v` | Groups |
| `g k` | Markers | | `g k` | Markers |
| `g l` | Galleries | | `g l` | Galleries |
| `g p` | Performers | | `g p` | Performers |
@ -104,28 +104,28 @@
[//]: # "(| `l` | Focus Gallery selector |)" [//]: # "(| `l` | Focus Gallery selector |)"
[//]: # "(| `u` | Focus Studio selector |)" [//]: # "(| `u` | Focus Studio selector |)"
[//]: # "(| `p` | Focus Performers selector |)" [//]: # "(| `p` | Focus Performers selector |)"
[//]: # "(| `v` | Focus Movies selector |)" [//]: # "(| `v` | Focus Groups selector |)"
[//]: # "(| `t` | Focus Tags selector |)" [//]: # "(| `t` | Focus Tags selector |)"
## Movies Page shortcuts ## Groups Page shortcuts
| Keyboard sequence | Action | | Keyboard sequence | Action |
|-------------------|--------| |-------------------|--------|
| `n` | New Movie | | `n` | New Group |
## Movie Page shortcuts ## Group Page shortcuts
| Keyboard sequence | Action | | Keyboard sequence | Action |
|-------------------|--------| |-------------------|--------|
| `e` | Edit Movie | | `e` | Edit Group |
| `s s` | Save Movie | | `s s` | Save Group |
| `d d` | Delete Movie | | `d d` | Delete Group |
| `r {1-5}` | [Edit mode] Set rating (stars) | | `r {1-5}` | [Edit mode] Set rating (stars) |
| `r 0` | [Edit mode] Unset 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 {0-9} {0-9}` | [Edit mode] Set rating (decimal - `r 0 0` for `10.0`) |
| ``r ` `` | [Edit mode] Unset rating (decimal) | | ``r ` `` | [Edit mode] Unset rating (decimal) |
| `,` | Expand/Collapse Details | | `,` | Expand/Collapse Details |
| `Ctrl + v` | Paste Movie image | | `Ctrl + v` | Paste Group image |
[//]: # "Commented until implementation is dealt with" [//]: # "Commented until implementation is dealt with"
[//]: # "(| `u` | Focus Studio selector (in edit mode) |)" [//]: # "(| `u` | Focus Studio selector (in edit mode) |)"

View file

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

View file

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

View file

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