目 录CONTENT

文章目录

各系统Typora安装破解流程

qiushengcai
2025-01-26 / 0 评论 / 0 点赞 / 38 阅读 / 0 字

Windows系统

1.下载软件

中文官网:https://typoraio.cn/

typora-setup-x64.exe

2.下载补丁

百度网盘:https://pan.baidu.com/s/1i2x8sYYXsG0tMf11pgbj-w?pwd=yhnb

下载完成后解压,关闭Typora软件,将winmm.dll放置于Typora安装目录下即可。

Typora破解.zip

参考网站

https://blog.csdn.net/weixin_44406127/article/details/134778407

Ubuntu系统

1.下载资源

下载最新版本Typora 1.8.10

# wget https://download2.typoraio.cn/linux/typora_1.8.10_amd64.deb

下载Yporaject

# git clone https://github.com/hazukieq/Yporaject.git

2.使用流程

配置rust编译环境

1.使用官方脚本安装
# curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
​
2.检查cargo是否安装
# cargo --version
cargo 1.65.0

编译Yporaject

# cd Yporaject
​
1.编译
# cargo build
​
2.查看在target中是否生成:node_inject
# ls target/debug
​
3.执行以下命令
# cargo run

拷贝target/debug的bin文件到/usr/share/typora目录

# sudo cp target/debug/node_inject /usr/share/typora
# cd /usr/share/typora
# sudo chmod +x node_inject
# sudo ./node_inject

获取激活码

# cd Yporaject/license-gen
​
1.编译生成激活码的代码
# cargo build
​
2.生成激活码
# cargo run
output:
    Finished dev [unoptimized + debuginfo] target(s) in 0.00s
     Running `target/debug/license-gen`
License for you: xxxxxx-xxxxxx-xxxxxx-xxxxxx

复制 License for you: xxxxxx-xxxxxx-xxxxxx-xxxxxx 的激活码,在Typora的帮助中,激活即可!

注意:激活后,一定要重启Typora,否则不生效!!!

参考网站

https://blog.csdn.net/u010164190/article/details/137093603

0

评论区