Evie Addon Details

Watch - Add Favorite

AutoUpdate - Version 1.1

posted on 2007-12-30 12:58:32
by JoeyT2006
5
w00ts
w00t!
Requires: Tags: automatic autoupdate css import python update

Description

AutoUpdate v1.1
Created by JoeyT2007

Requirements:
Description:
    Easy to use update checker for your scripts! All you need to do is provide the script name, and the AutoUpdate does the rest.
    It will check the scripts version against the ESAM version, if it differs it will download the script from ESAM and replace the current version. Make sure you disable this while developing it more.

Examples:
    Example 1 - Providing name only:
    import es
    import AutoUpdate

    info = es.AddonInfo()
    info.name = "Example"
    info.version = "1.0"
    info.basename = "example"

    def load():
    AutoUpdate.CheckUpdates(info).start();
    Providing no url will make AutoUpdate get the new version from ESAM.

    Example 2 - Providing an url:
    import es
    import AutoUpdate

    info = es.AddonInfo()
    info.name = "Example"
    info.version = "1.0"
    info.basename = "example"
    info.updateurl = "http://example.com/example.py"

    def load():
    AutoUpdate.CheckUpdates(info).start();
    Providing an url will make AutoUpdate get the new version from the url provided!

Installation:
    1. Extract the addons folder to your cstrike folder

Download:

Version Notes For 1.1 (Announce this update)

Updated on: 2007-12-30 15:35:52 EST
Version Notes:
    Version 1.1
  • Removed file scanning.
  • Made file 60% smaller.
  • Easier for users.
  • Version 1.0
    [*]Released to public.

( Previous Versions )