diff --git a/_post-commit.sh b/_post-commit.sh new file mode 100644 index 00000000..21dfc311 --- /dev/null +++ b/_post-commit.sh @@ -0,0 +1,13 @@ +#!/bin/sh +# +# Creates a tag according to the number of commits on this branch +# +# To have git run this script on commit, create a "post-commit" text file in +# .git/hooks/ with the following content: +# #!/bin/sh +# source ./_post-commit.sh + +type -P git &>/dev/null || { echo "git command not found. Aborting." >&2; exit 1; } + +TAGVER=`cat .tag` +git tag "#$TAGVER" diff --git a/_pre-commit.sh b/_pre-commit.sh index 75674465..ed437934 100644 --- a/_pre-commit.sh +++ b/_pre-commit.sh @@ -18,9 +18,11 @@ TAGVER=`echo $VER` # of a .amend file in the current directory will do if [ -f ./.amend ]; then TAGVER=`expr $TAGVER - 1` + git tag -d "#$TAGVER" rm ./.amend; fi echo "setting nano to $TAGVER" +echo $TAGVER > .tag cat > cmd.sed <<\_EOF s/^[ \t]*FILEVERSION[ \t]*\(.*\),\(.*\),\(.*\),.*/ FILEVERSION \1,\2,\3,@@TAGVER@@/ @@ -47,8 +49,3 @@ git add ./rufus.rc #mv _bm.sh~ _bm.sh rm cmd.sed - -# TODO?: use the following in post-commit to setup a tag every 10 commits -#if [ "${TAGVER:${#TAGVER}-1:1}" == '0' ]; then -# echo " commit #${TAGVER:${#TAGVER}-1:1}"; -#fi diff --git a/rufus.rc b/rufus.rc index 5db70cde..8e2236a4 100644 --- a/rufus.rc +++ b/rufus.rc @@ -63,7 +63,7 @@ BEGIN DEFPUSHBUTTON "OK",IDOK,231,175,50,14,WS_GROUP CONTROL "https://github.com/pbatard/rufus",IDC_ABOUT_RUFUS_URL, "SysLink",WS_TABSTOP,46,47,114,9 - LTEXT "Version 1.0.0 (Build 51)",IDC_STATIC,46,19,78,8 + LTEXT "Version 1.0.0 (Build 52)",IDC_STATIC,46,19,78,8 PUSHBUTTON "License...",IDC_ABOUT_LICENSE,46,175,50,14,WS_GROUP EDITTEXT IDC_ABOUT_COPYRIGHTS,46,107,235,63,ES_MULTILINE | ES_READONLY | WS_VSCROLL LTEXT "Report bugs or request enhancements at:",IDC_STATIC,46,66,187,8 @@ -162,8 +162,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,0,51 - PRODUCTVERSION 1,0,0,51 + FILEVERSION 1,0,0,52 + PRODUCTVERSION 1,0,0,52 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -180,13 +180,13 @@ BEGIN BEGIN VALUE "CompanyName", "akeo.ie" VALUE "FileDescription", "Rufus" - VALUE "FileVersion", "1.0.0.51" + VALUE "FileVersion", "1.0.0.52" VALUE "InternalName", "Rufus" VALUE "LegalCopyright", "© 2011 Pete Batard (GPL v3)" VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html" VALUE "OriginalFilename", "rufus.exe" VALUE "ProductName", "Rufus" - VALUE "ProductVersion", "1.0.0.51" + VALUE "ProductVersion", "1.0.0.52" END END BLOCK "VarFileInfo" @@ -212,7 +212,7 @@ IDI_ICON ICON "rufus.ico" STRINGTABLE BEGIN - IDS_VERSION "Rufus v1.0.0.51" + IDS_VERSION "Rufus v1.0.0.52" END #endif // English resources