mirror of
https://github.com/MasterAcnolo/Freedom-Loader.git
synced 2026-07-29 18:25:47 +02:00
Bump version to 1.3.1 and fix Discord RPC state URL; enhance update notification with clickable link to releases
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "freedom-loader",
|
"name": "freedom-loader",
|
||||||
"productName": "Freedom Loader",
|
"productName": "Freedom Loader",
|
||||||
"version": "1.3.0",
|
"version": "1.3.1",
|
||||||
"author": "MasterAcnolo",
|
"author": "MasterAcnolo",
|
||||||
"description": "Freedom Loader",
|
"description": "Freedom Loader",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ function startRPC() {
|
|||||||
smallImageText: "By MasterAcnolo",
|
smallImageText: "By MasterAcnolo",
|
||||||
startTimestamp: new Date(),
|
startTimestamp: new Date(),
|
||||||
details: `Open Source Download Tools - ${config.version}`,
|
details: `Open Source Download Tools - ${config.version}`,
|
||||||
state: "masteracnolo.github.io/No-Sense/FreedomLoader",
|
state: "masteracnolo.github.io/FreedomLoader",
|
||||||
};
|
};
|
||||||
|
|
||||||
rpc.setActivity(presence);
|
rpc.setActivity(presence);
|
||||||
|
|||||||
@@ -17,7 +17,9 @@ function AutoUpdater() {
|
|||||||
new Notification({
|
new Notification({
|
||||||
title: "Freedom Loader",
|
title: "Freedom Loader",
|
||||||
body: `Update ${info.version} downloaded.`
|
body: `Update ${info.version} downloaded.`
|
||||||
}).show();
|
}).on("click", () =>
|
||||||
|
shell.openExternal("https://github.com/MasterAcnolo/Freedom-Loader/releases/latest")
|
||||||
|
).show();
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
autoUpdater.quitAndInstall();
|
autoUpdater.quitAndInstall();
|
||||||
|
|||||||
Reference in New Issue
Block a user