From 0575723b97211e10b5da00ace8934db00f58aa0e Mon Sep 17 00:00:00 2001 From: Romain Goffe Date: Wed, 18 Jan 2012 20:23:42 +0100 Subject: [PATCH 1/4] windows: correct cleanall script --- windows/cleanall.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/cleanall.bat b/windows/cleanall.bat index 1fa4dec7..ee0255b1 100644 --- a/windows/cleanall.bat +++ b/windows/cleanall.bat @@ -1,3 +1,3 @@ Rem manually performs "make cleanall" -clean.bat +windows\\clean.bat del *.pdf From 227dff292321f4097e8587379e469a7ff298b4a7 Mon Sep 17 00:00:00 2001 From: Romain Goffe Date: Wed, 18 Jan 2012 20:24:26 +0100 Subject: [PATCH 2/4] windows: explicitly call python interpreter to avoid windows pop-ups --- windows/make.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/windows/make.bat b/windows/make.bat index 5726874c..1f4325a7 100644 --- a/windows/make.bat +++ b/windows/make.bat @@ -1,12 +1,12 @@ Rem build tex file from songbook file -songbook.py --songbook=books\%1.sb --output=%1.tex +python songbook.py --songbook=books\%1.sb --output=%1.tex Rem 1st pdf compilation pdflatex %1.tex Rem build indexes -songbook-makeindex.py %1_title.sxd > %1_title.sbx -songbook-makeindex.py %1_auth.sxd > %1_auth.sbx +python songbook-makeindex.py %1_title.sxd > %1_title.sbx +python songbook-makeindex.py %1_auth.sxd > %1_auth.sbx Rem 2nd compilation to include indexes pdflatex %1.tex From 2ef3e9c79e3fc5a6c7afb7e00aa7e50f13971ccd Mon Sep 17 00:00:00 2001 From: Romain Goffe Date: Wed, 18 Jan 2012 20:41:44 +0100 Subject: [PATCH 3/4] corrections --- songs/Daniel_Guichard/Mon_vieux.sg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/songs/Daniel_Guichard/Mon_vieux.sg b/songs/Daniel_Guichard/Mon_vieux.sg index ffabd465..3806339c 100644 --- a/songs/Daniel_Guichard/Mon_vieux.sg +++ b/songs/Daniel_Guichard/Mon_vieux.sg @@ -10,7 +10,7 @@ \gtab{F}{1:022100} \gtab{G}{320003} \gtab{C7}{X32310} - \gtab{F}{1:020100} + \gtab{F7}{1:020100} \gtab{Dm}{XX0231} \beginverse From 526e31b3d01e83c75fd1b8b13c84a0746228e6b0 Mon Sep 17 00:00:00 2001 From: Romain Goffe Date: Thu, 19 Jan 2012 00:12:45 +0100 Subject: [PATCH 4/4] Utils: add notification at the end of release script --- utils/release.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/release.sh b/utils/release.sh index 126ccecb..d81b44b8 100755 --- a/utils/release.sh +++ b/utils/release.sh @@ -79,4 +79,6 @@ then git tag "patacrep_$MAIN.$MAJOR.$MINOR" fi +notify-send "Patacrep!" "Release $MAIN.$MAJOR.$MINOR generated" --icon=songbook-client + export GREP_OPTIONS="$GREP"