Files
SillyTavern-Launcher/bin/functions/Toolbox/Troubleshooting/fetch_st_version.js
deffcolony 4656afd84f launcher upgrades
+added powershell version checker
+added verification if user really want to exit launcher
2024-08-06 16:11:45 +02:00

8 lines
191 B
JavaScript

const { getVersion } = require('./util.js');
getVersion().then(version => {
console.log(JSON.stringify(version));
}).catch(err => {
console.error('Error getting version:', err);
});