美文网首页
startuml 3.1 破解

startuml 3.1 破解

作者: SlowGO | 来源:发表于2019-10-18 11:30 被阅读0次

官网下载安装 startuml

安装asar

npm install asar -g

破解

cd /Applications/StarUML.app/Contents/Resources/

# 解压
asar extract app.asar app

# 修改文件内容
vim app/src/engine/license-manager.js

# 内容如下
checkLicenseValidity () {
  this.validate().then(() => {
    setStatus(this, true)
  }, () => {
    // 修改 false 为 true
    setStatus(this, true)
    // 注释下面这行
    // UnregisteredDialog.showDialog()
  })
}

# 修改完成后保存,然后打包
asar pack app app.asar

破解完成。

相关文章

网友评论

      本文标题:startuml 3.1 破解

      本文链接:https://www.haomeiwen.com/subject/tmrimctx.html