| View previous topic :: View next topic |
| Author |
Message |
Rubberduck
Joined: 24 Apr 2005 Posts: 97
|
Posted: Fri May 20, 2005 9:30 am Post subject: small changes to AHK-Page and Forum |
|
|
I think most users that already know AHK are directly
going to the forum if they want infos, but also if they
go directly to the AHK-Page (www.autohotkey.com) they
cannot directly see what is the latest version.
Is it possible to add a little line like
"latest AHK-version is x.xx.xx.xx" on the AHK-Main-Page
and maybe also at to of the Forum-Index-Page
It's not much work but make things more comfortable. _________________ Wer keine Antworten hat muss nicht dumm sein,
dumm ist nur der welcher keine Fragen hat. |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10716
|
Posted: Fri May 20, 2005 11:54 am Post subject: |
|
|
It's a good suggestion. I'm not sure about the forum, since it might be more difficult to add it discreetly there, but certainly on the main page.
Thanks.
Last edited by Chris on Sat May 21, 2005 3:56 pm; edited 2 times in total |
|
| Back to top |
|
 |
jonny
Joined: 13 Nov 2004 Posts: 2951 Location: Minnesota
|
Posted: Fri May 20, 2005 8:00 pm Post subject: |
|
|
Perhaps a sticky in the Announcements section? Also, a tiny RSS page would serve the purpose for anyone with an RSS reader or an RSS-bookmark compatible browser (such as most Gecko ones, i.e. Firefox). I know it'd be cool for me to have a little version indicator in my browser.
On the flip side, I know all these little things add up for you when you update. Perhaps you could make a script to do it all at once.  |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10716
|
Posted: Sat May 21, 2005 12:26 am Post subject: |
|
|
I do have script that automates most of the build process. And one of these days, I'll try to add some RSS capability (it's a new area for me).
Thanks for the ideas. |
|
| Back to top |
|
 |
Rubberduck
Joined: 24 Apr 2005 Posts: 97
|
Posted: Sat May 21, 2005 7:02 pm Post subject: |
|
|
Thanks for making the changes to the AHK-Page.  _________________ Wer keine Antworten hat muss nicht dumm sein,
dumm ist nur der welcher keine Fragen hat. |
|
| Back to top |
|
 |
Venia Legendi
Joined: 27 May 2005 Posts: 35
|
Posted: Tue Dec 13, 2005 11:58 am Post subject: |
|
|
| Chris wrote: | | I'll try to add some RSS capability. |
Hello, did you get the RSS running?
Guido |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10716
|
Posted: Tue Dec 13, 2005 1:00 pm Post subject: |
|
|
| No, not yet. I'm sure there's a mod for it somewhere, but mods usually increase time spent on forum maintainence. Even so, I'll keep an eye out for one. |
|
| Back to top |
|
 |
Venia Legendi
Joined: 27 May 2005 Posts: 35
|
Posted: Tue Dec 13, 2005 3:37 pm Post subject: |
|
|
Could switching on subscription only for annoucement a solution? OK, that's your server load...
Or - maybe - just writing out textfile like www.autohotkey.com/currentversion.txt just containing the version string? Than everybody who likes can implement a version checker in his famous script...
Guido |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10716
|
Posted: Wed Dec 14, 2005 7:54 pm Post subject: |
|
|
| I'm a little cloudy on what you're proposing. |
|
| Back to top |
|
 |
Guest
|
Posted: Wed Dec 14, 2005 9:16 pm Post subject: |
|
|
Uh, sorry - If a text-file under a given URL exist (e.g. www.autohotkey.com/currentversion.txt) and it contains just one line with A_AhkVersion everbody who want's can
| Code: |
URLDownloadToFile, http://www.autohotkey.com/currentversion.txt, temp.txt
filereadline, currentversion, temp.txt, 1
filedelete, temp.txt
ifgreater, currentversion, %A_AhkVersion%, msgbox, Newer EXE!
|
Like RSS without XML
Guido |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10716
|
|
| Back to top |
|
 |
|