forked from frescobaldi/frescobaldi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1367 lines (1178 loc) · 60.6 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ChangeLog of Frescobaldi, http://www.frescobaldi.org/
=====================================================
Changes in 2.20.0 -- Mai ??, 2016
* New features:
- New Manuscript viewer tool, displaying an "engraver's copy",
contributed by Peter Bjuhr and Urs Liska
- Copy selected text in Music View
* Improvements:
- Fit Width in Music View now fits two pages in width, if in two-page mode
- Jump to next or previous bookmark now respects surrounding lines setting
* Bug fixes:
- fix #716 position of open document tab bar changes on engrave
* Translations:
- updated Dutch by Wilbert Berendsen
- updated Italian by Federico Bruni
- updated Spanish by Francisco Vila
- updated German by Henning Hraban Ramm
Changes in 2.19.0 -- April 22nd, 2016
* Requirement changes:
- Frescobaldi now requires python-ly 0.9.4
* New features:
- Tools->Quick Remove->Remove Fingerings
- Tools->Quick Remove->Remove Comments
- Tools->Pitch->Simplify Accidentals
- It is now configurable whether the document tabs have a close button
- The new LilyPond feature to embed source code files in the PDF (LilyPond >=
2.19.39) can be used in publish mode and the custom engrave dialog (#813)
- Clicking a TOC item in the Music View jumps to its destination (#803)
- When copying music to an image, a new option has been added to render the
image twice as large and scale it smoothly down, which improves images at
smaller DPI values.
- An option to keep the text cursor in the current line, when using the
horizontal arrow keys (off by default) (wish #779)
* Improvements:
- LilyPond 2.18+ \relative { ... } without start pitch is now supported
- It is possible to use no start pitch on abs->rel conversion and specify
the desired behaviour using two checkboxes in the tools->pitch menu.
- Clicking a point and click link in the Music View now remembers the previous
position
- Autocompile was not triggered in some circumstances.
Now it is also triggered:
* when a document is saved
* when undoing a change after a save (i.e. the undo would reset the
"modifified" flag of the document)
- When tapping a tempo in the Score Wizard, it is now configurable whether
a "common" metronome value is picked, or the exact tapped BPM (#792)
- Allow zooming to 800% in Music View (#800)
- When closing a document that has an engrave job running, the user is warned
and can choose whether to wait for the job to complete, to abort it, or to
cancel the closing.
- Tabbar and document list show in the document icon whether the last
engraving was successful (#636)
- Comment and Uncomment snippets are improved and now in the Snippet menu
- Score Wizard:
- add C-Melody Sax (#810)
* Bug fixes:
- fix #669 make click and drag working again
- fix #786 'Replace all' only works when run twice
- fix #793 Command autocompletion doesn’t work in figuremode
- fix #806 MIDI file not updated in MIDI Player when using "master" variable
- fix #807 search does not realize that content is changed
- fix #808 \figuremode should be enclosed within \new FiguredBass
* Translations:
- updated: Dutch, Italian
Changes in 2.18.2 -- December 26th, 2015
* Requirement changes:
- Frescobaldi now requires python-ly 0.9.3
* Improvements:
- More flexible colored HTML export and copy
- Tabs now show the push-pin icon when a document is always engraved
- Autocomplete correctly again after '\markup' without opening bracket
- Enable Ctrl-Enter in Custom Engrave dialog (issue #691)
* Bug fixes:
- fix AttributeError: 'SourceViewer' object has no attribute '_reply' (issue
#789)
- fix TypeError: QPen(): argument 1 has unexpected type QBrush
- fix some bugs in Quick Insert panel
* Translations:
- updated: Dutch, French, Italian, Ukrainian
Changes in 2.18.1 -- May 24th, 2015
* New feature:
- New command line option -V, showing version information of all supporting
modules such as Python, Poppler, Qt4, etc.
* Improvements:
- The print dialog remembers the last used printer and options
- Improved icons for File->Close, Snippets->Repeat last note/chord and
Snippets->Document Fonts
- Holding the engrave button also shows Engrave publish and custom actions
- Tab bar uses scroll buttons on Mac, like the other platforms
- Automatic engrave only engraves *.ly documents, not *.ily etc
* Bugfixes:
- Fix document panel is resized when engraving (issue #660)
- Fix convert-ly adding linefeeds / carriage return on Windows (issue #649)
- Fix open in running instance when using Python 3 (issue #634)
- Fix crash when opening non-existing file in running instance (issue #650)
- Fix icons missing on Windows with system icons enabled (issue #643)
- Fix Wrong encoding in Score Wizard with Russian locale (issue #641)
- Fix running LilyPond tools on Mac (pre-built app) (issues #633, #589)
- Fix ValueError: invalid literal for int() with base 10 (issue #669)
- Fix UnicodeEncodeError on convert-ly with some languages (issue #674)
* Translations:
- updated: Dutch, Czech, Ukrainian, Chinese Simplified
Changes in 2.18 -- March 7th, 2015
* Important notes about installing and for packagers/distributors:
- Frescobaldi is now dependent on the package 'python-ly'. This package
needs to be installed so that Frescobaldi can run.
It is listed among the dependencies in the INSTALL file and it can be found
at https://pypi.python.org/pypi/python-ly.
Previously, this python package was contained in the frescobaldi_app folder.
So, when overwriting previous Frescobaldi installations, be sure that any
remnants from the old 'ly' package are removed, with a command like:
rm -r /usr/local/<python site-packagesdir>/frescobaldi_app/ly
Otherwise, Frescobaldi won't find the new ly module and will fail to run.
Python-ly version 0.9 is required for Frescobaldi 2.18.
- Python 3.2 (or higher) is supported and recommended! But Python 2.7 will
continue to be supported during the full Frescobaldi 2 lifecycle.
* New features:
- Midi import, using the LilyPond-provided midi2ly tool
- ABC import, using the LilyPond-provided abc2ly tool
- In the Editor Preferences, you can select which quotes will be used as
single and double (primary and secondary) typographical quotes (issue #529)
- The music view now can display a PDF document with two pages next to each
other, starting with a right or left page, and in single pages (issue #575)
- A new pitch tool, Mode shift, which can be used to change all or selected
notes to a specified mode or scale.
- Commands to convert rests to spaces or vice versa, and to convert pitched
rests (like c'4\rest) to normal rests, contributed by Peter Bjuhr.
- Command to open LilyPond data directory (useful if you want to study Lily's
own init- and Scheme files).
* Improvements:
- The Insert menu got renamed to Snippets, making more clear how it is used
and can be changed. When copying text to a new snippet, the snippet is added
to the menu by default, but the user can change that while editing.
- Ctrl+Break (LilyPond → Abort Engraving Job) also stops an autocompile job
if one is running.
- The SVG View now displays a default gray background when no document is
loaded, which is more helpful than a white background.
- When right-clicking in the editor, the editor does not scroll anymore to
show more surrounding lines.
- Multi-line block comments are now also foldable (issue #587)
- The magnifying glass in the Music View does not clip to the page borders
anymore, which was annoying when showing many pages in a small size.
- To save space in the toolbar, the almost never used Save As... button was
removed. But when holding the Save button longer, three choices pop up:
Save, Save As and Save All.
- Ctrl-Mousewheel zooming the LilyPond Log now works properly.
* Bugfixes:
- The german ("deutsch") pitch names asas and heses are now handled correctly.
Previously, when translating the "nederlands" beses to german, it was output
as bes, instead of heses. Same for "norsk" and "suomi" (issue #415)
- If the preference "Open default viewer after successful compile" is enabled,
the viewer to be opened is determined from the actual results, instead of
the default output format. This fixes the PDF view opening instead of the
SVG view, when the SVG format was chosen in the Engrave Custom dialog.
- fix AttributeError: 'unicode' object has no attribute 'insert' (issue #543)
- the transpose functions will not transpose the chord after \stringTuning
anymore (issue #539).
- fix error when opening a "recent file" that has been deleted (issue #597)
- Quick Insert articulations etc. now also work with q (repeated) chords
(issue #628, fixed in python-ly)
- Quick Insert: do not add articulation to the duration of a \tuplet command
(issue #631, fixed in python-ly)
* Translations:
- updated: nl, fr, ru, it
Changes in 2.17.2 -- January 17th, 2015
* Bugfixes:
- fix AttributeError: 'unicode' object has no attribute 'insert' (issue #543)
* Translations:
- updated: nl, fr, it
Changes in 2.17.1 -- December 26th, 2014
* Bugfix:
- on quit, respect cancel (issue #531)
Changes in 2.17 -- December 26th, 2014
* New features:
- Preference for the number of contextual lines to show at least, when the
text view is scrolled to a cursor position (e.g. by clicking on a link, or
when jumping between search results. Wish: issue #488)
- Session import/export, contributed by Peter Bjuhr
- A session can have its own list of include paths, that can be used either
instead of or in addition to the global list of include paths, contributed
by Peter Bjuhr
- Relative mode for MIDI input, contributed by Alex Schreiber (pull request
#521)
* Improvements:
- When saving a new file for the first time, a default filename is provided,
based on composer and title of the score (wish: issue #472)
- Printing the music PDF now honors the duplex settings
- MusicXML export has improved by using the ly.music module that has a notion
of the music events and time/duration of those events. Although ly.music is
authored and maintained by Wilbert Berendsen, the MusicXML export module is
contributed by Peter Bjuhr
- workaround a LilyPond buglet in point-and-click highlighting of quoted
strings: although the textedit uri points to the closing quote, the string
is correctly highlighted
- dont disable run button of Engrave Custom dialog for autocompile jobs
- let autocompile jobs finish before starting a new one (comments issue #120)
- dont always run autocompile job for the first opened document
- after a successful compile the default music viewer (pdf or svg) is
activated. This can be suppressed in the LilyPond prefs (wish: issue #435)
- the music view does not switch documents anymore when a compile is finished
but the user is working on a different document (wish: issue #513)
- tooltips for the panel title and float/close buttons
- error handling in I/O-related operations has improved
- Ctrl+C in editor view does not copy HTML, only plain text (issue #517)
- Features that are in development can be enabled by checking Preferences→
General→Experimental Features→Enable Experimental Features. Some features
that are not completely finished are hidden by default but become visible
when this preference is enabled. New features are enabled after a restart,
or when a new main window is created using Window→New.
* Bugfixes:
- fix AttributeError: 'bool' object has no attribute 'endswith' in
lilypondinfo.py, toolcommand()
- fix AttributeError: 'NoneType' object has no attribute '_register_cursor'
(cause in music.py, get_included_document_node())
* Installation:
- Python 2.7 is now required.
* Translations:
- updated: nl, pt_BR, fr, it, de
- new (partial): Chinese Traditional, Simplified and Hong Kong by Anthony Fok
Changes in 2.0.16 -- June 9th, 2014
* Translations:
- updated: nl, fr, it
* New features
- preference to automatically strip trailing whitespace on save (issue #274)
- in Tools -> Rhythm: new command to remove duration scalings that contain
a fraction value (the action was already available for some time, but it
wasn't in the menu)
- new option to copy only the styled HTML contents to the clipboard
wrapped in a pre tag, not a full HTML document
* Improvements:
- jumps in the Document Outline also allow navigating back
- autocompile does only happen when a document has toplevel markup or music
- LilyPond instance can be selected in convert-ly dialog (wish #311)
- Score Wizard: In the midi section the \tempo x=y syntax is now used when
LilyPond version >= 2.16 is used (issue #337)
- Score Wizard: new brass instruments contributed by Ryan Michael McClure
- in the builtin manual, if there is no "Next:" page, add a link to the next
page of the first parent page that has a next page. The link is called
"Next Chapter:" and allows for continuous reading of the manual.
- some missing commands and functions were added to highlighting and
autocompletion
- the Document Fonts snippet doesn't require setting the staff size anymore
- View -> Folding -> Fold all now folds all subregions as well, making
gradual unfolding easier (wish #394)
* Bugfixes:
- fix sticky document setting lost on reload (issue #409)
- fix html export and copy not using the correct color scheme
- fix AttributeError in handle_lyricmode while typing \lyricmode
- fix LilyPond version chooser not defaulting to the default LilyPond version
- fix indenter aligning on comment
- fix AttributeError: QStackedWidget object has no attribute cursorForPosition
on doubleclick in the text, reported by an Apple user
- fix AttributeError: 'ScoreWizard' object has no attribute 'showInsertDialog'
reported by an Apple user
- fix UnicodeDecodeError in lilypondinfo datadir method
Changes in 2.0.15 -- March 11th, 2014
* Translations:
- updated: nl, fr
* New features:
- in context menu: Jump to definition (wish #123)
- in View menu: view file or definition at cursor, combines the old
File->Open File at Cursor action with the new Jump to definition action
- new toolbar buttons to browse back after a jump to definition
* Improvements:
- better highlighting of figuremode
* Bugfixes:
- fix ValueError message when typing << >> or \partcombine
- fix IndexError when typing 'variable ='
Changes in 2.0.14 -- March 7th, 2014
* Translations:
- updated: nl, fr
* New features:
- the status bar now shows the position in the music or the length of the
selected music
- highlighting and auto-completion for commands that are new or have changed
syntax in LilyPond 2.18, such as \hide, \omit, \undo, \override, \tweak,
\accidentalStyle, etc.
- New editor option to wrap lines in the editor view to avoid horizontal
scrolling (wish #45)
- Custom engrave: the anti-alias-factor can be set in the dialog (wish #361)
- on Mac OS X the applications remains active when all main windows are
closed. This is expected behaviour on Mac OS X.
- New builtin snippet, linked to Ctrl+D by default, to double the current
line or selection (issue #340)
- A new preference for new documents: whether a new document is created empty,
with the preferred LilyPond version in it, or using a template from the
snippets list
- New menu command: LilyPond->Show available fonts (wish #341)
- Music View: rendering in small sizes has been improved
* Improvements:
- In the score wizard it is possible to enter a custom string tuning for the
plucked string instruments, and the Ukulele is added (issue #342)
- In the score wizard you can enable Smart neutral stem direction, which adds
the Melody_engraver to the Voice context, resulting in a logical direction
for notes on the middle staff line (issue #371)
- Print source, Copy colored HTML and Export source as colored HTML: add line
numbers if enabled in the preferences.
- In the Editor preferences, it is adjustable whether HTML export or copy use
a stylesheet or inline style attributes.
- It is now possible to copy syntax-highlighted HTML as plain text to the
clipboard, by enabling the preference setting.
- MIDI input: add key signature alterations mapping, by Olivier Samyn
- New barline types in the Quick Insert panel, the barlines are written
in the correct style, depending on the LilyPond version set in the document
(issue #365).
- In the output-suffix (the scheme output-suffix variable or
\bookOutputSuffix), non-alphanumeric characters (except '-' and '_') are
replaced with '_', just like LilyPond itself does it (issue #373).
* Bug fixes:
- Fixed issue 336: TypeError on MusicXml export
- Fixed error message when exporting keyboard shortcuts on platforms that do
not have the HOME environment variable set
- Fixed IndexError when transposed notes would get unexisting alterations,
e.g. when a cis is transposed from c to cisis. The note is then altered,
just like LilyPond handles this.
* Temporarily removed feature:
- MusicXML export has been temporarily removed from the File->Export menu.
It is still visible in the git checkout. It is also available in the ly
command (in the python-ly package, and also in Frescobaldi's git checkout)
but it needs more testing and robustness before it is usable in Frescobaldi.
Changes in 2.0.13 -- December 31st, 2013
* Translations:
- updated: nl, fr
* New features:
- A new option LilyPond->Auto-engrave, that runs the engraver in preview mode
everytime the document changes
- An option to hide log display for automatically started engraving jobs
- Real-time Midi capturing, contributed by Manuel Mchalwat (this was actually
in 2.0.12, I just forgot to write it in the ChangeLog!)
- Basic MusicXML export, contributed by Peter Bjuhr (this was also already
added in Frescobaldi 2.0.12)
- The "master" variable is back, allbeit in a slightly different
implementation: the redirected filename is not directly given to a LilyPond
process running on behalf of the current document, but the other document
is loaded (if it wasn't already) and LilyPond is run on that document.
* Bug fixes:
- Fix UnboundLocalError in ly.docinfo e.g. when showing the Tools->Pitch->
Language menu
- Fix issue 332: Cursor didn't move on undo/redo
- Fix issue 315: chords: \include "predefined-guitar-fretboards.ly"
(the file was added, but the include files weren't written in the document)
Changes in 2.0.12 -- December 26th, 2013
* Translations:
- updated: cs, nl, fr, es
* New features:
- Edit->Select Block has finally been implemented
- A viewer for LilyPond-generated SVG files has been added by Peter Bjuhr.
This viewer (accessible via Tools->SVG Viewer) currently has one-way point
and click. This only works with recent development versions of LilyPond,
that add the point and click information to SVG files. In the future, the
SVG view may become a fully fledged graphical music editor.
- The default output format can be set in the LilyPond preferences (the
current options are PDF or SVG, the default is PDF)
* Improvements:
- The indenter's handling of tabs and spaces has been improved. A tab always
starts a new indent level, and aligning is now always done with spaces.
The default is still using 2 spaces for indent, but it is now configurable
in a new settings panel Editor Preferences.
- Besides the good old Preview and Publish modes a new mode has been added:
Layout Control. This mode uses the settings on the preview mode panel, which
has been renamed to Layout Control Options. The layout of the panel has been
improved. The Preview mode is reverted back to enabling only point and click
links. In the Engrave (custom) dialog the run mode can be chosen and the
commandline edited directly.
- Entering staccatissimo writes -! when the document specifies a LilyPond
version >= 2.17.25, otherwise -|
- When editing keyboard shortcuts, conflicts are directly shown as they are
entered; better support French keyboards (contributed by Nicolas Malarmey)
- Better Mac OS X icons (contributed by Davide Liessi)
- The internal handling of manipulations like transpose, translate, and the
various rhythm commands has become less dependent on Frescobaldi code.
These functionality now resides in the ly module and could be used by
other applications. The commands now can work on any ly.document, which
need not be a Frescobaldi document.
- The internal help system has seen a massive overhaul: help files are now
very easy to write in a simplified markdown-like syntax. Adding help pages
is very easy by dropping a *.md file in the userguide/ directory. Every
paragraph in a help file is automatically added to the POT file and can be
translated by editing the language's PO file.
* Bug fixes:
- Music View: horizontal scrolling using trackpad now works with kinetic mode
enabled. Fixes #248.
* Removed feature:
- The 'master' variable is no longer supported, it's goal has been superseded
by the 'Always Engrave' option, which is also saved in the session. This
decision was taken to simplify the handling of files created on behalf of
a document.
Changes in 2.0.11 -- October 16th, 2013
* Translations:
- updated: cs, nl, fr, es
* New features:
- New preview mode tool, enabling different modes to debug layout issues,
contributed by Urs Liska and some other LilyPond developers
- Frescobaldi now has a manpage, kindly provided by Ryan Kavanagh
- Import MusicXML (using musicxml2ly), contributed by Peter Bjuhr
- New Quick Insert buttons for different kinds of grace notes, contributed
by Peter Bjuhr
- Import and export of keyboard shortcuts and font & color schemes,
contributed by Nicolas Malarmey.
- New Modal Transpose action, contributed by Christopher Bryan
- New actions to remove articulations etc. from music (wish #180)
- Edit->Copy to Snippet, to copy the selection or the full document
contents to a new snippet
* Improvements:
- highlighting and auto-completion of Scheme code has been improved
by Nicolas Malarmey.
- when switching documents with multiple editor views open, and one of the
views displays the document, that view is made current, instead of changing
the document in the current view.
- the tempo-tapping button in the score wizard now uses the average clicking
speed instead of computing the bpm at each click (implementing wish #169)
- under the File menu there is also a New with Wizard... action calling the
score wizard, creating a new document when clicking Ok, contributed by Urs
Liska
- Word-related cursor movements have been improved. The backslash is now
considered a word boundary, even if there are no spaces between several
backslashed commands. Fixes wish #106.
* Bug fixes:
- various fixes and improvements on Mac OS X by Davide Liessi
- fix splash screen shown as grey rectangle on some systems
- in the LilyPond log, clicking on error mesages in files with '..' in their
path (happens when using e.g. \include "../blabla.ly") now works.
Changes in 2.0.10 -- May 12th, 2013
* Translations:
- updated: nl, de, fr, cs, es, it
* New features:
- Document Outline tool with tooltips showing portions of the document.
The patterns that are used for the outline can be modified by the user.
* Improvements:
- Highlight more music functions that were added in LilyPond 2.16
- Better chord mode highlighting
* Bug fixes:
- fix QPyNullVariant error message on Mac OS X when setting helper app prefs
- fix Scorewizard error in Leadsheet with accompaniment and ambitus turned on
- fix #113: add files opened via file manager to recent files
- fix #143: don't count tremolo repeat as a duration
Changes in 2.0.9 -- March 23rd, 2013
* Translations:
- updated: nl, de, uk
* New features:
- Frescobaldi now detects when other applications modify or delete open files
and displays the changes in a dialog, where the user can reload or save the
affected documents. The file-watching is turned on by default, but can be
disabled. (wish: issue #103)
- File->Reload and Reload All: reload the current document or all documents
from disk. This action can be undone with Ctrl-Z.
- Frescobaldi now can be configured to open the generated PDF files when
opening a LilyPond document, even if they are not up-to-date. It then shows
a red background in the document chooser. See Preferences->Tools->Music View
- Music->Reload: switches the Music View to the current source document and
re-checks for updated PDF documents. If there are no updated PDFs it even
tries to load non up-to-date PDFs (regardless of the setting above)
- New --list-sessions commandline option to list the named sessions
- New actions View->Matching Pair and Select Matching Pair to jump to or
select the range of matching parentheses, braces etc (wish: issue #105)
- Quick Insert: \melisma, \melismaEnd spanner button (idea: issue #88)
* Improvements:
- Custom defined markup commands are also auto-completed
- Better default font on Windows
- Action "Always Engrave this document" also available in document context
menu (in documents list and in tabbar)
- Don't check included files multiple times for defined commands etc.
- Highlighting matching characters, such as slur, brace, << >>, etc does not
take a long time anymore when editing or moving through a long document
- string numbers are highlighted (and understood) correctly outside chords
(LilyPond 2.16 syntax change)
- Export colored HTML now uses CSS classes, makes it easy to change the high-
lighting in the HTML later (idea: issue #89)
* Bug fixes:
- Fix hyphenation of words with accents (reported by Andreas Edlund)
- Fix Save As... on Mac OS X (issue #104)
- Fix startup failure on Mac OS X (issue #77)
- Fix QPyNullVariant error messages with some PyQt versions
- Workaround two PyQt bugs:
* fix score wizard AttributeError message when using sip-4.14.3/PyQt-4.9.6
* fix large delays in editor when using sip-4.14.3/PyQt-4.9.6 (issue #100)
- music highlighting of a note after \unset someVariable is now correct
- fix Python error message when a document (marked as Always engraved) is
engraved which didn't have yet the PDF displayed
Changes in 2.0.8 -- September 14th, 2012
* Translations:
- updated: ru, cs
* New features:
- File->Open file at cursor (wish #84)
* Improvements:
- always normalize paths in point&click links, so files included via
constructs like \include "../songs/song1.ly" are found
* Bugfixes:
- fix behaviour of 'output' variable
Changes in 2.0.7 -- August 16th, 2012
* Translations:
- updated: nl, cs, it, fr, es
* New features:
- command to show music view maximized, useful on small screens
- kinetic scrolling in the music view, making the movements easier on the
eyes, contributed by Richard Cognot
- music view scrollbars can be hidden via preferences->tools->music view
* Improvements:
- status of "Always Engrave" is saved in session (wish #76)
- the 'View' -> 'Music View' submenu is now a top-level menu 'Music'
* Bugfixes:
- fix "NameError: global name 'X_OK' is not defined" when a helper application
has an absolute path
- fix python exception when helper app does not exist, now a regular message
is shown
Changes in 2.0.6 -- April 30th, 2012
* Translations:
- New Ukrainian translation by Dmytro O. Redchuk
- updated: nl
* Bugfixes:
- fix cut-assign
- fix startup failure on Windows when 'open in running app' is enabled and
the user's username has non-ascii characters (issue #53)
- fix TypeError on opening LilyPond documentation in some cases on Mac OS X
Changes in 2.0.5 -- April 25th, 2012
* Translations:
- updated: fr, nl, es
* New features:
- Regions of text can be collapsed/expanded (View->Folding->Enable Folding)
- Files can be opened in running instance, if enabled in settings
- New document variable: 'output' which can be set to the basename, folder, or
list of names or folders to look for output documents. Overrides the default
behaviour of parsing the document for all the included files and LilyPond
commands that specify the output file name.
- New snippet action to recover changed or deleted built-in snippets
- New snippet action to configure keyboard shortcut without opening editor
- Alt+Up and Alt+Down jump between blank lines (implemented as snippets),
with Shift they select text
- New command in View->Music View and Music View contextmenu: "Original Size"
- Optionally scroll Music View while highlighting objects text cursor is at
- In-place editing by Shift-clicking a note or right-click->Edit in Place
* Improvements:
- Copied images from Music View carry correct DPI information
- Autocomplete also looks for variable definitions in \include files
- Running convert-ly (or undoing it) does not erase point and click positions
anymore
- Saving a template now shows existing template names in a popup and warns
when (but allows) overwriting an existing template
- Much better default background color for the Music View
- When dragging the time slider in a MIDI file, program and controller changes
are followed (issue #26)
- On Windows, better try to find LilyPond even if it is not in the PATH
- Snippet editor warns when closing modified snippet
- Accelerators (the underlined characters) in menus such as Recent Files,
Session and Insert that are are automatically created, are determined in
a smarter way
* Bugfixes:
- fix Ctrl+K deleting a line too much in some cases
- fix RuntimeError on Ctrl+N, Ctrl+F, Ctrl+W
- fix TypeError on running convert-ly with English messages on Windows
* For Linux distribution packagers:
- The CC-licensed zoom-{in,out} icons are now replaced with GPLled ones
Changes in 2.0.4 -- March 7th, 2012
* Translations:
- updated: pl, nl, cs
* New features:
- view->line numbers
- in the documents list, it is now possible to right-click a group of selected
documents (or a directory name, if grouping is enabled), to close or save
multiple documents at once.
- automatic completion in the snippet editor
- python snippets may now define a main() function that can do everything
- new delete-lines snippet, bound by default to Ctrl-K
- splash screen on startup (can be turned off in the preferences)
* Improvements:
- opening many documents (e.g. a large session) is now much faster
- waiting for LilyPond to return information on Settings->Ok now does not
block the user interface anymore and shows progress if it takes some time
- built-in manual now documents settings and session dialog
* Bug fixes:
- fix icon theme index files not in source tarball (regression since 2.0.3)
- fix hyphenation dictionaries not in source tarball
- fixed memory leak (closed documents that had been shown remained in memory)
Changes in 2.0.3 -- February 17th, 2012
* Translations:
- New translation: Brazillian, by Édio Mazera, thanks!
- updated translations: es, fr, it, nl
* New features:
- pager in musicview toolbar
- tools->open command prompt to open a terminal window
* Improvements:
- improved "Comment" snippet; add "Uncomment"
- Home and Shift+Home now move the cursor to the first non-space character
- Shift+Return now does not enter a line separator anymore, which could
cause wrong point and click locations
- blinking rectangle highlights new cursor position on point and click
* Bug fixes:
- fix zooming Music View out while on last page (issue #32)
- changing keyboard shortcuts in preferences now works on Mac OS X
- fix { } or << >> inside lyricmode
- in doc browser, don't display bogus versions when network is inaccessible
* For Linux distribution packagers:
- the bundled Tango icon set is now used as an icon theme, which makes it
possible for distribution packagers to remove the icons/Tango directory and
instead make Frescobaldi depend on the tango-icon-theme package.
Changes in 2.0.2 -- January 16th, 2012
* New features:
- optionally run LilyPond with English (untranslated) messages
- print button in help browser and documentation browser
* Improvements:
- "Manage templates" command added in File->templates menu
- more snippets in Insert menu
- context menu on snippet list
- enlarged some too small icons
- added some more hyphenation dictionaries
- file entry fields (like in preferences) are faster
- on non-X11 platforms the maximized state of the window is remembered
* Bug fixes:
- make terminating LilyPond work under Windows
- make convert-ly work under Windows
- snippet import/export now works in the Windows-installer binary
- PDF now correctly updates when "Save document on compile" is enabled
Changes in 2.0.1 -- January 8th, 2012
* Updated translations: cs, de
* Bug fixes:
- fix accented letters in filenames on Windows
* Improvements:
- some hyphenation dictionaries are now bundled
- font preference for documentation browser
- new self-contained installer for MS Windows
Changes in 2.0.0 -- December 26th, 2011
* Updated translations: fr, nl, es, it, cs
* Bug fixes:
- when changing LilyPond instance that was default, keep it as default
* New features:
- new dialog and snippet to set the fonts for a LilyPond document
- the tabs can be hidden and shown via the mainwindow context menu
- autocomplete on #'font-name, with font preview
* Improvements:
- Shift-F1 (What's This) now works in dialogs
- the tab bar can be hidden via the main window context menu
Changes in 1.9.5 -- December 20th, 2011
* Updated translations: es, nl, cs
* Bug fixes:
- charmap now avoids characters "narrow" builds of Python can't handle
- fix incorrect midi tempo when midi file contains tempo changes
- fix importing the pyportmidi._pyportmidi module if that is used
- really honor 'delete intermediate files' option
* New features:
- Documents list with optional per-directory grouping
- helper applications can be specified to override operating system defaults
- list of generated files in LilyPond menu
* Improvements:
- tooltips in music view show variable name of music definition
- search bar in documentation browser
- autocomplete on \include, \language
- other small cosmetic improvements
Changes in 1.9.4 -- December 5th, 2011
* Updated translations: es, fr, nl
* New features:
- Engrave custom dialog for specifying other engraving formats and options
- Character selection tool to insert characters from all unicode blocks
* Bugfixes:
- fix crash on 64bit Linux and Windows introduced in 1.9.3
Changes in 1.9.3 -- December 1st, 2011
* LilyPond Documentation browser:
- multiple versions of LilyPond documentation can be browsed, local and remote
* Bug fixes:
- fix missing result files for documents with square brackets in filename
- fix error message when running LilyPond on modified document with a name but
which was never saved before (happens e.g. when opening a non-existing file)
- fix crash when MIDI synth stopped or disconnected while playing (issue #4)
- fix using PortMidi via ctypes under 64bit Linux (issue #3)
- fix error message on invalid textedit links
- fix scrollbars covering search box in some GUI styles (issue #2)
* Improvements:
- lyrics hyphenation doesn't require text to be selected anymore
- don't try to load non-existing file when clicking a point-and click link
- cursor now remains in same column while moving vertically after indent
- add articulations etc to autocompletion
- dont show the log if the user aborted a job
Changes in 1.9.2 -- November 11th, 2011
* Translation updates: es, nl
* New features:
- Built-in MIDI player
- Snippets can also be put in File->New from Template. When triggered via that
menu, a new document is created. There's also a command to save the current
document as a template.
- Import and export of snippets.
Changes in 1.9.1 -- October 11th, 2011
* Translation updates
* Help in much more dialogs
* New icons for some commands
* It is now possible to set the preferred Qt GUI style
* Always makes backup copy on save, config setting to retain it
* Detailed version info in about dialog
* Lots of small improvements, such as:
- Apply Rhythm dialog remembering rhythms
- snippet error messagebox now has Edit Snippet button
* New commands:
- Cut and Assign
- Copy to Image
- Tools -> Format to format whitespace
- Update with Convert-Ly (with diff view)
* Bugfixes:
- fix error message on View->Clear error marks
- fix autocomplete picking second item if no item is highlighted
- some Parser (highlighting) fixes
- color buttons now show color on all platforms
- fix error message on saving settings if no LilyPond was installed
Changes in 1.9.0 -- September 27th, 2011
* Full rewrite, not depending on KDE4 libraries any more
* Much more modular internal design, easier to add features
* All translations imported
Changes in 1.2.1 --
* Fixes:
- Correct spacing alist names in LilyPond 2.14 in blank paper tool
- Fixed misinterpreting crescenco (\<) as a chord by articulations quick panel
* Translations:
- Galician updated by Manuel A. Vázquez
- Italian updated by Gianluca D'Orazio
Changes in 1.2.0 -- December 26th, 2010
* Translations:
- Dutch updated by Wilbert Berendsen
- Turkish updated by Server Acim
- French updated by Valentin Villenave and Ryan Kavanagh
- Czech updated by Pavel Fric
- Spanish updated by Francisco Vila
- German updated by Georg Hennig
- Polish updated by Piotr Komorowski
Changes in 1.1.8 -- November 9th, 2010
* All pitch name related functions (detection and translation) support
the new \language LilyPond command (as of LilyPond 2.13.38).
* Installation: An option has been added to suppress checking presence and
versions of required python modules.
* Translations:
- Dutch updated by Wilbert Berendsen
- Turkish updated by Server Acim
- Czech updated by Pavel Fric
- German updated by Georg Hennig
- French updated by Valentin Villenave
Changes in 1.1.7 -- October 4th, 2010
* New features:
- New tool to download LilyPond binary releases. Go to Settings -> Configure
Frescobaldi -> LilyPond Preferences, Versions -> Add -> Download to use it.
- New rhythm command "Make implicit (per line)" that removes repeated
durations, except for the first duration in a line.
* Quick Insert Panel:
- New default shortcuts for Slur: Ctrl+( and Breathing sign: Alt+'
* Bugfixes and improvements:
- Don't error out if certain GUI containers can't be found, due to missing
objects in the local frescobaldiui.rc file. Display a message instead.
* PDF Preview:
- If 'Sync preview' is unchecked, the preview now also doesn't open newly
created or updated PDF documents. As a result, the 'Disable PDF preview'
setting became superfluous and has been removed.
* LilyPond Log:
- The toolbar at the bottom has been removed, as all functions in the main
menu and toolbar are now equivalent.
* Translations:
- Dutch updated by Wilbert Berendsen
- Turkish updated by Server Acim
Changes in 1.1.6 -- September 10th, 2010
* New features:
- New built-in MIDI player using the KMidPart of KMid 2.4.0 or higher
- Notification popup when a long build finishes while Frescobaldi is hidden
- Quick Insert: new panels for dynamics, bar lines, spanners, arpeggios, etc
- LilyPond version to use configurable per session
* Bugfixes and improvements:
- Fix error message on Cut&Assign, introduced in 1.1.3
- Expand dialog: Don't insert expansion when closed with ESC
- Handle keyboard interrupt (SIGINT) nicely, don't show the bug dialog
- Fix session --start commandline option
- Blank staff paper: improved bar line distances with recent LilyPond versions
* Installation:
- Install Frescobaldi icon as SVG, not SVGZ
- make uninstall now possible
Changes in 1.1.5 -- August 16th, 2010
* Bugfixes and improvements:
- Work-around a crash introduced in KDE 4.5 when using the --smart option
to set the cursor position.
- Fix Python error message when adding a new LilyPond version with the "Set as
default" option checked.
* Translations:
- Czech updated by Pavel Fric
- Polish updated by Piotr Komorowski
- French updated by Ryan Kavanagh
- Turkish updated by Server Acim
Changes in 1.1.4 -- July 28th, 2010
* Bugfixes:
- Fix Point and Click when running from 'run' script
Changes in 1.1.3 -- July 25th, 2010
* General:
- Tabs can be reordered (can be turned off)
- Tabs don't get automatic shortcuts, they sometimes conflict with ours
- the right tool dock has been made slightly larger by default
* New: Session Management, in two ways:
- Basic session management: if you log out with Frescobaldi running and then
back in, Frescobaldi will reopen the documents that were open at logout.
- Advanced named session support. A session defines a list of open documents,
and optionally a base directory. More features will be added later to be
able to use this as a light-weight project tool.
* Context sensitive LilyPond help:
- added support for internals reference: contexts, grobs and engravers
* Bugfixes:
- Fix crash when editing toolbars
* Installation:
- A 'run' script has been added to run Frescobaldi from the tarball (or even
SVN) without installing.
- Using CMake out-of-source is now easier: icons and translations are not
rebuilt anymore so the Frescobaldi install procedure does not need LilyPond
and 'convert' (from ImageMagick) anymore. The icons and translations are in
the prebuilt/ directory. Simply removing this directory restores the old
behaviour (useful when you want to develop Frescobaldi from a release
tarball, although a fresh SVN checkout is recommended in that case).
* Translations:
- Dutch updated by Wilbert Berendsen
- Turkish updated by Server Acim
Changes in 1.1.2 -- July 8th, 2010
* New features:
- Segno bar line added (available in LilyPond 2.13.19 and higher)
- It is now possible to configure the path that is used to find
files that are included via the LilyPond \include command.
- New 'Close other' action to close all documents except the current
- Print and View icons in the toolbar to print music and open PDF and MIDI
files in their external helper applications
* Printing:
- Printing generated PDF files now uses a print dialog, instead of just
sending the PDF to the 'lpr' command.
* Run LilyPond:
- warn if the document contains a conflicting point and click setting
* General:
- print and email actions have moved to the File menu
- close button on document tabs (can be turned off in Settings->Editor Comp.)
- warnings and notifications have a "dont ask again" checkbox, and can be
turned back on in the settings
- progress indicator saves the build time in document metainfo
* Autocompletion:
- only popup completions from the expansion manager on blank lines
* Settings dialog:
- the settings have been organized in more logical groups
* Installation:
- building the icons from SVN or out-of-source requires LilyPond >= 2.13.19
* Translations:
- Dutch updated by Wilbert Berendsen
- French updated by Valentin Villenave
- Italian updated by Gianluca D'Orazio
Changes in 1.1.1 -- May 3rd, 2010
* LilyPond Documentation Browser:
- Indexing help items fixed with new website (2.13+)
* Fixed Python error message on opening settings dialog with recent SIP/PyQt
* Translations:
- Dutch updated by Wilbert Berendsen
- Turkish updated by Server Acim
Changes in 1.1.0 -- March 26th, 2010
* It is now possible to use multiple versions of LilyPond easily from within
Frescobaldi. LilyPond instances can be configured under Settings, Paths.
There is also a custom Run LilyPond command where a version can be chosen,
among other options. And Frescobaldi can be configured to automatically
choose a LilyPond version according to the document's \version statement.
* Score Wizard, Choir:
- New lyric option "Distribute stanzas" to spread the stanzas between staves.
This option only has effect when there are three or more staves, and is very
useful if there is a large number of stanzas that apply to all voices.
- Lyric placement is fine-tuned when LilyPond >= 2.13.4 is used, using the
staff-affinity setting, so lyrics are placed close to the staff they belong
to. If lyrics apply to multiple voices, the are centered between staves.
This improves the layout of vocal music if the systems are vertically
streched by LilyPond to fill the page nicely.
- New checkbox to create rehearsal MIDI files. If checked, one MIDI file is
generated for each voice, with the voice standing out in a clear sound and
the other voices in a lower volume. Repeats are unfolded and lyrics for the
current voice are also added to the MIDI file.
* Score Wizard, Score settings:
- New checkbox option to wrap the score in a \book block.
* New dialog to insert special characters from the Unicode table, with the
ability to assign keyboard shortcuts to often used characters.
* New command: Copy Lyrics with hyphenation removed
* Expansion Dialog:
- has now some documented default keyboard shortcuts
* Quick Insert Panel:
- New buttons for \halfopen and \snappizzicato
- It is now possible to assign keyboard shortcuts to the articulation buttons
* Repeat last expression: don't append space