ani-auto 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/engine.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ani-auto",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Automatic anime episode downloader",
5
5
  "bin": {
6
6
  "ani-auto": "./src/cli.js"
package/src/engine.js CHANGED
@@ -309,9 +309,9 @@ async function runCycle({ auto = false, quality = null, language = null, range =
309
309
  await db.initDb();
310
310
  const config = loadConfig();
311
311
 
312
- console.log(chalk.bold.red('\n ╔══════════════════════════════╗'));
312
+ console.log(chalk.bold.red('\n ╔════════════════════════════════╗'));
313
313
  console.log(chalk.bold.red(` ║ ANI-AUTO v${version} — CHECK RUN ║`));
314
- console.log(chalk.bold.red(' ╚══════════════════════════════╝\n'));
314
+ console.log(chalk.bold.red(' ╚════════════════════════════════╝\n'));
315
315
 
316
316
  const watchList = await resolveWatchList(config);
317
317