electron-userland / electron-wix-msi

:dvd: Create traditional MSI installers for your Electron app
MIT License
318 stars 91 forks source link

full customized ui #154

Open ezequielvictor opened 2 years ago

ezequielvictor commented 2 years ago

I think we should be able to use our entire customized UI too.

the code below prevents us from creating our own custom dialogs, because it accuses us of duplication as it extends the default dialogs from WixUI (errors, user exit, install dialogs, etc)

if (this.ui && !this.extensions.find((e) => e === 'WixUIExtension')) { this.extensions.push('WixUIExtension'); } inside function createFire() on creator.js

maybe we could make this optional, what do you think?