File tree 4 files changed +65
-2
lines changed
4 files changed +65
-2
lines changed Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ ## [ 0.0.10] - 2024-03-10
4
+ ### Fixed
5
+ - Fix issue with page jump functionality (#8 )
6
+ 修复页面跳转功能问题 (#8 )
7
+
8
+ - Resolve icon freezing problem (#9 )
9
+ 解决图标卡住的问题 (#9 )
10
+
11
+ ### Added
12
+ - Add feature to customize the position of the "Rate It" button
13
+ 新增功能:支持自定义“rate it”按钮的位置
14
+
15
+ ## [ 0.0.9] - 2025-02-28
16
+ ### Initial Release
17
+ - release Basic functionality of Leetcode-Mastery-Scheduler
18
+ 发布Leetcode-Mastery-Scheduler 的基础功能
Original file line number Diff line number Diff line change 1
1
{
2
2
"manifest_version" : 3 ,
3
3
"name" : " Leetcode Mastery Scheduler" ,
4
- "version" : " 0.0.8 " ,
4
+ "version" : " 0.0.10 " ,
5
5
"author" : " Hacode" ,
6
6
"description" : " Leetcode-Mastery-Scheduler tracks your LeetCode progress and prompt you to review based FSRS" ,
7
7
"homepage_url" : " https://github.com/xiaohajiayou/Leetcode-Mastery-Scheduler" ,
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ <h3>Add New Problem</h3>
160
160
< div class ="container-sm m-0 ">
161
161
162
162
163
-
163
+
164
164
<!-- doc -->
165
165
< div class ="multifont my-0 py-0 by-0 " style ="text-align: center; ">
166
166
< small > 🔗 < a target ="_blank " href ="https://github.com/xiaohajiayou/Leetcode-Mastery-Scheduler "> Get Started</ a > / < a
@@ -289,6 +289,22 @@ <h3>Add New Problem</h3>
289
289
</ nav >
290
290
</ div >
291
291
</ div >
292
+ <!-- 添加一个占位div,确保内容不会被footer遮挡 -->
293
+ < div style ="height: 45px; "> </ div >
294
+ <!-- 更新概要 -->
295
+ < div class ="update-summary my-0 py-0 by-0 " style ="text-align: center; margin-bottom: 5px; ">
296
+ < small >
297
+ < div >
298
+ < span class ="update-badge "> NEW!</ span >
299
+ 新增评分按钮位置自定义 / Adjustable rating button position
300
+ </ div >
301
+ < div >
302
+ < a target ="_blank " href ="https://github.com/xiaohajiayou/Leetcode-Mastery-Scheduler/blob/main/changelog.md ">
303
+ View full changelog now(V0.0.10)
304
+ </ a >
305
+ </ div >
306
+ </ small >
307
+ </ div >
292
308
293
309
<!-- 添加一个占位div,确保内容不会被footer遮挡 -->
294
310
< div style ="height: 50px; "> </ div >
Original file line number Diff line number Diff line change @@ -1080,4 +1080,33 @@ td, th {
1080
1080
1081
1081
.colored-toast .swal2-success-ring {
1082
1082
border-color : # 4a9d9c !important ;
1083
+ }
1084
+
1085
+ /* 更新概要样式 */
1086
+ .update-badge {
1087
+ background-color : # FF3D3D ;
1088
+ color : white;
1089
+ padding : 2px 5px ;
1090
+ border-radius : 3px ;
1091
+ font-size : 0.8em ;
1092
+ margin-right : 5px ;
1093
+ font-weight : bold;
1094
+ }
1095
+
1096
+ .update-summary {
1097
+ background-color : rgba (74 , 157 , 156 , 0.1 );
1098
+ border-radius : 4px ;
1099
+ padding : 3px 0 !important ;
1100
+ margin-bottom : 8px !important ;
1101
+ }
1102
+
1103
+ .update-summary a {
1104
+ color : # 4a9d9c ;
1105
+ text-decoration : none;
1106
+ margin-left : 5px ;
1107
+ }
1108
+
1109
+ .update-summary a : hover {
1110
+ text-decoration : underline;
1111
+ color : # afffff ;
1083
1112
}
You can’t perform that action at this time.
0 commit comments