]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.70pre
authorfred <fred>
Sun, 24 Mar 2002 19:46:20 +0000 (19:46 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:46:20 +0000 (19:46 +0000)
NEWS
bin/make_website

diff --git a/NEWS b/NEWS
index fe3edf293f0cdc2d8c9454ebae436a0e692c4682..5ac7e17c28d3b9f5af3457fd8f848a677fdff807 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,47 @@
-pl 68
+june 30
+pl 70pre
+       - bf: text Script
+       - bf: Script::dir_i_ checks.
+       - bf: script stacking
+       - bf: Text_spanner::do_subst.
+       - bf: Text_spanner::Text_spanner(Text_spanner&)
+       - bf: script priority read from script.ini
+       - bf: Script_def::do_equal_b
+       - bf: script dims.
+       - mudela: ; obligatory for \paper {}.
+       - some cosmetic changes involving RTTI macros
+
+*******
+june 29
+pl 69pre
+       - bf: whole rest position, whole/half rest dots.
+       - bf: scripts
+       - reg termination
+       - centered bars
+       - bf: init of Tie::dir_i_ 
+       - bf: Staff_side depends on staff_sym_
+       - bf: Script::do_substitute_dependency() now implemented
+       - more print info (also in output)
+       - bf: Vertical_align_element
+       - stemless beams now allowed (with warning)
+       - bf: Rest_column::stem_l_ init
+       - merge rests.ly with collisions.ly
+
+pl 67.jcn3
+       - rests under beam [c8 r c]
+
+pl 67.jcn2
+       - first attempt at rest collisions
+       - rests.ly
+
+pl 67.jcn1
+       - beam stem length: beams.ly
+       - bf: mingw configure
+       - re: conflily
+
+******
+june 26
+pl 68pre
        - doco: other-packages.pod, lots of lilyliterature.pod
        - last duration mode now is default.
        - some OpusTeX stuff.
@@ -7,7 +50,7 @@ pl 68
          * separation of Y and X-elt-groups
          * Registers: info up: broadcasts, info down: get_xxx_info()
          * Registers: try_request works from bottom to top of tree.
-         * Score_elem invisible_b_ flag
+         * Score_elem empty_b_ and transparent_b_ flag
          * Junk Staff_column, and find the requests while walking the
          Voices.
          * Score_register
@@ -23,9 +66,12 @@ pl 68
        
        - bf: make_patch explanation
        - bf: make install TeX stuff
-       - new Beam/Stem code (WL)
        - mudela: . mandatory for REALs
 
+
+pl 67
+       - damped beamslope after wanske
+
 ******
 june 3
 pl 67
@@ -150,6 +196,7 @@ pl 61.jcn2
        - mi2mu IP*list to Array (implications?!) conversion
        - mi2mu parsing speedup: backup rules for midi-lexer.l
        - bf: zero denominator
+
 **********
 may 14 
 pl 62
index 219fcbd5a2a354b1511be026851c48614618375d..096d700280b806c95224ae5b3976e09a60cc6669 100755 (executable)
@@ -71,7 +71,9 @@ sub my_system
 
 
 local $base="lilypond/";
-local @examples=("wohltemperirt" ,"standchen", "toccata-fuga-E", "scsii-menuetto", "rhythm", "collisions");
+local @examples=("multi", "wohltemperirt" ,"standchen", "toccata-fuga-E", "scsii-menuetto", "collisions");
+
+# rhythm, scales, 
 
 
 sub gen_html
@@ -244,8 +246,9 @@ sub docxx_update
 sub do_tar
 {
      print "tarring.\n";
+     $files = join (' ', < *.html *.$image *.ps.gz *.txt *.midi docxx/*>);
      my_system
-        " tar vhcf website.tar *.html *.$image *.ps.gz *.txt *.midi docxx/*;",
+        "-tar vhcf website.tar $files;",
         "gzip -f9 website.tar;";
 }
 sub identify
@@ -256,7 +259,7 @@ sub identify
 sub main
 {
     identify;
-    GetOptions("jpeg", "gif", "png");
+    GetOptions("jpeg", "gif", "png", "noexamples");
 
     local $image="gif" ;
     $image = "png" if ($opt_png);
@@ -278,12 +281,14 @@ sub main
 
 
     gen_html;
-    gen_examples;
     copy_files;
+    if (! $opt_noexamples) {
+       gen_examples;
+       gen_list;
+    }
     set_images;
-    gen_list;
-    edit_html;
 
+    edit_html;
     docxx_update;
     do_tar;
 }