From 01b81d582437ea08194504e9407a674e59152452 Mon Sep 17 00:00:00 2001
From: dlzmoe <65840178+dlzmoe@users.noreply.github.com>
Date: Tue, 21 Jan 2025 14:13:39 +0800
Subject: [PATCH] =?UTF-8?q?chore:=201.0.28=20=E7=89=88=E6=9C=AC=E5=8F=91?=
=?UTF-8?q?=E5=B8=83=EF=BC=8C=E5=85=B7=E4=BD=93=E5=86=85=E5=AE=B9=E6=9F=A5?=
=?UTF-8?q?=E7=9C=8B=E6=9B=B4=E6=96=B0=E6=97=A5=E5=BF=97?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
entrypoints/app.css | 33 +++++++++----------
entrypoints/bookmark/App.vue | 2 +-
.../BasicSettings/MenuHotRankingList.vue | 14 ++++++++
package.json | 2 +-
version-log.md | 10 ++++++
5 files changed, 41 insertions(+), 20 deletions(-)
create mode 100644 entrypoints/components/BasicSettings/MenuHotRankingList.vue
diff --git a/entrypoints/app.css b/entrypoints/app.css
index dc595fc..5b27ff4 100644
--- a/entrypoints/app.css
+++ b/entrypoints/app.css
@@ -12,13 +12,13 @@
box-sizing: border-box;
}
-.linuxdoscripts-setting-wrap>button {
+.linuxdoscripts-setting-wrap > button {
opacity: 0;
margin-left: -50px;
transition: all 0.2s linear;
}
-.linuxdoscripts-setting-wrap:hover>button {
+.linuxdoscripts-setting-wrap:hover > button {
opacity: 1;
margin-left: 0;
}
@@ -29,12 +29,11 @@
position: fixed;
}
- .linuxdoscripts-setting-wrap>button {
+ .linuxdoscripts-setting-wrap > button {
opacity: 1;
margin-left: 0;
}
}
-
.linuxdoscripts-setting {
display: flex;
align-items: center;
@@ -201,7 +200,7 @@
background-color: var(--primary-low);
}
-#linuxdoscripts button+button {
+#linuxdoscripts button + button {
margin-left: 8px;
}
@@ -517,13 +516,13 @@
color: #666;
}
-.topicpreview .topicpreview-container .topicpreview-content>.item {
+.topicpreview .topicpreview-container .topicpreview-content > .item {
display: flex;
align-items: flex-start;
padding: 20px 30px;
}
-.topicpreview .topicpreview-container .topicpreview-content>.item .itemfloor {
+.topicpreview .topicpreview-container .topicpreview-content > .item .itemfloor {
width: 50px;
text-align: left;
font-size: 16px;
@@ -531,7 +530,7 @@
color: #25b4cf;
}
-.topicpreview .topicpreview-container .topicpreview-content>.item .itempost {
+.topicpreview .topicpreview-container .topicpreview-content > .item .itempost {
flex: 1;
background: var(--tertiary-low);
padding: 15px 15px;
@@ -540,17 +539,17 @@
word-break: break-all;
}
-.topicpreview .topicpreview-container .topicpreview-content>.item .itempost pre code {
+.topicpreview .topicpreview-container .topicpreview-content > .item .itempost pre code {
max-width: 620px;
}
-.topicpreview .topicpreview-container .topicpreview-content>.item .itempost img {
+.topicpreview .topicpreview-container .topicpreview-content > .item .itempost img {
max-width: 100%;
max-height: 100%;
height: auto;
}
-.topicpreview .topicpreview-container .topicpreview-content>.item .itempost .itemname {
+.topicpreview .topicpreview-container .topicpreview-content > .item .itempost .itemname {
font-size: 16px;
color: #8f3a3a;
display: flex;
@@ -558,12 +557,12 @@
align-items: center;
}
-.topicpreview .topicpreview-container .topicpreview-content>.item .itempost .itemname span {
+.topicpreview .topicpreview-container .topicpreview-content > .item .itempost .itemname span {
color: #9e9e9e;
margin-left: 20px;
}
-.topicpreview .topicpreview-container .topicpreview-content>.item .itempost .itemdate {
+.topicpreview .topicpreview-container .topicpreview-content > .item .itempost .itemdate {
color: #b9b9b9;
font-size: 16px;
margin-left: auto;
@@ -739,13 +738,11 @@ body.body-preview #main-outlet-wrapper {
transform: translateY(10px);
opacity: 0;
}
-
100% {
transform: translateY(0);
opacity: 1;
}
}
-
.pangutext {
cursor: pointer;
margin-left: 20px;
@@ -853,7 +850,7 @@ body.body-preview #main-outlet-wrapper {
cursor: pointer;
}
-.menu-table .span+.span {
+.menu-table .span + .span {
margin-left: 10px;
}
@@ -887,7 +884,7 @@ body.body-preview #main-outlet-wrapper {
color: var(--primary-medium);
}
-.UsageTip>div {
+.UsageTip > div {
margin: 10px 0;
}
@@ -907,7 +904,7 @@ body.body-preview #main-outlet-wrapper {
width: 146px !important;
}
-@media(max-width:1000px) {
+@media (max-width: 1000px) {
#linuxdoscripts .setting-btn {
bottom: 50px;
}
diff --git a/entrypoints/bookmark/App.vue b/entrypoints/bookmark/App.vue
index dd262f5..16a89af 100644
--- a/entrypoints/bookmark/App.vue
+++ b/entrypoints/bookmark/App.vue
@@ -499,7 +499,7 @@ export default {
selectItem(id) {
this.selectedItemId = id;
this.tableData = this.bookmarklist.find(item => item.id === id);
- console.log(this.tableData);
+ // console.log(this.tableData);
this.Loading();
},
diff --git a/entrypoints/components/BasicSettings/MenuHotRankingList.vue b/entrypoints/components/BasicSettings/MenuHotRankingList.vue
new file mode 100644
index 0000000..f9ca559
--- /dev/null
+++ b/entrypoints/components/BasicSettings/MenuHotRankingList.vue
@@ -0,0 +1,14 @@
+
+
+
{{ sort }}. 是否显示最热帖子排行榜
+
+
+
+
+
diff --git a/package.json b/package.json
index 412b7f6..550f74a 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "linuxdo-scripts",
"description": "manifest.json description",
"private": true,
- "version": "1.0.27",
+ "version": "1.0.28",
"type": "module",
"scripts": {
"dev": "wxt",
diff --git a/version-log.md b/version-log.md
index b05a2d2..100b30b 100644
--- a/version-log.md
+++ b/version-log.md
@@ -1,3 +1,13 @@
+## 1.0.28
+
+- feat: 对论坛设置按钮进行优化,可在右上角设置显示隐藏
+- feat: 新增查看话题内自己回复的全部楼层数,需在设置中开启
+- feat: 新增收藏夹黑夜模式
+- fix: 修复迁移收藏夹时无法查看全部文件夹的问题
+- fix: 修复收藏夹去重时覆盖问题
+- fix: 修复 AI 总结时部分模型不可使用温度 temperature 参数的问题
+- fix: 优化小屏右侧功能按钮遮挡的问题
+
## 1.0.27
- feat: 新增支持修改书签名称