-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
6996 lines (6418 loc) · 530 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.0svn (Released 2015-05-01)
========================================
- 0012513: [Usability] Signitficant data-entry speed issue when the page contains a shaded object (fschmid) - resolved.
- 0010627: [Graphics / Image Frames] Unable to open some PS images into Image Frame (fschmid) - resolved.
- 0011857: [User Interface] Inconsistent file listing in file selectors (cbradney) - resolved.
- 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) - resolved.
- 0013038: [Plug-ins] Shortwords Plugin doesn't work in 1.5svn (cbradney) - resolved.
- 0011857: [User Interface] Inconsistent file listing in file selectors (cbradney) - resolved.
- 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) - resolved.
- 0012973: [Fonts] TTF embedding doesnt work (avox) - resolved.
- 0013030: [Import / Export] -Save as image- in master page mode = Signal 6 (cbradney) - resolved.
- 0012966: [Translation] German: mismatch between "Eintrag auswählen" and "Object" menu (christoph_s) - resolved.
- 0013028: [Translation] Updated Russian translation for 1.5.0 (cbradney) - resolved.
- 0012487: [Fonts] "Used in Document" flag is not set (jghali) - resolved.
- 0013022: [Fonts] Useless "Used" column in font config (jghali) - resolved.
- 0012977: [General] When opening other document,why is previous document view set back to 100%? (cbradney) - resolved.
- 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) - resolved.
- 0010975: [User Interface] Attributes not retained correctly through cut and paste operations (cbradney) - resolved.
- 0008823: [General] New non modal resource manager (cbradney) - resolved.
- 0009700: [Import / Export] Import/Get Vectory File > .eps results in huge _additional_ frame with object in upper left (cbradney) - resolved.
- 0012906: [Usability] Document "Zoom - Stepping" value not less than 100% (cbradney) - resolved.
- 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.
- 0012517: [Usability] [PATCH] Port BAlpha swap-pages.patch (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.
- 0012572: [Scripter] [patch] Add a --python-script command line option to run a script and exit (cbradney) - 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.
- 0012782: [General] Upgrade libwpg 3rd party code (fschmid) - closed.
- 0012783: [General] Upgrade libpgf 3rd party code (fschmid) - 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.
- 0012674: [Shape Drawing] [TESTED-PATCH] Nodes tool might lead to strange results if Locking is applied (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.
- 0010122: [Translation] In french, "HSV" should be translatted "TSL" (jghali) - 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.
- 0012530: [Undo/Redo] It is possible to delete "Normal" Master Page (steps included) (jghali) - closed.
- 0012528: [General] Top/Bottom/Left/Right unit wrong in Preferences/Document Setup (cbradney) - closed.
- 0012526: [General] Baseline Grid Spacing should not be settable to 0 pt (Scribus freeze) (cbradney) - closed.
- 0012485: [Import / Export] PDF export totally broken when in masterpage edit mode (cbradney) - closed.
- 0012509: [Usability] [Drop Shadow] Turned on/off disrupts the operation of the Scribus (fschmid) - closed.
- 0012336: [Canvas] Enabling/Disabling Drop Shadow does not update canvas view until the item is deselected (fschmid) - closed.
- 0012139: [Usability] Double Normal master page (Testing: Hungarian environment) (jghali) - closed.
- 0012511: [General] Annotation/Field Properties should not be clickable if no document is opened (jghali) - closed.
- 0012467: [Scripter] [PATCH] get the new scripter to compile again (cbradney) - closed.
- 0012254: [User Interface] Page display zone too small in statusbar (cbradney) - closed.
- 0012472: [General] Changing from Single Page to Double Page layout may lead to crash (jghali) - closed.
- 0009409: [Import / Export] Imprt of pdf and ps blank. - closed.
- 0012479: [Usability] Closing Scribus with multiple master pages open simultaneously (Signal 11) (jghali) - closed.
- 0003218: [Import / Export] OO Draw v2 document support (Metabug) - closed.
- 0003228: [Import / Export] Custom shapes support (OO Draw v2 import) - closed.
- 0012229: [Undo/Redo] Undo does not restore shape position if Multiple Duplication is used (jghali) - closed.
- 0012486: [Undo/Redo] Typo in Action History: Blue Radius > Blur Radius (jghali) - closed.
- 0007734: [Shape Drawing] Nodes inserted into a path appear far away from where clicked - closed.
- 0012450: [Undo/Redo] Undo/Redo records Image Offset always with pt unit (jghali) - closed.
- 0012456: [Undo/Redo] Undo/Redo records Resize always with pt unit (jghali) - closed.
- 0012457: [Undo/Redo] Undo/Redo records Move always with pt unit (jghali) - closed.
- 0012461: [General] "Move/Resize Value Indicator" may show wrong values if Ctrl is pressed (cbradney) - closed.
- 0011967: [Import / Export] Misplaced text in VDX file (fschmid) - closed.
- 0010832: [General] Group of vector elements is distorted after Vertical or Orizontal mirror - closed.
- 0011307: [User Interface] Non-switching translations in Scribus 1.5svn (cbradney) - closed.
- 0011632: [Internal] Function to generate Chinese page numbers (cbradney) - closed.
- 0011860: [Usability] Move the "Barcode" entry upwards in the "Insert" menu and rename it. (fschmid) - closed.
- 0011922: [Import / Export] Misplaced text in imported XAR files. (fschmid) - closed.
- 0011956: [User Interface] Add a "Close" icon to document tabs (fschmid) - closed.
- 0000102: [Story Editor / Text Frames] Bullet list support - closed.
- 0011221: [Scripter] Add a method to get list of all pages in document. (jainbasil) - closed.
- 0009653: [Shape Drawing] Add Snap to Point Feature - closed.
- 0012421: [Undo/Redo] Undo/Redo asks confirmation to user when deleting content of an Image Frame (cbradney) - closed.
- 0007758: [Story Editor / Text Frames] overflow icon with functionality - closed.
- 0011773: [Fonts] aligning font centered or right does not work (jghali) - closed.
- 0000132: [General] Widow/orphan control (jghali) - closed.
- 0012089: [User Interface] Group resize and crash - closed.
- 0012444: [General] "Search/Replace..." should not be clickable if no Text Frame is selected (jghali) - closed.
- 0012443: [General] "Multiple Duplicate" should not be clickable if no item is selected (jghali) - closed.
- 0012441: [General] Page > Delete... should not be clickable if the document has only 1 page (jghali) - closed.
- 0012389: [General] Snap Distance/Grab Radius do not store values inserted from keyboard (jghali) - closed.
- 0010783: [Usability] [PATCH] Reverse numeration of pages (cbradney) - closed.
- 0010882: [User Interface] Mouse pointer twitches to different position when moved over the end of a line. (Kunda) - closed.
- 0012362: [General] Preview is not available for masterpages (cbradney) - closed.
- 0012400: [Import / Export] Rename exported file in "Export as image" menu (cbradney) - closed.
- 0007661: [Shape Drawing] Bezier bounding box miscalculation (fschmid) - closed.
- 0001069: [General] Auto-adjust size of text box to the text (jghali) - closed.
- 0012369: [OS-MacOSX] Running Scribus (Revision: 19211) from CLI returns some warnings (cbradney) - closed.
- 0012408: [Undo/Redo] Undo triggers a sudden magnification of an image with no possibility to undo (jghali) - closed.
- 0012413: [Canvas] "Edit Welded Item" crashes Scribus (jghali) - closed.
- 0012418: [Build System] homebrew formula crach when try to compile 1,5,0svn on mac os x 10.9.2 (cbradney) - closed.
- 0012401: [General] Continue pressing on "Refresh Downloadable List" crashes Scribus (cbradney) - closed.
- 0012361: [User Interface] Item > Image > Preview Settings can not be opened (cbradney) - closed.
- 0012327: [Import / Export] Update the relevant plug-in interfaces and the plug-ins to use librevenge (fschmid) - closed.
- 0012407: [General] "Translate" Transformation crashes Scribus (jghali) - closed.
- 0012404: [General] Units are not consistent in Preferences/Document Setup (cbradney) - closed.
- 0012364: [Tables] Inserting a Table outside of the document area crashes Scribus (jghali) - closed.
- 0012391: [Undo/Redo] Undo/Redo crashes Scribus deleting items of a Master Page (jghali) - closed.
- 0003697: [User Interface] PDF-Export / General / GroupBox "Image Compression method" (cbradney) - closed.
- 0004012: [Usability] Keyboard shortcuts (cbradney) - closed.
- 0005638: [User Interface] about screen - names of languages in alphabetic order (cbradney) - closed.
- 0008441: [User Interface] A better use of status bar (ale) - closed.
- 0010117: [Translation] Z index is translated in french as "Disposition" in right click menu, but translated as "Niveau" in Properties (jghali) - closed.
- 0010217: [General] only require ghostscript when running something needing it (ale) - closed.
- 0010729: [User Interface] Goto Next Page (cbradney) - closed.
- 0010823: [General] Automaticaly update about screen (cbradney) - closed.
- 0011847: [Usability] Continuing to improve text frame linking tool (ale) - closed.
- 0012310: [OS-MacOSX] Feature Request: Ability for OSX Finder to interact with Qt 'Open File' Dialog (cbradney) - closed.
- 0012325: [Scripter] Scripts not launched (cbradney) - closed.
- 0012332: [Story Editor / Text Frames] [PATCH] truncate overflow and show number of overflowing white spaces (cbradney) - closed.
- 0012344: [PDF] setting for columns and text flow around frame ignored when generating a pdf (jghali) - closed.
- 0012358: [Undo/Redo] Undo/Redo crashes Scribus restoring a Group + Item (jghali) - closed.
- 0012380: [Undo/Redo] Undo/Redo crashes Scribus editing nodes when using more layers (jghali) - closed.
- 0012365: [Undo/Redo] Undo/Redo crashes Scribus editing Polyline (jghali) - closed.
- 0012363: [Undo/Redo] Undo/Redo crashes Scribus undoing a Group if Windows > Outline is opened (jghali) - closed.
- 0012366: [General] "Embed Image" crashes Scribus if no document is opened (cbradney) - closed.
- 0012367: [General] "Sample Text" crashes Scribus if no document is opened (cbradney) - closed.
- 0012359: [Scrapbook] Renaming items in Scrapbook may crash Scribus (jghali) - closed.
- 0001779: [User Interface] decrease bloating in context menus for frames (cbradney) - closed.
- 0012193: [User Interface] Menu entries order in Paragraph Style interface (cbradney) - closed.
- 0012113: [Canvas] "Rotate Item" tool can be used with Tables only if another item was selected before (cbradney) - closed.
- 0012185: [User Interface] "Check for Updates" output bad formatting (cbradney) - closed.
- 0012302: [Shape Drawing] Copy/Paste places wrongly Arcs (fschmid) - closed.
- 0012313: [Usability] Incorrect loading of groups located on masterpages (jghali) - closed.
- 0012315: [Scripter] getCharStyles missing (cbradney) - closed.
- 0012318: [Shape Drawing] Spiral resize preview on Canvas does not correspond to the actual Spiral (fschmid) - closed.
- 0012319: [Shape Drawing] Wrong resizing/preview of more items selected (fschmid) - closed.
- 0012314: [Undo/Redo] Undo/Redo does not record Drop Shadow actions (cbradney) - closed.
- 0012234: [Undo/Redo] Undo/Redo is not able to manage Line Width changes (cbradney) - closed.
- 0012285: [Undo/Redo] Undo/Redo not available for "Vertical Alignment" (cbradney) - closed.
- 0012317: [Story Editor / Text Frames] "Insert false text" (lorem ipsum) deletes existing text (cbradney) - closed.
- 0012311: [General] "Get Vector File..." crashes Scribus if no document is opened (cbradney) - closed.
- 0012033: [User Interface] Insert menu item naming repetition/inconsistency (cbradney) - closed.
- 0012264: [User Interface] Switching language (Hungarian > English) ++ click Character Styles == Crash (jghali) - closed.
- 0012279: [Usability] Guide value reset when clicking the value box. (jghali) - closed.
- 0012282: [General] Same .sla file cannot be loaded with different GUI languages (jghali) - closed.
- 0012291: [Translation] Translation updates for source Editor (jghali) - closed.
- 0009687: [General] exporting to PNG with transparent background (fschmid) - closed.
- 0012257: [Import / Export] Can not load EPS file (fschmid) - closed.
- 0012298: [General] General spacing/tab fixes to Scribus source code (jghali) - closed.
- 0012044: [Story Editor / Text Frames] 2 frames are linked to same frame (jghali) - closed.
- 0011931: [Qt5 Port] Scribus crashes with signal 0000011 (fschmid) - closed.
- 0012021: [Build System] Refuses to build on 32bit Fedora 20 - moc_AdapterWidget.cpp.o undefined reference (jghali) - closed.
- 0012093: [User Interface] Crash on switching language (cbradney) - closed.
- 0012106: [Canvas] Preview on Canvas of rotated and grouped elements does not correspond to the elements (fschmid) - closed.
- 0012133: [User Interface] "Return to pages edition" doesn't work (jghali) - closed.
- 0012200: [User Interface] Image preview quality cause crash if no document is opened (cbradney) - closed.
- 0012215: [General] crash when clicking statusbar layer dropdown (cbradney) - closed.
- 0011715: [Color Management] PDF thumbnails include "out of gamut" color effect (fschmid) - closed.
- 0012220: [Story Editor / Text Frames] Pressing "Esc" while editing a Text Frame from Canvas freezes keyboard input (jghali) - closed.
- 0012226: [Usability] Outline window : selecting a layer should realy select it and enable its editing (fschmid) - closed.
- 0012227: [Shape Drawing] Line arrow (end point) scales stops at 300% but could usefully be bigger (fschmid) - closed.
- 0012080: [User Interface] Properties > Table - Scroll bar is too expanded (jghali) - closed.
- 0012240: [User Interface] "Insert Barcode" is not selectable if another tool is selected (cbradney) - closed.
- 0012230: [General] Convert to > Symbol crashes Scribus if no document is opened (fschmid) - closed.
- 0012239: [Scrapbook] Double clicking on Scrapbook items crashes Scribus if no document is opened (fschmid) - closed.
- 0011919: [User Interface] Unclear Context Menu entry for 3D annotations (fschmid) - closed.
- 0012179: [Shape Drawing] swing shape buttons (fschmid) - closed.
- 0012209: [Build System] please add an "export" directory in the plugins (cbradney) - closed.
- 0000321: [Story Editor / Text Frames] vertical aligning (fschmid) - closed.
- 0010945: [Color Management] Statusbar: remove the Color Management button from the statusbar (cbradney) - closed.
- 0005207: [User Interface] Two status bars, zoom commands - UI cleanup (cbradney) - closed.
- 0007368: [User Interface] Redesign bottom part of workspace (cbradney) - closed.
- 0009042: [User Interface] Unused space in status bar area (cbradney) - closed.
- 0012114: [General] Double-clicking on Spiral entries in "Outline" window crashes Scribus in determined condition (fschmid) - closed.
- 0011874: [Tables] First Line Offset in Tables is not saved and radio buttons are not selectable (jghali) - closed.
- 0012167: [Canvas] Incorrectly set the vertical and horizontal distance Between the pages. (jghali) - closed.
- 0012175: [Tables] Pressing Ctrl+A inside of a cell crashes Scribus (jghali) - closed.
- 0012188: [Typography] Rotated text cannot be selected (I use a mouse). (jghali) - closed.
- 0012180: [Translation] Hungarian translation update for 1.5 trunk (jghali) - closed.
- 0012184: [Import / Export] PDF images imported with low resolution (fschmid) - closed.
- 0012178: [Undo/Redo] Undo/Redo is not able to restore Spiral/Table entries in "Outline" window (jghali) - closed.
- 0012097: [Import / Export] Clipping paths in EPS files don't work (fschmid) - closed.
- 0011258: [User Interface] Style dialog too high and dont enable more widgets in (cbradney) - closed.
- 0011008: [Styles] edit style window is too high (cbradney) - closed.
- 0012163: [User Interface] Misleading Context Menu for 3D annotations (fschmid) - closed.
- 0012171: [Canvas] Temporarily enabled preview mode cannot be revoked (fschmid) - closed.
- 0012146: [Import / Export] Clipping paths in Scribus-created PDFs are being ignored during PDF import (fschmid) - closed.
- 0012144: [User Interface] Wrong order of menu entries for marks (cbradney) - closed.
- 0011051: [General] replace own zip and unzip classes by quazip (fschmid) - closed.
- 0012141: [Import / Export] Scribus can't open SLA.GZ files anymore (fschmid) - closed.
- 0012129: [Import / Export] More ODG import and also PDF export oddities (fschmid) - closed.
- 0012137: [Import / Export] Opening Master Page dialog changes page orientation of imported Publisher file (fschmid) - closed.
- 0012135: [Import / Export] Scribus line presets override those in imported ODG files (fschmid) - closed.
- 0011905: [Canvas] Incorrect snapping to guides when resizing (fschmid) - closed.
- 0012119: [Undo/Redo] "Connect Paths" creates useless entries in "Action History" (jghali) - closed.
- 0012112: [Undo/Redo] Insert mark + Undo == Crash (jghali) - closed.
- 0012110: [General] Inserting Tables/Bezier Curves after changing Line Preferences crashes Scribus (jghali) - closed.
- 0012123: [Import / Export] Wrong scaling of polygon in imported ODG file (fschmid) - closed.
- 0012122: [Import / Export] Crash during VIVA XML import (fschmid) - closed.
- 0012115: [General] Redoing a spiral doesn't update the Document Outline (cbradney) - closed.
- 0012105: [User Interface] Item > Send to > Scrapbook crashes Scribus with no document opened (cbradney) - closed.
- 0003307: [Import / Export] Incorrect OpenDocument Draw import (fschmid) - closed.
- 0012098: [Import / Export] Page/slide backgrounds of ODT files aren't imported (fschmid) - closed.
- 0012090: [User Interface] Properties window + value fields + Enter --> New paragraph in the document edited text box (jghali) - closed.
- 0012100: [Import / Export] Connectors in ODG file can't be imported (fschmid) - closed.
- 0012099: [Import / Export] Non-working text import woth ODP files (fschmid) - closed.
- 0011968: [Import / Export] Crop/ignore empty lines during import of office and some DTP formats (fschmid) - closed.
- 0012053: [Story Editor / Text Frames] <nbspace> tag should accept font-size attribute (jghali) - closed.
- 0011959: [PDF] Preflight issues "Empty Image frame" warning for a text frame (jghali) - closed.
- 0011958: [PDF] "applied master page" warning of pdfchecker doesnt link to page (jghali) - closed.
- 0011882: [General] "Collect for output" restrict permissions of files to "user" for images, fonts and color profiles (cbradney) - closed.
- 0012013: [PDF] Cannot export PDF/X-1a from scripter (jghali) - closed.
- 0011918: [Import / Export] Imported PostScript has too wide borders (fschmid) - closed.
- 0012010: [Canvas] When moving items, the bounding box is drawn to large (fschmid) - closed.
- 0011978: [Styles] "Use Parent Value" entry is repeated many times in Styles Numeration based on other Styles (jghali) - closed.
- 0012076: [Import / Export] Text import issue with ODG files (fschmid) - closed.
- 0012069: [Translation] Italian translation updates (jghali) - closed.
- 0012051: [Import / Export] Wrong fill of frames in SXD/ODG files (fschmid) - closed.
- 0012070: [Import / Export] Wrong interpretation of lines in ODG file (fschmid) - closed.
- 0012052: [Import / Export] Arrowheads in SXD/ODG files are imported as text frames (!) (fschmid) - closed.
- 0012050: [Import / Export] Pixmap images embedded in SXD/ODG aren't imported (fschmid) - closed.
- 0012048: [Import / Export] ODG importer much worse than its SXD equivalent (fschmid) - closed.
- 0012058: [Import / Export] Rotated gradients are incorrectly exported to PDF (jghali) - closed.
- 0012042: [Usability] "Snap to item" option get lost (fschmid) - closed.
- 0012025: [Import / Export] SVG import crashes Scribus (fschmid) - closed.
- 0011936: [Plug-ins] PATCH: update barcode backend to current (official) version (fschmid) - closed.
- 0012035: [Import / Export] "XPS Import" window crashes changing its size and then closing it (fschmid) - closed.
- 0012037: [Translation] Translation updates (jghali) - closed.
- 0010756: [Build System] on debian testing (and ubuntu) fails to cmake if poppler*-dev is present (cbradney) - closed.
- 0012008: [Usability] Add hint on "link" checkbox for bleeds preferences (cbradney) - closed.
- 0012004: [Translation] Minor updates/corrections to Italian translation (jghali) - closed.
- 0012023: [Translation] Hungarian translation update for trunk (jghali) - closed.
- 0012016: [Graphics / Image Frames] "Soft Shadow" is not selectable for Image Frames (fschmid) - closed.
- 0012014: [User Interface] Rename "Soft Shadow" to "Drop Shadow" in the PP (fschmid) - closed.
- 0011996: [User Interface] Save As window issues in Fedora 20 (jghali) - closed.
- 0003712: [Graphics / Image Frames] RFE: Drop Shadows / intégrer l'option "ombres portées" (fschmid) - closed.
- 0011983: [Import / Export] Line spacing issue in VIVA XML file (fschmid) - closed.
- 0012000: [Canvas] Snapping to grid is not consistent (fschmid) - closed.
- 0011884: [PDF] PDF export ignores master page elements (jghali) - closed.
- 0010168: [Usability] Snapping points not consistant (fschmid) - closed.
- 0011937: [Canvas] Snapping to items is not consistent (fschmid) - closed.
- 0011985: [Import / Export] Botched import of graphics in PUB files (fschmid) - closed.
- 0011998: [User Interface] Some Edit entries crashes Scribus if no document is opened (cbradney) - closed.
- 0011999: [Build System] CMake error introduced with r18758 (cbradney) - closed.
- 0011886: [Canvas] Rotating a Text Frame and resizing it keeps the text on the same frame area (fschmid) - closed.
- 0011887: [Canvas] Rotating Text Frames between 90° and 270° makes resizing behave wrong (fschmid) - closed.
- 0011982: [Import / Export] Severe problems with a complex VSD file from Microsoft (fschmid) - closed.
- 0011984: [Documentation] Missing dependencies on Wiki for building on Fedora 20 - closed.
- 0011973: [Story Editor / Text Frames] Indicators for text distance from frame border must not be in 100% black and should be made invisible (fschmid) - closed.
- 0011972: [Import / Export] Frame indicators are missing in imported VIVA XML files (fschmid) - closed.
- 0011964: [Import / Export] Arrow heads in VDX files don't survive import (fschmid) - closed.
- 0011963: [Import / Export] Graphical elements in VDX files are being ignored during import (fschmid) - closed.
- 0011960: [General] Using the new "Close" icons in tabs triggers crash (fschmid) - closed.
- 0011954: [Import / Export] Incorrect line spacing in imported MS Office files (fschmid) - closed.
- 0011946: [Import / Export] Newline control character in VSD file displayed as red square (fschmid) - closed.
- 0011955: [Import / Export] Missing fill of vector objects in imported Visio files (fschmid) - closed.
- 0011947: [Import / Export] TIFF files in PAGES archive cannot be read (fschmid) - closed.
- 0011945: [User Interface] Incorrect entry in filetype selector for PAGES files (fschmid) - closed.
- 0011951: [Canvas] Arbitrary green 'Snap to Items' lines appear when moving a group (fschmid) - closed.
- 0011933: [Canvas] Snap items is triggered by group/ungroup (fschmid) - closed.
- 0011020: [General] Barcode generator creates RGB elements (jghali) - closed.
- 0011940: [Import / Export] Wrong rotation of graphics in XAR file (fschmid) - closed.
- 0011872: [User Interface] Add "Insert Barcode" to the Icon Bar - icon (fschmid) - closed.
- 0011928: [Import / Export] Scribus colour palette cannot be imported anymore (fschmid) - closed.
- 0011911: [User Interface] Wrong caption for XPS import dialog (fschmid) - closed.
- 0011916: [User Interface] The number in the input field for vertical auto guides appears with unit 'pt' (jghali) - closed.
- 0011913: [Import / Export] Activating preview for AI colour palette crashes Scribus (fschmid) - closed.
- 0011912: [Import / Export] File Preview of PUB file crashes Scribus (fschmid) - closed.
- 0011925: [Translation] Source editor Italian translation (jghali) - closed.
- 0011910: [Import / Export] Activating the preview for CGM files crashes Scribus (fschmid) - closed.
- 0011768: [Shape Drawing] Arc selection frame in case of cheese piece (fschmid) - closed.
- 0011878: [Import / Export] Opening of encrypted PDF crashes Scribus (jghali) - closed.
- 0011864: [Import / Export] Import of Scribus-exported PDF looks, err, not really good (fschmid) - closed.
- 0011892: [Import / Export] "Cancel" doesn't work in page selector for XPS files (jghali) - closed.
- 0011879: [User Interface] Toolbar entries order under "Item" (cbradney) - closed.
- 0011865: [Import / Export] PDF with scanned images can't be opened correctly (fschmid) - closed.
- 0011875: [Story Editor / Text Frames] "Fixed Linespacing" requires to press (n° of paragraphs+1) Ctrl+Z to undo the change (jghali) - closed.
- 0011862: [Import / Export] Questionable font substitution during IDML import (jghali) - closed.
- 0011856: [User Interface] Turning on the preview in file dialogs makes directory and file selectors unreadable (fschmid) - closed.
- 0011832: [Plug-ins] Expose more functionality of PS QR code backend (jghali) - closed.
- 0011851: [Import / Export] Text in imported Viva files remains invisible (fschmid) - closed.
- 0011852: [Import / Export] Crash after import of IDML document (jghali) - closed.
- 0011840: [Shape Drawing] Editing Image/Text frame shape crashes Scribus (fschmid) - closed.
- 0011845: [Internal] Page Sizes -> Defaults button keep adding Active Sizes (jghali) - closed.
- 0011850: [Build System] Build error with r18605 (fschmid) - closed.
- 0010116: [Usability] Improve the text frame linking tool (cbradney) - closed.
- 0011821: [General] grouped groups : suppressing does nothing + ungrouping crashes when empty (fschmid) - closed.
- 0011362: [User Interface] A more reasonable order of entries in the "Extras" menu (cbradney) - closed.
- 0008159: [Graphics / Image Frames] Importing cropped PDF do not show the proper size. (fschmid) - closed.
- 0009633: [General] recalculate the group shape after having removed an item (fschmid) - closed.
- 0009939: [User Interface] Hyphenator setting checkboxes in Document Setup not functioning correctly (jghali) - closed.
- 0010318: [User Interface] Points window misses "reset" button for frame shape (fschmid) - closed.
- 0011116: [Graphics / Image Frames] PDF open problems with image management (fschmid) - closed.
- 0011146: [Color Management] Crash (or hang) on changing color settings of older document (fschmid) - closed.
- 0011220: [General] Resize on ungroup (fschmid) - closed.
- 0011242: [User Interface] Yes to all/Yes logic inverted (jghali) - closed.
- 0011278: [Color Management] Scribus crashes when color management is disabled (fschmid) - closed.
- 0011343: [Styles] [FIX] max/min value of Paragraph Effect offset (jghali) - closed.
- 0011411: [Import / Export] Page import positions badly content of imported page (jghali) - closed.
- 0011483: [Color Management] Achromatic images convert non-uniformly with colored images in PDF CMYK export (jghali) - closed.
- 0011493: [Qt5 Port] No Barcodes generated in QT5 Port (fschmid) - closed.
- 0011614: [Graphics / Image Frames] Modifying image display quality setting change image offset (jghali) - closed.
- 0011655: [Graphics / Image Frames] Inside X of adjust-to-frame images is not recorded (jghali) - closed.
- 0011656: [Internal] Crash/Block while changing simultaneously a text and an image frame level (jghali) - closed.
- 0005347: [Story Editor / Text Frames] Backspace doesn't work between linked text frames (avox) - closed.
- 0007906: [General] preflight verifier error counter (cbradney) - closed.
- 0008667: [Graphics / Image Frames] can't import the attached bw tiff on mac (cbradney) - closed.
- 0009391: [Canvas] if you create a guide while a content tool is active, the guides is only shown after deselecting the tool (cbradney) - closed.
- 0009541: [Import / Export] documentchecker is called twice on Export to PDF (cbradney) - closed.
- 0009942: [Story Editor / Text Frames] After pasting text in text frame, cursor appears before pasted text (cbradney) - closed.
- 0010099: [Translation] in preference and documents settings the guides are translated into french as guides instead of repères (jghali) - closed.
- 0010187: [General] The preflight verifier should warn if a left masterpage is applied to a right page (cbradney) - closed.
- 0010702: [User Interface] [Patch] Display info in page window (pygmee) - closed.
- 0010992: [User Interface] display possible keyboard modifiers (cbradney) - closed.
- 0011504: [General] check for empty text frames in 'preflight verifier' (cbradney) - closed.
- 0011727: [General] Text flow around shapes in trunk (avox) - closed.
- 0011737: [Import / Export] PUB import: Manual line breaks not imported correctly (fschmid) - closed.
- 0011742: [Translation] Italian translation updates/corrections (jghali) - closed.
- 0011743: [Translation] English typing error correction + Italian updates (jghali) - closed.
- 0011752: [PDF] PDF Vector import causes sig11 crash (fschmid) - closed.
- 0011745: [Import / Export] PUB import: Ampersand character converted to html entity (fschmid) - closed.
- 0011761: [PDF] Transparency gradient incorrectly exported to PDF (jghali) - closed.
- 0011764: [User Interface] Source file (cmykfw.cpp) typing error (jghali) - closed.
- 0011770: [User Interface] Move image display quality to the right side of status bar (jghali) - closed.
- 0011777: [Usability] master page rename on double click (jghali) - closed.
- 0011778: [User Interface] bad units in apply master page dialog (jghali) - closed.
- 0011779: [User Interface] Any recent files drop menu on Open button (cbradney) - closed.
- 0011780: [Story Editor / Text Frames] [BUG/FIX] superscript is not applied to notesmarks (jghali) - closed.
- 0011781: [Internal] Save/Close/Print/Export buttons cause crash if no document is open (fschmid) - closed.
- 0011782: [User Interface] Toolbar - Wrong arrangement of View droplist (cbradney) - closed.
- 0011783: [User Interface] Help->About Scribus->Licence (cbradney) - closed.
- 0011786: [User Interface] Save, Close, Print, Export to PDF, Cut, Copy, Paste are enabled with no document open (fschmid) - closed.
- 0011787: [Translation] Full review of Italian translation (cbradney) - closed.
- 0011788: [Usability] Page palette bad update (jghali) - closed.
- 0011790: [Translation] Hungarian translation update for trunk (cbradney) - closed.
- 0011794: [Internal] [PATCH] QFSFileEngine::open: No file name specified (cezaryece) - closed.
- 0011795: [Build System] compile error with scripter2 and make (cbradney) - closed.
- 0011801: [Scrapbook] Infinite Scrapbook list (cbradney) - closed.
- 0011803: [Internal] Closing Scribus while editing Inline Items cause crash (jghali) - closed.
- 0011806: [General] crash when ungrouping a welded group (fschmid) - closed.
- 0011813: [Translation] Bad french translation for "item tools" > "line option" pref tab (jghali) - closed.
- 0011815: [Translation] Translation updates (jghali) - closed.
- 0011816: [Internal] Insert > Sample Text cause crash if no document is opened (cbradney) - closed.
- 0011823: [Scripter] the 'Recent' item has disappeared from the Scripter menu (cbradney) - closed.
- 0011825: [Import / Export] Crash when importing PDF page (jghali) - closed.
- 0008213: [User Interface] Display applied master page (pygmee) - closed.
- 0011694: [PDF] PDF checker : Bad "font non embedded" issue (jghali) - closed.
- 0005618: [PDF] TT font "Edwardian Script ITC " is ok onscreen, but glyphs swapped in PDF export (jghali) - closed.
- 0011522: [General] Deleting pages should delete Effekte data structures (fschmid) - closed.
- 0011685: [Import / Export] Insufficient text and vector import of IDML file (fschmid) - closed.
- 0011691: [Color Management] Empty "profile" folder when collecting for output (jghali) - closed.
- 0010766: [PDF] Embedded Font in PDF Export displays incorrect characters (jghali) - closed.
- 0011695: [User Interface] PDF checker icon consistency (cbradney) - closed.
- 0011666: [Usability] Predefined document size (missing?) (cbradney) - closed.
- 0009892: [General] impossible to access to pages after 9 (cbradney) - closed.
- 0011720: [Scripter] Crash on color2csv (jghali) - closed.
- 0011730: [Import / Export] Vector files imported to wrong page (fschmid) - closed.
- 0011687: [PDF] PDF checker : bad empty warning (jghali) - closed.
- 0011659: [Graphics / Image Frames] Sending image frame to album doesnt record image file in album (fschmid) - closed.
- 0011736: [Build System] Remains of older build system prevents building translations (cbradney) - closed.
- 0011710: [Translation] Translation updates (jghali) - closed.
- 0010978: [Usability] [PATCH] Snap to Item functionnality and other features (Chelen) - closed.
- 0011699: [Translation] Translation updates (jghali) - closed.
- 0011662: [PDF] PDF checker : improve access to problematic image (jghali) - closed.
- 0011684: [Translation] English typing error correction + Italian updates (jghali) - closed.
- 0011677: [Translation] Italian translation update (jghali) - closed.
- 0011681: [Translation] Many updates to Italian localization + English correction (jghali) - closed.
- 0011653: [Translation] Updated italian tanslation (jghali) - closed.
- 0011658: [Translation] General updates to templates and translations (jghali) - closed.
- 0011657: [Translation] Updated italian translation (almost complete) (jghali) - closed.
- 0011645: [General] Relative Z-index should keep same when grouping items (jghali) - closed.
- 0011650: [Import / Export] 1.5 doesnt import 1.4 gradient well (fschmid) - closed.
- 0011640: [Import / Export] IDML should access 'Fonts' and 'Links' folder (fschmid) - closed.
- 0011629: [Import / Export] SVG import positionning issue (fschmid) - closed.
- 0011600: [Import / Export] IDML import : tabs not imported in style definitions (fschmid) - closed.
- 0011599: [Import / Export] IDML importer doesn't detect fonts in the source directory of an IDML file (fschmid) - closed.
- 0011358: [Import / Export] [PATCH] import of lists and notes from ODT file (jghali) - closed.
- 0011339: [Scripter] [PATCH] scripter2 should allow to read full path of running script (jghali) - closed.
- 0011345: [Scripter] [PATCH] Scripter: missing getUnit and setUnit functions (cbradney) - closed.
- 0011570: [General] Crash when doing "content-remove" (jghali) - closed.
- 0011596: [Import / Export] IDML import : selecting zone with resize handle is much too big (fschmid) - closed.
- 0011107: [General] Import pages should default to all (cbradney) - closed.
- 0011472: [OS-MacOSX] [PATCH] compile against Qt5 on Mac OS X (cbradney) - closed.
- 0011612: [Story Editor / Text Frames] Crash when exiting story editor (jghali) - closed.
- 0011606: [General] column jump jumps 2 column (jghali) - closed.
- 0011603: [PDF] PDF checker : bad warning (jghali) - closed.
- 0011586: [Internal] refactoring ScribusDoc* data members to m_Doc (jghali) - closed.
- 0011607: [General] Crash when deleting pages (jghali) - closed.
- 0011610: [User Interface] tab order in PP image pane (jghali) - closed.
- 0010744: [User Interface] Hint for font substitution need small amendment (jghali) - closed.
- 0011296: [Import / Export] XTG Import crashes Scribus (fschmid) - closed.
- 0011547: [Tables] Resizing table after undo triggers crash (jghali) - closed.
- 0011250: [Styles] Drop caps aren't correctly applied (jghali) - closed.
- 0011541: [Import / Export] Wrong image scaling in imported IDML file (fschmid) - closed.
- 0011543: [General] Crash when pressing the Delete button in the font substitution dialog (fschmid) - closed.
- 0011535: [Translation] Hungarian translation update for trunk (jghali) - closed.
- 0011533: [Import / Export] PUB import crashes Scribus (fschmid) - closed.
- 0011494: [Translation] Update to Spanish translation (jghali) - closed.
- 0010727: [Translation] Galician translation update (jghali) - closed.
- 0011363: [User Interface] A more reasonable order of entries in the "Windows" menu (cbradney) - closed.
- 0007910: [Fonts] add support for OpenType kerning tables - closed.
- 0011465: [Translation] Update to Spanish translation (jghali) - closed.
- 0011469: [Translation] First German UI translation update for 1.5.0svn (jghali) - closed.
- 0011455: [Import / Export] PDF open problems with image scale (fschmid) - closed.
- 0011454: [Qt5 Port] Fix all the Q_WS/Q_OS globals that are not right anymore (fschmid) - closed.
- 0006685: [User Interface] Resize pointer does not change to "Resize" icon over window borders (fschmid) - closed.
- 0011448: [User Interface] Edit > Content > Copy or Paste or "Absolute paste" never activated (cbradney) - closed.
- 0011430: [Import / Export] Issues with Apple PICT (PCT) files (fschmid) - closed.
- 0011244: [General] clear contents: remove confirmation dialog when clearing contents of multiple frames - closed.
- 0011412: [Color Management] "Colors" menu option name (jghali) - closed.
- 0011375: [General] Crash on 'cut' segfault (cbradney) - closed.
- 0011368: [Build System] Isolate Freetype #include (jghali) - closed.
- 0011290: [Import / Export] "Cancel" in the PDF/PS import dialog doesn't work as expected (fschmid) - closed.
- 0010324: [Usability] [new feature patch] welding page items (fschmid) - closed.
- 0001094: [Import / Export] Importing multipage PDFs must give options for importing a selection of pages (fschmid) - closed.
- 0000866: [General] Implement check box radio behaviour in PDF forms (fschmid) - closed.
- 0011360: [Story Editor / Text Frames] crash when deleting edited inline frame (fschmid) - closed.
- 0011353: [Usability] Symbols handling is completely unintuitive (fschmid) - closed.
- 0011356: [Translation] Hungarian translation update for trunk (jghali) - closed.
- 0011348: [User Interface] Misleading menu entry: Edit > Colours (fschmid) - closed.
- 0011350: [User Interface] Missing option from Items and Context Menu: Send to Inline Frames (fschmid) - closed.
- 0011346: [User Interface] The Item menu is too bloated (fschmid) - closed.
- 0011352: [Usability] Closing the Master Pages dialog automatically opens Arrange Pages dialog (fschmid) - closed.
- 0011335: [Import / Export] Scribus fails to import PS files created by itself (fschmid) - closed.
- 0011349: [General] Crash after double-clicking "empty symbol" (fschmid) - closed.
- 0011188: [PDF] Deactivate Compression level when no compression applied (fschmid) - closed.
- 0010974: [General] [PATCH] page deleting updates the page selector on each itearation (fschmid) - closed.
- 0011293: [Story Editor / Text Frames] [PATCH] Crash on deleting text with footnotes marks in oveloaded text. (jghali) - closed.
- 0005754: [Import / Export] Import of PS with bitmaps creates huge number of previews in My Documents folder (fschmid) - closed.
- 0005048: [Import / Export] Importing PS created with pdf2ps fills user home directory with TIF files (fschmid) - closed.
- 0011152: [Styles] Locked in "masterpage edit" mode (fschmid) - closed.
- 0011331: [Story Editor / Text Frames] crash on deleting inline frame in special edit mode (fschmid) - closed.
- 0011328: [Story Editor / Text Frames] Inline frame should be visible when "display frames" is set (fschmid) - closed.
- 0009547: [Canvas] Double-clicking on an item in the Symbols dialog disables canvas (fschmid) - closed.
- 0011332: [Build System] Cannot find source file: numeration.cpp (cbradney) - closed.
- 0011280: [General] Saved file will not open. (jghali) - closed.
- 0009652: [User Interface] Add Cancel and Reset Buttons to Shape Editing (fschmid) - closed.
- 0009669: [Canvas] snap to guides and rulers should be on by default (jghali) - closed.
- 0008628: [Canvas] Snap to objects, text frames etc. (Chelen) - closed.
- 0009278: [Story Editor / Text Frames] Snap to frame border (Chelen) - closed.
- 0011304: [General] Trying to edit master pages in imported PDF results in empty canvas (fschmid) - closed.
- 0011309: [User Interface] Preview of PS/EPS vector files in file selectors shouldn't display image resolution (fschmid) - closed.
- 0011306: [User Interface] "Extended Image Properties" is available even when irrelevant (fschmid) - closed.
- 0010113: [Graphics / Image Frames] First start localisation (cbradney) - closed.
- 0011300: [Import / Export] PDF import crashes Scribus (fschmid) - closed.
- 0011291: [User Interface] Spelling error in the "Scrapbook" dialog (jghali) - closed.
- 0011292: [Scrapbook] Imported vector files (groups) cannot be sent to Scrapbook (fschmid) - closed.
- 0010994: [General] Implement a common way to quit the "special" edit modes (fschmid) - closed.
- 0011273: [General] FPoint documentation (jghali) - closed.
- 0011254: [Undo/Redo] Vector import doesn't work after frame copy (fschmid) - closed.
- 0002916: [Story Editor / Text Frames] issue with copy/paste of textframes and possibly embedded frames (fschmid) - closed.
- 0010788: [General] rotation consistency in Object > Transform (fschmid) - closed.
- 0011246: [User Interface] Drop down list for layers in the status bar is too small (fschmid) - closed.
- 0011150: [General] PDF Forms: Better default field name for checkboxes etc. (fschmid) - closed.
- 0011151: [Language Tools] [BUG] problems with language settings (jghali) - closed.
- 0011204: [User Interface] [PATCH] Page delete translation error (jghali) - closed.
- 0011140: [User Interface] Converting some MenuButtonPopup to DelayedPopup (fschmid) - closed.
- 0011215: [General] B series paper sizes have dimensions of C series (jghali) - closed.
- 0011153: [User Interface] Supposed to be activated window is not activated (jghali) - closed.
- 0011211: [General] [PATCH] two comments for pdflib (fschmid) - closed.
- 0011213: [PDF] Wrong page numbers in PDF export when copied textframe (fschmid) - closed.
- 0011160: [General] pdf exporting preferences / document setting are not saved (fschmid) - closed.
- 0011225: [Undo/Redo] Formatting and wrong string in undo manager (jghali) - closed.
- 0011243: [General] Crash when clearing content from a text frame if one of them is empty (jghali) - closed.
- 0011223: [General] welded items get scrambled when reopening the file (jghali) - closed.
- 0010730: [Usability] [new feature] footnotes ready for testing (cbradney) - closed.
- 0010850: [Scripter] new scripter: could not set distances (jainbasil) - closed.
- 0011185: [Build System] trunk does not compile (/importpdf.cpp:104:25: error: no matching function for call to ‘SplashOutputDev::startDoc(PDFDoc*&)’) (cbradney) - closed.
- 0010971: [User Interface] Title of palettes is duplicated (jghali) - closed.
- 0011044: [General] remove qDebug() from ScribusMainWindow::inputMethodQuery (jghali) - closed.
- 0010979: [Usability] Crash after pasting welded frame (jghali) - closed.
- 0010933: [Canvas] crash with live guides when columns are defined (Chelen) - closed.
- 0006473: [Undo/Redo] No undo on shape type change (Chelen) - closed.
- 0009774: [Undo/Redo] Undoing a delete object operation doesn't bring the object back (Chelen) - closed.
- 0010826: [Undo/Redo] [BUG] on deleting text undo does not restore styles used in text (Chelen) - closed.
- 0004430: [Undo/Redo] Undo and text to shape (Tsoots) - closed.
- 0010554: [User Interface] undo works with deleted objects not other things.... (Chelen) - closed.
- 0009857: [Story Editor / Text Frames] Using text undo in empty paragraphs triggers unexpected result (Chelen) - closed.
- 0011026: [Fonts] Speed up some font routines (jghali) - closed.
- 0003865: [Story Editor / Text Frames] Lock first line to baseline grid. (jghali) - closed.
- 0006561: [Undo/Redo] When resizing a frame, undo forgets a few steps (Chelen) - closed.
- 0011034: [Tables] Disable the Shape feature for tables (fschmid) - closed.
- 0007943: [Undo/Redo] Undoing "Connect Paths" does not work correctly (Chelen) - closed.
- 0009361: [Undo/Redo] Improper resizing of "outlined" text after undo (Chelen) - closed.
- 0010890: [Graphics / Image Frames] when the link to the image is invalid, content > clear is not in the context menu (Chelen) - closed.
- 0010944: [Graphics / Image Frames] Improve multiple image import (Chelen) - closed.
- 0010916: [General] Footnotes: crash when starting the preview mode while being in text edit mode if in the text frame there is a footnote (Chelen) - closed.
- 0011039: [General] crash when deleting text (jghali) - closed.
- 0010987: [User Interface] Crash on clicking in master page item in Preflight Verifier (jghali) - closed.
- 0010759: [Graphics / Image Frames] Image size properties should be locked initially (Chelen) - closed.
- 0010865: [Usability] Usage of cmd / alt / ctrl / shift keys causes a change in file (Chelen) - closed.
- 0010923: [Story Editor / Text Frames] Editing text directly in frame causes "Command" key to be activated (cbradney) - closed.
- 0011108: [General] Lots of warnings when compiling with Clang (cbradney) - closed.
- 0011101: [Graphics / Image Frames] [PATCH] fix for resizing image frame (jghali) - closed.
- 0011105: [PDF] PDF/X-1a output export preset does not automatically disable color profiles, and thus can output non-compliant PDFs (jghali) - closed.
- 0011011: [Undo/Redo] [PATCH] undo does not restore items welding (Chelen) - closed.
- 0011040: [General] Collect files in sub-directories (pygmee) - closed.
- 0011052: [Styles] Scribus crash if file hyph_ga.dic does not exists in installl directory (fresh trunk install) (jghali) - closed.
- 0011010: [Undo/Redo] [PATCH] BUG: undo does not restore text frame linking (Chelen) - closed.
- 0011113: [User Interface] Idea : Use progress bar to display time passing between 2 autosaves and control autosave mode (fschmid) - closed.
- 0010828: [Tables] Automatically resize the frame when the table size changes (fschmid) - closed.
- 0010751: [Usability] [BUG] reverting to saved version don`t close document window (fschmid) - closed.
- 0010943: [Shape Drawing] Leaving the Bezier tool without drawing anything crashes scribus (Chelen) - closed.
- 0011029: [Import / Export] Add explicit monochrome color space (jghali) - closed.
- 0010701: [Usability] Multiple image import (Chelen) - closed.
- 0009098: [Usability] Nodes palette disappears (jghali) - closed.
- 0011104: [Plug-ins] [PATCH] Support HTML import in Python scripts (jghali) - closed.
- 0011124: [Translation] es included in xml files for Render Frames (cbradney) - closed.
- 0011125: [Translation] es included in xml files for Render Frames. (cbradney) - closed.
- 0011126: [Translation] es included in xml files for Render Frames (cbradney) - closed.
- 0011127: [Translation] es included in xml files for Render Frames (cbradney) - closed.
- 0011123: [Translation] [PATCH] Translation of template.xml to es-ES (cbradney) - closed.
- 0002190: [Graphics / Image Frames] snap to object edges (Chelen) - closed.
- 0011070: [User Interface] Snap to Items indicator misplaced when document has bleed area (jghali) - closed.
- 0011032: [Story Editor / Text Frames] [PATCH] marks/footnotes feature (cbradney) - closed.
- 0011143: [Build System] Build error: »class AnnotWidget« has no element named »getAdditionalAction« (fschmid) - closed.
- 0008795: [PDF] add "first", "previous", "next", "last" page into annotation properties (fschmid) - closed.
- 0011148: [User Interface] Wrong tooltip and typo for dropcaps (jghali) - closed.
- 0011154: [Styles] Character styles cannot be imported anymore (jghali) - closed.
- 0011158: [General] Compile issues with slaoutput.cpp (cbradney) - closed.
- 0011159: [Story Editor / Text Frames] text overflow indicator exported in bitmap (jghali) - closed.
- 0011161: [Build System] CMake Fails After Linking importidml (svn rev. 17865) (cbradney) - closed.
- 0011164: [Translation] Update UI Italian translation for 1.5.0svn (jghali) - closed.
- 0004744: [Story Editor / Text Frames] Baseline spacing inconsistent around floating frames (jghali) - closed.
- 0009621: [Typography] Automatic linespacing does not work. (jghali) - closed.
- 0002003: [User Interface] Tables-issues - closed.
- 0002142: [Story Editor / Text Frames] Action History does not record all changes (Tsoots) - closed.
- 0004820: [Undo/Redo] deletion/creation of masterpage is not being recorded by undo system (Chelen) - closed.
- 0010909: [Color Management] [PATCH] Crash in color palette (Chelen) - closed.
- 0010905: [Undo/Redo] some more undo added and multiple image import (Chelen) - closed.
- 0010814: [Story Editor / Text Frames] Error in label or in function of setting Story Editor Font/Background (jghali) - closed.
- 0008245: [Canvas] middle mouse panning not working in node edit (jghali) - closed.
- 0010750: [User Interface] Spiral icon won't look transparent, Calligraphy icon shows Freehand when drawing (jghali) - closed.
- 0010869: [Translation] Updated Spanish translation (jghali) - closed.
- 0010886: [Story Editor / Text Frames] Provide Shortcut Key in hintbubbles (cbradney) - closed.
- 0010968: [Typography] Text copy/paste is slow (patch attached) (jghali) - closed.
- 0010719: [-] Guides Manager doesn't follow coordinate origin change (Chelen) - closed.
- 0010108: [Shape Drawing] Undo Move Image Deletes Shape (Chelen) - closed.
- 0010827: [Undo/Redo] Undo/redo functionnality for gradient (Chelen) - closed.
- 0010864: [Story Editor / Text Frames] [PATCH] linking inside frames chain (cbradney) - closed.
- 0010852: [Story Editor / Text Frames] unlink with cut should keep the overflow in the cut frame (cezaryece) - closed.
- 0010692: [Undo/Redo] Another crash on ungrouping (jghali) - closed.
- 0010861: [Undo/Redo] On Revert_to_Saved undo history is not clear (Chelen) - closed.
- 0005244: [General] distorted item after resize and undo (Chelen) - closed.
- 0010919: [General] Footnotes: if there is only one style, don't show the dialog to choose the style (cezaryece) - closed.
- 0010920: [General] Footnotes: retain the last style used (cezaryece) - closed.
- 0010922: [General] Footnotes: two warnings from make (cezaryece) - closed.
- 0010918: [General] Footnotes: rename the "Notes Sets Manager" in "Notes Styles Editor (cezaryece) - closed.
- 0010917: [General] Footnotes: bug in the notes sets names (cezaryece) - closed.
- 0010903: [Story Editor / Text Frames] resize footnote (cezaryece) - closed.
- 0010901: [Story Editor / Text Frames] I can't delete a variable text (cezaryece) - closed.
- 0010900: [Story Editor / Text Frames] Crash when removing footnote inline (cezaryece) - closed.
- 0010899: [Story Editor / Text Frames] crash when editing footnote after undo (cezaryece) - closed.
- 0010892: [General] Footnotes: after creating a new set, crash when inserting a footnote (cezaryece) - closed.
- 0010891: [General] Footnotes: restore not complete after full undo (cezaryece) - closed.
- 0010895: [General] Footnotes: the footnote mark should be a "control character" (cezaryece) - closed.
- 0008651: [Scripter] new scripter engine (jainbasil) - closed.
- 0010875: [General] Cutting a text frame crashes Scribus (Chelen) - closed.
- 0010244: [Undo/Redo] not all actions are recorded by Undo/Redo (Chelen) - closed.
- 0010807: [Undo/Redo] Changing paragraph style properties produce undo step for each selected paragraph (Chelen) - closed.
- 0010806: [Undo/Redo] Undoing aplying style for text frame do not revert local formatting (Chelen) - closed.
- 0004833: [Undo/Redo] Undo: overprint setting change is not recorded in undo system (Chelen) - closed.
- 0004832: [Undo/Redo] Undo: setting transpareny mode is not recorded by undo system (Chelen) - closed.
- 0003414: [Story Editor / Text Frames] PDF-Options for textframes do not create undo actions (Chelen) - closed.
- 0009419: [Usability] Patch for YesToAll button in Contenst/Clear warning (cezaryece) - closed.
- 0010452: [User Interface] Grouped objects should keep moving 1 by 1 cm through PP (Chelen) - closed.
- 0010800: [Undo/Redo] GSoC : Git branch about Layout undo/redo functionnality (Chelen) - closed.
- 0004821: [User Interface] page palette: deletion of masterpages and pages should only be possible after confirmation (Chelen) - closed.
- 0005173: [Import / Export] Page import can't be undone (Chelen) - closed.
- 0005210: [Undo/Redo] Undoing EPS graphic scaling does not undo all of scaling (Chelen) - closed.
- 0010805: [Undo/Redo] Text Undo (Chelen) - closed.
- 0006220: [Undo/Redo] Undoing split polygon doesn't work (Chelen) - closed.
- 0010269: [Shape Drawing] CTRL shape-tool modifier (Chelen) - closed.
- 0010808: [Undo/Redo] GSoC : git branch about option undo/redo functionnality (Chelen) - closed.
- 0010809: [Undo/Redo] Undo/redo for rounded corner (Chelen) - closed.
- 0010811: [Undo/Redo] undo/redo for show image option (Chelen) - closed.
- 0010812: [Undo/Redo] undo/redo for image resolution option (Chelen) - closed.
- 0010810: [Undo/Redo] flip item undo/redo (Chelen) - closed.
- 0008608: [Undo/Redo] Undo after resizing figure does not work (Chelen) - closed.
- 0010813: [Build System] Hardcoded multiarch parts in FindPOPPLER.cmake (jghali) - closed.
- 0010820: [Usability] [PATCH] assigning a shortcut: when scribus warns me that the shortcut is taken, it should tell me by which command (ale) - closed.
- 0010821: [User Interface] [PATCH] new shortcuts for previewing (ale) - closed.
- 0010789: [Story Editor / Text Frames] crash when writing text for footnote (cezaryece) - closed.
- 0010767: [User Interface] [feature patch] add itemResizeToMargin action for right click on item`s handlers (cbradney) - closed.
- 0010776: [User Interface] Page numbers shown with 'pt' suffix in the Properties window (jghali) - closed.
- 0010771: [Typography] [FIX] autoheight (cbradney) - closed.
- 0002708: [General] Autosizing of frames (cezaryece) - closed.
- 0010774: [General] crash on clicking on text frame (jghali) - closed.
- 0010787: [User Interface] "Adjust frame to image"... options active on text frames (jghali) - closed.
- 0010786: [Color Management] crash when clicking gradient (jghali) - closed.
- 0002707: [-] More flexible ways of page numbering (cezaryece) - closed.
- 0009279: [Tables] Table name shouldn't be "group" or "text" (cbradney) - closed.
- 0009156: [Canvas] Feature: adjust frame to contents for text frames (cezaryece) - closed.
- 0010726: [User Interface] Cannot resize Master page area in page palette (jghali) - closed.
- 0003287: [Usability] Combine Arranges Pages & Edit Masters into a single Pages window. (jghali) - closed.
- 0010747: [Build System] make -j4 failing at building mocs... (3) (cbradney) - closed.
- 0010755: [General] find a friendly way to let the user recreate the preferences (cbradney) - closed.
- 0008782: [Typography] Max. word tracking value (cbradney) - closed.
- 0010739: [General] edit > master pages should show the arrange pages palette (jghali) - closed.
- 0010352: [Usability] [PATCH] exit text edit mode when cursor is not in text available area (cbradney) - closed.
- 0007999: [Story Editor / Text Frames] Text autoflow (patch implementing the feature attached) (ale) - closed.
- 0010733: [Usability] Jump to other text frame overlaps editing one (cezaryece) - closed.
- 0010761: [Tables] can't copy paste tables (jghali) - closed.
- 0010708: [Shape Drawing] arrows from svg created in inkscape are not imported in scribus (fschmid) - closed.
- 0010725: [Plug-ins] misc patches for plugins/ (jghali) - closed.
- 0010728: [General] Text frame linkage breaks across Scribus versions (jghali) - closed.
- 0009904: [Import / Export] Crash on importing IDML (fschmid) - closed.
- 0010556: [General] PDF Import pages size (fschmid) - closed.
- 0010564: [Usability] An Option to delete a single Tabulator on the Style Manager. (fschmid) - closed.
- 0010214: [General] inline frames should push other lines around (fschmid) - closed.
- 0010633: [Shape Drawing] Shape limit are not displayed (fschmid) - closed.
- 0010616: [General] Self created external tools files in $INSTALLDIR/editorconfig need to get found automatically (fschmid) - closed.
- 0007793: [PDF] Make crop mark length user-settable (jghali) - closed.
- 0010652: [Translation] Hungarian translation update for 1.5.0svn trunk (jghali) - closed.
- 0010215: [Usability] Inline frames cannot be selected nor altered (fschmid) - closed.
- 0010519: [General] Copy page functionality is broken (fschmid) - closed.
- 0009813: [Undo/Redo] Undo for changing image scaling type, undo for clear contents of image frame and fix undo loading new image (cbradney) - closed.
- 0010571: [Usability] Some Edit Boxes trigger an action on every user keystroke (fschmid) - closed.
- 0009844: [Styles] [PATCH] Rough beginnings of a table style (fschmid) - closed.
- 0010680: [Translation] Hungarian translation update for 1.5.0svn trunk (jghali) - closed.
- 0008631: [Canvas] Select objects on any layer and more (fschmid) - closed.
- 0010694: [General] The new document size seems to be out of kilter. (fschmid) - closed.
- 0009442: [Shape Drawing] Polygon-gradients (fschmid) - closed.
- 0010412: [-] Duplicating using ctrl+d stoped working (cbradney) - closed.
- 0010559: [Build System] svn build 2012-31-1 8:30 gmt fails (jghali) - closed.
- 0010501: [Translation] Hungarian translation update for 1.5.0svn trunk (jghali) - closed.
- 0002221: [Import / Export] scribus crash with signal 0000006 or complete freeze while trying to import complex svg files (fschmid) - closed.
- 0010377: [Import / Export] [BUG] Scribus 1.5 crash during openning 1.4 file (jghali) - closed.
- 0010179: [General] change level by moving the items in the outline palette (fschmid) - closed.
- 0000533: [Usability] move objects in the object-tree (fschmid) - closed.
- 0003797: [Usability] can't add to a group (fschmid) - closed.
- 0010093: [-] [patch] Unable to reset rules to 0,0 corner of page - master page mode (fschmid) - closed.
- 0009795: [User Interface] Option for page border on top (fschmid) - closed.
- 0010282: [User Interface] masterpage window doesnt remember its position (fschmid) - closed.
- 0006529: [Story Editor / Text Frames] Drop caps should have their own character style properties in paragraph styles (fschmid) - closed.
- 0010271: [User Interface] Content edit access through the "outilines" window (fschmid) - closed.
- 0009439: [Graphics / Image Frames] Drag Image from file explorer and drop it to an empty page does not work (fschmid) - closed.
- 0009049: [General] Ability to easily change a level of a frame (fschmid) - closed.
- 0010291: [PDF] add warning to the preflight verifier when PNG image with transparency is inservted in PDF 1.3 (fschmid) - closed.
- 0010239: [User Interface] printcheck window doent follow document changes (fschmid) - closed.
- 0009581: [User Interface] Center frames when zooming in (fschmid) - closed.
- 0010180: [User Interface] Gradient vector coordinates not synced between canvas and popup window (fschmid) - closed.
- 0007921: [Color Management] Image Effects Preview is not color managed (fschmid) - closed.
- 0009560: [Usability] [patch] Preflight Verifier - making text based error items put cursor in error place (fschmid) - closed.
- 0009456: [General] don't use the copy paste buffer when duplicating an object (fschmid) - closed.
- 0009659: [General] Errors on non printable layers should not show up in the preflight verifier (fschmid) - closed.
- 0001348: [User Interface] Dockable dialogs (fschmid) - closed.
- 0007659: [Story Editor / Text Frames] Page numbering disappears when Text Frame is attached to Path (fschmid) - closed.
- 0010199: [Story Editor / Text Frames] Group displas bad (fschmid) - closed.
- 0010297: [User Interface] Frame of Glyphs to insert has too small height (fschmid) - closed.
- 0001212: [Story Editor / Text Frames] styles for drop caps (Tsoots) - closed.
- 0009518: [User Interface] [patch] add information about dimmensions of selected item into Status Bar (fschmid) - closed.
- 0005571: [Shape Drawing] Text Flow ignores object border line (fschmid) - closed.
- 0009755: [Graphics / Image Frames] Border width is not counted in frame size (fschmid) - closed.
- 0009457: [Graphics / Image Frames] Text flow around frame does not take border's line width into account. (fschmid) - closed.
- 0001671: [Story Editor / Text Frames] shapes and flowing text issue (fschmid) - closed.
- 0009835: [General] Impossible to see resize handles due to object color (fschmid) - closed.
- 0009157: [Canvas] add new grid option (fschmid) - closed.
- 0010443: [Canvas] can't edit grouped text frames (fschmid) - closed.
- 0010446: [Canvas] after resizing a group, the text cursor is shifted (fschmid) - closed.
- 0009613: [Story Editor / Text Frames] Convert to outlines - include frame decoration (fschmid) - closed.
- 0009917: [Story Editor / Text Frames] Cursor not visible in an empty Text Frame (fschmid) - closed.
- 0009281: [Story Editor / Text Frames] page becomes empty when copy-pasting frame with inline frame (fschmid) - closed.
- 0009280: [Story Editor / Text Frames] Inline frame placement on copy-paste (fschmid) - closed.
- 0009097: [Usability] OSG doesn't list supported file formats (fschmid) - closed.
- 0010323: [General] the brown color is back (again) (jghali) - closed.
- 0010325: [Import / Export] import of svg file with some problems (fschmid) - closed.
- 0010123: [User Interface] It should be possible to remove stops from a gradient by dragging it horizontally out of the gradient (fschmid) - closed.
- 0010359: [Import / Export] Invalid PDF creation (fschmid) - closed.
- 0010326: [General] Support OpenBSD and FreeBSD in third_party/pgf/PGFplatform.h (jghali) - closed.
- 0003558: [General] by layer mode in outline (fschmid) - closed.
- 0010302: [User Interface] Richer hint-buble on outline tool elements hovering (fschmid) - closed.
- 0010319: [Build System] Build fails with in-tree version of cairo library (jghali) - closed.
- 0010321: [NLS] More Japanese translation. (jghali) - closed.
- 0010292: [Story Editor / Text Frames] [PATCH] CJK formating issue (jghali) - closed.
- 0010294: [Story Editor / Text Frames] Port 0010251 patch to 1.5.0svn (jghali) - closed.
- 0010227: [Story Editor / Text Frames] Text flow implementation (widow/orphan control and more) - patch attached (jghali) - closed.
- 0010158: [Typography] Typing text to a text frame feels very sluggish (patch attached) (fschmid) - closed.
- 0008412: [PDF] Fails to open PDF's created with inkscape 0.47pre with embedded fonts (fschmid) - closed.
- 0008312: [Import / Export] EPS import is incorrect (fschmid) - closed.
- 0010160: [Story Editor / Text Frames] First line offset radio buttons un-useable (jghali) - closed.
- 0007083: [Import / Export] Postscript import fails for .ps files generated by Gnuplot (avox) - closed.
- 0003677: [Import / Export] EPS file wont import / add shaded polygon support to Scribus (fschmid) - closed.
- 0006105: [Import / Export] Cannot import Adobe Illustrator EPS file that GsView can display (avox) - closed.
- 0008313: [Import / Export] AI import is wrong (fschmid) - closed.
- 0004121: [Import / Export] Adobe Illustrator import (fschmid) - closed.
- 0007936: [Import / Export] PostScript import messes up fonts (fschmid) - closed.
- 0004197: [Import / Export] eps svg import - program crash (fschmid) - closed.
- 0001698: [Import / Export] Enhance EPS importer to support raster graphics (fschmid) - closed.
- 0005053: [Import / Export] EPS import extremely slow (fschmid) - closed.
- 0004265: [Import / Export] EPS Import: Spot colour tints are imported as individual process colours (fschmid) - closed.
- 0004824: [Import / Export] EPS import with bitmaps shows graphics offset and mirrored (fschmid) - closed.
- 0003210: [Import / Export] Support Type 3 fonts in EPS importer (fschmid) - closed.
- 0006089: [Import / Export] AI test cases (fschmid) - closed.
- 0008019: [Import / Export] included images in eps import not imported correctly (fschmid) - closed.
- 0002361: [Import / Export] EPS of colour gradient does not import into Scribus (fschmid) - closed.
- 0010191: [Canvas] [patch] make the red border around the page 1px wide (fschmid) - closed.
- 0010209: [Translation] Update of Lithuanian UI (jghali) - closed.
- 0010228: [General] Build fails with undefined variables when building with system cairo 1.10.2 (jghali) - closed.
- 0010212: [User Interface] Tweak ruler presentation to be more pleasant on eyes (jghali) - closed.
- 0010156: [Translation] New version of interface Lithuanian translation (jghali) - closed.
- 0003185: [Usability] PDF Export: add checkbox to start default pdv viewer after creation and open the document there (cbradney) - closed.
- 0008473: [General] Switching window focus sets dimension values to 0 and 1 (jghali) - closed.
- 0004951: [General] SVGs hardly work as patterns (jghali) - closed.
- 0010001: [Build System] compile fails (started failing May 24, 2011) (jghali) - closed.
- 0009577: [Graphics / Image Frames] Imported SVG ungrouped and deleted parts while using "undo"(ctrl+z) frequently may create blind effects(everything cloak ) (fschmid) - closed.
- 0009941: [General] Hangs after loading 88% of file, uses up >90% CPU, won't terminate properly (jghali) - closed.
- 0009938: [General] 'Grid Spacing' won't go beyond 0.1389 in (cbradney) - closed.
- 0009945: [Scripter] [patch] shortcut for scripter conflicts with ESC in dialogs (cbradney) - closed.
- 0009757: [Story Editor / Text Frames] Can't change default font for e.g., Story Editor. (cbradney) - closed.
- 0009827: [Styles] making new style (cbradney) - closed.
- 0009819: [Import / Export] [BUG] Scribus read that image rotated (fschmid) - closed.
- 0009801: [Canvas] wrong outline while moving resized groups (fschmid) - closed.
- 0009709: [Styles] can't delete styles (fschmid) - closed.
- 0009606: [Color Management] Loading a color set breaks documents colors (fschmid) - closed.
- 0009718: [General] No default pallete (fschmid) - closed.
- 0008153: [Plug-ins] Opening Picture Browser causes segmentation fault (pierremarchand) - closed.
- 0009712: [Scripter] indentation error in Autoquote.py (jghali) - closed.
- 0009720: [User Interface] Unusable Preferences window because is off the screen . (cbradney) - closed.
- 0004399: [General] Level of Objects and Masterpages (ale) - closed.
- 0009599: [Fonts] can't select single group elements anymore (fschmid) - closed.
- 0009624: [General] Colours, gradients and patterns in the Group tab don't work (fschmid) - closed.
- 0008423: [General] guides, frame borders and co disappear when deleting an item from a group (fschmid) - closed.
- 0001701: [Import / Export] SVG Layer support (fschmid) - closed.
- 0009660: [General] Ungrouping of scaled of groups is not correct (fschmid) - closed.
- 0007991: [Shape Drawing] add a simple way to create portion of circle (fschmid) - closed.
- 0009671: [Import / Export] regression in importing SVG files (fschmid) - closed.
- 0009699: [User Interface] update arc tool icon (fschmid) - closed.
- 0008569: [General] crash signal 0000011 when quitting Scribus (cbradney) - closed.
- 0005082: [General] New groups cannot have properties like colours set on them (fschmid) - closed.
- 0009597: [General] crash during opening document (jghali) - closed.
- 0008730: [Graphics / Image Frames] [PATCH] Add caching for low resolution images (jghali) - closed.
- 0005683: [Usability] Copy paste of a frame filled with a pattern does not copy the pattern info into a new doc (fschmid) - closed.
- 0009232: [Shape Drawing] Rotated group size updates incorrectly (fschmid) - closed.
- 0003640: [Usability] properties options displayed/enabled for groups based on individual item selected (fschmid) - closed.
- 0009534: [Graphics / Image Frames] no polygones (fschmid) - closed.
- 0003714: [General] SVG import causes GUI freeze (fschmid) - closed.
- 0004717: [Shape Drawing] New shape: Circle segment (fschmid) - closed.
- 0003417: [Shape Drawing] Add the "Properties" dialog for polygons from the menu to the properties palette (fschmid) - closed.
- 0004649: [Shape Drawing] Add polygon options to the Shape tab of the PP (fschmid) - closed.
- 0007715: [User Interface] Allow polygon properties to be edited on PP (fschmid) - closed.
- 0008763: [Graphics / Image Frames] Take image orientation into account (fschmid) - closed.
- 0008770: [Scripter] rotateObject skips grouped objects (fschmid) - closed.
- 0009625: [Import / Export] SVG import crashes Scribus (fschmid) - closed.
- 0003209: [Scripter] Python crashes constantly Scripter and documentation is wrong. (h_a_j_s) - closed.
- 0009271: [General] Add an option to load patterns permanently (fschmid) - closed.
- 0009109: [Build System] GraphicsMagick++-devel is not detected (Herm) - closed.
- 0002252: [User Interface] "Colour Management" vanishes from prefs when it can not be used (cbradney) - closed.
- 0001267: [Import / Export] Edit/Colors: add option to save color schemes as xml/text files and to import them (fschmid) - closed.
- 0008882: [Story Editor / Text Frames] Adding PARSEP in the story editor makes scribus crash if the text is justified (jghali) - closed.
- 0009406: [Graphics / Image Frames] Options in render frames aren't saved during copy/paste or close/reopen operations (fschmid) - closed.
- 0009468: [General] .sla.gz.autosave documents are not compressed (fschmid) - closed.
- 0009465: [General] Closing the Paint Manager results in crash (fschmid) - closed.
- 0009421: [Internal] Error at parsing file (fschmid) - closed.
- 0001562: [Graphics / Image Frames] "Scale to frame size" locks the image in the frame: no more free positionning (cbradney) - closed.
- 0009444: [Graphics / Image Frames] Image clipping path isn't preserved in the saved document (fschmid) - closed.
- 0009459: [General] No colour when pasting an object with custom colours via CTRL+C and CTRL+V (fschmid) - closed.
- 0007939: [Usability] Path effects need tooltips (fschmid) - closed.
- 0000612: [User Interface] the order of the colors (fschmid) - closed.
- 0003308: [User Interface] Enable selection of colour sets in "Edit - Colours" (fschmid) - closed.
- 0006841: [Color Management] RFE : multi select in color management window (fschmid) - closed.
- 0000231: [General] Add in ability to import Colour Sets into current document (fschmid) - closed.
- 0009417: [Graphics / Image Frames] can't set scaling to values higher than 100% in the new preferences for image frames (cbradney) - closed.
- 0002660: [Import / Export] leading zeroes on page numbers (cbradney) - closed.
- 0009367: [Scrapbook] Let Scribus search Scrapbook directories recursively (fschmid) - closed.
- 0009111: [Scripter] patch: new flipObject() command for scriptplugin (cbradney) - closed.
- 0009368: [Scrapbook] Scrapbook directories should be allowed to contain all supported file types (fschmid) - closed.
- 0009401: [General] Changing the document unit triggers crash (cbradney) - closed.
- 0009358: [Translation] Dutch translation (cbradney) - closed.
- 0009341: [Build System] compilation fails with error Aug 31, 9:00 CEST (sources from svn) (cbradney) - closed.
- 0009321: [Translation] updated Scribus 1.5 translation (cbradney) - closed.
- 0009312: [General] funny page layout after changing document margins (cbradney) - closed.
- 0009262: [Translation] British English Translation Update (cbradney) - closed.
- 0009256: [Translation] Estonian translation for trunk (jghali) - closed.
- 0008921: [PDF] PDF error in Acrobat Reader (jghali) - closed.
- 0009160: [Color Management] Incorrect import of TIFF files with LCMS2 support enabled (jghali) - closed.
- 0005116: [General] Changes in the document settings aren't honoured (cbradney) - closed.
- 0003700: [User Interface] Set default distance between text and frame in the Preferences (cbradney) - closed.
- 0002248: [User Interface] Don't silently disable ICC profiles in prefs when a doc is open (cbradney) - closed.
- 0001549: [User Interface] Notes on Preferences - Display (cbradney) - closed.
- 0005060: [User Interface] Missing entry in "File - Open" dialog (fschmid) - closed.
- 0001703: [General] Convert important structs (StVorL, etc) into proper classes (cbradney) - closed.
- 0006584: [Import / Export] Checkbox "Open with standard viewer after export" at PDF-Export-dialogue (cbradney) - closed.
- 0002271: [Internal] Redesign Preferences internally, stop using translated strings in prefs files (cbradney) - closed.
- 0004309: [General] Many settings won't save per-document, and will always revert back to default when changing options. (cbradney) - closed.
- 0008246: [User Interface] some spaces in document setup dialogue need a fix (cbradney) - closed.