Skip to content

Commit f34d739

Browse files
committed
NEW
1 parent 082fcfd commit f34d739

3 files changed

Lines changed: 36 additions & 9 deletions

File tree

extend/remindai/SCHEDULE.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# 工作计划
2+
> 最后更新: 2026-06-17 09:10
3+
4+
## 🔴 P0 - 紧急
5+
6+
## 🟡 P1 - 重要
7+
8+
## 🟢 P2 - 一般
9+
10+
## ✅ 已完成

extend/remindai/index.html

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
gap: 20px;
6262
}
6363

64-
.nav-links { display: flex; gap: 24px; }
64+
.nav-links { display: flex; gap: 24px; align-items: center; }
6565
.nav-links a {
6666
color: var(--text-dim);
6767
text-decoration: none;
@@ -70,6 +70,14 @@
7070
}
7171
.nav-links a:hover { color: var(--text); }
7272

73+
.nav-links .github-icon {
74+
display: flex;
75+
align-items: center;
76+
color: var(--text-dim);
77+
transition: color 0.2s;
78+
}
79+
.nav-links .github-icon:hover { color: var(--text); }
80+
7381
/* === Language Switcher === */
7482
.lang-switcher {
7583
position: relative;
@@ -369,7 +377,11 @@
369377
<a href="#features" data-i18n="nav.features">特性</a>
370378
<a href="#completion" data-i18n="nav.completion">完成度</a>
371379
<a href="#start" data-i18n="nav.quickstart">快速开始</a>
372-
<a href="https://github.com/PythonnotJava/RemindAI" target="_blank">GitHub</a>
380+
<a href="https://github.com/PythonnotJava/RemindAI" target="_blank" class="github-icon" aria-label="GitHub">
381+
<svg width="20" height="20" viewBox="0 0 98 96" xmlns="http://www.w3.org/2000/svg">
382+
<path fill-rule="evenodd" clip-rule="evenodd" d="M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.362 19.412-6.518 33.405-24.934 33.405-46.691C97.707 22 75.788 0 48.854 0z" fill="currentColor"/>
383+
</svg>
384+
</a>
373385
</div>
374386

375387
<!-- Language Switcher -->
@@ -618,9 +630,6 @@ <h2 class="section-title" data-i18n="start.title">🚀 快速开始</h2>
618630
<span class="cmd">flutter build linux</span> --release --tree-shake-icons<br/>
619631
<span class="cmd">flutter build macos</span> --release --tree-shake-icons
620632
</div>
621-
<div style="text-align: center; margin-top: 32px;">
622-
<a class="btn btn-primary" href="https://github.com/PythonnotJava/RemindAI/releases" target="_blank" data-i18n="start.download">📥 下载预编译包</a>
623-
</div>
624633
<div style="text-align: center; margin-top: 16px; color: var(--text-dim); font-size: 14px;" data-i18n="start.note">
625634
Windows 正式支持 · Linux / macOS 自行编译
626635
</div>
@@ -629,7 +638,7 @@ <h2 class="section-title" data-i18n="start.title">🚀 快速开始</h2>
629638
<!-- Footer -->
630639
<footer>
631640
<p data-i18n="footer.license">MIT License · Copyright © 2026 <a href="https://github.com/PythonnotJava" target="_blank">PythonnotJava</a></p>
632-
<p style="margin-top: 8px;" data-i18n="footer.built">用 Flutter 和热情构建 ❤️</p>
641+
<p style="margin-top: 8px;"><span data-i18n="footer.built">用 Flutter 和热情构建 ❤️</span> · <span data-i18n="footer.remindai">网页由 RemindAI 构建</span></p>
633642
</footer>
634643

635644
<!-- ============ i18n Engine ============ -->
@@ -725,7 +734,8 @@ <h2 class="section-title" data-i18n="start.title">🚀 快速开始</h2>
725734
'start.download': '📥 下载预编译包',
726735
'start.note': 'Windows 正式支持 · Linux / macOS 自行编译',
727736
'footer.license': 'MIT License · Copyright © 2026 <a href="https://github.com/PythonnotJava" target="_blank">PythonnotJava</a>',
728-
'footer.built': '用 Flutter 和热情构建 ❤️'
737+
'footer.built': '用 Flutter 和热情构建 ❤️',
738+
'footer.remindai': '网页由 RemindAI 构建'
729739
},
730740
'en': {
731741
'nav.features': 'Features',
@@ -815,7 +825,8 @@ <h2 class="section-title" data-i18n="start.title">🚀 快速开始</h2>
815825
'start.download': '📥 Download Pre-built',
816826
'start.note': 'Windows officially supported · Linux / macOS build from source',
817827
'footer.license': 'MIT License · Copyright © 2026 <a href="https://github.com/PythonnotJava" target="_blank">PythonnotJava</a>',
818-
'footer.built': 'Built with Flutter and passion ❤️'
828+
'footer.built': 'Built with Flutter and passion ❤️',
829+
'footer.remindai': 'Built by RemindAI'
819830
}
820831
};
821832

@@ -948,4 +959,4 @@ <h2 class="section-title" data-i18n="start.title">🚀 快速开始</h2>
948959
</script>
949960

950961
</body>
951-
</html>
962+
</html>

extend/remindai/memory.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"embeddings": false,
3+
"long_term_store": false,
4+
"long_term_recall": false,
5+
"mode": "auto"
6+
}

0 commit comments

Comments
 (0)