topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday April 19, 2024, 9:18 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: IDEA: Flock browser latest trunk build auto downloader/updater  (Read 3966 times)

Killeroid

  • Participant
  • Joined in 2007
  • *
  • default avatar
  • Posts: 8
    • View Profile
    • Donate to Member
Hi, I am just looking for someone to make an extension or an external app that would download the current flock browser developmental/trunk windows build and then run the installer every two hours(or any amount of time the user specifies). The latest flock windows build can be found here or there.

You can contact me if anymore info is needed:  killeroid [at] killeroid dot com

jgpaiva

  • Global Moderator
  • Joined in 2006
  • *****
  • Posts: 4,727
    • View Profile
    • Donate to Member
Re: IDEA: Flock browser latest trunk build auto downloader/updater
« Reply #1 on: February 21, 2007, 04:04 AM »
From what i can see, the name of the file changes everytime it is updated, right?

Killeroid

  • Participant
  • Joined in 2007
  • *
  • default avatar
  • Posts: 8
    • View Profile
    • Donate to Member
Re: IDEA: Flock browser latest trunk build auto downloader/updater
« Reply #2 on: February 21, 2007, 07:23 AM »
From what i can see, the name of the file changes everytime it is updated, right?

no, it doesnt. I noticed that the latest file can also be found here in the folder with the highest name(the folders are named like this    "linux epoch time. svn revision number" ) So the latest build will be in the folder with the biggest name. Hope thats understandable and of any help. Thanks

jgpaiva

  • Global Moderator
  • Joined in 2006
  • *****
  • Posts: 4,727
    • View Profile
    • Donate to Member
Re: IDEA: Flock browser latest trunk build auto downloader/updater
« Reply #3 on: February 21, 2007, 09:16 AM »
Well... The following Autohotkey code will do it, then.
Just download autohotkey, install it and run the script:

;by jgpaiva
;February 2007
;Function: download and run a file in a user-defined interval

;options

;time in milliseconds
Time := 2 * 60 * 60 * 1000

;url for the executable
File = http://tinderbox.flock.com/builds/trunk/windows/latest/Flock_Setup_0_7_99_.exe
;end of options

Settimer,Download,%time%
return

Download:
  UrlDownloadToFile,%file%,FileToRun.exe
  Run,FileToRun.exe
  return