From 989cb1d9fbc7faab456c317d03a9a3b8d68b00f7 Mon Sep 17 00:00:00 2001 From: konablend Date: Sat, 20 Jun 2009 01:47:14 +0000 Subject: BuildSystem: unofficial build version strings are now 'revNNNN' to differentiate from snapshots which use 'svnNNNN' git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2582 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- make/configure.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make/configure.py b/make/configure.py index b6705d726..1b140739b 100644 --- a/make/configure.py +++ b/make/configure.py @@ -673,11 +673,11 @@ class Project( Action ): self.build = time.strftime('%Y%m%d') + '01' self.title = '%s svn%d (%s)' % (self.name,repo.rev,self.build) else: - self.version = 'svn%d' % (repo.rev) + self.version = 'rev%d' % (repo.rev) url_ctype = '_unofficial' url_ntype = 'unofficial' self.build = time.strftime('%Y%m%d') + '99' - self.title = '%s svn%d (%s)' % (self.name,repo.rev,self.build) + self.title = '%s rev%d (%s)' % (self.name,repo.rev,self.build) self.url_appcast = 'http://handbrake.fr/appcast%s%s.xml' % (url_ctype,url_arch) self.url_appnote = 'http://handbrake.fr/appcast/%s.html' % (url_ntype) -- cgit v1.2.3