Skip to content

Commit 978aef7

Browse files
committed
update links for 1.16.1
1 parent b957352 commit 978aef7

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

downloadButton.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function showMacDialog () {
3737
}
3838

3939
function showWindowsDialog () {
40-
showDialogBackdrop();
40+
showDialogBackdrop()
4141

4242
var dialog = document.createElement('div')
4343
dialog.className = 'dialog centered'
@@ -78,23 +78,23 @@ var failMessage = "Min isn't supported on your OS"
7878

7979
// matches against navigator.platform
8080
var platformMatchStrings = {
81-
'MacIntel': 'https://github.com/minbrowser/min/releases/download/v1.16.0/Min-v1.16.0-darwin-x64.zip',
81+
'MacIntel': 'https://github.com/minbrowser/min/releases/download/v1.16.1/Min-v1.16.1-darwin-x64.zip',
8282
// electron no longer supports 32-bit linux (https://electronjs.org/blog/linux-32bit-support), so there's only a 64-bit build available
83-
'Linux aarch64': 'https://github.com/minbrowser/min/releases/download/v1.16.0/min_1.16.0_armhf.deb',
83+
'Linux aarch64': 'https://github.com/minbrowser/min/releases/download/v1.16.1/min_1.16.1_armhf.deb',
8484
// this could be either 32- or 64- bit, but we only have 64-bit downloads, so just display that and hope it works
8585
'Linux': {
8686
// there isn't an obvious way to detect deb- or rpm-based systems
87-
deb: 'https://github.com/minbrowser/min/releases/download/v1.16.0/min_1.16.0_amd64.deb',
88-
rpm: 'https://github.com/minbrowser/min/releases/download/v1.16.0/min-1.16.0-1.x86_64.rpm'
87+
deb: 'https://github.com/minbrowser/min/releases/download/v1.16.1/min_1.16.1_amd64.deb',
88+
rpm: 'https://github.com/minbrowser/min/releases/download/v1.16.1/min-1.16.1-1.x86_64.rpm'
8989
}
9090
}
9191

9292
// matches against navigator.userAgent
9393
var UAMatchStrings = {
94-
'Win64': 'https://github.com/minbrowser/min/releases/download/v1.16.0/min-1.16.0-setup.exe',
95-
'WOW64': 'https://github.com/minbrowser/min/releases/download/v1.16.0/min-1.16.0-setup.exe',
94+
'Win64': 'https://github.com/minbrowser/min/releases/download/v1.16.1/min-1.16.1-setup.exe',
95+
'WOW64': 'https://github.com/minbrowser/min/releases/download/v1.16.1/min-1.16.1-setup.exe',
9696
// neither of the 64-bit strings matched, fall back to 32-bit
97-
'Windows NT': 'https://github.com/minbrowser/min/releases/download/v1.16.0/Min-v1.16.0-win32-ia32.zip'
97+
'Windows NT': 'https://github.com/minbrowser/min/releases/download/v1.16.1/Min-v1.16.1-win32-ia32.zip'
9898
}
9999

100100
function getDownloadLink () {

0 commit comments

Comments
 (0)