-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
7729 lines (7145 loc) · 598 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.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)
- 0014091: [Documentation] A quaver is automatically keyboarded on the end of paragraph. (cbradney)
- 0014368: [Fonts] Tamil Font is not displayed properly (cbradney)
- 0013614: [Translation] Non-translatable date format codes in PDF fields (cbradney)
- 0006205: [Graphics / Image Frames] Update Image ignores change of resolution in image
- 0014445: [Story Editor / Text Frames] Arabic single word wrongly justified to the left with "Forced Justified" alignment (jghali)
- 0014459: [Translation] Proposal to change tooltip string for Shadowed Text (cbradney)
- 0014462: [Internal] Shadow color needs to be collected with named resources (jghali)
- 0014465: [Usability] PP displays incorrect informations for numerated list Pt1 (cbradney)
- 0005300: [Story Editor / Text Frames] text frame on copied page gets weird line spacing (Fahad)
- 0014457: [General] Crash when opening a specific file (due to notes/bullet list) (jghali)
- 0014466: [Build System] hunspell warnings after installing hunspell 1.5.4 (cbradney)
- 0014232: [User Interface] Scribus doesn't see user swatches (cbradney)
- 0014499: [Build System] Trigger AppImages for Master via Github (plinnell)
- 0014506: [Translation] Some of the <translation> tags are not identical to their <source> in en_US.ts (cbradney)
- 0014510: [Import / Export] Cannot export PDF's with documents that have Krita links (jghali)
- 0014517: [Story Editor / Text Frames] filling a tab with point does not work correctly (jghali)
- 0014535: [Story Editor / Text Frames] Search dialog should focus to searched text input (jghali)
- 0014538: [Story Editor / Text Frames] Crash when clicking on canvas after linking two text frames. (jghali)
- 0014546: [Import / Export] File dialog does not retain filename when changing PDF export path (jghali)
- 0014550: [PDF] PDF font embedding doesn't work with Arabic (jghali)
- 0014565: [Story Editor / Text Frames] selecting word by double clicking doesn't work in some cases (Fahad)
- 0014577: [User Interface] checkboxes in the "Layers" panel not aligned symmetrically (jghali)
- 0014519: [Usability] Text Properties Palette not assigned a Function Key (cbradney)
- 0014540: [Translation] Ukrainian UI update (jghali)
- 0014159: [PDF] PDF export of bookmarks fails (jghali)
- 0014530: [User Interface] Text selection shortcut doesn't work anymore as reasonably expected (jghali)
- 0014447: [Build System] add 'make install; to .travis.yml (Kunda)
- 0014485: [Internal] PATCH: fix importai.cpp typo and comment formatting (Kunda)
- 0014491: [Translation] Translation string issues for 1.5.3 (FirasH)
- 0014508: [Translation] Numbered list should be removed from translation (jghali)
- 0014526: [Translation] Trigger additional Hungarian translations (plinnell)
- 0014492: [Translation] Italian translation update for 1.5.3.svn (FirasH)
- 0014477: [User Interface] "Replace Colours" dialog use RGB icon for LAB colours (jghali)
- 0014460: [Translation] "TabWidget" showing up in translation (jghali)
- 0014418: [Story Editor / Text Frames] Convert to > Outlines ignores Text Frame Horizonal/Vertical Flip (jghali)
- 0014476: [General] Remove unnecessary string from translation (cbradney)
- 0014463: [Color Management] Shade of <100% for Lab colours gives wrong results (jghali)
- 0014383: [Story Editor / Text Frames] Scribus crashes when deleting text (cbradney)
- 0007241: [Styles] Add to styles check mark for automatic replacing some letters by ligatures. (Fahad)
- 0008164: [Styles] add simple way to use "old" numerals (Fahad)
- 0014446: [User Interface] New Text Properties panel distract the Dock Panel
- 0014452: [Canvas] Grid on Master Pages not drawn if master pages count is even (jghali)
- 0005269: [Story Editor / Text Frames] line breaks not recoginzed as word breaks
- 0004257: [Story Editor / Text Frames] When using multiple fonts on the first line of a text frame, a larger secondary font can force an unnecessary wrap (avox)
- 0014269: [Typography] Making Graphite layout available in Scribus (Fahad)
- 0009664: [Story Editor / Text Frames] First line offset = Line spacing + increase in the line spacing can show text outside of the frame
- 0009672: [Fonts] Text frames are slow with Unicode characters (Bugs en cajas de textos: Con Unicode y tipografia, cajas de texto lentas) (jghali)
- 0013537: [Properties Palette] Changing font in the editor is not recognized by the PP
- 0005606: [Properties Palette] Properties Palette doesn't refresh after editing paragraph styles (jghali)
- 0014444: [Properties Palette] "Display only used colours" not working (jghali)
- 0004634: [Story Editor / Text Frames] Replacement of ligatures with single letters based on font size and kerning. (Fahad)
- 0004061: [Fonts] Scriptina alternates font deletes text (avox)
- 0014430: [Fonts] Disabled fonts show up in the Font Preview and the Character Palette (cbradney)
- 0014450: [User Interface] Add missing vertical spacers in File > Document Setup dialog (FirasH)
- 0014441: [Download Manager] Superfluous colour palettes should be removed (cbradney)
- 0014435: [General] Remove unnecessary strings from translation (FirasH)
- 0012289: [Fonts] Diacritics are not positioned correctly in Lao OpenType fonts (Fahad)
- 0002834: [NLS] Urdu is displayed Left to Right with Nafees Nastaleeq font (Fahad)
- 0006689: [NLS] Parentheses inversion when I'm import hebrew text (Fahad)
- 0013863: [Story Editor / Text Frames] combining diacritics not all working (Fahad)
- 0014379: [Typography] Setting text to all caps via styles does not switch to upper case geometries (FirasH)
- 0014386: [Documentation] Scribus manpage needs to be updated with new CLI flags (cbradney)
- 0001364: [NLS] Hebrew script direction is different in the document and in the story editor (Fahad)
- 0003928: [NLS] Support line breaking for Thai text (Fahad)
- 0003680: [NLS] Devanagari (Unicode U+09xx) glyph formation (vowels and conjunct consonants) not proper (Fahad)
- 0004452: [NLS] No support for Tibetan Script (Fahad)
- 0006005: [User Interface] preview of Hebrew text in Font Preview dialog is displayed backwards (reverse) (Fahad)
- 0006013: [NLS] hebrew numbers are displaied backwards when text is displaied (Fahad)
- 0006014: [Story Editor / Text Frames] unable to select hebrew text in text area (Fahad)
- 0009363: [Fonts] Support 'smcp' small caps character substitution table (Fahad)
- 0014247: [Import / Export] Add Import functionality for Krita files (KRA) (cbradney)
- 0009911: [Fonts] RL text direction no work (Fahad)
- 0001726: [NLS] hebrew vowels (and cantillation marks) not placed properly (Fahad)
- 0011513: [User Interface] Gujarati Language does not render properly on page. (Fahad)
- 0001547: [NLS] Support for Indic Scripts (Fahad)
- 0001079: [NLS] Arabic is not supported in Scribus yet. (Fahad)
- 0002920: [NLS] Khmer script is rendered wrong (Fahad)
- 0013524: [Graphics / Image Frames] Editing Embedded Image gives a File Locked Error
- 0014108: [Story Editor / Text Frames] 'text-to-path' frame doesnt encapsulate text correctly (cbradney)
- 0014385: [General] the preflight verifier should default to pdf 1.4, not to ps (jghali)
- 0014399: [User Interface] Check RTL languages in Font Preview are shown RTL (Fahad)
- 0014420: [General] Fix inconsistent strings (FirasH)
- 0005979: [Usability] F2 displays and uses default values for text
- 0009627: [Typography] 'allcaps' and 'smallcaps' mapping issue in Turkish language (Fahad)
- 0013234: [Fonts] get chinese symbol after hitting return key using gulim font (Fahad)
- 0002762: [NLS] Unable to set text justification for RTL text (Fahad)
- 0014032: [Story Editor / Text Frames] Severe performance problem on documents with 8 linked frames (jghali)
- 0014040: [Language Tools] Add action to insert ZWNJ char (Fahad)
- 0010718: [Fonts] Insert > Ligatures doesn't take the current font in account (Fahad)
- 0014330: [Canvas] link selected text frames directly (Fahad)
- 0014408: [Scrapbook] After you send to Scrapbook, objects are not found there (jghali)
- 0014394: [PDF] text shadow effect incorrectly exported to PDF (jghali)
- 0014422: [Internal] Patch to fix utilformat.cpp formatting (jghali)
- 0009506: [Fonts] Wingdings and other fonts of this type fail to work in scribus (Fahad)
- 0014154: [General] Support for right to left languages, in this case Hebrew, is broken
- 0014424: [Story Editor / Text Frames] glyphs displayed with incorrect colors after CTL merge (jghali)
- 0008669: [Fonts] IPA diacritics do not position correctly (Fahad)
- 0014185: [Translation] Window title include incorrectly typed words (missing space the between words) (FirasH)
- 0014426: [User Interface] Fix non switching translation in TP hyphenation tab and cleanup duplicated strings (FirasH)
- 0001413: [Story Editor / Text Frames] Support for OpenType alternate glyphs (Fahad)
- 0009808: [General] follow the XDG standard for the config files (cbradney)
- 0013248: [General] choose preferences directory from the command line (cbradney)
- 0013982: [NLS] sample documents for sinhala (sri lankan script) to use as official test documents for CTL (Fahad)
- 0014410: [PDF] The pattern on the master page is not exported to PDF (jghali)
- 0014400: [Story Editor / Text Frames] Attach Text to Path does not correctly place Text on Path (Fahad)
- 0012602: [Story Editor / Text Frames] Some advanced text settings do not work correctly by unpredictably "hiding" text (Fahad)
- 0014406: [General] Another build issue with 1.5.3svn (jghali)
- 0014401: [General] Build issue with 1.5.3 after CTL merge (jghali)
- 0014378: [Scripter] Typo in doc string for moveSelectionToBack (cbradney)
- 0014129: [Import / Export] Crash caused by incorrect handling of reference to deleted styles by style manager (jghali)
- 0014179: [Canvas] Rotate Item show wrong icon when mouse over frame middle point (FirasH)
- 0014376: [Plug-ins] autoquote script freeze application (jghali)
- 0013606: [Scripter] script 'align_image_in_frame.py' doesn't work. (gpittman)
- 0012798: [Qt5 Port] Mouse pointer keeps the wrong symbol (arrow pointer). Similar to 0012740. (Kunda)
- 0014086: [Plug-ins] Spell check fails to check selected frame on file created in earlier version (cbradney)
- 0013255: [Usability] Menus broken on high resolution screen
- 0013091: [Usability] measure tool should accept modifier key (pygmee)
- 0014136: [Tables] Table cell border lines are not displayed correctly in PP when in table edit mode (jghali)
- 0014150: [Documentation] doxygen links are blue on blue (cbradney)
- 0014151: [Documentation] create the doxygen files in an html/ directory (cbradney)
- 0014182: [Story Editor / Text Frames] Tabs alignment behaves unpredictably (jghali)
- 0014188: [Import / Export] white spaces in spot color name after PDF export are written as 0002320 instead of 0000020 (jghali)
- 0014200: [PDF] PDF layers cannot be switched on/off in Acrobat Reader (jghali)
- 0014203: [Shape Drawing] lines with gradients and opacity are exported incorrectly (jghali)
- 0014235: [Import / Export] Out of range exception when subsetting CJK fonts (jghali)
- 0014236: [Story Editor / Text Frames] empty first line has funky offsets (jghali)
- 0014239: [Fonts] undefined glyph symbol appearing unpredictably in exported PDF (jghali)
- 0014283: [General] Crash: EXCEPTION_STACK_OVERFLOW (jghali)
- 0014292: [Printing] Background colors in text areas are not printing in version 1.5.2 (but are in 1.4.6). (jghali)
- 0014303: [Import / Export] wrong size of some bitmap images when importing a PDF (jghali)
- 0014351: [Scripter] Scripter command fileDialog() fails to enter directory name when used to select a directory (jghali)
- 0014354: [Story Editor / Text Frames] Crash when linking empty text chain to non empty text chain (jghali)
- 0013670: [Shape Drawing] 'Vertical Flip' changes Xpos Ypos orientation (Kunda)
- 0013516: [Build System] Adding CCache to CMAKE (cbradney)
- 0014308: [General] Incorrect justification of Chinese text (jghali)
- 0014311: [Story Editor / Text Frames] incorrect display of inline items when offset to baseline applied (jghali)
- 0014319: [User Interface] Copied selection may be pasted on wrong location (jghali)
- 0014327: [Story Editor / Text Frames] remove "unlink text frame with text copy" and rename "unlink text frame with text cut" to "unlink and cut text" (jghali)
- 0014273: [Build System] Tweak .desktop and .appdata.xml according to -DCUSTOM_VERSIONTAG (cbradney)
- 0014340: [Build System] name the manpages after -DCUSTOM_VERSIONTAG (cbradney)
- 0014355: [General] "Size is Locked" does not prevent resizing with Alt+Arrow Up (FirasH)
- 0014234: [OS-Linux] appdata format outdated (cbradney)
- 0012573: [User Interface] Double Sided corresponds to Double Page? (FirasH)
- 0014338: [General] Replace auto_ptr by QScopedPointer (jghali)
- 0014299: [User Interface] Numbered or Numerated List? (FirasH)
- 0014333: [Build System] Travis: please change PPA repo to use ppa:beineri/opt-qt57-trusty (cbradney)
- 0014334: [Usability] "Unlink Text Frame and Cut Text" function inactive in certain cases. (jghali)
- 0014204: [Build System] add a simple .gitignore file (cbradney)
- 0014329: [Build System] Travis build fails allegedly due to CMake missing command line option (cbradney)
- 0008860: [General] Resizing with Alt or Alt+Shift and arrows is wrong when rotation is applied to an Item (FirasH)
- 0014288: [User Interface] Fix order of "Marks" in context and toolbar menu (FirasH)
- 0014109: [General] Simplify Guide Manager strings translation (FirasH)
- 0014128: [Typography] Text centering doesn't work as expected in round text frame shapes (jghali)
- 0014169: [Import / Export] SVG import of the Document Foundation's logo is incorrect (fschmid)
- 0014168: [Import / Export] Hang / freeze importing a particular SVG image file (fschmid)
- 0011575: [Usability] Grey out "OK" button in the Templates dialog if no template has been selected (cbradney)
- 0011294: [Usability] Confusing order of entries in drop down dialogs (cbradney)
- 0014178: [Usability] Incorrect rotation value displayed in PP when using Rotate Item tool (jghali)
- 0014171: [User Interface] Can't active attach text to path function (fschmid)
- 0014281: [Story Editor / Text Frames] When doing a copy-paste in story editor, the wrong font size is used (jghali)
- 0014282: [General] Scribus crashes while opening file (jghali)
- 0014244: [Translation] Hamer-Banna language (cbradney)
- 0014237: [Story Editor / Text Frames] Exiting text edit mode does not activate copy of frame (jghali)
- 0014228: [Tables] Text columns inside tables are not loaded correctly (jghali)
- 0014231: [Usability] Incorrect selection when exiting table edit mode by clicking outside of table cell (jghali)
- 0014230: [Tables] scribus crashes when marking a table with selected text (jghali)
- 0014227: [Tables] Using "Del" in table deletes whole table instead of one character (jghali)
- 0014209: [Usability] Scribus freeze when exporting PDF (jghali)
- 0014138: [Usability] Foot/Endnote crash when changing text property (jghali)
- 0013560: [Story Editor / Text Frames] "Edit" in Marks Manager crashes Scribus with Variable Text marks (jghali)
- 0013890: [User Interface] Status Bar doesn't update when Document closes (cbradney)
- 0012754: [Story Editor / Text Frames] No "text align right" for last line of bottom aligned text (PeterBenedek)
- 0013595: [General] Moving guide lines not recognized (Kunda)
- 0010430: [Story Editor / Text Frames] text frames lost preferences (Kunda)
- 0014110: [Story Editor / Text Frames] PP may display incorrect text properties if text is selected left to right (jghali)
- 0014093: [User Interface] Paragraph Style and Character Style combo boxes keep going back to "No Style" after modifying styles (jghali)
- 0014111: [Story Editor / Text Frames] Crash when trying to edit 'Variable Text' Mark (jghali)
- 0014103: [Properties Palette] PP - Table isn't translated when changing language in Preferences (FirasH)
- 0013352: [Graphics / Image Frames] Adapt frame to image should not delete previous rotation
- 0014094: [Typography] Underline and Underline Words function: changing line width has no effect (jghali)
- 0014092: [Canvas] Ctrl+D (Duplicate) clones object but doesn't enable PP (jghali)
- 0014084: [Fonts] PDF Form file does not work with Pdfbox (jghali)
- 0011642: [Styles] Crash when opening document after editing enum style (fschmid)
- 0014072: [General] Compiling error after the addition of the Hi-DPI patch (cbradney)
- 0009330: [Scripter] Active Startup Script not visible in Preferences and fails silently in GUI & CLI (cbradney)
- 0014083: [Translation] Updated Danish Translation (jghali)
- 0014074: [Import / Export] import odt file brings in red squares (jghali)
- 0014081: [Build System] Cmake Error: INSTALL cannot find ... ChangeLogSVN (cbradney)
[129 issues]
Scribus - 1.5.2 (Released 2016-05-17)
=========================================
- 0014004: [Canvas] Improve Canvas rendering on Hi-DPI screens (cbradney) - closed.
- 0010723: [User Interface] Incorrect rubber band box selection bounds after selecting text. - closed.
- 0013465: [User Interface] Drag/Drop of HTML to text frame (fschmid) - closed.
- 0014044: [Translation] Duplicate "Pfad glätten" in german translation (christoph_s) - closed.
- 0014059: [General] "Print Layer" is not in sync with Preview Mode (fschmid) - closed.
- 0014060: [Integration] Crash when using dropping image onto image frame via digikam or nemo (fschmid) - closed.
- 0014064: [Canvas] bezier curve + text frame + text to path = crash (fschmid) - closed.
- 0013107: [OS-Win32] Wrong language on document closing dialogue: Save - Close without Saving - Cancel (cbradney) - closed.
- 0013852: [Import / Export] XPS export of Text is broken. (fschmid) - closed.
- 0013869: [Typography] DropCaps do not work correctly on 1st Paragraph (jghali) - closed.
- 0013894: [Typography] "Paragraph Effects" for numbered (or un-numbered) lists get removed when creating a new line or pressing backspace (jghali) - closed.
- 0013896: [Usability] Widgets inconsistently enabled in colors tab of PDF export settings in Document Setup (jghali) - closed.
- 0013897: [General] Pathtext distance from path not working in r21140 (jghali) - closed.
- 0013204: [Usability] Unusably tiny tool icons on HiDPI screen on Ubuntu Unity desktop (fschmid) - closed.
- 0013242: [Story Editor / Text Frames] changing text size spinboxes in SE loses focus on intended text (+ mysteriously increments text size +1) - closed.
- 0014043: [Usability] Ungrouping with flipped objects, objects are not positioned correctly (fschmid) - closed.
- 0014062: [General] Text aligned to baseline grid in 1.4.x is loaded jumping even lines in 1.5.2.svn (jghali) - closed.
- 0003725: [Usability] wrong snapping when resizing objects off page (jghali) - closed.
- 0007312: [User Interface] Drag/Drop of ODT to text frame outputs gibberish (fschmid) - closed.
- 0014052: [Translation] unnecessary placeholder text in translation file (cbradney) - closed.
- 0014058: [Translation] Italian translation update for 1.5.2.svn (jghali) - closed.
- 0014051: [Build System] TravisCI update Trusty Linux builds to Qt5.6 (cbradney) - closed.
- 0012067: [Usability] Inline Items are wrongly placed in Text Frames (fschmid) - closed.
- 0013971: [Tables] If you paste text in the table, the program will abort. (jghali) - closed.
- 0011359: [Story Editor / Text Frames] Missing redraw of inline frames (fschmid) - closed.
- 0012921: [Canvas] Snap to grid doesn't work if frame is partially outside page (jghali) - closed.
- 0014009: [Usability] Objects in rotated groups are loosing it's position on ungrouping (fschmid) - closed.
- 0008955: [Scrapbook] manual tracking is lost when add item from scrapbook (fschmid) - closed.
- 0014021: [Canvas] Widened & Rotated line that is grouped with another object shows abnormal outline when grouped (jghali) - closed.
- 0014031: [General] in the shape dialog, "preview object" should be "hide nodes" (fschmid) - closed.
- 0013504: [Graphics / Image Frames] rhomb color gradient is not adjustable in % (fschmid) - closed.
- 0014035: [Usability] Rotated object popup help show too large value (jghali) - closed.
- 0014029: [User Interface] Shape palette layout (fschmid) - closed.
- 0012108: [User Interface] Wrong caption for Edit Master Pages dialog (fschmid) - closed.
- 0013919: [Canvas] Rotated line shows duplicated stacked line when previewed (while moving) (fschmid) - closed.
- 0013829: [Canvas] Ability to drag and drop import multiple images at the same time (fschmid) - closed.
- 0014010: [Import / Export] ODT Importer Append completely overwrites text frame (fschmid) - closed.
- 0013682: [Printing] Cups APIs outdated and need fixing (fschmid) - closed.
- 0014015: [Story Editor / Text Frames] Hyphen displayed incorrectly as another character (jghali) - closed.
- 0013535: [Fonts] Cannot change fonts in story editor - closed.
- 0013981: [Story Editor / Text Frames] Text line spacing sometimes not correct (jghali) - closed.
- 0014016: [Import / Export] crash loading file (fschmid) - closed.
- 0013158: [Story Editor / Text Frames] 2-key character input issues (with deadkey) (JLuc) - closed.
- 0014005: [Usability] Moved object double framed (outcome and relationship: alignment problems) (fschmid) - closed.
- 0014007: [Usability] When using Line editor spinbox, value grow abnormally (jghali) - closed.
- 0010748: [Scripter] Scripter: Get and Apply a Master Page (cbradney) - closed.
- 0014003: [Story Editor / Text Frames] Grouped single linked text frame with another object has missing refresh text arrow issue (fschmid) - closed.
- 0013996: [Story Editor / Text Frames] Grouping text frames will result in a loss of chained text arrows (fschmid) - closed.
- 0013579: [Usability] Entering masterpage edit mode should exit preview mode (fschmid) - closed.
- 0012172: [User Interface] Custom line type widget too small (jghali) - closed.
- 0010332: [Fonts] Kerning is incorrect when "All Caps" is applied (jghali) - closed.
- 0013992: [Shape Drawing] Node Editor lacks a preview function (fschmid) - closed.
- 0013959: [Story Editor / Text Frames] Grouping text frames will result in a loss of chained text areas (jghali) - closed.
- 0013998: [Import / Export] Widget activation issue in font pane of PDF export dialog (JLuc) - closed.
- 0013999: [General] [crash] Ghost items on masterpage (fschmid) - closed.
- 0014000: [PDF] Experimental embedding of PDF and EPS triggers crash on PDF export (jghali) - closed.
- 0013831: [Translation] Fix Console "please add the untranslated title" messages (cbradney) - closed.
- 0013994: [Translation] Hyphen file for Esperanto (jghali) - closed.
- 0013602: [Import / Export] Crash on opening SLA with reference to item mark (fschmid) - closed.
- 0013680: [Story Editor / Text Frames] Vertical Alignment To Bottom Inactivates Text Alignment Buttons (Kunda) - closed.
- 0013846: [NLS] RTL: Height x Width Chain needs to be flipped (cbradney) - closed.
- 0013677: [Canvas] 'Move Vector' artifacts (fschmid) - closed.
- 0013843: [NLS] RTL: Splash Screen dynamic text conflict with graphic (cbradney) - closed.
- 0013808: [Canvas] Regression: Ghost Palettes (fschmid) - closed.
- 0011544: [User Interface] Docked palettes position / size is not saved between sessions. (fschmid) - closed.
- 0013947: [Usability] Endless selection when exiting edit mode by clicking outside of frame (jghali) - closed.
- 0013948: [Usability] It's hard to select text, if "Space Above" is increased (jghali) - closed.
- 0013473: [Properties Palette] Can not reduce a circle shape below 0.3528 inches - closed.
- 0013979: [General] Incorrect colors when copy-pasting table to other doc (jghali) - closed.
- 0013977: [Story Editor / Text Frames] Text centering does not work correctly after increasing distance between characters (jghali) - closed.
- 0013964: [Story Editor / Text Frames] Text on path not correct with increased distance of letters (jghali) - closed.
- 0013965: [Story Editor / Text Frames] Text on path: start offset has not effect with centered text (fschmid) - closed.
- 0013796: [Canvas] Node Menu: 'Enlarge/Reduce the size of path by the shown value' artifacts (fschmid) - closed.
- 0010420: [PDF] Text on Path Contour Position mismatch after PDF export (fschmid) - closed.
- 0006574: [Import / Export] Some style attributes are lost when importing from OpenOffice text - closed.
- 0013973: [General] mesh distortion for outlined text (fschmid) - closed.
- 0013097: [Translation] [PATCH] script to update translations from Transifex (Kunda) - closed.
- 0013539: [Translation] automatic update translation sources on Transifex (Kunda) - closed.
- 0004161: [Story Editor / Text Frames] Font list in the Story Editor sometimes doesn't show the correct font (christoph_s) - closed.
- 0011624: [Scrapbook] Scrapbook: name of element is too much summarized (fschmid) - closed.
- 0008594: [Typography] Image Drop Caps incorrectly format especially in second column, linked text frame (fschmid) - closed.
- 0013871: [Usability] If paragraph contains DropCaps and Enter is pressed before Space --> content disappears (jghali) - closed.
- 0012138: [Story Editor / Text Frames] [Patch] Bottom align : text disappear when frame is too high (fschmid) - closed.
- 0013963: [Translation] Updated Danish Translation (jghali) - closed.
- 0013960: [Translation] Hungarian Translation (from Transifex) (cbradney) - closed.
- 0009742: [Typography] Changing the line spacing percentage does not change the line spacing (fschmid) - closed.
- 0013646: [Graphics / Image Frames] Text flow around images stopped working! (fschmid) - closed.
- 0013951: [Translation] More clarity in plugins/scriptplugin/cmdpage.cpp for translators (cbradney) - closed.
- 0013938: [Typography] Orphans and widows line management leads to blank text frames depending on the size of the frame (jghali) - closed.
- 0011573: [General] Opening SLA crashes scribus (sla maybe corrupted) (fschmid) - closed.
- 0012685: [General] Scribus crashes with "unexpected end of file" opening a specific document (fschmid) - closed.
- 0013460: [Story Editor / Text Frames] Setting vertical scale for text above 100% causes strange rendering (fschmid) - closed.
- 0012126: [Story Editor / Text Frames] "Scaling height of characters" malfunction (fschmid) - closed.
- 0013954: [Translation] Italian translation update for 1.5.2.svn (FirasH) - closed.
- 0013953: [Graphics / Image Frames] Image's opacity not well rendered when used as pattern - or PDF import issue (fschmid) - closed.
- 0013881: [Story Editor / Text Frames] First line text selection is inaccurate if "Align to Baseline Grid" is enabled (jghali) - closed.
- 0010529: [Plug-ins] Autoquote: Simple quotation marks in cs, sl, sk is not working properly (gpittman) - closed.
- 0013940: [Internal] Compilation warning (jghali) - closed.
- 0013942: [User Interface] Follow-up to 0013284, consistent "Chain" button in Preferences > Item Tools (FirasH) - closed.
- 0013941: [User Interface] Various naming fixes to polygonWidget (FirasH) - closed.
- 0013363: [Usability] Repaint backlog / lag when resizing text frames - closed.
- 0009562: [Story Editor / Text Frames] Text frames not showing text on some pages (jghali) - closed.
- 0013933: [Typography] Bottom-aligned text frames do not respect the bottom margin (jghali) - closed.
- 0013284: [User Interface] Keep "Chain" button consistent across UI (fschmid) - closed.
- 0013798: [User Interface] Rework UI appearance of Item Tools Preferences (fschmid) - closed.
- 0012096: [Typography] Broken font height setting (fschmid) - closed.
- 0013840: [PDF] Drop Shadow export shadow of control character/marks to PDF (fschmid) - closed.
- 0013914: [Canvas] Dual-Page Layout: Full-Width items duplicated on export (jghali) - closed.
- 0012658: [Qt5 Port] Activating colour management and/or preview mode for colour blindness is extremely slow and a resource hog (jghali) - closed.
- 0013925: [Fonts] Non persistent setting when trying to enable Arial Regular subsetting (jghali) - closed.
- 0013432: [Fonts] Preferences > Fonts menu unresponsive i.e values can not be changed (jghali) - closed.
- 0013813: [Fonts] Font Management disabled (jghali) - closed.
- 0013931: [Story Editor / Text Frames] SToolBFont tooltips in Story Editor are not initialized (FirasH) - closed.
- 0013895: [Typography] Bulleted list paragraph effects' first line text offset is not the same as the other lines (jghali) - closed.
- 0008988: [Graphics / Image Frames] expanding the countour line does not respect the measures (fschmid) - closed.
- 0012463: [Canvas] Multiple Duplicate does not place items on the correct page in Windows > Outline (fschmid) - closed.
- 0008788: [General] Automatic recovery (fschmid) - closed.
- 0013847: [General] All / None option in autosave recovery dialog (fschmid) - closed.
- 0013838: [Usability] Crash Recovery UI missing a 'Continue' option if user chooses to remove found emergency/autosave files (fschmid) - closed.
- 0013832: [General] Automatic recovery should rename file that was autorecovered as "filename_(recovered)_DD_MM_YYYY_HH_MM" (fschmid) - closed.
- 0013918: [Printing] Borders of text frames are invisible in print preview and when printed (jghali) - closed.
- 0013917: [Story Editor / Text Frames] [scribusboxes] Tabs & indents don't line up (jghali) - closed.
- 0013916: [Story Editor / Text Frames] [scribusboxes] some text not displayed (jghali) - closed.
- 0010097: [Graphics / Image Frames] Postscript images with negative bounding box value are cropped (fschmid) - closed.
- 0013911: [General] Remove duplicated tabstops in .cpp and .ui from multipleduplicate.cpp (FirasH) - closed.
- 0013904: [User Interface] Fix missing colons in "Transform" dialog (FirasH) - closed.
- 0013915: [Story Editor / Text Frames] [scribusboxes] Crash when inserting frame jump (jghali) - closed.
- 0013581: [Canvas] Linked Text Frame Arrow Artifact after deleting target text frame (jghali) - closed.
- 0013836: [User Interface] Multiple autosave countdown clocks don't autosave in-sync - closed.
- 0013908: [User Interface] Show correct tooltips for Alignment options in Style Manager (FirasH) - closed.
- 0013905: [User Interface] Add missing ellipsis in "Item" menu (where dialogs are opened) (FirasH) - closed.
- 0013898: [User Interface] SE Tooltips needed for align buttons (FirasH) - closed.
- 0013880: [Story Editor / Text Frames] Scribusboxes : another case of buggy justified alignment (jghali) - closed.
- 0013899: [Internal] Compilation warning (jghali) - closed.
- 0013400: [User Interface] Help > Scribus Homepage hangs Scribus (jghali) - closed.
- 0013848: [Integration] Sub-processes launched from Scribus will block the Scribus mainloop until the other application is closed (jghali) - closed.
- 0013903: [User Interface] Rework "Multiple Duplicate" dialog to use space as good as possible (FirasH) - closed.
- 0013891: [General] Add presets for north-american "ARCH" paper sizes? (fschmid) - closed.
- 0013900: [Internal] Crash when using function savePageAsEPS without GUI (fschmid) - closed.
- 0013873: [Graphics / Image Frames] When I delete one of the linked text frames, the link relations don't change. (jghali) - closed.
- 0013877: [Internal] Replace repetitive error setting with function call (jghali) - closed.
- 0013872: [Internal] Replace duplicated inlined code with function call (jghali) - closed.
- 0013870: [Tables] Double-click on Table Crashes Scribus with Signal 11 (jghali) - closed.
- 0013815: [User Interface] Scribus {c|sh}ould let user know document was just autosaved (fschmid) - closed.
- 0013861: [Story Editor / Text Frames] Buggy justified alignment when using glyph scaling (jghali) - closed.
- 0013866: [General] Aborting autosave doesn't trigger Open New File dialog (fschmid) - closed.
- 0006235: [General] bad display of character STYLE when selection is not empty (jghali) - closed.
- 0013855: [Color Management] Style Manager does not update available colors after importing PDF/SVG files (jghali) - closed.
- 0006017: [Translation] when loading hebrew translation, ui (menus) should be justified to the right (jghali) - closed.
- 0013293: [PDF] Crashes with assertion failure while exporting PDF embedding Noto Sans Ja fonts (jghali) - closed.
- 0012204: [Qt5 Port] Opening/Closing Properties palette tabs moves the view to the first document (2+ document Tabs) (jghali) - closed.
- 0010887: [General] No autosave for unsaved files (fschmid) - closed.
- 0013814: [NLS] Main Window layout should be RTL when Arabic translation selected (jghali) - closed.
- 0013838: [Usability] Crash Recovery UI missing a 'Continue' option if user chooses to remove found emergency/autosave files (fschmid) - closed.
- 0013452: [General] Can not open ".autosave" file: "is not in an acceptable format" (fschmid) - closed.
- 0013823: [Graphics / Image Frames] Export to PDF with subsetted Wingding font crashes scribus (jghali) - closed.
- 0013804: [Usability] Change in tabs triggered by operation (jghali) - closed.
- 0003155: [Usability] feature request: configurable .emergency file restore behavior (fschmid) - closed.
- 0013821: [Usability] use 1 as default for the number of the auto saved documenty to keep (fschmid) - closed.
- 0013529: [OS-MacOSX] Feature Request: Ability to drop dirs/files in to Qt File dialog result: auto-find and highlight file - closed.
- 0010220: [General] Configurable directory for .autosaved doc (fschmid) - closed.
- 0013809: [General] Configurable directory for .autosaved doc is not remembered (fschmid) - closed.
- 0013816: [Usability] Move 'Show Autosave Countdown Clock on Canvas' to Prefs > Doc Setup > Saving & Undo (fschmid) - closed.
- 0006253: [Import / Export] Missing "save 5 last version of saved doc" option (fschmid) - closed.
- 0013801: [Internal] Compilation warning (cbradney) - closed.
- 0013797: [Usability] 2 text frame + 2 paragraph + select text + moving another text frame == Scribus Crash (jghali) - closed.
- 0013647: [General] several typos (in the original strings) (cbradney) - closed.
- 0013593: [Translation] Remove aspell plugin now that we use hunspell (jghali) - closed.
- 0013761: [PDF] CFF files left behind after PDF export (jghali) - closed.
- 0013792: [Styles] Automatic numbering ignores charcter style in first paragraph (jghali) - closed.
- 0013793: [Internal] Misspelling of variable in pagelayout.[cpp|h] (jghali) - closed.
- 0013791: [General] Remove unnecessary "Form" strings from translation files (cbradney) - closed.
- 0013790: [General] Fix "Spaces && Breaks" menu in Story editor to match "Spaces/Breaks" in Insert menu (cbradney) - closed.
- 0013782: [Translation] Simplify Arrange Pages Palette strings translation (FirasH) - closed.
- 0013774: [Translation] Simplify X,Y,Z Palette strings translation (FirasH) - closed.
- 0013720: [Usability] [PATCH] select all items on all layers (cbradney) - closed.
- 0013765: [Import / Export] LAB colours with negative a or b values interpreted as spot colours (jghali) - closed.
- 0013769: [Translation] Simplify Group Palette strings translation (FirasH) - closed.
- 0013770: [Translation] Simplify Image Palette strings translation (FirasH) - closed.
- 0013760: [General] Some typos and inconsistencies in strings (cbradney) - closed.
- 0013600: [User Interface] Fix "Range Button" icon in PDF Export/Preferences/Document Setup dialogs (FirasH) - closed.
- 0013702: [User Interface] Missing ellipsis in some menu entries (cbradney) - closed.
- 0013711: [Translation] TRANSLATION file update (cbradney) - closed.
- 0013738: [Translation] Translation typo (jghali) - closed.
- 0013742: [Translation] Update doc/it/readme-win32.html (jghali) - closed.
Scribus - 1.5.1 (Released 2016-02-14)
========================================
- 0013429: [Translation] Polish translation update for Scribus 1.5.1 (cbradney) - resolved.
- 0013723: [General] It is possible to set negative margin values (cbradney) - resolved.
- 0013703: [PDF] Object blending mode ignored on export to PDF (jghali) - resolved.
- 0013687: [Fonts] crash when trying to remove a font path (fschmid) - resolved.
- 0011503: [Shape Drawing] Horizontal mirror and arrow direction (jghali) - resolved.
- 0012565: [Typography] Right alignment of hyphens (jghali) - resolved.
- 0013561: [Graphics / Image Frames] Scale image always to higher scaling value when chain is joined (jghali) - resolved.
- 0012771: [Import / Export] Some patterns imported to incorrect level and therefore aren't visible (fschmid) - resolved.
- 0013571: [Story Editor / Text Frames] Copy not available for text selected by double-click (jghali) - resolved.
- 0011812: [Story Editor / Text Frames] reference to item marks dont respect the secttion's defined offset for page numbers (cbradney) - resolved.
- 0013390: [Styles] change of character style propagates to rendered page one "apply"-click too late (jghali) - resolved.
- 0013726: [Build System] incorrect cmake option in .travis.yml file (jghali) - closed.
- 0013718: [Build System] TravisCI OSX build - remove 'make install' (plinnell) - closed.
- 0013725: [Translation] Italian translation update for 1.5.1 release (jghali) - closed.
- 0013724: [General] "Background Color" in Paragraph Effects is not selectable (jghali) - closed.
- 0013711: [Translation] TRANSLATION file update (cbradney) - closed.
- 0013574: [User Interface] Unify size of sections in Preferences/Document Setup dialog (cbradney) - closed.
- 0013108: [Canvas] Pasting image in text frame causes refresh bug (fschmid) - closed.
- 0013704: [User Interface] Wrong colour model selection with LAB palette (jghali) - closed.
- 0013697: [Build System] Fix incorrect yml formatting to re-enabled IRC notifications (jghali) - closed.
- 0013693: [Translation] Italian translation update for 1.5.1 release (cbradney) - closed.
- 0013689: [Properties Palette] PP doesn't reset after document closes (cbradney) - closed.
- 0013681: [Build System] Build warnings (r20711) (cbradney) - closed.
- 0013683: [General] SLA crashes 1.5.1svn r20711 upon opening (jghali) - closed.
- 0011966: [Import / Export] Background in VDX files interpreted as black (fschmid) - closed.
- 0013678: [Translation] Minor translation update for 1.5.1 release (cbradney) - closed.
- 0013674: [Translation] Updated Danish Translation (jghali) - closed.
- 0013679: [Build System] TravisCI Build failing since r20696 (cbradney) - closed.
- 0012154: [Story Editor / Text Frames] "Adjust Frame Height to Text" inconsistent behaviour with Middle/Bottom Vertical Alignment (jghali) - closed.
- 0012177: [Canvas] Changing Arc height/width places the Arc out of the Frame + crash (fschmid) - closed.
- 0003173: [NLS] Japanese (CJK) text in story editor is not entered into text frame. Frequent crashes. - closed.
- 0012354: [General] Ungrouping items rotated/grouped/welded places them wrongly (fschmid) - closed.
- 0013675: [Tables] table right-click 'level' menu greyed out (cbradney) - closed.
- 0013247: [Tables] Table cell border color information not correct after save/reload (jghali) - closed.
- 0012252: [Import / Export] Wrong import of SVG gradient + Crash (file attached) (fschmid) - closed.
- 0013668: [Build System] building latest svn on fedora 23 fails on importps.cpp (cbradney) - closed.
- 0011255: [Story Editor / Text Frames] Imported *.odt list has invalid font name but rest of test is O.K. (fschmid) - closed.
- 0013648: [Color Management] Remove GiveLifeCS color palette (cbradney) - closed.
- 0010683: [Styles] Can't set text background color (impacts ODT import) (fschmid) - closed.
- 0012250: [Import / Export] SVG arrows not imported (fschmid) - closed.
- 0013599: [Tables] Table cell margin between border and text changes after save/reload (jghali) - closed.
- 0013169: [General] Items with rotation between 91° and 269° are wrongly placed on canvas after Ungroup (fschmid) - closed.
- 0013556: [Internal] set of naming convention on scribus code (cbradney) - closed.
- 0013544: [Documentation] Cleaning up scribus code (cbradney) - closed.
- 0013088: [Styles] Scribus 1.5.1 Signal 11 crash when adding new style on Plasma 5.3 (jghali) - closed.
- 0013665: [Internal] [patch] Scribus gets compile errors in OSG code (cbradney) - closed.
- 0013660: [Canvas] Bezier Curve artifacts (fschmid) - closed.
- 0013655: [PDF] Raster image in PDF incorrectly imported (fschmid) - closed.
- 0010578: [Graphics / Image Frames] Images don't show up when importing an EPS with Ghostscript (fschmid) - closed.
- 0012212: [Import / Export] ODT import works reliably only with LibreOffice/OpenOffice files (fschmid) - closed.
- 0013640: [User Interface] Preferences -> Guides mis-aligned UI (cbradney) - closed.
- 0013654: [Import / Export] Evince warning when outlining font : "Syntax Error: No current point in closepath" (jghali) - closed.
- 0013645: [PDF] Bad pattern placement when exporting to PDF and using bleeds (jghali) - closed.
- 0013366: [Import / Export] Underlining is not visible on exported image. (jghali) - closed.
- 0013636: [User Interface] Style Manager doesn't support certain fonts like: ö (fschmid) - closed.
- 0008427: [Styles] Coloured background in a Paragraph or Character style (fschmid) - closed.
- 0012995: [Import / Export] Non-printing characters (Page Break, Column Break) are not imported from ODT files (fschmid) - closed.
- 0011157: [Import / Export] Import of ODT should use "display name" of style (fschmid) - closed.
- 0009080: [Import / Export] Lost bold text in text imported from ODT file (fschmid) - closed.
- 0013607: [Usability] Highlighted text remains highlighted when "Saved as Image" (fschmid) - closed.
- 0013603: [Import / Export] PDF open : polygon fill color not imported (fschmid) - closed.
- 0013575: [Translation] Obsolete (?) .po files in translation/ dir (jghali) - closed.
- 0013589: [Translation] Updated Danish Translation (cbradney) - closed.
- 0013592: [Download Manager] Download in Resource Manager crashes Scribus (jghali) - closed.
- 0013591: [Translation] Italian update for 1.5.1.svn (jghali) - closed.
- 0011409: [Import / Export] crash while importing masterpage, with gdb backtrace (jghali) - closed.
- 0013577: [User Interface] Fix inconsistent colons in Properties Palette (FirasH) - closed.
- 0002276: [Usability] The register "Fonts" in the dialog "Save as PDF" is quite confusing (and has a bug). (jghali) - closed.
- 0013578: [Import / Export] Incorrect text alignment with imported DOCX file (fschmid) - closed.
- 0013191: [Usability] [Tooltips] Preferences > User Interface > Interactivity tab (cbradney) - closed.
- 0013576: [User Interface] Fix wrong tooltip for Margins & Bleeds link button (FirasH) - closed.
- 0013565: [Shape Drawing] Rounded Corners value is lost changing Shape (cbradney) - closed.
- 0013573: [User Interface] Add missing Horizontal Line in prefs_externaltoolsbase.ui (FirasH) - closed.
- 0013381: [Story Editor / Text Frames] Linking text brings destination frame to top (cbradney) - closed.
- 0013570: [General] Some naming cleaning in prefs_documentsetupbase.ui (jghali) - closed.
- 0013415: [User Interface] [CLI] Changing multiple flag rules (cbradney) - closed.
- 0013566: [Translation] Italian update for 1.5.1.svn (jghali) - closed.
- 0013564: [General] Dragging Outline items on canvas make those disappear till Outline Palette update (jghali) - closed.
- 0013547: [PDF] Crash on PDF exporting (jghali) - closed.
- 0012245: [Canvas] grouped lines appear thicker (fschmid) - closed.
- 0013553: [General] Minor typo in smpstylewidget.cpp (jghali) - closed.
- 0013548: [General] Some small changes to keep consistent Action Manager output (jghali) - closed.
- 0013095: [User Interface] CLI --help needs formatting (cbradney) - closed.
- 0011988: [User Interface] Preselected glyphs hint bubble should also display the unicode name of the glyph and the name of the font (cbradney) - closed.
- 0013241: [PDF] Scribus 1.5.1 writes invalid PDF hex strings (jghali) - closed.
- 0013243: [Story Editor / Text Frames] Attach text to path action is not enabled correctly (jghali) - closed.
- 0013301: [User Interface] Better Hi-Res Support on OSX (cbradney) - closed.
- 0013318: [PDF] Scribus 1.5.1 gets valgrind error "Mismatched free() / delete / delete []" (jghali) - closed.
- 0013317: [PDF] Scribus 1.5.1 aborts with an assertion failure on CFF fonts when exporting to PDF (jghali) - closed.
- 0013210: [Language Tools] Add hyphenation for Welsh (cbradney) - closed.
- 0013249: [Build System] fix a couple of warnings when running lupdate (jghali) - closed.
- 0013376: [Scripter] Python error cleared too early (cbradney) - closed.
- 0013311: [Integration] support for command line arguments to be passed on to python script (-py option) (cbradney) - closed.
- 0013174: [User Interface] add a tooltip for "Group clips Contents" (cbradney) - closed.
- 0013508: [Canvas] impossible to resize the stroke line width of grouped items (fschmid) - closed.
- 0012490: [Story Editor / Text Frames] [Patch] Spell checking first word (cbradney) - closed.
- 0013490: [Story Editor / Text Frames] after inserting a footnote before an existing footnote the format of the new footnote text is wrong (cbradney) - closed.
- 0011772: [Story Editor / Text Frames] Choices in Preference > User Interface > Story Editor have some issues (broken/ambiguous) (cbradney) - closed.
- 0012794: [Shape Drawing] It is possible to create Bezier Curves with only 1 node (2) (jghali) - closed.
- 0013527: [General] Deleting right text frame crashes Scribus (jghali) - closed.
- 0013515: [Import / Export] Drop Shadow not exported to PDF / X-4 (jghali) - closed.
- 0013517: [Translation] Polish translation update for Scribus 1.5.1 (jghali) - closed.
- 0013500: [User Interface] wrong mouse pointer when linking text frame (cbradney) - closed.
- 0013431: [Usability] Trying to delete page of .sla generated from Scribus v.1.3.8 will hang Scribus 1.5.1 (jghali) - closed.
- 0013112: [Build System] libpng warning: iCCP: known incorrect sRGB profile (jghali) - closed.
- 0013401: [Usability] [PATCH] Save CTRL+S is broken when in Masterpage Edit mode (cbradney) - closed.
- 0012125: [User Interface] Foot/Endnote mark delete == Crash (cbradney) - closed.
- 0011765: [General] crash when deleting footnote's text (cbradney) - closed.
- 0013414: [User Interface] [CLI] --lang issues (cbradney) - closed.
- 0013413: [User Interface] [CLI] Error-message-wrong-and-too-verbose (cbradney) - closed.
- 0013408: [User Interface] [CLI] --prefs option without provided file causes crash (cbradney) - closed.
- 0013198: [Usability] [Support] Add 'Chat' item to "Help" Dropdown (cbradney) - closed.
- 0013485: [OS-MacOSX] [OSX] ⌘ should substitute CTRL in the keyboard shortcuts (Icons, Shortcut menu etc...) (cbradney) - closed.
- 0013455: [OS-MacOSX] Styles Menu Paragraph Style Effects Bullet menu UI anomaly (cbradney) - closed.
- 0013493: [General] Minor typo in scribusapp.cpp (cbradney) - closed.
- 0012683: [Properties Palette] add width and height variables in the image position fields of the PP (jghali) - closed.
- 0011855: [Story Editor / Text Frames] Character Styles in text fields are shown but not saved (jghali) - closed.
- 0012091: [User Interface] Search result in Story Editor complexities (modal window problem + loses location when search dialog closed) (jghali) - closed.
- 0012498: [Story Editor / Text Frames] delete after last char in frame deletes the frame (jghali) - closed.
- 0013477: [Translation] Updated Danish Translation (jghali) - closed.
- 0013472: [Build System] [PATCH] Add OSX build option to travis-ci (cbradney) - closed.
- 0012551: [Story Editor / Text Frames] Delete Reference to Item crashes Scribus (jghali) - closed.
- 0004623: [Import / Export] Import Quark xtg files (fschmid) - closed.
- 0011562: [Import / Export] XTG import not rendered correctly in text frames (fschmid) - closed.
- 0013467: [General] crash when deleting footnote's frame (jghali) - closed.
- 0011526: [Graphics / Image Frames] DELETE key in "Edit Image" mode should empty image frame (jghali) - closed.
- 0013463: [Build System] Add apt-get install -y to .travis.yml (jghali) - closed.
- 0013456: [Translation] Script Menu Non-switching translations (jghali) - closed.
- 0013459: [Translation] Align and Distribute non-switching translations (jghali) - closed.
- 0013458: [Translation] Note Styles editor non-switching translations (jghali) - closed.
- 0013457: [Translation] Marks Manager non-switching translations (jghali) - closed.
- 0011683: [Story Editor / Text Frames] Crash due to wrong management of Reference to Item Marks (jghali) - closed.
- 0013227: [Language Tools] Non-switching translations: icon bar (cbradney) - closed.
- 0013444: [Translation] Styles Menu non-switching translations (jghali) - closed.
- 0013441: [Translation] Scrapbook Non-switching translations (jghali) - closed.
- 0013442: [Translation] Layer Box Non-switching translations (jghali) - closed.
- 0013440: [NLS] Impossible to select some language translation (cbradney) - closed.
- 0013427: [Build System] Patch to consistently use -fPIC (cbradney) - closed.
- 0013280: [Internal] [OSX] Importing an .sla crashes with Sig11 - closed.
- 0013150: [Qt5 Port] [OSX] Crash/Hang after closing document and starting a new one (Kunda) - closed.
- 0013393: [General] Edit > Duplicate changes relative levels of selected items (jghali) - closed.
- 0008697: [Import / Export] Suggested Improvement of RTF Import with UNRTF (fschmid) - closed.
- 0001474: [Import / Export] rtf import (fschmid) - closed.
- 0013406: [Import / Export] Paragraph Styles are not being imported from RTF files (fschmid) - closed.
- 0013405: [Import / Export] Crash during RTF import (fschmid) - closed.
- 0013351: [Scripter] remove the "ext" parameter from the scripter arguments (cbradney) - closed.
- 0013392: [General] Precisense of LC_ALL, LANG and LC_MESSAGES does not comply to POSIX (cbradney) - closed.
- 0013386: [General] scribus does not honor "LC_ALL=C" nor "LANG=C" (cbradney) - closed.
- 0013379: [User Interface] Fix non updated strings in Properties > Colors after language change (FirasH) - closed.
- 0011013: [PDF] When exporting to PDF the default should be to embed the fonts (jghali) - closed.
- 0012920: [PDF] Scribus should ensure fonts are either embeded or outlined (jghali) - closed.
- 0013173: [PDF] Crash with fonts embed/subset config in PDF Export Dialog (jghali) - closed.
- 0013233: [Import / Export] PDF Import: Wrong colors after Text import (fschmid) - closed.
- 0012821: [Language Tools] Hints in hyphen dialog (cbradney) - closed.
- 0013203: [Translation] Dummy Placeholder texts in translation files (cbradney) - closed.
- 0013378: [User Interface] Fix non updated strings in "gradienteditor" after language change (FirasH) - closed.
- 0013380: [OS-MacOSX] [Regression] CLI flag -l <language> doesn't work (cbradney) - closed.
- 0013374: [User Interface] Fix non updated strings in Properties > Text after language change (FirasH) - closed.
- 0013375: [User Interface] Fix non updated strings in Properties > Image after language change (FirasH) - closed.
- 0013371: [User Interface] Part 6: fix inconsistent tooltips (FirasH) - closed.
- 0012937: [Download Manager] Add pop-up dialogs for licences to the resource manager (cbradney) - closed.
- 0013217: [PDF] large group incorrectly clipped on PDF output (jghali) - closed.
- 0013367: [Undo/Redo] Changing document unit records useless Undo actions (jghali) - closed.
- 0013361: [User Interface] Keep "Edit" and "Insert" menu consistent in Toolbar and Story Editor (FirasH) - closed.
- 0013356: [General] It is not possible to name a Symbol like a Symbol previously deleted (fschmid) - closed.
- 0013179: [General] GNOME: Please provide a bigger icon for Scribus (for HiDPI screen) (cbradney) - closed.
- 0013228: [OS-MacOSX] correctly set the default path to gimp (cbradney) - closed.
- 0013291: [User Interface] Add Edit/Remove in right-click menu of Symbols palette (fschmid) - closed.
- 0013290: [General] Actions applied to "Empty Symbols" are very likely cause of crash (fschmid) - closed.
- 0013299: [User Interface] Fix currentIndex of Hyphenator tabs in Preferences dialog (FirasH) - closed.
- 0013332: [Canvas] Flipped items drag preview is not flipped (fschmid) - closed.
- 0013334: [PDF] Unify PDF/X Headline (jghali) - closed.
- 0010717: [Import / Export] misplacement of elements on PS import (fschmid) - closed.
- 0013347: [Undo/Redo] Undo/Redo of "Get Image" leads to empty Image Frame (jghali) - closed.
- 0013342: [User Interface] Inconsistent naming of Measurements dialog (cbradney) - closed.
- 0013224: [Build System] Build fails when librevenge not installed and libcdr, libvisio or libmspub installed (cbradney) - closed.
- 0011351: [User Interface] Icons for some actions are harder to use in 1.5.0svn (cbradney) - closed.
- 0013189: [PDF] 1.5.1svn does not export vector objects to PDF 1.3 and crashes for other PDF versions (jghali) - closed.
- 0013077: [PDF] Crash when exporting to pdf with embedded fonts (avox) - closed.
- 0013320: [User Interface] Wrong tooltips in File > Preferences > "Margins & Bleeds" (jghali) - closed.
- 0013344: [User Interface] Fix some tabstops in Preferences/Document Setup dialog (FirasH) - closed.
- 0013343: [Usability] pressing TAB jumps around in color edit window (jghali) - closed.
- 0013328: [Translation] 1.5.1.svn Italian translation update (jghali) - closed.
- 0013321: [User Interface] Add tooltip for chain icon in File > New (FirasH) - closed.
- 0013197: [Usability] in file > new, "chaining" should make all values equal (jghali) - closed.
- 0013303: [Import / Export] If libimportsml.so missing the /usr/lib/scribus-trunk/plugins --> Scribus start == crash (fschmid) - closed.
- 0013315: [Translation] Updated Danish Translation (jghali) - closed.
- 0012416: [User Interface] List all Corel file types supported by libcdr and UniConvertor in the file selectors (cbradney) - closed.
- 0013307: [General] Part 5: fix inconsistent tooltips (cbradney) - closed.
- 0013266: [User Interface] Image frame scaling options don't disable/enable based on selection (cbradney) - closed.
- 0013292: [Translation] Can't set language (cbradney) - closed.
- 0013304: [Build System] build error after 82% (cbradney) - closed.
- 0013302: [User Interface] Wrong placement of Navigator in PDF Filed Properties dialog (fschmid) - closed.
- 0013305: [Translation] 1.5.1.svn Italian translation update (FirasH) - closed.
- 0013296: [Translation] Translation to Arabic (jghali) - closed.
- 0013200: [Canvas] New theme --> master page name does not appear (cbradney) - closed.
- 0013093: [PDF] Crash signal 6 when exporting as PDF (jghali) - closed.
- 0013288: [User Interface] Fix "Preferences > User Interface > Main Window" Horizontal Line+Vertical Spacer (FirasH) - closed.
- 0013230: [User Interface] Language of the UI is back to system default after a restart (cbradney) - closed.
- 0013287: [General] Fix some spacing in Scribus code (Spacing/Tabs) (FirasH) - closed.
- 0013285: [User Interface] Remove useless colon in Preferences dialog (FirasH) - closed.
- 0013282: [General] "Edit Arc" dialog can only be used with pt as unit (jghali) - closed.
- 0013275: [User Interface] Fix inconsistent layout between Table and Cell Style UI (FirasH) - closed.
- 0013273: [User Interface] Keep "Use Document Bleeds" checkbox position consistent between Print and PDF export dialog (FirasH) - closed.
- 0013272: [Undo/Redo] Closing "Nodes" dialog crashes Scribus if Undo/Redo and "Rounded Corners" are used while in modeEditClip (jghali) - closed.
- 0013268: [General] "Defaults" button duplicates Printing Destination in Preferences (cbradney) - closed.
- 0013269: [General] "Defaults" button duplicates Guides Placement settings in specific condition (cbradney) - closed.
- 0013236: [Build System] Please Add .travis.yml file (cbradney) - closed.
- 0013240: [Import / Export] export to pdf crashes with signal 6 (jghali) - closed.
- 0013263: [User Interface] Substitute "Link" checkbox with chain link button in Preferences (FirasH) - closed.
- 0013194: [User Interface] Replace Qt5Webkit with Qt5WebEngineWidgets (cbradney) - closed.
- 0013165: [Import / Export] SVG Stroke-dasharray zero problem (fschmid) - closed.
- 0013085: [PDF] 1.5.1. text following path not exported correctly (fschmid) - closed.
- 0013257: [General] Part 4: fix inconsistent tooltips (cbradney) - closed.
- 0013176: [General] Open document Icon dropdown button does not work (won't open previously opened doc) (cbradney) - closed.
- 0013261: [Build System] Failure to load scribus in 20280 (cbradney) - closed.
- 0013260: [User Interface] Enlarge Polygon QSliders to use available space and improve its precision (FirasH) - closed.
- 0013172: [PDF] Improve PDF Export dialog pre-press tab UI (jghali) - closed.
- 0007351: [PDF] PDF export: : fonts cannot be outlined anymore (avox) - closed.
- 0008945: [Import / Export] Confusing option name (avox) - closed.
- 0013256: [General] Part 3: fix inconsistent tooltips (cbradney) - closed.
- 0013254: [General] Part 2: fix inconsistent tooltips (cbradney) - closed.
- 0013251: [General] Part 1: fix inconsistent tooltips (cbradney) - closed.
- 0013190: [Internal] CLI --la needs formatting (cbradney) - closed.
- 0013253: [General] Paragraph Effects cause crash changing "Char Syle" back to "No Style" (jghali) - closed.
- 0013239: [Translation] Typo: Raize should be Raise (cbradney) - closed.
- 0013250: [Translation] 1.5.1.svn Italian translation update (jghali) - closed.
- 0012508: [PDF] Grouped Items might be wrongly exported/cropped to PDF (jghali) - closed.
- 0013134: [Graphics / Image Frames] 1.5 issue - after scaled multiple polygons - after duplication or copy / pasted skews proportion (fschmid) - closed.
- 0012687: [Qt5 Port] Inserting a barcode does not work when build against Qt5.3.1 & Qt5.4 (cbradney) - closed.
- 0013238: [Build System] Warnings generated in recent build (jghali) - closed.
- 0013231: [Translation] Action History window name not translated (jghali) - closed.
- 0013220: [Translation] Uniformity of UI and translations (cbradney) - closed.
- 0013232: [General] Fix some menu entries not updated after language change (cbradney) - closed.
- 0013221: [Graphics / Image Frames] EPS image with clipping path - Clipping path is not working correctly. (fschmid) - closed.
- 0012519: [Import / Export] After VIVA XML import file significant slow down in Scribus response time (fschmid) - closed.
- 0012192: [User Interface] Hungarian language environment -> text fields is too small. - closed.
- 0013188: [OS-MacOSX] Changing Localization isn't supported on CLI (cbradney) - closed.
- 0013109: [Shape Drawing] Pressing 'Esc' in [Polygon Properties|Arc] crashes scribus (cbradney) - closed.
- 0013177: [Canvas] Changing Polygon Properties doesn't update canvas correctly (jghali) - closed.
- 0013133: [General] "Has Drop Shadow" checkbox does not apply shadow when checked, but when unchecked (jghali) - closed.
- 0013164: [General] Remove some useless code related to exit special mode from toolbar (FirasH) - closed.
- 0013159: [General] New HLC colorpicker causes crash opening File > Preferences... (fschmid) - closed.
- 0013160: [Build System] Build r20189 fails "AdapterWidget.cpp:72:28: error: no viable conversion from 'QIcon' to 'const QCursor'" (cbradney) - closed.
- 0013157: [Build System] Build r20188 fails: fatal error: 'util_icon.h' file not found (cbradney) - closed.
- 0013147: [Import / Export] TTF font subsetting is not reliable using accented characters (avox) - closed.
- 0013139: [Undo/Redo] Using Drop Shadow continues to record actions in Action History just by scrolling (jghali) - closed.
- 0013130: [Build System] cmykfwbase.ui: Warning: Z-order assignment: 'verticalSpacer_2' is not a valid widget. (jghali) - closed.
- 0013106: [Typography] Linux Libertine G font family + Insert Thin Space == Crash (jghali) - closed.
- 0013101: [Usability] Crash after opening document with preview mode ON (jghali) - closed.
- 0013102: [Qt5 Port] Missing in of <QObject> in scribus/sclayer.cpp (jghali) - closed.
- 0013079: [Build System] Builld r20125 fails on OSX 10.9.5 using Homebrew (cbradney) - closed.
- 0013081: [PDF] Scribus crashes during PDF export with 3D annotation (fschmid) - closed.
- 0012820: [Story Editor / Text Frames] Crash when deleting inline frame (fschmid) - closed.
- 0013078: [User Interface] Font preview looks not like it should (jghali) - closed.
- 0012448: [Canvas] Resizing of a Group + Item is not correct (fschmid) - closed.
- 0004194: [Story Editor / Text Frames] Opacity of the text shadow (fschmid) - closed.
- 0012290: [Graphics / Image Frames] Drop shadow for images with transparent areas (fschmid) - closed.
- 0013070: [General] Compiling error on Linux (fschmid) - closed.
- 0004564: [Import / Export] PDF Export: Subsetting of OTF fonts (TTF variant) as true TTF subsets in PDF version < 1.6 (avox) - closed.
Scribus - 1.5.0 (Released 2015-05-19)
========================================
- 0013060: [Import / Export] exporting gradients to pdf/x-1 or x-3 fails (jghali) - resolved.
- 0013062: [Scripter] [patch] fix dialog buttons in python messageBox() (cbradney) - resolved.
- 0013064: [General] enableActionsForSelection() overwrites correctly enabled/disabled menu entries while in edit modes (cbradney) - closed.
- 0012228: [Story Editor / Text Frames] Some accented characters dont get typed in text frames (cbradney) - resolved.
- 0013062: [Scripter] [patch] fix dialog buttons in python messageBox() (cbradney) - resolved.
- 0013058: [Usability] Font Preview feature is unusable (jghali) - resolved.
- 0011857: [User Interface] Inconsistent file listing in file selectors (cbradney) - resolved.
- 0010627: [Graphics / Image Frames] Unable to open some PS images into Image Frame (fschmid) - closed.
- 0012513: [Usability] Signitficant data-entry speed issue when the page contains a shaded object (fschmid) - closed.
- 0013055: [Translation] Hungarian translation updates for 1.5.0 (jghali) - closed.
- 0012860: [Canvas] Windows > Outline may not set correctly document view importing pages (jghali) - closed.
- 0013048: [General] "Free Scaling" setting in Preferences does not survive restart (jghali) - closed.
- 0013025: [General] Status bar current layer is not in sync with Layers palette (cbradney) - closed.
- 0011561: [Import / Export] IDML Import : problem with some images (fschmid) - closed.
- 0013038: [Plug-ins] Shortwords Plugin doesn't work in 1.5svn (cbradney) - closed.
- 0013037: [Translation] 1.5.0 Italian translation update (FirasH) - closed.
- 0013036: [Translation] Hungarian translation updates for 1.5.0 (cbradney) - closed.
- 0012487: [Fonts] "Used in Document" flag is not set (jghali) - closed.
- 0012966: [Translation] German: mismatch between "Eintrag auswählen" and "Object" menu (christoph_s) - closed.
- 0012973: [Fonts] TTF embedding doesnt work (avox) - closed.
- 0013022: [Fonts] Useless "Used" column in font config (jghali) - closed.
- 0013026: [PDF] "Hatch" fill transparency is ignored exporting to PDF (fschmid) - closed.
- 0013028: [Translation] Updated Russian translation for 1.5.0 (cbradney) - closed.
- 0013030: [Import / Export] -Save as image- in master page mode = Signal 6 (cbradney) - closed.
- 0012977: [General] When opening other document,why is previous document view set back to 100%? (cbradney) - closed.
- 0013027: [Translation] Japanese translation update for 1.5 (jghali) - closed.
- 0013018: [Translation] Italian translation update (FirasH) - closed.
- 0013007: [Styles] Styles Menu: Clone a style and try to drag it up the list causes Signal 6 (cbradney) - closed.
- 0012996: [Graphics / Image Frames] Pasted images coming from LO do not appear in "Inline Items" windows (fschmid) - closed.
- 0012247: [User Interface] Ungroup crashes (most likely caused by copy/paste) (fschmid) - closed.
- 0013004: [Translation] Updated Danish Translation (jghali) - closed.
- 0013005: [Translation] Danish lorem ipsum (jghali) - closed.
- 0013006: [User Interface] Picture Browser (Scribus) Crash (cbradney) - closed.
- 0012990: [PDF] Gradients are being exported with an offset (fschmid) - closed.
- 0011316: [Documentation] Update to Windows Build info (jghali) - closed.
- 0012976: [Import / Export] opening eps window always says "clean.pdf" (cbradney) - closed.
- 0012978: [Import / Export] ACO palettes cannot be imported (fschmid) - closed.
- 0012972: [General] "Pen Angle" setting in Document Setup needs document reopening to be applied (cbradney) - closed.
- 0012766: [Import / Export] 1.5 : Opening 1.4.4 sla that with path object (fschmid) - closed.
- 0012867: [General] Changing item level does not update text flow around frame (fschmid) - closed.
- 0012965: [General] Problem while opening scribus document (fschmid) - closed.
- 0012955: [Translation] 1.5.0.svn Italian translation update (FirasH) - closed.
- 0012961: [Graphics / Image Frames] Rotated photos are imported with rotation but exported to PDF without the rotation (jghali) - closed.
- 0011802: [General] Strange phenomenon: Page 1 text is reflected in page 3 or 4 (cbradney) - closed.
- 0012956: [Translation] Hungarian translation update for trunk (jghali) - closed.
- 0012477: [Undo/Redo] Undo/Redo crashes Scribus changing Text > Color (jghali) - closed.
- 0012460: [Undo/Redo] Undo/Redo is not able to manage multiple "Truncate text" actions (jghali) - closed.
- 0012952: [Import / Export] Crash with SVM file (fschmid) - closed.
- 0012947: [General] content > copy | paste | paste (absolute) do not work anymore (cbradney) - closed.
- 0012948: [Import / Export] default export to image to png (cbradney) - closed.
- 0012020: [Undo/Redo] Undo does not restore Page Properties (cbradney) - closed.
- 0012945: [General] Modifying table cell color affects only one cell in selection (jghali) - closed.
- 0004884: [Story Editor / Text Frames] Cursor in Story Editor always moves to top when switching window focus (cbradney) - closed.
- 0010975: [User Interface] Attributes not retained correctly through cut and paste operations (cbradney) - closed.
- 0012877: [User Interface] weld and unweld in history (cbradney) - closed.
- 0012906: [Usability] Document "Zoom - Stepping" value not less than 100% (cbradney) - closed.
- 0012927: [Usability] [PATCH] remove three and four fold from the new document dialog (cbradney) - closed.
- 0012940: [General] qHash() returns uint and Scribus stores item IDs as ints. (cbradney) - closed.
- 0011994: [Import / Export] The GraphicsMagick plug-in doesn't recognise all supported formats, even though they can be imported (cbradney) - closed.
- 0012797: [Story Editor / Text Frames] Linking Text Frames in specific order (2nd>3rd;1st>2nd) leads to wrong linking (1st=3rd) (jghali) - closed.
- 0012572: [Scripter] [patch] Add a --python-script command line option to run a script and exit (cbradney) - closed.
- 0012938: [General] Changing "Copy Page" destination crashes Scribus (jghali) - closed.
- 0012928: [Story Editor / Text Frames] Insufficient justification of Japanese text (cbradney) - closed.
- 0008823: [General] New non modal resource manager (cbradney) - closed.
- 0012517: [Usability] [PATCH] Port BAlpha swap-pages.patch (cbradney) - closed.
- 0012916: [General] "Swap with Page" feature does not correctly enable/disable dialog spinboxes (cbradney) - closed.
- 0012917: [Undo/Redo] "Swap with Page" action is not recorded in Action History (cbradney) - closed.
- 0012371: [Undo/Redo] Undo/Redo crashes Scribus deleting items of a group (case 1) (cbradney) - closed.
- 0012625: [Tables] "Delete Columns" will crash or freeze Scribus using "Merge Cells" (FirasH) - closed.
- 0012930: [General] CLI output:"SMCStyleWidget::show(): deflan='en_GB'->''" (cbradney) - closed.
- 0012149: [User Interface] Orphaned dialog caption of the Edit Welded Item widget (cbradney) - closed.
- 0012148: [User Interface] Misleading menu entry: "Edit Welded Item" (cbradney) - closed.
- 0009227: [Plug-ins] Update the UniConvertor plugin to let it handle the rewritten UC 1.1.5 (Herm) - closed.
- 0007659: [Story Editor / Text Frames] Page numbering disappears when Text Frame is attached to Path (fschmid) - closed.
- 0012071: [Scripter] Autoquote script fails when the second quotation mark is placed before a line break. (gpittman) - closed.
- 0011221: [Scripter] Add a method to get list of all pages in document. (jainbasil) - closed.
- 0003218: [Import / Export] OO Draw v2 document support (Metabug) - closed.
- 0003228: [Import / Export] Custom shapes support (OO Draw v2 import) - closed.
- 0010122: [Translation] In french, "HSV" should be translatted "TSL" (jghali) - closed.
- 0012674: [Shape Drawing] [TESTED-PATCH] Nodes tool might lead to strange results if Locking is applied (cbradney) - closed.
- 0012782: [General] Upgrade libwpg 3rd party code (fschmid) - closed.
- 0012783: [General] Upgrade libpgf 3rd party code (fschmid) - closed.
- 0012489: [Releases] 1.5svn Changelog obsolete and needs to be updated (cbradney) - closed.
- 0012031: [User Interface] Copy tooltip for printer margins to the Doc Setup/Prefs dialog (cbradney) - closed.
- 0012503: [General] "Normal" Master Page is duplicated adding a new Master Page (jghali) - closed.
- 0011487: [User Interface] [TESTED-PATCH] Add tooltips to the Picture Browser (jghali) - closed.
- 0011746: [Import / Export] EPS and AI background color misinterpreted (fschmid) - closed.
- 0012022: [Import / Export] Drag'n'drop from the Picture Browser doesn't work correctly (canvas draw/redraw issue?) (fschmid) - closed.
- 0012201: [User Interface] [PATCH] Empty tooltips in Preferences window (jghali) - closed.
- 0012347: [Shape Drawing] Deleting Bezier Curve nodes leads to wrong result (jghali) - closed.
- 0012403: [Undo/Redo] Undo/Redo may duplicate entries in Windows > Outline (FirasH) - closed.
- 0012405: [Canvas] "Show Layers Indicators" is not working on Scribus 1.5.0.svn (cbradney) - closed.
- 0012453: [Canvas] "Snap to Items" option get lost using Check Spelling (cbradney) - closed.
- 0012475: [Fonts] font spacing/kerning is wrong (jghali) - closed.
- 0012501: [User Interface] [TESTED-PATCH] Tooltip missing for Barcode (jghali) - closed.
- 0012507: [User Interface] [PATCH] Added tooltip "Create range of pages" to ellipsis icon in all Scribus export dialogs (cbradney) - closed.
- 0012522: [Graphics / Image Frames] Enabling/Disabling "Show Images" does not apply correctly (cbradney) - closed.
- 0012523: [Graphics / Image Frames] Enabling/Disabling "Show Images" does not apply correctly to Master Pages (cbradney) - closed.
- 0012532: [Shape Drawing] "Inner Rotation" needs "Apply Factor" enabled to work (cbradney) - closed.
- 0012555: [Undo/Redo] Undo 'delete single item in a group' does not restore regroup (jghali) - closed.
- 0012562: [General] File > Close while editing Inline Items greys out menus entries (cbradney) - closed.
- 0012578: [Properties Palette] "Replace Colors" gives wrong result if Properties > Colors tab is opened (jghali) - closed.
- 0012705: [General] Disable www features in the "About Scribus" dialog (cbradney) - closed.
- 0012753: [General] Convert Symbol to Symbol crashes Scribus (jghali) - closed.
- 0012009: [General] Preferences > Paths > Documents should have immediate effect (cbradney) - closed.
- 0012131: [Usability] New document dialog : switch "units" and "first page" inputs (cbradney) - closed.
- 0012704: [User Interface] A more reasonable order of entries in Prefs/Doc Setup (cbradney) - closed.
- 0012926: [Build System] gcc compiler error in scribus12format.cpp (jghali) - closed.
- 0012925: [Build System] gcc compiler error in pageitem_osgframe.cpp (cbradney) - closed.
- 0012742: [Translation] Save/Discard/Cancel should be translatable on document closing (QMessageBox translation) (cbradney) - closed.
- 0012881: [General] upgrade/refactor hyphen 3th party code (jghali) - closed.
- 0012870: [User Interface] "Extra > Image manager > Goto Image" should go to image's topleft position (cbradney) - closed.
- 0012922: [Translation] Fix typo in Italian translation (FirasH) - closed.
- 0012913: [Fonts] [Feature] Add Blokk font (for mockups, a Lorem Ipsum replacement) (cbradney) - closed.
- 0012912: [OS-MacOSX] CLI error: IODevice::read: device not open (cbradney) - closed.
- 0007388: [General] Ability to swap two pages (cbradney) - closed.
- 0012560: [Import / Export] Picture Browser refuses to read home directory for new document (cbradney) - closed.
- 0011935: [General] Picture Browser: Failure to read home directory after launch (cbradney) - closed.
- 0012910: [General] 1.5.0 crashes with signal 0000011 on ubuntu 14.4 (cbradney) - closed.
- 0012898: [General] Edit > Select All/Advanced Select All/Deselect All may cause crash while in modeEditClip (FirasH) - closed.
- 0008959: [Scripter] PDFfile->save() doesn't use the checkbox value of Use Document Bleeds (jghali) - closed.
- 0009766: [Usability] Arrange Page - Drag and Drop Master Pages doesn't seem to apply Text Area Guide (cbradney) - closed.
- 0011336: [Scripter] Startup script crashes Scribus with EXCEPTION_ACCESS_VIOLATION - closed.
- 0012732: [Graphics / Image Frames] Extra > manage image : cannot see long filenames (cbradney) - closed.
- 0012759: [Import / Export] Scribus doesnt build with libvisio/librevenge (fschmid) - closed.
- 0012774: [User Interface] [patch] Write messages to cerr instead of QMessageBox when Scribus is run without a GUI (jghali) - closed.
- 0012894: [Import / Export] Incorrect .wmf import (fschmid) - closed.
- 0012897: [General] Fix wrongly re-enabled edit menu entries. (jghali) - closed.
- 0010881: [OS-MacOSX] Scribus windows disappear when selecting another application. (cbradney) - closed.
- 0012896: [General] Fix non updating unit in "Gradient Vector" dialog (FirasH) - closed.
- 0012868: [Import / Export] PDF open : white zone is imported with black background (fschmid) - closed.
- 0012884: [Import / Export] Crash while importing SLA document (jghali) - closed.
- 0012878: [Import / Export] Only bottom layer of Gimp image is imported (fschmid) - closed.
- 0012880: [Translation] Fix/Update some non translatable UI strings (cbradney) - closed.
- 0012864: [Undo/Redo] Undo/Redo rounds Text Distances values (jghali) - closed.
- 0012850: [Story Editor / Text Frames] Label of "Anchor Marks" is not updated after editing it (jghali) - closed.
- 0011628: [General] Layout issues (avox) - closed.
- 0012856: [Translation] Fix non translated UI string (jghali) - closed.
- 0012855: [Translation] Hungarian translation update for trunk (jghali) - closed.
- 0012818: [User Interface] Placing a guide while creating an object (e.g. Textbox, Retangle, Image, ...) hides the guide temporarily. (cbradney) - closed.
- 0012803: [Import / Export] Pct (Mac Pict) importer plugin (jghali) - closed.
- 0012817: [Internal] missing breaks and copy/paste issues in pageitem.cpp and pageitem_table.cpp (jghali) - closed.
- 0012836: [Translation] 1.5.0.svn Italian translation update (jghali) - closed.
- 0012668: [Shape Drawing] "Edit > Deselect All" may lead to crash Editing Shapes (cbradney) - closed.
- 0012620: [General] [PATCH] Typo in source code (alignement > alignment) (jghali) - closed.
- 0012622: [User Interface] [PATCH] Fix inconsistent Character Palette tooltips (jghali) - closed.
- 0011833: [General] [PATCH] Opening a new document, Foolscap, Portrait produces Landscape and vice versa (cbradney) - closed.
- 0012791: [Undo/Redo] [PATCH] Undo/Redo does not update layers level in Windows > Outline (cbradney) - closed.
- 0011938: [Story Editor / Text Frames] [PATCH tested ok] 'Paste' not available in table cell (FirasH) - closed.
- 0012830: [User Interface] [PATCH] Fix wrongly aligned radio buttons (smpstylewidget.ui) (jghali) - closed.
- 0012829: [General] Fix typo in source code (togleEditModeActions > toggleEditModeActions) (jghali) - closed.
- 0012824: [Story Editor / Text Frames] [tested patch] Basic edit operation arent available anymore (FirasH) - closed.
- 0011997: [Internal] Editing and then deleting an item from "Inline Frames" crashes Scribus (fschmid) - closed.
- 0012802: [General] Master pages are wrongly managed between UI languages (jghali) - closed.
- 0012684: [User Interface] <TAB> key doesnt record dropshadow inputs in PP (jghali) - closed.
- 0012796: [General] [TESTED-PATCH] modeEditClip is not correctly managed when changing mode (FirasH) - closed.
- 0012795: [General] [TESTED-PATCH] Scribus menu entries might cause crash while editing Gradients (FirasH) - closed.
- 0012793: [General] [TESTED-PATCH] Scribus ui/menu entries might cause crash while drawing a Bezier Curve (FirasH) - closed.
- 0012760: [General] Node edit mode does not manage correctly enabled/disabled menu entries (FirasH) - closed.
- 0012744: [Undo/Redo] Undo/Redo re-enables "Item > Convert to" entries (cbradney) - closed.
- 0012786: [User Interface] [patch] Do not show the startup dialog when GUI is not requested (cbradney) - closed.
- 0012785: [Internal] [patch] Remove unused code dealing with swapDialogButtonOrder (cbradney) - closed.
- 0012784: [General] Closing document while in "Preview Mode" keeps disabled menu entries (cbradney) - closed.
- 0011400: [Shape Drawing] [TESTED-PATCH] "Open a Polygon or Cuts a Bezier Curve" remains selected even if not active (cbradney) - closed.
- 0012758: [Scripter] [patch] Add applyMasterPage command to scripter in Scribus 1.5 (cbradney) - closed.
- 0012692: [General] [PATCH] Palettes are enabled while in Polygon/Arc/Spiral mode (cbradney) - closed.
- 0012672: [General] Layers deleting + Table editing might lead to crash (FirasH) - closed.
- 0012741: [General] [TESTED-PATCH] Current page/layer cause crash while in Polygon/Arc/Spiral mode (cbradney) - closed.
- 0012778: [General] [PATCH] fix a series of warnings (jghali) - closed.
- 0012780: [Graphics / Image Frames] [patch] fix compile warning in matrix.cpp (cbradney) - closed.
- 0012426: [Undo/Redo] Undo/Redo is not able to restore Master Pages crashing Scribus when closing document (jghali) - closed.
- 0012777: [Translation] Fix some non-translatable UI strings (jghali) - closed.
- 0012747: [Scripter] [patch] Fix opening same document multiple times in Scribus 1.5 (cbradney) - closed.
- 0012750: [Tables] Send to > Patterns/Inline Items crashes Scribus in Table editing mode (cbradney) - closed.
- 0012768: [PDF] Allow custom order of pages when exporting PDF from scripter (jghali) - closed.
- 0012769: [Color Management] Monitor profile still saved in documents (jghali) - closed.
- 0012772: [Internal] [patch] fix five references to uninitialized variables (jghali) - closed.
- 0010405: [Build System] Compilation failed on importpdf.cpp.o (fschmid) - closed.
- 0008970: [General] Doing "Redo" on "Copy Page" Adds Extra Pages/Objects (Chelen) - closed.
- 0009802: [Undo/Redo] Undo for text frames (Chelen) - closed.
- 0009893: [Undo/Redo] erorr when undoing polygon combining (Chelen) - closed.
- 0010216: [General] Insert inline Frame Undo + Redone gives different anchoring relative position (Chelen) - closed.
- 0010310: [Undo/Redo] No Undo on Style change (Chelen) - closed.
- 0010685: [Undo/Redo] Can't undo or CRTL+Z send to Level (Chelen) - closed.
- 0012744: [Undo/Redo] Undo/Redo re-enables "Item > Convert to" entries (cbradney) - closed.
- 0009001: [Scrapbook] "Paste to Page" scrapbook function pasted the item off the page (fschmid) - closed.
- 0010290: [User Interface] [TWAEK PATCH] adding icon for linking/unlinking tool (fschmid) - closed.
- 0010295: [Usability] [PATCH] further enhacement of frame linking tool (cbradney) - closed.
- 0010338: [Styles] [new feature] patch for applying char styles to Drop Cap and on-demand control in PP (fschmid) - closed.
- 0012688: [General] Symbol dependency calculation problem? (jghali) - closed.
- 0011636: [General] Impossible to open files made with version prior to Rev 18297 (fschmid) - closed.
- 0012595: [Shape Drawing] [PATCH] Nodes tools might crash Scribus moving item between Layers (cbradney) - closed.
- 0012756: [Shape Drawing] Undo does not close "Nodes" dialog (jghali) - closed.
- 0009753: [General] Segmentation fault (cbradney) - closed.
- 0009721: [General] Scribus crashes due to Signal 0000006 when master page is applied (fschmid) - closed.
- 0009722: [General] Scribus crashes due to Signal 0000011 when master page object is selected (fschmid) - closed.
- 0012109: [PDF] The fill of a curve with only two nodes is not exported in the PDF (fschmid) - closed.
- 0012574: [Translation] [Typo] Mark`s and Note`s in Edit > Note Styles... (jghali) - closed.
- 0012585: [User Interface] [TESTED-PATCH] Statustip missing for Preview Quality & Visual Appearance (cbradney) - closed.
- 0012086: [User Interface] Apply button problem (cbradney) - closed.
- 0012751: [Shape Drawing] [TESTED-PATCH] Page > Import/Convert to Master Page might lead to crash if in node edit mode (cbradney) - closed.
- 0012743: [Shape Drawing] [TESTED-PATCH] Item > Send to Layer might lead to crash if in node edit mode (jghali) - closed.
- 0012373: [Canvas] "Snap to Items" guides are shown on the wrong page (cbradney) - closed.
- 0008942: [Canvas] Guides appear on the wrong page or invisible while dragging (cbradney) - closed.
- 0012693: [General] Some specific menu entries cause crash while in Polygon/Arc/Spiral mode (cbradney) - closed.
- 0012678: [General] [PATCH] Convert to > Symbol crashes Scribus if "Nodes" window is opened (cbradney) - closed.
- 0012730: [Styles] Character Style > Based On: "empty" entry is duplicated (jghali) - closed.
- 0012733: [Undo/Redo] Undo/Redo crashes Scribus editing Text using Ctrl+A in determined condition (jghali) - closed.
- 0012728: [General] "Orientation" is not correctly managed when changing "Default Unit" in new doc dialog (jghali) - closed.
- 0012662: [User Interface] DELETE key in "Colours & Fills" edit window (jghali) - closed.
- 0012428: [User Interface] DELETE key on selected pattern should delete it (cbradney) - closed.
- 0012652: [Graphics / Image Frames] Changing the opacity of layers in multi-layered PSD files essentially freezes Scribus (jghali) - closed.
- 0012691: [Build System] [PATCH] Allow building Scribus against Qt5.4 (alpha) (cbradney) - closed.
- 0012280: [Typography] Malfunctioning gradient treatment. (fschmid) - closed.
- 0012717: [Translation] Updated Galician translation (jghali) - closed.
- 0012698: [Graphics / Image Frames] Straight Lines are invisible (jghali) - closed.
- 0011539: [General] Groups are broken in multiple ways - closed.
- 0012703: [Canvas] Wrong behaviour of the colour blindness preview (jghali) - closed.
- 0012706: [User Interface] Tables options are available with no document open (jghali) - closed.
- 0012666: [General] [TESTED-PATCH] "Edit > Cut/Delete/Deselect All" crashes Scribus if Polygon/Arc/Spiral is in Edit mode (cbradney) - closed.
- 0012680: [General] [PATCH] "Show Baseline Grid" is disabled after enabling/disabling Preview Mode (jghali) - closed.
- 0012677: [User Interface] [PATCH] Some non consistent tabstops (2) (jghali) - closed.
- 0012676: [General] [PATCH] Fix build for 1.5.0.svn (19498) (cbradney) - closed.
- 0012669: [General] Tabstop order is not consistent in Preferences (jghali) - closed.
- 0012649: [Import / Export] Importing EPS problem (attachment included) [was 0011746] (fschmid) - closed.
- 0005705: [Translation] Make names of barcode types translateable (subik) - closed.
- 0012469: [General] Item Size is not updated in the Statusbar "... Selected, Size =" after resizing (cbradney) - closed.
- 0011785: [Graphics / Image Frames] Support for ORA format (fschmid) - closed.
- 0009674: [Plug-ins] Barcode should support QRCodes (subik) - closed.
- 0012646: [Story Editor / Text Frames] "Update All Marks" crashes Scribus if no document is opened (jghali) - closed.
- 0012647: [General] [PATCH] Fix inconsistent "Low Resolution" enabled with non-Image items (jghali) - closed.
- 0012613: [Shape Drawing] "Close this Bezier Curve" might create non editable line (jghali) - closed.
- 0012140: [Shape Drawing] Convert to > Polygon crashes Scribus in determined condition (jghali) - closed.
- 0012630: [General] [PATCH] Pressing "Esc" while item specific window is opened crashes Scribus (jghali) - closed.
- 0012604: [User Interface] [PATCH] "Convert To" should be "Convert to" under Item menu (jghali) - closed.
- 0012615: [Translation] [PATCH] Fix some untranslatable UI strings (3) (jghali) - closed.
- 0012616: [User Interface] [PATCH] Fix some wrong tooltips in Preferences > External Tools (jghali) - closed.
- 0012637: [User Interface] [PATCH] Fix inconsistent Preview Settings order in Scribus menus (jghali) - closed.
- 0011568: [User Interface] DELETE key in "Outline" palette should delete selected element (cbradney) - closed.
- 0010560: [Scripter] two new Scripter commands: copyObject() and pasteObject() (plinnell) - closed.
- 0012558: [Graphics / Image Frames] [PATCH] limit the "size" of dropped images (cbradney) - closed.
- 0012606: [Shape Drawing] Enabling "Absolute Coordinates" crashes Scribus in determined condition (jghali) - closed.
- 0012601: [Undo/Redo] Convert to > Symbol disables Undo/Redo in determined condition (jghali) - closed.
- 0012599: [Translation] Hungarian translation update for trunk (jghali) - closed.
- 0012564: [Canvas] [PATCH] cannot drag and drop images to the canvas - closed.
- 0010889: [Translation] String "Group selected" untranslateable (cbradney) - closed.
- 0012583: [Scripter] [PATCH] scripter's insertChar should respect the surrounding formatting (ale) - closed.
- 0012577: [Canvas] don't show a pop up on frame creation without drag (cbradney) - closed.
- 0012591: [Translation] [PATCH] Fix some untranslatable UI strings (2) (jghali) - closed.
- 0012590: [Undo/Redo] Undo/Redo may create ghost entries in Outline palette deleting Layers (jghali) - closed.
- 0012072: [User Interface] 'Macintosh' UI theme master pages window cosmetic issues (cbradney) - closed.
- 0010263: [User Interface] [patch] Better Masterpage Import - closed.
- 0012586: [Translation] [PATCH] Fix some untranslatable UI strings (jghali) - closed.
- 0012569: [General] Rename [Editing Inline Frame] to [Editing Inline Item] (cbradney) - closed.
- 0012266: [User Interface] Inline Frames > Inline Items (cbradney) - closed.
- 0011505: [Import / Export] Virtual comma added to beginning of each line upon import of .csv file (cbradney) - closed.
- 0012542: [Import / Export] Picture Browser: Dragn'n'Drop doesn't work reliably (fschmid) - closed.
- 0012556: [General] Units not updated in PDF Export > Pre-Press (jghali) - closed.
- 0011670: [Plug-ins] OSG crashes Scribus at startup - closed.
- 0009303: [User Interface] remove warning when importing SVG files (fschmid) - closed.
- 0010709: [General] Scribus crashes when copying text from Word (cbradney) - closed.
- 0011109: [Build System] remove the private cairo from the repositories (cbradney) - closed.
- 0012462: [Printing] Encoding error in PDF with Symbol font (jghali) - closed.
- 0012488: [General] Truncate/Zoom in/Zoom out shortcuts not working (cbradney) - closed.
- 0012547: [Shape Drawing] Duplicate/Save wrong when transparency is used (jghali) - closed.
- 0012540: [Import / Export] Different import results for Visio files (fschmid) - closed.
- 0012537: [General] Crash clicking on "Page 1" in Windows > Outline (jghali) - closed.
- 0012536: [General] It is possible to delete Normal master page (part 2) (jghali) - closed.
- 0012535: [General] Wrong unit in Document Setup/Prefences > Printer (jghali) - closed.
- 0009944: [Styles] renaming an existing style scrambles the styles hierarchy (jghali) - closed.
- 0012533: [Canvas] "Show Layers Indicators" handles a Barcode as more items (cbradney) - closed.
- 0012529: [Undo/Redo] Changing Document Layout/Master Pages might lead to crash (steps included) (jghali) - closed.