From 097648e444935aece3ef78abc6b13db55e25ce06 Mon Sep 17 00:00:00 2001 From: ExploShot Date: Sun, 11 Apr 2021 08:33:08 +0200 Subject: [PATCH 1/4] Auto get release Info test --- get/getReleaseInfo.js | 34 +++++++++++++++++++++++++++++ get/gui/latest/linux/rpm/index.html | 5 +++++ 2 files changed, 39 insertions(+) create mode 100644 get/getReleaseInfo.js diff --git a/get/getReleaseInfo.js b/get/getReleaseInfo.js new file mode 100644 index 0000000..9a38186 --- /dev/null +++ b/get/getReleaseInfo.js @@ -0,0 +1,34 @@ +function getLatestReleaseInfo(releaseType) { + $.getJSON("https://api.github.com/repos/qwertycoin-org/qwertycoin-gui/releases/latest").done((data) => { + var downloadUrl; + var downloads; + var lastUpdate; + var assetName; + var releaseName = data.name; + + for (asset in data.assets) { + if (asset.name.indexOf(releaseType) !== -1) { + downloadUrl = asset.browser_download_url; + downloads = asset.download_count; + lastUpdate = asset.updated_at; + assetName = asset.name + } + } + + var hour = 60 * 60 * 1000; + var day = 24 * hour; + var timeDiff = new Date() - new Date(lastUpdate); + var timeAgo; + + if (timeDiff < day) { + timeAgo = (timeDiff / hour).toFixed(1) + " hours ago"; + } else { + timeAgo = (timeDiff / day).toFixed(1) + " days ago"; + } + + var relInfo = `${assetName} was updated ${timeAgo} and downloaded ${downloads} times`; + $(".download").attr("href", downloadUrl); + $(".release-info").text(relInfo); + + }) +} \ No newline at end of file diff --git a/get/gui/latest/linux/rpm/index.html b/get/gui/latest/linux/rpm/index.html index 18c7d51..abac29a 100644 --- a/get/gui/latest/linux/rpm/index.html +++ b/get/gui/latest/linux/rpm/index.html @@ -12,6 +12,11 @@

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.2/qwertycoin-gui-v6.0.2-linux.rpm

+ Download +

+ + + \ No newline at end of file From 77d0eacf3c3ab100b15df06884621fecff33aac0 Mon Sep 17 00:00:00 2001 From: ExploShot Date: Sun, 23 May 2021 09:30:17 +0200 Subject: [PATCH 2/4] Add .gitignore --- .gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 From e63f94a7c56ed4d378263f12cf96d8235471eaa7 Mon Sep 17 00:00:00 2001 From: ExploShot Date: Sun, 23 May 2021 09:30:46 +0200 Subject: [PATCH 3/4] Update to latest version tags --- .gitignore | 1 + get/android/latest/index.html | 6 +++--- get/cli/latest/arm64/index.html | 6 +++--- get/cli/latest/openbsd64/index.html | 6 +++--- get/gui/latest/linux/deb/index.html | 9 ++++++--- get/gui/latest/linux/rpm/index.html | 6 +++--- get/gui/latest/macos/index.html | 6 +++--- get/gui/latest/win64/index.html | 6 +++--- get/zero/latest/linux/deb/index.html | 6 +++--- get/zero/latest/linux/rpm/index.html | 6 +++--- get/zero/latest/macos/index.html | 6 +++--- get/zero/latest/win32/index.html | 6 +++--- get/zero/latest/win64/index.html | 6 +++--- index.html | 30 ++++++++++++++-------------- 14 files changed, 55 insertions(+), 51 deletions(-) diff --git a/.gitignore b/.gitignore index e69de29..485dee6 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +.idea diff --git a/get/android/latest/index.html b/get/android/latest/index.html index 3fd9c88..abdafc6 100644 --- a/get/android/latest/index.html +++ b/get/android/latest/index.html @@ -6,12 +6,12 @@ Qwertycoin | Download URL Forwarding. - +

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-mobile-wallet/releases/download/0.2.0/Qwertycoin-Mobile-App_0.2.0.apk

+

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-mobile-wallet/releases/download/0.6.0/Qwertycoin-Mobile-App_0.2.0.apk

- \ No newline at end of file + diff --git a/get/cli/latest/arm64/index.html b/get/cli/latest/arm64/index.html index 9eebd34..2d6d15e 100644 --- a/get/cli/latest/arm64/index.html +++ b/get/cli/latest/arm64/index.html @@ -6,12 +6,12 @@ Qwertycoin | Download URL Forwarding. - +

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.3/qwertycoin-v6.0.3-android.tar.gz

+

Redirecting to: https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.3/qwertycoin-v6.0.5-android.tar.gz

- \ No newline at end of file + diff --git a/get/cli/latest/openbsd64/index.html b/get/cli/latest/openbsd64/index.html index 9eebd34..2d6d15e 100644 --- a/get/cli/latest/openbsd64/index.html +++ b/get/cli/latest/openbsd64/index.html @@ -6,12 +6,12 @@ Qwertycoin | Download URL Forwarding. - +

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.3/qwertycoin-v6.0.3-android.tar.gz

+

Redirecting to: https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.3/qwertycoin-v6.0.5-android.tar.gz

- \ No newline at end of file + diff --git a/get/gui/latest/linux/deb/index.html b/get/gui/latest/linux/deb/index.html index 5a7e1c4..959be6b 100644 --- a/get/gui/latest/linux/deb/index.html +++ b/get/gui/latest/linux/deb/index.html @@ -6,12 +6,15 @@ Qwertycoin | Download URL Forwarding. - +

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.2/qwertycoin-gui-v6.0.2-linux.deb

+

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.2/qwertycoin-gui-v6.0.3-linux.deb

- \ No newline at end of file + + + + diff --git a/get/gui/latest/linux/rpm/index.html b/get/gui/latest/linux/rpm/index.html index abac29a..604b1b8 100644 --- a/get/gui/latest/linux/rpm/index.html +++ b/get/gui/latest/linux/rpm/index.html @@ -6,11 +6,11 @@ Qwertycoin | Download URL Forwarding. - +

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.2/qwertycoin-gui-v6.0.2-linux.rpm

+

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.2/qwertycoin-gui-v6.0.3-linux.rpm

Download

@@ -19,4 +19,4 @@

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-gui/releases/do - \ No newline at end of file + diff --git a/get/gui/latest/macos/index.html b/get/gui/latest/macos/index.html index d77fd0a..1b6779b 100644 --- a/get/gui/latest/macos/index.html +++ b/get/gui/latest/macos/index.html @@ -6,12 +6,12 @@ Qwertycoin | Download URL Forwarding. - +

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.2/qwertycoin-gui-v6.0.2-macos.dmg

+

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.2/qwertycoin-gui-v6.0.3-macos.dmg

- \ No newline at end of file + diff --git a/get/gui/latest/win64/index.html b/get/gui/latest/win64/index.html index 4d118ed..a437f9c 100644 --- a/get/gui/latest/win64/index.html +++ b/get/gui/latest/win64/index.html @@ -6,12 +6,12 @@ Qwertycoin | Download URL Forwarding. - +

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.2/qwertycoin-gui-v6.0.2-windows.exe

+

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.2/qwertycoin-gui-v6.0.3-windows.exe

- \ No newline at end of file + diff --git a/get/zero/latest/linux/deb/index.html b/get/zero/latest/linux/deb/index.html index 46d30c2..4b4f6c2 100644 --- a/get/zero/latest/linux/deb/index.html +++ b/get/zero/latest/linux/deb/index.html @@ -6,12 +6,12 @@ Qwertycoin | Download URL Forwarding. - +

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.0/qwertycoin-zero-v6.0.0-linux.deb

+

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.0/qwertycoin-zero-v6.0.3-linux.deb

- \ No newline at end of file + diff --git a/get/zero/latest/linux/rpm/index.html b/get/zero/latest/linux/rpm/index.html index 7b0ce9c..ec72d16 100644 --- a/get/zero/latest/linux/rpm/index.html +++ b/get/zero/latest/linux/rpm/index.html @@ -6,12 +6,12 @@ Qwertycoin | Download URL Forwarding. - +

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.0/qwertycoin-zero-v6.0.0-linux.rpm

+

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.0/qwertycoin-zero-v6.0.3-linux.rpm

- \ No newline at end of file + diff --git a/get/zero/latest/macos/index.html b/get/zero/latest/macos/index.html index 53c8cb9..a40fff3 100644 --- a/get/zero/latest/macos/index.html +++ b/get/zero/latest/macos/index.html @@ -6,12 +6,12 @@ Qwertycoin | Download URL Forwarding. - +

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.0/qwertycoin-zero-v6.0.0-macos.dmg

+

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.0/qwertycoin-zero-v6.0.3-macos.dmg

- \ No newline at end of file + diff --git a/get/zero/latest/win32/index.html b/get/zero/latest/win32/index.html index 6b54fc3..01e8a57 100644 --- a/get/zero/latest/win32/index.html +++ b/get/zero/latest/win32/index.html @@ -6,12 +6,12 @@ Qwertycoin | Download URL Forwarding. - +

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.0/qwertycoin-zero-v6.0.0-windows.exe

+

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.0/qwertycoin-zero-v6.0.3-windows.exe

- \ No newline at end of file + diff --git a/get/zero/latest/win64/index.html b/get/zero/latest/win64/index.html index 6b54fc3..01e8a57 100644 --- a/get/zero/latest/win64/index.html +++ b/get/zero/latest/win64/index.html @@ -6,12 +6,12 @@ Qwertycoin | Download URL Forwarding. - +

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.0/qwertycoin-zero-v6.0.0-windows.exe

+

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.0/qwertycoin-zero-v6.0.3-windows.exe

- \ No newline at end of file + diff --git a/index.html b/index.html index 202fb06..79cf6e3 100644 --- a/index.html +++ b/index.html @@ -40,14 +40,14 @@ - - - - - - - - + + + + + + + + @@ -78,7 +78,7 @@ –––––––––––––––––––––––––––––––––––––––––––––––––– --> - + @@ -137,11 +137,11 @@
- +

Qwertycoin GUI Wallet

-

Classic Qwertycoin Graphic UI wallet v6.0.2

+

Classic Qwertycoin Graphic UI wallet v6.0.3

Qwertycoin Zero Wallet

-

New Qwertycoin Light wallet v6.0.0

+

New Qwertycoin Light wallet v6.0.3

>Android Mobile Wallet

-

Welcome to the Qwertycoin Mobile Wallet. v0.4.0

+

Welcome to the Qwertycoin Mobile Wallet. v0.6.0

@@ -229,4 +229,4 @@

How to use Qwertycoin:

- \ No newline at end of file + From c7742263378c0bf361417bea13539d97371d01e9 Mon Sep 17 00:00:00 2001 From: ExploShot Date: Mon, 24 May 2021 11:36:40 +0200 Subject: [PATCH 4/4] Fix previous commit --- get/android/latest/index.html | 4 ++-- get/cli/latest/arm64/index.html | 14 +++++++++----- get/cli/latest/linux/deb/index.html | 15 +++++++++------ get/cli/latest/linux/rpm/index.html | 15 +++++++++------ get/cli/latest/macos/index.html | 15 +++++++++------ get/cli/latest/openbsd64/index.html | 13 ++++++++----- get/cli/latest/win32/index.html | 15 +++++++++------ get/cli/latest/win64/index.html | 15 +++++++++------ get/cli/latest/win64zip/index.html | 15 +++++++++------ get/gui/latest/linux/deb/index.html | 13 ++++++++----- get/gui/latest/linux/index.html | 11 ++++++----- get/gui/latest/linux/rpm/index.html | 17 ++++++++++------- get/gui/latest/macos/index.html | 13 ++++++++----- get/gui/latest/win32/index.html | 11 ++++++----- get/gui/latest/win64/index.html | 13 ++++++++----- get/zero/latest/linux/deb/index.html | 13 ++++++++----- get/zero/latest/linux/rpm/index.html | 13 ++++++++----- get/zero/latest/macos/index.html | 13 ++++++++----- get/zero/latest/win32/index.html | 13 ++++++++----- get/zero/latest/win64/index.html | 13 ++++++++----- 20 files changed, 159 insertions(+), 105 deletions(-) diff --git a/get/android/latest/index.html b/get/android/latest/index.html index abdafc6..d11b7e8 100644 --- a/get/android/latest/index.html +++ b/get/android/latest/index.html @@ -6,11 +6,11 @@ Qwertycoin | Download URL Forwarding. - +

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-mobile-wallet/releases/download/0.6.0/Qwertycoin-Mobile-App_0.2.0.apk

+

Redirecting to: https://github.com/exploshot/qwertycoin-mobile-wallet/releases/download/0.6.0/org.qwertycoin.explowallet.apk

diff --git a/get/cli/latest/arm64/index.html b/get/cli/latest/arm64/index.html index 2d6d15e..d62663e 100644 --- a/get/cli/latest/arm64/index.html +++ b/get/cli/latest/arm64/index.html @@ -5,13 +5,17 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.3/qwertycoin-v6.0.5-android.tar.gz

-

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.3/qwertycoin-v6.0.5-android.tar.gz

+

diff --git a/get/cli/latest/linux/deb/index.html b/get/cli/latest/linux/deb/index.html index 1b1a208..a4331fb 100644 --- a/get/cli/latest/linux/deb/index.html +++ b/get/cli/latest/linux/deb/index.html @@ -5,13 +5,16 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.5/qwertycoin-v6.0.5-linux.deb

-

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.5/qwertycoin-v6.0.5-linux.deb

+

- \ No newline at end of file + diff --git a/get/cli/latest/linux/rpm/index.html b/get/cli/latest/linux/rpm/index.html index f0d8b66..55a1a59 100644 --- a/get/cli/latest/linux/rpm/index.html +++ b/get/cli/latest/linux/rpm/index.html @@ -5,13 +5,16 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.5/qwertycoin-v6.0.5-linux.rpm

-

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.5/qwertycoin-v6.0.5-linux.rpm

+

- \ No newline at end of file + diff --git a/get/cli/latest/macos/index.html b/get/cli/latest/macos/index.html index 3464d45..9109086 100644 --- a/get/cli/latest/macos/index.html +++ b/get/cli/latest/macos/index.html @@ -5,13 +5,16 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.5/qwertycoin-v6.0.5-macos.dmg

-

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.5/qwertycoin-v6.0.5-macos.dmg

+

- \ No newline at end of file + diff --git a/get/cli/latest/openbsd64/index.html b/get/cli/latest/openbsd64/index.html index 2d6d15e..59d9baa 100644 --- a/get/cli/latest/openbsd64/index.html +++ b/get/cli/latest/openbsd64/index.html @@ -5,13 +5,16 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.3/qwertycoin-v6.0.5-android.tar.gz

-

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.5/qwertycoin-v6.0.5-android.tar.gz

+

diff --git a/get/cli/latest/win32/index.html b/get/cli/latest/win32/index.html index 68f5a9f..4edddc6 100644 --- a/get/cli/latest/win32/index.html +++ b/get/cli/latest/win32/index.html @@ -5,13 +5,16 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.5/qwertycoin-v6.0.5-windows.exe

-

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.5/qwertycoin-v6.0.5-windows.exe

+

- \ No newline at end of file + diff --git a/get/cli/latest/win64/index.html b/get/cli/latest/win64/index.html index 68f5a9f..4edddc6 100644 --- a/get/cli/latest/win64/index.html +++ b/get/cli/latest/win64/index.html @@ -5,13 +5,16 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.5/qwertycoin-v6.0.5-windows.exe

-

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.5/qwertycoin-v6.0.5-windows.exe

+

- \ No newline at end of file + diff --git a/get/cli/latest/win64zip/index.html b/get/cli/latest/win64zip/index.html index 3d6f4ef..a5365ea 100644 --- a/get/cli/latest/win64zip/index.html +++ b/get/cli/latest/win64zip/index.html @@ -5,13 +5,16 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.5/qwertycoin-windows-v6.0.5.zip

-

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin/releases/download/v6.0.5/qwertycoin-windows-v6.0.5.zip

+

- \ No newline at end of file + diff --git a/get/gui/latest/linux/deb/index.html b/get/gui/latest/linux/deb/index.html index 959be6b..703f9ed 100644 --- a/get/gui/latest/linux/deb/index.html +++ b/get/gui/latest/linux/deb/index.html @@ -5,13 +5,16 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.2/qwertycoin-gui-v6.0.3-linux.deb

-

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.3/qwertycoin-gui-v6.0.3-linux.deb

+

diff --git a/get/gui/latest/linux/index.html b/get/gui/latest/linux/index.html index d414c97..d83d8f4 100644 --- a/get/gui/latest/linux/index.html +++ b/get/gui/latest/linux/index.html @@ -5,13 +5,14 @@ Qwertycoin | Download URL Forwarding. - + -

-

Redirecting to: https://releases.qwertycoin.org/get/gui/latest/linux/deb

-

+

+

Redirecting to: https://releases.qwertycoin.org/get/gui/latest/linux/deb

+

- \ No newline at end of file + diff --git a/get/gui/latest/linux/rpm/index.html b/get/gui/latest/linux/rpm/index.html index 604b1b8..f738adc 100644 --- a/get/gui/latest/linux/rpm/index.html +++ b/get/gui/latest/linux/rpm/index.html @@ -5,15 +5,18 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.2/qwertycoin-gui-v6.0.3-linux.rpm

-

- Download -

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.3/qwertycoin-gui-v6.0.3-linux.rpm

+

+Download +

diff --git a/get/gui/latest/macos/index.html b/get/gui/latest/macos/index.html index 1b6779b..e75c3d7 100644 --- a/get/gui/latest/macos/index.html +++ b/get/gui/latest/macos/index.html @@ -5,13 +5,16 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.2/qwertycoin-gui-v6.0.3-macos.dmg

-

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.3/qwertycoin-gui-v6.0.3-macos.dmg

+

diff --git a/get/gui/latest/win32/index.html b/get/gui/latest/win32/index.html index 4e0f24a..6615cd4 100644 --- a/get/gui/latest/win32/index.html +++ b/get/gui/latest/win32/index.html @@ -5,13 +5,14 @@ Qwertycoin | Download URL Forwarding. - + -

-

Redirecting to: https://releases.qwertycoin.org/get/gui/latest/win64

-

+

+

Redirecting to: https://releases.qwertycoin.org/get/gui/latest/win64

+

- \ No newline at end of file + diff --git a/get/gui/latest/win64/index.html b/get/gui/latest/win64/index.html index a437f9c..1551176 100644 --- a/get/gui/latest/win64/index.html +++ b/get/gui/latest/win64/index.html @@ -5,13 +5,16 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.2/qwertycoin-gui-v6.0.3-windows.exe

-

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin-gui/releases/download/v6.0.3/qwertycoin-gui-v6.0.3-windows.exe

+

diff --git a/get/zero/latest/linux/deb/index.html b/get/zero/latest/linux/deb/index.html index 4b4f6c2..f746199 100644 --- a/get/zero/latest/linux/deb/index.html +++ b/get/zero/latest/linux/deb/index.html @@ -5,13 +5,16 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.0/qwertycoin-zero-v6.0.3-linux.deb

-

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.3/qwertycoin-zero-v6.0.3-linux.deb

+

diff --git a/get/zero/latest/linux/rpm/index.html b/get/zero/latest/linux/rpm/index.html index ec72d16..509919c 100644 --- a/get/zero/latest/linux/rpm/index.html +++ b/get/zero/latest/linux/rpm/index.html @@ -5,13 +5,16 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.0/qwertycoin-zero-v6.0.3-linux.rpm

-

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.3/qwertycoin-zero-v6.0.3-linux.rpm

+

diff --git a/get/zero/latest/macos/index.html b/get/zero/latest/macos/index.html index a40fff3..cbf12ac 100644 --- a/get/zero/latest/macos/index.html +++ b/get/zero/latest/macos/index.html @@ -5,13 +5,16 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.0/qwertycoin-zero-v6.0.3-macos.dmg

-

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.3/qwertycoin-zero-v6.0.3-macos.dmg

+

diff --git a/get/zero/latest/win32/index.html b/get/zero/latest/win32/index.html index 01e8a57..5b7ddf7 100644 --- a/get/zero/latest/win32/index.html +++ b/get/zero/latest/win32/index.html @@ -5,13 +5,16 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.0/qwertycoin-zero-v6.0.3-windows.exe

-

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.3/qwertycoin-zero-v6.0.3-windows.exe

+

diff --git a/get/zero/latest/win64/index.html b/get/zero/latest/win64/index.html index 01e8a57..5b7ddf7 100644 --- a/get/zero/latest/win64/index.html +++ b/get/zero/latest/win64/index.html @@ -5,13 +5,16 @@ Qwertycoin | Download URL Forwarding. - - + + -

-

Redirecting to: https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.0/qwertycoin-zero-v6.0.3-windows.exe

-

+

+

Redirecting to: + https://github.com/qwertycoin-org/qwertycoin-zero/releases/download/v6.0.3/qwertycoin-zero-v6.0.3-windows.exe

+