3

I am using Squirrel for updates in my app(Electron).

And I'm looking for nice way to display release notes. Something like this: enter image description here

Where can I found information about this? How can I make my message window looks like this?

Axel186
  • 541
  • 5
  • 17

1 Answers1

2

I think the only ways to do that is :

  • Create an HTML popup with that interface, clickable buttons... but you'll have to define all styles by yourself ;
  • Else you'll have to make a C++ addon like a lot of projects, this addon will create the custom window when you ask, but that's complicated to do.

I know you can make custom dialog windows but less complex than this one with the dialog.showMessageBox() API (See more here)

ClementNerma
  • 1,079
  • 1
  • 11
  • 16
  • Ok, I'm using simple dialog.showMessageBox... Will think about some HTML "popup" with designed release notes. Thank you! – Axel186 Jul 05 '16 at 07:27