Skip to content

Commit

Permalink
1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Milkshiift committed Sep 21, 2024
1 parent 65674d6 commit 5e94278
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 51 deletions.
3 changes: 2 additions & 1 deletion assetsDev/io.github.milkshiift.GoofCord.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
</screenshot>
</screenshots>
<releases>
<release version="1.7.0" date="2024-09-13"/>
<release version="1.7.1" date="2024-09-21"/>
<release version="1.7.0" date="2024-09-20"/>
<release version="1.6.0" date="2024-08-07"/>
<release version="1.5.1" date="2024-07-18"/>
<release version="1.5.0" date="2024-07-07"/>
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "goofcord",
"version": "1.7.0",
"version": "1.7.1",
"description": "Take control of your Discord experience with GoofCord – the highly configurable and privacy-minded discord client.",
"main": "ts-out/main.js",
"scripts": {
Expand All @@ -23,10 +23,10 @@
},
"homepage": "https://github.com/Milkshiift/GoofCord",
"devDependencies": {
"@biomejs/biome": "^1.9.1",
"@biomejs/biome": "^1.9.2",
"@types/node": "^22.5.5",
"@types/stegcloak": "^1.0.2",
"electron": "^32.1.0",
"electron": "^32.1.2",
"electron-builder": "^25.0.5",
"esbuild": "^0.23.1",
"source-map-support": "^0.5.21",
Expand Down
92 changes: 46 additions & 46 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ crashReporter.start({ uploadToServer: false });

async function main() {
console.time(chalk.green("[Timer]") + " GoofCord fully loaded in");
console.time(chalk.green("[Timer]") + " Electron loaded in");

tryCreateFolder(getGoofCordFolderPath());
await loadConfig();
Expand All @@ -32,6 +31,7 @@ async function main() {
void createTray();
const preReady = Promise.all([registerIpc(), extensions.manageMods().then(() => categorizeAllAssets())]);

console.time(chalk.green("[Timer]") + " Electron loaded in");
await app.whenReady();
console.timeEnd(chalk.green("[Timer]") + " Electron loaded in");

Expand Down

0 comments on commit 5e94278

Please sign in to comment.