From 9db233301468481d0dd608c9d0ea0c41ea2fd497 Mon Sep 17 00:00:00 2001 From: Mateor Date: Sat, 10 Aug 2013 23:29:49 -0500 Subject: [PATCH] Whoops. We forgot to version up. Versioning is pretty important for us in particular. Since the users get our changes immediately, we need to be on the ball so we know exactly what changes they have when they submit logs. If we just pushed a fix, we need to know if the broken log they submit has the latest commits or not. I added a logline that lists the latest commit but the version number is easier to keep track of. The PATCHES_VERSION needs to be incremented every time you make a change in either the patches_tools or patches directory. That is what determines if batch.sh runs on the users machines. If they update to get evervolv support but we haven;t incremented the PATCHES_VERSION number, then the user will report that it isn;t working, cause it won't be. You can usually just do these steps at the same time as adding the patches. For now, try to only increment the 100th place, the second significant digit. I will increment the first digit and the changelog when necessary. Thanks! --- auto_patcher | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auto_patcher b/auto_patcher index e2d283c..6517899 100755 --- a/auto_patcher +++ b/auto_patcher @@ -153,9 +153,9 @@ # [ -s FILE ] # [[ -n STRING ]] or [[ -z STRING ]] -VERSION="v3.0.17" +VERSION="v3.0.18" # PATCHES_VERSION needs to be incremented every time ANY changes occur to patches. -PATCHES_VERSION="20130810" +PATCHES_VERSION="20130811" CURRENT_ANDROID="4.3.0" # pass variables to children -- 2.11.4.GIT