Masamichi Hosoda [Sat, 16 May 2015 11:46:55 +0000 (20:46 +0900)]
Issue 4374 / 2: Add make-tmpfile procedure
Procedure "make-tmpfile" is
to create a unique temporary file using "mkstemp!".
Masamichi Hosoda [Sat, 9 May 2015 08:20:19 +0000 (17:20 +0900)]
Issue 4374 / 1: Fix platform identification
On Cygwin environment,
Guile's uname returns the strings of "CYGWIN_NT-6.3" etc.
It contains unnecessary strings for the platform identification,
such as Windows version.
Therefore, to remove them to return the only "cygwin".
Dan Eble [Sat, 9 May 2015 01:35:04 +0000 (21:35 -0400)]
Issue 4379: Part_combine_iterator: simplify context substitution
Music_iterator::substitute_outlet: do nothing if the new outlet is
identical to the old (a sanity test)
David Kastrup [Sun, 10 May 2015 14:03:42 +0000 (16:03 +0200)]
Issue 4372: convert-ly misses some bflat -> b-flat
In python/convert-rules.py, using '\b' for note name boundaries turns
out to be too audacious since bflat4 is one word. A proper solution
would be to match the variable wordsyntax and let the match expression
use a replacement function that triggers on the right words. However,
such a large number of matches would be expensive. So instead we are
using positive lookahead and lookbehind expressions to get reasonably
good matches.
David Kastrup [Sat, 9 May 2015 18:37:19 +0000 (20:37 +0200)]
Issue 4380: Some optimizations during dispatching
Don't generate hashes multiple times and stop detection of pending grobs
when the first one is encountered.
Keith OHara [Sun, 3 May 2015 05:49:54 +0000 (22:49 -0700)]
repeat tremolo: robust to zero-duration elements
David Kastrup [Thu, 30 Apr 2015 15:47:29 +0000 (17:47 +0200)]
Issue 4357/7: Replace translator_listener_record mess with Scheme
David Kastrup [Wed, 29 Apr 2015 09:25:28 +0000 (11:25 +0200)]
Issue 4357/6: Extend Callback_wrapper class to extend for translator listening needs
David Kastrup [Tue, 28 Apr 2015 16:39:57 +0000 (18:39 +0200)]
Issue 4357/5: Remove Scheme listeners as they are just callbacks now.
David Kastrup [Tue, 12 May 2015 12:28:23 +0000 (14:28 +0200)]
Merge branch 'issue4357' into HEAD
This avoids admitting a non-compiling commit into the history mainline
David Kastrup [Tue, 28 Apr 2015 09:19:23 +0000 (11:19 +0200)]
Issue 4357/4: Reimplement Listener around generic SCM callback and instance
David Kastrup [Mon, 27 Apr 2015 19:11:31 +0000 (21:11 +0200)]
Issue 4357/3: Run preparatory script replacing listener macros
This script is
for i in $(git grep -l 'IMPLEMENT_LISTENER (')
do
sed -i '/IMPLEMENT_LISTENER ([^)]*$/{N;s/\n\s*/ /}' $i
sedscript=$(git grep -h 'IMPLEMENT_LISTENER (' $i|
sed 's|^.*IMPLEMENT_LISTENER (\([^,]*\), \([^)]*\)).*$|s/GET_LISTENER (\\([_a-z]\\+->\\)\\?\2)/\\1GET_LISTENER (\1, \2)/|')
sed -i "$sedscript" $i
done
sed -i '/IMPLEMENT_LISTENER (/d' $(git grep -l 'IMPLEMENT_LISTENER (')
sed -i 's/DECLARE_LISTENER (\([^)]*\));\?/void \1 (SCM);/' $(git grep -l 'DECLARE_LISTENER (')
David Kastrup [Wed, 22 Apr 2015 12:44:15 +0000 (14:44 +0200)]
Issue 4357/2: Make dispatchers callable for dispatching
David Kastrup [Fri, 17 Apr 2015 10:55:56 +0000 (12:55 +0200)]
Issue 4357/1: Move self_scm_ into non-templated Smob_core base class.
David Kastrup [Wed, 6 May 2015 22:30:18 +0000 (00:30 +0200)]
Issue 4376: Add LY_ASSERT_DERIVED_SMOB macro
When LY_ASSERT_SMOB is called with a class that is actually derived from
some smobified base class providing is_smob and unsmob, the resulting
check and error message are inaccurate. This patch uses dynamic_cast to
implement a separate LY_ASSERT_DERIVED_SMOB attaining sensible behavior
in that case. When no derivation is involved, the performance impact is
minimal.
Phil Holmes [Tue, 12 May 2015 11:44:39 +0000 (12:44 +0100)]
LSR updates: fixes errored change from issue 3981
Phil Holmes [Tue, 5 May 2015 12:02:50 +0000 (13:02 +0100)]
Update incipit snippets
David Kastrup [Fri, 8 May 2015 09:04:01 +0000 (11:04 +0200)]
Issue 4378: Rewrite Protected_scm for static lifetime requirements
The use of Protected_scm is required where the per-instance object
marking mechanisms don't work. This patch changes its semantics to
cater exclusively for the use case of permanent variable life time (as
opposed to permanent value life time). It no longer employs the
reversible scm_gc_protect_object but rather uses scm_permanent_object
for protecting one cons cell as its principal storage mechanism.
It is also ensured that construction/destruction (which happen at very
early/late phases of program execution) do not require a working memory
subsystem.
David Kastrup [Fri, 8 May 2015 09:34:32 +0000 (11:34 +0200)]
Avoid gratuitous use of Protected_scm copy constructor
David Kastrup [Thu, 7 May 2015 19:22:20 +0000 (21:22 +0200)]
Issue 4377: Run a script for using derived_unsmob where obvious
Script is:
matched="[^()]*"
for i in 1 2 3 4 5
do
matched="\\(($matched)\\|[^()]\\)*"
done
filelist="$(git grep -l '\<dynamic_cast[^>]*> ([_a-zA-Z]*::unsmob\>')"
typelist="$(sed -n 's/^.*\<dynamic_cast\s*<\([_a-zA-Z]\+\)\s*\*> (\([_a-zA-Z]*\)::unsmob\>.*$/\1/p' $filelist | sort -u )"
for typ in $typelist
do
# crazy: we have unsmob definitions that are not even used
if git grep -q "$typ::unsmob" || git grep -q "\\<$typ"'\s*\*\s*unsmob\s*(SCM'
then
echo "There already is $typ::unsmob"
sed -i '/unsmob (SCM/,/;/!s/\<dynamic_cast\s*<\('"$typ"'\)\s*\*> (\([_a-zA-Z]*\)::unsmob\s*(\('"$matched"'\))\s*)/\1::unsmob (\3)/g' $filelist
else
sed -i 's/\<dynamic_cast\s*<\('"$typ"'\)\s*\*> (\([_a-zA-Z]*\)::unsmob\s*(\('"$matched"'\))\s*)/derived_unsmob<\1> (\3)/g' $filelist
fi
done
The awkward bit at the start of the script is for matching matched
parentheses. This replaces the construct
dynamic_cast<T *>(xxx::unsmob (yyy))
with
derived_unsmob<T> (yyy)
where appropriate. If T::unsmob already exists, it is used
instead (apart from inside of its own definition, of course).
David Kastrup [Thu, 7 May 2015 19:21:54 +0000 (21:21 +0200)]
Define derived_unsmob<class T> function
This is a shortcut for dynamic_cast<T *>(T::unsmob (...)) in order to
provide an unsmob function for derived classes.
Phil Holmes [Sun, 10 May 2015 20:29:58 +0000 (21:29 +0100)]
Release: bump VERSION.
Phil Holmes [Sun, 10 May 2015 12:25:52 +0000 (13:25 +0100)]
Release: bump Welcome versions.
Phil Holmes [Sun, 10 May 2015 12:25:52 +0000 (13:25 +0100)]
Release: update news.
Phil Holmes [Sun, 10 May 2015 12:25:51 +0000 (13:25 +0100)]
PO: update template.
Phil Holmes [Sun, 10 May 2015 12:25:51 +0000 (13:25 +0100)]
Release: bump VERSION_DEVEL.
James Lowe [Sun, 10 May 2015 11:53:11 +0000 (12:53 +0100)]
Re-run makelsr
A renamed snippet from the
previous checkin had
had not been removed cleanly
and so was breaking make
James Lowe [Sun, 10 May 2015 11:02:25 +0000 (12:02 +0100)]
James Lowe [Thu, 19 Mar 2015 13:14:19 +0000 (13:14 +0000)]
Doc: NR section 3.5.x MIDI file creation tidy up
Issue 2877
I feel we're constantly updating a
'messy' chapter that doesn't really
follow many of the CG guidelines and
so could be better organized.
Apart from some @cindex or @seealso
references no new information and
nothing technical has been removed
but the information has been
reorganized so that it is (I hope)
grouped more logically.
Some snippets have been created from
the original text as they were
inappropriate for the NR.
The @lilypond examples have been simplified
and turned into @examples instead as the
engraving output is largely irrelevant
in a section about MIDI; saving space.
Phil Holmes [Sun, 3 May 2015 13:51:36 +0000 (14:51 +0100)]
Update NR font size section (Issue 3370)
Phil Holmes [Sat, 2 May 2015 14:16:46 +0000 (15:16 +0100)]
Partcombiner documentation (Issue 4307)
Phil Holmes [Mon, 4 May 2015 11:19:53 +0000 (12:19 +0100)]
Document incipit command
Dan Eble [Sat, 18 Apr 2015 03:01:55 +0000 (23:01 -0400)]
Issue 4356: Part combiner: generate mark events in Scheme (not C++)
Jean-Charles Malahieude [Fri, 8 May 2015 17:26:46 +0000 (19:26 +0200)]
Unify @documentencoding
before switching from texi2html to texi2any:
utf-8 -> UTF-8 everywhere
Jean-Charles Malahieude [Fri, 8 May 2015 16:36:13 +0000 (18:36 +0200)]
Doc: updates translation status
Jean-Charles Malahieude [Fri, 8 May 2015 16:20:07 +0000 (18:20 +0200)]
Doc-fr: updates LM and NR
Dan Eble [Mon, 4 May 2015 23:46:53 +0000 (19:46 -0400)]
Issue 4369: silence warning in page-breaking.cc
David Kastrup [Wed, 6 May 2015 09:55:18 +0000 (11:55 +0200)]
Issue 4373: Start up GUILE type system before anything else
This permits using our datatypes in the general Scheme initialization
phase without crashing or order dependencies.
Trevor Daniels [Fri, 1 May 2015 21:04:51 +0000 (22:04 +0100)]
Issue 3687 (part 4): Update regression tests to use \compressMMRests
Trevor Daniels [Fri, 1 May 2015 21:17:10 +0000 (22:17 +0100)]
Issue 3687 (part 3) Update snippets to use \compressMMRests
Trevor Daniels [Fri, 1 May 2015 21:56:47 +0000 (22:56 +0100)]
Issue 3687 (part 2): Amend docs to use \compressMMRests
Amend the examples in the LM and NR to use the \compressMMRests
music function rather than the predefs \compressFullBarRests and
\expandFullBarRests to avoid advocating the use of techniques
which may have undesirable side effects.
Trevor Daniels [Tue, 28 Apr 2015 22:50:31 +0000 (23:50 +0100)]
Issue 3687 (part 1): Provide a compress MM function for MM rests only
Multi-measure rests were previously compressed (i.e. all bars
following the first were removed) by using the \compressFullBarRests
predef. This simply turned on 'skipBars, which causes bar lines at
the ends of bars which contain either no rhythmic event or contain
a rhythmic event with a duration extending beyond the bar to be removed.
Such bars are generated by notes with durations longer than a bar,
like a1*3, or by shorter notes which extend beyond the bar.
This patch provides a function which also uses 'skipBars, but with
a filter so that 'skipBars is activated only when an actual MM rest
is encountered and deactivated by the first following rhythmic event.
Trevor Daniels [Wed, 29 Apr 2015 15:19:05 +0000 (16:19 +0100)]
Issue 3687 (part 0): run convert-ly
Run convert-ly on the doc files to be changed to bring them
up to date.
David Kastrup [Tue, 5 May 2015 11:00:43 +0000 (13:00 +0200)]
Revert "Issue 4360: Reorganize smob initialization to make it more reliable"
This reverts commit
90d3233da87b372e02690978f89b2add3863fba6.
Masamichi Hosoda [Mon, 4 May 2015 09:59:44 +0000 (18:59 +0900)]
Fix lilypond-invoke-editor's temp dir
Issue 4359
To use environment variable TMP and TEMP is
Windows-only conventions.
The POSIX convention is
to look in the TMPDIR.
Dan Eble [Tue, 28 Apr 2015 23:59:44 +0000 (19:59 -0400)]
Issue 4358: Set DynamicLineSpanner direction for \partcombine.
This reverses a difference in the regression test
part-combine-force.ly shown in Issue 4348.
Carl Sorensen [Sat, 25 Apr 2015 03:07:51 +0000 (21:07 -0600)]
Fix issue 4355 -- broken beam subdivision
When beams are subdivided, the number of beams joining the subdivisions
should match the length of the subdivision. Previously, the subdivisions
were joined by a single beam.
Phil Holmes [Sat, 2 May 2015 17:20:59 +0000 (18:20 +0100)]
LSR local import
Phil Holmes [Sat, 2 May 2015 17:18:22 +0000 (18:18 +0100)]
Add rest styles snippet to snippets/new
David Kastrup [Thu, 30 Apr 2015 18:48:09 +0000 (20:48 +0200)]
Issue 4360: Reorganize smob initialization to make it more reliable
This change is a nuisance in that it requires an explicit call to
ADD_SMOB_INIT for each Scheme-related class.
However, this setup guarantees that at the point Scheme execution
commences, all predicates of the likes of "ly:grob?" will be present.
It also guarantees that if a particular type should seem required during
_other_ initializations that happen to depend on the type and get
executed earlier, it will be provided early.
David Kastrup [Fri, 1 May 2015 22:35:35 +0000 (00:35 +0200)]
Issue 4364: Allow ImageMagick's compare to exit with status 1
Apparently Ubuntu 15.04 has a version of "compare" that cannot be easily
persuaded to return anything but exit status 1 (which indicates
dissimilar images but no actual error condition) so we allow this in
script/build/output-distance.py in order to keep "make check" from
failing.
This patch is somewhat artless but does the trick.
Jean-Charles Malahieude [Fri, 1 May 2015 12:08:36 +0000 (14:08 +0200)]
po: updates Danish
Jean-Charles Malahieude [Fri, 1 May 2015 12:01:55 +0000 (14:01 +0200)]
Doc-fr: update LM and NR
Jean-Charles Malahieude [Fri, 1 May 2015 11:58:27 +0000 (13:58 +0200)]
web-fr: updates introduction
Jean-Charles Malahieude [Fri, 1 May 2015 11:24:33 +0000 (13:24 +0200)]
snippets: too many @ left
Jean-Charles Malahieude [Thu, 30 Apr 2015 18:04:11 +0000 (20:04 +0200)]
Merge branch 'master' into translation
Jean-Charles Malahieude [Thu, 30 Apr 2015 17:27:21 +0000 (19:27 +0200)]
Doc-ca: fix remaining errors
Jean-Charles Malahieude [Thu, 30 Apr 2015 17:25:40 +0000 (19:25 +0200)]
Doc-es: add requested documentencoding
otherwise texinfo barfs and build fails.
Jean-Charles Malahieude [Thu, 30 Apr 2015 17:23:44 +0000 (19:23 +0200)]
Doc-de: add language specification where needed
This fixes build failure due to texinfo barfing.
Jean-Charles Malahieude [Thu, 30 Apr 2015 17:21:05 +0000 (19:21 +0200)]
Doc: typo in @documentencoding
coding: utf-8
BUT
@documentencoding UTF-8
Jean-Charles Malahieude [Thu, 30 Apr 2015 17:18:57 +0000 (19:18 +0200)]
update texinfo.tex from upstream
Really deal with nonascii-characters in @node and @index
(accented capitalized and ß).
Werner Lemberg [Thu, 30 Apr 2015 06:15:16 +0000 (08:15 +0200)]
stem-tremolo-style.ly: Minor doc improvement.
Masamichi Hosoda [Tue, 28 Apr 2015 13:29:52 +0000 (14:29 +0100)]
Rename makefile variable TMP
Issue 4353
Rename makefile variable TMP
Windows (cygwin and mingw)
system uses environment
variable TMP for a special
purpose. It can not be used
for other purpose like
makefile variable.
Carl Sorensen [Wed, 15 Apr 2015 02:04:50 +0000 (20:04 -0600)]
Updated patch for issue 155
Use Joe Neeman's code to enclose dots and accidentals inside parentheses
around note heads.
Eliminate pure-Y-extent (no longer needed)
Improve documentation string for parenthesis friends
Improve regression test
David Kastrup [Mon, 20 Apr 2015 16:33:16 +0000 (18:33 +0200)]
Issue 4351/2: Rename Translator_void_method_ptr to Translator::Callback
This is somewhat more descriptive.
David Kastrup [Mon, 20 Apr 2015 12:41:15 +0000 (14:41 +0200)]
Issue 4351/1: Rename Engraver_void_function_engraver_grob_info to Translator::Grob_info_callback
This is somewhat more descriptive. Since the general dispatcher
management is done in Translator rather than Engraver, making this
typedef local to Engraver instead would really complicate things.
Phil Holmes [Sun, 26 Apr 2015 21:31:59 +0000 (22:31 +0100)]
Release: bump VERSION.
Phil Holmes [Sun, 26 Apr 2015 10:29:58 +0000 (11:29 +0100)]
Release: bump Welcome versions.
Phil Holmes [Sun, 26 Apr 2015 10:29:57 +0000 (11:29 +0100)]
Release: update news.
Phil Holmes [Sun, 26 Apr 2015 10:29:57 +0000 (11:29 +0100)]
PO: update template.
Phil Holmes [Sun, 26 Apr 2015 10:29:57 +0000 (11:29 +0100)]
Release: bump VERSION_DEVEL.
Masamichi Hosoda [Fri, 24 Apr 2015 15:47:05 +0000 (16:47 +0100)]
Remove cygwin_conv_to_posix_path
Issue 4346
Remove cygwin_conv_to_posix_path
cygwin_conv_to_posix_path is
deprecated on cygwin (32bit) and
not available on cygwin64.
It is not needed in a pure
cygwin environment.
Dan Eble [Sat, 18 Apr 2015 03:01:55 +0000 (23:01 -0400)]
Issue 4348: Part combiner: move direction handling out of iterator
Trevor Daniels [Sat, 18 Apr 2015 15:28:55 +0000 (16:28 +0100)]
Issue 3799: New satb.ly built-in template and template framework
Add kits as aids for providing built-in templates ("tkits")
Replace the satb.ly template with one built from the tkits, which
corrects some errors and extends the facilities:
- fixes issue 4192
- \lyricsmode should be used; never \lyricsto
- Women and Men one-voice staves added
- Two-voice staves called MenDivided, WomenDivided
- Soprano and Tenor music may now be omitted without error
- midi instruments may be specified
- midi channel mapping is by instrument
- midi instruments are by voice, not staff
- regression tests added
- documentation minimally updated
Trevor Daniels [Sun, 19 Apr 2015 22:03:12 +0000 (23:03 +0100)]
Doc: Issue 4349: Clarify where changes to beatStructure should be placed
Make it clear that changes to beatStructure and baseMoment
apply only to the time signature currently in force, and
hence that those changes must come immediately after a
new \time command, not before it.
Janek Warchoł [Wed, 22 Apr 2015 09:30:02 +0000 (11:30 +0200)]
More flexibility for tremolo slashes
This patch introduces a shape property and
relies on it to allow for various settings
of tremolo slashes behaviour.
(See issue 1735.)
Masamichi Hosoda [Tue, 21 Apr 2015 19:11:40 +0000 (20:11 +0100)]
Set CFLAGS and LDFLAGS to build python modules
Issue 4347
Set CFLAGS and LDFLAGS to build python modules
cygwin and mingw need LDFLAGS for building python modules
Jean-Charles Malahieude [Tue, 21 Apr 2015 17:46:56 +0000 (19:46 +0200)]
Doc-ca: fix non existing xref
Jean-Charles Malahieude [Sun, 19 Apr 2015 16:28:09 +0000 (18:28 +0200)]
Doc-ca: Applying the patches contributed by Jean-Charles Malahieude to the Catalan translation
Walter Garcia-Fontes [Mon, 6 Apr 2015 06:32:52 +0000 (08:32 +0200)]
Doc-ca: Replaced l.l by l·l since in principle not it is save to use it
Walter Garcia-Fontes [Mon, 6 Apr 2015 06:29:12 +0000 (08:29 +0200)]
Doc-ca: Fixes for Catalan translation
Walter Garcia-Fontes [Sun, 5 Apr 2015 16:03:51 +0000 (18:03 +0200)]
Doc-ca: Priority 4 Catalan Translation
Walter Garcia-Fontes [Sat, 7 Feb 2015 19:00:15 +0000 (20:00 +0100)]
Doc-ca: texinfo.tex and txi-ca from upstream to fix problem with Catalan interpunct
Walter Garcia-Fontes [Sat, 7 Feb 2015 17:18:02 +0000 (18:18 +0100)]
Doc-ca: Translated string seen in home page of lilypond.org about hosting
Valentin Villenave [Tue, 21 Apr 2015 15:57:03 +0000 (17:57 +0200)]
Replace C++ (in)equality checks with proper SCM syntax
This commit replaces the most straightforward situations
where two SCM objects are compared. Here are the basic
replacements used:
x == y -------> scm_is_eq (x,y)
x == SCM_BOOL_T -------> to_boolean (x)
x == SCM_BOOL_F -------> scm_is_false (x)
x != SCM_BOOL_T -------> scm_is_true (x)
x == SCM_UNDEFINED -------> SCM_UNBNDP (x)
x == SCM_EOL -------> scm_is_null (x)
(scm_exact_p (x) == SCM_BOOL_T) -------> ly_is_rational (x)
(scm_integer_p (x) == SCM_BOOL_T) -------> scm_is_integer (x)
(scm_list_p (x) == SCM_BOOL_T) -------> ly_is_list (x)
(scm_port_p (x) == SCM_BOOL_T) -------> ly_is_port (x)
(scm_equal_p (x, y) == SCM_BOOL_T) -------> ly_is_equal (x,y)
Finally, I replaced (!cached) with (!SCM_UNPACK (cached)) in
lily-guile-macros.hh, as has been suggested once by David.
Please note that this commit does not handle some situations
I’m less comfortable with (namely those involving scm_c_memq,
scm_assq or scm_hashq_get_handle), and some scm_*_p checks
for which there isn’t a ly_is_* replacement yet (to wit,
scm_hash_table_p, scm_promise_p, and scm_variable_bound_p).
Those should be dealt with later (another patch is in the works).
David Kastrup [Fri, 10 Apr 2015 18:36:32 +0000 (20:36 +0200)]
Issue 4343: quoteDuring music should be sent to midi file
David Kastrup [Sat, 11 Apr 2015 16:35:47 +0000 (18:35 +0200)]
Issue 4333: Cue notes should not be included in ambitus
This works by adding a boolean `ignore-ambitus' property to the
`note-head-interface'.
David Nalesnik [Wed, 1 Apr 2015 01:11:33 +0000 (20:11 -0500)]
Remove unused music type general-music
Masamichi Hosoda [Sat, 18 Apr 2015 14:10:06 +0000 (15:10 +0100)]
Add sans-serif and monospace fonts
Issue 4332
Add sans-serif and monospace fonts
Nimbus Sans L (Helvetica substitute) as sans-serif font.
Nimbus Mono L (Courier substitute) as monospace font.
Dan Eble [Sat, 7 Feb 2015 15:30:05 +0000 (10:30 -0500)]
Part combiner: allow a2 chords
Dénes Harmath [Sat, 18 Apr 2015 08:57:43 +0000 (10:57 +0200)]
Doc-hu: Update fundamental.itely: Localize comments in examples
Phil Holmes [Wed, 15 Apr 2015 09:23:32 +0000 (10:23 +0100)]
LSR updates
Phil Holmes [Mon, 6 Apr 2015 11:12:23 +0000 (12:12 +0100)]
Fix TODO with markup padding and fix buggy example in LM
Federico Bruni [Tue, 14 Apr 2015 14:20:21 +0000 (16:20 +0200)]
Web-it: fix missing @divEnd
Paul Morris [Sun, 29 Mar 2015 18:09:52 +0000 (14:09 -0400)]
Issue 3615: more consistency with key sig grobs
Always create KeySignature grobs, even when
the key has no sharps or flats, for greater
consistency when overriding them.
(key-engraver.cc)
Jean-Charles Malahieude [Fri, 10 Apr 2015 17:32:52 +0000 (19:32 +0200)]
PO: updates Danish from FTP
Thanks to Joe Hansen
Phil Holmes [Mon, 6 Apr 2015 08:13:29 +0000 (09:13 +0100)]
Release: bump VERSION.
Phil Holmes [Sun, 5 Apr 2015 10:00:34 +0000 (11:00 +0100)]
PO: update template.
Phil Holmes [Sun, 5 Apr 2015 09:59:58 +0000 (10:59 +0100)]
Release: update news.
Phil Holmes [Sun, 5 Apr 2015 09:58:34 +0000 (10:58 +0100)]
Merge remote branch 'origin/master' into release/unstable