]> Dogcows Code - chaz/thecheat/blob - ChazUpdate.h
The Cheat 1.2.1
[chaz/thecheat] / ChazUpdate.h
1
2 // **********************************************************************
3 // The Cheat - A universal game cheater for Mac OS X
4 // (C) 2003-2005 Chaz McGarvey (BrokenZipper)
5 //
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 1, or (at your option)
9 // any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 //
20
21
22 #import <Cocoa/Cocoa.h>
23 #import "ChazLog.h"
24
25
26 // This is my update system. It is extremely simple to use. Just pass the URL
27 // where the version information can be obtained. The version information will
28 // be loaded in the background and a dialog will show up presenting the user
29 // with the results of the check. If userRequested is NO, then the system will
30 // not do anything if an error occured or if there is no available update.
31 // Depending on the tags given in the version file, the presented dialog can
32 // have buttons which link to a "more info" page or a direct download, using the
33 // default web browser of the system.
34
35
36 // url can either be an NSURL or an NSString containing a valid URL.
37 void ChazCheckForUpdate( id url, BOOL userRequested ); // uses default app name.
38 void ChazCheckForUpdateWithName( id url, NSString *appName, BOOL userRequested );
39
40 // these return empty strings if they can't be determined.
41 NSString *ChazAppName(); // returns the name ChazCheckForUpdate() uses.
42 NSString *ChazAppVersion(); // returns the current version of the app.
43 NSDate *ChazAppBuildDate(); // returns the build date used to check for updates.
44
45
This page took 0.035968 seconds and 4 git commands to generate.