破解StarUML3.01最新版 for Linux(Ubuntu16LTS)

转载自yoyofreeman

1. 下载StarUML3.01

得到“StarUML-3.0.1-x86_64.AppImage”文件,解压缩:

chmod +x StarUML-3.0.1-x86_64.AppImage
./StarUML-3.0.1-x86_64.AppImage --appimage-extract

得到“squashfs-root”文件夹

cd ./squashfs-root/app/resources
~/squashfs-root/app/resources# ll
drwx------ 2 root root     4096 6月  28 15:10 ./
drwx------ 4 root root     4096 6月  28 15:10 ../
-rw-r--r-- 1 root root 81314297 6月  28 15:10 app.asar
-rw-r--r-- 1 root root       51 6月  28 15:10 app-update.yml
-rw-r--r-- 1 root root   237708 6月  28 15:10 electron.asar


2. 准备解压缩“app.asar”

2.1. 安装npm

sudo apt install npm
2.2. 升级最新版本npm
sudo npm install npm@latest -g

2.3. 安装asar

sudo npm install -g asar

这一步有可能会报错:“/usr/bin/env: node: 没有那个文件或目录”,这么办:

sudo ln -s /usr/bin/nodejs /usr/bin/node

2.4. 进入“~/squashfs-root/app/resources/”,解压app.asar
asar extract app.asar app
3. 进入“app”目录修改源代码


编辑“./src/engine/license-manager.js”

3.1. 找到checkLicenseValidity ()


       
       
       
       
  1. checkLicenseValidity () {
  2. this.validate().then( () => {
  3. setStatus( this, true)
  4. }, () => {
  5. // 原来的代码:
  6. // setStatus(this, false)
  7. // UnregisteredDialog.showDialog()
  8. //修改后的代码
  9. setStatus( this, true)
  10. })
  11. }

3.2. 回到“~/squashfs-root/app/resources”

重新打包替换原来的app.asar
asar pack app app.asar


4. 运行“~/squashfs-root/app/staruml”

破解StarUML3.01最新版 for Linux(Ubuntu16LTS)_第1张图片


5. 参考资料

https://blog.csdn.net/sam_shan/article/details/80585240

https://www.2cto.com/kf/201710/690778.html

https://discourse.appimage.org/t/how-to-extract-an-appimage-file/189

你可能感兴趣的:(Linux)