-
-
Notifications
You must be signed in to change notification settings - Fork 837
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge to master for release #2498
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Add duration to autotag finish message * No sorting scene/image/gallery where not specified * Use an LRU cache for sqlite regexp function * Compile path separator regex once * Cache objects with single letter first names * Move finished auto-tag log * Add more verbose logging * Add new changelog
Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
* read theme color from config file * Update manual page
* Use case-insensitive matching in nameMatchesPath Also ensures that only unique words are returned in getPathWords.
* Continue identify if source fails * Handle empty result set correctly * Parse null values from scraper script correctly * Omit warning when json selector value missing * Return nil when scraped item not found * Fix graphql validation errors
V0.13.1 to develop
* Move main to cmd * Move api to internal * Move logger and manager to internal * Move shell hiding code to separate package * Decouple job from desktop and utils * Decouple session from config * Move static into internal * Decouple config from dlna * Move desktop to internal * Move dlna to internal * Decouple remaining packages from config * Move config into internal * Move jsonschema and paths to models * Make ffmpeg functions private * Move file utility methods into fsutil package * Move symwalk into fsutil * Move single-use util functions into client package * Move slice functions to separate packages * Add env var to suppress windowsgui arg * Move hash functions into separate package * Move identify to internal * Move autotag to internal * Touch UI when generating backend
* Don't generate thumbnails for animated webp * Debug log when writing thumbnail to disk
* Scroll at end of image goes to next/previous * Align bottom image when moving left
* Persist lightbox settings in local forage * Add lightbox settings to backend * Add lightbox settings to interface settings page
* Add python package * Add python path backend config * Add python path to system settings page * Apply python path to script scrapers and plugins
* Revert to use FindByGalleryID in gallery resolver * Sort by path in FindByGalleryID * Optimise queries
* Translated using Weblate (Swedish) Currently translated at 100.0% (776 of 776 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/sv/ * Translated using Weblate (Finnish) Currently translated at 93.9% (729 of 776 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/fi/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (776 of 776 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/zh_Hant/ * Translated using Weblate (Japanese) Currently translated at 100.0% (776 of 776 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/ja/ * Translated using Weblate (Swedish) Currently translated at 100.0% (788 of 788 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/sv/ * Translated using Weblate (Japanese) Currently translated at 100.0% (788 of 788 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/ja/ * Translated using Weblate (Italian) Currently translated at 100.0% (788 of 788 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/it/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (788 of 788 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/zh_Hant/ * Translated using Weblate (Chinese (Simplified)) Currently translated at 97.5% (769 of 788 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/zh_Hans/ * Translated using Weblate (Polish) Currently translated at 98.0% (773 of 788 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/pl/ * Translated using Weblate (Polish) Currently translated at 100.0% (788 of 788 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/pl/ * Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (788 of 788 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/zh_Hans/ Co-authored-by: Alpaca Serious <srhsgsef@gmail.com> Co-authored-by: Aa <jarruraita@outlook.com> Co-authored-by: Still <dev@stillu.cc> Co-authored-by: Weblate <noreply@weblate.org> Co-authored-by: 風林火山 <nezoko@digdig.org> Co-authored-by: BViking78 <5@example.com> Co-authored-by: Philip Wang <philpw99@gmail.com> Co-authored-by: Coscosname <coscosname@gmail.com>
* Don't handle non-left-click events * Improve lightbox initial positioning * Fix crash when navigating left from first image
* Replace JW Player with video.js * Move HLS stream to bottom of list HLS doesn't work very well on non-ios devices. Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
* Upgrade gqlgen to v0.17.2 This enables builds on Go 1.18. github.com/vektah/gqlparser is upgraded to the newest version too. Getting this to work is a bit of a hazzle. I had to first remove vendoring from the repository, perform the upgrade and then re-introduce the vendor directory. I think gqlgens analysis went wrong for some reason on the upgrade. It would seem a clean-room installation fixed it. * Bump project to 1.18 * Update all packages, address gqlgenc breaking changes * Let `go mod tidy` handle the go.mod file * Upgrade linter to 1.45.2 * Introduce v1.45.2 of the linter The linter now correctly warns on `strings.Title` because it isn't unicode-aware. Fix this by using the suggested fix from x/text/cases to produce unicode-aware strings. The mapping isn't entirely 1-1 as this new approach has a larger iface: it spans all of unicode rather than just ASCII. It coincides for ASCII however, so things should be largely the same. * Ready ourselves for errchkjson and contextcheck. * Revert dockerfile golang version changes for now Co-authored-by: Kermie <kermie@isinthe.house> Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
* Cleanup Edit Performers dialog * Add bulk text inputs to edit performers dialog * Make bulk update code more generic * Add remaining performer fields
* mobile scene details page revamp * removed dup scene-tabs definition
* Add support for the Handy APIv2 Docs: https://staging.handyfeeling.com/api/handy/v2/docs/ Update axios to 0.24.0 due to a security update * Upgrade to thehandy 1.0.3 * Use local copy of uploadCsv Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
* Don't convert localforage to json * Show correct delay value * Fix lightbox delay * Fix delay input losing focus on change * Fix delay input inconsistencies * Fix clicking link preventing scroll bars appearing * Fix slideshow stopping when paging
* Add autoTagIgnored to database schema * Graphql changes * UI changes * Add field to edit performers dialog * Apply flag to autotag behaviour
* Fix scene markers, add path to hidden properties Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
* Fix local docker builds under new projext org * Fix Desktop package freebsd compile * Fix build declaration * rename systray file
* Translated using Weblate (Japanese) Currently translated at 100.0% (791 of 791 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/ja/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 99.8% (790 of 791 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/zh_Hant/ * Translated using Weblate (Italian) Currently translated at 100.0% (791 of 791 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/it/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (791 of 791 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/zh_Hant/ * Translated using Weblate (Polish) Currently translated at 99.8% (790 of 791 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/pl/ * Translated using Weblate (Spanish) Currently translated at 100.0% (791 of 791 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/es/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (794 of 794 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/zh_Hant/ * Translated using Weblate (Swedish) Currently translated at 100.0% (794 of 794 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/sv/ * Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/ * Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (794 of 794 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/zh_Hant/ * Translated using Weblate (Polish) Currently translated at 99.7% (792 of 794 strings) Translation: Stash/Stash Desktop Client Translate-URL: https://translate.stashapp.cc/projects/stash/stash-desktop-client/pl/ Co-authored-by: 風林火山 <nezoko@digdig.org> Co-authored-by: Weblate <noreply@weblate.org> Co-authored-by: Still <dev@stillu.cc> Co-authored-by: BViking78 <5@example.com> Co-authored-by: Coscosname <coscosname@gmail.com> Co-authored-by: failead0r <6@example.com> Co-authored-by: Alpaca Serious <srhsgsef@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.