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
|
============ Version 0.12.0
2009-02-19 Bastien Nocera <hadess@hadess.net>
* NEWS: upd
* configure.in: 0.12.0
2009-02-19 Bastien Nocera <hadess@hadess.net>
* Makefile.am:
* configure.in:
* data/.cvsignore:
* data/Makefile.am:
* data/gnome-obex-server.schemas.in:
* obex/.cvsignore:
* obex/Makefile.am:
* obex/gnome-obex-server.c:
* obex/gnome-obex-server.desktop.in:
* obex/util.c:
* obex/util.h:
* src/Makefile.am:
* src/fileactiondialog.gob:
* src/gnomebt-fileactiondialog-test.c:
* src/gnomebt-icons.c:
* src/gnomebt-icons.h:
* src/gnomebt-permissiondialog-test.c:
* src/permissiondialog.gob: Remove gnome-obex-server,
it's been replaced by gnome-user-share a long time ago,
remove unused permission and fileaction dialogues
2008-12-17 Przemysław Grzegorczyk <pgrzegorczyk@gmail.com>
* src/spinner.gob: Cleaned up gtk includes
to use only toplevel headers. Bug #564267.
============ Version 0.11.0
2008-01-21 Bastien Nocera <hadess@hadess.net>
* NEWS: upd
* configure.in: 0.11.0
2008-01-21 Bastien Nocera <hadess@hadess.net>
* Makefile.am:
* ui/.cvsignore:
* ui/Makefile.am:
* ui/gnome-obex-send.glade: Remove more sendto files
2008-01-21 Bastien Nocera <hadess@hadess.net>
* obex/Makefile.am:
* obex/chooser.c:
* obex/chooser.h:
* obex/gnome-obex-send.c: Kill gnome-obex-send,
Use bluetooth-sendto from bluez-gnome now
============ Version 0.10.0
2008-01-21 Bastien Nocera <hadess@hadess.net>
* NEWS: upd
* configure.in: 0.10.0
2007-12-17 Bastien Nocera <hadess@hadess.net>
* obex/gnome-obex-send.c: (send_one): Patch from Baptiste
Mille-Mathias <bmm80@free.fr> to use the unescaped filename
when pushing files to other devices, so as to avoid filenames
like foo%20bar.jpg showing up on the remote device
(Closes: #423649)
2007-08-31 Bastien Nocera <hadess@hadess.net>
* MAINTAINERS: upd
============ Version 0.9.1
2007-07-23 Bastien Nocera <hadess@hadess.net>
* NEWS: upd
* configure.in: 0.9.1
2007-07-22 Bastien Nocera <hadess@hadess.net>
* obex/gnome-obex-server.c: (put_callback): Don't crash when receiving
a file, thanks to Raphaël for triggering the stupid reversed condition
============ Version 0.9.0
2007-07-12 Bastien Nocera <hadess@hadess.net>
* NEWS: upd
* configure.in: 0.9.0
* Makefile.am:
* obex/Makefile.am:
* src/Makefile.am: Fix make distcheck
* libegg/*: Remove rest of libegg
2007-07-11 Bastien Nocera <hadess@hadess.net>
* configure.in: Up the version, for our testing, require a newer GTK+
for the tray icon
* gnome-bluetooth.pc.in: require libgnomeui-2.0, it's really needed
* obex/gnome-obex-server.c: (put_callback): use g_file_set_contents()
instead of our crappy function, remove a whole load of unneeded included
headers
2007-07-10 Bastien Nocera <hadess@hadess.net>
* obex/gnome-obex-send.c: (disconnected_callback), (send_one),
(mainloop): Patch from Allen Hubbe <allenbh@gmail.com> to send
a disconnect when we're finished sending a file (Closes: #452970)
2007-07-10 Bastien Nocera <hadess@hadess.net>
* configure.in: Patch from Andreas Hanke <andreas.hanke@gmx-topmail.de>
to avoid checking for libraries we don't use (Closes: #409813)
2007-05-18 Bastien Nocera <hadess@hadess.net>
* MAINTAINERS:
* Makefile.am: add a maintainers file
2006-12-29 Bastien Nocera <hadess@hadess.net>
* Makefile.am:
* autogen.sh:
* configure.in:
* obex/Makefile.am:
* obex/gnome-obex-server.c:
Patch from Christian Persch <chpe@gnome.org> to kill libegg
usage in the Obex server (Closes: #349303)
2006-12-15 Christian Persch <chpe@cvs.gnome.org>
* configure.in:
* po/LINGUAS: Use intltool 0.35.0 and use po/LINGUAS. Bug #385928.
2006-10-04 Raivis Dejus <orvils@gmail.com>
* configure.in: Added "lv" (Latvian) to ALL_LINGUAS.
* po/lv.po: Added Latvian Translation.
============ Version 0.8.0
2006-09-18 Bastien Nocera <hadess@hadess.net>
* Makefile.am:
* NEWS:
* configure.in:
Finish removal of the gnome-bluetooth-manager,
release 0.8.0
2006-09-18 Bastien Nocera <hadess@hadess.net>
* Makefile.am:
* python/.cvsignore:
* python/Makefile.am:
* python/__init__.py:
* python/gnome-bluetooth-manager.desktop.in:
* python/gnome-bluetooth-manager.in:
* python/gtkobject-support.c:
* python/hig_alert.py:
* python/iconlist.defs:
* python/iconlist.override:
* python/iconlistmodule.c:
* python/manager.py:
* python/pyegg-private.h:
* python/testiconlist.py:
Remove the useless gnome-bluetooth-manager, won't disturb us
anymore for now
* src/permissiondialog.gob: remove unneeded GConf include
2006-09-08 Pema Geyleg <pgeyleg@gmail.com>
* configure.in: Added dz to ALL_LINGUAS
2006-07-10 Kostas Papadimas <pkst@gnome.org>
* configure.in: Added el to ALL_LINGUAS.
2006-05-04 Bastien Nocera <hadess@hadess.net>
* src/Makefile.am: patch from Diego Pettenò to fix compilation
when using -Wl,--as-needed (Closes: #340067)
2006-04-30 Josep Puigdemont Casamajó <josep.puigdemont@gmail.com>
* configure.in: Added ca to ALL_LINGUAS.
2006-04-26 Bastien Nocera <hadess@hadess.net>
* src/controller.gob:
* src/gconftest.c: (main):
* src/gnomebt-controller-test.c: (main): Fix build for the libbtctl
changes in CVS
2006-04-26 Bastien Nocera <hadess@hadess.net>
* configure.in:
* python/Makefile.am: Fix variable-substitutions in the
gnome-bluetooth-manager script
2006-04-26 Bastien Nocera <hadess@hadess.net>
* autogen.sh:
* python.m4: Remove the python.m4 file, it is shipped with automake,
so people can't blame us for automake's bugs (Closes: #149710)
2006-04-20 Bastien Nocera <hadess@hadess.net>
* autogen.sh:
* gob2.m4: add gob's .m4 file to avoid weird error messages when
building from CVS
2006-04-19 Bastien Nocera <hadess@hadess.net>
* autogen.sh:
* bluez-libs.m4:
* bluez-sdp.m4:
* configure.in:
* obex/Makefile.am:
* src/controller.gob:
* src/gnomebt-controller-test.c:
Remove direct bluez and obex dependencies, and unneeded gnome-vfs
module pkg-config check (Closes: #339073)
2006-04-18 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: More cruft removal
* po/no.po:
2006-04-17 Bastien Nocera <hadess@hadess.net>
* obex/gnome-obex-server.c: (get_save_dir),
(get_display_notifications), (put_callback): save to
~/Desktop/Downloads by default, then fallback to ~/Desktop and ~/
(Closes: #317229), fixes a memory leak for each received file
2006-04-06 Bastien Nocera <hadess@hadess.net>
* obex/gnome-obex-send.c: (send_one): allow passing URIs as well
as filenames
2006-03-15 Bastien Nocera <hadess@hadess.net>
* configure.in: Require gtk+ 2.6.0, we can't build with older versions
2006-02-10 Rodney Dawes <dobey@novell.com>
* python/manager.py (image_file): Add __datadir__/../pixmaps to the
list of paths to look for images in
Fixes #323664
2006-01-29 Bastien Nocera <hadess@hadess.net>
* obex/gnome-obex-server.c: (put_callback): update for new signal
prototype in libbtctl
2006-01-07 Ilkka Tuohela <hile@iki.fi>
* configure.in: Added fi to ALL_LINGUAS.
2005-12-31 Abel Cheung <maddog@linuxhall.org>
* configure.in: Added "mk" "vi" "zh_HK" "zh_TW" to ALL_LINGUAS.
2005-12-21 Bastien Nocera <hadess@hadess.net>
* configure.in: add a minimum GConf 2.3.3 req for
GCONF_UNSET_INCLUDING_SCHEMA_NAMES
2005-12-16 Lasse Bang Mikkelsen <lbm@fatalerror.dk>
* configure.in: Added Danish translation to ALL_LINGUAS.
2005-11-23 Bastien Nocera <hadess@hadess.net>
* obex/Makefile.am:
* obex/gnome-obex-send.c: (main):
* ui/gnome-obex-send.glade: Fix the icon not being available for
gnome-obex-send
============ Version 0.7.0
2005-11-21 Bastien Nocera <hadess@hadess.net>
* NEWS: upd
* configure.in: 0.7.0
2005-11-19 Bastien Nocera <hadess@hadess.net>
* bluez-libs.m4:
* bluez-sdp.m4: python, and underquoting, patches from Stanislav
Brabec <sbrabec@suse.cz>
* gnome-vfs/*: deleted
* obex/gnome-obex-server.desktop.in:
* pixmaps/Makefile.am:
* python.m4:
* python/gnome-bluetooth-manager.desktop.in:
Install the blueradio-48.png file in $(datadir)/pixmaps so that the
menu icons appear (Closes: #300311)
2005-11-19 Bastien Nocera <hadess@hadess.net>
* pixmaps/.cvsignore:
* ui/.cvsignore: upd
2005-11-19 Bastien Nocera <hadess@hadess.net>
* Makefile.am:
* configure.in:
* pixmaps/Makefile.am:
* ui/Makefile.am: install the .glade and .png files using proper
Makefiles, rather than dist and install hooks
2005-11-19 Bastien Nocera <hadess@hadess.net>
* src/controller.gob: more return value fixing, patch from Stanislav
Brabec <sbrabec@suse.cz>
2005-11-19 Bastien Nocera <hadess@hadess.net>
* src/spinner-test.c: (spin_me), (main): return values as we said
we would
2005-11-19 Bastien Nocera <hadess@hadess.net>
* python/Makefile.am:
* python/gnome-bluetooth-manager.in:
* src/Makefile.am: Fixes python detection on bi-arch systems, patch
from Stanislav Brabec <sbrabec@suse.cz>
2005-11-19 Bastien Nocera <hadess@hadess.net>
* src/controller.gob: Include header files properly using only paths
defined in .pc file, patch from Stanislav Brabec <sbrabec@suse.cz>
2005-11-19 Bastien Nocera <hadess@hadess.net>
* obex/gnome-obex-send.c: (get_obex_channel):
* src/controller.gob:
* src/fileactiondialog.gob:
* src/gnomebt-controller-test.c: (main):
* src/gnomebt-controller.override: Fix casting warnings with GCC 4.x,
patch from Stanislav Brabec <sbrabec@suse.cz>
2005-11-17 Bastien Nocera <hadess@hadess.net>
* configure.in: add Belorussian translation
2005-10-08 Bastien Nocera <hadess@hadess.net>
* src/gconftest.c: (main):
* src/spinner-test.c: (on_start_clicked), (main):
Fix build for current libbtctl CVS
2005-09-23 Bastien Nocera <hadess@hadess.net>
* obex/gnome-obex-send.c: (is_palm_device), (main): slightly more
appropriate message if the device is a Palm
2005-09-09 Bastien Nocera <hadess@hadess.net>
* autogen.sh: required automake 1.8
* configure.in: dist as .tar.bz2 and checking the NEWS file before
make dist
* src/fileactiondialog.gob: don't use uri after it was freed, make
sure that a URI was created before using it
* src/gnomebt-fileactiondialog-test.c: (main): check that the
files exist before running the tests
2005-09-05 Bastien Nocera <hadess@hadess.net>
* src/controller.gob: fix 2 memory leaks, gconf_client_get_string
already returns a newly-allocated string
* src/permissiondialog.gob: fix a double-free
2005-08-24 Pawan Chitrakar <pchitrakar@gmail.com>
* configure.in: Added ne in ALL_LINGUAS
============ Version 0.6.0
2005-08-16 Bastien Nocera <hadess@hadess.net>
* src/.cvsignore: added *.defs
* src/Makefile.am: remove unneeded target
* src/gnomebt-chooser.defs:
* src/gnomebt-controller.defs: remove generated files from CVS
2005-08-16 Bastien Nocera <hadess@hadess.net>
* Makefile.am: add data to the subdirs
* python/Makefile.am: add testiconlist.py to the EXTRA_DIST
2005-08-16 Bastien Nocera <hadess@hadess.net>
* NEWS: upd
* configure.in:
* src/Makefile.am: version the libtool libraries properly
2005-08-07 Bastien Nocera <hadess@hadess.net>
* python/manager.py: Patch from Harald Hoyer to make
gnome-bluetooth-manager run on recent pygtk versions (Closes: #172320)
2005-08-06 Bastien Nocera <hadess@hadess.net>
* configure.in:
* src/Makefile.am: Fix hard-coded h2def path in the Makefiles
(Closes: #153429)
2005-08-01 Bastien Nocera <hadess@hadess.net>
* configure.in:
* obex/gnome-obex-server.c: (allowed_to_put):
* src/gnomebt-permissiondialog-test.c: (main):
* src/permissiondialog.gob: Require gtk+ 2.4, make the permission
dialog more HIG compliant, and split the strings to translate
(Closes: #150117)
2005-06-22 Bastien Nocera <hadess@hadess.net>
* src/fileactiondialog.gob: Remove markup from translatable message
(Closes: #150115)
2005-06-22 Bastien Nocera <hadess@hadess.net>
* python/hig_alert.py:
* python/manager.py:
* python/testiconlist.py: patch from Olav Vitters
<bugzilla-gnome@bkor.dhs.org> to remove the use of deprecated
functions (Closes: #305677)
2005-06-22 Bastien Nocera <hadess@hadess.net>
* configure.in: require the same version of libbtctl in both tests
2005-06-18 Bastien Nocera <hadess@hadess.net>
* python/manager.py: fix s/bluetooth/Bluetooth/ in user-visible
strings (Closes: #150111)
2005-06-12 Bastien Nocera <hadess@hadess.net>
* orbit/.cvsignore:
* ui/gnome-obex-send.gladep:
* ui/obex-send-strings.c: Remove unused files
2005-06-12 Bastien Nocera <hadess@hadess.net>
* Makefile.am:
* configure.in:
* nautilus/.cvsignore:
* nautilus/GNOME_Bluetooth_Component.server.in.in:
* nautilus/Makefile.am:
* nautilus/gnome-bluetooth-component.c:
* nautilus/gnome-bluetooth-component.h:
* nautilus/libmain.c: remove the nautilus extension, sending bluetooth
files over bluetooth is now handled by nautilus-sendto
2005-06-11 Bastien Nocera <hadess@hadess.net>
* data/.cvsignore: well, duh!
2005-06-11 Bastien Nocera <hadess@hadess.net>
* data/.cvsignore: added
* src/.cvsignore: upd
2005-06-11 Bastien Nocera <hadess@hadess.net>
* src/Makefile.am:
* src/gnomebt-controller-test.c: (main):
* src/spinner-test.c: (spin_me), (on_start_clicked),
(on_stop_clicked), (main): added a simple test for the spinner widget
2005-06-11 Bastien Nocera <hadess@hadess.net>
* src/controller.gob: patch from Marc O'Morain <marc.omorain@gmail.com>
to add some assertions
2005-06-06 Ignacio Casal Quinteiro <nacho.resa@gmail.com>
* configure.in: Added 'gl' to ALL_LINGUAS.
2005-04-01 Steve Murphy <murf@e-tools.com>
* configure.in: Added "rw" to ALL_LINGUAS.
2005-02-27 Alessio Frusciante <algol@firenze.linux.it>
* configure.in: Added "it" (Italian) to ALL_LINGUAS.
2005-02-17 Alexander Shopov <ash@contact.bg>
* configure.in: Added "bg" (Bulgarian) to ALL_LINGUAS
2005-01-15 Edd Dumbill <edd@usefulinc.com>
* obex/gnome-obex-server.c: patch from Tuomas Salo. Use new
timestamp parameter on OBEX PUT to preserve timestamp.
Add get_display_notifications() to look for the gconf key
/apps/gnome-obex-server/receive_notification, controlling whether
dialog is shown when files received.
Move /system/bluetooth/obex-savedir to
/apps/gnome-obex-server/savedir.
* data/Makefile.am, data/gnome-obex-server.schemas.in: create schemas
for gconf keys.
* src/fileaction.gob: replace 'Save' button with 'Close'
* configure.in: require libbtctl 0.5.0 or better
2005-01-07 Edd Dumbill <edd@usefulinc.com>
* obex/gnome-obex-server.c: Change translator_credits to
translator-credits. Regenerate pot file.
* po/*.po: update all po files for translator-credits.
2004-11-06 Amanpreet Singh Alam<aalam@redhat.com>
* configure.in: Add pa [Punjabi] to ALL_LINGUAS
2004-04-30 Leonid Kanter <leon@asplinux.ru>
* configure.in: Added 'ru' (Russian) to ALL_LINGUAS.
2004-09-30 Maxim Dziumanenko <mvd@mylinux.com.ua>
* configure.in: Added 'uk' (Ukrainian) to ALL_LINGUAS.
2004-09-24 Christophe Merlet <redfox@redfoxcenter.org>
* configure.in: Added 'fr' (French) to ALL_LINGUAS.
Remove quotes from GETTEXT_PACKAGE variable.
2004-09-12 Takeshi AIHANA <aihana@gnome.gr.jp>
* configure.in: Added 'ja' (Japanese) to ALL_LINGUAS.
2004-08-21 Francisco Javier F. Serrador <serrador@cvs.gnome.org>
* configure.in: Added "es" to ALL_LINGUAS.
2004-08-21 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Add «nb» and «no» to ALL_LINGUAS.
2004-08-14 Christian Rose <menthos@menthos.com>
* configure.in: Added "sv" to ALL_LINGUAS.
2004-08-10 Gustavo Maciel Dias Vieira <gustavo@sagui.org>
* configure.in: Added pt_BR to ALL_LINGUAS.
2004-08-08 Edd Dumbill <edd@usefulinc.com>
* obex/gnome-obex-send.c: remove excess _() around "BDADDR"
2004-08-08 Duarte Loreto <happyguy_pt@hotmail.com>
* configure.in: Added Portuguese (pt) to ALL_LINGUAS.
2004-08-06 Adam Weinberger <adamw@gnome.org>
* configure.in: Added en_CA to ALL_LINGUAS
2004-08-05 Edd Dumbill <edd@usefulinc.com>
* po/.cvsignore, po/gnome-bluetooth.pot:
get pot file checked in for translators.
2004-07-29 Frederic Crozat <fcrozat@mandrakesoft.com>
* src/fileactiondialog.gob:
* src/permissiondialog.gob:
Fix crash when using gcc 3.4.
2004-07-13 Hendrik Brandt <hebra@cvs.gnome.org>
* configure.in: add "de" (german) to ALL_LINGUAS
2004-06-18 Edd Dumbill <edd@usefulinc.com>
* configure.in: require libbtctl 0.4.1.
* NEWS: update for release.
* Release 0.5.1.
2004-06-17 Edd Dumbill <edd@usefulinc.com>
* gnome-bluetooth.pc.in, configure.in, Makefile.am: add
pkgconfig file for the library.
2004-06-12 Edd Dumbill <edd@usefulinc.com>
* src/Makefile.am, python/Makefile.am: add -avoid-version to
LDFLAGS for py modules
* Bump version to 0.5.1.
* src/gnome-obex-server.c: send name request on device connect.
* src/permissiondialog.gob: display preferred name for device,
not just the name.
* src/fileaction.gob: new dialog for displaying received files
to the user and asking what to do next.
* src/fileactiontest.c: test program for fileaction dialog.
* src/gnome-obex-server.c: call fileaction dialog when file
received: should user open, save or delete?
* src/fileaction.gob, src/permissiondialog.gob: dialog button
rearrangement for HIGginess.
2004-06-10 Edd Dumbill <edd@usefulinc.com>
* src/permissiondialog.gob: HIGgy fixes (thanks Ross).
* TODO: add so when we release people know what I'm thinking of
doing next.
* RELEASE 0.5.
2004-06-08 Edd Dumbill <edd@usefulinc.com>
* bluez-sdp.m4: refresh from new version in libbtctl
* configure.in: add libbtctl to Python module deps
2004-06-06 Edd Dumbill <edd@usefulinc.com>
* python/Makefile.am: build fixes from Nick Piper.
* python/gnome-bluetooth-manager.in: make manager program a wrapper
script that sets the correct PYTHONPATH.
2004-06-04 Edd Dumbill <edd@usefulinc.com>
* Build fixes. Compile cleanly with -Werror.
* Pass make distcheck.
* NEWS: update prior to release
* README: bring up to date
* COPYING.gnomebt: LGPL license to apply to libgnomebt
* src/*.{gob,c,h}: add license headers.
* obex/*.c: add license headers.
* python/*.py: add license headers.
2004-06-03 Edd Dumbill <edd@usefulinc.com>
* obex/gnome-obex-send.c: new OBEX sending program using improved
libbtctl functions.
* obex/sender.c, obex/obex_test_client.c: retire old sender.
* obex/chooser.c: consume outstanding Gtk events after dialog close.
* libegg/: freshen from GNOME CVS. Remove fileselector, menu,
and toolbar directories as we don't use these.
* configure.in: remove SDP check.
* src/gnome-obex-server.c: new server implementation.
* src/spinner.gob: ref created image.
* src/: remove unneeded files: servonly.c obex_test_server.h
obex_test_server.c obex_test.h obex_test_client.h obexsdp.h
obexsdp.c obex_put_common.h obex_put_common.c obex_io.h obex_io.c
2004-02-01 Edd Dumbill <edd@usefulinc.com>
* src/gnomebt-chooser-pymodule.c, src/gnomebt-chooser.defs,
src/gnomebt-chooser.override, src/gnomebt-controller.defs,
src/Makefile.am:
added Python bindings for the device Chooser dialog, updated
controller bindings.
2004-01-15 Edd Dumbill <edd@usefulinc.com>
* Merged patch from Ross Burton:
- python/Makefile.am: Use PYTHON_INCLUDES instead of the broken
PYTHON_PREFIX/blaa, as PYTHON_PREFIX is where python is currently
installed for me.
- src/controller.gob: Fiddle with delete_device. This works for me but
the directory is not removed correctly. I must examine the gconf code
as I'm still having issues with it when I scan.
- src/Makefile.am: Remove useless whitespace (my emacs shows it in
purple) and fix CLEAN_FILES.
- python/manager.py: Require pygtk 2.0, implement Delete, handle
unnamed devices (happened to me a few days ago) and add my calling
card, a call to gtk_window_set_transient_for().
* src/controller.gob: remember to free various lists returned from
gconf_client calls.
* src/gnomebt-controller-test.c: add silly test for delete_device.
* obex/: move obex-server-source away from here: to libbtctl
2004-01-02 Edd Dumbill <edd@usefulinc.com>
* obex/obex-server-source.c, obex/obex-server-source.h,
obex/obex-server-source-private.h, obex/obex-server-source-test.c:
start of a GSource for OBEX control. Starting with a server,
this may be able to cope with both server and client uses cases
in the future. The source should be used by a nice GObject that
will create signals on OBEX events.
2003-12-27 Edd Dumbill <edd@usefulinc.com>
* obex/: integrate permission dialog, play around trying to get the
connection to close cleanly on deny, failed so far. Checking in
prior to embarking upon big cleanup of OBEX code to make it more
predictable.
2003-12-26 Edd Dumbill <edd@usefulinc.com>
* obex/servonly.c: added /system/bluetooth/obex-savedir key to specify
where beamed files are saved.
* src/permissiondialog.gob: finished dialog, HIGged as well as I can.
* src/gnomebt-permissiondialog-test.c: exercise perm dialog
2003-12-05 Edd Dumbill <edd@usefulinc.com>
* src/permissiondialog.gob: beginnings of a standard dialog to handle
requests to to the user about whether a device should be allowed to
connect or not
2003-12-05 Mikael Hallendal <micke@imendio.com>
* src/Makefile.am: fixed a buildproblem
2003-11-18 Edd Dumbill <edd@usefulinc.com>
* po/POTFILES.in: refresh to reflect current state of source files.
* po/en_GB.po: add British translation, mainly to test.
* po/.cvsignore: updated
* ui/btdeview.glade, ui/strings.c: obsolete, deleted.
2003-11-17 Edd Dumbill <edd@usefulinc.com>
* src/controller.gob: add get/set_device_permission method to store
user prefs for remote device connections
* src/gnomebt-controller-test.c: add test for perms
* python/manager.py: get rid of u prefix from about dialog strings:
source file is utf-8 native anyway, so we don't want to double-convert
2003-11-12 Bastien Nocera <hadess@hadess.net>
* python/manager.py: add an icon for the window
2003-11-11 Edd Dumbill <edd@usefulinc.com>
* src/controller.gob: added get_device_alias, set_device_alias,
remove_device_alias, get_device_preferred_name methods to support
user setting a convenient name for a device.
* python/manager.py: avoid division by zero in progress bar
2003-11-11 Bastien Nocera <hadess@hadess.net>
* python/hig_alert.py:
* python/manager.py: make the error dialog transient for the main
window
2003-11-11 Bastien Nocera <hadess@hadess.net>
* python/Makefile.am: upd
* python/hig_alert.py: added HIG compliant alert dialogs from
gnome-blog (thanks Seth!)
* python/manager.py: yell at the user if there's no bluetooth adapter
plugged in the system
2003-11-11 Bastien Nocera <hadess@hadess.net>
* python/.cvsignore: upd
2003-11-06 Bastien Nocera <hadess@hadess.net>
* python/Makefile.am:
* src/.cvsignore:
* src/Makefile.am: install gnome-bluetooth specific files in
the gnomebt site package, update .cvsignore
2003-11-03 Edd Dumbill <edd@usefulinc.com>
* python/manager.py: move Python device manager to use async interface,
show progress of discovery in appbar.
* src/: Refresh Python bindings for new methods.
2003-11-01 Edd Dumbill <edd@usefulinc.com>
* src/controller.gob: ripped out the threads stuff
* src/chooser.gob: changed discovery to use the btctl async method
2003-10-31 Bastien Nocera <hadess@hadess.net>
* configure.in:
* src/Makefile.am: fix build with automake-1.4, and for my machine
2003-10-31 Edd Dumbill <edd@usefulinc.com>
* src/chooser.gob: started implementing a "Refresh" button to rescan for
devices. Currently running into weird threading issues. Ugh.
2003-10-30 Edd Dumbill <edd@usefulinc.com>
* src/controller.gob, src/Makefile.am: port Bonobo object functionality
into a straight GObject, GnomebtController.
* src/gnomebt-controller-test.c: test program to exercise the
features of GnomebtController.
* obex/sender.c, obex/chooser.c, obex/Makefile.am: remove dependency
on the Bonobo component.
* gnome-vfs/README: note that stuff in this directory is obsolete
* src/btadmin.{c,h}: removed these files, they're for an obsolete tool
* src/manager-client.c: remove obsolete test program for Bonobo object
* configure.in, src/Makefile.am: definitions for Python gnomebt module
* src/gnomebt-controller.{override,defs},
src/gnome-bt-controller-pymodule.c: Python wrapper for gnomebt
* python/Makefile.am: small tidyups
* configure.in, Makefile.am: stop compilation of orbit/ subdir
* python/manager.py: remove Bonobo use, use new gnomebt.controller module
* README, HACKING, NEWS: freshen up to reflect removal of Bonobo component
* src/manager.c, src/manager.h, src/manager-impl.c,
src/GNOME_Bluetooth_Manager.idl, src/GNOME_Bluetooth_Manager.server.in.in,
src/main.c: remove Bonobo component source.
* src/chooser.gob: implement device chooser dialog
* obex/chooser.c: remove old chooser implementation, use new dialog
* ui/gnome-obex-send.glade: remove chooser dialog
* src/controller.gob: add threaded discovery
* src/chooser.gob: implement, but leave commented out, usage of
threaded discovery while dialog is shown. To make this usable we need
to find a way of coping with the fact that inquiries are uncancellable
and can take up to 10 seconds.
2003-09-27 Bastien Nocera <hadess@hadess.net>
* autogen.sh: fix generation of libegg/configure on a clean checkout
2003-09-26 Edd Dumbill <edd@usefulinc.com>
* configure.in: require libbtctl 0.4 or better
* src/chooser.gob: start work on a device-chooser widget
2003-09-26 Bastien Nocera <hadess@hadess.net>
* orbit/.cvsignore: updated
* python/Makefile.am: make it install the python-fu
* python/defs.py: removed autogenerated file
* python/gnome-bluetooth-manager: added an empty line :)
2003-09-26 Bastien Nocera <hadess@hadess.net>
* nautilus/.cvsignore:
* obex/.cvsignore:
* python/.cvsignore:
* src/.cvsignore: spring cleaning
2003-09-26 Bastien Nocera <hadess@hadess.net>
* autogen.sh:
* configure.in:
* nautilus/Makefile.am:
* python.m4:
* python/Makefile.am:
* src/Makefile.am:
* src/gconftest.c: (add_device_callback), (device_name_callback),
(add_device_service_callback), (main):
* src/manager-impl.c: (add_device_callback),
(device_name_callback), (add_device_service_callback),
(btmanager_impl_discover_devices), (btmanager_impl_init),
(btmanager_impl_connect_rfcomm_port),
(btmanager_impl_get_rfcomm_port),
(btmanager_impl_channels_for_service):
* src/manager.h: fix building with older autotools, fix for updated
version of libbtctl with BtctlController
2003-09-19 Edd Dumbill <edd@usefulinc.com>
* nautilus/: add Nautilus context menu component. Initial functionality
calls gnome-obex-send with selected files.
* obex/chooser.{c,h}: create device chooser to be called if --dest is
not specified
* obex/sender.c: call chooser when no --dest
* ui/gnome-obex-send.glade: add device chooser dialog to glade description
2003-09-18 Edd Dumbill <edd@usefulinc.com>
* configure.in: require libbtctl 0.3.2 or better, for the
btctl_scan_for_service() method.
* src/manager-impl.c: always re-probe a device when asked for a
channel corresponding to a service. This fixes stupid devices like the
P800 which move around which channels they host services on.
2003-06-07 Edd Dumbill <edd@usefulinc.com>
* obex/sender.c: finished preliminary GUI for
gnome-obex-send. Still much to do in figuring out how to
gracefully cancel an operation. Likewise, the server side needs
to be able to recover gracefully from crashes.
2003-06-03 Edd Dumbill <edd@usefulinc.com>
* gnome-vfs/bluetooth-method.c: changed linked app to be the
gnome-obex-send program
* obex/obex_test_client.c (my_push_client): add copy of
push_client routine that takes the filename as a parameter rather
than from stdin.
* obex/sender.c: main file for gnome-obex-send, a client program
to send files via OBEX PUSH
* src/manager-impl.c (add_device_callback): purge service
descriptions on re-encountering a device, as some devices change
which channels their services are offered on
2003-04-27 Edd Dumbill <edd@usefulinc.com>
* Make gnome-vfs module display icons depending on the class of
device.
2003-04-26 Edd Dumbill <edd@usefulinc.com>
* Added a gnome-vfs module, which talks to the bonobo component
and presents a view of the known bluetooth devices to Nautilus.
2003-04-24 Edd Dumbill <edd@usefulinc.com>
* Release 0.4.
* src/gnomebt-icons.c: add some handy icon routines to libgnomebt
to dole out icons to those who ask
* obex/servonly.c: register with SDP. Add "Quit" menu item.
Initialise GNOME properly.
* obex/obexsdp.c, obex/obexsdp.h: added SDP registration for the
OBEX server
2003-04-05 Edd Dumbill <edd@usefulinc.com>
* Added libgnomebt, which will store useful reusable routines for
GNOME applications running bluetooth -- UI components, for instance.
* Added bare bones OBEX server implementation.
2003-02-22 Edd Dumbill <edd@usefulinc.com>
* Release 0.3.
* Reorganized source distribution so libbtctl is self
contained. This is because some users want only this component
without the Bonobo stuff. Libbtcl will now follow a separate
development path.
2003-02-07 Edd Dumbill <edd@usefulinc.com>
* Release 0.2.
* Fully implemented servicesForDevice.
* Updated to BlueZ SDP 1.0 API.
2002-12-13 Edd Dumbill <edd@usefulinc.com>
* Created user interface: gnome-bluetooth-admin tool comprising
src/btadmin.c, src/btadmin.h, ui/btdeview.glade
* Added CORBA method for finding all the services a device supports:
servicesForDevice(out ServiceList list, in string bdaddr)
2002-11-11 Edd Dumbill <edd@usefulinc.com>
* Initial public release.
|