]> git.donarmstrong.com Git - lilypond.git/log
lilypond.git
7 years agoRelease: bump Welcome versions.
Phil Holmes [Sat, 19 Nov 2016 13:48:32 +0000 (13:48 +0000)]
Release: bump Welcome versions.

7 years agoRelease: update news.
Phil Holmes [Sat, 19 Nov 2016 13:48:31 +0000 (13:48 +0000)]
Release: update news.

7 years agoPO: update template.
Phil Holmes [Sat, 19 Nov 2016 13:48:31 +0000 (13:48 +0000)]
PO: update template.

7 years agoRelease: bump VERSION_DEVEL.
Phil Holmes [Sat, 19 Nov 2016 13:48:31 +0000 (13:48 +0000)]
Release: bump VERSION_DEVEL.

7 years agoUpdate minor release checklist with new news instructions
Phil Holmes [Sat, 19 Nov 2016 11:51:15 +0000 (11:51 +0000)]
Update minor release checklist with new news instructions

7 years ago4995: Remove 2016 projects from GSoC page on website
Urs Liska [Mon, 7 Nov 2016 17:18:09 +0000 (18:18 +0100)]
4995: Remove 2016 projects from GSoC page on website

In a first step to update the GSoC page for next year this
commit removes the entries for the projects of the current year.

7 years agoIssue 4997/7: Use Preinit for Global_context, protect output definition
David Kastrup [Sat, 4 Jun 2016 17:31:31 +0000 (19:31 +0200)]
Issue 4997/7: Use Preinit for Global_context, protect output definition

7 years agoIssue 4997/6: Use Preinit for font metrics
David Kastrup [Sat, 4 Jun 2016 17:00:16 +0000 (19:00 +0200)]
Issue 4997/6: Use Preinit for font metrics

7 years agoIssue 4997/5: Use Preinit in Engraver_group
David Kastrup [Sat, 4 Jun 2016 16:13:13 +0000 (18:13 +0200)]
Issue 4997/5: Use Preinit in Engraver_group

7 years agoIssue 4997/4: Use Preinit in Spanner
David Kastrup [Sat, 4 Jun 2016 15:41:23 +0000 (17:41 +0200)]
Issue 4997/4: Use Preinit in Spanner

7 years agoIssue 4997/3: Use Preinit in Music
David Kastrup [Sat, 4 Jun 2016 15:41:05 +0000 (17:41 +0200)]
Issue 4997/3: Use Preinit in Music

7 years agoIssue 4997/2: Use Preinit class in Scheme_engraver
David Kastrup [Sat, 4 Jun 2016 12:11:31 +0000 (14:11 +0200)]
Issue 4997/2: Use Preinit class in Scheme_engraver

This avoids calls of derived_mark on uninitialized data.  Fold
Scheme_engraver::init_from_scheme (SCM) into converting constructor
since it has become identical to it.

7 years agoIssue 4997/1: Add Preinit class for early initialization
David Kastrup [Sat, 4 Jun 2016 12:09:08 +0000 (14:09 +0200)]
Issue 4997/1: Add Preinit class for early initialization

This is a tricky thing: once a base class calls smobify_self () in
its constructor, further allocations during construction of base
class and derived classes might lead to mark_smob calls on the
object under construction.  When those call a virtual function like
derived_mark, the virtual function corresponding to the
incompletely initialized object is likely to be called.

This situation is acerbated in Guile 2.0 where the mark passes may occur
with only loose synchronization to the allocations.

The order of initialization of an object consists in calling the
constructors of virtual base classes, then of non-virtual base
classes, then initializing all data members.

As a result, the derived constructor comes too late for
initialization.  That's where the Preinit template class comes in.
Derive from it _before_ deriving from the smobifying base class
providing derived_mark, and it will call its Base class' pre_init
function (which must not rely on the instantiation being complete).

The pre_init function should then put the derived class into a state
_before_ its constructor or a constructor of its data members is being
called where it's safe to call its derived_mark function.  Note that in
particular that most STL data structures are in undefined state before
their constructor is being called, so the pre_init function has to
establish a state where derived_mark will not attempt to interpret data
members of types like std::vector which may not have been constructed
yet.

7 years agoIssue 4991: Add installing optional URW++ fonts
Masamichi Hosoda [Fri, 28 Oct 2016 13:53:25 +0000 (22:53 +0900)]
Issue 4991: Add installing optional URW++ fonts

LilyPond default fonts (TeX Gyre) do not have Greek and Cyrillic glyphs.
Newest URW 35 fonts (June 2016) have them.
http://git.ghostscript.com/?p=urw-core35-fonts.git;a=commit;h=79bcdfb34fbce12b592cce389fa7a19da6b5b018

This commit realizes the followings.

. configure script finds the following 12 OTF files.
. If they are found, `make install` installs them.
  (Both TeX Gyre and URW fons are installed
   under the lilypond fonts directory.)
. Even if they are not found, configure script does not raise error.
  (Only TeX Gyre fonts are installed.)

C059-BdIta.otf
C059-Bold.otf
C059-Italic.otf
C059-Roman.otf

NimbusMonoPS-Bold.otf
NimbusMonoPS-BoldItalic.otf
NimbusMonoPS-Italic.otf
NimbusMonoPS-Regular.otf

NimbusSans-Bold.otf
NimbusSans-BoldOblique.otf
NimbusSans-Oblique.otf
NimbusSans-Regular.otf

7 years agoFix ending the dynamic extent in Text_interface::interpret_markup
Antonio Ospite [Wed, 9 Nov 2016 17:22:25 +0000 (18:22 +0100)]
Fix ending the dynamic extent in Text_interface::interpret_markup

When using cyclic references under guile-2.0 lilypond crashes with
a segmentation fault:

  $ LANG=C out/bin/lilypond input/regression/markup-cyclic-reference.ly
  GNU LilyPond 2.19.51
  Processing `input/regression/markup-cyclic-reference.ly'
  Parsing...
  Finding the ideal number of pages...
  Fitting music on 1 page...
  Drawing systems...
  Layout output to `/tmp/lilypond-wkUlSF'...
  Converting to `markup-cyclic-reference.pdf'...
  Deleting `/tmp/lilypond-wkUlSF'...
  Segmentation fault

This happens because in Text_interface::interpret_markup the dynamic
extent is not ended properly in the exit path for the case when the
markup depth exceeds the max_depth.

7 years agoIssue 4994/5: Doc: add description of `-dfont-export-dir=[dir]` option
Masamichi Hosoda [Sun, 30 Oct 2016 09:53:34 +0000 (18:53 +0900)]
Issue 4994/5: Doc: add description of `-dfont-export-dir=[dir]` option

This commit adds description of `-dfont-export-dir=[dir]` option.

7 years agoIssue 4994/4: Add creating font exporting directory
Masamichi Hosoda [Sat, 29 Oct 2016 18:33:41 +0000 (03:33 +0900)]
Issue 4994/4: Add creating font exporting directory

This commit makes
LilyPond creates font exporting directory if it does not exist.

7 years agoIssue 4994/3: Fix font exporting for internal fonts
Masamichi Hosoda [Tue, 1 Nov 2016 14:06:07 +0000 (23:06 +0900)]
Issue 4994/3: Fix font exporting for internal fonts

This commit fixes the conflict of `-dgs-load-fonts` option
and `-dfont-export-dir=[dir]`.

7 years agoIssue 4994/2: Add function that exports fonts as PostScript files
Masamichi Hosoda [Sat, 29 Oct 2016 09:21:44 +0000 (18:21 +0900)]
Issue 4994/2: Add function that exports fonts as PostScript files

This commit makes LilyPond can export fonts as PostScript files.

7 years agoIssue 4994/1: Add `-dfont-export-dir=[dir]` option
Masamichi Hosoda [Sat, 29 Oct 2016 08:39:29 +0000 (17:39 +0900)]
Issue 4994/1: Add `-dfont-export-dir=[dir]` option

Directory for exporting fonts as PostScript files.

7 years agoIssue 4992/6: Doc: add description of `-dgs-never-embed-fonts` option
Masamichi Hosoda [Fri, 28 Oct 2016 14:44:06 +0000 (23:44 +0900)]
Issue 4992/6: Doc: add description of `-dgs-never-embed-fonts` option

This commit adds description of `-dgs-never-embed-fonts` option.

7 years agoIssue 4992/5: Add never-embed-font-list for `-dgs-load-fonts`
Masamichi Hosoda [Fri, 28 Oct 2016 14:17:43 +0000 (23:17 +0900)]
Issue 4992/5: Add never-embed-font-list for `-dgs-load-fonts`

When you use both `-dgs-never-embed-fonts` and `-dgs-load-fonts` options,
Ghostscript never embed fonts except TrueType for PDF file output.

7 years agoIssue 4992/4: Add never-embed-font-list for OpenType/CFF (OTF, OTC) fonts
Masamichi Hosoda [Fri, 28 Oct 2016 14:15:56 +0000 (23:15 +0900)]
Issue 4992/4: Add never-embed-font-list for OpenType/CFF (OTF, OTC) fonts

When you use `-dgs-never-embed-fonts` option,
Ghostscript never embed OpenType/CFF (OTF and OTC) fonts
for PDF file output.

7 years agoIssue 4992/3: Add never-embed-font-list for Type 1 (PFA and PFB) fonts
Masamichi Hosoda [Fri, 28 Oct 2016 14:14:32 +0000 (23:14 +0900)]
Issue 4992/3: Add never-embed-font-list for Type 1 (PFA and PFB) fonts

When you use `-dgs-never-embed-fonts` option,
Ghostscript never embed Type 1 (PFA and PFB) fonts for PDF file output.

7 years agoIssue 4992/2: Add `never-embed-font-list` and `/NeverEmbed`
Masamichi Hosoda [Fri, 28 Oct 2016 14:11:29 +0000 (23:11 +0900)]
Issue 4992/2: Add `never-embed-font-list` and `/NeverEmbed`

When the option `-dgs-never-embed-fonts` is enabled,
`/NeverEmbed` distiller parameter from `never-embed-font-list` list
is added to the outputting PostScript file.

When Ghostscript converts from the PostScript file to PDF file,
it never embed the fonts which are in the `never-embed-font-list`.

7 years agoIssue 4992/1: Add `-dgs-never-embed-fonts` option
Masamichi Hosoda [Fri, 28 Oct 2016 14:08:09 +0000 (23:08 +0900)]
Issue 4992/1: Add `-dgs-never-embed-fonts` option

For Ghostscript, never embed fonts.

7 years agoRelease: bump VERSION.
Phil Holmes [Mon, 7 Nov 2016 14:11:25 +0000 (14:11 +0000)]
Release: bump VERSION.

7 years agoMerge remote-tracking branch 'origin/release/unstable' into HEAD
Phil Holmes [Mon, 7 Nov 2016 14:10:35 +0000 (14:10 +0000)]
Merge remote-tracking branch 'origin/release/unstable' into HEAD

7 years agoRelease: bump Welcome versions.
Phil Holmes [Sun, 6 Nov 2016 11:30:50 +0000 (11:30 +0000)]
Release: bump Welcome versions.

7 years agoRelease: update news.
Phil Holmes [Sun, 6 Nov 2016 11:30:50 +0000 (11:30 +0000)]
Release: update news.

7 years agoPO: update template.
Phil Holmes [Sun, 6 Nov 2016 11:30:50 +0000 (11:30 +0000)]
PO: update template.

7 years agoRelease: bump VERSION_DEVEL.
Phil Holmes [Sun, 6 Nov 2016 11:30:49 +0000 (11:30 +0000)]
Release: bump VERSION_DEVEL.

7 years agoDoc: update translation-status
Jean-Charles Malahieude [Sun, 6 Nov 2016 10:05:05 +0000 (11:05 +0100)]
Doc: update translation-status

7 years agoDoc-fr: updates committish
Jean-Charles Malahieude [Sun, 6 Nov 2016 09:34:02 +0000 (10:34 +0100)]
Doc-fr: updates committish

7 years agoIssue 4988 straight-flags partly wrong calculated
Thomas Morley [Tue, 25 Oct 2016 20:29:20 +0000 (22:29 +0200)]
Issue 4988 straight-flags partly wrong calculated

The angles for straight-flags at down- and up-pointing stems are now
accurately respected.
This will cause some slight changes in the reg-tests.
Also fixing flat-flags, which relied on the old, buggy calculation.
Also doing the same fixes for markup-command note-by-number.
Also fixing an oversight in regtest metronome-mark-formatter.ly,
where the creation of the metronome-markup depends on note-by-number.

7 years agoIssue 4987: Add Greek and Cyrillic glyph aliases
Masamichi Hosoda [Mon, 24 Oct 2016 15:03:13 +0000 (00:03 +0900)]
Issue 4987: Add Greek and Cyrillic glyph aliases

LilyPond default fonts (TeX Gyre) do not have Greek and Cyrillic glyphs.
New URW 35 fonts which are contained in Ghostscript 9.20 have them.

This commit makes that when you have the new URW fonts,
you can use their Greek and Cyrillic glyphs as default fonts.

7 years agoIssue 4989/3: Add a guard against invalid Type 1 (PFB) font
Masamichi Hosoda [Thu, 27 Oct 2016 14:57:43 +0000 (23:57 +0900)]
Issue 4989/3: Add a guard against invalid Type 1 (PFB) font

This commit makes LilyPond can detect invalid Type1 (PFB) font.

7 years agoIssue 4989/2: Fix Type 1 (PFB) font embedding
Masamichi Hosoda [Thu, 27 Oct 2016 14:56:42 +0000 (23:56 +0900)]
Issue 4989/2: Fix Type 1 (PFB) font embedding

Type 1 PFA data which is converted from PFB files can contain '\0'.

In order to avoid problems with '\0',
this commit makes to use the file length
instead of zero-terminated string.

7 years agoIssue 4989/1: Fix Type1 (PFA) font embedding
Masamichi Hosoda [Wed, 26 Oct 2016 11:56:49 +0000 (20:56 +0900)]
Issue 4989/1: Fix Type1 (PFA) font embedding

Type1 (PFA) fonts can contain '\0'.
e.g. URW++ June 2016 (Ghostscript 9.20)

In order to avoid problems with '\0',
this commit makes to use the file length
instead of zero-terminated string.

7 years agoWeb: Authors.itexi update
James Lowe [Fri, 28 Oct 2016 09:58:57 +0000 (10:58 +0100)]
Web: Authors.itexi update

Issue 4990

From August 2015 until
Octoner 2016 Based on all
those contributors for
2.18.x and current 2.19.x.

7 years agoFix \lyricsto Staff = "sop" syntax
David Kastrup [Wed, 2 Nov 2016 11:29:45 +0000 (12:29 +0100)]
Fix \lyricsto Staff = "sop" syntax

This was parsed correctly and then failed on processing the parsed
parts.

7 years agoIssue4986: Fix XeLaTex option consistent with XeTeX option
Masamichi Hosoda [Sun, 23 Oct 2016 12:47:46 +0000 (21:47 +0900)]
Issue4986: Fix XeLaTex option consistent with XeTeX option

In LilyPond, XeTeX uses option
`--output-driver='xdvipdfmx -C 0x0010'`
but XeLaTeX did not use any options.

This commit makes XeLaTeX uses the same option
for consistent with XeTeX.

7 years agoDoc-fr: update texidocs
Jean-Charles Malahieude [Sat, 29 Oct 2016 15:43:25 +0000 (17:43 +0200)]
Doc-fr: update texidocs

7 years agoMerge branch 'master' of /home/jcharles/GIT/Lily/. into translation
Jean-Charles Malahieude [Sat, 29 Oct 2016 15:41:08 +0000 (17:41 +0200)]
Merge branch 'master' of /home/jcharles/GIT/Lily/. into translation

7 years agoDoc-it: add @translator and fix Xref to internals
Jean-Charles Malahieude [Sat, 29 Oct 2016 15:40:13 +0000 (17:40 +0200)]
Doc-it: add @translator and fix Xref to internals

7 years agoIssue 4985: Avoid a few trivial lambda function wrappers
David Kastrup [Wed, 19 Oct 2016 20:50:40 +0000 (22:50 +0200)]
Issue 4985: Avoid a few trivial lambda function wrappers

7 years agoIssue 4984: Let grob-transformer use ly:{pure,unpure}-call
David Kastrup [Wed, 19 Oct 2016 15:33:29 +0000 (17:33 +0200)]
Issue 4984: Let grob-transformer use ly:{pure,unpure}-call

This simplifies the code and guarantees consistent behavior.

7 years agoscm/scheme-engravers.scm: run fixcm.sh on it
David Kastrup [Thu, 27 Oct 2016 16:41:30 +0000 (18:41 +0200)]
scm/scheme-engravers.scm: run fixcm.sh on it

Some of its indentation is criminally confusing.

7 years agooutput-lib.scm: markup macro not yet available
David Kastrup [Thu, 27 Oct 2016 16:18:18 +0000 (18:18 +0200)]
output-lib.scm: markup macro not yet available

This is a fix for Guilev2 problems.

7 years agoly/engraver-init.ly: Fix unquoted quote marks
David Kastrup [Thu, 27 Oct 2016 16:04:27 +0000 (18:04 +0200)]
ly/engraver-init.ly: Fix unquoted quote marks

7 years agoDoc-it: add Essay manual
Tommaso Gordini [Wed, 12 Oct 2016 08:12:07 +0000 (10:12 +0200)]
Doc-it: add Essay manual

7 years agoMerge branch 'master' into translation
Jean-Charles Malahieude [Sat, 22 Oct 2016 16:29:50 +0000 (18:29 +0200)]
Merge branch 'master' into translation

7 years agoDoc-fr: fix commitish
Jean-Charles Malahieude [Sat, 22 Oct 2016 16:29:42 +0000 (18:29 +0200)]
Doc-fr: fix commitish

7 years agoweb-de: update the frontpage
Jean-Charles Malahieude [Sat, 22 Oct 2016 16:27:40 +0000 (18:27 +0200)]
web-de: update the frontpage

and heading in Examples

7 years agoIssue 4982 Fix unescaped markup-commands in table-example
Thomas Morley [Mon, 10 Oct 2016 15:07:19 +0000 (17:07 +0200)]
Issue 4982 Fix unescaped markup-commands in table-example

Oversight from Issue 4757

7 years agoRelease: bump VERSION.
Phil Holmes [Mon, 17 Oct 2016 17:03:04 +0000 (18:03 +0100)]
Release: bump VERSION.

7 years agoRelease: bump Welcome versions.
Phil Holmes [Sun, 16 Oct 2016 11:16:18 +0000 (12:16 +0100)]
Release: bump Welcome versions.

7 years agoRelease: update news.
Phil Holmes [Sun, 16 Oct 2016 11:16:17 +0000 (12:16 +0100)]
Release: update news.

7 years agoPO: update template.
Phil Holmes [Sun, 16 Oct 2016 11:16:17 +0000 (12:16 +0100)]
PO: update template.

7 years agoRelease: bump VERSION_DEVEL.
Phil Holmes [Sun, 16 Oct 2016 11:16:17 +0000 (12:16 +0100)]
Release: bump VERSION_DEVEL.

7 years agoWeb: fix links in fr, it and ja
Jean-Charles Malahieude [Sat, 15 Oct 2016 19:02:42 +0000 (21:02 +0200)]
Web: fix links in fr, it and ja

7 years agoWeb: fix new home page
Jean-Charles Malahieude [Sat, 15 Oct 2016 18:53:16 +0000 (20:53 +0200)]
Web: fix new home page

 – make the first example's link to be relative
 – add a note for translators

7 years agoMerge branch 'master' of /home/jcharles/GIT/Lily/. into translation
Jean-Charles Malahieude [Sat, 15 Oct 2016 13:55:12 +0000 (15:55 +0200)]
Merge branch 'master' of /home/jcharles/GIT/Lily/. into translation

7 years agoPO: synch Esperanto from FTP
Jean-Charles Malahieude [Sat, 15 Oct 2016 12:47:35 +0000 (14:47 +0200)]
PO: synch Esperanto from FTP

7 years agoWeb-it: update and add news-headlines for new home page
Federico Bruni [Thu, 13 Oct 2016 10:55:01 +0000 (12:55 +0200)]
Web-it: update and add news-headlines for new home page

7 years agoIssue 4979/2: Add regression test for non-merging ledger lines
Paul Morris [Sun, 2 Oct 2016 20:05:01 +0000 (16:05 -0400)]
Issue 4979/2: Add regression test for non-merging ledger lines

7 years agoIssue 4979/1: Don't merge non-overlapping ledger lines
Paul Morris [Sun, 2 Oct 2016 19:52:14 +0000 (15:52 -0400)]
Issue 4979/1: Don't merge non-overlapping ledger lines

7 years agoIssue 4974/4: Fix input/regression/id.ly
Paul Morris [Wed, 5 Oct 2016 21:10:33 +0000 (17:10 -0400)]
Issue 4974/4: Fix input/regression/id.ly

Undoes the automatic conversion by
scripts/auxiliar/update-with-convert-ly.sh
that slipped into the previous commit
for this issue by oversight.

7 years agoWeb-fr: missing divEnd
Jean-Charles Malahieude [Wed, 5 Oct 2016 17:09:20 +0000 (19:09 +0200)]
Web-fr: missing divEnd

7 years agoIssue 4974/3: edits to tests and changes.tely
Paul Morris [Tue, 4 Oct 2016 15:23:34 +0000 (11:23 -0400)]
Issue 4974/3: edits to tests and changes.tely

7 years agoIssue 4974/2: convert-ly rule: id -> output-attributes
Paul Morris [Tue, 4 Oct 2016 15:13:27 +0000 (11:13 -0400)]
Issue 4974/2: convert-ly rule: id -> output-attributes

Running scripts/auxiliar/update-with-convert-ly.sh
with the new rule produced no changes, so there is
no separate commit for that step.

7 years agoIssue 4974/1: Add output-attributes grob property
Paul Morris [Sun, 18 Sep 2016 15:32:05 +0000 (11:32 -0400)]
Issue 4974/1: Add output-attributes grob property

It is used for setting multiple attributes on <g>
nodes in SVG output, specified as an alist. The id
grob property is no longer used for this.

7 years agoDoc: update toplevel-score-handler definition reference
Paul Morris [Sun, 25 Sep 2016 14:24:16 +0000 (10:24 -0400)]
Doc: update toplevel-score-handler definition reference

The file where the default handler is defined has changed.

7 years agoMerge branch 'master' into translation
Jean-Charles Malahieude [Sun, 2 Oct 2016 14:54:55 +0000 (16:54 +0200)]
Merge branch 'master' into translation

7 years agoDoc: fix bad xref mentionned in snippets.bigtexi.log
Jean-Charles Malahieude [Sun, 2 Oct 2016 11:16:08 +0000 (13:16 +0200)]
Doc: fix bad xref mentionned in snippets.bigtexi.log

7 years agoWeb-ja: fix links
Masamichi Hosoda [Sun, 2 Oct 2016 03:51:51 +0000 (12:51 +0900)]
Web-ja: fix links

7 years agoMerge branch 'master' into translation
Jean-Charles Malahieude [Sat, 1 Oct 2016 15:48:26 +0000 (17:48 +0200)]
Merge branch 'master' into translation

7 years agoDoc-fr: NR-input
Jean-Charles Malahieude [Sat, 1 Oct 2016 15:44:40 +0000 (17:44 +0200)]
Doc-fr: NR-input

7 years agoweb-fr: updates for new front page
Jean-Charles Malahieude [Sat, 1 Oct 2016 15:43:24 +0000 (17:43 +0200)]
web-fr: updates for new front page

7 years agoWeb-ja: update translation
Masamichi Hosoda [Wed, 28 Sep 2016 13:17:01 +0000 (22:17 +0900)]
Web-ja: update translation

7 years agoIssue 4969: Update texinfo.tex from upstream
Masamichi Hosoda [Wed, 14 Sep 2016 12:30:53 +0000 (21:30 +0900)]
Issue 4969: Update texinfo.tex from upstream

texinfo.tex ver. 2016-09-17.16
It is newer than Texinfo-6.3's.

7 years agoIssue 4972: Make music-filter more conservative
David Kastrup [Thu, 15 Sep 2016 12:50:14 +0000 (14:50 +0200)]
Issue 4972: Make music-filter more conservative

Deleting music when its 'elements field becomes null? led
to repeat chords disappearing when articulations were
removed.

7 years agoWeb: add/update news headline for LilyPond 2.19.48 release
Paul Morris [Sun, 25 Sep 2016 13:52:54 +0000 (09:52 -0400)]
Web: add/update news headline for LilyPond 2.19.48 release

7 years agoIssue 4962: Web: remove htaccess redirect from news page to home page
Paul Morris [Sat, 24 Sep 2016 17:36:26 +0000 (13:36 -0400)]
Issue 4962: Web: remove htaccess redirect from news page to home page

7 years agoIssue 4962: Web: home page: add example image, reduce news to headlines
Paul Morris [Mon, 29 Aug 2016 04:27:19 +0000 (00:27 -0400)]
Issue 4962: Web: home page: add example image, reduce news to headlines

The example image is the excerpt from Bach BWV 861 from the essay.
Anchor links are used to link to specific examples on the examples
page.  The news entries on the home page are reduced to just a list
of headlines that link to specific entries on the 'Old News' page
(under 'Community').  And that page is renamed to just 'News'.

7 years agoIssue 4968/3: Let stencil-whiteout-outline use degrees
David Kastrup [Wed, 31 Aug 2016 13:25:16 +0000 (15:25 +0200)]
Issue 4968/3: Let stencil-whiteout-outline use degrees

7 years agoIssue 4968/2: Replace coord-rotate with coord-rotated
David Kastrup [Tue, 30 Aug 2016 17:41:07 +0000 (19:41 +0200)]
Issue 4968/2: Replace coord-rotate with coord-rotated

Also fixes the look/definition of the high f# saxophone key.

7 years agoIssue 4968/1: Add coord-rotated function
David Kastrup [Tue, 30 Aug 2016 17:40:06 +0000 (19:40 +0200)]
Issue 4968/1: Add coord-rotated function

Uses it for implementing coord-rotate.

7 years agoDoc: Fix broken XRefs
Trevor Daniels [Sun, 18 Sep 2016 19:42:55 +0000 (20:42 +0100)]
Doc: Fix broken XRefs

7 years agoDoc: Complete the list of on-the-fly procedures
Trevor Daniels [Sun, 18 Sep 2016 18:46:21 +0000 (19:46 +0100)]
Doc: Complete the list of on-the-fly procedures

7 years agoDoc-fr: updates EM and NR
Jean-Charles Malahieude [Sat, 17 Sep 2016 15:49:19 +0000 (17:49 +0200)]
Doc-fr: updates EM and NR

7 years agoMerge branch 'master' into translation
Jean-Charles Malahieude [Sat, 17 Sep 2016 14:05:08 +0000 (16:05 +0200)]
Merge branch 'master' into translation

7 years agoRelease: bump VERSION.
Phil Holmes [Wed, 14 Sep 2016 08:33:01 +0000 (09:33 +0100)]
Release: bump VERSION.

7 years agoRelease: bump Welcome versions.
Phil Holmes [Tue, 13 Sep 2016 10:09:38 +0000 (11:09 +0100)]
Release: bump Welcome versions.

7 years agoRelease: update news.
Phil Holmes [Tue, 13 Sep 2016 10:09:38 +0000 (11:09 +0100)]
Release: update news.

7 years agoPO: update template.
Phil Holmes [Tue, 13 Sep 2016 10:09:38 +0000 (11:09 +0100)]
PO: update template.

7 years agoRelease: bump VERSION_DEVEL.
Phil Holmes [Tue, 13 Sep 2016 10:09:38 +0000 (11:09 +0100)]
Release: bump VERSION_DEVEL.

7 years agoKeep a staff alive with multiple layers
Mark Knoop [Thu, 8 Sep 2016 17:56:16 +0000 (18:56 +0100)]
Keep a staff alive with multiple layers

This allows the `VerticalAxisGroup.remove-layer'
property to accept a list of values. The layer
will stay alive with any other member of the
Keep_alive_together_engrave group with a
remove-layer value in that list.

The principal reason for this patch was to
allow the use of MarkLine contexts in a Frenched
score, where the context should stay alive with
any single staff in a StaffGroup.

This implementation should also allow additional
flexibility with ossia and divisi staves.

7 years agoIssue 4965: Create and use Grob::parent_relative
David Kastrup [Fri, 2 Sep 2016 21:11:53 +0000 (23:11 +0200)]
Issue 4965: Create and use Grob::parent_relative

This function checks for the existence of a Grob parent before
calculating a coordinate relative to it.  This should hopefully
clean up the most relevant problems caused by issue 4814
and the original GCC 6 optimization causing it.

7 years agoIssue 4961/7: Remove complex{conjugate,divide,exp}, Offset::arg
David Kastrup [Mon, 29 Aug 2016 09:45:41 +0000 (11:45 +0200)]
Issue 4961/7: Remove complex{conjugate,divide,exp}, Offset::arg

They are promoting aspects of Offset not well-suited to graphics.