Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified docs/Screenshots/en-US/AI-Config.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/Screenshots/en-US/General.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/Screenshots/zh-CN/AI-Config.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/Screenshots/zh-CN/General.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/assets/changelog/history_cn.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
### [1.1.4] - 2026-03-08
本次更新包含若干关键修复和性能优化,进一步提升软件的稳定性和安全性。
#### 修复
- 修复在配置文件缺失情况下导致密钥验证异常的问题。
- 修复只读模式状态下笔记不显示只读图标的问题。
- 修复潜在数据更新问题。
#### 优化
- 优化预览界面渲染机制,提升滚动流畅度。
- 优化首选项AI配置面板。
- 优化编辑器右键菜单。

### [1.1.3] - 2026-03-04
本次更新包含若干关键修复和性能优化,进一步提升软件的稳定性和安全性。
#### 修复
- 修复在特定情况下,自定义笔记保存路径可能导致加密失败的问题。
- 修复部分语言翻译缺失问题。
Expand Down
6 changes: 3 additions & 3 deletions src/assets/changelog/history_en.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
### [1.1.4] - 2026-03-08
This update includes several important fixes and performance improvements, further enhancing the stability and security of the software.
#### Fixed
- Fixed an issue that caused key verification to fail when the configuration file was missing.
- Fixed an issue where the note read-only icon was not displayed in read-only mode.
- Fixed potential data inconsistency issue.
#### Improved
- Optimize the preview interface rendering mechanism to improve scrolling smoothness.
- Enhanced context menu of editor.
- Improved the preview interface rendering mechanism to improve scrolling smoothness.
- Improved context menu of editor.

### [1.1.3] - 2026-03-04
This update includes several important fixes and performance improvements, further enhancing the stability and security of the software.
#### Fixed
- Fixed an issue where custom note save paths could cause encryption failures in specific cases.
- Fixed missing translations in certain languages.
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
form-action 'none';
">
<link rel="stylesheet" href="../node_modules/codemirror/lib/codemirror.css" />
<link rel="stylesheet" href="./styles/main/main.css" />
<link rel="stylesheet" href="./styles/main.css" />
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion src/styles/main/main.css → src/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
@import url('./modules/base.css');
@import url('./modules/workspace.css');
@import url('./modules/editor.css');
@import url('./modules/perference.css');
@import url('./modules/preference.css');
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
color: var(--text, #222);
z-index: 1000;
height: 85vh;
max-height: 700px;
max-height: 750px;
margin: 20px;
padding: 20px;
border-radius: 8px;
Expand All @@ -36,6 +36,11 @@
border: 1px solid var(--border);
display: flex;
flex-direction: column;
box-sizing: border-box;
}

.modal-content * {
box-sizing: border-box;
}

.pref-header {
Expand Down Expand Up @@ -145,7 +150,7 @@
}

.pref-content {
padding-left: 12px;
padding: 0 12px;
overflow-y: auto;
overflow-x: hidden;
}
Expand All @@ -161,9 +166,6 @@
max-width: 480px;
}

.pref-section {
margin-bottom: 16px;
}

.pref-section label {
display: block;
Expand Down Expand Up @@ -222,10 +224,12 @@

.pref-pane {
display: none;
flex-direction: column;
gap: 12px;
}

.pref-pane.active {
display: block;
display: flex;
}

/* Pref hint text */
Expand Down
File renamed without changes.
File renamed without changes.