-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathChangeLog.pre-git
4761 lines (3492 loc) · 115 KB
/
ChangeLog.pre-git
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
2009-03-19 daniel g. siegel <[email protected]>
* MAINTAINERS:
added filippo to MAINTAINERS, welcome!
2009-03-16 daniel g. siegel <[email protected]>
* configure.ac,
wscript:
post release version bump
2009-03-16 daniel g. siegel <[email protected]>
* NEWS:
update NEWS file
2009-03-07 Filippo Argiolas <[email protected]>
* src/cheese-window.c:
Lock gdk mutex in photo-saved and video-saved callbacks
Those signals are emitted within a gstreamer callback so outside the
mainloop, hence the need for locking.
This fixes the flash locking issue and also the one about the grey
thumbview right after the flash.
Fixes bug #566098
2009-03-02 daniel g. siegel <[email protected]>
* configure.ac,
wscript:
post release version bump
2009-03-02 daniel g. siegel <[email protected]>
* NEWS:
update NEWS file
2009-03-01 Filippo Argiolas <[email protected]>
* src/cheese-webcam.c:
Remove g_error calls where the error is not supposed to abort
execution. Replace them with more suited g_warnings.
Fixes bug #562179
2009-02-28 Filippo Argiolas <[email protected]>
* src/cheese.c:
Print cheese verbose messages even if log dir doesn't exist.
Fixes bug #573573
2009-02-16 daniel g. siegel <[email protected]>
* configure.ac,
wscript:
post release version bump
2009-02-16 daniel g. siegel <[email protected]>
* NEWS:
update NEWS file
2009-02-16 Thomas H.P. Andersen <[email protected]>
* src/cheese-window.c:
Replace deprecated gtk symbols with hildon. Bug #571383
2009-02-02 daniel g. siegel <[email protected]>
* configure.ac,
wscript:
post release version bump
2009-02-02 daniel g. siegel <[email protected]>
* NEWS,
configure.ac,
wscript:
update NEWS file, correct release version
2009-01-15 daniel g. siegel <[email protected]>
* AUTHORS,
src/cheese-flash.c,
src/cheese-window.c:
changed thomas perls mail address
2009-01-14 Yair Hershkovitz <[email protected]>
* src/eog-thumb-nav.c:
Reverse icon view scroll buttons scroll direction for RTL locales.
Closes bug #566197.
2009-01-05 daniel g. siegel <[email protected]>
* configure.ac,
wscript:
post release version bump
2009-01-05 daniel g. siegel <[email protected]>
* NEWS:
update NEWS file
2008-12-15 daniel g. siegel <[email protected]>
* configure.ac,
wscript:
post release version bump
2008-12-15 daniel g. siegel <[email protected]>
* NEWS:
update NEWS file
2008-12-10 Kjartan Maraas <[email protected]>
* src/ephy-spinner.c:
* src/ephy-spinner.h:
* src/gedit-message-area.h:
Single includes fix. Patch from Pedro Fragoso.
Closes bug #563537.
2008-12-01 daniel g. siegel <[email protected]>
* configure.ac,
wscript:
post release version bump
2008-12-01 daniel g. siegel <[email protected]>
* NEWS:
update NEWS file
2008-11-23 Filippo Argiolas <[email protected]>
* src/cheese-webcam.c:
Print Vendor and Product Id while probing devices. Provide some more
device informations for easier bug triaging.
2008-11-21 Jaap Haitsma <[email protected]>
* src/cheese.c,
src/cheese-dbus.c,
src/cheese-fileutil.c,
src/cheese-webcam.c:
Remove unnecesary include files, to meet GnomeGoal
http://live.gnome.org/GnomeGoals/CleanupGTKIncludes
Don't know if I completed in entirely because make CFLAGS+="-DG_DISABLE_SINGLE_INCLUDES -DGDK_PIXBUF_DISABLE_SINGLE_INCLUDES -DGTK_DISABLE_SINGLE_INCLUDES" somehow fails somewhere on includes done by gtk files themselves :-(
2008-11-16 Filippo Argiolas <[email protected]>
* src/cheese-thumb-view.c:
Don't use random access GList methods when accessing a list
sequentially. Properly free list elements after use.
Fixes bug #560514, courtesy of Giuseppe Fuggiano
2008-11-15 Jaap Haitsma <[email protected]>
* configure.ac,
src/cheese-window.c,
wscript:
Use gtk_show_uri to open files and xdg-open i.s.o. gnome-open which
is part of libgnome and is deprecated
2008-11-15 Jaap Haitsma <[email protected]>
* src/cheese-window.c:
Use gtk_message_dialog_format_secondary_markup correctly
2008-11-13 daniel g. siegel <[email protected]>
* src/cheese.c:
print the cheese version if the -v flag is set
2008-11-13 daniel g. siegel <[email protected]>
* README,
src/cheese-window.c:
change the cheese homepage to projects.gnome.org
2008-11-11 daniel g. siegel <[email protected]>
* src/cheese-gconf.c:
free gslist properly without a memory leak, fixes bug #560347,
courtesy of Giuseppe Fuggiano
2008-11-09 daniel g. siegel <[email protected]>
* src/cheese-webcam.c:
cheese now works for cams which support only one resolution,
fixes bug #560032, courtesy of Hans de Goede
2008-11-04 daniel g. siegel <[email protected]>
* configure.ac,
wscript:
post release version bump
2008-11-04 daniel g. siegel <[email protected]>
* NEWS:
update NEWS file
2008-11-02 Felix Kaser <[email protected]>
* ChangeLog:
changed the ChangeLog file, because of an error in a previous changelog entry (no name/email)
2008-11-02 daniel g. siegel <[email protected]>
* src/cheese-countdown.c:
change the default font of the countdown widget to bitstream
vera sans bold
2008-10-20 daniel g. siegel <[email protected]>
* src/wscript_build,
wscript:
remove gnome-vfs dependency from waf
2008-10-17 Cosimo Cecchi <[email protected]>
* configure.ac:
* src/Makefile.am:
* src/cheese-thumb-view.c: (cheese_thumb_view_thread_append_item),
(cheese_thumb_view_init):
* src/cheese.c: (main):
* src/eog-thumbnail.c: (art_rgb_run_alpha):
Drop libgnome/libgnome-vfs dependencies (#556580).
2008-10-13 daniel g. siegel <[email protected]>
* src/cheese.c:
enhance the previous patch
2008-10-13 daniel g. siegel <[email protected]>
* wscript:
change the dependency of dbus to dbus-1
2008-10-13 Filippo Argiolas <[email protected]>
* src/cheese.c:
Exit correctly with unknown command line arguments, fixes bug
#556084.
2008-10-12 Felix Kaser <[email protected]>
* data/cheese.glade,
data/cheese.ui,
src/cheese-window.c:
Some ui changes to solve bug #548546! When in fullscreen
and effects chooser mode the fullscreen toolbar will remain
visible! This has been considered the best way.
2008-09-22 daniel g. siegel <[email protected]>
* configure.ac,
wscript:
post release version bump
2008-09-22 daniel g. siegel <[email protected]>
* NEWS:
update NEWS file
2008-09-19 daniel g. siegel <[email protected]>
* configure.ac,
README,
wscript:
update the cheese dependencies, fixes bug #547203
2008-09-16 daniel g. siegel <[email protected]>
* data/pixmaps/Makefile.am,
data/pixmaps/cheese-2.svg,
data/pixmaps/cheese-3.svg,
src/cheese-thumb-view.c:
nothing ;)
2008-09-15 daniel g. siegel <[email protected]>
* src/cheese-window.c:
use the correct translated plural form when deleting more than
one item from the thumbnail bar, fixes bug #552290, courtesy
of Yuriy Penkin
2008-09-14 daniel g. siegel <[email protected]>
* src/cheese-thumb-view.c:
do not add a new item to the thumbnail bar, if its already
there, fixes bug #549804
2008-09-10 Filippo Argiolas <[email protected]>
* src/cheese.c:
include gio header in cheese.c
2008-09-09 daniel g. siegel <[email protected]>
* configure.ac,
wscript:
post release version bump
2008-09-09 daniel g. siegel <[email protected]>
* NEWS:
update NEWS file
2008-09-09 daniel g. siegel <[email protected]>
* src/cheese-fileutil.c,
src/cheese-fileutil.h,
src/cheese.c:
old photos and videos (before 2.24) are now available in cheese
2.24, fixes bug #547290
2008-09-09 Filippo Argiolas <[email protected]>
* src/cheese-webcam.c:
sort videoformat array and resolution hashtable, courtesy of Hans
de Goede
2008-09-09 Filippo Argiolas <[email protected]>
* src/cheese-webcam.c,
src/cheese-webcam.h:
dont save duplicated videoformats abut only keep the one with the
maximum framerate if it provides the same resolution. add
correspondent entry only once to the resolution hashtable so that
we have no more duplicated resolutions on preferences dialog.
Fixes bugs #547144 and #547140, courtesy of Hans de Goede
2008-09-08 daniel g. siegel <[email protected]>
* src/cheese.c:
remove the old log file if it exists
2008-09-08 Filippo Argiolas <[email protected]>
* src/cheese-webcam.c:
send eos event only if the pipeline was playing, otherwise force
shutdown. Start a timeout to force unclean shutdown if eos takes
to much to propagate or doesnt propagate at all. Probably fixes
bug #547422
2008-09-08 Filippo Argiolas <[email protected]>
* src/cheese-window.c:
set take_picture sensitiveness before webcam_stop_video_recording
since this emits a signal that would lead to another
sensitiveness change. see comments on bug #547422
2008-09-08 daniel g. siegel <[email protected]>
* data/cheese.glade,
data/cheese.ui:
set the utility hint for the fullscreen toolbar, partially
fixes #548546
2008-09-08 daniel g. siegel <[email protected]>
* src/cheese-window.c:
small indenting change
2008-09-08 daniel g. siegel <[email protected]>
* data/cheese-bugreport.sh,
src/cheese.c:
rename the log file to "log.txt" and prepend it with the
running cheese version
2008-09-05 daniel g. siegel <[email protected]>
* src/cheese-webcam.c,
src/cheese-webcam.h:
fix various issues with cheese, tv-cards and other strange
devices, fixes bug #546868, courtesy of Hans de Goede
2008-09-02 daniel g. siegel <[email protected]>
* AUTHORS,
src/cheese-prefs-webcam-combo.c:
cheese crashes no more when no device is set in gconf, partially
fixes bug #546868, courtesy of Hans de Goede
2008-09-02 daniel g. siegel <[email protected]>
* src/cheese-window.c:
display toolbar when entering into fullscreen mode, fixes bug
#548546, courtesy of Felix Kaser
2008-09-01 daniel g. siegel <[email protected]>
* configure.ac,
wscript:
post release version bump
2008-09-01 daniel g. siegel <[email protected]>
* NEWS:
update NEWS file
2008-09-01 daniel g. siegel <[email protected]>
* data/cheese.desktop.in.in:
cheese.desktop file now respects freedesktop SPEC, fixes bug
#550195, courtesy of Pacho Ramos
2008-08-23 daniel g. siegel <[email protected]>
* src/cheese-countdown.c,
src/cheese-countdown.h,
src/cheese-dbus.c,
src/cheese-dbus.h,
src/cheese-effect-chooser.c,
src/cheese-effect-chooser.h,
src/cheese-fileutil.c,
src/cheese-fileutil.h,
src/cheese-flash.c,
src/cheese-flash.h,
src/cheese-gconf.c,
src/cheese-gconf.h,
src/cheese-no-camera.c,
src/cheese-no-camera.h,
src/cheese-prefs-dialog-widgets.c,
src/cheese-prefs-dialog-widgets.h,
src/cheese-prefs-dialog.c,
src/cheese-prefs-dialog.h,
src/cheese-prefs-resolution-combo.c,
src/cheese-prefs-resolution-combo.h,
src/cheese-prefs-webcam-combo.c,
src/cheese-prefs-webcam-combo.h,
src/cheese-prefs-widget.c,
src/cheese-prefs-widget.h,
src/cheese-thumb-view.c,
src/cheese-thumb-view.h,
src/cheese-webcam.c,
src/cheese-webcam.h,
src/cheese-window.c,
src/cheese-window.h,
src/cheese.c,
tools/cheese-indent.cfg:
a small syntax cleanup made with uncrustify
2008-08-22 daniel g. siegel <[email protected]>
* tools/cheese-indent.cfg:
uncrustify config update
2008-08-22 daniel g. siegel <[email protected]>
* tools/cheese-indent.cfg,
tools/indent.sh:
add the uncrustify indenting config
2008-08-20 daniel g. siegel <[email protected]>
* data/wscript_build,
help/wscript_build,
waf,
wscript:
waf did not install the files properly, now it does
2008-08-20 daniel g. siegel <[email protected]>
* data/org.gnome.Cheese.service.in:
add the dynamic bindir to the dbus file
2008-08-20 daniel g. siegel <[email protected]>
* src/Makefile.am,
src/cheese-dbus.c,
src/wscript_build,
waf:
update waf to 1.4.3 and make it working again
2008-08-18 daniel g. siegel <[email protected]>
* configure.ac,
wscript:
post release version bump
2008-08-18 daniel g. siegel <[email protected]>
* acinclude.m4,
configure.ac,
data/Makefile.am:
fix some dbus-autotool regression, which prevented building
cheese correctly
2008-08-18 daniel g. siegel <[email protected]>
* NEWS:
update NEWS file
2008-08-17 daniel g. siegel <[email protected]>
* data/cheese.glade,
data/cheese.ui:
change order of buttons in fullscreen mode
2008-08-17 daniel g. siegel <[email protected]>
* src/cheese-countdown.c,
src/cheese-thumb-view.c,
src/cheese.c:
small syntax cleanup
2008-08-17 daniel g. siegel <[email protected]>
* src/cheese-window.c:
call gdk_x11_window_set_user_time to raise the cheese window
if its called twice
2008-08-16 daniel g. siegel <[email protected]>
* acinclude.m4:
fix messed up acinclude.m4
2008-08-16 daniel g. siegel <[email protected]>
* data/org.gnome.Cheese.service.in:
fix messed up dbus service file
2008-08-16 daniel g. siegel <[email protected]>
* src/cheese-dbus.c,
src/cheese-dbus.h:
small syntax cleanup and removing of an unneeded variable
2008-08-16 Filippo Argiolas <[email protected]>
* data/org.gnome.Cheese.service,
data/org.gnome.Cheese.service.in:
another one, sorry :)
2008-08-16 Filippo Argiolas <[email protected]>
* acinclude.m4:
I forgot to add acinclude.m4, sorry.
2008-08-16 Filippo Argiolas <[email protected]>
* src/cheese.c:
notify startup if another istance is found (normally that would be
done by gtk when opening the window but we exit without create any
window so we have to do it manually)
2008-08-16 Filippo Argiolas <[email protected]>
* configure.ac,
data/Makefile.am,
data/org.gnome.Cheese.service,
src/cheese.c,
src/cheese-dbus.c,
src/cheese-dbus.h,
src/cheese-dbus-infos.xml,
src/cheese-window.c,
src/cheese-window.h,
src/Makefile.am:
Don't start cheese twice if another instance is running. First part
of Felix Kaser's work with cheese and dbus. Fixes bug #527736.
2008-08-16 Filippo Argiolas <[email protected]>
* src/cheese.c:
remove gtk_init and gst_init, according to the docs these are not
needed if we use gtk_get_option_group and gst_init_get_option_group
2008-08-13 daniel g. siegel <[email protected]>
* src/cheese-window.c:
remove unneeded gtkwidget label_effects_fullscreen
2008-08-13 daniel g. siegel <[email protected]>
* data/cheese.glade,
data/cheese.ui:
align the buttons with the thumbnail bar
2008-08-13 Patryk Zawadzki <[email protected]>
* src/eog-thumb-nav.c:
hide scrollbar when not needed
2008-08-12 daniel g. siegel <[email protected]>
* data/cheese.glade,
data/cheese.ui:
remove the relief of all buttons in the fullscreen toolbar
2008-08-12 daniel g. siegel <[email protected]>
* data/cheese.glade,
data/cheese.ui,
src/cheese-countdown.c,
src/cheese-countdown.h,
src/cheese-window.c:
improve the fullscreen mode, fixes bug #547405, courtesy of
Felix Kaser
2008-08-12 daniel g. siegel <[email protected]>
* src/cheese-thumb-view.c:
select the last thumbnail item, if the last one was deleted
2008-08-12 daniel g. siegel <[email protected]>
* src/cheese-countdown.c:
hitting space when the countdown has already begun, distorts
the countdown, fixes bug #547403
2008-08-12 Filippo Argiolas <[email protected]>
* src/cheese-thumb-view.c,
src/cheese-thumb-view.h,
src/cheese-window.c:
Test for file existence before moving to trash. Remove item
from thumbview if trashing succeeds (don't wait for monitor
to notice). Untabify cheese-window.c
2008-08-12 daniel g. siegel <[email protected]>
* tools/cicl:
update cicl
2008-08-12 daniel g. siegel <[email protected]>
* data/gtkrc:
a dynamic growing slider length is much better than a static one
2008-08-11 Patryk Zawadzki <[email protected]>
* src/cheese-window.c,
src/cheese.c,
src/eog-thumb-nav.c,
src/eog-thumb-nav.h,
src/Makefile.am,
data/cheese.ui,
data/Makefile.am,
data/wscript_build,
data/gtkrc:
Use eog's thumbnail browser widget. Fixes bug #511916.
2008-08-11 Filippo Argiolas <[email protected]>
* src/cheese-window.c:
Disable action_effects while setup_camera is running. Fixes bug
#547313
2008-08-11 daniel g. siegel <[email protected]>
* src/cheese-window.c:
add people who contributed to cheese to the cheese about window
2008-08-11 Filippo Argiolas <[email protected]>
* src/cheese-webcam.c,
src/cheese-window.c:
Give a detailed error message if some gstreamer element is missing.
Patch from Todd Eisenberger (slightly modified). Fixes bug #522009.
2008-08-10 daniel g. siegel <[email protected]>
* data/cheese.schemas.in:
some gconf translation improvements, fixes bug #547168
2008-08-10 daniel g. siegel <[email protected]>
* data/cheese.schemas.in:
add a translator comment to our schema file
2008-08-10 Filippo Argiolas <[email protected]>
* src/cheese-window.c:
Connect button_photo and button_video as proxy widgets for relative
RadioActions. This makes the code more simple and clean.
2008-08-08 Filippo Argiolas <[email protected]>
* src/cheese-window.c:
Change action_files sensitiveness on "selection-changed" event.
Fixes bug 546918
2008-08-08 Filippo Argiolas <[email protected]>
* src/cheese-webcam.c:
don't try to find highest framerate if format is NULL, courtesy of
Todd Eisenberger
2008-08-07 daniel g. siegel <[email protected]>
* data/cheese.schemas.in,
src/cheese-gconf.c:
selected effects gconf key values are now standardized, fixes bug #513776
2008-08-07 Filippo Argiolas <[email protected]>
* src/cheese-window.c:
Better hig compliant alert for missing gstreamer elements. Patch
from bug #522009
2008-08-07 Filippo Argiolas <[email protected]>
* data/cheese.schemas.in,
data/cheese-ui.xml,
src/cheese-gconf.c,
src/cheese-gconf.h,
src/cheese-window.c:
Add a Delete action to immediately delete files without moving to
trash. It can be hidden with the new enable_delete gconf key.
2008-08-07 daniel g. siegel <[email protected]>
* data/cheese.desktop.in.in:
use "Cheese Webcam Booth" instead of "Cheese" as the desktop entry name, fixes bug #543976
2008-08-07 daniel g. siegel <[email protected]>
* src/cheese-thumb-view.c,
src/cheese-thumb-view.h,
src/cheese-window.c:
add multiple selection in the picture listing pane, fixes bug #481405
2008-08-07 daniel g. siegel <[email protected]>
* AUTHORS,
src/cheese-webcam.c,
src/cheese-window.c:
correct critical warnings, if some gstreamer plugins arent available, fixes bug #522009, courtesy of Todd Eisenberger
2008-08-07 daniel g. siegel <[email protected]>
* src/cheese-window.c:
remove useless g_free which produced a warning
2008-08-06 daniel g. siegel <[email protected]>
* src/cheese-thumb-view.c:
remove a useless printf
2008-08-06 daniel g. siegel <[email protected]>
* src/cheese-thumb-view.c:
Chuck Norris doesn't play god. Playing is for children.
2008-08-05 Filippo Argiolas <[email protected]>
* src/cheese-thumb-view.c:
don't trust a gboolean to be false
2008-08-05 daniel g. siegel <[email protected]>
* src/cheese-window.c:
use g_random_int instead of g_rand_int
2008-08-05 daniel g. siegel <[email protected]>
* data/pixmaps/Makefile.am,
data/wscript_build:
add missing icons to waf and autotools
2008-08-05 daniel g. siegel <[email protected]>
* AUTHORS,
data/pixmaps/cheese-1.svg,
src/cheese-thumb-view.c:
add the multiplex thumbnail generator algorithm
2008-08-05 Filippo Argiolas <[email protected]>
* src/cheese-thumb-view.c:
Free ThumbViewThreadData. Remove redundant setting for url and
basename column.
2008-08-05 Filippo Argiolas <[email protected]>
* src/cheese-window.c:
Disable "Start recording" button until the recording pipeline
properly shuts down.
2008-08-05 Filippo Argiolas <[email protected]>
* src/cheese-thumb-view.c:
remove a dummy g_message I used for debug
2008-08-05 Filippo Argiolas <[email protected]>
* src/cheese-thumb-view.c:
Save generated thumbnails. It seems I removed it without notice,
sorry.
2008-08-05 daniel g. siegel <[email protected]>
* src/cheese-thumb-view.c:
resolve wrong sorting issue of the thumbnails, fixes bug #546390
2008-08-05 Filippo Argiolas <[email protected]>
* src/cheese-thumb-view.c:
free a strdup-ed string
2008-08-05 daniel g. siegel <[email protected]>
* configure.ac,
wscript:
post release version bump
2008-08-05 daniel g. siegel <[email protected]>
* NEWS:
update NEWS file
2008-08-05 daniel g. siegel <[email protected]>
* src/cheese-countdown.c,
src/cheese-effect-chooser.c,
src/cheese-fileutil.c,
src/cheese-fileutil.h,
src/cheese-gconf.c,
src/cheese-gconf.h,
src/cheese-no-camera.h,
src/cheese-prefs-webcam-combo.c,
src/cheese-thumb-view.c,
src/cheese-thumb-view.h,
src/cheese-webcam.c,
src/cheese-window.c,
src/cheese.c:
small syntax cleanup
2008-08-04 daniel g. siegel <[email protected]>
* src/cheese-window.c:
use gtk stock for fullscreen
2008-08-04 daniel g. siegel <[email protected]>
* src/cheese-window.c:
add a mnemonic and the correct spelling to the fullscreen option
2008-08-04 daniel g. siegel <[email protected]>
* data/cheese-ui.xml,
src/cheese-window.c:
add a fullscreen mode for kiosks, fixes #478852, courtesy of Felix Kaser
2008-08-04 daniel g. siegel <[email protected]>
* src/cheese-thumb-view.c:
wait until the video has been recorded, to add it to the thumbnail bar, partially fixes #545212
2008-08-04 Filippo Argiolas <[email protected]>
* src/cheese-thumb-view.c,
src/cheese-window.c:
Move thumbnail generation to its own thread.
Display a loading icon while generating thumbnail.
Display a fallback icon if thumbnail generation fails.
Fixes #545151. Partially fixes #545212.
Fix a segfault in cheese-window while deleting both videos and
photos.
2008-08-04 Filippo Argiolas <[email protected]>
* src/cheese-window.c:
Delete files if move_to_trash fails. Support for Skip, Skip All,
Delete All to resemble common nautilus behavior. Fixes #545950
2008-08-02 Filippo Argiolas <[email protected]>
* src/cheese-window.c:
another uninitialized GError (see previous commit)
2008-08-02 Filippo Argiolas <[email protected]>
* src/cheese-window.c:
initialize error in move_file_to_trash to NULL, fixes #545997
2008-07-28 Filippo Argiolas <[email protected]>
* src/cheese-webcam.c:
add a videorate element to video_save_bin, fixes (partially?) #542014
2008-07-26 daniel g. siegel <[email protected]>
* tools/cicl:
add the cicl script to cheese, and try to gain the world domination with this first step
2008-07-23 Filippo Argiolas <[email protected]>
* src/cheese-window.c:
connect button_effects as a proxy widget for Effects ToggleAction so
they behave coherently. Fixes bug #539195
2008-07-22 Filippo Argiolas <[email protected]>
* src/cheese-prefs-webcam-combo.c:
Don't try to access selected_device->video_device if there is no
device. Fixes bug #544062
2008-07-21 daniel g. siegel <[email protected]>
* configure.ac,
wscript:
post release version bump
2008-07-21 daniel g. siegel <[email protected]>
* AUTHORS,
NEWS:
update NEWS and AUTHOR file
2008-07-08 daniel g. siegel <[email protected]>
* wscript:
bump waf requirements
2008-07-05 Filippo Argiolas <[email protected]>
* AUTHORS,
configure.ac,
src/cheese-webcam.c:
Bump gstreamer requirements to 0.10.16.
Use gst_element_send_event to cleanly shutdown video recording.
Fixes #523475.
2008-07-05 Filippo Argiolas <[email protected]>
* src/cheese.c:
fixes cheese_print_handler, path string was being used after
unreferencing its owner (fileutil)
2008-06-28 daniel g. siegel <[email protected]>
* src/cheese-fileutil.h:
use ogv as default video extension, fixes bug #524021
2008-06-28 daniel g. siegel <[email protected]>
* src/cheese-thumb-view.c:
small syntax cleanup
2008-06-28 daniel g. siegel <[email protected]>
* src/cheese-flash.c:
remove a unused variable, which produced a warning
2008-06-23 Jaap Haitsma <[email protected]>
* src/cheese.c,
src/cheese-prefs-webcam-combo.c,
src/cheese-webcam.c,
src/cheese-webcam.h,
src/cheese-window.c,
src/cheese-window.h:
Make hal-device-id command line option work
Fixes bug #498023. Patch by zeiglerr at gmail dot com
2008-06-22 Marc-Andre Lureau <[email protected]>
* src/cheese-webcam.c: Removed include <X11/extensions/xf86vmode.h>
Fixes bug #539631.
2008-06-22 daniel g. siegel <[email protected]>
* src/cheese-window.c:
fix typo, which prevented hildon mode to compile cleanly
2008-06-19 daniel g. siegel <[email protected]>
* AUTHORS,
data/cheese-prefs.glade,
data/cheese-prefs.ui,
src/Makefile.am,
src/cheese-prefs-dialog.c,
src/cheese-prefs-dialog.h,
src/cheese-prefs-webcam-combo.c,
src/cheese-prefs-webcam-combo.h,
src/cheese-webcam.c,
src/cheese-webcam.h,
src/cheese-window.c:
allow to choose the webcam using the preference dialog, fixes bug #522200, courtesy of Ryan Zeigler
2008-06-19 Cosimo Cecchi <[email protected]>
* src/cheese-countdown.c: (do_text):
* src/cheese-thumb-view.c: (cheese_thumb_view_fill):
* src/cheese-window.c: (cheese_window_cmd_save_as),
(cheese_window_cmd_move_file_to_trash),
(cheese_window_cmd_set_about_me_photo),
(cheese_window_countdown_picture_cb), (setup_camera):
Fix some gcc warnings. (#537490).
2008-06-16 daniel g. siegel <[email protected]>
* configure.ac,
wscript:
post release version bump