Well, can’t wait for the much awaited CyanogenMod 7 nightlies? Courtesy to guys at XDA, here is an Android App & an AutoIT script for windows which checks whether the nightly has been posted at CM7 site under the device name cooper or not.
So choose any of the method below so that you’re first to know about the nightly.
- Download the Android app.
- Download Compiled Executable
- Copy the code below & compile it using AutoIT.
Note: The script & the executable is only for windows users (or through Wine on Linux)
$refreshTime = 300000 ;interval to check for cooper nightly in ms while 1 InetGet("http://download.cyanogenmod.com/?type=nightly", @ScriptDir & "\cmnightlypage") $file = FileOpen(@ScriptDir & "\cmnightlypage", 0) $html = FileRead(@ScriptDir & "\cmnightlypage") FileClose($file) If StringInStr($html, "device=cooper&type=nightly") > 0 Then FileDelete( @ScriptDir & "\cmnightlypage") MsgBox(64, "Nightly available.", "Cooper has been added to nightlies!") Exit Else FileDelete( @ScriptDir & "\cmnightlypage") EndIf Sleep($refreshTime) WEnd
[via Xda-developers]