Page 1 of 1
Automatic Notification About Updates
Posted: Thu Apr 13, 2006 8:45 pm
by oldefoxx
It would be welcomed if we could ask for automatic notifications whenever a new release or upgrade is available, for either the current release or for any product in Beta testing.
Posted: Thu Apr 13, 2006 9:00 pm
by Shannara
This has got to be one of your most shortest posts

Anyhow ... I second this request! Kind of like Newsleecher where you have the option to be notified of Final or Beta releases, or both, or none. Sure, there are the forums, but not everybody browse the forums often like us

Posted: Fri Apr 14, 2006 6:05 am
by DarkDragon
But then the SmartUpdater has always to run in the background. :roll: I would do that very optional.
Posted: Fri Apr 14, 2006 7:04 am
by PB
> But then the SmartUpdater has always to run in the background. :roll:
No, it could just do an automatic check whenever PureBasic is run. Easy.
Posted: Fri Apr 14, 2006 10:29 am
by Num3
PB wrote:> But then the SmartUpdater has always to run in the background. :roll:
No, it could just do an automatic check whenever PureBasic is run. Easy.
Better not!
I always close the IDE when i finish something and reload another file!
Posted: Sat Apr 15, 2006 10:44 pm
by oldefoxx
Now sure I understand that last post. What would be wrong for the IDE to
display a notice that a newer update is available? And why not have an
automatic email notifier sent to registered owners of PB if records show that
they have not downloaded the latest update? These could be just notices,
not automatic updates.
Posted: Sun Apr 16, 2006 7:35 am
by blueznl
i second that, and there is no reason why the ide would have to check on every run, how about a check once every week and giving you only per update one reminder? that would not use too much bandwidth, and would not annoy too much...
Posted: Sun Apr 16, 2006 8:07 am
by PB
Checking on every run wouldn't use any bandwidth at all -- all it would have
to do is check a 4-byte text file on a PureBasic.com server (eg. "4.00") and
then report if Val(server$)>Val(local$).

Or, to use even less bandwidth,
just check once per day:
Code: Select all
; Pseudo code! ;)
If today<>lastcheck
lastcheck=today ; Save to PureBasic.prefs or somewhere.
; Read version from PureBasic.com here into server$.
If Val(server$)>Val(local$)
MessageRequester("A new version of PureBasic exists!")
EndIf
EndIf
Posted: Sun Apr 16, 2006 9:54 am
by blueznl
what if i don't WANT a daily reminder?

Posted: Sun Apr 16, 2006 9:59 am
by Dare2
blueznl wrote:what if i don't WANT a daily reminder?

Select the (hypothetical) "I'll do my own updates, thanks!" option in the (hypothetical) combobox option list for your choice of how to handle the (hypothetical) Automatic Updates.

Posted: Sun Apr 16, 2006 10:07 am
by blueznl
ah, yes, the one hypothetical option next to the selectable hypothetical verification interval frequency combobox...
:roll: