Carl Sorensen [Sat, 18 Feb 2012 16:49:56 +0000 (09:49 -0700)]
Set context properties to allow half-measure beaming in 3/4 (Issue 2246)
Introduce beamWholeMeasure, which allows beaming of a whole measure of
eighth notes in 3/4 time (but not beaming of a half measure, since it
appears to be a 6/8 beaming). By default, set to #t.
Introduce beamHalfMeasure, which allows beaming of a half measure of
eighth notes in 3/4 time. By default, set to #f.
A non-empty beamExceptions entry will override beamHalfMeasure and
beamWholeMeasure, since user-specified rules should override defaults.
Includes updated documentation in English docs, and a new regtest. No
changes to translated docs.
Janek Warchoł [Tue, 14 Feb 2012 10:00:06 +0000 (11:00 +0100)]
Web&CG: remove "projects" from HelpUs
CG 1.1 Help us and website community/help us both contain
"projects" section, but:
- noone knows when GLISS will happen
- Frogs are nonexistent at the moment
- GOP is paused, but even if it weren't, i don't think that
it's important for a newcomer to know about it.
Therefore i'm commenting these out (not deleting,
because they may be needed again).
Julien Rioux [Fri, 16 Dec 2011 22:36:20 +0000 (17:36 -0500)]
Build: Fix dependencies for translated manuals (issue 2125).
Don't rebuild everything each time unless necessary. The rules for
processing texi docs are already provided in stepmake/texinfo-rules
and we do not need to repeat them here. Simply copy the translated
files over to the main documentation with the language suffix added.
Julien Rioux [Tue, 7 Feb 2012 16:51:16 +0000 (11:51 -0500)]
Build: Use order-only prerequisites in lilypond-book chain rule.
The chain rule makes sure that only one instance of lilypond-book
is running at once. However, it also adds superficial dependencies
between manuals. We can avoid this using GNU make's order-only
syntax for prerequisites, which adds a pipe (|) character in front.
Julien Rioux [Tue, 21 Feb 2012 10:38:10 +0000 (05:38 -0500)]
Build: Remove .PRECIOUS flags.
Since 820c7ff5d380e8ca52057717ab3176b5e40107fd all files are treated as
.SECONDARY files. This means that `make' will not delete files that it
identifies as intermediate files, which would be it's default behavior
otherwise.
Currently, lexer and parser files, some font files, and some postscript
files are treated as .PRECIOUS in the build. This means that `make'
will never delete these files, even when the rule for creating them
failed. It seems that these files were flagged as .PRECIOUS in order
to keep them around after a successful build, preventing `make' from
removing them. But treating these files as .SECONDARY is sufficient
for this purpose. The .PRECIOUS flag introduces potential problems
that we would rather avoid.
Carl Sorensen [Thu, 29 Dec 2011 05:49:17 +0000 (22:49 -0700)]
Update lilygit.tcl (Issue 2092)
Makes lilygit.tcl respect the environment variable $LILYPOND_GIT.
If $LILYPOND_GIT is unset, default of $HOME/lilypond-git will be used.
Also does all working on dev/local_working branch, instead of master
Adds a Push Patch button to push patch to staging, which is optionally
configured, such that it only displays if push access is available
and the user is not a translations user.
Add support for the environment variable LILYPOND_BRANCH, which can
be prepended to the call to lily-git.tcl to specify the branch to be used.
Add pushHead so we can base patches on master but push to staging
Add log preview so that the user is expected to review the git log before
pushing.
Rebase before pushing. The rebasing is to origin/staging,
and is performed on a detached head before pushing. This preserves the
working branch in case of staging breaking and being recreated.
Add environment variable PUSH_ACCESS for controlling push access