]> git.donarmstrong.com Git - lilypond.git/log
lilypond.git
12 years agoRelease: update news. release/2.15.5-1
Graham Percival [Tue, 12 Jul 2011 20:52:22 +0000 (13:52 -0700)]
Release: update news.

12 years ago Doc [nl]: Translation update.
Jan Nieuwenhuizen [Tue, 12 Jul 2011 18:51:43 +0000 (20:51 +0200)]
 Doc [nl]: Translation update.

12 years agoFix #1581: Only NoteEvents can cause a tie. Ignore all other events that create note...
Reinhold Kainhofer [Sun, 10 Jul 2011 19:41:55 +0000 (21:41 +0200)]
Fix #1581: Only NoteEvents can cause a tie. Ignore all other events that create note heads

12 years agoFix issues 75 and 1256: Allow multiple concurrent slurs
Reinhold Kainhofer [Sat, 2 Jul 2011 20:23:53 +0000 (22:23 +0200)]
Fix issues 75 and 1256: Allow multiple concurrent slurs

Rewrite the Slur_engraver and the Phrasing_slur_engraver to support
multiple concurrent slurs. The default lilypond syntax using parentheses
still supports only one slur at a time, but by adding a spanner-id property
to the (Phrasing)SlurEvent music expression, one can create multiple
concurrent slurs, each with a different spanner-id.

This finally allows appoggiaturas and acciaccaturas (which both create a
slur from the grace note the the next note) to be placed inside a slur.

If we observe a new slur start while a slur is already present, we now
totally ignore the new slur event, so it does not influence the appearance
of the existing slur (bug 1256)

12 years agoFix 1676: Properly count the notes in a chord tremolo (ignore all non-note events)
Reinhold Kainhofer [Sun, 10 Jul 2011 21:12:12 +0000 (23:12 +0200)]
Fix 1676: Properly count the notes in a chord tremolo (ignore all non-note events)

12 years agofix 750: No warning for non-found voice in lyrics combine when lyrics are empty
Reinhold Kainhofer [Mon, 16 Nov 2009 17:57:26 +0000 (18:57 +0100)]
fix 750: No warning for non-found voice in lyrics combine when lyrics are empty

Use a bool flag to store whether the Lyrics context was ever really created
(i.e. one moment was processed). If that's not the case, then the lyrics
are empty, and we shouldn't print any warning about non-existing voices
(since we never even tried to find an appropriate voice; and we also don't
need one anyway).

Fixes isse 750 (http://code.google.com/p/lilypond/issues/detail?id=750)

12 years agoCG: add final GOP-PROP 2: contrib. and mentors
Graham Percival [Tue, 12 Jul 2011 14:10:48 +0000 (07:10 -0700)]
CG: add final GOP-PROP 2: contrib. and mentors

12 years agoPitch bend tuning fixes
Graham Breed [Thu, 23 Jun 2011 23:12:52 +0000 (00:12 +0100)]
Pitch bend tuning fixes

1) The pitch isn't always rounded to the nearest equally
tempered value, so the result looks strange in a sequencer,
and artifacts caused by the pitch bends are more severe.

2) The tuning is rounded to cents before the pitch bends
are calculated.  It may not be a big deal, but there's no
need for it, and the code's simpler calculating the bends
directly.

12 years agoFlag functions instead of defining glyphs directly
Janek Warchoł [Mon, 11 Jul 2011 06:31:11 +0000 (08:31 +0200)]
Flag functions instead of defining glyphs directly

We will need many length variants of every flag.
Therefore instead of writing flag code directly
in glyph definition, it should be written as
a function and called back later as appropriate.
The argument shortening is the amount the flag
should be shorter than default.
As for now it is used in a very primitive way,
only to demonstrate the shortening effect
and to test c++ code on something.

12 years agoRemove extra sequential block from regtest
Carl Sorensen [Sun, 10 Jul 2011 22:48:49 +0000 (16:48 -0600)]
Remove extra sequential block from regtest

12 years agoSimplify ambitus-with-ligature regression test
Carl Sorensen [Sun, 10 Jul 2011 22:32:38 +0000 (16:32 -0600)]
Simplify ambitus-with-ligature regression test

12 years agoFix #1751: Create HorizontalBracket grobs with correct event-cause.
Neil Puttock [Sun, 10 Jul 2011 21:59:33 +0000 (22:59 +0100)]
Fix #1751: Create HorizontalBracket grobs with correct event-cause.

* input/regression (horizontal-bracket-tweak.ly)

  new regtest: test \tweak behaviour for nested brackets

* lily/horizontal-bracket-engraver.cc (stop_translation_timestep):

  clear stored start-events so they don't hang around beyond the current
  timestep

12 years agoFix Issue 770: Lyrics attached to a voice-derived context are off by 1
Reinhold Kainhofer [Sat, 2 Jul 2011 11:14:34 +0000 (13:14 +0200)]
Fix Issue 770: Lyrics attached to a voice-derived context are off by 1

The Lyric_combine_music_iterator had an explicit check if the CreateContext
event was really for a context of type "Voice". Unfortunately, that
check fails if the lyrics are supposed to be attached to a CueVoice
context (or some self-defined Voice-derived context!), because
"CueVoice"!="Voice".

Unfortunately, I don't know how to check whether a context "CVoice"
(identified only by a the context type string; we don't have any
Context* object!) is an alias for Voice. If we had the Context* object,
we could use is_alias, but we only have the string "CVoice" and need to
check if a context of that type is an alias for "Voice".

However, I don't think that check is necessary at all. It simply prevents
find_voice from being called in cases when no Voice is generated (and thus
no new context to possibly attach the lyrics to). If that check is removed,
find_voice will also be called for any other context created while
waiting for a voice to attach the lyrics to, but it will not find an
appropriate voice anyway.

12 years agoDoc: NR minor syntax additions to cue and quotes
James Lowe [Sun, 10 Jul 2011 20:39:42 +0000 (21:39 +0100)]
Doc: NR minor syntax additions to cue and quotes

Tidied up some missing articles, added a comma and tidied up the
@knownissue for \addQuote removing one line because it seemed
extraneous.

12 years agoFix segfault with ambitus and ligature (Issue 1715)
Carl Sorensen [Sun, 3 Jul 2011 21:07:05 +0000 (15:07 -0600)]
Fix segfault with ambitus and ligature (Issue 1715)

Add ligature-head-interface, and assign to NoteHead.

Change acknowledger to acknowledge ligature-head instead of note-head

Also includes regression test.

12 years agoSeparate flags into their own sub-font.
Carl Sorensen [Sat, 25 Jun 2011 03:38:00 +0000 (21:38 -0600)]
Separate flags into their own sub-font.

When we have lots of flag sizes, there will be lots of glyphs.

With a maximum of 256-32 = 234 glyphs per sub font, we wanted to
have flags in their own sub font.

But flags depend on notehead widths, so they needed to be in the
same subfont as the noteheads.

This patch moves the notehead parameters from feta-noteheads.mf to
feta-params.mf, so the basic notehead parameters are available to
all subfonts.

Also, AFAICS, bigcheese.pe.in is no longer used -- it doesn't show
up anywhere in a git grep, except as having been renamed.  It doesn't
show up in GNUmakefile.  So I deleted it.

12 years agoDoc: NR 1.1.2 - @knownissue for transposing
James Lowe [Fri, 8 Jul 2011 15:54:03 +0000 (16:54 +0100)]
Doc: NR 1.1.2 - @knownissue for transposing

Tracker issue 1750.

12 years agoWeb: Added Link to LSR
James Lowe [Wed, 6 Jul 2011 19:46:32 +0000 (20:46 +0100)]
Web: Added Link to LSR

Tracker issue 1664

12 years agoAdd display method for \tweak.
Neil Puttock [Thu, 7 Jul 2011 19:10:20 +0000 (20:10 +0100)]
Add display method for \tweak.

* input/regression/display-lily-tests.ly:

  add tests for \tweak

* scm/define-music-display-methods.scm

  (scheme-expr->lily-string): don't funnel booleans through pretty-print
  (EventChord): treat simple_element with 'tweaks list as note_chord_element
                to preserve < > around tweaked note

* scm/display-lily.scm (music->lily-string):

  process 'tweaks via new function tweaks->lily-string

12 years agoRevert "Doc-hu: trying to build PDF"
Francisco Vila [Wed, 6 Jul 2011 17:55:00 +0000 (19:55 +0200)]
Revert "Doc-hu: trying to build PDF"

This reverts commit 71cea6af77bf3d639dcfd8ad09fd235aab22c5f7.
It broke doc build in hu/

12 years agoCG: fix spurious backslash.
Francisco Vila [Wed, 6 Jul 2011 11:40:34 +0000 (13:40 +0200)]
CG: fix spurious backslash.

12 years agoMerge branch 'master' into lilypond/translation
Francisco Vila [Tue, 5 Jul 2011 11:05:06 +0000 (13:05 +0200)]
Merge branch 'master' into lilypond/translation

12 years agoDoc: LSR update
Valentin Villenave [Tue, 5 Jul 2011 09:15:12 +0000 (11:15 +0200)]
Doc: LSR update

12 years agoMoves calculations for simple Y to line-spanner.cc.
Mike Solomon [Tue, 5 Jul 2011 07:08:14 +0000 (09:08 +0200)]
Moves calculations for simple Y to line-spanner.cc.

This avoids resetting the bound-info alist and fixes any bugs where
the Y coordinates of the last glissando in a piece are transmitted
to all glissandi.

12 years agoDoc-es: update Input -- Stable.
Francisco Vila [Tue, 5 Jul 2011 01:00:11 +0000 (03:00 +0200)]
Doc-es: update Input -- Stable.

12 years agoMerge branch 'lilypond/translation' of ssh://thsoft@git.sv.gnu.org/srv/git/lilypond...
Dénes Harmath [Tue, 5 Jul 2011 00:58:46 +0000 (02:58 +0200)]
Merge branch 'lilypond/translation' of ssh://thsoft@git.sv.gnu.org/srv/git/lilypond.git into lilypond/translation

12 years agoDoc-hu: Fixed typo
Dénes Harmath [Tue, 5 Jul 2011 00:50:33 +0000 (02:50 +0200)]
Doc-hu: Fixed typo

12 years agoDoc-hu: trying to build PDF
Dénes Harmath [Tue, 5 Jul 2011 00:49:08 +0000 (02:49 +0200)]
Doc-hu: trying to build PDF

12 years agopitch.cc: Add default value for alteration
Carl Sorensen [Tue, 5 Jul 2011 00:37:52 +0000 (18:37 -0600)]
pitch.cc: Add default value for alteration

12 years agoCG: adds trimpng script to sect 8.5
Colin Campbell [Mon, 4 Jul 2011 18:58:02 +0000 (12:58 -0600)]
CG: adds trimpng script to sect 8.5

Added reference to trimpng.sh in CG 8.5 Adding Issues

12 years agoDoc-es: update Staff -- stable.
Francisco Vila [Mon, 4 Jul 2011 14:27:01 +0000 (16:27 +0200)]
Doc-es: update Staff -- stable.

12 years agoBraces redesigned
Bertrand Bordage [Mon, 13 Jun 2011 19:07:21 +0000 (21:07 +0200)]
Braces redesigned

Small and large braces are more consistent.

12 years agoRelease: bump version.
Graham Percival [Mon, 4 Jul 2011 12:46:35 +0000 (13:46 +0100)]
Release: bump version.

12 years agoRelease: update news. release/2.15.4-1
Graham Percival [Mon, 4 Jul 2011 11:23:46 +0000 (12:23 +0100)]
Release: update news.

12 years agoMerge remote branch 'origin' into release/unstable
Graham Percival [Mon, 4 Jul 2011 11:23:23 +0000 (12:23 +0100)]
Merge remote branch 'origin' into release/unstable

12 years agoCG: reminder about GOP initalization lists.
Graham Percival [Sun, 3 Jul 2011 20:01:37 +0000 (21:01 +0100)]
CG: reminder about GOP initalization lists.

12 years agolilymidi: Add --pretty switch to lilymidi.py to display midi data in human-readable...
Reinhold Kainhofer [Mon, 16 Nov 2009 17:58:11 +0000 (18:58 +0100)]
lilymidi: Add --pretty switch to lilymidi.py to display midi data in human-readable form

12 years agoCG: add gop item for "always issue number".
Graham Percival [Sun, 3 Jul 2011 11:31:13 +0000 (12:31 +0100)]
CG: add gop item for "always issue number".

12 years agoDoc -- CG: Respond to Werner's comments on Fonts section
Carl Sorensen [Sun, 3 Jul 2011 05:00:13 +0000 (23:00 -0600)]
Doc -- CG: Respond to Werner's comments on Fonts section

12 years agoPrint fewer cancelling naturals. issue 1701
Keith OHara [Sun, 19 Jun 2011 01:45:56 +0000 (18:45 -0700)]
Print fewer cancelling naturals. issue 1701

Print extra natural when a single sharp lowers a double sharp,
 but not when a single sharp raises a flat.

12 years agoFixes the multi-line glissandos to use more intelligent line breaks.
Mike Solomon [Sat, 2 Jul 2011 21:09:06 +0000 (23:09 +0200)]
Fixes the multi-line glissandos to use more intelligent line breaks.

12 years agoCG: add explicit "make" to doc-build instructions
Graham Percival [Sat, 2 Jul 2011 11:42:00 +0000 (12:42 +0100)]
CG: add explicit "make" to doc-build instructions

12 years agoRelease: update news.
Graham Percival [Fri, 1 Jul 2011 23:51:54 +0000 (00:51 +0100)]
Release: update news.

12 years agoRevert "CG: link to MetaFont's doc." origin/dev/kainhofer
Graham Percival [Fri, 1 Jul 2011 23:45:41 +0000 (00:45 +0100)]
Revert "CG: link to MetaFont's doc."

This reverts commit 4ff3911fee47369023e0588043d24f7bbd86cd86.

This appears to be an unauthorized copy of the book.

12 years agoClean up regtests for usable-duration-logs (issues 1655, 1716)
Carl Sorensen [Fri, 1 Jul 2011 22:42:02 +0000 (16:42 -0600)]
Clean up regtests for usable-duration-logs (issues 1655, 1716)

Add convert-ly rule

Fix vesions on regtests to be the version to which the commit applied.

12 years agoImplements multiple-line non-cross-staff glissandi.
Mike Solomon [Fri, 1 Jul 2011 09:36:41 +0000 (11:36 +0200)]
Implements multiple-line non-cross-staff glissandi.

Glissandi, not being placed outside the staff, are not bumped up or
down depending on other outside staff grobs that may appear after
a line break.  Thus, all they need to know are the terminus positions
on the Y axis in order to be typeset.  This means that they can span
multiple lines.

12 years agoMerge branch 'master' of ssh://git.sv.gnu.org/srv/git/lilypond
Mike Solomon [Wed, 29 Jun 2011 07:06:57 +0000 (09:06 +0200)]
Merge branch 'master' of ssh://git.sv.gnu.org/srv/git/lilypond

12 years agoFixes whitespace error in slur-configuration.cc.
Mike Solomon [Wed, 29 Jun 2011 07:06:21 +0000 (09:06 +0200)]
Fixes whitespace error in slur-configuration.cc.

12 years agoWeb: Added --help option to unix downloads
James Lowe [Tue, 28 Jun 2011 20:17:18 +0000 (21:17 +0100)]
Web: Added --help option to unix downloads

12 years agoDoc: NR @knownissue for partCombine + spanners
James Lowe [Sat, 25 Jun 2011 20:09:15 +0000 (21:09 +0100)]
Doc: NR @knownissue for partCombine + spanners

Also took the opportunity to tidy up the syntax and correct some of the
examples as per the CG.

Added an @seealso that references back to autobeaming where another
@knownissue for \partcombining is referred to.

12 years agoRelease: bump version.
Graham Percival [Tue, 28 Jun 2011 11:00:39 +0000 (12:00 +0100)]
Release: bump version.

12 years agoMerge branch 'release/unstable'
Graham Percival [Tue, 28 Jun 2011 11:00:27 +0000 (12:00 +0100)]
Merge branch 'release/unstable'

12 years agoMake lilypond's way of calling mf2pt1 work again with recent mpost versions.
Werner Lemberg [Tue, 28 Jun 2011 06:11:19 +0000 (08:11 +0200)]
Make lilypond's way of calling mf2pt1 work again with recent mpost versions.

12 years agoDoc: Contributor -- more info on fonts
Carl Sorensen [Tue, 28 Jun 2011 03:49:20 +0000 (21:49 -0600)]
Doc: Contributor -- more info on fonts

12 years agoDoc: Contributor: Add section on fonts
Carl Sorensen [Tue, 28 Jun 2011 03:10:34 +0000 (21:10 -0600)]
Doc: Contributor: Add section on fonts

12 years agoRelease: update news. release/2.15.3-1
Graham Percival [Mon, 27 Jun 2011 17:38:34 +0000 (18:38 +0100)]
Release: update news.

12 years agoCG: fix typo in bug squad daily schedule.
Graham Percival [Sun, 26 Jun 2011 16:26:04 +0000 (17:26 +0100)]
CG: fix typo in bug squad daily schedule.

12 years agoDoc: CG remove ugly bars at end of lines in doc
James Lowe [Fri, 24 Jun 2011 19:06:37 +0000 (20:06 +0100)]
Doc: CG remove ugly bars at end of lines in doc

Caused by 'too long' lines in tely/texi files.

Using a variety of methods to break lines that are not normally broken

use @smallexample or ' \ ' in the case of long CLI syntax

Tracker issue 1691

12 years agoCG: revise Bug Squad membership and time.
Graham Percival [Sun, 26 Jun 2011 14:16:52 +0000 (15:16 +0100)]
CG: revise Bug Squad membership and time.

12 years agoRevert "Redirects lilypond output to reduce make doc noise"
Graham Percival [Sat, 25 Jun 2011 23:29:53 +0000 (00:29 +0100)]
Revert "Redirects lilypond output to reduce make doc noise"

This reverts commit 3623cfc12bb53499a591ae45ac61931bafc6bf20.

The patch as it currently stands appears to lose build
information -- at the very least, even if that information
is present somewhere, it is too confusing to find important
information about a failing build.  More work is needed before
we add such functionality.

12 years agoFixes issue 1706, issues a programming error at old assert error.
Mike Solomon [Sat, 25 Jun 2011 17:10:50 +0000 (19:10 +0200)]
Fixes issue 1706, issues a programming error at old assert error.

12 years agoReplace Tab with 8 spaces for .py files #2
James Lowe [Fri, 24 Jun 2011 13:25:55 +0000 (14:25 +0100)]
Replace Tab with 8 spaces for .py files #2

As per GOP Prop 1 - Pythin formatting

All files in /scripts/auxillar/ and /scripts/build/ and one in /scripts/
missed from last check-in

12 years agoReplace Tab with 8 Spaces for .py files
James Lowe [Fri, 24 Jun 2011 03:12:54 +0000 (04:12 +0100)]
Replace Tab with 8 Spaces for .py files

As per GOP prop 1 - Python formatting

All files in /python/ and /scripts/ were checked

12 years agoCG: add final GOP-POPR 1: python formatting
Graham Percival [Thu, 23 Jun 2011 22:42:58 +0000 (23:42 +0100)]
CG: add final GOP-POPR 1: python formatting

12 years agoDoc-es: build an HTML Changes manual in Spanish.
Francisco Vila [Thu, 23 Jun 2011 00:47:21 +0000 (02:47 +0200)]
Doc-es: build an HTML Changes manual in Spanish.

12 years agoMerge branch 'master' into lilypond/translation
Francisco Vila [Wed, 22 Jun 2011 11:39:54 +0000 (13:39 +0200)]
Merge branch 'master' into lilypond/translation

12 years agoWEB: update versions in .htaccess
Colin Campbell [Wed, 22 Jun 2011 02:13:35 +0000 (20:13 -0600)]
WEB: update versions in .htaccess

Updates redirect versions from 2.12 -> 2.14 and 2.13 -> 2.15

12 years agoWEB: update distro specific download versions
Colin Campbell [Wed, 22 Jun 2011 01:50:12 +0000 (19:50 -0600)]
WEB: update distro specific download versions

Updates the verion numbers in the Distribution Specific Packages area.

12 years agoDoc-de: minor updates
Till Paala [Tue, 21 Jun 2011 19:03:03 +0000 (22:03 +0300)]
Doc-de: minor updates

12 years agoCG: add some major release notes.
Graham Percival [Tue, 21 Jun 2011 12:36:25 +0000 (13:36 +0100)]
CG: add some major release notes.

12 years agoCueClefs: Use middleCClefPosition in the key engraver
Reinhold Kainhofer [Tue, 12 Apr 2011 12:00:00 +0000 (14:00 +0200)]
CueClefs: Use middleCClefPosition in the key engraver

Otherwise the key signature would use the clef of the cue part, which is not what we want

12 years agoDoc: Typo from last commit
James Lowe [Mon, 20 Jun 2011 00:44:03 +0000 (01:44 +0100)]
Doc: Typo from last commit

Sorry.

12 years agoDoc: NR minor edits to Clef and Cue section
James Lowe [Mon, 20 Jun 2011 00:06:41 +0000 (01:06 +0100)]
Doc: NR minor edits to Clef and Cue section

Just to tie up the two sections together with some
@seealso entries plus references in the main 'Clef' section
to mention \cueClef and \cueDuringWithClef.

Corrected a few 'double-spacing after period' corrections.

12 years agobackslash format in download web page for Windows (C:\Program Files)
Frederic Bron [Sun, 19 Jun 2011 19:30:51 +0000 (21:30 +0200)]
backslash format in download web page for Windows (C:\Program Files)

12 years agoRelease: bump version.
Graham Percival [Sun, 19 Jun 2011 12:10:46 +0000 (13:10 +0100)]
Release: bump version.

12 years agoMerge remote branch 'origin' into release/unstable release/2.15.2-1
Graham Percival [Sun, 19 Jun 2011 09:28:44 +0000 (10:28 +0100)]
Merge remote branch 'origin' into release/unstable

12 years agoAdd ties from Completion_note_heads_engraver to a TieColumn.
Neil Puttock [Sat, 18 Jun 2011 23:00:11 +0000 (00:00 +0100)]
Add ties from Completion_note_heads_engraver to a TieColumn.

* lily/completion-note-heads-engraver.cc (process_music):

  if note splitting causes creation of ties, also create a TieColumn and
  add ties to it to ensure correct formatting in chords

  tidy code

12 years agoFix #1696: Bad breathing sign Y-offset when using line-positions.
Neil Puttock [Sat, 18 Jun 2011 22:51:56 +0000 (23:51 +0100)]
Fix #1696: Bad breathing sign Y-offset when using line-positions.

* input/regression/breathing-sign-custom-staff.ly

  new regtest

* lily/breathing-sign.cc (offset_callback):

  use Staff_symbol::line_span () to calculate offset instead of
  Staff_symbol_referencer::line_count (): the latter is only useful for
  symmetrical staves

  tidy code; remove obsolete TODO

12 years agoProperty setting in lyrics: allow markup
Neil Puttock [Sat, 18 Jun 2011 22:42:46 +0000 (23:42 +0100)]
Property setting in lyrics: allow markup

* input/regression/stanza-number.ly:

  test markup as well as bare string

* lily/parser.yy (scalar):

  use lyric_element instead of LYRICS_STRING

12 years agoCompile fix for FreeBSD builds.
Neil Puttock [Sat, 18 Jun 2011 17:47:03 +0000 (18:47 +0100)]
Compile fix for FreeBSD builds.

* lily/multi-measure-rest.cc (measure_duration_log):

  log2(3) isn't supported in older FreeBSD versions, so use log_2 from
  lily/misc.cc instead

12 years agoAdded missing semi-colon to fret .ly file
James Lowe [Sat, 18 Jun 2011 10:21:50 +0000 (11:21 +0100)]
Added missing semi-colon to fret .ly file

Tracker issue 1665

12 years agoDoc: Added \cueClef command
James Lowe [Mon, 6 Jun 2011 16:38:52 +0000 (17:38 +0100)]
Doc: Added \cueClef command

Added usage of \cueClef and \cueClefUnset commands.

Added some @cindex and @funindex entries

Moved the small section for cueVoice to the top and updated the first two examples
to be more in keeping with the preceding examples added for
\cueDuringWithCleff.

Added new @lilyponds showing how to use \cueClef with CueVoice

12 years agoRelease: update news.
Graham Percival [Sat, 18 Jun 2011 13:24:29 +0000 (14:24 +0100)]
Release: update news.

12 years agoMerge remote branch 'origin' into release/unstable
Graham Percival [Sat, 18 Jun 2011 13:22:33 +0000 (14:22 +0100)]
Merge remote branch 'origin' into release/unstable

Conflicts:
Documentation/web/news-front.itexi

12 years agoVertical spacing, distinguish stretchability/compressibility
Keith OHara [Sun, 29 May 2011 06:38:34 +0000 (23:38 -0700)]
Vertical spacing, distinguish stretchability/compressibility

When stretchability is changed,
leave inverse_compression_strength alone.

12 years agoevent-listener.ly: add ties to demonstration
Graham Percival [Sat, 18 Jun 2011 01:13:18 +0000 (02:13 +0100)]
event-listener.ly: add ties to demonstration

12 years agoScrubs anchor-align and anchor_align from the Line_spanner_interface.
Mike Solomon [Thu, 16 Jun 2011 12:32:34 +0000 (14:32 +0200)]
Scrubs anchor-align and anchor_align from the Line_spanner_interface.

12 years agoModifies Spanner::spanner_length to better handle line spanners.
Mike Solomon [Thu, 16 Jun 2011 08:34:48 +0000 (10:34 +0200)]
Modifies Spanner::spanner_length to better handle line spanners.

With this change, the normalized endpoints should be correct for
all spanners with correct bound information.

12 years agoGive a double to the pow function instead of an integer.
Mike Solomon [Thu, 16 Jun 2011 08:33:43 +0000 (10:33 +0200)]
Give a double to the pow function instead of an integer.

This allows lilypond master to compile correctly on all systems.

12 years agoAUTHORS: update for 2.15.
Graham Percival [Wed, 15 Jun 2011 15:57:04 +0000 (16:57 +0100)]
AUTHORS: update for 2.15.

Move all *Current contributors to *Previous.  Left Bug Squad alone
because they're still doing the same thing.  Added a few names
from git of people who've gotten stuff added to 2.15.

12 years agoCG: update GOP list, add url to agenda.
Graham Percival [Wed, 15 Jun 2011 15:47:31 +0000 (16:47 +0100)]
CG: update GOP list, add url to agenda.

12 years agoRemove duplicate ties for chords autosplit (1630)
Karin Hoethker [Wed, 25 May 2011 11:38:29 +0000 (13:38 +0200)]
Remove duplicate ties for chords autosplit (1630)

12 years agodescribing regression checking more explicitely
Janek Warchol [Tue, 14 Jun 2011 21:32:16 +0000 (23:32 +0200)]
describing regression checking more explicitely

12 years agodoc: fixing snippet fretted-string-harmonics
Janek Warchol [Wed, 15 Jun 2011 10:14:31 +0000 (12:14 +0200)]
doc: fixing snippet fretted-string-harmonics

fretted-string-harmonics-in-tablature.ly
contained some mistakes (erroneus notation)

12 years agoCG: link to MetaFont's doc.
Bertrand Bordage [Tue, 14 Jun 2011 22:06:42 +0000 (00:06 +0200)]
CG: link to MetaFont's doc.

12 years agoLSR: run make-lsr.py locally.
Graham Percival [Wed, 15 Jun 2011 09:31:54 +0000 (10:31 +0100)]
LSR: run make-lsr.py locally.

12 years agoFix #1679: Premature end to TextSpanner with full-bar rest.
Neil Puttock [Tue, 14 Jun 2011 21:51:50 +0000 (22:51 +0100)]
Fix #1679: Premature end to TextSpanner with full-bar rest.

* input/regression/text-spanner-full-rest.ly:

  new regtest

* lily/text-spanner-engraver.cc (acknowledge_note_column):

  only add bound item for current spanner if it doesn't already have its
  left bound set to prevent right bound being set prematurely

12 years agoAdds longas, maximas and non-standard tweaks to MultiMeasureRest.
Bertrand Bordage [Thu, 26 May 2011 20:53:47 +0000 (22:53 +0200)]
Adds longas, maximas and non-standard tweaks to MultiMeasureRest.

Fix issue 1655.

12 years agoDoc: Updated LP Welcome Screen for Macos
James Lowe [Tue, 14 Jun 2011 15:02:32 +0000 (16:02 +0100)]
Doc: Updated LP Welcome Screen for Macos

Updated so it shows latest stable in the \version instead of
older unstable.

12 years agodoc: changing example for overriding positions
Janek Warchol [Sun, 12 Jun 2011 10:41:44 +0000 (12:41 +0200)]
doc: changing example for overriding positions

example in LM 4.5.2 (fixing beam collision)
is outdated because beam collision has been
implemented, so there is nothing to fix.
Therefore I change the type of collision
to beam-tie collision.