~ubuntu-branches/debian/squeeze/openttd/squeeze

« back to all changes in this revision

Viewing changes to src/rev.cpp.in

  • Committer: Bazaar Package Importer
  • Author(s): Matthijs Kooijman, Matthijs Kooijman
  • Date: 2009-10-01 22:52:59 UTC
  • mfrom: (1.1.8 upstream) (2.1.6 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091001225259-5kpkp4sthbszpyif
[ Matthijs Kooijman ]
* New upstream release
* Use printf instead of echo -en in openttd-wrapper to make it POSIX
  compatible (Closes: #547758).
* Remove three patches that are now included in upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: rev.cpp.in 16540 2009-06-08 22:58:36Z rubidium $ */
 
1
/* $Id: rev.cpp.in 17678 2009-10-01 11:00:14Z rubidium $ */
2
2
 
3
3
/** @file rev.cpp Autogenerated file with the revision and such of OpenTTD. */
4
4
 
20
20
 * norev000 is for non-releases that are made on systems without
21
21
 * subversion or sources that are not a checkout of subversion.
22
22
 */
23
 
const char _openttd_revision[] = "0.7.1";
 
23
const char _openttd_revision[] = "0.7.3";
24
24
 
25
25
/**
26
26
 * Let us know if current build was modified. This detection
45
45
 * final release will always have a lower version number than the released
46
46
 * version, thus making comparisions on specific revisions easy.
47
47
 */
48
 
const uint32 _openttd_newgrf_version = 0 << 28 | 7 << 24 | 1 << 20 | 1 << 19 | (16540 & ((1 << 19) - 1));
 
48
const uint32 _openttd_newgrf_version = 0 << 28 | 7 << 24 | 3 << 20 | 1 << 19 | (17678 & ((1 << 19) - 1));
49
49
 
50
50
#ifdef __MORPHOS__
51
51
/**
52
52
 * Variable used by MorphOS to show the version.
53
53
 */
54
 
extern const char morphos_versions_tag[] = "$VER: OpenTTD 0.7.1 (!!DATE!!) OpenTTD Team [MorphOS, PowerPC]";
 
54
extern const char morphos_versions_tag[] = "$VER: OpenTTD 0.7.3 (!!DATE!!) OpenTTD Team [MorphOS, PowerPC]";
55
55
#endif