From 88418158d98ff725b808f89625af316fa2b7baa9 Mon Sep 17 00:00:00 2001 From: Oliverpool Date: Mon, 7 Mar 2016 20:11:39 +0100 Subject: [PATCH 1/7] Release of version 5.0.0 --- NEWS.md | 20 ++++++++++++++++++++ patacrep/__init__.py | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 63c7d6c9..eb0e37df 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,23 @@ +# patacrep 5.0.0 + +* Songbook file + * Default extension is now `.yaml` + * Book options are now specified using the yaml markup + * `cd` behavior changed [#207](https://github.com/patacrep/patacrep/pull/207) + +* Song files + * Supported extensions [#174](http://github.com/patacrep/patacrep/pull/174) + * .csg: Chordpro + * .tsg: LaTeX song + * .sg: LaTeX song (unfavored) + * .tis: LaTeX intersong + * `start_echo` is now supported in chordpro songs [#205](https://github.com/patacrep/patacrep/pull/205) + +* Add a compilation option `--error` [#195](https://github.com/patacrep/patacrep/pull/195) + +* Template files also uses `yaml` markup + + # patacrep 4.0.0 * Project management diff --git a/patacrep/__init__.py b/patacrep/__init__.py index 0158a1f6..b509094d 100644 --- a/patacrep/__init__.py +++ b/patacrep/__init__.py @@ -11,7 +11,7 @@ if sys.version_info < (3, 3): sys.exit(1) # Patacrep version. -__TUPLE_VERSION__ = (4, 0, 0) +__TUPLE_VERSION__ = (5, 0, 0) __version__ = '.'.join([str(number) for number in __TUPLE_VERSION__]) # Directory containing shared data (default templates, custom LaTeX packages, From a215a2901182f0dedc35c658c4f740ee3ac83608 Mon Sep 17 00:00:00 2001 From: Oliverpool Date: Tue, 8 Mar 2016 06:58:42 +0100 Subject: [PATCH 2/7] Expand news.md for v5.0.0 --- NEWS.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/NEWS.md b/NEWS.md index eb0e37df..022b1d0b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -4,19 +4,29 @@ * Default extension is now `.yaml` * Book options are now specified using the yaml markup * `cd` behavior changed [#207](https://github.com/patacrep/patacrep/pull/207) + * `addsongdir` and `setcounter` created + * `sorted` renamed to `sort` * Song files + * New song format supported: Chordpro * Supported extensions [#174](http://github.com/patacrep/patacrep/pull/174) * .csg: Chordpro * .tsg: LaTeX song * .sg: LaTeX song (unfavored) * .tis: LaTeX intersong * `start_echo` is now supported in chordpro songs [#205](https://github.com/patacrep/patacrep/pull/205) + * LaTeX songs + * `cov` renamed to `cover` + * `vcov` is deprecated * Add a compilation option `--error` [#195](https://github.com/patacrep/patacrep/pull/195) * Template files also uses `yaml` markup +* Creation of a patatools utility + +* Many other improvements + # patacrep 4.0.0 From 312da1f2a304cb931355866dfe1e5b7be466e9da Mon Sep 17 00:00:00 2001 From: Oliverpool Date: Tue, 8 Mar 2016 07:04:24 +0100 Subject: [PATCH 3/7] .csg is recommended --- NEWS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 022b1d0b..8077cc44 100644 --- a/NEWS.md +++ b/NEWS.md @@ -10,7 +10,7 @@ * Song files * New song format supported: Chordpro * Supported extensions [#174](http://github.com/patacrep/patacrep/pull/174) - * .csg: Chordpro + * .csg: Chordpro (recommmended) * .tsg: LaTeX song * .sg: LaTeX song (unfavored) * .tis: LaTeX intersong From 5b9d6ccbd52cb864c1d30ec5b8132dc4558e708d Mon Sep 17 00:00:00 2001 From: Oliverpool Date: Wed, 9 Mar 2016 20:41:29 +0100 Subject: [PATCH 4/7] New datadir organisation --- NEWS.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NEWS.md b/NEWS.md index 8077cc44..8f17d4fb 100644 --- a/NEWS.md +++ b/NEWS.md @@ -25,6 +25,10 @@ * Creation of a patatools utility +* Datadir reorganisation [#211](https://github.com/patacrep/patacrep/pull/211) + * songbook templates are now located in `songbook` subfolder of the `templates` + * the LaTeX styles (previously in `/latex`) are now in `/templates/styles` + * Many other improvements From 0243b5cd2aaa78ab77d199b57da63e0b773166d9 Mon Sep 17 00:00:00 2001 From: Oliverpool Date: Wed, 9 Mar 2016 20:42:24 +0100 Subject: [PATCH 5/7] Add link to patatool --- NEWS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 8f17d4fb..40b854a0 100644 --- a/NEWS.md +++ b/NEWS.md @@ -23,7 +23,7 @@ * Template files also uses `yaml` markup -* Creation of a patatools utility +* Creation of a patatools utility [#189](https://github.com/patacrep/patacrep/pull/189) * Datadir reorganisation [#211](https://github.com/patacrep/patacrep/pull/211) * songbook templates are now located in `songbook` subfolder of the `templates` From 2c25d26fdfe6f1154ab69615b707918c46428ece Mon Sep 17 00:00:00 2001 From: Oliverpool Date: Thu, 10 Mar 2016 16:24:38 +0100 Subject: [PATCH 6/7] Song counter new behavior --- NEWS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/NEWS.md b/NEWS.md index 40b854a0..610c378e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -6,6 +6,7 @@ * `cd` behavior changed [#207](https://github.com/patacrep/patacrep/pull/207) * `addsongdir` and `setcounter` created * `sorted` renamed to `sort` + * The song counter is no more reseted on `songsection` [#208](https://github.com/patacrep/patacrep/pull/208) * Song files * New song format supported: Chordpro From bb43ae3b7186b745af7aa6bd6253a5c63fb17574 Mon Sep 17 00:00:00 2001 From: Louis Date: Tue, 10 May 2016 12:58:41 +0200 Subject: [PATCH 7/7] More changelog items for version 5 --- NEWS.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 610c378e..a5396036 100644 --- a/NEWS.md +++ b/NEWS.md @@ -6,7 +6,8 @@ * `cd` behavior changed [#207](https://github.com/patacrep/patacrep/pull/207) * `addsongdir` and `setcounter` created * `sorted` renamed to `sort` - * The song counter is no more reseted on `songsection` [#208](https://github.com/patacrep/patacrep/pull/208) + * The song counter is no more reset on `songsection` [#208](https://github.com/patacrep/patacrep/pull/208) + * The names of notes can be explicitely defined (was limited to `solfedge` or `alphascale`) [#217](https://github.com/patacrep/patacrep/pull/217) * Song files * New song format supported: Chordpro @@ -19,6 +20,8 @@ * LaTeX songs * `cov` renamed to `cover` * `vcov` is deprecated + * Image directive now accepts options to define its size [#218](https://github.com/patacrep/patacrep/pull/218) + * Better handling of special characters [#213](https://github.com/patacrep/patacrep/pull/213) * Add a compilation option `--error` [#195](https://github.com/patacrep/patacrep/pull/195) @@ -30,7 +33,7 @@ * songbook templates are now located in `songbook` subfolder of the `templates` * the LaTeX styles (previously in `/latex`) are now in `/templates/styles` -* Many other improvements +* Various fixes and improvements # patacrep 4.0.0