Skip to content

Commit 9d989d5

Browse files
Merge pull request #34 from ahmedsemih/fix/windows-download-links
fix: update windows download links
2 parents c4887e6 + e92e1de commit 9d989d5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Download.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export default {
6262
if (/windows phone/i.test(userAgent)) {
6363
this.isWindows = true;
6464
this.buttonText = "Download for Windows";
65-
this.windowsDownloadLink = `https://github.com/Beaver-Notes/Beaver-Notes/releases/download/${this.version}/Beaver-notes-Setup-${this.version}.exe`;
65+
this.windowsDownloadLink = `https://github.com/Beaver-Notes/Beaver-Notes/releases/download/${this.version}/Beaver.Notes-Setup-${this.version}.exe`;
6666
} else if (/android/i.test(userAgent)) {
6767
console.log("isAndroid");
6868
this.isAndroid = true;
@@ -77,7 +77,7 @@ export default {
7777
} else if (navigator.platform.startsWith("Win")) {
7878
this.isWindows = true;
7979
this.buttonText = "Download for Windows";
80-
this.windowsDownloadLink = `https://github.com/Beaver-Notes/Beaver-Notes/releases/download/${this.version}/Beaver-notes-Setup-${this.version}.exe`;
80+
this.windowsDownloadLink = `https://github.com/Beaver-Notes/Beaver-Notes/releases/download/${this.version}/Beaver.Notes-Setup-${this.version}.exe`;
8181
} else if (navigator.platform.startsWith("Linux")) {
8282
this.isLinux = true;
8383
this.buttonText = "Download for Linux";

0 commit comments

Comments
 (0)