This repository was archived by the owner on Nov 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChangeLog
More file actions
2533 lines (1321 loc) · 54.1 KB
/
ChangeLog
File metadata and controls
2533 lines (1321 loc) · 54.1 KB
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-11-04 Philipp Kern <phil@0x539.de>
* po/obby.pot:
* po/*.po: refresh
2011-11-04 Philipp Kern <phil@0x539.de>
* test/test_jupiter.cpp: fix base_file lookup on make
distcheck
2011-11-04 Philipp Kern <phil@0x539.de>
* configure.ac:
* NEWS: bump version to 0.4.8, document the changes
2011-10-30 Philip Kern <phil@0x539.de>
* po/ast.po:
* po/en_GB.po:
* po/pt_BR.po:
* po/ca.po:
* po/de.po:
* po/es.po:
* po/fr.po:
* po/it.po:
* po/nl.po:
* po/oc.po:
* po/sv.po:
* po/uk.po: updated translations from Launchpad
* po/LINGUAS: add ast, en_GB and pt_BR
2011-10-30 Armin Burgmeier <armin@arbur.net>
* inc/server_buffer.hpp: During authentication, swap user color and
global password checks, to avoid for a non-authorized person to gather
information on used user colors (Vasiliy Kulikov).
2011-02-09 Philipp Kern <phil@0x539.de>
* po/da.po: Added Danish translation by Joe Dalton.
Debian bug #605322.
* po/LINGUAS: Added da.
2009-10-12 Armin Burgmeier <armin@0x539.de>
* po/uk.po: Added Ukrainian translation by Yuri Chornoivan. Bug #479.
* po/LINGUAS: Added uk.
2009-01-01 Philipp Kern <phil@0x539.de>
* po/ca.po:
* po/de.po:
* po/es.po:
* po/it.po:
* po/nl.po:
* po/oc.po:
* po/sv.po: imported from Launchpad
2009-01-01 Philipp Kern <phil@0x539.de>
* configure.ac:
* NEWS: bump version to 0.4.7, document the changes
2009-01-01 Philipp Kern <phil@0x539.de>
* po/oc.po: adjusted report-msgid-bugs-to
2008-12-04 Armin Burgmeier <armin@0x539.de>
* contrib/obby_web/obby.php: Use UTF-8 charset for htmlentities(), so
that non-ASCII-characters are correctly shown (Bug #405).
2008-11-27 Philipp Kern <phil@0x539.de>
* po/fr.po: reviewed and completed French translation, thanks to
Christian Perrier
2008-10-06 Philipp Kern <phil@0x539.de>
* po/fr.po: fixed typo in French translation (thanks to Lionel
Porcheron)
2008-09-09 Philipp Kern <phil@0x539.de>
* configure.ac:
* NEWS: bump version to 0.4.6, document the changes
2008-09-09 Philipp Kern <phil@0x539.de>
* po/LINGUAS:
* po/oc.po: add new Occitan (post 1500) translation
2008-09-09 Philipp Kern <phil@0x539.de>
* src/Makefile.am, src/serialise/Makefile.am, test/Makefile.am: clean
up include handling; first step to support distcheck
2008-09-08 Armin Burgmeier <armin@0x539.de>
* inc/client_buffer.hpp: Added a connect(const net6::address&)
overload.
2008-09-08 Armin Burgmeier <armin@0x539.de>
* src/zeroconf_avahi.cpp: Set scope ID of discovered IPv6 services,
for link-local IPv6 to work.
2008-06-22 Armin Burgmeier <armin@0x539.de>
* src/zeroconf_howl.cpp: Don't throw exceptions in C callbacks.
Instead, print the error to std::cerr as the avahi implementation
does.
2007-12-27 Philipp Kern <phil@0x539.de>
* src/zeroconf_avahi.cpp: compilation fix for non-IPv6 builds
2007-12-27 Philipp Kern <phil@0x539.de>
* NEWS: document changes
2007-12-27 Philipp Kern <phil@0x539.de>
* configure.ac: bump version to 0.4.5
2007-12-27 Philipp Kern <phil@0x539.de>
* src/Makefile.am: bump SONAME versin to 1:0:0 due to the new
discover6_event().
2007-12-01 Philipp Kern <phil@0x539.de>
* New Italian translation, thanks to Sergio Zanchetta.
* Translation import from Rosetta.
2007-07-22 Philipp Kern <phil@0x539.de>
* New Swedish translation by Daniel Nylander [fixes #283]
2007-07-14 Philipp Kern <phil@0x539.de>
* src/delete_operation.cpp:
* src/insert_operation.cpp:
* src/jupiter_algorithm.cpp:
* src/jupiter_client.cpp:
* src/jupiter_server.cpp:
* src/jupiter_undo.cpp:
* src/no_operation.cpp:
* src/operation.cpp:
* src/record.cpp:
* src/split_operation.cpp: purged some dead code
2007-07-09 Armin Burgmeier <armin@0x539.de>
* src/zeroconf.cpp:
* src/zeroconf_avahi.cpp:
* inc/zeroconf_avahi.hpp:
* inc/zeroconf_howl.hpp:
* inc/zeroconf.hpp: Implement IPv6 discovery for avahi, added
discover6_event() to zeroconf interface, added virtual destructor.
This is an ABI break.
2007-06-14 Armin Burgmeier <armin@0x539.de>
* contrib/obby_web/obby.php: Fix parsing of escaped strings.
2007-04-15 Armin Burgmeier <armin@0x539.de>
* src/zeroconf_avahi.cpp: Don't prefix error message in throw() when
discovering failed. The error handler may still do this.
2007-04-15 Philipp Kern <phil@0x539.de>
* src/zeroconf_avahi.cpp: remove debug output on stdout and stderr
2007-04-15 Philipp Kern <phil@0x539.de>
* configure.ac, NEWS: bump version to 0.4.4, document changes
* Makefile.am: add obby session conversion script to the tarball
* po/Makevars: updated Trac URL
* po/obby.pot, po/*.po: updated line numbers, Trac URL
2007-04-14 Armin Burgmeier <armin@0x539.de>
* inc/zeroconf.hpp: Added another TODO comment about adding extended
API to handle zeroconf errors.
2007-04-14 Armin Burgmeier <armin@0x539.de>
* inc/Makefile.am: Do not only distribute zeroconf_avahi.hpp, but also
the other header files.
2007-04-14 Armin Burgmeier <armin@0x539.de>
* inc/zeroconf.hpp: Added a TODO comment that zeroconf_base should get
a virtual destructor as soon as we can break ABI.
2007-04-14 Armin Burgmeier <armin@0x539.de>
* inc/zeroconf_avahi.hpp:
* src/zeroconf_avahi.cpp: Allow custom AvahiPoll to be const.
2007-04-14 Philipp Kern <phil@0x539.de>
* src/Makefile.am: bump library minor version for ABI changes
from 0:0:0 to 0:1:0
2007-04-14 Armin Burgmeier <armin@0x539.de>
* inc/zeroconf_avahi.hpp:
* src/zeroconf_avahi.cpp: Added a constructor that allows the use of
a custom AvahiPoll, and use AvahiSimplePoll in the default
constructor. Added a obby::avahi_select::poll that implements an avahi
poll with a net6 selector as backend. This is yet untested.
2007-04-14 Philipp Kern <phil@0x539.de>
* inc/Makefile.am: install zeroconf_avahi.hpp because dependent
applications might want to dynamic_cast it to specify
a custom poll loop
2007-04-14 Philipp Kern <phil@0x539.de>
* src/common.cpp: additional entry in the library's symbol table
if Avahi is used as Zeroconf backend
2007-04-14 Philipp Kern <phil@0x539.de>
* configure.ac: reactivate the Avahi Zeroconf wrapper and prefer
it over Howl
2007-04-07 Armin Burgmeier <armin@0x539.de>
* inc/buffer.hpp (basic_buffer::document_add): Only emit subscription
signal for the users that are initially subscribed, not for the ones
that document_insert signal handlers potentially subscribe.
2007-04-02 Philipp Kern <phil@0x539.de>
* inc/document_info.hpp:
* inc/format_string.hpp:
* inc/zeroconf.hpp:
* src/colour.cpp: added additional #include directives to fix
compilation with GCC 4.3, thanks to Martin Michlmayr
2007-04-02 Philipp Kern <phil@0x539.de>
* inc/zeroconf_avahi.hpp:
* src/zeroconf_avahi.cpp: Some improvements to the native Avahi
implementation, thanks to Andreas Niess; yet untested:
+ use threaded poll instead of simple poll
2007-03-21 Armin Burgmeier <armin@0x539.de>
* src/command.cpp: Do not truncate the last character of command
arguments.
* inc/server_buffer.hpp:
* inc/host_buffer.hpp: Added a send_message overload that takes a
recipient.
2007-03-15 Armin Burgmeier <armin@0x539.de>
* contrib/obbyconv/obbyconv_03_to_04: Added conversion script that
converts obby sessions from version 0.3 to 0.4 by Thomas Herlea.
2007-02-25 Armin Burgmeier <armin@0x539.de>
* inc/document.hpp:
* src/document.cpp: Added changed signal that is emitted every time
the document is changed.
2007-02-25 Philipp Kern <phil@0x539.de>
* README, configure.ac: Bump dependency of net6 to 1.3.3
* NEWS, configure.ac: Bump version to 0.4.3
2006-11-08 Armin Burgmeier <armin@0x539.de>
Fall back to IPv4 when the session could not be hosted on port IPv6
[fixes #221]
2006-11-04 Armin Burgmeier <armin@0x539.de>
Libtool stuff
2006-09-24 Philipp Kern <phil@0x539.de>
Updated ChangeLog for release
2006-09-24 Philipp Kern <phil@0x539.de>
Updated Autotools and gettext infrastructure
2006-09-15 Philipp Kern <phil@0x539.de>
Fix build issue caused by a comment
2006-08-26 Philipp Kern <phil@0x539.de>
Include the jupiter test file in the tarball
2006-08-26 Philipp Kern <phil@0x539.de>
Updated ChangeLog for release
2006-08-26 Philipp Kern <phil@0x539.de>
Update to the Catalan translation, thanks to Jordi Mallach
2006-08-26 Philipp Kern <phil@0x539.de>
Bump version to 0.4.1
2006-08-26 Philipp Kern <phil@0x539.de>
Add new translations to NEWS
2006-08-26 Philipp Kern <phil@0x539.de>
Credit Jordi Mallach, Rolando Espinoza and Daniel Nylander as
translators
2006-08-21 Philipp Kern <phil@0x539.de>
Drop Fortran checks for a massive speed-up
2006-08-20 Philipp Kern <phil@0x539.de>
Remove the test build conditional
2006-08-20 Armin Burgmeier <armin@0x539.de>
Check whether file could be opened
2006-08-17 Philipp Kern <phil@0x539.de>
Updated ChangeLog for release
2006-08-17 Philipp Kern <phil@0x539.de>
Translation roundup
2006-08-17 Philipp Kern <phil@0x539.de>
Fix the po/ Makefile
2006-08-16 Philipp Kern <phil@0x539.de>
Bump version to 0.4.0rc4 and depend on net6-1.3.0rc3 or higher
2006-08-15 Armin Burgmeier <armin@0x539.de>
Use IPv6 when compiled with --enable-ipv6
2006-08-15 Philipp Kern <phil@0x539.de>
Update NEWS
2006-08-14 Philipp Kern <phil@0x539.de>
Add chunk and suffix handling to obby-web
2006-08-11 Armin Burgmeier <armin@0x539.de>
Try IPv6 name resolution when IPv4 failed and USE_IPV6 is activated
2006-08-11 Philipp Kern <phil@0x539.de>
Enable IPv6 defines
2006-08-11 Armin Burgmeier <armin@0x539.de>
Broadcast document removals
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>
Re-establish the local m4 storage
2006-08-07 Armin Burgmeier <armin@0x539.de>
m4 gettext macros
2006-08-07 Armin Burgmeier <armin@0x539.de>
Fix insert/insert transformation, probably caused desync
2006-08-03 Armin Burgmeier <armin@0x539.de>
Updated po/Makefile.in.in to gettext-0.15
2006-07-03 Armin Burgmeier <armin@0x539.de>
Adjusted use of global PROTOCOL_VERSION
2006-07-03 Armin Burgmeier <armin@0x539.de>
Find more users when flags do not match in user_table::find functions
2006-07-03 Armin Burgmeier <armin@0x539.de>
Made PROTOCOL_VERSION global in order to get it linked correctly
2006-07-01 Philipp Kern <phil@0x539.de>
Move the protocol version to buffer.cpp
2006-06-16 Philipp Kern <phil@0x539.de>
GCC 3.3 compile fixes
2006-05-18 Philipp Kern <phil@0x539.de>
Updated ChangeLog for release
2006-05-18 Philipp Kern <phil@0x539.de>
Compile fix for GCC 4.0
2006-05-18 Philipp Kern <phil@0x539.de>
Bumped version to 0.4.0rc2
2006-05-18 Philipp Kern <phil@0x539.de>
Deactivate all Zeroconf implementations except Howl
2006-05-14 Armin Burgmeier <armin@0x539.de>
GCC 3.3 build fix
2006-05-07 Philipp Kern <phil@0x539.de>
Added `make check' testrunner
2006-05-07 Armin Burgmeier <armin@0x539.de>
Make tests return EXIT_SUCCESS or EXIT_FAILURE
2006-05-07 Armin Burgmeier <armin@0x539.de>
Removed jupiter dir, added jupiter test to test/
2006-05-07 Armin Burgmeier <armin@0x539.de>
Fixed a bug in text::compare that produced incorrect results
2006-05-06 Philipp Kern <phil@0x539.de>
Check for substrings in Win32 detection
2006-04-29 Armin Burgmeier <armin@0x539.de>
Removed rsa test
2006-04-18 Philipp Kern <phil@0x539.de>
Compatibility fix for Avahi's Howl layer
2006-04-17 Philipp Kern <phil@0x539.de>
Split Zeroconf API into three files and implement auto API selection
2006-04-15 Philipp Kern <phil@0x539.de>
Refactored Zeroconf support, added Avahi stub (dysfunctional)
2006-04-10 Philipp Kern <phil@0x539.de>
Updated ChangeLog for release
2006-04-10 Philipp Kern <phil@0x539.de>
Log logic errors to stderr
2006-04-08 Armin Burgmeier <armin@0x539.de>
obby::text::erase ignored stuff merged with first chunk
2006-04-01 Armin Burgmeier <armin@0x539.de>
Only adjust doc counter when conflicting with synced document's ID
2006-04-01 Armin Burgmeier <armin@0x539.de>
Initialise document ID counter in initial sync
2006-03-30 Philipp Kern <phil@0x539.de>
Empty the TODO for now
2006-03-30 Philipp Kern <phil@0x539.de>
Translation roundup
2006-03-30 Philipp Kern <phil@0x539.de>
Updated NEWS once again
2006-03-30 Philipp Kern <phil@0x539.de>
Update version to 0.4.0rc1
2006-03-30 Armin Burgmeier <armin@0x539.de>
Changed codename for 0.4.0 to Faust
2006-03-29 Armin Burgmeier <armin@0x539.de>
Remove client connection on logic error in server_buffer [fixes #119]
2006-03-28 Armin Burgmeier <armin@0x539.de>
Added command_context_from
2006-03-28 Armin Burgmeier <armin@0x539.de>
Changed user_context and document_info context according to new
context behaviour
2006-03-27 Armin Burgmeier <armin@0x539.de>
Added forwards of keepalive option
2006-03-25 Armin Burgmeier <armin@0x539.de>
Replaced line.cpp by text.cpp in POTFILES.in
2006-03-25 Philipp Kern <phil@0x539.de>
Place library requirements in a central location
2006-03-25 Philipp Kern <phil@0x539.de>
Activate the maintainer mode configure option
2006-03-25 Philipp Kern <phil@0x539.de>
Use obby-0.4 for pkgconfig, depend on net6-1.3
2006-03-25 Philipp Kern <phil@0x539.de>
Preliminary NEWS for 0.4.0
2006-03-24 Philipp Kern <phil@0x539.de>
Bump version and API version
2006-03-24 Armin Burgmeier <armin@0x539.de>
Removed token storage in user, we do not need the token anymore
2006-03-24 Philipp Kern <phil@0x539.de>
Removed SHA1, tokens and all references to GMP
2006-03-24 Philipp Kern <phil@0x539.de>
Remove the GMP autoconf macros
2006-03-24 Philipp Kern <phil@0x539.de>
Removed the RSA support and with it the GMP dependency
2006-03-20 Armin Burgmeier <armin@0x539.de>
Guarantee connection encryption before sending login
2006-03-19 Armin Burgmeier <armin@0x539.de>
Command subsystem. However, only /me and /help are implemented
[fixes #29]
2006-03-13 Armin Burgmeier <armin@0x539.de>
Emit subscription signal after complete user subscription
2006-03-12 Armin Burgmeier <armin@0x539.de>
Made obby::document fulfill document requirements
2006-03-10 Armin Burgmeier <armin@0x539.de>
Added suffix for documents with the same name
2006-03-10 Armin Burgmeier <armin@0x539.de>
Removed encrypted signal handler, one may connect to
net6::user::encrypted_event
2006-03-10 Armin Burgmeier <armin@0x539.de>
Fixed session restore in Gobby
2006-03-03 Armin Burgmeier <armin@0x539.de>
Moved is_open() into base class (basic_buffer)
2006-03-02 Armin Burgmeier <armin@0x539.de>
Some more changes to allow the use of documents without connection
2006-03-01 Armin Burgmeier <armin@0x539.de>
Some changes to server to keep documents after closure
2006-03-01 Armin Burgmeier <armin@0x539.de>
Some changes to client code to keep documents after disconnection
2006-02-28 Armin Burgmeier <armin@0x539.de>
Added encoding field in document info
2006-02-26 Armin Burgmeier <armin@0x539.de>
Provide current subscription state to client applications
2006-02-22 Armin Burgmeier <armin@0x539.de>
Some fixes to obby::text and the new document templates
2006-02-14 Philipp Kern <phil@0x539.de>
Initial addition of encryption support to the client_buffer
2006-02-10 Armin Burgmeier <armin@0x539.de>
Implemented remaining text stuff, documentation
2006-02-10 Armin Burgmeier <armin@0x539.de>
Added text::erase, text::append and text::prepend with
corresponding tests
2006-02-09 Armin Burgmeier <armin@0x539.de>
Further changes to text::substr and text::insert
2006-02-09 Armin Burgmeier <armin@0x539.de>
Some optimizations to text::insert
2006-02-09 Armin Burgmeier <armin@0x539.de>
Some initial changes to replace obby::line. This breaks gobby
and sobby.
2006-02-06 Armin Burgmeier <armin@0x539.de>
Added jupiter_error
2006-02-04 Armin Burgmeier <armin@0x539.de>
Use IPv4 instead of IPv6 in host_buffer
2006-02-03 Armin Burgmeier <armin@0x539.de>
Added document template to operation and record
2006-02-02 Armin Burgmeier <armin@0x539.de>
Templatized jupiter implementation with document type
2006-01-30 Armin Burgmeier <armin@0x539.de>
Added document template for server and host
2006-01-30 Armin Burgmeier <armin@0x539.de>
Added document template to client_buffer and client_document_info
2006-01-30 Armin Burgmeier <armin@0x539.de>
Added Document template to local_buffer and local_document_info
2006-01-29 Armin Burgmeier <armin@0x539.de>
Introduced document template for buffer and document_info
2006-01-26 Armin Burgmeier <armin@0x539.de>
Added missing return statement in client_document_info
2006-01-26 Armin Burgmeier <armin@0x539.de>
Some autostuff...
2006-01-26 Armin Burgmeier <armin@0x539.de>
Removed trailing ';' from serialise namespace in colour.hpp
2006-01-19 Trac <trac@darcs.0x539.de>
TODO updated
2005-12-08 Philipp Kern <phil@0x539.de>
Supplementary commit for translation roundup
2005-12-08 Philipp Kern <phil@0x539.de>
Update net6 dependency mentioned in README
2005-12-08 Philipp Kern <phil@0x539.de>
Translation roundup
2005-12-08 Philipp Kern <phil@0x539.de>
Change translation list in NEWS for 0.3.0
2005-11-27 Philipp Kern <phil@0x539.de>
Remove empty jupiter/TODO
2005-11-24 Philipp Kern <phil@0x539.de>
Translation roundup
2005-11-24 Philipp Kern <phil@0x539.de>
Depend on net6-1.2 1.2.1 or higher
2005-11-24 Armin Burgmeier <armin@0x539.de>
Read serialised sessions linewise on WIN32
2005-11-24 Armin Burgmeier <armin@0x539.de>
Removed obsolete code in source files which is not templatized
2005-11-24 Armin Burgmeier <armin@0x539.de>
Explictely use (hex_)contexts at some places
2005-11-22 Armin Burgmeier <armin@0x539.de>
Removed covariant returns from host_buffer
2005-11-20 Philipp Kern <phil@0x539.de>
Send sync_init earlier
2005-11-20 Philipp Kern <phil@0x539.de>
Log document creations
2005-11-19 Armin Burgmeier <armin@0x539.de>
Updated README for net6-1.2
2005-11-19 Armin Burgmeier <armin@0x539.de>
Translate a missing string in inc/serialise/attribute.hpp
2005-11-18 Armin Burgmeier <armin@0x539.de>
Added inc/server_buffer.hpp to POTFILES.in
2005-11-18 Philipp Kern <phil@0x539.de>
Bugfix for refresh link in obby_web
2005-11-17 Armin Burgmeier <armin@0x539.de>
gettext_package usage for obby, resulting in Win32 locale support
2005-11-17 Armin Burgmeier <armin@0x539.de>
Do not store a local reference to user table, gcc 3.3 seems to
be confused by this
2005-11-17 Armin Burgmeier <armin@0x539.de>
Need runtime-pseudo-reloc stuff on win32
2005-11-17 Trac <trac@darcs.0x539.de>
TODO updated
2005-11-15 Philipp Kern <phil@0x539.de>
Translation roundup, No. 2
2005-11-15 Philipp Kern <phil@0x539.de>
Updated NEWS
2005-11-15 Philipp Kern <phil@0x539.de>
Translation roundup
2005-11-13 Philipp Kern <phil@0x539.de>
Updated NEWS
2005-11-12 Armin Burgmeier <armin@0x539.de>
Added local_document_info::is_subscribed()
2005-11-06 Philipp Kern <phil@0x539.de>
Added Swedish translation, thanks to Daniel Nylander!
2005-11-05 Armin Burgmeier <armin@0x539.de>
Only user const user in buffer, user_table provides methods to
manipulate
2005-11-05 Philipp Kern <phil@0x539.de>
Renamed htaccess away from the dot file
2005-11-05 Armin Burgmeier <armin@0x539.de>
Added .htaccess for mod_rewrite
2005-11-05 Armin Burgmeier <armin@0x539.de>
Committet obby.php (web visualisation of serialised sessions)
2005-11-04 Armin Burgmeier <armin@0x539.de>
Serialise colour in RRGGBB format instead of BBGGRR
2005-11-04 Armin Burgmeier <armin@0x539.de>
Replaced flags/reverse to inc_flags/exc_flags in user_table
2005-11-04 Armin Burgmeier <armin@0x539.de>
Introduced obby_codename()
2005-11-04 Armin Burgmeier <armin@0x539.de>
Reimplemented ring class using std::list
2005-11-03 Armin Burgmeier <armin@0x539.de>
Removed original operations, they have no use right now
2005-11-03 Armin Burgmeier <armin@0x539.de>
Prompt for any incorrect login parameters
2005-11-03 Armin Burgmeier <armin@0x539.de>
Made passwords optional in login packet
2005-11-03 Armin Burgmeier <armin@0x539.de>
Save and require obby version in serialised session
2005-11-03 Armin Burgmeier <armin@0x539.de>
Implemented hex_context for user and document_info
2005-11-03 Armin Burgmeier <armin@0x539.de>
Do not use IPv6
2005-11-03 Armin Burgmeier <armin@0x539.de>
Throw error if serialisation failed
2005-11-03 Armin Burgmeier <armin@0x539.de>
ring is broken, but we do not need it right now, anyway
2005-11-03 Armin Burgmeier <armin@0x539.de>
Fixed obby::user_table::count
2005-11-02 Armin Burgmeier <armin@0x539.de>
Fixed a potential endless loop in ring
2005-11-02 Armin Burgmeier <armin@0x539.de>
Introduced obby::colour class
2005-11-02 Armin Burgmeier <armin@0x539.de>
Surrended an error message in user_table by _()
2005-11-02 Armin Burgmeier <armin@0x539.de>
Fixed a memleak in jupiter_undo
2005-11-02 Armin Burgmeier <armin@0x539.de>
Added chat class for handling chat messages
2005-11-02 Armin Burgmeier <armin@0x539.de>
Integrated undo manager in server
2005-11-02 Armin Burgmeier <armin@0x539.de>
Undo integration for jupiter_client
2005-11-02 Armin Burgmeier <armin@0x539.de>
Renamed signal_local_type to signal_record_type
2005-11-02 Armin Burgmeier <armin@0x539.de>
Store only local undo stack in undo manager
2005-11-02 Armin Burgmeier <armin@0x539.de>
Added ring test
2005-11-02 Armin Burgmeier <armin@0x539.de>
Notify jupiter_client about user subscriptions
2005-11-02 Armin Burgmeier <armin@0x539.de>
Added missing reversible_insert_operation files
2005-10-28 Armin Burgmeier <armin@0x539.de>
Added reversible_insert_operation along with undo manager class
2005-10-28 Armin Burgmeier <armin@0x539.de>
Added ring class
2005-10-27 Armin Burgmeier <armin@0x539.de>
Added inc/serialise to Doxyfile
2005-10-23 Trac <trac@darcs.0x539.de>
TODO updated
2005-10-22 Armin Burgmeier <armin@0x539.de>
std::auto_ptr does not provide operator!, using ptr.get() == NULL
instead
2005-10-22 Philipp Kern <phil@0x539.de>
Catalan translation added, thanks to Jordi Mallach
2005-10-21 Armin Burgmeier <armin@0x539.de>
Added serialisation methods, fixed some serialisation errors
2005-10-09 Armin Burgmeier <armin@0x539.de>
obby-local user IDs
2005-10-09 Armin Burgmeier <armin@0x539.de>
Avoid returning reference to temporary in
document_packet::get_command()
2005-10-09 Armin Burgmeier <armin@0x539.de>
Show what has gone wrong if a conversion error occured in
attribute::as
2005-10-09 Armin Burgmeier <armin@0x539.de>
Increased protocol version to 3 for new serialisation concept
2005-10-09 Armin Burgmeier <armin@0x539.de>
Session deserialisation
2005-10-09 Armin Burgmeier <armin@0x539.de>
Fixed 'Unexpected enf of input' when last object has an attribute
2005-10-09 Armin Burgmeier <armin@0x539.de>
Allow newlines at last line of file
2005-10-08 Trac <trac@darcs.0x539.de>
TODO updated
2005-10-08 Trac <trac@darcs.0x539.de>
TODO updated