Compare commits

...

4 Commits

Author SHA1 Message Date
Vincent Riquer
75159a4e2b Hotfix: createindex: fix ID3v1 genre index path 2025-10-13 18:20:54 +02:00
Vincent Riquer
325bdb3c96 Hotfix: missing quote in createindex 2025-10-13 18:20:54 +02:00
Vincent Riquer
2b5bf06e58 Hotfix: commit more often when reading tags 2025-10-13 18:20:54 +02:00
ScriptFanix
3a6c7bfc9c Merge branch 'dev' into 'master'
Bugfix release v1.0.4

Closes #26

See merge request atom/AtOM!30
2025-10-11 22:31:16 +02:00
2 changed files with 3 additions and 3 deletions

View File

@ -105,7 +105,7 @@ echo '
oldbitrate=${rest%%::AtOM:SQL:Sep::*} oldbitrate=${rest%%::AtOM:SQL:Sep::*}
((++count)) ((++count))
(( cron )) || echo -en "\rTags: $((count*100/filecount))%" (( cron )) || echo -en "\rTags: $((count*100/filecount))%"
if (( count % 1000 == 0 )) if (( count % 100 == 0 ))
then then
echo 'COMMIT;BEGIN TRANSACTION;' >&3 echo 'COMMIT;BEGIN TRANSACTION;' >&3
(( debug )) \ (( debug )) \

View File

@ -38,7 +38,7 @@ LC_ALL=C
shopt -s extglob shopt -s extglob
source ./share/id3genres source "$SHAREDIR"/id3genres
for function in "$LIBDIR"/*/* for function in "$LIBDIR"/*/*
do do
@ -292,7 +292,7 @@ cat <<-EOBrag
EOBrag EOBrag
printDate() { printDate() {
printf "%("${timeformat:-%x %X}")T "$1" printf "%("${timeformat:-%x %X}")T" "$1"
} }
for index in ${!show[@]} for index in ${!show[@]}