2.1.6 Offical Version
This commit is contained in:
parent
b7b6846c0e
commit
1bb292d1c2
@ -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>
|
||||
<p>Sortie le : 01/05/2022</p>
|
||||
<h2 style="font-size: 18px;">Ajouts & Fixes :</h2>
|
||||
<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>
|
||||
<hr>
|
||||
@ -13,7 +23,7 @@
|
||||
<h2 style="font-size: 18px;">Ajouts & Fixes :</h2>
|
||||
<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>
|
||||
<hr>
|
||||
@ -24,7 +34,7 @@
|
||||
<h2 style="font-size: 18px;">Ajouts & Fixes :</h2>
|
||||
<ul>
|
||||
|
||||
<li><strong>[FIX]</strong> : Fix : Update Checker</li>
|
||||
<li><strong>[FIX]</strong> : Update : Update Checker</li>
|
||||
|
||||
</ul>
|
||||
<hr>
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "subsonics-manager",
|
||||
"version": "2.1.5",
|
||||
"version": "2.1.6",
|
||||
"description": "Manager for subsonics",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
@ -1,13 +1,13 @@
|
||||
const fs = require("fs")
|
||||
|
||||
|
||||
if(!fs.existsSync("logs/")) {
|
||||
fs.mkdirSync("logs")
|
||||
if(!fs.existsSync(__dirname + "logs/")) {
|
||||
fs.mkdirSync(__dirname + "logs/")
|
||||
|
||||
}
|
||||
|
||||
|
||||
var logStream = fs.createWriteStream("logs/" + getDate() + ".log", {
|
||||
var logStream = fs.createWriteStream(__dirname + "logs/" + getDate() + ".log", {
|
||||
flags: 'a'
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user