-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
24375 lines (16783 loc) · 739 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
2011-07-03 Alex Băluț <[email protected]>
* tests/runtests.py:
Set PITIVI_TOP_LEVEL_DIR before the test modules are loaded, not after
2011-07-03 Thibault Saunier <[email protected]>
Merging translations
2011-07-03 Alex Băluț <[email protected]>
* pitivi/discoverer.py:
Add back the 'File does not exist' error removed it commit a73102859360bc41dd3cef15ce1d94994e21d1e8 for no reason
2011-06-30 Thibault Saunier <[email protected]>
* pitivi/ui/mainwindow.py:
Make sure we don't save 'None' as the last open project folder
2010-12-25 Jean-François Fortin Tam <[email protected]>
* pitivi/ui/sourcelist.py:
Implement the unused clips selection algorithm in source list
2011-06-30 Jean-François Fortin Tam <[email protected]>
* pitivi/timeline/timeline.py:
* pitivi/ui/sourcelist.py:
Methods to determine what sources are not used in the timeline
2010-12-25 Jean-François Fortin Tam <[email protected]>
* pitivi/ui/sourcelist.py:
Add a menu item to "Select Unused Media"
2011-06-25 Alex Băluț <[email protected]>
* pitivi/discoverer.py:
Fix discoverer.py so the application can open media files
2011-06-25 Thibault Saunier <[email protected]>
* pre-commit.hook:
Update the pre-commit hook to be less agressive
2011-06-13 Alex Băluț <[email protected]>
* data/ui/projectsettings.ui:
* pitivi/ui/preset.py:
* pitivi/ui/projectsettings.py:
* tests/test_preset.py:
Changed ProjectSettingsDialog to show an error message if a preset is renamed and the new name already belongs to another preset. Fixes bug 638799.
2011-06-14 Alex Băluț <[email protected]>
* pitivi/ui/projectsettings.py:
Enable the Save button when the selected audio preset is changed, in ProjectSettingsDialog.
Fixes bug 652537.
2011-06-16 Alex Băluț <[email protected]>
* pitivi/ui/preset.py:
* pitivi/ui/projectsettings.py:
Changed PresetManager.renamePreset to change the name of the current preset, if this is the case. This makes its behaviour similar with PresetManager.removePreset's behaviour.
2011-06-16 Alex Băluț <[email protected]>
* pitivi/ui/preset.py:
Added docstrings to PresetManager
2011-06-16 Alex Băluț <[email protected]>
* pitivi/ui/preset.py:
Renamed the private PresetManager.ignore attribute accordingly
2011-06-16 Alex Băluț <[email protected]>
* pitivi/ui/preset.py:
* pitivi/ui/projectsettings.py:
Renamed the PresetManager.changed method so the name starts with a verb
2011-06-13 Alex Băluț <[email protected]>
* pitivi/ui/projectsettings.py:
* tests/Makefile.am:
* tests/test_projectsettings.py:
Changed ProjectSettingsDialog to generate unique names when a new preset is added. Required to fix bug 638799.
2011-06-13 Alex Băluț <[email protected]>
* pitivi/ui/projectsettings.py:
Changed ProjectSettingsDialog to enable the Remove button after adding a preset. Fixes bug 638798.
2011-06-13 Alex Băluț <[email protected]>
* data/ui/projectsettings.ui:
* pitivi/ui/projectsettings.py:
Rename handler in ProjectSettingsDialog to be consistent with the other handlers
2011-06-13 Alex Băluț <[email protected]>
* pitivi/ui/projectsettings.py:
* pitivi/ui/ripple_update_group.py:
Simplified the RippleUpdateGroup constructor and cleaned the class a bit.
2011-06-13 Alex Băluț <[email protected]>
* pitivi/ui/projectsettings.py:
Changed ProjectSettingsDialog._presetChangedCb to not be aware of the fact that there are two types of presets
2011-06-13 Alex Băluț <[email protected]>
* pitivi/ui/preset.py:
Raise the correct exception in PresetManager
2011-06-12 Alex Băluț <[email protected]>
* pitivi/ui/preset.py:
* tests/Makefile.am:
* tests/test_preset.py:
Changed PresetManager to allow the user to have a preset called Default. Fixes bug 652397.
2011-06-12 Alex Băluț <[email protected]>
* data/ui/projectsettings.ui:
Changed the Preset labels to specify the types of presets
2011-06-11 Alex Băluț <[email protected]>
* pitivi/formatters/base.py:
* tests/Makefile.am:
* tests/test_formatters_base.py:
Extracted duplicated code into Formatter._searchMissingFile
2011-06-11 Alex Băluț <[email protected]>
* pitivi/formatters/base.py:
Removed duplicate checks
2011-06-10 Alex Băluț <[email protected]>
* pitivi/formatters/etree.py:
Clarify when an argument needs to be passed when an ObjectFactory is instantiated in ElementTreeFormatter._loadObjectFactory This change was suggested by the FIXME I removed.
2011-06-10 Alex Băluț <[email protected]>
* pitivi/utils.py:
Simplified utils.uri_is_valid
2011-06-10 Alex Băluț <[email protected]>
* pitivi/formatters/etree.py:
Simplified ElementTreeFormatter._loadSources
2011-06-10 Alex Băluț <[email protected]>
* pitivi/sourcelist.py:
* pitivi/ui/sourcelist.py:
* tests/test_sourcelist.py:
Change pitivi.sourcelist.SourceList.addUri to not raise an exception when the URI is already added. The problem fixed by this patch is that currently, when running "bin/pitivi -i video.mkv video.mkv" the application breaks and shows a stacktrace.
2011-06-09 Alex Băluț <[email protected]>
* pitivi/sourcelist.py:
Added docstrings in sourcelist.py
2011-06-09 Alex Băluț <[email protected]>
* pitivi/application.py:
Removed Pitivi.projects because it's unused
2011-06-09 Alex Băluț <[email protected]>
* tests/Makefile.am:
* tests/runtests.py:
Specified in Makefile.am which tests should be run and simplified runtests. This change will make sure that new test files will be added to the list of tests which are included in the distribution package, otherwise now they won't run when running 'make check'.
2011-06-09 Alex Băluț <[email protected]>
* tests/test_timeline.py:
Change the test_timeline imports to be consistent with the other tests
2011-06-09 Alex Băluț <[email protected]>
* tests/__init__.py:
* tests/test_timeline.py:
Make the same initial checks as the application when the tests package is initialized.
2011-06-09 Alex Băluț <[email protected]>
* tests/Makefile.am:
* tests/runtests.py:
Make sure PITIVI_TOP_LEVEL_DIR is always set when running the tests
2011-06-09 Alex Băluț <[email protected]>
* tests/Makefile.am:
Added all the test files to the list of tests
2011-06-09 Alex Băluț <[email protected]>
* tests/Makefile.am:
* tests/testcomplex.py:
Removed testcomplex.py because it's obsolete
2011-06-09 Alex Băluț <[email protected]>
* tests/Makefile.am:
Ordered alphabetically the list of tests in tests/Makefile.am
2011-06-09 Alex Băluț <[email protected]>
* pitivi/ui/sourcelist.py:
Changed SourceList to reset the error list when a new project is created or loaded. Fixes bug 635993.
2011-06-09 Alex Băluț <[email protected]>
* bin/pitivi.in:
Removed obsolete conditions from pitivi.in
2011-06-24 Jean-François Fortin Tam <[email protected]>
* pitivi/discoverer.py:
* tests/test_discoverer.py:
Improve error message for non-existing and non-readable files
2011-06-24 Jean-François Fortin Tam <[email protected]>
* pitivi/ui/encodingdialog.py:
* pitivi/ui/filechooserpreview.py:
Standardize the use of the multiplication symbol in resolutions
2011-06-24 Jean-François Fortin Tam <[email protected]>
* pitivi/check.py:
* pitivi/discoverer.py:
* pitivi/ui/common.py:
* pitivi/ui/sourcelist.py:
* pitivi/utils.py:
String fixes
Fixes: 651483
2011-06-24 Jean-François Fortin Tam <[email protected]>
* pitivi/ui/common.py:
* pitivi/ui/timelinecontrols.py:
More efficient translatable strings
Fixes bug #651186
2011-06-21 Jean-François Fortin Tam <[email protected]>
* data/ui/mainwindow.xml:
* pitivi/ui/mainwindow.py:
Fix the naming and categorization of menus
2011-06-21 Jean-François Fortin Tam <[email protected]>
* pitivi/ui/mainwindow.py:
* pitivi/ui/sourcelist.py:
* pitivi/ui/timeline.py:
Fix header capitalization in menus and clarify clips vs files
Fixes bug #587235
2011-06-11 Jean-François Fortin Tam <[email protected]>
* pitivi/ui/sourcelist.py:
Correct the media library's infobar text
2011-06-22 Thibault Saunier <[email protected]>
* autogen.sh:
* pre-commit.hook:
Add a pre-hook commit to check the pep8 compliance of each commit
2011-06-22 Jean-François Fortin Tam <[email protected]>
* pitivi/reflect.py:
Remove leftover line from the PEP-8 cleanup
2011-06-22 Thibault Saunier <[email protected]>
* docs/makeChangelog.py:
* tests/common.py:
* tests/runtests.py:
* tests/test_action.py:
* tests/test_alpha_passthrough.py:
* tests/test_basic.py:
* tests/test_binary_search.py:
* tests/test_cache.py:
* tests/test_common.py:
* tests/test_discoverer.py:
* tests/test_encode.py:
* tests/test_etree_formatter.py:
* tests/test_factories_base.py:
* tests/test_factories_file.py:
* tests/test_factories_operation.py:
* tests/test_gap.py:
* tests/test_integration.py:
* tests/test_pipeline.py:
* tests/test_pipeline_action.py:
* tests/test_projectmanager.py:
* tests/test_seeker.py:
* tests/test_signallable.py:
* tests/test_sourcelist.py:
* tests/test_still_image.py:
* tests/test_stream.py:
* tests/test_timeline.py:
* tests/test_timeline_factory.py:
* tests/test_timeline_undo.py:
* tests/test_track.py:
* tests/test_transitions.py:
* tests/test_undo.py:
* tests/test_utils.py:
* tests/testcomplex.py:
tests: Fully pep8 compliant
2011-06-22 Thibault Saunier <[email protected]>
* pitivi/factories/base.py:
* pitivi/reflect.py:
* pitivi/settings.py:
* pitivi/ui/basetabs.py:
* pitivi/ui/clipproperties.py:
* pitivi/ui/common.py:
* pitivi/ui/controller.py:
* pitivi/ui/curve.py:
* pitivi/ui/dynamic.py:
* pitivi/ui/effectlist.py:
* pitivi/ui/effectsconfiguration.py:
* pitivi/ui/encodingdialog.py:
* pitivi/ui/encodingprogress.py:
* pitivi/ui/filechooserpreview.py:
* pitivi/ui/filelisterrordialog.py:
* pitivi/ui/gstwidget.py:
* pitivi/ui/mainwindow.py:
* pitivi/ui/pathwalker.py:
* pitivi/ui/point.py:
* pitivi/ui/prefs.py:
* pitivi/ui/preset.py:
* pitivi/ui/preview.py:
* pitivi/ui/previewer.py:
* pitivi/ui/projectsettings.py:
* pitivi/ui/ripple_update_group.py:
* pitivi/ui/ruler.py:
* pitivi/ui/sourcelist.py:
* pitivi/ui/startupwizard.py:
* pitivi/ui/timeline.py:
* pitivi/ui/timelinecontrols.py:
* pitivi/ui/track.py:
* pitivi/ui/trackobject.py:
* pitivi/ui/view.py:
* pitivi/ui/viewer.py:
* pitivi/ui/zoominterface.py:
pitivi: All pep8 compliant
2011-06-22 Thibault Saunier <[email protected]>
* pitivi/ui/Makefile.am:
* pitivi/ui/videofxlist.py:
* po/POTFILES.in:
Remove dead videofxlist code
2011-06-22 Thibault Saunier <[email protected]>
* pitivi/ui/Makefile.am:
* pitivi/ui/defaultpropertyeditor.py:
* pitivi/ui/propertyeditor.py:
* po/POTFILES.in:
Remove dead defaultpropertyeditor code
2011-06-22 Thibault Saunier <[email protected]>
* pitivi/ui/Makefile.am:
* pitivi/ui/audiofxlist.py:
* po/POTFILES.in:
Remove audiofxlist dead code
2011-06-21 Thibault Saunier <[email protected]>
* data/ui/Makefile.am:
* data/ui/pluginmanagerdialog.ui:
* pitivi/Makefile.am:
* pitivi/application.py:
* pitivi/plugincore.py:
* pitivi/pluginmanager.py:
* pitivi/settings.py:
* pitivi/ui/Makefile.am:
* pitivi/ui/mainwindow.py:
* pitivi/ui/pluginmanagerdialog.py:
* po/POTFILES.in:
Remove the dead pluginmanager code
2011-06-06 Thibault Saunier <[email protected]>
* pitivi/action.py:
* pitivi/actioner.py:
* pitivi/application.py:
* pitivi/check.py:
* pitivi/discoverer.py:
* pitivi/effects.py:
* pitivi/elements/arraysink.py:
* pitivi/elements/mixer.py:
* pitivi/elements/singledecodebin.py:
* pitivi/elements/thumbnailsink.py:
* pitivi/elements/videofade.py:
* pitivi/encode.py:
* pitivi/factories/base.py:
* pitivi/factories/file.py:
* pitivi/factories/operation.py:
* pitivi/factories/test.py:
* pitivi/factories/timeline.py:
* pitivi/formatters/base.py:
* pitivi/formatters/etree.py:
* pitivi/formatters/format.py:
* pitivi/formatters/playlist.py:
* pitivi/log/log.py:
* pitivi/log/loggable.py:
* pitivi/log/termcolor.py:
* pitivi/pipeline.py:
* pitivi/pitivigstutils.py:
* pitivi/plugincore.py:
* pitivi/plumber.py:
* pitivi/project.py:
* pitivi/projectmanager.py:
* pitivi/receiver.py:
* pitivi/reflect.py:
* pitivi/settings.py:
* pitivi/signalgroup.py:
* pitivi/signalinterface.py:
* pitivi/sourcelist.py:
* pitivi/sourcelist_undo.py:
* pitivi/stream.py:
* pitivi/threads.py:
* pitivi/thumbnailcache.py:
* pitivi/timeline/gap.py:
* pitivi/timeline/timeline.py:
* pitivi/timeline/timeline_undo.py:
* pitivi/timeline/track.py:
* pitivi/undo.py:
* pitivi/utils.py:
Make core pep8 compliant
2011-06-22 Matej Urbančič <[email protected]>
* po/sl.po:
Updated Slovenian translation
2011-06-19 Jean-François Fortin Tam <[email protected]>
* data/ui/encodingdialog.ui:
* pitivi/ui/encodingdialog.py:
encodingdialog: Show a warning icon and tooltip when the output file already exists
Fixes bug #594485
2011-06-18 Jean-François Fortin Tam <[email protected]>
* data/ui/elementsettingsdialog.ui:
* pitivi/ui/gstwidget.py:
Automatically determine if codec settings require scrolling
2011-06-18 Jean-François Fortin Tam <[email protected]>
* data/ui/encodingprogress.ui:
Set a width request to make encoding progress look better
2011-06-18 Jean-François Fortin Tam <[email protected]>
* pitivi/ui/mainwindow.py:
Don't show duration for image files in the missing files dialog
2011-05-20 Jean-François Fortin Tam <[email protected]>
* pitivi/ui/filechooserpreview.py:
Use "Resolution" instead of "Width/Height" in the file chooser
2011-06-22 Bruno Brouard <[email protected]>
* po/fr.po:
Updated French translation
2011-06-21 Thibault Saunier <[email protected]>
* bin/pitivi.in:
Remove remaining references to glade
2011-06-21 Jean-François Fortin Tam <[email protected]>
* .gitignore:
Add intltool-merge-cache and config.status.lineno to gitignore
2011-06-14 Hicham HAOUARI <[email protected]>
* configure.ac:
Lower pygtk2 minimum version to 2.17.0
2011-06-19 Daniel Mustieles <[email protected]>
* po/es.po:
Updated Spanish translation
2011-06-17 Mario Blättermann <[email protected]>
* po/de.po:
[l10n] Updated German translation
2011-06-06 Stéphane Maniaci <[email protected]>
* data/ui/Makefile.am:
* data/ui/preferences.ui:
* pitivi/ui/mainwindow.py:
* pitivi/ui/prefs.py:
* po/POTFILES.in:
Port PreferencesDialog to GtkBuilder
2011-06-07 Kjartan Maraas <[email protected]>
* po/nb.po:
Added Norwegian bokmål translation
2011-06-07 Thibault Saunier <[email protected]>
Merging translations
2011-06-07 Alex Băluț <[email protected]>
* pitivi/settings.py:
Included the audio depth to the audio caps created in ExportSettings.
2011-06-07 Marek Černocký <[email protected]>
* po/cs.po:
Updated Czech translation
2011-06-07 Marek Černocký <[email protected]>
* po/cs.po:
Updated Czech translation
2011-05-26 Alex Băluț <[email protected]>
* pitivi/ui/encodingdialog.py:
Check that the settings are changed before signalling that they have been changed. Fixes bug 646513
2011-05-26 Alex Băluț <[email protected]>
* pitivi/actioner.py:
* pitivi/settings.py:
* pitivi/ui/encodingdialog.py:
Change the actioner.Renderer class to work with a settings instance which is not the settings instance of the project The reason is that the changes to the settings which can also be made in the Project Settings dialog must not be saved when they are changed in the Render dialog.
2011-05-25 Alex Băluț <[email protected]>
* pitivi/ui/encodingdialog.py:
Use os.path.join in EncodingDialog
2011-05-25 Alex Băluț <[email protected]>
* data/ui/encodingdialog.ui:
* pitivi/ui/encodingdialog.py:
Rename 'cancel' button to 'close' in EncodingDialog
2011-05-24 Alex Băluț <[email protected]>
* pitivi/settings.py:
Include the render_scale attribute when creating a copy of an ExportSettings
2011-05-24 Alex Băluț <[email protected]>
* pitivi/ui/encodingdialog.py:
Split EncodingDialog._displaySettings()
2011-05-24 Alex Băluț <[email protected]>
* pitivi/actioner.py:
* pitivi/ui/encodingdialog.py:
Move the initialization of 'timestarted' in Actioner.__init__()
2011-05-24 Alex Băluț <[email protected]>
* pitivi/application.py:
Use 'project' consistently in _newProjectLoaded()
2011-05-24 Alex Băluț <[email protected]>
* pitivi/ui/projectsettings.py:
Removed duplicate line
2011-05-24 Alex Băluț <[email protected]>
* pitivi/project.py:
Remove Project.save() because it's obsolete
2011-05-24 Alex Băluț <[email protected]>
* pitivi/project.py:
Make sure a project always has settings
2011-05-24 Alex Băluț <[email protected]>
* pitivi/ui/encodingdialog.py:
Initialize the models of the EncodingDialog comboboxes only once
2011-05-24 Alex Băluț <[email protected]>
* pitivi/ui/encodingdialog.py:
Removed connection to the encoders-changed signal because it's not needed.
2011-05-24 Alex Băluț <[email protected]>
* pitivi/ui/encodingdialog.py:
Simplified encodingdialog.beautify_factoryname()
2011-06-06 Thibault Saunier <[email protected]>
* pitivi/ui/sourcelist.py:
ui: fix export dialog closing button
Forgot to update the destroy call when porting to GtkBuilder
2011-06-06 Jean-François Fortin Tam <[email protected]>
* data/ui/mainwindow.xml:
Fix the ordering of the Help menu
2011-06-06 Jean-François Fortin Tam <[email protected]>
* pitivi/ui/mainwindow.py:
Allow translators to credit themselves, fix the version string
2011-06-06 Jean-François Fortin Tam <[email protected]>
* pitivi/ui/mainwindow.py:
mainwindow: fix the modality of sub-dialogs
2011-06-06 Jean-François Fortin Tam <[email protected]>
* data/ui/elementsettingsdialog.ui:
* pitivi/ui/encodingdialog.py:
* pitivi/ui/gstwidget.py:
Properly set the advanced codec settings dialog's modality
Set transient state to parent it with encodingdialog.
Don't show elementsettingsdialog until readied by gstwidget.
2011-06-06 Jean-François Fortin Tam <[email protected]>
* data/ui/elementsettingsdialog.ui:
* pitivi/ui/gstwidget.py:
Remove the redundant info label (already shown in the title)
2011-06-06 Jean-François Fortin Tam <[email protected]>
* data/ui/elementsettingsdialog.ui:
* pitivi/ui/gstwidget.py:
gstwidget: don't override elementsettingsdialog's size settings
Set the horizontal scrollbar policy to "never" to allow the dialog
to set its width automatically.
Fix spacing.
2011-06-06 Jean-François Fortin Tam <[email protected]>
* data/ui/projectsettings.ui:
* pitivi/ui/projectsettings.py:
projectsettings: slight cleanup
2011-06-06 Jean-François Fortin Tam <[email protected]>
* pitivi/ui/encodingdialog.py:
encodingdialog: disable ellipsizing for comboboxes
Also remove the function since it is not used anywhere else
2011-06-06 Jean-François Fortin Tam <[email protected]>
* data/ui/encodingdialog.ui:
De-uglify the rendering dialog's UI file
2011-06-05 Hicham HAOUARI <[email protected]>
* pitivi/discoverer.py:
* pitivi/effects.py:
* pitivi/factories/base.py:
* pitivi/factories/file.py:
* pitivi/factories/operation.py:
* pitivi/factories/test.py:
* pitivi/plumber.py:
* pitivi/project.py:
* pitivi/settings.py:
* pitivi/thumbnailcache.py:
* pitivi/ui/previewer.py:
* pitivi/ui/viewer.py:
* pitivi/ui/zoominterface.py:
* pitivi/utils.py:
Remove unneeded shebang
2011-06-05 Hicham HAOUARI <[email protected]>
* COPYING:
* bin/pitivi.in:
* docs/pitivi.1:
* pitivi/action.py:
* pitivi/actioner.py:
* pitivi/application.py:
* pitivi/check.py:
* pitivi/configure.py.in:
* pitivi/discoverer.py:
* pitivi/effects.py:
* pitivi/elements/arraysink.py:
* pitivi/elements/mixer.py:
* pitivi/elements/singledecodebin.py:
* pitivi/elements/thumbnailsink.py:
* pitivi/elements/videofade.py:
* pitivi/encode.py:
* pitivi/factories/base.py:
* pitivi/factories/file.py:
* pitivi/factories/operation.py:
* pitivi/factories/test.py:
* pitivi/factories/timeline.py:
* pitivi/formatters/__init__.py:
* pitivi/formatters/base.py:
* pitivi/formatters/etree.py:
* pitivi/formatters/format.py:
* pitivi/formatters/playlist.py:
* pitivi/instance.py:
* pitivi/log/loggable.py:
* pitivi/pipeline.py:
* pitivi/pitivigstutils.py:
* pitivi/plugincore.py:
* pitivi/pluginmanager.py:
* pitivi/plumber.py:
* pitivi/project.py:
* pitivi/projectmanager.py:
* pitivi/settings.py:
* pitivi/signalgroup.py:
* pitivi/signalinterface.py:
* pitivi/sourcelist.py:
* pitivi/sourcelist_undo.py:
* pitivi/stream.py:
* pitivi/threads.py:
* pitivi/thumbnailcache.py:
* pitivi/timeline/gap.py:
* pitivi/timeline/timeline.py:
* pitivi/timeline/timeline_undo.py:
* pitivi/timeline/track.py:
* pitivi/ui/audiofxlist.py:
* pitivi/ui/basetabs.py:
* pitivi/ui/clipproperties.py:
* pitivi/ui/controller.py:
* pitivi/ui/curve.py:
* pitivi/ui/defaultpropertyeditor.py:
* pitivi/ui/dnd.py:
* pitivi/ui/dynamic.py:
* pitivi/ui/effectlist.py:
* pitivi/ui/effectsconfiguration.py:
* pitivi/ui/encodingdialog.py:
* pitivi/ui/encodingprogress.py:
* pitivi/ui/filelisterrordialog.py:
* pitivi/ui/gstwidget.py:
* pitivi/ui/mainwindow.py:
* pitivi/ui/pathwalker.py:
* pitivi/ui/pluginmanagerdialog.py:
* pitivi/ui/prefs.py:
* pitivi/ui/preset.py:
* pitivi/ui/preview.py:
* pitivi/ui/previewer.py:
* pitivi/ui/projectsettings.py:
* pitivi/ui/propertyeditor.py:
* pitivi/ui/ripple_update_group.py:
* pitivi/ui/ruler.py:
* pitivi/ui/sourcelist.py:
* pitivi/ui/timeline.py:
* pitivi/ui/timelinecanvas.py:
* pitivi/ui/videofxlist.py:
* pitivi/ui/viewer.py:
* pitivi/ui/zoominterface.py:
* pitivi/undo.py:
* pitivi/utils.py:
* tests/test_action.py:
* tests/test_alpha_passthrough.py:
* tests/test_common.py:
* tests/test_discoverer.py:
* tests/test_encode.py:
* tests/test_etree_formatter.py:
* tests/test_factories_base.py:
* tests/test_factories_file.py:
* tests/test_factories_operation.py:
* tests/test_gap.py:
* tests/test_integration.py:
* tests/test_pipeline.py:
* tests/test_pipeline_action.py:
* tests/test_projectmanager.py:
* tests/test_seeker.py:
* tests/test_sourcelist.py:
* tests/test_still_image.py:
* tests/test_stream.py:
* tests/test_timeline.py:
* tests/test_timeline_factory.py:
* tests/test_timeline_undo.py:
* tests/test_track.py:
* tests/test_transitions.py:
* tests/test_undo.py:
* tests/test_utils.py:
* win32/setup.py:
Update fsf address
2011-06-05 Hicham HAOUARI <[email protected]>
* pitivi/ui/clipproperties.py:
* pitivi/ui/effectsconfiguration.py:
Fix typo in license
2011-06-06 Thibault Saunier <[email protected]>
* pitivi/ui/encodingdialog.py:
encodingdialog: ellipize combobox correctly
After the GtkBuilder port, the ellipization of combobox became... a bit to
efficient (We only add '...') this sets the length of the text to 60 chars
which fixes the issue.
2011-06-03 Thibault Saunier <[email protected]>
* pitivi/elements/mixer.py:
* pitivi/elements/singledecodebin.py:
* pitivi/elements/thumbnailsink.py:
* pitivi/factories/operation.py:
* pitivi/settings.py:
* pitivi/timeline/timeline.py:
* pitivi/timeline/track.py:
* pitivi/ui/clipproperties.py:
* pitivi/ui/dynamic.py:
* pitivi/ui/effectlist.py:
* pitivi/ui/mainwindow.py:
* pitivi/ui/timeline.py:
* pitivi/ui/viewer.py:
* tests/test_etree_formatter.py:
* tests/test_factories_operation.py:
* tests/test_gap.py:
* win32/setup.py:
Remove all spaces before or after parenthesis
2011-06-03 Thibault Saunier <[email protected]>
* pitivi/formatters/__init__.py:
* pitivi/formatters/base.py:
* pitivi/timeline/timeline.py:
* pitivi/ui/clipproperties.py:
* pitivi/ui/common.py:
* pitivi/ui/dynamic.py:
* pitivi/ui/effectlist.py:
* pitivi/ui/encodingprogress.py:
* pitivi/ui/filechooserpreview.py:
* pitivi/ui/preset.py:
* pitivi/ui/previewer.py:
* pitivi/ui/ripple_update_group.py:
* tests/test_gap.py:
* tests/test_pipeline.py:
* tests/test_seeker.py:
* tests/test_still_image.py:
* tests/test_stream.py:
* tests/test_timeline_factory.py:
* tests/test_undo.py:
* tests/test_utils.py:
* tests/testcomplex.py:
* win32/setup.py:
Use the reindent.py official python script
2011-06-03 Thibault Saunier <[email protected]>
* data/ui/elementsettingsdialog.ui:
* data/ui/encodingdialog.ui:
* data/ui/encodingprogress.ui:
* data/ui/filelisterrordialog.ui:
* data/ui/projectsettings.ui:
* pitivi/check.py:
* pitivi/ui/Makefile.am:
* pitivi/ui/encodingdialog.py:
* pitivi/ui/encodingprogress.py:
* pitivi/ui/filelisterrordialog.py:
* pitivi/ui/glade.py:
* pitivi/ui/gstwidget.py:
* pitivi/ui/mainwindow.py:
* pitivi/ui/pluginmanagerdialog.py:
* pitivi/ui/projectsettings.py:
* win32/pitivi:
* win32/setup.py:
Port PiTiVi to GtkBuilder!
2011-06-03 Thibault Saunier <[email protected]>
* data/ui/Makefile.am:
* data/ui/mainwindow.xml:
* data/ui/screencast_manager.ui:
* pitivi/ui/Makefile.am:
* pitivi/ui/mainwindow.py:
* pitivi/ui/screencast_managerdialog.py:
* po/POTFILES.in:
Remove screencast manager dead code
2011-06-03 Thibault Saunier <[email protected]>
* data/ui/Makefile.am:
* data/ui/mainwindow.xml:
* data/ui/net_capture.ui:
* pitivi/ui/Makefile.am:
* pitivi/ui/mainwindow.py:
* pitivi/ui/netstream_managerdialog.py:
* po/POTFILES.in:
Remove the netcapture dead code
2011-06-03 Thibault Saunier <[email protected]>
* pitivi/action.py:
* pitivi/pipeline.py:
* pitivi/projectmanager.py:
Never compare variable with True or False
2011-06-03 Thibault Saunier <[email protected]>
* pitivi/discoverer.py:
discoverer: clean pbutils import code
2011-05-26 Thibault Saunier <[email protected]>
* data/ui/Makefile.am:
* data/ui/cam_capture.ui:
* data/ui/mainwindow.xml:
* pitivi/Makefile.am:
* pitivi/application.py:
* pitivi/device.py:
* pitivi/ui/Makefile.am:
* pitivi/ui/mainwindow.py:
* pitivi/ui/webcam_managerdialog.py:
* po/POTFILES.in:
Remove everything related to the webcam import feature
2011-06-03 Thibault Saunier <[email protected]>
Merging translations
2011-05-16 Stéphane Maniaci <[email protected]>
* configure.ac:
* data/Makefile.am:
* data/ui/Makefile.am:
* data/ui/cam_capture.ui:
* data/ui/elementsettingsdialog.ui:
* data/ui/encodingdialog.ui:
* data/ui/encodingprogress.ui:
* data/ui/filelisterrordialog.ui:
* data/ui/mainwindow.xml:
* data/ui/net_capture.ui:
* data/ui/pluginmanagerdialog.ui:
* data/ui/projectsettings.ui:
* data/ui/screencast_manager.ui:
* data/ui/startupwizard.ui:
* pitivi/ui/Makefile.am:
* pitivi/ui/cam_capture.glade:
* pitivi/ui/elementsettingsdialog.glade:
* pitivi/ui/encodingdialog.glade:
* pitivi/ui/encodingdialog.py:
* pitivi/ui/encodingprogress.glade:
* pitivi/ui/encodingprogress.py:
* pitivi/ui/filelisterrordialog.glade:
* pitivi/ui/filelisterrordialog.py:
* pitivi/ui/glade.py:
* pitivi/ui/gstwidget.py:
* pitivi/ui/mainwindow.py:
* pitivi/ui/mainwindow.xml:
* pitivi/ui/net_capture.glade:
* pitivi/ui/netstream_managerdialog.py:
* pitivi/ui/pluginmanagerdialog.glade:
* pitivi/ui/pluginmanagerdialog.py:
* pitivi/ui/projectsettings.glade:
* pitivi/ui/projectsettings.py:
* pitivi/ui/screencast_manager.glade:
* pitivi/ui/screencast_managerdialog.py:
* pitivi/ui/startupwizard.glade:
* pitivi/ui/startupwizard.py:
* pitivi/ui/webcam_managerdialog.py:
* po/POTFILES.in:
Move UI files to the data/ui directory.
2011-05-13 Stéphane Maniaci <[email protected]>
* Makefile.am:
* configure.ac:
* data/Makefile.am:
* data/icons/16x16/Makefile.am:
* data/icons/16x16/pitivi.png:
* data/icons/16x16/pitivi.svg:
* data/icons/22x22/Makefile.am:
* data/icons/22x22/pitivi.png:
* data/icons/22x22/pitivi.svg:
* data/icons/24x24/Makefile.am:
* data/icons/24x24/pitivi.png:
* data/icons/32x32/Makefile.am:
* data/icons/32x32/pitivi.png:
* data/icons/32x32/pitivi.svg:
* data/icons/48x48/Makefile.am:
* data/icons/48x48/pitivi.png:
* data/icons/48x48/pitivi.svg:
* data/icons/Makefile.am:
* data/icons/scalable/Makefile.am: