From: Mats Bengtsson Date: Thu, 8 Oct 1998 22:53:11 +0000 (+0200) Subject: patch::: 1.0.13.mb1: Re: 1.0.13 X-Git-Tag: release/1.0.14~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=32628d710042056921a407a26e04e0ff1227932a;p=lilypond.git patch::: 1.0.13.mb1: Re: 1.0.13 pl 13.mb1 - bf: Lookup::afm_find, the width was undefined for the feta fonts. - bf: refman.yo - The time signature warnings still remain, will be fixed later. --- diff --git a/Documentation/tex/refman.yo b/Documentation/tex/refman.yo index 826b4569e4..c4be31e720 100644 --- a/Documentation/tex/refman.yo +++ b/Documentation/tex/refman.yo @@ -1292,7 +1292,7 @@ dit(code(timeSignatureStyle)) Changes the default two-digit layout digit, e.g. 3/2 is written as 3. dit(code(C2/2,C4/4, old2/2, old3/2, old3/4, old4/4, old6/4 or old9/4)): Tells Lilypond to use a specific symbol as time - signature. + signature, independently of the actual time signature. ) The different time signature characters are shown below with @@ -1300,16 +1300,20 @@ their names: mudela(fragment,center)( \relative c'' { \property Voice.textstyle = typewriter -\property Staff.timeSignatureStyle = "C" -\time 2/2; a2^"C" a2 \time 2/2; -\property Staff.timeSignatureStyle = "old3_2" -a2_"old3\_2" a2 \time 2/2; -\property Staff.timeSignatureStyle = "oldC" -a2^"oldC" a2 \time 2/2; -\property Staff.timeSignatureStyle = "old6_4" -a2_"old6\_4" a2 \time 2/2; -\property Staff.timeSignatureStyle = "old9_4" -a2^"old9\_4" a2 +\property Staff.timeSignatureStyle = "C2/2" +\time 2/2; a2^"C2/2" a2 +\property Staff.timeSignatureStyle = "C4/4" +\time 2/2; a2^"C4/4" a2 +\property Staff.timeSignatureStyle = "old2/2" +\time 2/2; a2^"old2/2" a2 +\property Staff.timeSignatureStyle = "old3/2" +\time 2/2; a2^"old3/2" a2 +\property Staff.timeSignatureStyle = "old4/4" +\time 2/2; a2^"old4/4" a2 +\property Staff.timeSignatureStyle = "old6/4" +\time 2/2; a2^"old6/4" a2 +\property Staff.timeSignatureStyle = "old9/4" +\time 2/2; a2^"old9/4" a2 } ) diff --git a/NEWS b/NEWS index 13afbece63..036c700d18 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ +pl 13.mb1 + - bf: Lookup::afm_find, the width was undefined for the feta fonts. + - bf: refman.yo + - The time signature warnings still remain, will be fixed later. + pl 12.mb1 - bf: feta-timesig.mf Added horizontal space, minor corrections. - Changed meaning of Staff.timeSignatureStyle: diff --git a/VERSION b/VERSION index e7a8da66cd..88db5c3e8f 100644 --- a/VERSION +++ b/VERSION @@ -2,7 +2,7 @@ PACKAGE_NAME=LilyPond MAJOR_VERSION=1 MINOR_VERSION=0 PATCH_LEVEL=13 -MY_PATCH_LEVEL= +MY_PATCH_LEVEL=mb1 # use the above to send patches: MY_PATCH_LEVEL is always empty for a # released version. diff --git a/debian/control b/debian/control index 08a7805a9e..44a7467fdb 100644 --- a/debian/control +++ b/debian/control @@ -9,12 +9,6 @@ Architecture: any Depends: ${shlibs:Depends}, tetex-base (>= 0.9-5) Conflicts: musixtex-fonts, tetex-base (<< 0.9) Description: The GNU Project music typesetter. - LilyPond is the GNU Project music typesetter. This program can print - beautiful sheet music from a music definition file. It can also play - mechanical performances to a MIDI file. Features include multiple - staffs, meters, clefs, keys, lyrics, versatile input language, cadenzas, - beams, slurs, triplets, formatting scores, part extraction. It includes - a nice font of musical symbols. . URL: http://www.cs.ruu.nl/people/hanwen/lilypond http://sca.uwaterloo.ca/~praetzel/lilypond/ diff --git a/lily/afm.cc b/lily/afm.cc index afd43bf1af..ac38313de7 100644 --- a/lily/afm.cc +++ b/lily/afm.cc @@ -39,7 +39,7 @@ Adobe_font_char_metric::width () Adobe_font_char_metric::Adobe_font_char_metric () { - C_ = 0; + C_ = -1; } Adobe_font_metric::Adobe_font_metric () diff --git a/lily/lookup.cc b/lily/lookup.cc index fc6843a497..690d245531 100644 --- a/lily/lookup.cc +++ b/lily/lookup.cc @@ -78,7 +78,7 @@ Lookup::afm_find (String s, String str) const Adobe_font_char_metric m = afm_p_->find_char (s); Atom a; - if (m.width () ==0) + if (m.code () < 0) return a; a.dim_ = m.B_; diff --git a/make/STATE-VECTOR b/make/STATE-VECTOR index f416bba8c2..e80a35a668 100644 --- a/make/STATE-VECTOR +++ b/make/STATE-VECTOR @@ -92,3 +92,4 @@ 1.0.12 1.0.12.uu1 1.0.13 +1.0.13.mb1