Skip to content

Instantly share code, notes, and snippets.

@arxipovdev
Forked from jjvillavicencio/starUml3.md
Last active September 6, 2018 06:39
Show Gist options
  • Select an option

  • Save arxipovdev/29c4d74141dbb13fe6d26c1252786193 to your computer and use it in GitHub Desktop.

Select an option

Save arxipovdev/29c4d74141dbb13fe6d26c1252786193 to your computer and use it in GitHub Desktop.
StarUml 3.

В папке

C:\Program Files\StarUML\resources

Установить asar

npm install -g asar

Распаковываем StarUML

asar extract app.asar app

Редактируем проверку на лицензию

app\src\engine\license-manager.js

Изменяем на строке 125

  checkLicenseValidity () {
    this.validate().then(() => {
      setStatus(this, true)
    }, () => {
    //===> Cambiar false por true
      setStatus(this, true)
      //===> Comentar Dialog
      // UnregisteredDialog.showDialog()
    })
  }

Упаковываем StarUML

  asar pack app app.asar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment