electroly / sqlnotebook

Casual data exploration in SQL
https://sqlnotebook.com
MIT License
590 stars 35 forks source link

Installer gives no notification #15

Closed 26labs closed 6 years ago

26labs commented 7 years ago

Downloaded the msi installer. When it runs there is no visual feedback. Suggest to add a "Install Done" message box.

electroly commented 7 years ago

I don't think I have control over this unless I switch to an .EXE installer. I'll look into it. Do you know of any other applications distributed in an .MSI that offer a notification upon installation completion?

I have considered bundling SQL Notebook as an .appx so that it can go onto the Windows Store, but it's possible it may not satisfy the requirements for Store applications.

26labs commented 7 years ago

I cannot think of any right now. Perhaps a simple system notification would be ok(to keep current approach), or the EXE can complete wth a messagebox Saying its finished?

Regards, Matt Taylor

From: Brian Luft notifications@github.com Reply: electroly/sqlnotebook reply@reply.github.com Date: 14 May 2017 at 5:17:49 AM To: electroly/sqlnotebook sqlnotebook@noreply.github.com Cc: Matt Taylor mt.26labs@yahoo.com, Author author@noreply.github.com Subject:  Re: [electroly/sqlnotebook] installer gives no notification (#15)

I don't think I have control over this unless I switch to an .EXE installer. I'll look into it. Do you know of any other applications distributed in an .MSI that offer a notification upon installation completion?

I have considered bundling SQL Notebook as an .appx so that it can go onto the Windows Store, but it's possible it may not satisfy the requirements for Store applications.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.

Jamleck commented 7 years ago

I had the same issue. Since you are using Wix to create the SQLNotebook.msi installer you should consider using the one of the Wizards that comes with Wix e.g. <UIRef Id="WixUI_Minimal" />.

electroly commented 7 years ago

Hi Jamleck, thanks for the tip. Looks pretty straightforward. I will look into doing that.