Changeset 161

Show
Ignore:
Timestamp:
06/01/08 09:56:39 (2 years ago)
Author:
weppos
Message:

* changed URL for update check function (closes #29)

Location:
branches/release-2.1
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/release-2.1/CHANGELOG.txt

    r135 r161  
    11= Changelog = 
    2  
    3 == Trunk == 
    4  
    5   * ADDED: New folder structure: 
    6     * asg-config: configuration files 
    7     * asg-content: user content such as custom plugins or files 
    8     * asg-included: various included files, assets and libraries  
    9     * asg-lib: contains all pure ASP libraries used by the application 
    10     * asg-static: contains static assets such as JavaScript or CSS files 
    11   * CHANGED: Default charset to UTF-8 (Closes #24). 
    12   * CHANGED: License from custom to Open Source MIT LICENSE (Closes #34). 
    13   * CHANGED: Renamed stats_js.asp and count.asp to asg-track.js.asp and asg-track.asp (Closes #40). 
    14   * CHANGED: Massive code refactoring and improvements. 
    15   * REMOVED: Support for custom skins. The layout is going to be changed and, for now, it's better to drop it the buggy version (Closes #38). 
    16  
    17 == 2.1.x == 
    18  
    19   * ADDED: Confirmation message on delete data button in settings_reset.asp (Closes #12). 
    20   * CHANGED: The path to count.asp file now includes the full path to the file to prevent the script to not work when you are tracking an external website (Closes 22). 
    21   * CHANGED: The main file is now called default.asp instead of statistiche.asp to prevent users to be disoriented by an untranslated error message when trying to access /myasg root folder (Closes #32). 
    22   * CHANGED: Flag icon package replaced by the wonderful flag set provided by Fam Fam Fam at http://www.famfamfam.com/lab/icons/flags/ 
    23   * CHANGED: Various source code improvements and refactoring. 
    24   * FIXED: Undefined intAsgProtezione variable in settings_skin.asp (Closes #45). 
    25   * FIXED: Missing flag icons are displayed as broken images (Closes #6). 
    26   * FIXED: Broken skin file (Closes #17).  
    27   * REMOVED: default.asp filed from all directories (Closes #23). 
    28   * REMOVED: icon debug system that notified to ASG all unknown icons (closes #28). 
    292 
    303== Release 2.1.4 == 
    314 
    32 Released on 2007-08-14. Tagged at r54. 
     5Released on 2007-08-14. 
    336 
    347  * CHANGED: Updated ip-to-country database to July 30, 2007 
     
    3710  * CHANGED: simplified documentation 
    3811  * CHANGED: moved setup.asp and update.asp files outside main program folder to be sure the user doesn't forget to remove them 
     12  * CHANGED: URL for update check function (closes #29). 
    3913  * FIXED: OS Vista displayed as Microsoft Windows NT 4 (#4) 
    4014  * FIXED: Database pruning tool returns a Microsoft VBScript compilation error (#1) 
  • branches/release-2.1/myasg/asg-lib/update.asp

    r123 r161  
    5555  strHost = Request.ServerVariables("HTTP_HOST") 
    5656  strVersion = strCurrentVersion 
    57   strUrl = "http://www.weppos.com/asg/checkversion/check_update.asp?" &_ 
     57  strUrl = "http://www.asp-stats.com/api/v1/version_check?" &_ 
    5858           "host=" & Server.URLEncode(strHost) & "&" &_ 
    5959           "version=" & Server.URLEncode(strVersion)