Small update fix for source users

Maybe on python 3.12?
This commit is contained in:
Hydrus Network Developer 2024-03-06 16:36:13 -06:00
parent 8a97fb0aba
commit c3010b4b0e
No known key found for this signature in database
GPG Key ID: 76249F053212133C
3 changed files with 1 additions and 3 deletions

View File

@ -43,7 +43,6 @@ title: Changelog
* fixed some media duration 'second' components being rendered with extraneous .0, like '30.0 seconds'
* fixed a db routine that fetches a huge table in pieces to not repeat a few rows when the ids it is fetching are non-contiguous, and to report the correct quantity of work done as a result (it was saying like 17,563/17,562)
* the new _help->about_ Qt platformName addition will now say if the actual platformName differs from the running platformName (e.g. if it was set otherwise with a Qt launch parameter)
* updated the builds to use `softprops/action-gh-release@ 4634c16e79c963813287e889244c50009e7f0981`, which should solve the Node16 deprecation warnings for now
### client api

View File

@ -63,7 +63,6 @@
<li>fixed right-clicking on some empty system predicates like 'system:duration' (those I overhauled the other week with NumberTests)</li>
<li>fixed a db routine that fetches a huge table in pieces to not repeat a few rows when the ids it is fetching are non-contiguous, and to report the correct quantity of work done as a result (it was saying like 17,563/17,562)</li>
<li>the new _help->about_ Qt platformName addition will now say if the actual platformName differs from the running platformName (e.g. if it was set otherwise with a Qt launch parameter)</li>
<li>updated the builds to use `softprops/action-gh-release@ 4634c16e79c963813287e889244c50009e7f0981`, which should solve the Node16 deprecation warnings for now</li>
<li><h3>client api</h3></li>
<li>just a small thing, but the under-documented `/manage_database/get_client_options` call now says the four types of default tag sort. I left the old key, `default_tag_sort`, in so as not to break stuff, but it is just a copy of the `search_page` variant in the new `default_tag_sort_xxx` foursome</li>
<li>client api version is now 62</li>

View File

@ -10313,7 +10313,7 @@ class DB( HydrusDB.HydrusDB ):
import re
regex_pattern = 'http\S+\s+http'
regex_pattern = r'http\S+\s+http'
CHUNK_SIZE = 10000