forked from gobby/gobby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.pre-0.5
2742 lines (1475 loc) · 60.9 KB
/
ChangeLog.pre-0.5
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
2008-01-31 Armin Burgmeier <armin@0x539.de>
* src/config.cpp: File test before loading XML file, this seems to
crash on Windows otherwise.
2008-01-24 Philipp Kern <phil@0x539.de>
* src/header.cpp:
* src/preferences.cpp:
* src/preferencesdialog.cpp:
* src/unix.cpp: Fix build failures with g++-4.3
(thanks to Matthias Klose)
2008-01-20 Armin Burgmeier <armin@0x539.de>
* src/preferences.cpp:
* src/preferencesdialog.cpp:
* src/header.cpp: Don't crash when no GtkSourceView languages are
installed.
2008-01-03 Philipp Kern <phil@0x539.de>
* contrib/gobby.desktop: adhere to the freedesktop.org Desktop
Entry Specification v1.0
2008-01-01 Armin Burgmeier <armin@0x539.de>
* src/preferencesdialog.cpp: Add some spacing to the document
management option group.
2008-01-01 Philipp Kern <phil@0x539.de>
* configure.ac: bump version to 0.4.6
* NEWS: documented the changes
2008-01-01 Philipp Kern <phil@0x539.de>
* po/pt_BR.po, po/pl.po, po/ko.po: added new translations
from Rosetta
* po/*.po: translation roundup fetched from Rosetta
* configure.ac: add pt_BR, pl and ko
2008-01-01 Philipp Kern <phil@0x539.de>
* configure.ac: bump obby dependency to 0.4.5 to get IPv6
autodiscovery
2007-12-16 Armin Burgmeier <armin@0x539.de>
* src/toolwindow.hpp:
* src/toolwindow.cpp: Hide on escape.
2007-11-27 Armin Burgmeier <armin@0x539.de>
* src/docwindow.cpp: Enable indentation-on-tab in gtksourceview1
* configure.in: Require gtksourceview >= 1.8.
2007-10-14 Armin Burgmeier <armin@0x539.de>
* inc/preferencesdialog.hpp:
* src/preferencesdialog.cpp: Don't use the tooltip for the smart
home/end option when gtkmm was built without deprecated API.
* src/logview.cpp: Replaced scroll_to_mark by scroll_to because the
former is deprecated.
* src/docwindow.cpp: Fix gtksourceview1 build.
2007-09-30 Benjamin Herr <ben@0x539.de>
* src/window.cpp: Make sure that the two buttons on the confirmation
dialog when exiting gobby with a session running do not have the same
mnemonics.
2007-09-20 Philipp Kern <phil@0x539.de>
* src/ipc.cpp: added unistd.h to the list of includes to ease porting
to OpenBSD
2007-09-17 Armin Burgmeier <armin@0x539.de>
* src/preferencesdialog.cpp:
* src/header.cpp:
* src/docwindow.cpp:
* src/preferences.cpp: Adapted to latest (and final) GtkSourceView2
API.
2007-08-27 Armin Burgmeier <armin@0x539.de>
* src/historyentry.cpp: Avoid Gtk::Entry::set_text() because it seems
to crash on Vista. Use Gtk::Editable::delete_text and
Gtk::Editable::insert_text instead.
2007-08-27 Armin Burgmeier <armin@0x539.de>
* src/window.cpp: Make sure not to try to send an unsubscription
request twice.
2007-08-18 Armin Burgmeier <armin@0x539.de>
* src/icon.cpp: Win32 build fix.
2007-08-18 Philipp Kern <phil@0x539.de>
* inc/window.hpp:
* src/window.cpp: do not close document if `save as' is cancelled
[fixes #288]
2007-08-18 Philipp Kern <phil@0x539.de>
* NEWS:
* configure.ac: bump version to 0.4.5 and document the changes
2007-08-12 Armin Burgmeier <armin@0x539.de>
* src/window.cpp: Set IO channel encoding to "" when saving files
because we do the necessary conversion ourselves before saving. This
fixes saving non-UTF-8 encoded files.
* src/icon.cpp: Convert pixmap paths to UTF-8 on windows, allowing
gobby to run inside paths containing non-ASCII characters.
* src/preferences.cpp: Include features.hpp for correct gtksourceview2
detection.
2007-08-05 Philipp Kern <phil@0x539.de>
* Place a `Save' button instead of a plain `OK' button in the
`Save file' dialog and set it as the default response.
2007-07-22 Philipp Kern <phil@0x539.de>
* Fix compilation with GtkSourceView 1
2007-07-22 Philipp Kern <phil@0x539.de>
* New Swedish translation by Daniel Nylander [fixes #282]
2007-07-09 Philipp Kern <phil@0x539.de>
* src/main.cpp: bugfix to use IPC by default
2007-07-09 Philipp Kern <phil@0x539.de>
* inc/joindialog.hpp:
* src/joindialog.cpp: add support for IPv6 autodiscovery
2007-07-09 Armin Burgmeier <armin@0x539.de>
* src/preferencesdialog.cpp:
* src/header.cpp:
* src/docwindow.cpp:
* src/preferences.cpp: Adjusted for gtksourceview2 API changes.
2007-06-16 Philipp Kern <phil@0x539.de>
* configure.ac: fixed POSIX compliance
2007-06-16 Philipp Kern <phil@0x539.de>
* po/POTFILES.in: add more source files to be scanned for strings
to be translated
* po/gobby.pot: update, mainly line numbers
* po/ca.po:
* po/pt.po:
* po/es.po:
* po/fr.po:
* po/de.po:
* po/sv.po:
* po/zh_CN.po: translation roundup: new line numbers, some strings
changed by Rosetta contributors
* configure.ac:
* po/it.po:
* po/ru.po: new translations imported from Rosetta
* NEWS: documented new translations
2007-06-15 Philipp Kern <phil@0x539.de>
* NEWS:
* configure.ac: bump version to 0.4.4 and document the changes
* mkinstalldirs: removed from the repository, is symlinked through
autogen.sh
2007-06-15 Philipp Kern <phil@0x539.de>
* src/finddialog.cpp:
* src/window.cpp:
* src/statusbar.cpp:
* src/folder.cpp:
* src/document.cpp:
* src/preferencesdialog.cpp:
* src/main.cpp:
* src/header.cpp:
* src/docwindow.cpp:
* src/preferences.cpp:
* inc/window.hpp:
* inc/document.hpp:
* inc/header.hpp:
* inc/docwindow.hpp:
* inc/preferences.hpp:
* inc/documentlist.hpp: fixed the indentation from two spaces to
one tab and removed some cruft
2007-06-13 Philipp Kern <phil@0x539.de>
* src/chat.cpp: use Gtk::Entry::delete_text(...) instead of
Gtk::Entry::set_text(""); the latter crashes on Windows Vista
2007-06-12 Armin Burgmeier <armin@0x539.de>
* src/documentlist.cpp: fixed a bug related to the document list's
selection (clear the selection in obby_start) [fixes #271]
2007-05-27 Armin Burgmeier <armin@0x539.de>
* inc/sourceview:
* src/sourceview:
* Makefile.am: Remove hand-coded GtkSourceView wrappers.
* configure.ac: Added --with-gtksourceview2 configure option.
* src/finddialog.cpp:
* src/window.cpp:
* src/statusbar.cpp:
* src/folder.cpp:
* src/document.cpp:
* src/preferencesdialog.cpp:
* src/main.cpp:
* src/header.cpp:
* src/docwindow.cpp:
* src/preferences.cpp:
* src/gotodialog.cpp:
* inc/window.hpp:
* inc/folder.hpp:
* inc/document.hpp:
* inc/preferencesdialog.hpp:
* inc/header.hpp:
* inc/docwindow.hpp:
* inc/preferences.hpp: Support GtkSourceview2, use GtkSourceView C API
directly.
2007-05-10 Benjamin Herr <ben@0x539.de>
* inc/documentlist.hpp:
* src/documentlist.cpp: sort document list alphabetically
2007-04-23 Philipp Kern <phil@0x539.de>
* src/togglewindow.cpp: ToggleWindow needs UTILITY hints in any
case
* src/toolwindow.cpp: use DIALOG unconditionally on every ToolWindow
2007-04-23 Philipp Kern <phil@0x539.de>
* src/toolwindow.cpp: use DIALOG hint on *nix, UTILITY on Win32
* src/window.cpp: copyright notice renewed
2007-04-16 Armin Burgmeier <armin@0x539.de>
* src/chat.cpp: Reintroduce user tags in chat which got accidentaly
lost in revision [1515].
2007-04-15 Armin Burgmeier <armin@0x539.de>
* src/joindialog.cpp: Don't allow selection in the error case, use a
single column for both icon and text. Make the dialog resizable.
2007-04-15 Philipp Kern <phil@0x539.de>
* src/joindialog.cpp: failure handling for exceptions thrown
by discover
2007-04-14 Armin Burgmeier <armin@0x539.de>
* src/joindialog.cpp: Only access the currently selected row to set
the content of the host and port entries when there actually is a
selected row.
2007-04-14 Armin Burgmeier <armin@0x539.de>
* inc/joindialog.hpp:
* src/joindialog.cpp: Take a obby::zeroconf_base instead of
obby::zeroconf, do not install timer when using avahi as zeroconf
backend.
* inc/window.hpp:
* src/window.cpp: Use Glib mainloop for avahi zeroconf backend,
otherwise poll it every 1500 milliseconds.
2007-04-14 Philipp Kern <phil@0x539.de>
* configure.ac, Makefile.am: check for Avahi in obby and link against
avahi-glib if Avahi proper is used for Zeroconf support; provide
an additional define WITH_AVAHI for usage within the code
2007-04-09 Armin Burgmeier <armin@0x539.de>
* inc/folder.hpp:
* src/folder.cpp: Added a select_document() function that selects the
page that shows the given document.
* src/userlist.cpp:
* src/documentlist.cpp: Make use of it.
2007-04-09 Philipp Kern <phil@0x539.de>
* src/window.cpp:
* inc/documentlist.hpp:
* src/documentlist.cpp: allow the same in the document list
2007-04-09 Philipp Kern <phil@0x539.de>
* inc/window.hpp:
* src/window.cpp: pass a folder object to the user list
* inc/userlist.hpp:
* src/userlist.cpp: doubleclicks on already subscribed documents now
cause the document to be selected
2007-04-09 Philipp Kern <phil@0x539.de>
* configure.ac: bump version to 0.4.3
* NEWS: note down usability improvements in 0.4.3
2007-04-09 Philipp Kern <phil@0x539.de>
* src/window.cpp: do not show tabs if only one document present
[fixes #220]
2007-04-08 Philipp Kern <phil@0x539.de>
* src/preferencesdialog.cpp: add toolbar setting for "text besides icon"
* src/header.cpp: set important flags of the actions according
to the sensitivity
2007-04-08 Philipp Kern <phil@0x539.de>
* src/window.cpp:
* src/chat.cpp: set urgency hint on window only when chat widget
is visible [fixes #256]
2007-04-07 Philipp Kern <phil@0x539.de>
* inc/userlist.hpp:
* src/userlist.hpp: allow doubleclicks on documents in the userlist
to subscribe to them [fixes #225]
2007-04-07 Philipp Kern <phil@0x539.de>
* inc/document_settings.hpp: signals now pass a non-const
LocalDocumentInfo reference
* inc/window.hpp:
* src/window.cpp: automatically opened tabs should not grab
the focus [finally fixes #232]
2007-04-07 Philipp Kern <phil@0x539.de>
* inc/document_settings.hpp:
* src/document_settings.cpp: add a flag whether the document was
opened automatically or not
2007-04-02 Philipp Kern <phil@0x539.de>
* src/window.cpp:
* inc/preferences.hpp:
* src/preferences.cpp:
* inc/preferencesdialog.hpp:
* src/preferencesdialog.cpp: add new configuration option to open
new remotely-created documents automatically [fixes #232]
2007-04-02 Philipp Kern <phil@0x539.de>
* src/window.cpp: Mention avahi-daemon in failure message.
2007-03-27 Philipp Kern <phil@0x539.de>
* src/window.cpp: Output an error to the console if the zeroconf
daemon is unavailable instead of displaying an annoying message
box.
2007-03-27 Philipp Kern <phil@0x539.de>
* src/preferences.cpp: Fix some mime types. It seems that they
are inconsistent over different distributions, at least the
fixed ones are commonly changed.
2007-03-24 Armin Burgmeier <armin@0x539.de>
* inc/window.hpp:
* src/window.cpp: Focus find and goto dialogs always when the
corresponding actions are triggered. Also do not load them at startup
but as soon as they are required, to improve startup time
[fixes #251].
2007-03-21 Armin Burgmeier <armin@0x539.de>
* src/chat.cpp: Do not print an incoming message as much times as its
number of lines, but only once.
2007-02-25 Armin Burgmeier <armin@0x539.de>
* src/window.cpp: Open output file to save a document with
Glib::IOChannel instead of std::ofstream to get correct conversion of
filename encoding from glib.
2007-02-25 Armin Burgmeier <armin@0x539.de>
* src/ipc.cpp: Define _WIN32_WINNT to get HWND_MESSAGE API.
2007-02-25 Philipp Kern <phil@0x539.de>
* NEWS, configure.in: Bump version to 0.4.2 and document important
changes.
2007-01-02 Philipp Kern <phil@0x539.de>
Moved GlobalUnlock further downwards
(The pointer is only guaranteed to point to the right place within
GlobalLock and GlobalUnlock, thus it might point to an invalid memory
block. [Michael Walter])
2006-12-31 Armin Burgmeier <armin@0x539.de>
Accept absolute file names for IPC [fixes #237]
2006-11-08 Armin Burgmeier <armin@0x539.de>
Keep viewport position on remote operations
2006-11-04 Armin Burgmeier <armin@0x539.de>
Allow subscribing by double click on document list
2006-11-04 Armin Burgmeier <armin@0x539.de>
Libtool stuff
2006-11-04 Armin Burgmeier <armin@0x539.de>
Do not set modified flag when opening a local file [fixes #214]
2006-10-26 Philipp Kern <phil@0x539.de>
Put the urgency hint into the preferences dialog
2006-09-05 Philipp Kern <phil@0x539.de>
MingW compilation fix: windres now detected by autoconf
2006-09-05 Philipp Kern <phil@0x539.de>
MingW compilation fix
2006-08-27 Philipp Kern <phil@0x539.de>
Updated ChangeLog for release
2006-08-27 Philipp Kern <phil@0x539.de>
Bump version to 0.4.1
2006-08-21 Armin Burgmeier <armin@0x539.de>
Load pixmaps from pixmaps/ if not found in PIXMAPS_DIR
2006-08-21 Philipp Kern <phil@0x539.de>
Move the PNGs out of contrib/artwork into pixmaps
2006-08-21 Philipp Kern <phil@0x539.de>
Remove inline pixmaps and use the external graphics in any case
2006-08-17 Philipp Kern <phil@0x539.de>
Removed Gobby::Atomic, no longer needed
2006-08-17 Philipp Kern <phil@0x539.de>
Translation roundup
2006-08-17 Philipp Kern <phil@0x539.de>
Updated the manual page
2006-08-16 Philipp Kern <phil@0x539.de>
Bump version to 0.4.0rc4 and depend on obby-0.4.0rc4 or higher
2006-08-16 Armin Burgmeier <armin@0x539.de>
Preselect line in GotoDialog
2006-08-16 Armin Burgmeier <armin@0x539.de>
Do not allow self-highlighting
2006-08-15 Philipp Kern <phil@0x539.de>
Updated NEWS
2006-08-14 Philipp Kern <phil@0x539.de>
Moved the contents of the View menu to Edit
2006-08-14 Armin Burgmeier <armin@0x539.de>
Set type hint of tool windows to UTILITY
2006-08-11 Armin Burgmeier <armin@0x539.de>
Renamed disable-ipc to new-instance
2006-08-08 Armin Burgmeier <armin@0x539.de>
Made statusbar more standard-compliant
2006-08-08 Armin Burgmeier <armin@0x539.de>
Added --join and --disable-ipc command line options
2006-08-08 Armin Burgmeier <armin@0x539.de>
Set urgency hint when chat messages arrive
2006-08-08 Philipp Kern <phil@0x539.de>
Save user-modified palettes in the configuration [fixes #181]
2006-08-07 Philipp Kern <phil@0x539.de>
Updated ChangeLog for release
2006-08-07 Philipp Kern <phil@0x539.de>
Bumped version to 0.4.0rc3
2006-08-07 Philipp Kern <phil@0x539.de>
Strictened the build-dependency on obby-0.4.0rc3
2006-06-16 Philipp Kern <phil@0x539.de>
GCC 3.3 compile fixes
2006-06-15 Philipp Kern <phil@0x539.de>
Do not crash when threads are already initialised
2006-06-07 Philipp Kern <phil@0x539.de>
Replace "Shows up" by "Displays"
2006-06-07 Philipp Kern <phil@0x539.de>
Updated ChangeLog for release
2006-06-06 Philipp Kern <phil@0x539.de>
Depend on obby >= 0.4.0rc2; bump version to 0.4.0rc2
2006-06-07 Armin Burgmeier <armin@0x539.de>
Fix SEGV caused by wrong usage of Gtk::AccelKey [fixes #163]
2006-06-04 Philipp Kern <phil@0x539.de>
Translation roundup; new Catalan translation, thanks to Jordi Mallach
2006-06-04 Philipp Kern <phil@0x539.de>
Bumped gobby.pot to reflect the current source code locations
2006-05-07 Philipp Kern <phil@0x539.de>
Add document test to the `make check' testrunner
2006-05-07 Armin Burgmeier <armin@0x539.de>
Added append tests
2006-05-07 Armin Burgmeier <armin@0x539.de>
Added support for obby::text::npos to Document::erase and
Document::get_slice
2006-05-07 Armin Burgmeier <armin@0x539.de>
Added Document test
2006-05-07 Armin Burgmeier <armin@0x539.de>
Added Document::clear()
2006-05-06 Philipp Kern <phil@0x539.de>
Check for substrings in Win32 detection
2006-04-24 Armin Burgmeier <armin@0x539.de>
Added contrib/artwork/doclist.png to EXTRA_DIST [fixes #152]
2006-04-19 Philipp Kern <phil@0x539.de>
Add a man page for Gobby
2006-04-16 Philipp Kern <phil@0x539.de>
Do not depend on JoinDialog creation on invokation
2006-04-15 Philipp Kern <phil@0x539.de>
Check for a generic zeroconf target in obby
2006-04-15 Philipp Kern <phil@0x539.de>
Expand the artists' credits
2006-04-11 Philipp Kern <phil@0x539.de>
Updated ChangeLog for release
2006-04-10 Armin Burgmeier <armin@0x539.de>
src/gselector.cpp: Added idle call in timout handler.
This is a workaround for a possible bug in glib: A connection to
Glib::signal_io is not triggered without waking up the main loop
once more.
2006-04-10 Philipp Kern <phil@0x539.de>
Enable URL support on Mac OS X
2006-04-10 Philipp Kern <phil@0x539.de>
Updates to INSTALL
2006-04-10 Philipp Kern <phil@0x539.de>
Little wrapping issue in translation
2006-04-10 Philipp Kern <phil@0x539.de>
Reorder the PKG_CHECK_MODULES calls
2006-04-09 Armin Burgmeier <armin@0x539.de>
Use Gobby's color selection palette in JoinProgressDialog color prompt
2006-04-09 Armin Burgmeier <armin@0x539.de>
Fixed a thread-related issue that could cause a SEGV on
connection loss
2006-04-01 Armin Burgmeier <armin@0x539.de>
Inherit Document from sigc::trackable
2006-03-31 Philipp Kern <phil@0x539.de>
gtk-connect does not work on buttons on Mac; reason unknown
2006-03-31 Philipp Kern <phil@0x539.de>
Update version to 0.4.0rc1
2006-03-31 Philipp Kern <phil@0x539.de>
Some kind of translation roundup, very limited
2006-03-30 Philipp Kern <phil@0x539.de>
Empty the TODO for now
2006-03-31 Philipp Kern <phil@0x539.de>
Updated README
2006-03-30 Armin Burgmeier <armin@0x539.de>
Align info labels in preferences dialog to the left
2006-03-30 Armin Burgmeier <armin@0x539.de>
Set priority of user tags lower than GtkSourceView's bracket
highlighting tag
2006-03-30 Armin Burgmeier <armin@0x539.de>
Initialize gnome-vfs correctly
2006-03-30 Armin Burgmeier <armin@0x539.de>
Link http URLs in LogView when compiled --with-gnome [fixes #80]
2006-03-30 Philipp Kern <phil@0x539.de>
Include the stat header
2006-03-30 Armin Burgmeier <armin@0x539.de>
Fixed config class
2006-03-29 Armin Burgmeier <armin@0x539.de>
Fixed Config::ParentEntry::supply_value
2006-03-29 Philipp Kern <phil@0x539.de>
Depend on gnome-vfs-2.0 when compiled with GNOME support
2006-03-29 Armin Burgmeier <armin@0x539.de>
Refactored Config class
2006-03-28 Armin Burgmeier <armin@0x539.de>
Print remove command errors to chat
2006-03-28 Armin Burgmeier <armin@0x539.de>
Use default context in ipc.cpp
2006-03-28 Armin Burgmeier <armin@0x539.de>
Avoid unnecessary compiler warnings
2006-03-27 Armin Burgmeier <armin@0x539.de>
Added timeout capability to GSelector, enable keepalives [fixes #131]
2006-03-25 Armin Burgmeier <armin@0x539.de>
Added document list item
2006-03-25 Armin Burgmeier <armin@0x539.de>
Remember position of tool windows
2006-03-25 Armin Burgmeier <armin@0x539.de>
set initially given font name in Font::set when font selector is
never realized
2006-03-25 Armin Burgmeier <armin@0x539.de>
Send command line parameters only to other gobbys owned by the
same user
2006-03-25 Armin Burgmeier <armin@0x539.de>
Win32 IPC using hidden windows
2006-03-25 Armin Burgmeier <armin@0x539.de>
Changed another occurence of obby-0.3 in configure script
2006-03-25 Philipp Kern <phil@0x539.de>
Depend on net6-1.3 and obby-0.4
2006-03-25 Armin Burgmeier <armin@0x539.de>
Pass command line parameters to remote Gobby instanc
2006-03-24 Philipp Kern <phil@0x539.de>
Bump version to 0.3.99 to avoid confusion with final versions
2006-03-24 Armin Burgmeier <armin@0x539.de>
Do not explictely request encryption, this is done by obby
2006-03-24 Armin Burgmeier <armin@0x539.de>
Pack statusbar frames without space
2006-03-24 Armin Burgmeier <armin@0x539.de>
Some fixes to JoinProgressDialog
2006-03-24 Philipp Kern <phil@0x539.de>
Cosmetic changes to remove the references to RSA
2006-02-08 Benjamin Herr <ben@0x539.de>
fixed possible out-of-bounds condition in convert2unix
2006-03-20 Armin Burgmeier <armin@0x539.de>
Protect GSelector by a mutex
2006-03-17 Philipp Kern <phil@0x539.de>
Initial NEWS section for 0.4.0
2006-03-19 Armin Burgmeier <armin@0x539.de>
Send chat messages beginning with '/' as command
2006-03-19 Armin Burgmeier <armin@0x539.de>
Activate goto button when pressing enter
2006-03-17 Philipp Kern <phil@0x539.de>
We're in 2006
2006-03-17 Armin Burgmeier <armin@0x539.de>
Reenabled user color change (has been dropped accidently)
2006-03-17 Armin Burgmeier <armin@0x539.de>
Replaced DefaultDialog by Gtk::Dialog::set_default_response
[fixes #117]
2006-03-15 Armin Burgmeier <armin@0x539.de>
Use Gtk::Statusbar instead of Gtk::Frame for status bar
2006-03-15 Armin Burgmeier <armin@0x539.de>
Added toggle button to hide chat [fixes #134]
2006-03-15 Armin Burgmeier <armin@0x539.de>
Added chat icon by Benjamin Herr
2006-03-15 Armin Burgmeier <armin@0x539.de>
Added font selection to preferences [fixes #123]
2006-03-14 Armin Burgmeier <armin@0x539.de>
Implemented EncodingSelector::remove_text for compatibility
with gtkmm < 2.8
2006-03-14 Armin Burgmeier <armin@0x539.de>
Reopen host/join dialog after hosting/joining failed [fixes #130]
2006-03-10 Armin Burgmeier <armin@0x539.de>
Show suffixed name in window title and document list [fixes #111]
2006-03-10 Armin Burgmeier <armin@0x539.de>
Removed "Connection is now encrypted" debug message
2006-03-10 Armin Burgmeier <armin@0x539.de>
Hide mime type column in file preferences page
2006-03-10 Armin Burgmeier <armin@0x539.de>
Added mnemonics to main menu bar
2006-03-10 Armin Burgmeier <armin@0x539.de>
Removed remaining references to mimemap
2006-03-09 Armin Burgmeier <armin@0x539.de>
Ctrl+Alt+PgDown/Up shifts document [fixes #112]
2006-03-09 Armin Burgmeier <armin@0x539.de>
Added filelist to preferences
2006-03-08 Armin Burgmeier <armin@0x539.de>
Replaced mime map by file list in preferences
2006-03-07 Armin Burgmeier <armin@0x539.de>
Disable OK button in password dialog when passwords do not match
2006-03-07 Armin Burgmeier <armin@0x539.de>
Added application state frags controlling header sensitivity
2006-03-06 Armin Burgmeier <armin@0x539.de>
Do not allow subscriptions to non-UTF-8-encoded documents
2006-03-06 Armin Burgmeier <armin@0x539.de>
Store original encoding in document settings [fixes #65]
2006-03-05 Armin Burgmeier <armin@0x539.de>
Added encoding selection in file chooser
2006-03-05 Armin Burgmeier <armin@0x539.de>
Do not delete buffer after session closure, allow saving of closed
sessions
2006-03-02 Philipp Kern <phil@0x539.de>
Transform the ok button into a host one in the host dialog
2006-03-02 Philipp Kern <phil@0x539.de>
Use a connect button instead of ok in the join dialog
2006-02-28 Armin Burgmeier <armin@0x539.de>
Introduced document settings to store document's original encoding
2006-02-28 Armin Burgmeier <armin@0x539.de>
Send UTF-8 as encoding
2006-02-26 Armin Burgmeier <armin@0x539.de>
Disable subscribe button when subscription request has been sent
[fixes #126]
2006-02-24 Armin Burgmeier <armin@0x539.de>
alt+n switches tabs
2006-02-23 Armin Burgmeier <armin@0x539.de>
Restored left gravity cursor on remote insert
2006-02-23 Armin Burgmeier <armin@0x539.de>
Gobby seems to work now, but still needs further testing
2006-02-22 Armin Burgmeier <armin@0x539.de>
Made Gobby compile again - does still not work
2006-02-19 Armin Burgmeier <armin@0x539.de>
Adjusted GSelector to new selector principle
2006-02-14 Philipp Kern <phil@0x539.de>
Experimental patch for client-initiated encryption
2006-02-06 Armin Burgmeier <armin@0x539.de>
Replaced buffer wrappers by GSelector
2006-02-03 Armin Burgmeier <armin@0x539.de>
Added obby/document.hpp include since it is heavily decoupled from
obby itself
2006-02-02 Armin Burgmeier <armin@0x539.de>
Changed buffer wrapper to match obby's new_net()
2006-01-30 Armin Burgmeier <armin@0x539.de>
Temporary adjustments for document template parameter in document info
2006-01-29 Armin Burgmeier <armin@0x539.de>
Temporary adjustments to document type template in obby::document_info
2006-01-26 Armin Burgmeier <armin@0x539.de>
Changes for new net6 IO conditions
2006-01-11 Trac <trac@darcs.0x539.de>
TODO updated
2006-01-07 Trac <trac@darcs.0x539.de>
TODO updated
2005-12-31 Trac <trac@darcs.0x539.de>
TODO updated
2005-12-13 Trac <trac@darcs.0x539.de>
TODO updated
2005-12-11 Trac <trac@darcs.0x539.de>
TODO updated
2005-12-10 Philipp Kern <phil@0x539.de>
Forgot to translate at least one string
2005-12-08 Philipp Kern <phil@0x539.de>