Re: [Gambas-user] Feature suggestion: GAMBAS optional runtime auto-update

2014-08-25 Thread Julio Sanchez
Alexie: "Does anybody has written a Gambas project, which can auto-update itself from a website (e.g. download gz/tar or git/svn) and restart itself?" What I've done is a class that reads information from a web page on the internet. This website contains information about the program version and

Re: [Gambas-user] Feature suggestion: GAMBAS optional runtime auto-update

2014-08-24 Thread Alexie
To jump in the auto-update, but now from application side ... Does anybody has written a Gambas project, which can auto-update itself from a website (e.g. download gz/tar or git/svn) and restart itself? 2014-08-24 22:36 GMT+02:00 Willy Raets : > On zo, 2014-08-24 at 15:12 -0400, Kevin Fishburn

Re: [Gambas-user] Feature suggestion: GAMBAS optional runtime auto-update

2014-08-24 Thread Willy Raets
On zo, 2014-08-24 at 15:12 -0400, Kevin Fishburne wrote: > On 08/23/2014 09:22 AM, Willy Raets wrote: > > On vr, 2014-08-22 at 19:51 -0400, Kevin Fishburne wrote: > >> In the interest of accessibility to a stable version of the GAMBAS > >> runtime without requiring users to add a PPA or drop to the

Re: [Gambas-user] Feature suggestion: GAMBAS optional runtime auto-update

2014-08-24 Thread Kevin Fishburne
On 08/23/2014 09:22 AM, Willy Raets wrote: > On vr, 2014-08-22 at 19:51 -0400, Kevin Fishburne wrote: >> In the interest of accessibility to a stable version of the GAMBAS >> runtime without requiring users to add a PPA or drop to the command >> line, I think it may be useful to add an "auto-update

Re: [Gambas-user] Feature suggestion: GAMBAS optional runtime auto-update

2014-08-23 Thread Willy Raets
On vr, 2014-08-22 at 19:51 -0400, Kevin Fishburne wrote: > In the interest of accessibility to a stable version of the GAMBAS > runtime without requiring users to add a PPA or drop to the command > line, I think it may be useful to add an "auto-update" feature or > equivalent. > > Currently use

[Gambas-user] Feature suggestion: GAMBAS optional runtime auto-update

2014-08-22 Thread Kevin Fishburne
In the interest of accessibility to a stable version of the GAMBAS runtime without requiring users to add a PPA or drop to the command line, I think it may be useful to add an "auto-update" feature or equivalent. Currently users have three ways to install GAMBAS: (1) Install from their distro'

Re: [Gambas-user] feature suggestion

2011-01-09 Thread Benoît Minisini
> Of course you are right! > > The Joueur() instances of my class are quite big, but > nowadays the RAM is gigantic! > this is surely a reminiscence of my "economy of RAM" syndrom > coming from the Amiga's days (512KK) > so, Forget it! > > regards > Dominique Simonart > You are exactly usin

Re: [Gambas-user] feature suggestion

2011-01-09 Thread Simonart Dominique
Of course you are right! The Joueur() instances of my class are quite big, but nowadays the RAM is gigantic! this is surely a reminiscence of my "economy of RAM" syndrom coming from the Amiga's days (512KK) so, Forget it! regards Dominique Simonart Le 09/01/2011 23:06, Benoît Minisini a écr

Re: [Gambas-user] feature suggestion

2011-01-09 Thread Benoît Minisini
> Hi, > > Often I've to write things like that: > > With Joueur(0) > If Joueur(2).Nombre(Joueur(2).C1) < .Nombre(.C1) Then ... > ... > End With > > As I already have a With Joueur(0) activated I cannot define > another one for Joueur(2). > > It would be nice to have the possibility to d

[Gambas-user] feature suggestion

2011-01-09 Thread Simonart Dominique
Hi, Often I've to write things like that: With Joueur(0) If Joueur(2).Nombre(Joueur(2).C1) < .Nombre(.C1) Then ... ... End With As I already have a With Joueur(0) activated I cannot define another one for Joueur(2). It would be nice to have the possibility to define temporary Alias na