3.1.0 muilti

This commit is contained in:
karl.hudgell 2020-08-28 17:50:31 +01:00
parent ed396e0575
commit 64fea32966
4 changed files with 8 additions and 12 deletions

View File

@ -39,5 +39,8 @@
"failed": "Failed", "failed": "Failed",
"restoring-apps-complete": "Restoring Apps Complete", "restoring-apps-complete": "Restoring Apps Complete",
"batch-install-apps-complete": "Batch Install Apps Complete", "batch-install-apps-complete": "Batch Install Apps Complete",
"connect-to-watch": "Connect to watch" "connect-to-watch": "Connect to watch",
"connected-via-usb": "Connected via USB",
"connected-via-wifi": "Connected via Wifi",
"not-connected": "Not Connected"
} }

View File

@ -37,13 +37,13 @@ module.exports = {
}, },
connectionCheck: async () => { connectionCheck: async () => {
if (globalVariables.localUSB === "X") { if (globalVariables.localUSB === "X") {
console.log(chalk.white('MiWatch: ') + chalk.green('Connected via USB')) console.log(chalk.white('MiWatch: ') + chalk.green(await Language.get('connected-via-usb')))
} }
if (globalVariables.miWatchIpaddress != "") { if (globalVariables.miWatchIpaddress != "") {
console.log(chalk.white('MiWatch: ') + chalk.green('Connected via Wifi - ' + chalk.white(globalVariables.miWatchIpaddress))) console.log(chalk.white('MiWatch: ') + chalk.green(await Language.get('connected-via-wifi') + ' ' + chalk.white(globalVariables.miWatchIpaddress)))
} }
if (globalVariables.localUSB === "" && globalVariables.miWatchIpaddress === "") { if (globalVariables.localUSB === "" && globalVariables.miWatchIpaddress === "") {
console.log(chalk.white('MiWatch: ') + chalk.red('Not Connected')) console.log(chalk.white('MiWatch: ') + chalk.red(await Language.get('not-connected')))
} }
}, },
downloadFile: async (url, path) => { downloadFile: async (url, path) => {

View File

@ -4,13 +4,6 @@ const common = require("./common");
const Language = require("@shypes/language-translator"); const Language = require("@shypes/language-translator");
Language._({
default_lang: "en",
ext: ".json",
__basedir: "./",
langFolder: 'lang'
})
module.exports = { module.exports = {
mainMenu: async () => { mainMenu: async () => {
const questions = [{ const questions = [{

View File

@ -1,6 +1,6 @@
{ {
"name": "miwatchkleaner", "name": "miwatchkleaner",
"version": "3.0.0", "version": "3.1.0",
"description": "MiWatch Cleaning Tool", "description": "MiWatch Cleaning Tool",
"main": "app.js", "main": "app.js",
"bin": "app.js", "bin": "app.js",