Automatic Notification About Updates

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
oldefoxx
Enthusiast
Enthusiast
Posts: 532
Joined: Fri Jul 25, 2003 11:24 pm

Automatic Notification About Updates

Post 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.
has-been wanna-be (You may not agree with what I say, but it will make you think).
Shannara
Addict
Addict
Posts: 1808
Joined: Thu Oct 30, 2003 11:19 pm
Location: Emerald Cove, Unformed

Post 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 :)
DarkDragon
Addict
Addict
Posts: 2344
Joined: Mon Jun 02, 2003 9:16 am
Location: Germany
Contact:

Post by DarkDragon »

But then the SmartUpdater has always to run in the background. :roll: I would do that very optional.
bye,
Daniel
PB
PureBasic Expert
PureBasic Expert
Posts: 7581
Joined: Fri Apr 25, 2003 5:24 pm

Post 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.
I compile using 5.31 (x86) on Win 7 Ultimate (64-bit).
"PureBasic won't be object oriented, period" - Fred.
Num3
PureBasic Expert
PureBasic Expert
Posts: 2812
Joined: Fri Apr 25, 2003 4:51 pm
Location: Portugal, Lisbon
Contact:

Post 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!
oldefoxx
Enthusiast
Enthusiast
Posts: 532
Joined: Fri Jul 25, 2003 11:24 pm

Post 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.
has-been wanna-be (You may not agree with what I say, but it will make you think).
User avatar
blueznl
PureBasic Expert
PureBasic Expert
Posts: 6166
Joined: Sat May 17, 2003 11:31 am
Contact:

Post 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...
( 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... )
PB
PureBasic Expert
PureBasic Expert
Posts: 7581
Joined: Fri Apr 25, 2003 5:24 pm

Post 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
I compile using 5.31 (x86) on Win 7 Ultimate (64-bit).
"PureBasic won't be object oriented, period" - Fred.
User avatar
blueznl
PureBasic Expert
PureBasic Expert
Posts: 6166
Joined: Sat May 17, 2003 11:31 am
Contact:

Post by blueznl »

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... )
Dare2
Moderator
Moderator
Posts: 3321
Joined: Sat Dec 27, 2003 3:55 am
Location: Great Southern Land

Post 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. :)
@}--`--,-- A rose by any other name ..
User avatar
blueznl
PureBasic Expert
PureBasic Expert
Posts: 6166
Joined: Sat May 17, 2003 11:31 am
Contact:

Post by blueznl »

ah, yes, the one hypothetical option next to the selectable hypothetical verification interval frequency combobox...

: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... )
Post Reply