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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329
|
2001-12-24 14:10 barnabygray
* src/: Client.cpp, Contact.cpp, Contact.h, TLV.cpp, TLV.h,
UserInfoBlock.cpp, UserInfoBlock.h: Sending advanced message to
ICQLite fix.
2001-12-24 13:58 barnabygray
* ickle/: MessageBox.cpp, MessageBox.h: Fixes to behaviour of
history
2001-12-21 18:44 nordman
* ickle/MessageBox.cpp:
Change the functionality of the historyview, it now provides one
tick for every message instead of one for every historypage. This
also means there's always history_shownr messages shown, provided
that the historysize >= history_shownr.
2001-12-19 14:07 barnabygray
* README, configure.ac, debian/changelog: Updated version numbers
for 0.2.1 release
2001-12-19 13:40 nordman
* ickle/: IckleApplet.cpp, IckleClient.cpp: Fix bug where
ickle_applet couldn't handle ickles commandline option.
2001-12-19 12:50 barnabygray
* share/translations/Makefile.am: Ukrainian entry in Makefile.am
2001-12-19 12:32 barnabygray
* ickle/IckleClient.cpp: More intelligent positioning of window
2001-12-19 12:28 barnabygray
* ickle/: ContactListView.cpp, PromptDialog.cpp: Added prompt for
removing users
2001-12-18 22:51 barnabygray
* ickle/: MessageBox.cpp, MessageBox.h: Icons in messageboxes will
update when icons are changed now
2001-12-18 22:16 barnabygray
* ickle/: IckleApplet.cpp, IckleApplet.h, IckleGUI.cpp, IckleGUI.h,
Icons.cpp, Icons.h, SettingsDialog.cpp, SettingsDialog.h: Reverted
some of Nils' changes, so icons_changed are still signalled
separately from settings_changed. Now we can do it the proper way
having both signals.
2001-12-18 20:02 nordman
* ickle/: Icons.h, Settings.cpp: Some minor stuff part of the
Settings interface change.
2001-12-18 19:45 nordman
* ickle/: ContactListView.h, IckleApplet.cpp, IckleApplet.h,
IckleGUI.cpp, IckleGUI.h, Icons.cpp, Icons.h, MessageBox.cpp,
MessageBox.h, Settings.cpp, Settings.h, SettingsDialog.cpp,
SettingsDialog.h: Fix problem that would arise upon having a
messagebox open and at the same time increasing the number of
messages shown in the history.
Revamp the Settings interface at the same time. It now features one
signal, "settings_changed", that passes along the key that have
been changed. Callbacks listening to this signal should then use
the key to determine whether this is the key that they're
interested in and check for the new value if that's the case.
2001-12-18 18:01 barnabygray
* TODO, debian/ickle-common.files, debian/ickle-dev.files,
debian/rules: Adding back in DNS lookups to TODO, adding
sending/removing contact list support to TODO. Debian files
updates
2001-12-18 17:21 nordman
* TODO: Some items done.
2001-12-18 16:56 nordman
* THANKS, share/translations/UKRAINIAN_WIN: translation file for
wincp1251 - koi8-u (UKRAINIAN_WIN), thanks to Serhiy Brytskyy.
2001-12-17 22:46 nordman
* ickle/History.cpp: gcc 3.*
2001-12-17 18:58 nordman
* ickle/MessageBox.cpp: gcc 3.* fix
2001-12-17 18:24 barnabygray
* ickle/IckleClient.cpp: gcc 3.0 compatibility fix
2001-12-17 15:16 nordman
* ickle/History.h: gcc 3.* compability fix.
2001-12-16 15:56 nordman
* ickle/ContactListView.cpp: Enter/return/space on a contact in the
contactlist now pops up the messagebox for that contact.
2001-12-16 14:38 nordman
* ickle/MessageBox.cpp: shortcuts should be available even if
history is focused.
2001-12-16 13:33 nordman
* configure.ac: window manager -> desktop enviroment.
2001-12-15 13:15 barnabygray
* Makefile.am, NEWS, debian/changelog: Updated debian stuff
2001-12-15 13:07 barnabygray
* NEWS: Nils got a bit enthuistic with the version number there :-)
2001-12-15 13:00 barnabygray
* ChangeLog, NEWS: Put date in NEWS, updated ChangeLog
2001-12-15 12:23 nordman
* NEWS: Add initial release information.
2001-12-14 13:00 barnabygray
* examples/shell.cpp: Updated shell example to work with
nonblocking connects
2001-12-14 11:05 barnabygray
* ickle/ContactListView.cpp: I'm not awake this morning
2001-12-14 10:40 barnabygray
* ickle/ContactListView.cpp: moveto only if not visible (thanks
Michael)
2001-12-14 10:36 barnabygray
* ickle/ContactListView.cpp: Fixed 100% cpu lookup bug, and
possible other bugs in key press for contact list
2001-12-13 23:04 barnabygray
* ickle/MessageBox.cpp: Added date to history entries is they not
for 'today'. Might me nice to make more customisable in future.
2001-12-13 22:09 barnabygray
* src/Makefile.am: Incremented library current interface
2001-12-13 20:29 barnabygray
* src/socket.cpp: - Fixed blocking on incoming direct connections
2001-12-13 20:28 barnabygray
* debian/: changelog, ickle.substvars: Debian package updates
2001-12-13 19:18 barnabygray
* ickle/IckleClient.cpp, src/Client.cpp, src/Contact.cpp,
src/Contact.h, src/DirectClient.cpp, src/DirectClient.h,
src/buffer.cpp, src/socket.cpp, src/socket.h: - Non-blocking
sockets - Removed use of back_inserter in socket, older libstdc++s
don't have string::push_back - Added a little intelligence to
direct connections, so after failing once they won't be tried
again.
2001-12-13 16:11 barnabygray
* ickle/IckleClient.cpp: default for retries should be 0
2001-12-13 12:37 barnabygray
* src/DirectClient.cpp: Direct connections to 2000 clients working
finally! WOOHOO!
2001-12-12 23:16 barnabygray
* ickle/IckleClient.cpp: Lower limit imposed on input value for
pager size should be 1
2001-12-12 22:43 nordman
* ickle/: IckleClient.cpp, MessageBox.cpp, MessageBox.h,
SettingsDialog.cpp, SettingsDialog.h: Added option for specifying
the number of messages shown per history-page.
2001-12-12 19:08 barnabygray
* THANKS, src/Client.cpp: Konst pointed out a problem in Client.cpp
for sending urls. Ooops.
2001-12-12 18:20 barnabygray
* ickle/: IckleClient.cpp, IckleGUI.cpp, SettingsDialog.cpp,
SettingsDialog.h: Added autoraise option, so you can autoraise
without having to autopopup.
WARNING: Once you pop, you just can't stop.
2001-12-12 17:23 barnabygray
* Makefile.am, debian/README, debian/README.Debian,
debian/changelog, debian/control, debian/dirs, debian/docs,
debian/ickle-common.README.Debian, debian/ickle-common.docs,
debian/ickle-common.files, debian/ickle-dev.files,
debian/ickle-gnome.dirs, debian/ickle.dirs, debian/ickle.files,
debian/ickle.manpages, debian/ickle.menu, debian/ickle.substvars,
debian/manpages, debian/menu, debian/rules: Debian related package
stuff
2001-12-11 15:52 barnabygray
* AUTHORS, configure.ac, debian/changelog, debian/control,
debian/docs, debian/ickle-dev.files, debian/ickle-gnome.files,
debian/ickle-gnome.manpages, debian/ickle-gnome.menu,
debian/ickle.substvars, debian/manpages, debian/menu,
debian/postinst, debian/postrm, debian/preinst, debian/prerm,
debian/rules, ickle/Makefile.am, ickle/ickle.1,
ickle/ickle_applet.1: - Updated debian stuff - Added manpages
2001-12-11 15:14 barnabygray
* ickle/: IckleClient.cpp, IckleClient.h: Added usage information
2001-12-11 01:17 barnabygray
* src/: Client.cpp, ContactList.cpp, ContactList.h: Fixed segfault
on adding new user.
2001-12-10 23:59 barnabygray
* ickle/ContactListView.cpp: Added back in the moveto() that
Michael's original patch for ContactListView had.
2001-12-10 23:53 barnabygray
* src/: Cache.h, DCCache.h, ICBMCookieCache.h, RequestIDCache.h:
Fixed the obscure segfaults that were happening on removing users
2001-12-10 23:06 barnabygray
* ickle/IckleClient.cpp, src/Client.cpp, src/Client.h: ickle
behaving correctly with empty aliases
2001-12-10 21:39 nordman
* ickle/ContactListView.cpp: please gcc 3.*
2001-12-10 21:16 nordman
* ickle/IckleClient.cpp: erm. That was supposed to be gone before
checking in.
2001-12-10 20:58 nordman
* ickle/ContactListView.cpp: do it the leet c++ way.
2001-12-10 20:28 nordman
* ickle/: IckleClient.cpp, MessageBox.cpp, SettingsDialog.cpp,
SettingsDialog.h: Added option: autoclose after sending a message.
2001-12-10 19:19 nordman
* ickle/: MessageBox.cpp, MessageBox.h: Add mousewheel support for
the Gtk::Text boxes.
2001-12-10 15:55 barnabygray
* ickle/: ContactListView.cpp, ContactListView.h: Patch from
Michael smith: - Sorting by aliases in contact list, after
#messages and status - Jumping to a contact by keypress in
contactlist
2001-12-10 15:43 barnabygray
* THANKS: Updated THANKS
2001-12-10 02:34 barnabygray
* ickle/History.cpp: Added some defaults for missing fields in
history. Turns out lots of messages being tagged as multiparty was
actually what used to be a bug in ickle.
2001-12-10 02:12 barnabygray
* ickle/: AwayMessageDialog.cpp, SettingsDialog.cpp: - More font
related stuff
2001-12-10 02:04 barnabygray
* ickle/: History.cpp, History.h, IckleClient.cpp, MessageBox.cpp,
SettingsDialog.cpp, SettingsDialog.h: - Fine tuning Nils' history
changes - Added customisable font selection for message box
2001-12-10 00:17 nordman
* ickle/MessageBox.cpp: hmrpf. I can afford to expand that.
2001-12-10 00:12 nordman
* ickle/: History.cpp, History.h, IckleClient.cpp, IckleClient.h,
IckleGUI.cpp, IckleGUI.h, MessageBox.cpp, MessageBox.h: ickle now
has a leet history viewing capability.
2001-12-09 22:58 barnabygray
* ickle/: IckleClient.cpp, IckleGUI.cpp, IckleGUI.h,
SettingsDialog.cpp, SettingsDialog.h: Added autopopup for incoming
messages - if that's your sort of thing.
2001-12-09 20:38 barnabygray
* ickle/: IckleClient.cpp, IckleClient.h: Security on log file, as
password may be logged there
2001-12-09 20:26 barnabygray
* examples/shell.cpp, ickle/Icons.cpp, ickle/MessageBox.cpp,
src/Cache.h, src/Client.cpp, src/Client.h, src/DCCache.h,
src/DirectClient.cpp, src/DirectClient.h, src/ICBMCookieCache.h,
src/ICQ.cpp, src/ICQ.h, src/RequestIDCache.h, src/events.cpp,
src/events.h: - Fixes for Direct connections - Message acks for SMS
- Parsing SMS delivery failed messages
2001-12-09 19:51 nordman
* ickle/IckleApplet.cpp: Fix segfault.
2001-12-09 00:53 barnabygray
* TODO, ickle/IckleClient.cpp, ickle/IckleClient.h,
ickle/MessageBox.cpp, ickle/Settings.cpp, ickle/Settings.h,
ickle/SettingsDialog.cpp, ickle/SettingsDialog.h, src/Client.cpp,
src/Client.h, src/DirectClient.cpp, src/TLV.cpp: - Added Settings
for selecting a different server/port and overriding port for
redirect server - Neatened up logging, added timestamp and removed
extraneous linefeeds. - Fixed Settings class so defaults are done
better and more consistently
2001-12-08 03:14 barnabygray
* src/Client.cpp: Fixed a cause of segfaults in direct connections
2001-12-08 02:33 barnabygray
* README: Placed emphasis more on mailing lists as first point of
contact for people.
2001-12-08 02:24 nordman
* README: minor stuff
2001-12-08 01:57 barnabygray
* src/DCCache.h: Oops, there's always one I forget.
2001-12-08 01:57 barnabygray
* examples/shell.cpp, ickle/IckleClient.cpp: Couple of fixes to
please PowerPC compilation related to signedness. Hopefully this
is now the text-book way of handling fgetc() and istream::getc().
2001-12-08 01:43 barnabygray
* README, TODO, configure.ac, examples/shell.cpp: Tidying up README
for an impending release
2001-12-08 01:42 barnabygray
* ickle/: AwayMessageDialog.cpp, AwayMessageDialog.h,
ContactListView.cpp, IckleClient.cpp, IckleClient.h, Makefile.am,
MessageBox.cpp, SettingsDialog.cpp, SettingsDialog.h: - Changes
library side to make away messages more sensible - Added auto
reconnect + retries - Added finer logging control and logging to a
file
2001-12-08 01:40 barnabygray
* src/: Cache.h, Client.cpp, Client.h, DirectClient.cpp,
DirectClient.h, Makefile.am, SeqNumCache.h, events.cpp, events.h,
socket.cpp, socket.h: Direct connections *almost* working now
2001-12-07 23:48 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h, IckleClient.cpp: Use a
newly added signal to popup users messagebox.
2001-12-07 14:40 barnabygray
* ickle/: ContactListView.cpp, UserInfoDialog.cpp: - Removed
set_sensitive calls for User Info dialog, so they are selectable
for clipboard, etc.. - Fixed behaviour of Contact List for
contacts with empty aliases, so it behaves the same as official
clients (and more sensibly anyway).
2001-12-06 23:10 nordman
* ickle/main.cpp: Wrap execution in a try-catch block.
2001-12-06 22:50 barnabygray
* ickle/: ContactListView.cpp, ContactListView.h, IckleClient.cpp,
IckleClient.h, IckleGUI.cpp, IckleGUI.h, MessageBox.cpp,
MessageBox.h, UserInfoDialog.cpp, UserInfoDialog.h: Made user info
dialog non-modal and added a toggle for it in the Message box.
2001-12-06 15:45 nordman
* ickle/MessageBox.cpp: Make resizing of messageboxes act sanely.
2001-12-05 11:41 nordman
* README: Add blurb about --without-gnome
2001-12-05 11:17 nordman
* configure.ac: After configuring for the GNOME applet, add note
about how to configure to not use GNOME.
2001-12-04 15:41 nordman
* ickle/: History.cpp, History.h, IckleClient.cpp, IckleClient.h:
Pave way for future history viewing.
2001-12-02 22:06 nordman
* NEWS: nitpick.
2001-12-02 17:19 barnabygray
* NEWS: Updated NEWS
2001-12-02 17:18 barnabygray
* Makefile.am: Added thanks to dist
2001-12-02 17:17 barnabygray
* Makefile.am, ickle/Makefile.am, share/Makefile.am,
share/icons/Makefile.am, share/icons/doors/Makefile.am,
share/icons/ickle/Makefile.am, share/icons/icq/Makefile.am,
share/translations/Makefile.am, share/icons/gnomeicu/Makefile.am,
share/icons/new/Makefile.am: Fixes for dist target
2001-12-02 17:17 barnabygray
* THANKS: Added a thanks file
2001-12-02 17:12 barnabygray
* debian/: README.Debian, changelog, control, copyright, dirs,
docs, ickle.substvars, menu, postinst, postrm, preinst, prerm,
rules: - Added debian packaging files thanks to Dominik 'Aeneas'
Schnitzer
2001-12-02 17:03 nordman
* README: Add some stuff about the GNOME applet. Update the
shortcuts section.
2001-12-02 15:26 nordman
* acinclude.m4, configure.ac: Add a check to see if the applets
library actually is installed. Add a notice so the user knows
whether the applet is going to be built or not.
2001-12-02 13:19 nordman
* configure.ac, acinclude.m4: GNOME config stuff back in a new
form, use a modified copy of the stock macro.
2001-12-02 13:15 nordman
* ickle/Makefile.am: Program specific CPPFLAGS have no effect,
@GNOME_INCLUDEDIR@ goes back to AM_CPPFLAGS (will expand to an
empty string if the applet is not built anyway)
2001-12-01 17:07 barnabygray
* configure.ac, ickle/Makefile.am: Cut out applet GNOME config
stuff until it's fixed. Sorry Nils :-(
2001-12-01 13:24 nordman
* ickle/: MessageBox.cpp, MessageBox.h: Use Statusbar instead of an
Entry.
2001-11-29 19:42 nordman
* ickle/SettingsDialog.cpp: Remove text about echo -e "\a" working,
that's not portable so we can't say.
2001-11-29 19:18 nordman
* configure.ac, ickle/Makefile.am: Use the stock GNOME checks,
though we hack our way round the broken GNOME_INIT_HOOK macro. This
also means that the GNOME applet will be built by default if GNOME
is installed. To avoid this, pass the --without-gnome option to
configure.
Remove pthreads checks, we don't use pthreads.
2001-11-28 17:09 barnabygray
* ickle/: ContactListView.cpp, IckleClient.cpp, IckleClient.h: [no
log message]
2001-11-28 15:59 barnabygray
* TODO: Updated TODO
2001-11-27 18:42 nordman
* ickle/MessageBox.cpp: Also allow escape to close down a
messagebox.
2001-11-27 18:41 nordman
* ickle/IckleApplet.cpp: "sstream_fix" -> "sstream_fix.h"
2001-11-27 17:56 barnabygray
* ickle/MessageBox.cpp: Added Alt-C shortcut for closing MessageBox
2001-11-27 17:18 nordman
* ickle/MessageBox.cpp: Uses the defines instead of hardcoding
numbers.
2001-11-27 15:34 barnabygray
* configure.ac, examples/shell.cpp, ickle/AwayMessageDialog.cpp,
ickle/IckleApplet.cpp, ickle/IckleClient.cpp, ickle/MessageBox.cpp,
ickle/MobileNoEntry.cpp, ickle/Settings.cpp,
ickle/UserInfoDialog.cpp, src/Client.cpp, src/Contact.cpp,
src/DirectClient.cpp, src/ICQ.cpp, src/Makefile.am,
src/SNAC-MSG.cpp, src/SNAC-SRV.cpp, src/Translator.cpp,
src/socket.cpp, src/sstream_fix.h: Added wrapping for the older
strstream so that it can be used like the new sstream. This is a
messy stop gap measure that'll hopefully stop people complaining
about the dependancy on the new libstdc++ libraries, or the
backport of sstream from them.
2001-11-26 23:58 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h: Make applet update in
realtime as icons changes from within the settingsdialog.
2001-11-26 23:45 nordman
* ickle/: ContactListView.cpp, IckleApplet.cpp, IckleClient.cpp,
IckleGUI.cpp, IckleGUI.h, Icons.cpp, Icons.h, MessageBox.cpp,
SettingsDialog.cpp, SettingsDialog.h, main.cpp, main.h: The Icons
class no longer has any static members, but a global g_icons is
available for use. The icons_changed signal in SettingsDialog have
been replaced with a icons_changed signal in Icons. This is
signaled *every* time the icons changes, as opposed to the old
signal.
2001-11-26 20:36 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h: Better handling of applet
size, should look better with a tiny panel for example.
Throw in support for panel orientation at the same time.
2001-11-26 19:29 barnabygray
* ickle/: AwayMessageDialog.cpp, AwayMessageDialog.h,
ContactListView.cpp, ContactListView.h, IckleClient.cpp,
IckleGUI.cpp, IckleGUI.h, Makefile.am, Settings.cpp, Settings.h,
SettingsDialog.cpp, SettingsDialog.h: Away Message Dialog support
added (fetching away messages). Away messages won't work for older
licq/icq99 users though - need to do direct connections for that.
2001-11-25 22:02 barnabygray
* ickle/MessageBox.cpp: Fixed displaying 'Sending message..' and
'Sent Message' in wrong order for non-advanced via server messages.
2001-11-25 15:30 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h: - Add context menu option
for toggling the main gui. - If there's messages pending, clicking
on the applet will now popup the messagebox for the contact who
sent the next message. Holding down the shift key will override
this and only cause the gui to be toggled. (option will be
introduced for specifying the default behaviour of this later).
2001-11-25 14:13 nordman
* src/Client.cpp: If a message is erased,
SignalMessageQueueChanged() must be called as well.
2001-11-25 12:55 barnabygray
* ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/MessageBox.cpp, ickle/MessageBox.h,
src/Cache.h, src/Client.cpp, src/Client.h, src/DirectClient.cpp,
src/ICBMCookie.cpp, src/ICBMCookie.h, src/ICBMCookieCache.h,
src/Makefile.am, src/SNAC-MSG.cpp, src/SNAC-MSG.h, src/TLV.cpp,
src/events.cpp, src/events.h: Added support for message ack's. GUI
now listens for the ack of a message and informs user. Need to fix
for SMSs' and probably Auth requests too.
2001-11-24 19:49 barnabygray
* ickle/: History.cpp, History.h, MessageBox.cpp, Settings.h: gcc
3.0 fixes
2001-11-24 16:48 barnabygray
* ickle/Settings.cpp: gcc 3.0 fixes
2001-11-24 16:19 barnabygray
* src/Translator.cpp: more gcc 3.0 fixes
2001-11-24 15:52 barnabygray
* src/: ICQ.cpp, ICQ.h: More gcc 3.0 fixes
2001-11-24 15:25 barnabygray
* src/: Contact.cpp, SNAC-SRV.cpp: - more gcc 3.0 fixes - advanced
messages to offline users fixed
2001-11-24 15:04 barnabygray
* src/SNAC-MSG.cpp: Another gcc 3.0 namespace fix
2001-11-24 13:49 barnabygray
* src/: Client.cpp, SNAC-GEN.cpp, SNAC-GEN.h: Fixed bug for
screwing up direct connection information when your status is
changed after logging in.
2001-11-24 13:48 barnabygray
* src/DirectClient.cpp: Working on direct connections
2001-11-24 13:44 barnabygray
* src/DirectClient.h: More gcc 3.0 namespace fixes
2001-11-24 13:42 barnabygray
* src/: Translator.h, exceptions.h, socket.h: Namespace fixes for
gcc 3.0
2001-11-23 19:36 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h: This actually makes the
applet quite usable.
-Better handling of messages. -Improved visuals: * tooltip *
applet display
2001-11-23 17:19 nordman
* src/: Client.cpp, events.cpp, events.h: StatusChangeEvent now
also provides the old status as well as the new one.
2001-11-23 15:19 barnabygray
* ickle/AwayMessageDialog.cpp, ickle/AwayMessageDialog.h,
ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/Settings.cpp, ickle/SettingsDialog.cpp,
ickle/SettingsDialog.h, src/Client.cpp: - Added Away Message
signalling - Patch for Auto login, and OptionMenu in SettingsDialog
- Fix to get gui working with Nils' signal changes
2001-11-23 13:13 alant
* ickle/IckleGUI.cpp, src/Client.cpp, src/ICQ.cpp, src/ICQ.h,
src/SNAC-MSG.cpp, src/events.cpp, src/events.h:
Added support for dealing with authorization requests/responses.
2001-11-23 12:04 nordman
* log: Got imported by mistake it seems, lose it.
2001-11-23 11:06 barnabygray
* src/socket.cpp: Fixed socket closing bug on error. Thanks Alex
for pointing this out.
2001-11-22 20:54 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h: Use the new statuschanged
signal in libicq to keep track of the status.
2001-11-22 20:16 nordman
* src/: Client.cpp, Client.h: Added statuschanged signal, should be
used by the parts of the program that needs to keep track of the
status (applet,GUI).
2001-11-22 19:08 barnabygray
* src/: Client.cpp, Client.h, ICQ.cpp, ICQ.h, events.cpp, events.h:
- Added support in library for signalling away message responses -
Added MyStatusChangeEvent for Nils
2001-11-22 15:41 nordman
* ChangeLog: Quit correctly when run as applet. Use a separate
wmclass for IckleGUI, fixes problem where main GUI would jump
around on the screen a lot when run as applet.
2001-11-22 14:34 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h, IckleClient.cpp,
IckleGUI.cpp: - Quit correctly when run as applet. - Use a
separate wmclass for IckleGUI, fixes problem where main GUI would
jump around on the screen a lot when run as applet.
2001-11-22 14:34 barnabygray
* src/SNAC-SRV.cpp: Patch to fix User Info translation. Thanks
Alexandr Kukushkin.
2001-11-22 10:36 barnabygray
* src/socket.cpp: - Couple of small fixes, thanks to David Hill for
pointing them out
2001-11-21 14:24 barnabygray
* ickle/ContactListView.h, ickle/IckleClient.cpp, src/TLV.cpp: -
Quick fix for empty message check - Changed ostringstream problems
2001-11-21 14:08 barnabygray
* src/socket.cpp: - Fixed already connected problems that can occur
if connect fails. Thanks to Alex for pointing it out.
2001-11-21 14:05 barnabygray
* src/socket.cpp: [no log message]
2001-11-20 22:31 nordman
* ChangeLog: Added GNOME applet to the tree.
2001-11-20 22:21 nordman
* configure.ac: Add --with-gnome option (for GNOME applet) along
with the required checks.
2001-11-20 22:16 nordman
* ickle/: IckleClient.cpp, IckleClient.h, main.cpp: Enable GNOME
applet.
2001-11-20 22:09 nordman
* ickle/Makefile.am: Modify for GNOME applet. Also remove unneeded
ickle_DEPENDENCIES.
2001-11-20 22:06 nordman
* ickle/: ickle_applet.desktop, ickle_applet.gnorba: Data files for
GNOME applet.
2001-11-20 22:04 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h: Initial GNOME applet for
ickle.
2001-11-20 20:23 barnabygray
* TODO, configure.ac, ickle/ContactListView.cpp,
ickle/ContactListView.h, ickle/IckleClient.cpp, ickle/IckleGUI.cpp,
ickle/Icons.cpp, ickle/MessageBox.cpp, ickle/SettingsDialog.cpp,
ickle/SettingsDialog.h, share/icons/Makefile.am,
share/icons/gnomeicu/Makefile.am, share/icons/gnomeicu/away.xpm,
share/icons/gnomeicu/chat.xpm, share/icons/gnomeicu/dnd.xpm,
share/icons/gnomeicu/ffc.xpm, share/icons/gnomeicu/file.xpm,
share/icons/gnomeicu/invisible.xpm,
share/icons/gnomeicu/message.xpm, share/icons/gnomeicu/na.xpm,
share/icons/gnomeicu/occ.xpm, share/icons/gnomeicu/offline.xpm,
share/icons/gnomeicu/online.xpm, share/icons/gnomeicu/sms.xpm,
share/icons/gnomeicu/url.xpm, share/icons/new/Makefile.am,
share/icons/new/away.xpm, share/icons/new/chat.xpm,
share/icons/new/dnd.xpm, share/icons/new/ffc.xpm,
share/icons/new/file.xpm, share/icons/new/invisible.xpm,
share/icons/new/message.xpm, share/icons/new/na.xpm,
share/icons/new/occ.xpm, share/icons/new/offline.xpm,
share/icons/new/online.xpm, share/icons/new/sms.xpm,
share/icons/new/url.xpm, src/socket.cpp: - Added a couple more sets
of icons - Fixed changing icon sets under Settings now - Added
contacts moving to top of list when they message (within the
other contacts with same status) - Fixed socket IP order and added
Alt-S send shortcut. Thanks Tobias Hoffman for pointing these out
2001-11-20 01:44 barnabygray
* ickle/: Dir.cpp, Dir.h: - Directory globbing stuff
2001-11-19 20:26 barnabygray
* ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/Icons.cpp, ickle/Icons.h,
ickle/Makefile.am, ickle/SettingsDialog.cpp,
ickle/SettingsDialog.h, ickle/main.cpp, ickle/main.h,
src/Cache.cpp, src/Cache.h, src/Client.cpp, src/Client.h,
src/Makefile.am, src/RequestIDCache.cpp, src/RequestIDCache.h,
src/SNAC-base.cpp, src/SNAC-base.h: - Request ID caching - Loading
icons almost works now
2001-11-18 19:57 barnabygray
* share/translations/Makefile.am: - Oops
2001-11-18 19:20 barnabygray
* share/: icons/Makefile.am, icons/doors/Makefile.am,
icons/ickle/Makefile.am, icons/icq/Makefile.am,
translations/Makefile.am: - More files I forgot to add
2001-11-18 18:04 barnabygray
* configure.ac, share/Makefile.am, src/Cache.cpp, src/Cache.h,
src/RequestIDCache.cpp, src/RequestIDCache.h: - More new files
2001-11-18 17:48 barnabygray
* Makefile.am, TODO, configure.ac, examples/shell.cpp,
ickle/ContactListView.cpp, ickle/ContactListView.h,
ickle/History.cpp, ickle/History.h, ickle/IckleClient.cpp,
ickle/IckleClient.h, ickle/IckleGUI.cpp, ickle/IckleGUI.h,
ickle/Makefile.am, ickle/MessageBox.cpp, ickle/MessageBox.h,
ickle/MobileNoEntry.cpp, ickle/MobileNoEntry.h,
ickle/PromptDialog.cpp, ickle/PromptDialog.h, ickle/Settings.cpp,
ickle/Settings.h, ickle/SettingsDialog.cpp, ickle/SettingsDialog.h,
ickle/UserInfoDialog.cpp, ickle/UserInfoDialog.h, ickle/main.cpp,
ickle/main.h, icons/away.xpm, icons/chat.xpm, icons/dnd.xpm,
icons/ffc.xpm, icons/file.xpm, icons/invisible.xpm,
icons/message.xpm, icons/na.xpm, icons/occ.xpm, icons/offline.xpm,
icons/online.xpm, icons/sms.xpm, icons/url.xpm,
icons.doors/away.xpm, icons.doors/chat.xpm, icons.doors/dnd.xpm,
icons.doors/ffc.xpm, icons.doors/file.xpm,
icons.doors/invisible.xpm, icons.doors/message.xpm,
icons.doors/na.xpm, icons.doors/occ.xpm, icons.doors/offline.xpm,
icons.doors/online.xpm, icons.doors/sms.xpm, icons.doors/url.xpm,
icons.icq/away.xpm, icons.icq/chat.xpm, icons.icq/dnd.xpm,
icons.icq/ffc.xpm, icons.icq/file.xpm, icons.icq/invisible.xpm,
icons.icq/message.xpm, icons.icq/na.xpm, icons.icq/occ.xpm,
icons.icq/offline.xpm, icons.icq/online.xpm, icons.icq/sms.xpm,
icons.icq/url.xpm, share/Makefile.am, share/icons/doors/away.xpm,
share/icons/doors/chat.xpm, share/icons/doors/dnd.xpm,
share/icons/doors/ffc.xpm, share/icons/doors/file.xpm,
share/icons/doors/invisible.xpm, share/icons/doors/message.xpm,
share/icons/doors/na.xpm, share/icons/doors/occ.xpm,
share/icons/doors/offline.xpm, share/icons/doors/online.xpm,
share/icons/doors/sms.xpm, share/icons/doors/url.xpm,
share/icons/ickle/away.xpm, share/icons/ickle/chat.xpm,
share/icons/ickle/dnd.xpm, share/icons/ickle/ffc.xpm,
share/icons/ickle/file.xpm, share/icons/ickle/invisible.xpm,
share/icons/ickle/message.xpm, share/icons/ickle/na.xpm,
share/icons/ickle/occ.xpm, share/icons/ickle/offline.xpm,
share/icons/ickle/online.xpm, share/icons/ickle/sms.xpm,
share/icons/ickle/url.xpm, share/icons/icq/away.xpm,
share/icons/icq/chat.xpm, share/icons/icq/dnd.xpm,
share/icons/icq/ffc.xpm, share/icons/icq/file.xpm,
share/icons/icq/invisible.xpm, share/icons/icq/message.xpm,
share/icons/icq/na.xpm, share/icons/icq/occ.xpm,
share/icons/icq/offline.xpm, share/icons/icq/online.xpm,
share/icons/icq/sms.xpm, share/icons/icq/url.xpm, src/Client.cpp,
src/Client.h, src/Contact.cpp, src/Contact.h, src/ContactList.h,
src/DirectClient.cpp, src/DirectClient.h, src/ICBMCookie.h,
src/Makefile.am, src/TLV.h, src/Xml.h, src/buffer.cpp,
src/buffer.h, src/events.h, src/exceptions.h, src/socket.cpp,
src/socket.h: - Removed all lazy unnecessary 'using namespace'
statements, to hopefully speed up compilation a bit. Probably
will break gcc 3.0 compile, but I can't test that :-( - Fixed the
signal/delete/destroy sequence for MessageBoxes, which was flawed
before. Hopefully got it right this time. - Moved icons around, so
they installed in share. - Made translation maps install properly
now.
Phew..
2001-11-13 17:48 barnabygray
* src/SNAC-MSG.cpp: Fixed some messages coming from UIN 0 problem.
2001-11-13 15:26 barnabygray
* Makefile.am, README, configure.ac, ickle/IckleClient.cpp,
ickle/IckleClient.h, ickle/IckleGUI.cpp, ickle/IckleGUI.h,
ickle/SettingsDialog.cpp, ickle/SettingsDialog.h,
ickle/UserInfoDialog.cpp, ickle/main.cpp, ickle/main.h,
share/Makefile.am, share/translations/ASCII,
share/translations/CP437, share/translations/CP850,
share/translations/DANISH, share/translations/DEC_MCS,
share/translations/DG_MCS, share/translations/DUTCH,
share/translations/FINNISH, share/translations/FRENCH,
share/translations/FRENCH_CANADIAN, share/translations/GERMAN,
share/translations/HP_MCS, share/translations/IRV,
share/translations/ITALIAN, share/translations/JIS,
share/translations/LATIN_2, share/translations/MACINTOSH,
share/translations/NEXT, share/translations/NORWEGIAN_1,
share/translations/NORWEGIAN_2, share/translations/POLISH,
share/translations/POLISH_NOPL, share/translations/PORTUGUESE,
share/translations/PORTUGUESE_COM, share/translations/RUSSIAN,
share/translations/RUSSIAN_ALT, share/translations/RUSSIAN_WIN,
share/translations/SPANISH, share/translations/SWEDISH,
share/translations/SWEDISH_NAMES,
share/translations/SWEDISH_NAMES_COM, share/translations/SWISS,
share/translations/UNITED_KINGDOM,
share/translations/UNITED_KINGDOM_COM, src/Client.cpp,
src/Client.h, src/Contact.cpp, src/DirectClient.cpp,
src/DirectClient.h, src/ICQ.cpp, src/ICQ.h, src/Makefile.am,
src/SNAC-MSG.cpp, src/SNAC-SRV.cpp, src/SNAC-base.cpp,
src/SNAC-base.h, src/TLV.cpp, src/TLV.h, src/Translator.cpp,
src/Translator.h, src/buffer.cpp, src/buffer.h: - Added Translation
map files, so they will be installed into
share/ickle/translations - Added Translation patch from Alex
(ported from licq) to Library. Thanks. - Added Translation
selection into settings dialog. - Put status icons onto status
pulldown.
2001-11-12 14:52 barnabygray
* src/ICQ.cpp: Alex pointed out m_ack wasn't being initialised.
2001-11-12 01:09 barnabygray
* src/userinfoconstants.h: Detailed user info
2001-11-11 16:08 barnabygray
* ickle/ContactListView.cpp, ickle/ContactListView.h,
ickle/IckleClient.cpp, ickle/Settings.cpp, ickle/Settings.h,
ickle/UserInfoDialog.cpp, ickle/UserInfoDialog.h, src/Client.cpp,
src/Client.h, src/Contact.cpp, src/Contact.h, src/ICQ.cpp,
src/ICQ.h, src/Makefile.am, src/SNAC-MSG.cpp, src/SNAC-MSG.h,
src/SNAC-SRV.cpp, src/SNAC-SRV.h: Implementing extended user info.
Done most of it, a few bits might need tidying up.
2001-11-09 16:01 barnabygray
* configure.ac, ickle/IckleClient.cpp, ickle/IckleClient.h: Added
patch for %X substitutions as licq does for event received
commands, etc. Thanks to John Steele Scott.
2001-11-09 15:07 barnabygray
* src/: Client.cpp, ICQ.cpp, ICQ.h, SNAC-MSG.cpp: Fixed multiline
problem in sending advanced messages (messages icq2000 users)
2001-11-09 10:41 barnabygray
* ickle/main.cpp: Enabled locale support for ickle.
2001-11-09 02:16 barnabygray
* src/: DirectClient.cpp, DirectClient.h: More fixes for gcc 3.0
2001-11-08 19:39 barnabygray
* examples/Makefile.am, ickle/Makefile.am, src/buffer.h: Locked
linking to local library to fix linking to older libraries already
installed.
2001-11-08 16:39 barnabygray
* src/: DirectClient.cpp, buffer.cpp, buffer.h, exceptions.cpp,
socket.cpp: gcc 3.0 fixes.
2001-11-08 16:01 barnabygray
* ickle/ContactListView.cpp, ickle/Icons.cpp, ickle/Icons.h,
src/exceptions.h, src/socket.h: Invisible status info patch from
Tobias Hoffman. Thanks.
2001-11-08 09:53 barnabygray
* configure.ac, src/buffer.cpp: Fixed printing non-printable
characters that was messing up gnome-terminal. Thanks for Michael
Smith for the patch.
2001-11-08 09:46 barnabygray
* scripts/micq2ickle.pl: Thanks to ord for the micq2ickle.pl
script.
2001-11-08 09:40 barnabygray
* src/: ICBMCookie.cpp, ICBMCookie.h: Oops, forgot to add these to
CVS.
2001-11-08 01:14 barnabygray
* src/: Client.cpp, Client.h, ICQ.cpp, ICQ.h, Makefile.am,
SNAC-MSG.cpp, SNAC-MSG.h, SNAC-base.cpp, SNAC-base.h, TLV.cpp,
TLV.h, UserInfoBlock.cpp, buffer.cpp, buffer.h: Finally got
advanced message acks working. Should receive messages + urls fine
from icq2000 people now.
2001-11-07 20:56 barnabygray
* ChangeLog, src/Client.cpp, src/SNAC-MSG.cpp, src/SNAC-MSG.h,
src/SNAC.cpp: Fixed server login problem related to not fully
logging in because server was no longer sending the MOTD.
2001-11-07 20:16 barnabygray
* README, configure.ac, ickle/ContactListView.cpp,
ickle/ContactListView.h, ickle/IckleClient.cpp,
ickle/IckleClient.h, ickle/IckleGUI.cpp, ickle/Makefile.am,
src/Client.cpp, src/buffer.cpp, src/socket.cpp, src/socket.h: Got
0.1 patch branch up to date on fixes and fixed the no MOTD login
problem that was stopping it from going online proper.
2001-11-07 15:12 barnabygray
* README: CVS instructions updated.
2001-11-07 13:39 barnabygray
* src/Contact.cpp: TCP Version not initialised properly in
Contact.cpp
2001-11-07 01:52 barnabygray
* ickle/IckleClient.cpp, ickle/UserInfoDialog.cpp,
ickle/UserInfoDialog.h, src/Client.cpp, src/Contact.cpp,
src/Contact.h, src/buffer.cpp: - Fixed bug in
Buffer::UnpackUint16StringNull, wasn't advancing over the null at
the end. - Added First name, Last name and Email details to User
Info dialog.
2001-11-06 16:47 barnabygray
* configure.ac, src/Client.cpp, src/Contact.cpp, src/Contact.h,
src/SNAC-MSG.cpp, src/SNAC-MSG.h, src/socket.cpp, src/socket.h:
Fixed problem on MacOS X with inet address lookup.
2001-11-06 15:19 barnabygray
* README, configure.ac, examples/shell.cpp,
ickle/ContactListView.cpp, ickle/ContactListView.h,
ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.cpp,
ickle/Makefile.am, src/Client.cpp, src/Client.h, src/Contact.cpp,
src/Contact.h, src/DirectClient.cpp, src/DirectClient.h,
src/ICQ.cpp, src/ICQ.h, src/Makefile.am, src/SNAC-BUD.cpp,
src/SNAC-BUD.h, src/SNAC-GEN.cpp, src/SNAC-GEN.h, src/SNAC-LOC.cpp,
src/SNAC-LOC.h, src/SNAC-MSG.cpp, src/SNAC-MSG.h, src/SNAC-SRV.cpp,
src/SNAC-SRV.h, src/SNAC-UIN.cpp, src/SNAC-UIN.h,
src/SNAC-base.cpp, src/SNAC-base.h, src/SNAC.cpp, src/SNAC.h,
src/TLV.cpp, src/TLV.h, src/UserInfoBlock.cpp, src/UserInfoBlock.h,
src/buffer.cpp, src/buffer.h, src/events.cpp, src/events.h,
src/exceptions.h, src/socket.cpp, src/socket.h: Lots of work in
progress stuff.. - bug fixes - Direct Connections halfdone - Split
up SNAC into separate files - Added patch by Alex Antropoff for
rate limit responses + new uin Beware, it's half done currently, so
sending + receiving messages is broken for the moment.
2001-10-30 20:51 barnabygray
* configure.ac: Fixed configure so it should link in correct
libraries for solaris.
2001-10-21 15:03 barnabygray
* TODO, ickle/ContactListView.cpp, ickle/ContactListView.h,
ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.h,
ickle/Settings.h, src/Client.cpp, src/Client.h, src/Contact.cpp,
src/Contact.h, src/ContactList.h, src/SNAC.cpp, src/SNAC.h,
src/TLV.cpp, src/TLV.h, src/events.cpp, src/events.h,
src/socket.cpp: Added Alex Antropoff changes: - Registering new
UINs to libicq2000 - Handle SNAC 4 0 - message sent offline -
Compiler warnings on his compiler - Invisible status
My changes: - Half-way through implementing a proper socket handle
signalling system. - Invisible status to contacts - Handle Dual
Login error SNAC
2001-10-21 14:56 barnabygray
* Makefile.am: Icons directories changed around
2001-10-21 14:56 barnabygray
* icons/: away.xpm, dnd.xpm, ffc.xpm, invisible.xpm, na.xpm,
occ.xpm, offline.xpm, online.xpm: New icons!
2001-10-21 14:55 barnabygray
* icons.doors/: away.xpm, chat.xpm, dnd.xpm, ffc.xpm, file.xpm,
invisible.xpm, message.xpm, na.xpm, occ.xpm, offline.xpm,
online.xpm, sms.xpm, url.xpm: Moved old icons to icons.doors
directory.
2001-10-21 14:53 barnabygray
* README, configure.ac, examples/Makefile.am, examples/shell.cpp:
Added a basic example
2001-10-14 14:56 barnabygray
* ickle/History.cpp, src/events.cpp: Added history logging
Offline/Multiparty message info.
2001-10-14 12:23 barnabygray
* ickle/MessageBox.cpp, src/Client.cpp, src/SNAC.cpp, src/TLV.cpp,
src/TLV.h, src/events.cpp, src/events.h: Receiving Multiparty
messages supported.
2001-10-13 14:15 barnabygray
* Makefile.am, configure.ac, src/Client.cpp: Test wasn't any use to
anyone and wasn't keeping up with the library either.
2001-10-09 09:40 barnabygray
* ChangeLog, ickle/MessageBox.cpp: Eeek, SMS not working for
non-ICQ contacts - forgot to change the tab numbering after
changing the tabs.
2001-10-08 19:49 barnabygray
* README, configure.ac: Version 0.1.1 ready for release.
2001-10-08 19:46 barnabygray
* src/: Client.cpp, SNAC.cpp, buffer.cpp: Fixed parsing SMS Server
response packets. Still need to do Request ID caching code for
them though.
2001-10-08 18:51 barnabygray
* ickle/: AddMobileUserDialog.cpp, AddMobileUserDialog.h,
Makefile.am, MessageBox.cpp, MobileNoEntry.cpp, MobileNoEntry.h:
Mobile No entry on add Mobile contact. Mobile contacts only have
mobile tab on message box.
2001-10-08 09:20 barnabygray
* ickle/: History.cpp, History.h: History logging.
2001-10-08 00:54 barnabygray
* ickle/: IckleClient.cpp, IckleGUI.cpp, IckleGUI.h, Settings.cpp,
Settings.h: Window remembers where it was in between
quiting/reloading.
2001-10-07 18:57 barnabygray
* ickle/: IckleClient.cpp, IckleClient.h, Makefile.am: Added
history logging.
2001-10-07 14:01 barnabygray
* ChangeLog, README, TODO: Updating docs
2001-10-07 13:59 barnabygray
* ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/UserInfoDialog.cpp, ickle/UserInfoDialog.h,
src/Client.cpp, src/Client.h, src/ContactList.h, src/SNAC.cpp,
src/SNAC.h, src/buffer.cpp, src/buffer.h, src/exceptions.h: Added
fetching simple user info from server.
2001-10-06 18:09 barnabygray
* ickle/ContactListView.cpp: Fixed problem that was probably
causing segfaults on earlier version of gtk--.
2001-10-03 17:02 barnabygray
* configure.ac, ickle/ContactListView.h, ickle/IckleClient.h,
ickle/IckleGUI.h, ickle/Settings.h, src/ContactList.h, src/TLV.h:
Fixed g++-3.0 hash_map problems.
2001-10-03 12:59 barnabygray
* aclocal.m4, stamp-h, stamp-h.in, config.cache: Shouldn't be on
CVS
2001-10-03 12:56 barnabygray
* config.log, config.status, config.h.in, libtool: Shouldn't be on
CVS
2001-10-03 12:55 barnabygray
* README, config.h.in, config.log, config.status, configure.ac:
Catch more missing headers now at configure.
2001-10-03 01:37 barnabygray
* config.h.in, config.log, config.status, libtool,
ickle/AddMobileUserDialog.h, ickle/ContactListView.h,
ickle/IckleClient.h, ickle/IckleGUI.h, ickle/MessageBox.h,
ickle/PromptDialog.h, ickle/Settings.h, ickle/UserInfoDialog.h,
ickle/main.h, src/Client.h, src/Contact.h, src/ContactList.h,
src/SNAC.h, src/TLV.h, src/Xml.h, src/buffer.h, src/events.h,
src/exceptions.h, src/socket.h: Fixed namespace std problems.
2001-10-03 01:13 barnabygray
* README: [no log message]
2001-10-03 01:05 barnabygray
* ickle/SettingsDialog.cpp: Small fix in descriptive text
2001-10-03 01:05 barnabygray
* configure.ac: Fixed check for libstdc++
2001-10-01 19:52 barnabygray
* ickle/IckleGUI.cpp: Eek.
2001-10-01 17:43 barnabygray
* ickle/: IckleGUI.cpp, MessageBox.cpp: Fixed times displayed,
clear url boxes after sending.
2001-10-01 17:35 barnabygray
* ChangeLog, config.log, config.status, configure.ac, libtool,
ickle/IckleClient.cpp, src/Client.cpp, src/events.h: Fixed
configure versioning.
2001-10-01 15:23 barnabygray
* configure, config.h: [no log message]
2001-10-01 13:21 barnabygray
* README: [no log message]
2001-10-01 13:16 barnabygray
* COPYING, INSTALL, Makefile, Makefile.in, aclocal.m4, config.h,
config.log, config.status, configure, configure.ac, libtool,
ickle/Makefile, ickle/Makefile.in, src/Makefile, src/Makefile.in,
Makefile, Makefile.in, ickle/Makefile, ickle/Makefile.in,
src/Makefile, src/Makefile.in: [no log message]
2001-10-01 12:28 barnabygray
* AUTHORS, ChangeLog, Makefile, Makefile.am, NEWS, README,
config.h.in, configure.ac, stamp-h, stamp-h.in, Makefile.in,
config.h, configure, aclocal.m4, autogen.sh, config.cache,
config.log, config.status, log, TODO, libtool, src/Client.cpp,
src/Client.h, src/Makefile, src/Makefile.am, src/Makefile.in,
src/SNAC.cpp, src/buffer.cpp, src/constants.h, src/socket.cpp,
src/socket.h, src/Contact.cpp, src/Contact.h, src/ContactList.cpp,
src/ContactList.h, src/SNAC.h, src/TLV.cpp, src/TLV.h, src/Xml.cpp,
src/Xml.h, src/buffer.h, src/custom_marshal.h, src/events.cpp,
src/events.h, src/exceptions.cpp, src/exceptions.h,
ickle/AddMobileUserDialog.cpp, ickle/AddMobileUserDialog.h,
ickle/AddUserDialog.cpp, ickle/AddUserDialog.h,
ickle/ContactListView.cpp, ickle/ContactListView.h,
ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/Icons.cpp, ickle/Icons.h, ickle/Makefile,
ickle/Makefile.am, ickle/Makefile.in, ickle/MessageBox.cpp,
ickle/MessageBox.h, ickle/PromptDialog.cpp, ickle/PromptDialog.h,
ickle/Settings.cpp, ickle/Settings.h, ickle/SettingsDialog.cpp,
ickle/SettingsDialog.h, ickle/UserInfoDialog.cpp,
ickle/UserInfoDialog.h, ickle/main.cpp, ickle/main.h,
icons/away.xpm, icons/chat.xpm, icons/dnd.xpm, icons/ffc.xpm,
icons/file.xpm, icons/invisible.xpm, icons/message.xpm,
icons/na.xpm, icons/occ.xpm, icons/offline.xpm, icons/online.xpm,
icons/sms.xpm, icons/url.xpm, icons.icq/away.xpm,
icons.icq/chat.xpm, icons.icq/dnd.xpm, icons.icq/ffc.xpm,
icons.icq/file.xpm, icons.icq/invisible.xpm, icons.icq/message.xpm,
icons.icq/na.xpm, icons.icq/occ.xpm, icons.icq/offline.xpm,
icons.icq/online.xpm, icons.icq/sms.xpm, icons.icq/url.xpm,
scripts/licq2ickle.pl: Initial revision
2001-10-01 12:28 barnabygray
* AUTHORS, ChangeLog, Makefile, Makefile.am, NEWS, README,
config.h.in, configure.ac, stamp-h, stamp-h.in, Makefile.in,
config.h, configure, aclocal.m4, autogen.sh, config.cache,
config.log, config.status, log, TODO, libtool, src/Client.cpp,
src/Client.h, src/Makefile, src/Makefile.am, src/Makefile.in,
src/SNAC.cpp, src/buffer.cpp, src/constants.h, src/socket.cpp,
src/socket.h, src/Contact.cpp, src/Contact.h, src/ContactList.cpp,
src/ContactList.h, src/SNAC.h, src/TLV.cpp, src/TLV.h, src/Xml.cpp,
src/Xml.h, src/buffer.h, src/custom_marshal.h, src/events.cpp,
src/events.h, src/exceptions.cpp, src/exceptions.h,
ickle/AddMobileUserDialog.cpp, ickle/AddMobileUserDialog.h,
ickle/AddUserDialog.cpp, ickle/AddUserDialog.h,
ickle/ContactListView.cpp, ickle/ContactListView.h,
ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/Icons.cpp, ickle/Icons.h, ickle/Makefile,
ickle/Makefile.am, ickle/Makefile.in, ickle/MessageBox.cpp,
ickle/MessageBox.h, ickle/PromptDialog.cpp, ickle/PromptDialog.h,
ickle/Settings.cpp, ickle/Settings.h, ickle/SettingsDialog.cpp,
ickle/SettingsDialog.h, ickle/UserInfoDialog.cpp,
ickle/UserInfoDialog.h, ickle/main.cpp, ickle/main.h,
icons/away.xpm, icons/chat.xpm, icons/dnd.xpm, icons/ffc.xpm,
icons/file.xpm, icons/invisible.xpm, icons/message.xpm,
icons/na.xpm, icons/occ.xpm, icons/offline.xpm, icons/online.xpm,
icons/sms.xpm, icons/url.xpm, icons.icq/away.xpm,
icons.icq/chat.xpm, icons.icq/dnd.xpm, icons.icq/ffc.xpm,
icons.icq/file.xpm, icons.icq/invisible.xpm, icons.icq/message.xpm,
icons.icq/na.xpm, icons.icq/occ.xpm, icons.icq/offline.xpm,
icons.icq/online.xpm, icons.icq/sms.xpm, icons.icq/url.xpm,
scripts/licq2ickle.pl: Imported sources
|