summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2007-04-20 16:34:08 +0000
committerjbrjake <[email protected]>2007-04-20 16:34:08 +0000
commit2cbb36a1ae00f97c9359f68cb7b9fce9d4e6c035 (patch)
tree6b3fb48575dc3c5be92f96b9eaaa54edd6f753f7
parent2abd5e239299ac310b9f39813204fa9b4c8a0bcd (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--Jamrules4
-rw-r--r--Makefile.config4
2 files changed, 4 insertions, 4 deletions
diff --git a/Jamrules b/Jamrules
index ed8f34d4b..e96fe5c76 100644
--- a/Jamrules
+++ b/Jamrules
@@ -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$$?)