Skip to content

Commit a1f540a

Browse files
committed
ver 2.6.0
1 parent 1868711 commit a1f540a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

app/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ ipcMain.on('unreg-start-by-fishing-key', () => {
348348
let powerBlocker = powerSaveBlocker.start("prevent-display-sleep");
349349
app.whenReady().then(() => {
350350
const menu = Menu.buildFromTemplate([{label: `Help`, submenu: [
351-
{ label: `AutoFish ver. 2.5.1 Public` },
351+
{ label: `AutoFish ver. 2.6.0 Public` },
352352
{ type: 'separator' },
353353
{ label: "📘 Read Me", click: () => shell.openExternal("https://github.com/jsbots/AutoFish#guide-blue_book")},
354354
{ label: 'Video', click: () => shell.openExternal("https://youtu.be/A3W8UuVIZTo")},

app/ui/autoFish.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ class AutoFish {
4444
const footer = elt(`p`, { className: "version" }, versionNode, donateLink, premiumIcon);
4545

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

5050
ipcRenderer.on('start-by-fishing-key', () => {
5151
if(!this.button.state) {
5252
this.button.dom.click();
5353
}
5454
});
55-
55+
5656
this.settings.regOnChange((config) => {
5757
ipcRenderer.send("save-settings", config);
5858
});

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "AutoFish",
3-
"version": "2.5.1",
3+
"version": "2.6.0",
44
"description": "An easy-to-use fishing bot for games with wow-like fishing logic.",
55
"main": "./app/main.js",
66
"scripts": {

0 commit comments

Comments
 (0)