Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
tamlok committed Jul 2, 2024
1 parent 2dba7e8 commit a6cb4db
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 12 deletions.
11 changes: 10 additions & 1 deletion en_us/docs/Users/Frequently Asked Questions.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,16 @@ All the above 3 issues may be caused by the driver of the display card only on W

1. Try to update the display card driver;
2. Try to schedule VNote to run with integrated display card;
3. If it does not works, try to set the `OpenGL`value one by one in the `Settings` dialog.
3. If it does not works, try to set the `OpenGL`value one by one in the `Settings` dialog;
![](vx_images/2626403110753.png)
4. Make sure the executable folder of VNote locates in C disk.

Restart of VNote is needed after each step to check if it takes effect.

## Failed to Run on MacOS
Try to re-sign the APP:

```bash
xattr -cr '/Applications/VNote.app'
codesign --force --deep --sign - '/Applications/VNote.app'
```
2 changes: 1 addition & 1 deletion en_us/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

::: alert-success

VNote 3.14.0 is released! Check out [what's new](https://github.com/vnotex/vnote/releases)!
VNote 3.18.0 is released! Check out [what's new](https://github.com/vnotex/vnote/releases)!

:::

Expand Down
20 changes: 11 additions & 9 deletions zh_cn/docs/用户/常见问题.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,30 +24,32 @@ this.mathJaxScript = 'file://c:/Users/foo/mathjax/tex-svg.js';

1. 尝试更新显卡驱动;
2. 尝试将VNote指定使用集成显卡;
3. 尝试在`设置`对话框里面指定`OpenGL`的值,逐个值进行尝试
3. 尝试在`设置`对话框里面指定`OpenGL`的值,逐个值进行尝试
![](vx_images/3831753136437.png)
4. 确认VNote的可执行文件文件夹位于C盘下面。

每一步操作都需要重启VNote来验证是否有用。

## macOS 下无法打开 App
打开 App 时弹出对话框,提示
> Apple 无法验证“VNote.app”是否包含可能危害 Mac 安全或泄漏隐私的恶意软件。
## MacOS下无法运行VNote
打开时弹出对话框,提示

macOS 中包含一项名为“[门禁](https://support.apple.com/zh-cn/102445)”的技术,旨在确保只有受信任的软件才能在 Mac 上运行。你可以尝试以下方案来解决问题
> Apple无法验证“VNote.app”是否包含可能危害Mac安全或泄漏隐私的恶意软件

1. 首次打开 Vnote App,弹出对话框后点击“完成”按钮关闭对话框。打开“系统设置”,点按“隐私与安全性”,向下滚动,然后点按“仍要打开”按钮,即可启动 Vnote,且不再受阻止
MacOS中包含一项名为“[门禁](https://support.apple.com/zh-cn/102445)”的技术,旨在确保只有受信任的软件才能在Mac上运行。你可以尝试以下方案来解决问题

2. 执行以下命令,对 Vnote 进行签名。
1. 首次打开VNote,弹出对话框后点击“完成”按钮关闭对话框。打开“系统设置”,点按“隐私与安全性”,向下滚动,然后点按“仍要打开”按钮,即可启动VNote,且不再受阻止。

2. 执行以下命令,对VNote进行签名。

```bash
# 移除指定应用的所有扩展属性,包括导致应用被隔离的属性
# xattr 是 macOS 系统中用于管理文件扩展属性的命令
# xattr是MacOS系统中用于管理文件扩展属性的命令
# -c 选项表示清除所有的扩展属性
# -r 选项表示递归处理,即包括指定目录下的所有文件和子目录
xattr -cr '/Applications/VNote.app'
# 重新签名指定的应用
# codesign 是 macOS 系统中用于给应用程序签名的命令
# codesign是macOS系统中用于给应用程序签名的命令
# --force 选项表示强制重新签名,即使之前已经签过名
# --deep 选项表示递归签名应用内的所有可执行文件和框架
# --sign - 选项表示使用一个匿名的证书进行签名
Expand Down
2 changes: 1 addition & 1 deletion zh_cn/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

::: alert-success

VNote 3.14.0 已发布! 看看都有[哪些更新](https://github.com/vnotex/vnote/releases)
VNote 3.18.0 已发布! 看看都有[哪些更新](https://github.com/vnotex/vnote/releases)

观看[展示录屏](https://www.bilibili.com/video/av77455284)

Expand Down

0 comments on commit a6cb4db

Please sign in to comment.