-
Notifications
You must be signed in to change notification settings - Fork 109
/
ChangeLog
8694 lines (8097 loc) · 677 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
Scribus - 1.7.0 (Released 2024-xx-xx)
=========================================
https://bugs.scribus.net/changelog_page.php?version_id=117
0016988: [User Interface] Implement IndigoUI collapsible section container as UI widget (nitramr)
0017022: [User Interface] Improve UI of CurveEditWidget (nitramr)
0017027: [Scripter] scripter: document that newDocument()'s size must be in the unit specified (cbradney)
0016950: [User Interface] basepoint rotation widget is not reset when unselecting the current frame (nitramr)
0016450: [Properties Palette] Add 90° "rotate left" "rotate right" buttons (nitramr)
0016979: [User Interface] Implement AdvancedDockingSystem as replacement for QDockWidget (nitramr)
0016993: [User Interface] Make showing / hiding the palettes discoverable (nitramr)
0016622: [General] arrange pages > page previews (nitramr)
0016992: [User Interface] With the new widgets, F12 hides the contents of the palettes but not the palettes themselves (nitramr)
0014847: [General] Thumbnails of Pages in Arrange Pages Palette (nitramr)
0016762: [General] Build failure on 32bit arch (cbradney)
0016797: [Graphics / Image Frames] Barcode generation not possible (jghali)
0013824: [General] Unable to see all icons in dark window color scheme (nitramr)
0016905: [Story Editor / Text Frames] Crash when creating a tab in the horizontal ruler (jghali)
0014357: [User Interface] Missing icons left for deszo (+ we also need HiDep icons) (nitramr)
0016924: [General] render frame with latex does not give any output (jghali)
0015969: [User Interface] Some icons are not visible in dark mode (nitramr)
0012434: [User Interface] basepoint: different widgets for shapes and lines (nitramr)
0016822: [Import / Export] Image Drop Shadow no longer exported to PDF (jghali)
0016861: [Build System] Port of AdapterWidget to Qt6 (jghali)
0016864: [Import / Export] Scribus crashes opening sla files (cbradney)
Scribus - 1.6.1 (Released 2024-01-07)
=========================================
https://bugs.scribus.net/changelog_page.php?version_id=120
0017052: [Scripter] Scripter: add functions to get the items in a group (ale)
0017095: [Scripter] Scripter: add the return values for getObjectType (ale)
0017099: [Story Editor / Text Frames] Wrapped text appears outside text frame (jghali)
0017100: [Typography] Hyphenated text is rendering incorrectly in text boxes (jghali)
0017102: [Usability] DublinCore DocInfo ComboBoxes (jghali)
0017105: [Usability] PDF/X accurate versions (cbradney)
0017106: [OS-Win32] Windows installer causes reboot on some systems part way through installation (jghali)
0017101: [User Interface] new document icon in 22x22 is garbage... (cbradney)
Scribus - 1.6.0 (Released 2024-01-01)
=========================================
0015380: [Language Tools] Can´t paste Spanish content (cbradney)
0011810: [Story Editor / Text Frames] center alignment unprecise in circles (cbradney)
0015447: [Internal] [patch] remove a specific disabled broken code or document what it should do (cbradney)
0013928: [Usability] Y coordinate not updated in popup window (cbradney)
0015980: [Build System] [PATCH] clean up the cmake files (cbradney)
0010106: [User Interface] Create a command launcher (ale)
0017036: [Story Editor / Text Frames] inline items produce a box at the start of the frame (jghali)
0017045: [Story Editor / Text Frames] Incorrect layout of inline items if vertical scale is different of 100% (jghali)
0017050: [User Interface] Snapping doesn't work when scaling frames (ale)
0017056: [Canvas] Page margin rect inherits drop shadow properties of line item (jghali)
0017058: [User Interface] ICC profile comboboxes too short (jghali)
0017065: [Translation] Wrong polish translation of orphan in edit->styles (cbradney)
0017075: [Graphics / Image Frames] Adding a specific .psd file makes itself and the other frames invisible (jghali)
0017079: [Scripter] PATCH: scripter: create setRotation(), deprecate rotateObjectAbs() and add a way to use a specific basepoint (cbradney)
0017081: [User Interface] arrange pages still has 3 and 4 pages layouts (cbradney)
0017083: [Canvas] Changing the line blend mode has no effect on the canvas (nitramr)
0017086: [User Interface] Add context menu to the "Arrange Pages > Document Pages" Panel (cbradney)
0017087: [User Interface] Spiral Edit Dialog doesn't allow angle greater than 360° (jghali)
0017088: [General] When saving the document, arrows attached to spiral shapes are not saved (jghali)
0016333: [Scripter] scribus_version and scribus_version_info should be uppercase (cbradney)
0012499: [Build System] [Proposal] Display versions of all libs used by Scribus (cbradney)
0016865: [General] Tooltips show no text (cbradney)
0014056: [User Interface] Drag/Drop of ODT to text frame should trigger the OpenDocument Importer menu (cbradney)
0015110: [Scrapbook] White objects are invisible in scrapbook (nitramr)
0016987: [Printing] Page prints incorrectly on Windows when using layer blend modes (jghali)
0017017: [Styles] Sort the styles list in style deletion dialog (jghali)
0017019: [Typography] Hyphenation exceptions delete themselves (jghali)
0017020: [General] crash when starting the "insert > glyph" dialog (jghali)
0017021: [General] for loop defect (ale)
0017029: [Scripter] [PATCH] scripter: accessing page > guides > columns/rows (cbradney)
0017031: [Story Editor / Text Frames] Incorrect rendering of rotated inline items (jghali)
0017033: [Story Editor / Text Frames] Copying a frame does not activate paste when editing inside of a frame (ale)
0017037: [Language Tools] File for Dutch hyphenation patterns gives bad results. (cbradney)
0017039: [General] Crash on startup if file recovery fails (jghali)
0016294: [Scripter] [PATCH] add setNormalMode() (and setEditMode()) to the scripter (ale)
0016957: [Graphics / Image Frames] Export to PDF ignores coloring effect on grayscale PNG (jghali)
0016966: [User Interface] About box: Some names formatted improperly in Authors tab (jghali)
0016967: [Build System] Build error caused by removed 'std::unary_function' template in C++17 mode (jghali)
0016968: [Build System] Build error caused by conversion between void pointer and function pointer (jghali)
0016970: [User Interface] About box: table tags not closed (jghali)
0016971: [User Interface] About box: Some text issues in Translations tab (jghali)
0016972: [General] Search & Replace 'Replace All' hangs Scribus when searching for text color (jghali)
0016975: [Build System] Build failure on newer macOS versions than were available when Scribus was released (cbradney)
0016981: [Translation] Translation problems in story editor when changing language from settings (jghali)
0016983: [Printing] Text underline and outline are not printed on Windows (jghali)
0016991: [OS-MacOSX] NSHighResolutionCapable should be a Boolean (jghali)
0016998: [General] Scribus slow and unusable on Wayland (jghali)
0017000: [User Interface] Document Items Attributes in Document Setup/Preferences (cbradney)
0017002: [Internal] Rename ui/cpalette.* to ui/colorpalette.* (jghali)
0017005: [Integration] CI fails because of podofo (jghali)
0017007: [Story Editor / Text Frames] Bad inline object vertical alignement in PDF export (jghali)
0017010: [Build System] CI on Gitlab is failing on podofo (cbradney)
0016948: [General] Scribus does not build with podofo-0.10.0 (jghali)
0016703: [Internal] Internal page links not updated on page copy (jghali)
0014139: [Usability] Default button for preferences should be "Ok" (cbradney)
0016734: [PDF] Build break with poppler 22.2.0 (jghali)
0016737: [Story Editor / Text Frames] Hyphenation stop being applied after conditional hyphen (jghali)
0016743: [Master Pages] Crash when clicking on specific text frame in master page (jghali)
0016754: [User Interface] Keyboard shortcuts always load "iCalamusTM" and modifications cannot be saved. (cbradney)
0016758: [Translation] Norwegian nynorsk invalid file (jghali)
0016759: [Master Pages] Arrange Pages> Document Pages> mini-pages are almost unreadable on hi-res display (jghali)
0016760: [Translation] Spelling error in French translation (jghali)
0016764: [PDF] Build break with poppler 22.03.0 (jghali)
0016767: [PDF] Dashed lines imported from PDF have incorrect segment lengths (jghali)
0016772: [General] Fix various typos (jghali)
0016785: [Graphics / Image Frames] "Show readable text" Option for QR Code on "Insert Barcode" Window should be grey out (cbradney)
0016786: [Graphics / Image Frames] QR code generated by "Insert Barcode" could not show CJK characters correctly (jghali)
0016790: [Documentation] Fix various typos (jghali)
0016796: [Graphics / Image Frames] Issue when opening TIFF file with incorrect embedded ICC profile (jghali)
0016798: [Scripter] importPage() argument usage documentation (jghali)
0016801: [Scripter] linkTextFrames() documentation vs GUI (jghali)
0016808: [User Interface] Scrapbook dialog dropdown menu has unintuitive icon (jghali)
0016809: [Scripter] Scripter crashes with getAllObjects() on a master page (jghali)
0016098: [Typography] A white space width become too small when two Latin words are surrounded by CJK characters in a justified paragraph (jghali)
0016897: [Scripter] Documentation of selectObject() lacks precision (jghali)
0016899: [Build System] No Document Icon is installed on Linux (jghali)
0016902: [Import / Export] Cannot export - save as image when active layer is locked. (jghali)
0016906: [General] Import of Adobe Color Book palettes doesn't work (jghali)
0016907: [Usability] Unremovable or invisible tabulators on the ruler (jghali)
0016920: [User Interface] Cyrillic in Render Frame Editor English GUI (jghali)
0016923: [Typography] OpenType c2sc not practically usable (jghali)
0016930: [General] Scrbus fails to build since code cleanup in r25414 (jghali)
0016945: [Printing] Transparent image sitting above blue frame causes color change on frame where they overlap (jghali)
0014402: [User Interface] Folder icons are missing in file dialogues (cbradney)
0015753: [OS-MacOSX] icons and palette entries are invisible under the dark theme of macOS (cbradney)
0016276: [General] barcode doesn't show readable text (cbradney)
0016802: [User Interface] Issues with "gtk2" application setting in AppImages (jghali)
0016811: [Import / Export] Some issues with PDF import (jghali)
0016821: [Shape Drawing] Scribus crash if you delete a symbol during in "symbol edit mode". (jghali)
0016824: [PDF] Drop shadow of very large shapes shows up wrong in exported PDF (jghali)
0016826: [User Interface] F12 shortcut does not affect Align and Distribute palette (jghali)
0016827: [Canvas] Some objects from left masterpage are not rendered (jghali)
0016830: [Build System] Typo in Findpoppler.cmake? (cbradney)
0016834: [Documentation] Readme file has dead link to Ghostscript (cbradney)
0016841: [Usability] Scribus silently upgrades your file to the new format (cbradney)
0016843: [PDF] Open path with stroke gradient SVG results in closed path in PDF (jghali)
0016847: [PDF] PDFs with layers do not allow layer exclusion when printing on Mac and Windows using Adobe Reader or FoxIt PDF Reader (jghali)
0016852: [General] Moving cursor with down arrow jump to end of next frame (jghali)
0016867: [Usability] If a right to left paragraph follows a left to right paragraph, one of the paragraphs will not work properly (jghali)
0016873: [Story Editor / Text Frames] "Permanently replace missing font" isnt permanent (jghali)
0016874: [Import / Export] CVG-import faulty (cbradney)
0016877: [Build System] NetBSD: link against libexecinfo for backtrace_symbols (jghali)
0016878: [User Interface] File selection dialog box always reverts to small size (reopen) (jghali)
0016879: [User Interface] Pixelated display in Enhanced Character Palette (jghali)
0016881: [User Interface] Section Default Numbering (jghali)
0016882: [User Interface] Scribus first start with tiny window (jghali)
0016885: [Scripter] Pdf export by python scripter embeds fonts which should be subsetted (jghali)
0016889: [Import / Export] Inline image disappears when two sla containing ones are merged (jghali)
0016890: [User Interface] Colors and Fills dialog too narrow (jghali)
0016894: [User Interface] PageItem Attribute dialog too small by default (jghali)
0016901: [Scripter] Provide the information about the page number being "shown" (cbradney)
Scribus - 1.5.8 (Released 2022-01-23)
=========================================
0016726: [General] Duplicate paragraph among linked text frames (jghali)
0016730: [Import / Export] Incomplete import of SVG 1.0 file (jghali)
0016723: [User Interface] Crash on specific user file when selecting text frame with gradients included (jghali)
0016716: [Tables] Not possible to undo a change in a table (cbradney)
0016724: [Documentation] Necessary doc updates for 1.5.8 (cbradney)
0016674: [Scripter] Add getDocInfo() function to Scripter (cbradney)
0016680: [Story Editor / Text Frames] End of search string displays %1 (cbradney)
0016426: [Usability] Can not manage colors and fills (cbradney)
0016692: [Usability] add a5 and a3 (and a6) to the default page sizes (cbradney)
0016697: [General] Crash on startup (jghali)
0016701: [Plug-ins] libscriptplugin.so cannot be loaded on startup (cbradney)
0016705: [User Interface] Colors and Fill dialog: color sets cannot be selected (cbradney)
0016717: [Import / Export] Poppler upgrade breaks build (cbradney)
0016720: [Translation] German translation updates for 1.5.8 (cbradney)
0016693: [General] Document Setup dialog does not open while RAM usage keeps increasing (jghali)
0016685: [Import / Export] Layers not preserved in exported PDF/X-4 files (jghali)
0016640: [Build System] ScZipHandler does not get linked into the executable (jghali)
0016645: [PDF] Text using alternate-form glyphs cannot be copied from PDF (jghali)
0016653: [Translation] Translation to Norwegian nynorsk (nn) (jghali)
0016656: [Import / Export] Crash when importing pdf with the option as text. (jghali)
0016660: [Build System] Fails to compile in gitlab CI (jghali)
0009238: [Scripter] scripter: missing getLineSpacingMode() (cbradney)
0016662: [Scripter] Fix 'Testing equality to None' warning reported by LGTM (jghali)
0016664: [Import / Export] crash at markdown import (jghali)
0015130: [Build System] Fix FindLIBPODOFO.cmake (cbradney)
0016668: [OS-MacOSX] LGTM: fix syntax error missing closing parenthesis in OSX-package/linktools/mkappbundle.py (cbradney)
0016676: [Printing] Incorrect output when printing linked EPS after Multiple duplicate (jghali)
0014127: [Graphics / Image Frames] Inline image cannot be copy'n'pasted
0013132: [Graphics / Image Frames] 16bit CMYK tiff image does not show correctly in scribus (and doesn't report why) (jghali)
0002924: [Story Editor / Text Frames] Search and replace: give feedback about how many occurences were found/replaced (cbradney)
0010874: [Story Editor / Text Frames] Do not deselect current item on escaping link/unlink tool. (cbradney)
0003489: [Import / Export] Page import changes page size (cbradney)
0016555: [Import / Export] Color-indexed PNG is not exported correctly to PDF for Printer (jghali)
0002733: [Story Editor / Text Frames] Scribus crashes when formatting large amounts of text In Story Editor (cbradney)
0016567: [Import / Export] Import PDF as text should create 1-column text frames (jghali)
0016579: [PDF] Tab order for PDF radio buttons does not respect Level in Outline order (jghali)
0016585: [User Interface] Sidebars arrows don't follow system dark theme (jghali)
0015819: [Translation] Plural form needed in new string (cbradney)
0016587: [User Interface] Icons are badly aligned with titles in Preferences window (jghali)
0016588: [User Interface] Color inconsistent with dark theme in marks manager (jghali)
0016589: [Translation] Pull Spanish updates from Weblate (cbradney)
0016591: [General] Typo fixes in source documentation and comments (jghali)
0016592: [Translation] Translation to Norwegian nynorsk (nn) (jghali)
0016593: [Build System] Plugin load fails with undefined symbols (for all plugins) (jghali)
0016594: [Build System] issues with the encoding in AppImage-package/bundle.sh (ale)
0016600: [General] Typo fixes in source documentation and comments (jghali)
0016604: [General] Slow name checks in item creation (jghali)
0016605: [3rd Party] Compilation Error in lib2geom/path.h (jghali)
0016607: [Import / Export] Show progress when importing pdf (jghali)
0016614: [Build System] EXE Linker flags incorrect for clang (jghali)
0016616: [Internal] Refactor and modernize pdfimport (jghali)
0016617: [Build System] Simplify CMake (cbradney)
0016619: [User Interface] File selection dialog box always reverts to small size (jghali)
0016621: [General] Typo fixes in source code + source comments (jghali)
0016623: [OS-MacOSX] Scribus crashes when importing IDML file (jghali)
0015858: [General] use https for the links in about > online dialog (cbradney)
0015859: [General] use https for the resources manager (cbradney)
0016635: [Fonts] Harfbuzz 3.0 breaks compilation (jghali)
0016636: [General] Userdefined Keyboard Shortcuts not working correctly (cbradney)
0016637: [Internal] Building with LTO causes segfaults on startup (jghali)
Scribus - 1.5.7 (Released 2021-04-25)
=========================================
0015738: [User Interface] preferences > display > color tab is disable when a document is open (cbradney)
0013187: [OS-MacOSX] OSX Bug: Unable to access Preferences in Russian Interface (cbradney)
0016548: [General] Updated 600_xelatex.xml (cbradney)
0016044: [OS-MacOSX] Scribus was not able to load its preferences (cbradney)
0016357: [OS-MacOSX] Mac Os Catalina refuses to start Scribus 1.5.6 (cbradney)
0016462: [User Interface] Update Layout for Node Editor (cbradney)
0016470: [General] Clean up unused .ui files (jghali)
0016518: [General] Inserting pages in the middle of a document distorts welded items further down (jghali)
0016526: [User Interface] Cleanup .ui files: delete "Form", "Frame" window titles (jghali)
0016527: [User Interface] Refactor and cleanup aligndistribute:ui (jghali)
0016528: [User Interface] Correct spacing for Manage Masterpages dock palette (jghali)
0016530: [Translation] German translation updates for 1.5.7, as well as DE and EN doc updates for 1.5.7 (jghali)
0016532: [Master Pages] Using two times same image on different masterpages removes image from previous masterpage (jghali)
0016536: [PDF] Page::getFormWidgets() returns unique_ptr in poppler 21.04.0 (jghali)
0016540: [Usability] Adding XeLaTeX support (cbradney)
0016541: [Printing] Minor issues regarding print seperations (jghali)
0016544: [General] Cannot create a page smaller than 1" wide or tall (cbradney)
0016545: [Translation] Turkish translation update (jghali)
0016546: [User Interface] XeLaTeX render frame editor not picking up icons (cbradney)
0016370: [User Interface] [Patch] Rearrange Typography panel in Preferences dialog (cbradney)
0016543: [Usability] Scribus crashes after applied undo-redo operation on the cut text frame (jghali)
0016542: [Usability] Scribus crashes after undoing "Unlink Text Frames and Cut Text" (jghali)
0016491: [General] Unable to select lines at low zoom level (jghali)
0016385: [User Interface] Page import dialog defaults to cancel (jghali)
0016142: [Import / Export] Preliminary support for importing PDF text as text (jghali)
0016413: [PDF] Enable embedding OpenType fonts in PDF/X-4 (jghali)
0016431: [Story Editor / Text Frames] Page numbers placed in masterpages not displayed correctly when objects are grouped (jghali)
0016436: [Documentation] File not encoded in UTF-8 (jghali)
0016443: [Story Editor / Text Frames] Linked text boxes: text re-starts from beginning when text is displaced entirely from one of the linked boxes (jghali)
0016447: [PDF] Ligatures cannot be extracted from PDF as text (jghali)
0015682: [General] Scribus crashes when checking fonts on startup (jghali)
0016457: [Properties Palette] Pressing ENTER in PP adds a paragraph separator in text frame (jghali)
0009604: [User Interface] Missing possibility to configure first line offset default value for the text box (jghali)
0009614: [General] Non breaking spaces look the same as normal spaces when "Show Control Characters" is checked (jghali)
0016315: [Scripter] Scripter's duplicateObject(s) should not affect the clipboard (jghali)
0016318: [Scripter] Add checkValidPageNumber() (ale)
0016323: [General] Starting page not stored (jghali)
0016324: [General] appdata: add content_rating, releases (cbradney)
0016327: [Build System] libhunspellplugin.so fails to load (jghali)
0016340: [General] Unable to open one scribus document (jghali)
0016343: [Story Editor / Text Frames] Scribus crashes when copy/pasting text if style is not in target document (jghali)
0016347: [Story Editor / Text Frames] Text alignment issue after flow around object (jghali)
0016359: [General] "Restart after other format" is not persistent after reload (jghali)
0016365: [General] Opening attached PDF in Scribus leads to crash [due to crippled javascript inside) (jghali)
0016379: [Fonts] Fonts are ragged (low resolution) in 1.5.6.1 (jghali)
0016475: [General] Error when trying to open document with size above 2Gb (jghali)
0016497: [User Interface] Bad behavior of annotation "Y" field (jghali)
0016519: [Import / Export] [album] object larger than page size copied to an album is resized to page size (cbradney)
0016525: [Translation] Italian translation updates for 1.5.7 (FirasH)
0014472: [General] " Manage Masterpages " palette is not completely resizable (FirasH)
0016432: [User Interface] Update layout for Image Effects dialog (jghali)
0016394: [User Interface] Update layout for Insert Pages dialog (jghali)
0012964: [User Interface] Visual glitches in the Preferences / Document Setup dialog (jghali)
0016334: [User Interface] Unify color picker button sizes in Preferences dialog (jghali)
0016350: [General] Undo of ungrouped grouped object crashes Scribus (jghali)
0016353: [User Interface] Missing line after "Guides" panel title in Preference dialog (jghali)
0016352: [User Interface] Non-transparent scrollreas in preferences dialog (jghali)
0016361: [User Interface] Remove extra margin around Document sections panels in Preferences dialog (cbradney)
0016363: [User Interface] Unify margins in Preferences > Fonts tabs (cbradney)
0016362: [User Interface] Remove margin from arc, polygon, spiral, margin (& bleed) widgets to prevent double and triple margins in Preferences dialog (cbradney)
0016364: [User Interface] Remove empty groupbox label and groupbox from Document Item Attributes in Preferences dialog (cbradney)
0016367: [User Interface] Remove frame border from hidden scrollareas in main Preferences dialog (jghali)
0016388: [User Interface] Add missing vertical spacer to Create Range dialog (jghali)
0016387: [User Interface] Remove unnecessary group boxes from Insert a frame interface (jghali)
0016371: [User Interface] Make main list a little heigher to fit all menupoints without scrollbars in Preferences dialog (jghali)
0016384: [User Interface] Shrink Layers panel (jghali)
0016389: [User Interface] Update layout for Multiple Duplicate dialog (jghali)
0016381: [User Interface] Update main layout's margins for Style Manager (jghali)
0016386: [User Interface] Unify minimum size of dock palettes (jghali)
0016391: [User Interface] Fix margins for Margins & Bleeds in Document Setup/Document Setup (jghali)
0016390: [User Interface] Update layout for Manage Guides dialog (jghali)
0016392: [User Interface] Unify margins in Page Properties dialog (jghali)
0016395: [User Interface] Unify margins for Import Page, Delete Page, Copy&Move Page dialogs (jghali)
0016400: [User Interface] Update layout for About and About Plugins dialogs (jghali)
0016401: [User Interface] Update margins for Picture Browser (jghali)
0016403: [User Interface] Unify margins for New document (startup)/New document dialog (jghali)
0016402: [User Interface] Update margins for Preflight Verifier, Colors and Fills and Print/Output preview dialogs (jghali)
0016407: [User Interface] Unify spacing and margin for dock palettes (jghali)
0016415: [User Interface] Fix default dialog margins (jghali)
0016417: [User Interface] Fix minimum size for Note Style Editor (jghali)
0016418: [User Interface] Unify margin and spacing for Character Palette (jghali)
0016419: [User Interface] Unify margin and spacing for Replace Colors dialog (jghali)
0016422: [User Interface] Update layout for Gradient Vector Editor (jghali)
0016424: [User Interface] Update layout for Edit Colors dialog (jghali)
0016423: [User Interface] Update layout for Gradient Editor (jghali)
0016420: [User Interface] Unify margins and spacing for dialogs, set 1 (jghali)
0016429: [User Interface] Update layout for PDF Field Properties dialog (jghali)
0016430: [User Interface] Unify margins and spacing for dialogs, set 2 (jghali)
0016434: [User Interface] Update minimum width for Measurements dialog (jghali)
0016437: [User Interface] Unify window margin for New From Template dialog (jghali)
0016452: [User Interface] Update layout for Check Spelling dialog (jghali)
0016453: [User Interface] Unify margins and spacing for dialogs, set 3 (jghali)
0016456: [User Interface] Unify margins and spacing for dialogs, set 4 (jghali)
0016455: [Translation] Clean up HTML header code from translation segments (jghali)
0016458: [User Interface] Unify window margin for file open/save/export dialog (jghali)
0016465: [User Interface] Unify margins and spacing for dialogs, set 5 (jghali)
0016454: [User Interface] Update layout for Barcode Generator (jghali)
0016467: [User Interface] Unify margins and spacing for dialogs, set 6 (jghali)
0016472: [User Interface] Unify margins and spacing for dialogs, set 7 (jghali)
0016477: [User Interface] Update layout for PDF import dialog (jghali)
0016476: [User Interface] Unify margins and spacing for dialogs, set 8 (jghali)
0016488: [Graphics / Image Frames] Image file getting deleted on closing document (jghali)
0016524: [User Interface] Cleanup, pretty code for .ui files (jghali)
0016522: [User Interface] Cleanup, remove unused "..." text from toolbuttons (jghali)
0016521: [User Interface] Cleanup, remove broken icon links from .ui files (jghali)
0016511: [User Interface] Unify margins and spacing, last part (jghali)
0016507: [User Interface] Update layout for Style Manager: widow and orphans, character layout (cbradney)
0016505: [User Interface] Unify size of icon buttons on dock palettes (cbradney)
0016512: [User Interface] Shrink eyedropper dialog for new color name (jghali)
0016501: [User Interface] Update layout for Style Manager: fontcombo, styleselect, tabruler (jghali)
0016510: [Internal] Clean up scribus/docinfo.cpp (jghali)
0016504: [User Interface] Shrink minimal width for Line tab in Propeties Palette (jghali)
0016499: [Internal] Crash on setting tabs after reverting to parent style's tab (jghali)
0016494: [User Interface] Unify margins and spacing for properties palette, set 3 (jghali)
0016493: [User Interface] Unify margins and spacing for properties palette, set 2 (jghali)
0016483: [Internal] Unify margins and spacing for XTG dialog (jghali)
0016489: [User Interface] Unify margins and spacing for properties palette, set 1 (jghali)
0016490: [User Interface] Remove dead bottom space from XYZ and Shape tabs in Properties Palette (jghali)
0016486: [User Interface] Unify margins and spacing for dialogs, set 12 (jghali)
0016485: [User Interface] Unify margins and spacing for dialogs, set 11 (jghali)
0016484: [Internal] Clean up adjustcmsdialog (jghali)
0016480: [Internal] Clean up scinputdialog (jghali)
0016482: [User Interface] Unify margins and spacing for dialogs, set 10 (jghali)
0016481: [User Interface] Unify margins and spacing for dialogs, set 9 (jghali)
0016479: [Story Editor / Text Frames] Story editor does not follow dark theme (jghali)
0015294: [Usability] If you change many times the color in "Insert Barcode" window, the window grows (jghali)
0016464: [Usability] Scribus appimage crashes after patch of barcode (jghali)
0016459: [Translation] Exclude disabled plugins from translation source (jghali)
0016442: [Usability] Crash without feedback when starting Extras -- Check Spelling (jghali)
0016427: [Build System] Does not build with podofo 0.9.7 (jghali)
0016383: [User Interface] [Patch] Unify margins for dockable interfaces and some modal windows (jghali)
0011619: [Undo/Redo] Column jump is recorded as document modification (jghali)
0012538: [Undo/Redo] Undo/Redo cause crash if Group is used multiple times (jghali)
0012491: [Undo/Redo] Undo/Redo does not restore Group of Groups (jghali)
0012351: [Undo/Redo] Redo does not restore actions applied after grouping items (jghali)
0012392: [Undo/Redo] Undo/Redo crashes Scribus deleting a Group + Item (jghali)
Scribus - 1.5.6.1 (Released 2020-11-14)
=========================================
0016327: [Build System] libhunspellplugin.so fails to load
Scribus - 1.5.6 (Released 2020-11-07)
=========================================
0016212: [Scripter] Fix docstrings for the scripter's pdfexport and print (ale)
0014892: [Story Editor / Text Frames] Undo doesn't work for search/replace operation (jghali)
0016176: [Usability] By default select all files that can be recovered (ale)
0016198: [Internal] Remove rulers OPTION_SMOOTH_MARKERS code (jghali)
0016210: [Scripter] Provide a way to get the current script path (jghali)
0015201: [General] Unstable when footnotes move to another frame (jghali)
0015978: [User Interface] Item Tools color comboboxes do not have enough width for strings (jghali)
0015211: [Internal] c++ 11... 14... 17 (cbradney)
0016240: [Scripter] pasteObject always returns null but the docstring promises a text (cbradney)
0016245: [Scripter] in the scripter copyObject can copy one single item at a time (jghali)
0016249: [Import / Export] Part of imported SVG disappear (jghali)
0016252: [Scrapbook] Scrapbook issue in Windows (jghali)
0016254: [Scripter] Add getCellText() function scripter (jghali)
0016256: [Translation] Incorrect translation of "View Tools" in French (jghali)
0016262: [User Interface] Recover files: close the dialog if after recover / delete there is no more file in the list (ale)
0016265: [Scripter] Python script error when using "i" as a variable name (jghali)
0016266: [Scripter] Add ability to get and set first line offset from scripter (jghali)
0016271: [Story Editor / Text Frames] Undo truncate content on multiple frames only undoes one frame (jghali)
0016274: [Internal] Remove outdated FIXME (ale)
0016277: [Scripter] Balance quotes in cmdgetsetprop.h (ale)
0016281: [Scripter] No shadows in PDF exported while setRedraw(False) (jghali)
0016284: [Story Editor / Text Frames] Issue with Convert to Outlines for CTL Text (jghali)
0013728: [Undo/Redo] Issue when undoing numbered lists (jghali)
0016288: [Story Editor / Text Frames] For some CTL script languages spellcheck word correction is wrong (jghali)
0016289: [Fonts] Certain fonts produce weird space characters when copy/pasting from PDF (jghali)
0015271: [OS-MacOSX] this 2mb document takes hours to open, is uneditable because of slowness (cbradney)
0016298: [Scripter] sentToLayer() should be called sendToLayer() (jghali)
0016299: [Scripter] Add support for retrieving objects on a specific layer to the scripter (jghali)
0016301: [Scripter] Fix scripter getAllObjects() documentation (jghali)
0009390: [Story Editor / Text Frames] When you move a flowing frame out of a flowed frame, the flow is not updated (jghali)
0016302: [User Interface] addMenuStringToMenuBar() does not use the menu label in the menu (ale)
0016304: [General] Line selection hitboxes extend "above" the line after loading a document (jghali)
0016306: [Scripter] Add constants for the item types (text, image, ...) (jghali)
0016308: [Scripter] Readability and feature fixes for getAllObjects() (ale)
0016310: [Scripter] in cmdobj.h there is a declaration of scribus_getframetype but no definition seems to exist (jghali)
0016311: [Scripter] in cmdobj.cpp, scribus_pasteobject() defines char* name but never uses it (jghali)
0016316: [Translation] German translation updates for 1.5.6 (christoph_s)
0016319: [Documentation] Doc updates for 1.5.6 (cbradney)
0012493: [Import / Export] "Export to Image" dialog proposes bad prefix, folder and image type (cbradney)
0015571: [User Interface] Help > Help (cbradney)
0014322: [General] Stack overflow when opening 1.4.x document containing inline items (jghali)
0016290: [User Interface] Typo in RecoverDialog string (jghali)
0016291: [Translation] Italian translation updates (FirasH)
0016280: [Undo/Redo] Incorrect Undo listing for vector graphics import (jghali)
0016269: [Translation] Italian translation updates (FirasH)
0015761: [Graphics / Image Frames] "Combine Polygons" doesn't work (jghali)
0016191: [Internal] In ScribusMainWindow return early in keyPressEvent() and keyReleaseEvent() if there is no document (jghali)
0015493: [Scripter] scriptplugin: Add setBleeds to API (cbradney)
0014467: [General] 1.5.x slows down immensely (with high CPU usage) when opening 1.4.6 file (jghali)
0013978: [User Interface] Regression: Docked palettes position is not saved between sessions (0011544) (cbradney)
0016144: [Canvas] Cycling through items in a group with alt-ctrl (jghali)
0015642: [General] 'Right-click' on trackpad makes cursor jump upwards (cbradney)
0016159: [Scripter] Add selectFrameText() to scripter (ale)
0016160: [Typography] Smart hyphens not insertable in story editor (jghali)
0016164: [Import / Export] footnote font is not vectorized when exported by script (jghali)
0015656: [General] comma and decimals (cbradney)
0015912: [OS-MacOSX] Scribus doesn't open on double click of an data file (cbradney)
0016170: [User Interface] Disable insert marks when no document is open (jghali)
0016171: [Story Editor / Text Frames] ScribusMainWindow::insertMark() should not delete the selection before executing the dialog (jghali)
0015929: [Build System] a few warnings about unused variables... (jghali)
0015681: [Story Editor / Text Frames] Crash when deleting text with footnotes (jghali)
0015970: [User Interface] Status bar comboboxes are not following dark theme (jghali)
0015972: [User Interface] Contents of colors and lines and fonts in combobox is not visible in dark mode (jghali)
0015977: [User Interface] QComboBox in Startup Dialog does not extend properly with Breeze/Oxygen theme (jghali)
0015984: [User Interface] Hatch angles restricted (jghali)
0016000: [Scripter] Scripter: behavior of setCharacterStyle() depends on the frame name being defined (ale)
0016001: [Scripter] Scripter: add getCharacterStyle() (ale)
0016085: [PDF] Add support for clipping along text paths (jghali)
0016086: [PDF] Unblend colors that are preblended with matte (jghali)
0016090: [Scripter] Python documentation for getText() and insertText() could be improved. (jghali)
0016091: [Scripter] Rename Python getText() to getFrameText() (jghali)
0016092: [General] Screen not updated correctly when deselecting items with ESC key (jghali)
0016099: [Typography] Add implicit space between a Latin character and a CJK character (jghali)
0016100: [Typography] No line wrap between a CJK character and a Latin character (after a CJK) (jghali)
0016102: [Typography] Automatic space between CJK and Latin is inserted at the end of line (jghali)
0016105: [Build System] Windows installer shows garbled chinese characters (jghali)
0016107: [Build System] Fix the Travis CI (ale)
0015852: [Build System] [PATCH] CMake can't locate some icu-uc headers with pkg-config (cbradney)
0016109: [General] Scribus hangs for 3-5 mins on adding/changing color (jghali)
0016119: [General] the AppImage is crashing at start (jghali)
0016124: [Build System] Add support for visual studio 2019 (jghali)
0016158: [User Interface] Deleting masterpage requires 2 confirms (jghali)
0016177: [Internal] Avoid a double check for HasSel (jghali)
0016178: [General] Able to add items to locked layer (jghali)
0016179: [General] Opening a document with locked layers allow adding new content (jghali)
0016189: [Canvas] Page Up and Down with the keyboard: the red border around the page is not correctly updated (jghali)
0016190: [User Interface] When starting scribus with no documents, the status bar widgets are not disabled (jghali)
0016195: [User Interface] Clicking the RTL button does not give any visual feedback (ale)
0016196: [Story Editor / Text Frames] Cursor blinking not mirrored for horizontally flipped text frames (jghali)
0016209: [Styles] Modifications in Document Setup->Tables of Contents not being applied (jghali)
0016131: [Plug-ins] scribus can't load 'libscriptplugin' (cbradney)
0016138: [Typography] Wrong space before a closing double quotes character in justified paragraphs (jghali)
0016140: [Usability] Endless selection when using Copy Item Properties (jghali)
0015962: [General] File inflate from 27Mb to 60Mb (jghali)
0014140: [Usability] Cutting/Pasting then deleting footnote frame results in crash (jghali)
0013487: [Story Editor / Text Frames] Removing lines in numbered lists doesn't reorder numbers (jghali)
0013731: [Canvas] Numerated Lists: refresh bug (jghali)
0015231: [General] While dragging a guide, pressing ESC should cancel the action (jghali)
0012495: [Undo/Redo] Undo/Redo crashes Scribus using Marks > Reference to Item (jghali)
0014181: [Story Editor / Text Frames] Deleting text with anchor marks triggers crash (jghali)
0015381: [PDF] PDF Import displays non uniform letters (jghali)
0015951: [General] preselect the first item when importing from list of master pages (cbradney)
0015957: [Color Management] Embedded ICC color profiles of PNG images are not detected during import (jghali)
0015982: [Internal] Remove #elif-ed code that cannot compile in scfonts.cpp (ale)
0015989: [User Interface] Enable Ctrl+Click to select objects below guides (jghali)
0015994: [Guides] If guides are behind items, cursor still changes to guide moving (jghali)
0016003: [Scripter] Scripter: rename traceText() to outlineText() (ale)
0016010: [Import / Export] pdf import is distorting individual elements in pdf (mapreri)
0016021: [General] Open recent menu: put the accelerator on the number (ale)
0016022: [User Interface] Changing icon set requires restarting Scribus (jghali)
0016027: [Translation] There are some non-English words in English version of Scribus Help (jghali)
0016029: [General] on linux disable/remove the menu "help > check for updates" and the tab "about > updates" (cbradney)
0016031: [User Interface] Wrong color scheme on the side panel of the Story editor (jghali)
0016034: [Story Editor / Text Frames] First line indent doesn't work for single line RTL paragraph (Fahad)
0016042: [General] Lost frames when opening 1.4.x file (jghali)
0016054: [Styles] Styles are disabled when trying to edit style for first time (jghali)
0016055: [Documentation] Errors in messageBox(...) documentation (jghali)
0016062: [Story Editor / Text Frames] Selecting individual bullet character crashes Scribus (jghali)
0016066: [Story Editor / Text Frames] Variable Text gets damaged when hyphenation is on (jghali)
0016068: [PDF] PDF analyzer fails on dash pattern and type0 fonts (jghali)
0016069: [PDF] PDF import distorts images (jghali)
0016070: [Graphics / Image Frames] Improve AdjustFrameToImageSize (jghali)
0016071: [Graphics / Image Frames] Outline node movement changes contour, reset fails (jghali)
0016073: [PDF] Fixing some clip handling issues in PDF import (jghali)
0016074: [General] Typo in scripter documentation (mapreri)
0016076: [General] Fix build with Qt 5.15 (jghali)
0016077: [PDF] Rotate imported path's and tiling patterns (jghali)
0016079: [PDF] Copy the full codeToGID table (jghali)
0016082: [Undo/Redo] Text undo crash (jghali)
0016083: [PDF] Stroked text is not imported (jghali)
0015865: [Import / Export] Rotated images in a PDF are imported incorrectly (jghali)
0016075: [Translation] Updates to Italian translation (FirasH)
0016057: [Usability] Two settings are wrongly active in colour management preferences (jghali)
0016051: [User Interface] Fix some minor typos in new strings (FirasH)
0016050: [Translation] Minor update to Italian translation (FirasH)
0014098: [User Interface] Translations list is empty (ale)
0003612: [Usability] Changing width or height of rotated items behaves inconsistently depending on basepoint (jghali)
0014921: [Typography] Text-on-path should be able to wrap around on closed paths (jghali)
0015438: [General] Multiple duplicate on pages (ale)
0012118: [Canvas] Resizing rotated items going over 0 width/height behaves strangely (jghali)
0015741: [Internal] do not return int from PreferencesDialog::addItem() (cbradney)
0015751: [Build System] Update CMake find commands to new standard (cbradney)
0015752: [Plug-ins] Spell checker recognises comma symbol as an error (jghali)
0015763: [General] Scribus crashes shortly after start. (cbradney)
0015764: [Internal] Warning in fparser.cc (jghali)
0015767: [Internal] a few warnings about unused variables... (jghali)
0015770: [Internal] Add a virtual Prefs_Pane::apply() function (jghali)
0013211: [Canvas] Snap to bleeds (ale)
0015775: [Build System] set the default name tag for the AppImage to "nightly" (ale)
0015778: [Printing] Margins read from printer driver are wrong in landscape mode (jghali)
0015784: [Import / Export] imported SVG containing text not rendered properly (jghali)
0015794: [Scripter] Add bullet support for scripter plugin (jghali)
0015797: [PDF] PDFs imported and duplicated in image frames wrongly scaled on PDF export (jghali)
0015798: [Usability] Items from invisible layers can be selected (jghali)
0015800: [Scripter] Add tabs support for scripter plugin (jghali)
0015801: [General] multiple duplicate on pages: allow duplicating items from facing pages (ale)
0015802: [Internal] a few warnings about unused variables (jghali)
0015803: [Internal] a few warnings about comparison of integers of different signednes (jghali)
0015808: [Styles] Scribus crashes when editing character styles' hyphenation character (jghali)
0015818: [PDF] gradient transparency on a group make the group disappear in the pdf (jghali)
0015821: [Translation] Add Russian translation for Scribus Manual (jghali)
0015836: [Undo/Redo] Undoing on Attach Text to Path returns a bigger selected Text Frame (jghali)
0015837: [Import / Export] Import of Tiff files: the default resolution unit should be "per inch" (jghali)
0015841: [Styles] When cloning a style, add a number instead of prepending "Clone of" (jghali)
0010988: [General] Snap to items should make the guides snap to items (ale)
0015853: [General] convert text to outline does not work correctly if the basepoint is not top left (jghali)
0015607: [Graphics / Image Frames] Image quality preview settings in the context menu are not mutually exclusive (ale)
0015870: [Internal] Remove some unused class variables, variables, ifs and commented out code (ale)
0015872: [Internal] De-obfuscate a bit the rotation in pdfimport (cbradney)
0015106: [Story Editor / Text Frames] First line indent doesn't support RTL text (Fahad)
0015884: [Scripter] Error "More keyword list entries than format specifiers" (jghali)
0015895: [Translation] German UI translation updates for 1.5.6svn (jghali)
0015900: [Story Editor / Text Frames] Story Editor jumps to top every time a style is changed (jghali)
0015901: [Plug-ins] Fails to build with python 3.8 (jghali)
0015902: [Build System] ui/oneclick.cpp/h seems to be unused (jghali)
0012320: [Undo/Redo] Undo/Redo does not restore properly a flipped Spiral (jghali)
0015910: [Properties Palette] Indigo UI: move the group and table panes to the content palette and create a page pane (ale)
0015911: [Scripter] After calling insertText(), getText() does not show all characters (jghali)
0012588: [Usability] Master Page import Improvements (ale)
0015916: [Canvas] Detect arrow keys while the rotation tool is active (ale)
0015917: [General] line, basepoint and rotation (jghali)
0015918: [Internal] unused variable visualHeight and visualWidth (jghali)
0015921: [User Interface] Update to tooltip for PDF export required (jghali)
0015922: [Translation] German UI translation update, part 2 (jghali)
0015925: [Shape Drawing] Selecting nodes always highlights the top left node (jghali)
0015928: [General] Multiple duplicate on page must clear the content of the new linked text frames (ale)
0015930: [Internal] ColorPixmapValue is defined in ui/colorlistmodel.h and implemented in ui/colorlistbox.cpp (ale)
0013630: [OS-Win32] Add Registry support for fonts in Windows (jghali)
0015934: [Shape Drawing] Nodes editor: Moving nodes with the keyboard cannot be undone (jghali)
0015936: [Internal] Remove ui/sccombobox (ale)
0015937: [Internal] ui/newfile.h name does not match name of class (jghali)
0015940: [General] Duplication of names: add getUniqueName in util.cpp with the new "name (#)" pattern (ale)
0015941: [General] Use the "name (#)" pattern when duplicating the master pages (ale)
0015946: [General] File size increase (jghali)
0015949: [Internal] Signed vs unsigned comparison warning in importpdf.cpp (jghali)
0015953: [Story Editor / Text Frames] Wrong error message when linking already linked text (jghali)
0015959: [Scripter] Scripter: add setItemName() (ale)
0015207: [Story Editor / Text Frames] Duplicate Linked Text Frames (jghali)
0015464: [General] Scale multiple objects doesnt play nice with undo (jghali)
0008115: [Import / Export] Import multiple master pages (ale)
0015030: [Scripter] Port scripter to Python 3 (jghali)
0012223: [Undo/Redo] Undo is not able to restore properly a rotated Spiral (jghali)
0015811: [Properties Palette] [PATCH] Indigo UI: shrink the "shape" tab of the properties palette (ale)
0013525: [Story Editor / Text Frames] Content in SE jumps upward when switching between windows (jghali)
0015850: [User Interface] Improve access to shape buttons (jghali)
0012277: [Shape Drawing] Simplify UI of even-odd vs. nonzero filling rules (ale)
0015886: [Scripter] Scripter: Add function to revert doc to last saved state (ale)
0015965: [Scripter] Scripter: getMasterPage() is not documented (jghali)
0015974: [Internal] Simplify CanvasMode::setModeCursor() by using CanvasMode::modeCursor() (ale)
0015975: [Import / Export] IDML: guides on pages are not imported (ale)
0011369: [Story Editor / Text Frames] Scribus doesn't show the search results outside the viewport or outside of linked textframe (jghali)
0012236: [Undo/Redo] Undo/Redo is not able to manage the conversion of a Polyline to Polygon (jghali)
0015985: [Build System] Scribus fails to build against poppler 0.83.0 (jghali)
0011558: [Graphics / Image Frames] 3 Efficiency Features to improve Image Manager (ale)
0015871: [Graphics / Image Frames] pictures - path (ale)
0015812: [User Interface] [PATCH] Indigo UI: Properties palette: why is there a Group tab? (ale)
0015883: [General] The color picker should suggest the RGB color code as the default name (jghali)
0015759: [Import / Export] Gradient in imported SVG file disappears after resizing and leaves the result unsusable (jghali)
0015878: [Usability] Drop shadows not immediately available for image frames (jghali)
0015881: [Usability] After deleting text frame, the truncate and clear actions are still active (jghali)
0015882: [Usability] Truncate action is active for image frames (jghali)
0015551: [User Interface] Content Palette with Text and Image Properties (ale)
0015864: [Usability] Properties palette inactive after loading document (jghali)
0015835: [Typography] "Slashed Zero" needs to be automatically disabled if the font feature "Old Style" has been selected. (Fahad)
0013922: [Undo/Redo] Undoing setting the text onto a circle shape "path" duplicates instead of undoing (FirasH)
0012084: [Undo/Redo] Undo does not work with Attach/Detach text to/from path (FirasH)
0015820: [General] Last page is not movable in "Arrange Pages" palette (jghali)
0015824: [Typography] Removing hyphenation character in paragraph style is not working (jghali)
0015773: [Internal] Fix indent in scribus/pageitem_textframe.h (jghali)
0015805: [Usability] External Tools preferences contain outdated information about gimp (jghali)
0015806: [Language Tools] Typo in language name (jghali)
0015817: [Translation] Italian translation update (FirasH)
0015788: [Usability] A style may still be used after being deleted (jghali)
Scribus - 1.5.5 (Released 2019-07-31)
=========================================
0015747: [Import / Export] Image's transparency is positioned differently in PDF export (jghali)
0015736: [Typography] Modifying character horizontal scale produces bad result on Malayalam text (jghali)
0015731: [Build System] Build error in revision 23064 (jghali)
0015728: [Build System] AppImage's bundle.sh: remove -DWANT_GUI_LANG cmake options (jghali)
0015723: [Build System] Small typo in the main CMakeLists.txt (jghali)
0015720: [Scrapbook] Small improvement to scrapbook initialization (jghali)
0015719: [User Interface] Keyboard shortcuts for copy/paste/delete content don't work (jghali)
0015718: [Story Editor / Text Frames] Text layout not updated when flow around shape stop overlapping text frame (jghali)
0015715: [Typography] When changing sections, page numbers on regular pages are not updated immediately (jghali)
0015709: [Build System] Missing docstring in cmake set command (jghali)
0015705: [Usability] Text color combos show wrong value (jghali)
0015703: [Usability] "None" color value is R:153, G:102, B:51 (jghali)
0015700: [Internal] Conditional jump or move depends on uninitialised value(s) in PageItem::setLineEnd on importing from PDF. (jghali)
0015696: [Translation] Croatian update for scribus-short-words.rc (jghali)
0015690: [Color Management] Replace Color function skips paragraph background color (jghali)
0015685: [Graphics / Image Frames] Multi-step gradient incorrectly imported from PDF (jghali)
0015675: [Import / Export] Wrong color used on svg import (jghali)
0015671: [Build System] Improve AppImage build by allowing relative paths to resource directories (jghali)
0015670: [PDF] PDF Link annotations not updated when inserting/removing pages (jghali)
0015666: [Internal] Fix build with poppler-0.76 (jghali)
0015664: [Language Tools] Support Hebrew numbering system (jghali)
0015663: [Translation] croatian translation (cbradney)
0015660: [User Interface] Reorder Space glyphs (cbradney)
0015655: [General] tooltip length (cbradney)
0015654: [General] Incorrect ordering of language list in Preference's document setup options (jghali)
0015650: [General] Footnote frame incorrectly sized when re-opening document (jghali)
0015648: [General] Crash when loading document containing footnotes (jghali)
0015646: [Internal] remove ScribusDoc::CurrentSel: it's not used (jghali)
0015645: [Translation] Non translatable strings in Picture Browser (jghali)
0015644: [User Interface] Use "Apply" and "Remove" for the buttons in the Image Effects tool (cbradney)
0015638: [Build System] Missing dll in 1.5.5.svn snapshot from 07/04/19 (jghali)
0015631: [Internal] make StyleSet::getDefault() const (jghali)
0015630: [Scripter] Document scripter's getCharStyles() (jghali)
0015629: [Scripter] Calling createCharStyle() with no arguments creates a style with a font size of 200 pt (jghali)
0015616: [Import / Export] After importing PDF created by imagemagick, scribus saves corrupt .sla files (jghali)
0015614: [Shape Drawing] path tools > subtract does not work correctly (jghali)
0015612: [General] Pasting several objects changes z-index (jghali)
0015611: [Shape Drawing] Deleting shape point triggers crash (jghali)
0015604: [Undo/Redo] wrong undo when resizing multiple items (jghali)
0015603: [User Interface] Image rotation increment down button doesn't go below zero (or wrap to 360) (jghali)
0015601: [Story Editor / Text Frames] Last line of text frame appears duplicated at the beginning of next linked text frame (jghali)
0015597: [Graphics / Image Frames] crash when inserting a glyph... in an image frame (jghali)
0015596: [Internal] remove the global variable ScMW (jghali)
0015594: [Graphics / Image Frames] Copy-pasting image may change image offset (jghali)
0015589: [Internal] Remove old PrefsPanel API (jghali)
0015585: [Graphics / Image Frames] Enable toolsEditContents action also when image is set to scale to frame (jghali)
0015583: [General] Clicking "ok" in the preferences calls "Prefs_Scripter::apply()" two times (jghali)
0015578: [Language Tools] Cannot install Swedish spelling dictionary (jghali)
0015576: [General] scripter's setProperty() works only with two possible values of 'startArrowIndex' and 'endArrowIndex' (jghali)
0015565: [Import / Export] PDF is wrongly imported : page twice as large as it should (jghali)
0015564: [Guides] Wrong color of guides inserted from guide manager colum/row tab (jghali)
0015563: [Canvas] Add shift modifier to resize gesture (jghali)
0015562: [Fonts] Fonts installed by user are not found by scribus on Windows 10 1809 (jghali)
0015557: [Build System] update the appimage config for gitlab (jghali)
0015554: [Canvas] Fix shift selection mode for multiple selection (jghali)
0015552: [Usability] Add possibility to search through scribus actions (ale)
0015550: [Fonts] Add a tab to Preferences > Fonts with the rejected fonts (jghali)
0015549: [Internal] Typo in propertiespalette.cpp: xyzPal, not imagePal (jghali)
0015546: [Plug-ins] cannot add plugins to some of the menus (jghali)
0015543: [Templates] Prices on Menükarte template disappear (jghali)
0015537: [Build System] changes in poppler 0.73.0 cause build failure (jghali)
0015534: [User Interface] Deleting guides in Page -> Manage guides broken when rulers not relative to page (jghali)
0015532: [Master Pages] SVG imported into masterpage shows "out of bounds" in pre flight (jghali)
0015527: [Usability] Page jumps when trying to edit an object (jghali)
0015516: [Build System] changes in poppler 0.72.0 cause build failure (jghali)
0015512: [Usability] Moving control points when editing shape crashes Scribus (jghali)
0015509: [Scripter] puzzling definition of scripter getTextColor() function (jghali)
0015508: [Scripter] getTextColor / getLineColor mixup in the scripter documentation (jghali)
0015498: [Import / Export] Document crashes Scribus upon export to pdf (jghali)
0015495: [Printing] Print Preview is blank (jghali)
0015489: [Scripter] scriptplugin: Add combinePolygons to API (jghali)
0015485: [Scripter] add getImageColorSpace python function (jghali)
0015483: [Scripter] add setJSActionScript and getJSActionScript python functions (jghali)
0015482: [User Interface] Zoom to mouse cursor no longer possible after svn from 2018.11.01 (jghali)
0015477: [Canvas] Add Alt selection mode (jghali)
0015470: [User Interface] Menu says Non Breaking Dash, should be Non Breaking Hyphen (jghali)
0015469: [PDF] Scribus shows wrong style for PDF-Textfield style "Underline" (jghali)
0015462: [OS-Linux] FTBFS with poppler 0.70.0 (jghali)
0015461: [User Interface] Icons are barely visible with Breeze Dark Theme (jghali)
0015459: [Typography] Non Breaking Dash gives hyphen followed by space (jghali)
0015457: [Graphics / Image Frames] Incorrect rendering of LaTeX Render Frames after toggling color management (jghali)
0015455: [Scripter] Add transparency to image exporter in scripter (jghali)
0015449: [PDF] Arabic number glyphs of Noto Serif CJK are not exported into PDF correctly depending on specified languages (jghali)
0015441: [Plug-ins] Text vertical alignment not accessible from python/scripter (jghali)
0015426: [Usability] Pasting path into file dialog and hitting return stopped working (jghali)
0015424: [General] pattern background not rendered after duplicating an item with a pattern background (jghali)
0015423: [General] Wrong undo tooltip string for multiple copy by columns and rows (jghali)
0015422: [Internal] Remove PageItem::hasLinks() (jghali)
0015419: [Internal] small refactoring for scribusXml (jghali)
0015415: [User Interface] Add tooltips for font names in font selectors (jghali)
0015413: [User Interface] Missing units in the Picture Browser (jghali)
0015411: [General] Checkbox value is rendered as "4" (or some other value) by iText (jghali)
0015409: [Import / Export] embedded image positioned incorrectly in imported svg (jghali)
0015406: [User Interface] Unusable button in the Picture Browser (jghali)
0015403: [Scripter] scripter: getStyle for obtaining frame style (jghali)
0015402: [Story Editor / Text Frames] accidentally pasting scribus object in story editor pastes bunch of XML in plain text (jghali)
0015395: [Internal] scpainterex_ps2.cpp uses ScImage but does not include scimage.h (jghali)
0015392: [Import / Export] RGB colours changed when exported to PDF and SVG (jghali)
0015372: [General] Unckecking preflight verifier's "Check for empty text frames" has no effect (jghali)
0015371: [Import / Export] CIELab spot colours in PDF imported as CMYK (jghali)
0015367: [General] Drop Shadow "Blur" needs more decimal places - 1.5.5.svn (cbradney)
0015354: [Translation] Italian translation update for 1.5.5.svn (FirasH)
0015352: [Master Pages] Scribus looses color setting of variable text marks (jghali)
0015350: [Import / Export] xtg import broken for multibyte encoded input files (jghali)
0015349: [User Interface] Image Manager: show images in the file manager (ale)
0015348: [Language Tools] Add hyphenation patterns for Indian languages (jghali)
0015346: [Usability] Empty "Printing File" windows after changing options in Print Preview (jghali)
0015337: [Story Editor / Text Frames] Unicode search in Character Palette not working for Latin Extended-D characters (jghali)
0015334: [Master Pages] Creating master page from a page that already has a master page assigned generates garbage master page (jghali)
0015331: [Usability] Extend the automatic addition of black, white and registration colours in the C&F dialog to Document Setup/Prefs (jghali)
0015329: [User Interface] No simplified-Chinese option in Preferences (jghali)
0015325: [Tables] columns and rows selection not working on tables (jghali)
0015318: [PDF] Page number glyphs partially render as boxes/blank during PDF export in certain circumstances (jghali)
0015308: [General] the preview mode state should not be stored in the .sla (jghali)
0015306: [Scripter] Add python command setScaleFrameToImage (jghali)
0015304: [Scripter] Typo in documentation for python function (jghali)
0015302: [Documentation] Documentation points to old Ghostscript dowload page (jghali)
0015301: [PDF] Rotated PDF Form fields are not positioned correctly in final PDF (jghali)
0015289: [OS-Linux] FTBFS 1.5.4 with error: invalid conversion from ‘const GooString*’ to ‘GooString*’ (jghali)
0015288: [Internal] Bad comparison in specialchars.cpp (jghali)
0015287: [Internal] Bad comparison in api_imageitem.cpp (jghali)
0015284: [Internal] Wrong delete operator used on cpp array (jghali)
0015283: [Internal] Redundant assignment in TIFF image loader (jghali)
0015282: [Internal] Suspicious assignment in PSD image loader (jghali)
0015281: [Internal] Warning: Expression is always false because 'else if' condition matches previous condition (jghali)
0015279: [Internal] Warning: Array index used before limits check (jghali)
0015278: [Internal] Incorrect use of iterator after erasing element (jghali)
0015277: [Internal] Warning: same iterator is used with different containers (jghali)
0015273: [Documentation] Updated README (jghali)
0015085: [Story Editor / Text Frames] Linked text restart at beginning of linked frame (jghali)
0015071: [User Interface] [PATCH] Color replacement dialog too narrow (cbradney)
0014973: [General] When saving as compressed file, file is not compressed and extension is set to ".gz.gz.sla" (jghali)
0014434: [Fonts] Converting true type fonts to outlines produces wrong shapes (jghali)
0013126: [Language Tools] add en_US to the hyphenations installed by default (jghali)
0010720: [Fonts] Right-aligned text does not work as expected with some fonts. (jghali)
0007006: [Typography] Drop Cap little too large causing text baseline misalignment (jghali)
Scribus - 1.4.8 (Released 2019-03-03)
=========================================
0015580: [Fonts] Fonts installed by user are not found by scribus on Windows 10 1809 (jghali)
0015454: [Graphics / Image Frames] Importing a Lilypond-generated .svg file generates peculiar results (jghali)
0015431: [Import / Export] EPS import fails with ghostscript 9.24+ (jghali)
0015397: [Printing] Some text in text frames invisible in print preview/when printed (jghali)
Scribus - 1.5.4 (Released 2018-04-28)
=========================================
- 0015267: [Color Management] Colour model switch in the "Colours & Fills" dialogue doesn't work as expected (jghali)
- 0015080: [Story Editor / Text Frames] Crashes when editing document (jghali)
- 0015260: [Tables] Crash when trying to select two cell in table with ctrl+shift+right arrow (jghali)
- 0015254: [Styles] Scribus crashes when scrolling Character Style Family drop menu (jghali)
- 0015236: [Build System] Scribus stopped building after update to icu 61.1 (jghali)
- 0015224: [Internal] Automated generation of a TOC doesn't include Items in Groups (jghali)
- 0015235: [PDF] Page thumbnail background is black in exported PDFs (jghali)
- 0015232: [Internal] remove a comment stating that commented out code was removed to improve readability (ale)
- 0015229: [Internal] remove m_oldSnapToElem from scribusview.h (ale)
- 0015212: [Internal] AlignObjs should contain a PageItem*, not a QList<PageItem*> (jghali)
- 0015208: [General] Fix build with Qt 5.11 (missing headers) (jghali)
- 0015204: [Plug-ins] Barcode / BWIPP updates (cbradney)
- 0015195: [User Interface] pdf export: do not remove the "unavailable" pdf standards, gray them out (jghali)
- 0015190: [PDF] Exporting PDF to grayscale is broken in 1.5.4.svn (jghali)
- 0015175: [Story Editor / Text Frames] Adding a "Link annotation" with no contents generates a "Empty text frame" error in preflight verifier (jghali)
- 0015184: [Styles] Writing in unavailable Font Family then trying to change it silently crashes application (jghali)
- 0015185: [Import / Export] Nested Bookmarks fail to export properly to PDF (jghali)
- 0015176: [Undo/Redo] undo for alt-arrows does x/y separately (jghali)
- 0015173: [General] Switching between documents resets guides (jghali)
- 0015178: [General] Saved Bookmarks may appear in a random order when re-opening the document (jghali)
- 0015172: [Graphics / Image Frames] double-click + keyboard adjusting image frames doesn't set "free scaling" (jghali)
- 0015170: [Build System] fails to build on arm64 on ubuntu 18.04 (jghali)
- 0015149: [Import / Export] PDF Bookmarks on numbered Lists result in a broken Document (jghali)
- 0015112: [General] Enfocus reports bookmarks and forms inside PDF despite not beeing used (jghali)
- 0011926: [Internal] It’s possible to create various objects with the same name (jghali)
- 0014840: [Import / Export] Exporting embedded pdf file sometime produces incorrect result (jghali)
- 0015128: [General] Drop shadow color widget shows only black (jghali)
- 0015127: [PDF] Embedding PDF Bookmarks seems broken (jghali)
- 0015111: [General] Compiler warnings (jghali)
- 0012157: [Import / Export] Rotated PDFs clipped on export (jghali)
- 0015118: [Build System] Misleading indentation warning (jghali)
- 0015104: [General] Lines sometimes reported by Preflight Verifier as "not on page" (jghali)
- 0014461: [Translation] The '\n' within the <source> tag is missing in <translation> tag (Kunda)
- 0015092: [Styles] Background color for paragraph style apply to all text area instead of paragraph only (jghali)
- 0015080: [Story Editor / Text Frames] Crashes when editing document (jghali)
- 0015085: [Story Editor / Text Frames] Linked text restart at beginning of linked frame (jghali)
- 0014909: [Graphics / Image Frames] Crash when moving an image frame closed to the edge of a text frame (jghali)
- 0015248: [Usability] After changing the "Hyphenation Character", Scribus crashes (jghali)
- 0015168: [Story Editor / Text Frames] Paragraph background color doesn't follow vertical alignment (jghali)
- 0015150: [Import / Export] IDML import: Lab colours are being wrongly interpreted (jghali)
- 0014448: [Plug-ins] Integrate libzmf (fschmid)
- 0015109: [User Interface] Fill mode for frames/shapes is greyed out after using the option "Move Vector" (jghali)
- 0015096: [Import / Export] VIVA import filter doesn't recognize Lab values (jghali)
- 0015067: [General] Undoing text paste over causes old and new text merge (jghali)
- 0014848: [Scripter] add optional page keyword argument to getAllObjects (jghali)
- 0014850: [Build System] wrong case for 'OpenSSL' causes libpodofo >= 0.9.5 to not be used (cbradney)
- 0014289: [Import / Export] Some EPS files are rotated when exporting to a PDF file (jghali)
- 0014816: [Scripter] add some pdf annotation python functions for scripting (jghali)
- 0014838: [Build System] explain why cmake requires openssl (jghali)
- 0014874: [Qt5 Port] Scribus crashes in Plasma 5 when using Plasma's global menu under Qt 5.9 (jghali)
- 0014890: [Story Editor / Text Frames] Cannot insert special chars such as ligatures inside story editor (jghali)
- 0014894: [Story Editor / Text Frames] Inserting Column-Break results in immediate crash (jghali)
- 0014898: [PDF] Fonts used only in symbols can't be embedded in PDFs (jghali)
- 0014902: [Story Editor / Text Frames] Unlink text frames cut texts incorrectly when more than 2 frames selected (jghali)
- 0014914: [Story Editor / Text Frames] Document Setup>Item Tools>Columns and Text Distances not saved (jghali)
- 0009350: [Scripter] apply character styles from the scripter (jghali)
- 0014926: [General] Invalid character in xml attribute (jghali)
- 0014933: [General] Some additional Polish short words (jghali)
- 0014939: [Import / Export] SVG with Groups on Master Page don't export to PDF when grouped via Scribus (jghali)
- 0014940: [General] Ungrouping of items on a new master page move the objects to Normal rather than keeping on the same page (jghali)
- 0014945: [General] PDF field frames are not highlighted anymore (jghali)
- 0014959: [General] Adobe Reader shows "An error exists on this page" on PDF exported from Scribus (jghali)
- 0014964: [General] Scribus hangs on "Adjusting Colors" when Exporting PDF with "Thumbnails" (jghali)
- 0014968: [Tables] Crash on deleting Table Row/ Column (jghali)
- 0014979: [PDF] poppler-0.58 breaks build (jghali)
- 0014984: [Build System] compilation fail because of poppler (jghali)
- 0014994: [Graphics / Image Frames] DPI settings for Render frames using gnuplot (jghali)
- 0014995: [Import / Export] add Zoner Draw/Callisto import (using libzmf) (jghali)
- 0014996: [Build System] build with -DAPPLICATION_DATA_DIR fails (jghali)
- 0014997: [Import / Export] add QuarkXPress importer (using libqxp) (jghali)
- 0014999: [Story Editor / Text Frames] "Scribus crashes due to Signal 0000011" if I try to insert a linebreak (jghali)
- 0015005: [OS-Win32] Windows version crashes in "Console" mode (jghali)
- 0015010: [PDF] Radio button group name incorrectly exported (jghali)
- 0015011: [Printing] Print Preview don't show image if its rotation is not zero degree (jghali)
- 0015016: [Translation] Improved French translation (jghali)
- 0015017: [Scripter] Use the FontEmbedding setting from the document in the scripter PDFfile (gpittman)
- 0015021: [Tables] Removing border lines using table properties panel doesn't work (jghali)
- 0015029: [Internal] Crash caused by uninitialized variables (jghali)
- 0014533: [Usability] Text properties dialog should get a context menu item (jghali)
- 0014566: [Story Editor / Text Frames] add Ignore diacritics & kashida option in Search\replace dialog (Fahad)
- 0014844: [Story Editor / Text Frames] Scribus crashes when trying to make text flow around object (image frame) (jghali)
- 0014859: [Typography] Scribus crashes when selecting paragraph or font format (cbradney)
- 0010054: [Color Management] Scribus alters CMYK color values (jghali)
- 0014189: [PDF] Fonts can't be outlined when exporting PDF/X (jghali)
- 0015024: [Typography] Add Malayalam hyphenation dictionary (jghali)
- 0015027: [Scripter] Scripter commands for creating and using Line Styles (jghali)
- 0015044: [Story Editor / Text Frames] Incorrect tabulation in numbered headings (jghali)
- 0015045: [Tables] Editing table cells is not reliable (jghali)
- 0015047: [General] Scribus hangs after trying to save or export an old file containing complex group (jghali)
- 0015050: [Import / Export] Scribus 1.5.4svn doesn't open compressed files whose name contains multiple dots (jghali)
- 0015059: [Master Pages] Issue with importing master pages that have the same name (jghali)
- 0015065: [User Interface] 'Color and Fills' menu - gui isn't working properly when marking a non CMYK color as 'Spot Color' (jghali)
- 0012043: [Undo/Redo] Undo on cutting text doesnt restore correctly, but in text of previous edit or delete instead (jghali)
- 0015070: [Story Editor / Text Frames] Incorrect cursor position after undoing or redoing text action (jghali)
- 0015072: [User Interface] More precise Colour & Fill dialog entry (string) (jghali)
- 0015038: [Import / Export] Export/import problem regarding rotation with EPS files created by Scribus (jghali)
- 0015057: [Undo/Redo] Scribus crash when undoing after applying "unlink text frame and cut text" (jghali)
- 0013910: [PDF] No PDF/X-4 preflight profile for old docs (jghali)
- 0015004: [User Interface] Changing a Font Feature in the Text PP results in tab switch (jghali)
- 0013947: [Usability] Endless selection when exiting edit mode by clicking outside of frame (jghali)
- 0015014: [Typography] "Non breaking space" does not work well (jghali)
- 0015003: [User Interface] Non-switching translations: Font Features (jghali)
- 0014872: [Story Editor / Text Frames] Crash when linking frames which are already linked (jghali)
- 0014876: [Translation] Italian translation update for 1.5.4.svn (FirasH)
- 0014875: [User Interface] Unnecessary whitespace in ligaturesGroupBox title (FirasH)
- 0014537: [Properties Palette] Properties palette size is not saved (cbradney)
- 0014851: [General] Typos in source code (jghali)
- 0012055: [Translation] "Back to previous version" label should rather be "Back to saved version" or "Restore from saved version" (gpittman)
- 0014870: [User Interface] Style select is missing colons before spinboxes and does not translate "Auto" string on language change (FirasH)
- 0014811: [User Interface] Barcode UI crops label text length (jghali)
- 0014865: [User Interface] Barcode colors QGroupBox does not have margin borders (FirasH)
Scribus - 1.4.7 (Released 2018-04-28)
=========================================
0015238: [General] Conflict with Python 3 prevent scribus to run (jghali)
0015191: [Import / Export] PDF-Bookmarks go to wrong target page on partial export (jghali)
0015145: [PDF] Javascript fails to execute on PDF opening when PDF security is enabled (jghali)
0015083: [Translation] German translation for scribus.desktop (jghali)
0015077: [Import / Export] importing eps-files with Scribus 1.4.6 and Ghostscript 9.22 fails (jghali)
0015077: [Import / Export] importing eps-files with Scribus 1.4.6 and Ghostscript 9.22 fails (jghali)
0015074: [Documentation] German documentation update for 1.4.7 (cbradney)
0015061: [Fonts] Crash with Noto-Coloremoji font (jghali)
0014905: [Typography] Portuguese sample text (jghali)
0014900: [PDF] Fonts used only in patterns can't be embedded in PDFs (jghali)
0014891: [Story Editor / Text Frames] Style replacement isn't correct (jghali)
0014884: [Import / Export] A blank character is added when importing an html file (jghali)
0014877: [Translation] Backport translation fixes to 1.4.7.svn (FirasH)
0014820: [Translation] Incorrect French translation for "Glyph extension" in style manager (jghali)
0014804: [User Interface] E-Mail address update for the "About" dialog (cbradney)
0014751: [Styles] Document Settings Tab Width spinbox does not accept values below one inch (jghali)
0014746: [Translation] Ukrainian UI fixes (jghali)
0014720: [User Interface] Text filter dialog unusable (jghali)
0014707: [Fonts] Text preview truncated in Font Preview (jghali)
0014638: [General] combine polygons results in unexpected displacement (jghali)
0014619: [General] "Insert frames" incorrectly place frames on left pages when bleed is involved (jghali)
0014583: [PDF] Euro-sign (€) showing as squares or diamond shape in PDF forms (jghali)
0014547: [PDF] Submitting PDF form as PDF doesn't work (jghali)
0014522: [Translation] Ukrainian UI update and fixes (plinnell)
0014507: [General] Typo in PACKAGING (jghali)
0014501: [Translation] Ukrainian UI update and fixes (jghali)
0014494: [Import / Export] Bad PDF output caused by broken JPEGs embedding incorrect ICC profiles (jghali)
0014391: [Translation] Ukrainian UI update (jghali)
0014380: [Styles] Crash caused by incorrect handling of reference to deleted styles by style manager (jghali)
0014377: [General] Rotate Item show wrong icon when mouse over frame middle point (jghali)
0014362: [Import / Export] Inkscape SVG freezes Scribus (jghali)
0014360: [Properties Palette] PP Rotation on multiple selections (jghali)
0014339: [Translation] Slovak translator spelling (jghali)
0014328: [PDF] incorrect export of inline groups to PDF when offset to baseline applied (jghali)
0014313: [General] Print preview has cropped shape on second page (also in print) (jghali)
0014307: [PDF] Incorrect export of nested groups to PDF (jghali)
0014270: [Documentation] Incorrect link to Mac OSX Ghostscript package (jghali)
0014257: [OS-Linux] Please stop installing mimelnk/vnd.scribus.desktop (plinnell)
0014256: [OS-Linux] Please install the .desktop file (plinnell)
0014207: [Usability] After deleting Master Page, wrong master page is shown (jghali)
0014206: [Typography] Hyphens align incorrectly when using right alignment (jghali)
0014205: [OS-Linux] cmake can't find hunspell anymore since version >= 1.4 (cbradney)
0014196: [Scripter] Missing Greek option in calendar script (jghali)
0014067: [General] "Print Layer" is not in sync with Preview Mode (Backport from 0014059) (FirasH)
0014006: [General] "Lock Guides" checkbox status is not correctly set when switching documents (jghali)
0014002: [Story Editor / Text Frames] Shortcut CTRL-D delete two characters instead of one in Story Editor (jghali)
0013988: [Shape Drawing] Node Editor Horizontal Shear icons are the wrong way round (jghali)
0013794: [General] Scribus crashes while loading document (jghali)
0013775: [Story Editor / Text Frames] Alternatively clicking between 2 text blocks crashes w/ Signal 6 (jghali)
0013762: [PDF] Font not embedded by default if first used after the first PDF export (jghali)
0013757: [Graphics / Image Frames] CMYK jpeg file not imported properly (jghali)
0013722: [Templates] Template for creating paperbacks for Lulu and Createspace 6x9 (cbradney)
0013710: [General] Duplicating a color, no difference in edit color dialog between OK and cancel (jghali)
0013688: [Story Editor / Text Frames] Text highliting in Story Editor disappears after changing font (jghali)
0013684: [OS-Win32] Import failure with jpeg files whose path contains chars not supported by current codepage on Windows (jghali)
0013631: [Translation] Updated Danish Translation (jghali)
0013626: [Translation] Italian documentation update (jghali)
0013124: [User Interface] Outline Window is limited in height (in 1.4.x) (jghali)
0012831: [Scrapbook] scrapbook doesn't work with images (jghali)
0012708: [Releases] GNOME/KDE: Please install the supplied AppData file (plinnell)
0012681: [Graphics / Image Frames] Image editing doesn´t remain after saving
Scribus - 1.5.3 (Released 2017-05-23)
=========================================
- 0014812: [Translation] Italian translation update for 1.5.3.svn (cbradney)
- 0014803: [Documentation] Updated readme and specs files for 1.5.3 (EN and DE) (jghali)
- 0014711: [Build System] Please don't install code-related files in /doc/ (cbradney)
- 0014712: [Build System] Changelog of the scripts is stale (cbradney)
- 0014809: [Translation] Italian translation update for 1.5.3.svn (FirasH)
- 0014112: [Story Editor / Text Frames] Crash when trying to add Foot/Endnote (jghali)
- 0014717: [User Interface] Margin line not shown if exactly on a "Major" grid line (jghali)
- 0009124: [PDF] add an option to allow producing PDF with fonts not embedded nor outlined (jghali)
- 0014781: [Styles] Child Style doesn't update text direction when selected (jghali)
- 0014786: [Fonts] Font outlining artefacts in PDF export (jghali)
- 0014794: [Story Editor / Text Frames] [CTL/CJK] insert kerning between CJK letters and only Latin letters (jghali)
- 0014783: [Styles] Cell style colour shade change has no effect after reloading file (jghali)
- 0014773: [Tables] "Paragraph Style:" current style is not accurate for Table Cells (jghali)
- 0014760: [User Interface] The Paragraph Effects tab in the Text Properties Palette is completely unusable (jghali)
- 0011474: [User Interface] Colour values are no longer being displayed in the "Colours and Fills" dialog (jghali)
- 0014768: [General] Scribus can't save or open any document (cbradney)
- 0014745: [Styles] First letter keeps color from style when black is applied to text (jghali)
- 0014750: [General] prototype for 'uint64_t PropertyWidget_FontFeatures::featureFlags()' does not match any in class 'PropertyWidget_FontFeatures' (cbradney)
- 0012276: [Undo/Redo] Undo deletion of more than one paragraph doesnt restore style (jghali)
- 0014753: [User Interface] Suboptimal display of the gradient editing dialogue on Linux (cbradney)
- 0014752: [Import / Export] Gradients in Documents aren't imported into other documents. (cbradney)
- 0014738: [Translation] New Hyphenation features strings in Style Manager do not get updated on language change (cbradney)
- 0014630: [General] Moving multiple items across pages using the outline panel doesn't work properly (jghali)
- 0014632: [Story Editor / Text Frames] "Adjust text frame height to text" does not take margins into account (jghali)
- 0014654: [User Interface] The color picker does not change back to HSV after changing to LAB and back to RGB (jghali)
- 0014656: [Build System] fails to build on big endian architectures (jghali)
- 0014657: [PDF] Javascript alert popup with special characters doesn't render correctly. (jghali)
- 0014661: [Build System] Installation of the new high-res icons (cbradney)
- 0014639: [General] in the context menu, replace the story editor with edit in place (cbradney)
- 0014411: [Story Editor / Text Frames] Can't move the mouse to the middle of the last and the second to the last character (jghali)
- 0014675: [Import / Export] Zoomed images are blurred after image export, but only when grouped (jghali)
- 0014680: [Graphics / Image Frames] When an image object is mirrored horizontally, its shape gets double-reversed on PDF export (jghali)
- 0014684: [Story Editor / Text Frames] With frame breaks, vertical text alignment does not work except in the last linked text frame (jghali)
- 0014690: [Story Editor / Text Frames] When exporting, text foreground blends with the background's gradients (jghali)
- 0014699: [Fonts] Font Bucephalus is not rendered properly (jghali)
- 0014704: [General] Page Size Properties does not match current Page Size (cbradney)
- 0014706: [Shape Drawing] Modifying conical gradient stops may trigger crash (jghali)
- 0014708: [Fonts] the default font is the first one (jghali)
- 0014454: [Fonts] Font preview in font selectors always shows the bold variety (jghali)
- 0014730: [Translation] Ukrainian UI update and fixes (jghali)
- 0014736: [Color Management] "All" color rendering (jghali)
- 0014743: [Fonts] Fonts after outline displays wrong characters (jghali)
- 0014744: [User Interface] Mouse pointer for Polygons doesn't behave like those for other items (cbradney)
- 0014748: [Translation] German Translation update for 1.5.3svn (cbradney)
- 0014749: [User Interface] Missing icons in the the Path Operations dialogue (cbradney)
- 0008118: [Scripter] Allow get/set of item attributes in scripter (jghali)
- 0014117: [Import / Export] When printing pages with page numbers at bottom some of the page numbers don't print correctly (jghali)
- 0014735: [PDF] Scribus crash if you save the document as PDF/X-4 or PDF/X-3 and document contain two CMYK pictures (jghali)
- 0014740: [Import / Export] Scribus crashes with Sig 6 when attempting to import an AI pattern library (jghali)
- 0013549: [User Interface] Show correct icon for Spiral/Arc items in Outline Palette (FirasH)
- 0014692: [Styles] Style Manager doesn't accept changed Font Options (jghali)
- 0014696: [User Interface] Updated tooltip for Colours & Fills (jghali)
- 0014407: [Properties Palette] Font selector in the PP doesn't work anymore (jghali)
- 0014496: [User Interface] Font widget dropdown menu cannot be opened (cbradney)
- 0014479: [Usability] Copy and Paste very slow on Windows (jghali)
- 0014701: [Translation] New DE translation update (christoph_s)
- 0014698: [Translation] DE translation update (cbradney)
- 0014702: [Translation] Italian translation update for 1.5.3.svn (FirasH)
- 0014695: [General] Typo in langmrg.cpp (Language Manager) (FirasH)
- 0014673: [User Interface] "Edit Text" is not available in the Context Menu on Linux (cbradney)
- 0014678: [User Interface] "Paste" is no longer available in the Context Menu (cbradney)
- 0014687: [Translation] Italian translation update for 1.5.3.svn (FirasH)
- 0014686: [General] Unnecessary spaces in langmgr.cpp (FirasH)
- 0014414: [Story Editor / Text Frames] Wrong cursor placement with the last paragraph in a text frame (jghali)
- 0014523: [Fonts] LinuxLibertin G font family distance between characters does not change (jghali)
- 0014660: [User Interface] "Ghost" entry in page size combo in the Document Setup (jghali)
- 0014647: [General] Updated CIE-LAB and CIE-HLC palettes (jghali)
- 0014642: [General] New Wikipedia RAL version with Wikipedia's LAB values for 1.5.x (jghali)
- 0014427: [Story Editor / Text Frames] Changing Columns properties can lead to not editable values in Text Properties palette (cbradney)
- 0014458: [User Interface] Some icons in Style Manager > Paragraph Style are missing (cbradney)
- 0014596: [User Interface] "Select the current Layer" in status bar not updated when changing layer color (jghali)
- 0014609: [Build System] is the mininmal qt version enforced? (cbradney)
- 0014610: [Build System] Update Travis Qt (cbradney)
- 0014614: [PDF] Font subsets do not include 6-letter leading tag required by spec (jghali)
- 0014615: [User Interface] Preferences: crash when trying to define shortcut on group entries (jghali)
- 0014620: [Internal] printdialog: only includes cups.h with HAVE_CUPS (jghali)
- 0014622: [OS-Haiku] Fix 1.5.x build on Haiku (jghali)
- 0014624: [Translation] German Translation update for 1.5.3svn (jghali)
- 0014584: [Graphics / Image Frames] resizing Imageframe with border will move image in frame (jghali)