Skip to content

Commit a62ad48

Browse files
committed
chore: ignore reader cache
1 parent 7f677dd commit a62ad48

4 files changed

Lines changed: 21 additions & 99408 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ __pycache__/
99
garss-studio/.tmp-chrome-mcp-client.mjs
1010
docs/
1111
README.md
12+
garss-studio/storage/reader-cache.json

garss-studio/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2715,7 +2715,7 @@ function RsshubPanel() {
27152715

27162716
function SettingsAiConnectionSection() {
27172717
const aiPromptText =
2718-
"请安装Skill https://clawhub.ai/zhaoolee/garss-studio-rss-api 按照skill要求,在本地启动项目,获取今天的摄影类型的信息更新,把前十张图片放到我桌面的 RSS摄影图 文件夹里,并使用markdown给出图片来源";
2718+
"请安装Skill https://clawhub.ai/zhaoolee/garss-studio-rss-api 按照skill要求,在本地启动项目,获取今天的摄影类型的信息更新,把前20张图片放到我桌面的 RSS摄影图 文件夹里,并使用markdown给出图片来源,最后给出一个 http://127.0.0.1:25173/reader?pw=banana 的链接支持我通过html人工操作项目";
27192719
const [copiedPrompt, setCopiedPrompt] = useState(false);
27202720

27212721
async function handleCopyAiPrompt() {

garss-studio/src/styles.css

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -611,12 +611,28 @@ a {
611611
gap: 8px;
612612
margin-top: 8px;
613613
overflow-x: auto;
614-
padding: 0 0 2px;
615-
scrollbar-width: none;
614+
overscroll-behavior-x: contain;
615+
padding: 0 0 8px;
616+
scrollbar-color: rgba(139, 112, 91, 0.44) rgba(229, 219, 205, 0.58);
617+
scrollbar-width: thin;
616618
}
617619

618620
.reader-filter-category-list::-webkit-scrollbar {
619-
display: none;
621+
height: 7px;
622+
}
623+
624+
.reader-filter-category-list::-webkit-scrollbar-track {
625+
border-radius: 999px;
626+
background: rgba(229, 219, 205, 0.58);
627+
}
628+
629+
.reader-filter-category-list::-webkit-scrollbar-thumb {
630+
border-radius: 999px;
631+
background: rgba(139, 112, 91, 0.44);
632+
}
633+
634+
.reader-filter-category-list::-webkit-scrollbar-thumb:hover {
635+
background: rgba(111, 66, 25, 0.54);
620636
}
621637

622638
.reader-filter-category-chip {

0 commit comments

Comments
 (0)