用 tauri 手搓一个 Foliate 阅读器

自从换了 Mac 电脑之后,一直找不到合适的电子书阅读器,好不容易找到一个支持多格式的 Foliate,却不支持 Mac。没办法只好自己手搓一个了。

在 tauri 的项目地下拉 Foliate

1
git submodule add https://github.com/johnfactotum/foliate-js src/foliate-js

修改src-tauri/tauri.conf.json

1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"build": {
"devPath": "../src/foliate-js",
"distDir": "../src/foliate-js",
"withGlobalTauri": true
},
"tauri": {
"windows": [
{
"url": "reader.html",
}
]
}
}

编译:

1
npm run tauri build

用 tauri 手搓一个 Foliate 阅读器
https://bubao.github.io/posts/a5355860.html
作者
一念
发布于
2024年10月15日
许可协议