Skip to content

Commit

Permalink
ver 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jsbots committed Feb 9, 2024
1 parent 1868711 commit a1f540a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ ipcMain.on('unreg-start-by-fishing-key', () => {
let powerBlocker = powerSaveBlocker.start("prevent-display-sleep");
app.whenReady().then(() => {
const menu = Menu.buildFromTemplate([{label: `Help`, submenu: [
{ label: `AutoFish ver. 2.5.1 Public` },
{ label: `AutoFish ver. 2.6.0 Public` },
{ type: 'separator' },
{ label: "📘 Read Me", click: () => shell.openExternal("https://github.com/jsbots/AutoFish#guide-blue_book")},
{ label: 'Video', click: () => shell.openExternal("https://youtu.be/A3W8UuVIZTo")},
Expand Down
4 changes: 2 additions & 2 deletions app/ui/autoFish.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ class AutoFish {
const footer = elt(`p`, { className: "version" }, versionNode, donateLink, premiumIcon);

ipcRenderer.on("set-version", (event, version) => {
versionNode.textContent = `ver. 2.5.1 Public | `;
versionNode.textContent = `ver. 2.6.0 Public | `;
});

ipcRenderer.on('start-by-fishing-key', () => {
if(!this.button.state) {
this.button.dom.click();
}
});

this.settings.regOnChange((config) => {
ipcRenderer.send("save-settings", config);
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "AutoFish",
"version": "2.5.1",
"version": "2.6.0",
"description": "An easy-to-use fishing bot for games with wow-like fishing logic.",
"main": "./app/main.js",
"scripts": {
Expand Down

0 comments on commit a1f540a

Please sign in to comment.