Automatic Notification About Updates
Automatic Notification About Updates
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.
has-been wanna-be (You may not agree with what I say, but it will make you think).
-
- Addict
- Posts: 2344
- Joined: Mon Jun 02, 2003 9:16 am
- Location: Germany
- Contact:
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.
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.
has-been wanna-be (You may not agree with what I say, but it will make you think).
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...
( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
( The path to enlightenment and the PureBasic Survival Guide right here... )
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:
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$).

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
I compile using 5.31 (x86) on Win 7 Ultimate (64-bit).
"PureBasic won't be object oriented, period" - Fred.
"PureBasic won't be object oriented, period" - Fred.
what if i don't WANT a daily reminder? 

( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
( The path to enlightenment and the PureBasic Survival Guide right here... )
ah, yes, the one hypothetical option next to the selectable hypothetical verification interval frequency combobox...
:roll:
:roll:
( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
( The path to enlightenment and the PureBasic Survival Guide right here... )