diff options
author | jbrjake <[email protected]> | 2007-04-20 16:34:08 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2007-04-20 16:34:08 +0000 |
commit | 2cbb36a1ae00f97c9359f68cb7b9fce9d4e6c035 (patch) | |
tree | 6b3fb48575dc3c5be92f96b9eaaa54edd6f753f7 | |
parent | 2abd5e239299ac310b9f39813204fa9b4c8a0bcd (diff) |
Getting the Jamrules and Makefile.config ready for the return of the update checker.
- Ends HB_BUILD with an odd number, denoting an unstable (beta) build
- Updates HB_VERSION in Jamrules to 0.8.5b1
The LATEST file still needs to be iterated on the webserver, after which update checking can be switched on.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@536 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | Jamrules | 4 | ||||
-rw-r--r-- | Makefile.config | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -11,8 +11,8 @@ if ! $(DEFINES) Exit "Please run ./configure first." ; } -HB_VERSION = 0.8.0b1 ; -HB_BUILD = 20070211 ; +HB_VERSION = 0.8.5b1 ; +HB_BUILD = 2007042001 ; DEFINES += HB_VERSION=\\\"$(HB_VERSION)\\\" HB_BUILD=$(HB_BUILD) ; LANGUAGES = fr de it pl ru nl es pt ja ; RM = rm -rf ; diff --git a/Makefile.config b/Makefile.config index e247d6491..4a82d7a8f 100644 --- a/Makefile.config +++ b/Makefile.config @@ -1,9 +1,9 @@ SNAP = $(shell echo $$SNAPSHOT) ifeq ($(SNAP), 1) -HB_BUILD = $(shell date "+%Y%m%d")00 +HB_BUILD = $(shell date "+%Y%m%d")01 HB_VERSION = 0.8.5s$(shell date "+%d") else -HB_BUILD = $(shell date "+%Y%m%d")00 +HB_BUILD = $(shell date "+%Y%m%d")01 HB_VERSION = "0.8.5b1" endif HB_DEFPPC = $(shell uname -a | grep ppc > /dev/null ; echo RES$$?) |