@@ -69,8 +69,8 @@ function getDownloadUrl(browserName: BrowserName, revision: number, platform: Br
69
69
}
70
70
71
71
if ( browserName === 'firefox' ) {
72
- const FIREFOX_RENAME_LINUX_TO_UBUNTU_REVISION = 1139 ;
73
- return revision < FIREFOX_RENAME_LINUX_TO_UBUNTU_REVISION ?
72
+ const FIREFOX_NORMALIZE_CDN_NAMES_REVISION = 1140 ;
73
+ return revision < FIREFOX_NORMALIZE_CDN_NAMES_REVISION ?
74
74
new Map < BrowserPlatform , string > ( [
75
75
[ 'ubuntu18.04' , '%s/builds/firefox/%s/firefox-linux.zip' ] ,
76
76
[ 'ubuntu20.04' , '%s/builds/firefox/%s/firefox-linux.zip' ] ,
@@ -83,17 +83,17 @@ function getDownloadUrl(browserName: BrowserName, revision: number, platform: Br
83
83
new Map < BrowserPlatform , string > ( [
84
84
[ 'ubuntu18.04' , '%s/builds/firefox/%s/firefox-ubuntu-18.04.zip' ] ,
85
85
[ 'ubuntu20.04' , '%s/builds/firefox/%s/firefox-ubuntu-18.04.zip' ] ,
86
- [ 'mac10.13' , '%s/builds/firefox/%s/firefox-mac.zip' ] ,
87
- [ 'mac10.14' , '%s/builds/firefox/%s/firefox-mac.zip' ] ,
88
- [ 'mac10.15' , '%s/builds/firefox/%s/firefox-mac.zip' ] ,
86
+ [ 'mac10.13' , '%s/builds/firefox/%s/firefox-mac-10.14 .zip' ] ,
87
+ [ 'mac10.14' , '%s/builds/firefox/%s/firefox-mac-10.14 .zip' ] ,
88
+ [ 'mac10.15' , '%s/builds/firefox/%s/firefox-mac-10.14 .zip' ] ,
89
89
[ 'win32' , '%s/builds/firefox/%s/firefox-win32.zip' ] ,
90
90
[ 'win64' , '%s/builds/firefox/%s/firefox-win64.zip' ] ,
91
91
] ) . get ( platform ) ;
92
92
}
93
93
94
94
if ( browserName === 'webkit' ) {
95
- const WEBKIT_RENAME_LINUX_TO_UBUNTU_REVISION = 1315 ;
96
- return revision < WEBKIT_RENAME_LINUX_TO_UBUNTU_REVISION ?
95
+ const WEBKIT_NORMALIZE_CDN_NAMES_REVISION = 1317 ;
96
+ return revision < WEBKIT_NORMALIZE_CDN_NAMES_REVISION ?
97
97
new Map < BrowserPlatform , string | undefined > ( [
98
98
[ 'ubuntu18.04' , '%s/builds/webkit/%s/minibrowser-gtk-wpe.zip' ] ,
99
99
[ 'ubuntu20.04' , '%s/builds/webkit/%s/minibrowser-gtk-wpe.zip' ] ,
@@ -104,13 +104,13 @@ function getDownloadUrl(browserName: BrowserName, revision: number, platform: Br
104
104
[ 'win64' , '%s/builds/webkit/%s/minibrowser-win64.zip' ] ,
105
105
] ) . get ( platform ) :
106
106
new Map < BrowserPlatform , string | undefined > ( [
107
- [ 'ubuntu18.04' , '%s/builds/webkit/%s/minibrowser-gtk-wpe -ubuntu-18.04.zip' ] ,
108
- [ 'ubuntu20.04' , '%s/builds/webkit/%s/minibrowser-gtk-wpe -ubuntu-20.04.zip' ] ,
107
+ [ 'ubuntu18.04' , '%s/builds/webkit/%s/webkit -ubuntu-18.04.zip' ] ,
108
+ [ 'ubuntu20.04' , '%s/builds/webkit/%s/webkit -ubuntu-20.04.zip' ] ,
109
109
[ 'mac10.13' , undefined ] ,
110
- [ 'mac10.14' , '%s/builds/webkit/%s/minibrowser -mac-10.14.zip' ] ,
111
- [ 'mac10.15' , '%s/builds/webkit/%s/minibrowser -mac-10.15.zip' ] ,
112
- [ 'win32' , '%s/builds/webkit/%s/minibrowser -win64.zip' ] ,
113
- [ 'win64' , '%s/builds/webkit/%s/minibrowser -win64.zip' ] ,
110
+ [ 'mac10.14' , '%s/builds/webkit/%s/webkit -mac-10.14.zip' ] ,
111
+ [ 'mac10.15' , '%s/builds/webkit/%s/webkit -mac-10.15.zip' ] ,
112
+ [ 'win32' , '%s/builds/webkit/%s/webkit -win64.zip' ] ,
113
+ [ 'win64' , '%s/builds/webkit/%s/webkit -win64.zip' ] ,
114
114
] ) . get ( platform ) ;
115
115
}
116
116
}
0 commit comments