Skip to content

Commit

Permalink
rm: update
Browse files Browse the repository at this point in the history
  • Loading branch information
Bronya0 committed Dec 22, 2024
1 parent 79dbd4d commit a6e3306
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions app/backend/types/resp.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package types

type Tag struct {
Name string `json:"name"`
TagName string `json:"tag_name"`
Body string `json:"body"`
}
Expand Down
4 changes: 2 additions & 2 deletions app/frontend/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="UTF-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>wails-naive-demo</title>
<script type="module" crossorigin src="/assets/index-j16p-pTZ.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-C_eqPdYl.css">
<script type="module" crossorigin src="/assets/index-eZdQAFTp.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-CiNRm_mn.css">
</head>
<body>
<div id="app"></div>
Expand Down
2 changes: 1 addition & 1 deletion app/frontend/src/components/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const checkForUpdates = async () => {
if (!resp) {
check_msg.value = `${t('header.netErr')}`
} else if (resp.tag_name !== v) {
check_msg.value = `${t('header.newVersion')} ` + resp.tag_name
check_msg.value = `${t('header.newVersion')}: ` + resp.name
version.value.body = resp.body
const n = notification.success({
title: check_msg.value,
Expand Down

0 comments on commit a6e3306

Please sign in to comment.