Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

rbutil: Add generated voicefiles to the install log, so you can uninstall it again

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17839 a1c6a512-1295-4272-9138-f99709370657

+9 -2
+9 -2
rbutil/rbutilqt/voicefile.cpp
··· 74 74 { 75 75 version = line.remove("Version:").trimmed(); 76 76 version = version.left(version.indexOf("-")).remove(0,1); 77 - } 77 + } 78 78 } 79 79 info.close(); 80 80 ··· 286 286 { 287 287 QFile::remove(mp3files.at(i)); 288 288 } 289 - 289 + 290 + // Add Voice file to the install log 291 + QSettings installlog(m_mountpoint + "/.rockbox/rbutil.log", QSettings::IniFormat, 0); 292 + installlog.beginGroup("selfcreated Voice"); 293 + installlog.setValue("/.rockbox/langs/" + m_lang + ".voice",QDate::currentDate().toString("yyyyMMdd")); 294 + installlog.endGroup(); 295 + installlog.sync(); 296 + 290 297 m_logger->setProgressMax(100); 291 298 m_logger->setProgressValue(100); 292 299 m_logger->addItem(tr("successfully created."),LOGOK);