2.1.6 Offical Version

This commit is contained in:
CICD - Pipeline 2023-05-02 00:01:40 +02:00
parent b7b6846c0e
commit 1bb292d1c2
3 changed files with 17 additions and 7 deletions

View File

@ -1,9 +1,19 @@
<h1><u>Subsonics 2.1.6</u></h1>
<p>Sortie le : 01/05/2022</p>
<h2 style="font-size: 18px;">Ajouts & Fixes :</h2>
<ul>
<li><strong>[FIX]</strong> : Logs : Logs go on wrong folder/li>
</ul>
<hr>
<h1><u>Subsonics 2.1.5</u></h1> <h1><u>Subsonics 2.1.5</u></h1>
<p>Sortie le : 01/05/2022</p> <p>Sortie le : 01/05/2022</p>
<h2 style="font-size: 18px;">Ajouts & Fixes :</h2> <h2 style="font-size: 18px;">Ajouts & Fixes :</h2>
<ul> <ul>
<li><strong>[FIX]</strong> : Fix : Second Tentative to fix Update Checker</li> <li><strong>[FIX]</strong> : Update : Second Tentative to fix Update Checker</li>
</ul> </ul>
<hr> <hr>
@ -13,7 +23,7 @@
<h2 style="font-size: 18px;">Ajouts & Fixes :</h2> <h2 style="font-size: 18px;">Ajouts & Fixes :</h2>
<ul> <ul>
<li><strong>[FIX]</strong> : Fix : Settings wont't be deleted after signout</li> <li><strong>[FIX]</strong> : Settings : Settings wont't be deleted after signout</li>
</ul> </ul>
<hr> <hr>
@ -24,7 +34,7 @@
<h2 style="font-size: 18px;">Ajouts & Fixes :</h2> <h2 style="font-size: 18px;">Ajouts & Fixes :</h2>
<ul> <ul>
<li><strong>[FIX]</strong> : Fix : Update Checker</li> <li><strong>[FIX]</strong> : Update : Update Checker</li>
</ul> </ul>
<hr> <hr>

View File

@ -1,6 +1,6 @@
{ {
"name": "subsonics-manager", "name": "subsonics-manager",
"version": "2.1.5", "version": "2.1.6",
"description": "Manager for subsonics", "description": "Manager for subsonics",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {

View File

@ -1,13 +1,13 @@
const fs = require("fs") const fs = require("fs")
if(!fs.existsSync("logs/")) { if(!fs.existsSync(__dirname + "logs/")) {
fs.mkdirSync("logs") fs.mkdirSync(__dirname + "logs/")
} }
var logStream = fs.createWriteStream("logs/" + getDate() + ".log", { var logStream = fs.createWriteStream(__dirname + "logs/" + getDate() + ".log", {
flags: 'a' flags: 'a'
}); });