Skip to content

Commit 3ae8813

Browse files
committed
chore: v1.5.0
1 parent 4a8f4f4 commit 3ae8813

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "coursebench-frontend",
3-
"version": "0.1.0",
3+
"version": "1.5.0",
44
"private": true,
55
"scripts": {
66
"serve": "vue-cli-service serve",

src/components/global/Footer.vue

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<template>
22
<footer class="footer-container">
3-
<v-divider></v-divider>
4-
<div class="footer-content pt-5">
3+
<div class="footer-content">
54
<div class="footer-text">
65
<span class="copyright">
76
&copy; {{ currentYear }} CourseBench. All rights reserved.
@@ -11,8 +10,14 @@
1110
<span v-if="buildHash" class="build-hash">
1211
(Build: {{ buildHash }})
1312
</span>
13+
<a
14+
href="https://github.com/ShanghaitechGeekPie/coursebench-frontend/releases/latest"
15+
target="_blank"
16+
rel="noopener noreferrer"
17+
classname="inline-link"
18+
>更新日志</a>
1419
<span v-if="buildDate" class="build-date">
15-
Last build at: {{ buildDate }}
20+
构建日期: {{ buildDate }}
1621
</span>
1722
</span>
1823
</div>
@@ -66,6 +71,9 @@ export default {
6671
.version-info {
6772
font-size: 0.8125rem;
6873
color: rgba(0, 0, 0, 0.5);
74+
a {
75+
color: inherit;
76+
}
6977
}
7078
7179
.build-hash {

0 commit comments

Comments
 (0)