Skip to content

Commit 9fec6da

Browse files
committed
Release: v0.1.5
1 parent b505b25 commit 9fec6da

File tree

6 files changed

+53
-26
lines changed

6 files changed

+53
-26
lines changed

changelog.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,26 @@
11
# Changelog
22

33

4+
### [0.1.5] - 2025-04-14
5+
----------------------
6+
7+
#### Fixed
8+
9+
- Fix the issue where the timezone was fixed in the FSRS parameter optimization commit (#38)
10+
- 修复fsrs参数优化提交中固定了时区的问题。(#38
411

5-
## [0.1.4] - 2025-04-08
12+
### [0.1.4] - 2025-04-08
613
----------------------
714

8-
### Added
15+
#### Added
916

10-
* 新增本地 FSRS 算法参数优化,用户可以拟合最适合自己的记忆曲线。(#15
11-
17+
- Add local FSRS algorithm parameter optimization, allowing users to fit the memory curve that best suits them (#15)
18+
- 新增本地 FSRS 算法参数优化,用户可以拟合最适合自己的记忆曲线。(#15
1219

13-
### Fixed
20+
#### Fixed
1421

15-
* 修复了在页面缩放时,rate 按钮消失的问题。(#32
22+
- Fix the issue where the rate button disappeared when the page was zoomed (#32)
23+
- 修复了在页面缩放时,rate 按钮消失的问题。(#32
1624

1725

1826

manifest.base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "Leetcode Mastery Scheduler",
4-
"version": "0.1.4",
4+
"version": "0.1.5",
55
"author": "Hacode",
66
"description": "Leetcode-Mastery-Scheduler tracks your LeetCode progress and prompt you to review based FSRS",
77
"homepage_url": "https://github.com/xiaohajiayou/Leetcode-Mastery-Scheduler",

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Leetcode-Mastery-Scheduler",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "<h1 align=\"center\">\r <img src=\"assets/logo2.png\" style=\"width: 10%;\" />\r <br>\r <B>P</B>ractice <B>M</B>akes <B>C</B>ode <B>A</B>ccepted\r <br>\r </h1>",
55
"main": "src/popup.js",
66
"directories": {

popup.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ <h3>Add Review Card</h3>
361361
</div>
362362
<div>
363363
<a target="_blank" href="https://github.com/xiaohajiayou/Leetcode-Mastery-Scheduler/blob/main/changelog.md">
364-
View full changelog now(V0.1.4)
364+
View full changelog now(V0.1.5)
365365
</a>
366366
</div>
367367
</small>

src/popup/popup.css

Lines changed: 35 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,6 @@ display: inline-block; /* 确保渐变效果生效 */
299299
.retrievability-icon {
300300
margin-right: 10px;
301301
color: #4a9d9c;
302-
animation: pulse 2s infinite;
303302
}
304303

305304
.retrievability-value {
@@ -776,34 +775,54 @@ iframe {
776775
position: relative;
777776
overflow: hidden;
778777
padding: 0.35rem 0.8rem;
778+
animation: starPulse 2s infinite;
779779
}
780780

781-
.github-star-btn:hover {
782-
background: #1a3244;
783-
border-color: #61dafb;
784-
box-shadow: 0 0 10px rgba(97, 218, 251, 0.5);
785-
color: #61dafb;
781+
@keyframes starPulse {
782+
0% {
783+
box-shadow: 0 0 0 0 rgba(97, 218, 251, 0.4);
784+
}
785+
70% {
786+
box-shadow: 0 0 0 10px rgba(97, 218, 251, 0);
787+
}
788+
100% {
789+
box-shadow: 0 0 0 0 rgba(97, 218, 251, 0);
790+
}
786791
}
787792

788-
.github-star-btn .btn-content {
789-
display: flex;
790-
align-items: center;
791-
gap: 0.6rem;
793+
.github-star-btn i {
794+
font-size: 0.875rem;
795+
color: #61dafb;
792796
transition: all 0.3s ease;
797+
animation: starTwinkle 2s infinite;
793798
}
794799

795-
.github-star-btn:hover .btn-content {
796-
transform: translateX(2px);
800+
@keyframes starTwinkle {
801+
0% {
802+
transform: scale(1);
803+
opacity: 1;
804+
}
805+
50% {
806+
transform: scale(1.2);
807+
opacity: 0.8;
808+
}
809+
100% {
810+
transform: scale(1);
811+
opacity: 1;
812+
}
797813
}
798814

799-
.github-star-btn i {
800-
font-size: 0.875rem;
815+
.github-star-btn:hover {
816+
background: #1a3244;
817+
border-color: #61dafb;
818+
box-shadow: 0 0 15px rgba(97, 218, 251, 0.7);
801819
color: #61dafb;
802-
transition: all 0.3s ease;
820+
animation: none; /* 悬停时停止脉冲动画 */
803821
}
804822

805823
.github-star-btn:hover i {
806-
color: #61dafb;
824+
animation: none; /* 悬停时停止星星闪烁动画 */
825+
transform: scale(1.2);
807826
}
808827

809828
.feedback-btn-review {

0 commit comments

Comments
 (0)