github hydrusnetwork/hydrus v421
Version 421

latest releases: v575, v574, v573...
3 years ago
  • misc:
  • thanks to a user's contribution, added the export 'filename pattern' to the discord drag and drop mode, under options->gui. this lets you auto-rename files in this export mode. I like how this works, but the overall pattern-based filename creation system really needs updating. let me know how this works for you, and I'll finally start the job to update filename generation
  • fixed a bug when importing files with the 'only add tags that already exist' filter active, and added a unit test so this should not fail due to a typo again
  • fixed an issue where ctrl-selecting on taglists was weird, where any mouse movement during ctrl+click would deselect. drag select and deselect can now only start when the drag crosses two indices
  • prototyped a basic profile mode for the client api. it is insufficient (due to the asynchronous nature of twisted), but a start
  • when the client catches an invalid tag with the new error handling code, when it shows you that bad tag in a popup, it now clips that to 24 characters (some PTR invalid tags are just a few hundred null characters in a row, wew lad)
  • the client now recovers from a repository giving it a new invalid tag definition. all such tags are, for now, called 'invalid repository tag'. a plan to auto-hide these tags clientside and fully eliminate them serverside will come later
  • the clipboard url watcher settings should stick a bit more firmly. those users who had trouble, please let me know how you get on
  • fixed an issue editing duplicate action options when they contained tag or rating preferences for services that no longer exist
  • I think I fixed some issues getting autocomplete results when you type the whole namespace before moving on to the subtag. when you hit 'namespace:', it should invalidate the old cache and start a new search
  • when the database is given content updates for services that no longer exist, those content updates filtered out of UI update broadcast
  • fixed an issue where URL status check could fail when the url map contained orphan hash_ids. proper orphan clearance will come later
  • reduced overhead of tag filtering, which should improve display speed of taglist for very large pages
  • parents should now work through repository processing faster. periods of 2 rows/s at the end up of updates should be up to 100 times faster
  • .
  • duplicates search improvements:
  • potential duplicate search now works in the background! it will not interrupt you and is easily cancellable. duplicate search pages disable their search buttons while it is going
  • the search distance in duplicates pages is now synchronised across all pages--when one updates, they all do
  • all the updates to potential search maintenance numbers are now routed through one cached manager. updates here are repeated less often
  • misc cleanup for duplicates page
  • .
  • database modes:
  • a new 'program launch arguments' help page now talks about all the available command line switches, here: https://hydrusnetwork.github.io/hydrus/help/launch_arguments.html
  • added the '--db_journal_mode' launch switch to set the SQLite journal mode. default is WAL, permitted values are also TRUNCATE, PERSIST, and MEMORY
  • ensured --db_synchronous_override was hooked up correctly
  • the old disk cache options under speed and memory are removed, along with various deprecated disk cache load calls and code
  • fixed some shutdown maintenance check logic that was saying 'I think a vacuum is due' when it wasn't actually true
  • db_journal_mode, synchronous value, and no_db_temp_files is now shown in help->about
  • .
  • technical database nonsense:
  • PERSIST is new to hydrus, and may in future versions of SQLite be boost performance for HDD drives with larger databases (e.g. those that sync to the PTR), although unfortunately in our case (which uses multiple ATTACH databases), it seems current SQLite must ultimately treat this as DELETE, as here https://sqlite.org/atomiccommit.html#_clean_up_the_rollback_journals. damn
  • hydrus now tries to always trim WAL (and PERSIST, if it worked) journal files down to 1GB after commits (which happen every 30 seconds), so giganto WALs should clear up promptly after big work is done
  • hydrus no longer refreshes the database connection every thirty minutes, meaning WAL journal files will persist (and hopefully regularly clip back to 1GB when exceeded), which should improve some elements of long-running write performance, but may result in some surprise memory issues, we'll see
  • in lieu of the db connection not refreshing, the memory database now reattaches every ten minutes, which should stop it leaking in certain situations
  • when in WAL journal mode, the hydrus db now cleans up any lingering checkpointing work every half hour
  • after testing and feedback from users, the database is now default SQLite synchronous 1 (down from 2) when in WAL. the db is still consistent, so sudden program stop (crash, power cut) should not result in software-caused corruption, but the database may lose more than just the last 30 seconds of work. this speeds up tag processing in an SSD test environment by approx 33%
  • the 'no_wal' (TRUNCATE) and 'db_memory_journaling' (MEMORY) launch switches remain valid but are now deprecated
  • improved launch switch code generally
  • boosted cache size for each of the four db files to ~200MB-this will likely become a launch argument in future, along with some other specific db values
  • the client and server no longer disconnect from the db to check whether it is possible to vacuum databases

Don't miss a new hydrus release

NewReleases is sending notifications on new releases.