Skip to content

Commit

Permalink
build: release v3.0.1-Final
Browse files Browse the repository at this point in the history
  • Loading branch information
umalib committed Apr 3, 2024
1 parent dd80599 commit d0bfcdb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"author": "WindyWisper <[email protected]>",
"author": "WindyWhisper <[email protected]>",
"dependencies": {
"@prisma/client": "^3.15.2",
"axios": "^0.27.2",
Expand Down Expand Up @@ -54,6 +54,6 @@
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"version": "3.0.0-Final",
"version": "3.0.1-Final",
"web-types": "./web-types.json"
}
6 changes: 3 additions & 3 deletions src/renderer/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export default {
this.appVersion = await connector.get('checkVersion', {});
const current = new Date().getTime();
axios
.get(`https://umalib.github.io/UmaLibDesktop/update-info.json?${current}`)
.get(`https://umalib.gitgud.site/UmaLibDesktop/update-info.json?${current}`)

Check warning on line 176 in src/renderer/app.vue

View workflow job for this annotation

GitHub Actions / build-on-macos (14.x)

Replace ``https://umalib.gitgud.site/UmaLibDesktop/update-info.json?${current}`` with `⏎········`https://umalib.gitgud.site/UmaLibDesktop/update-info.json?${current}`,⏎······`

Check warning on line 176 in src/renderer/app.vue

View workflow job for this annotation

GitHub Actions / build-on-windows (13.x)

Replace ``https://umalib.gitgud.site/UmaLibDesktop/update-info.json?${current}`` with `␍⏎········`https://umalib.gitgud.site/UmaLibDesktop/update-info.json?${current}`,␍⏎······`
.then(async response => {
connector
.get('log', {
Expand Down Expand Up @@ -303,7 +303,7 @@ export default {
const current = new Date().getTime();
const remoteVer = (
await axios.get(
`https://umalib.github.io/UmaLibDesktop/update-info.json?${new Date().getTime()}`,
`https://umalib.gitgud.site/UmaLibDesktop/update-info.json?${new Date().getTime()}`,
)
).data;
connector
Expand Down Expand Up @@ -332,7 +332,7 @@ export default {
try {
const current = new Date().getTime();
const ret = await axios.get(
`https://umalib.github.io/UmaLibDesktop/${
`https://umalib.gitgud.site/UmaLibDesktop/${
this.downloadDialog.aimVersion
}.zip?${new Date().getTime()}`,
{
Expand Down

0 comments on commit d0bfcdb

Please sign in to comment.