@@ -183,7 +183,7 @@ const downloadUpdates = (latestVersion: string, windowId: number) => {
183183
184184 if ( process . platform === "win32" )
185185 if ( IS_PORTABLE ) {
186- const dl = downloadLink + latestVersion + "/" + `Yomikiru-win32-${ latestVersion } -Portable.zip` ;
186+ const dl = downloadLink + latestVersion + "/" + `Yomikiru-win32-v ${ latestVersion } -Portable.zip` ;
187187 const extractPath = path . join ( tempPath , "updates" ) ;
188188 if ( ! fs . existsSync ( extractPath ) ) fs . mkdirSync ( extractPath ) ;
189189
@@ -214,7 +214,7 @@ const downloadUpdates = (latestVersion: string, windowId: number) => {
214214 } ) ;
215215 } ) ;
216216 } else {
217- const dl = downloadLink + latestVersion + "/" + `Yomikiru-${ latestVersion } -Setup.exe` ;
217+ const dl = downloadLink + latestVersion + "/" + `Yomikiru-v ${ latestVersion } -Setup.exe` ;
218218 downloadFile ( dl , newWindow . webContents , ( file ) => {
219219 logger . log ( `${ file . filename } downloaded.` ) ;
220220 app . on ( "before-quit" , ( ) => {
@@ -229,7 +229,7 @@ const downloadUpdates = (latestVersion: string, windowId: number) => {
229229 } ) ;
230230 }
231231 else if ( process . platform === "linux" ) {
232- const dl = downloadLink + latestVersion + "/" + `Yomikiru-${ latestVersion } -amd64.deb` ;
232+ const dl = downloadLink + latestVersion + "/" + `Yomikiru-v ${ latestVersion } -amd64.deb` ;
233233 downloadFile ( dl , newWindow . webContents , ( file ) => {
234234 logger . log ( `${ file . filename } downloaded.` ) ;
235235 const script = `
0 commit comments