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
|
ClipIt-1.4.3-20151110002 ~ 2015-11-10 16:39:50 +0200
+ Fixed: Updated project website.
ClipIt-1.4.3-20151110001 - 2015-11-10 13:56:51 +0200
+ Fixed: Bumped version to 1.4.3.
Check if `pkg-config` is installed before using it. - 2014-09-27 15:08:08 +0200
Without this check, if tool is not present, `configure` command fails
with syntax error.
Fixed work with utf8 strings - 2014-06-09 16:46:49 +0300
ClipIt-1.4.2-20120404003 - 2012-04-04 10:40:07 +0300
+ Added: Added new translations.
ClipIt-1.4.2-20120404002 - 2012-04-04 10:35:04 +0300
+ Fixed: Bug in previous POTFILES.in generation code.
ClipIt-1.4.2-20120404001 - 2012-04-04 10:21:55 +0300
+ Fixed: Updated translations and fixed POTFILES generation script.
Silence glib warnings regarding GOptionFlags. - 2011-11-09 20:51:51 +0200
These warnings:
GLib-WARNING **: goption.c:2168: ignoring no-arg, optional-arg or filename flags (8) on option of type 0
ClipIt-1.4.2-20110623001 - 2011-06-23 13:46:10 +0300
+ Fixed: Bumped version to 1.4.2.
+ Fixed: Changed layout of the ChangeLog file.
ClipIt-1.4.1-20110604001 - 2011-06-04 17:49:05 +0300
+ Fixed: Removed some more files from git.
ClipIt-1.4.1-20110527004 - 2011-05-27 10:29:37 +0300
+ Fixed: Typo in src/Makefile.am.
ClipIt-1.4.1-20110527003 - 2011-05-27 10:24:50 +0300
+ Fixed: Removed some files from git. Again.
Silence glib warnings regarding GOptionFlags. - 2011-11-09 20:51:51 +0200
These warnings:
GLib-WARNING **: goption.c:2168: ignoring no-arg, optional-arg or filename flags (8) on option of type 0
ClipIt-1.4.2-20120302002 - 2012-03-02 22:21:05 +0200
+ Fixed: Updated copyright information.
ClipIt-1.4.2-20120302001 - 2012-03-02 21:56:42 +0200
+ Fixed: Fixed a GTK include error with gtypes.h.
ClipIt-1.4.2-20111222001 - 2011-12-04 22:42:57 +0200
+ Added: Merged "Offline mode" feature, by Eugene Nikolsky
+ Added: Allow to switch focus by Tab key in "Manage History"
dialog, by Eugene Nikolsky
ClipIt-1.4.2-20111115006 - 2011-11-15 12:34:18 +0200
+ Fixed: Use the shipped icon instead of gtk-paste.
ClipIt-1.4.2-20111115005 - 2011-11-15 11:46:35 +0200
+ Fixed: Fix max height of Manage history window.
ClipIt-1.4.2-20111115004 - 2011-11-15 11:05:58 +0200
+ Fixed: Updated translations.
ClipIt-1.4.2-20111115003 - 2011-11-15 10:48:36 +0200
+ Fixed: Present the user with the existing dialog, if he tries to
open one while another one is active.
ClipIt-1.4.2-20111115002 - 2011-11-15 08:59:45 +0200
+ Fixed: Also save history after it is modified by selection of items.
ClipIt-1.4.2-20111115001 - 2011-11-15 08:40:38 +0200
+ Fixed: Added Unity to autostart.
Silence glib warnings regarding GOptionFlags. - 2011-11-09 20:51:51 +0200
These warnings:
GLib-WARNING **: goption.c:2168: ignoring no-arg, optional-arg or filename flags (8) on option of type 0
ClipIt-1.4.2-20111115001 - 2011-11-15 08:27:37 +0200
+ Fixed: Added dirty workaround for Debian multiarch build.
ClipIt-1.4.2-20111018001 - 2011-10-18 15:48:40 +0300
+ Fixed: Fixed a typo in preferences dialog.
+ Fixed: Updated translations.
+ Fixed: Fixed a couple of omissions in the scripts.
ClipIt-1.4.2-20111015001 - 2011-10-15 12:30:45 +0300
+ Fixed: Fixed bug where wrong item was being selected for editing.
ClipIt-1.4.2-20110906001 - 2011-09-06 15:03:00 +0300
+ Added: Added transifex config to repository.
+ Added: Added script for automatic translation updating.
+ Added: Added Bulgarian translation.
+ Fixed: Updated translations.
ClipIt-1.4.2-20110831002 - 2011-08-31 10:24:26 +0300
+ Added: Added commit script to git.
ClipIt-1.4.2-20110831001 - 2011-08-31 10:21:47 +0300
+ Fixed: Fixed remove bug when multiple items were selected in the list.
ClipIt-1.4.2-20110816003 - 2011-08-16 14:24:00 +0300
+ Added: Added some more strings to gettext.
+ Added: Added Estonian translation.
ClipIt-1.4.2-20110816002 - 2011-08-16 13:06:12 +0300
+ Fixed: Fixed bug where in some cases actions and excludes couldn't be
added. (SF: #3315622) (Thanks to Guido Tabbernuk)
ClipIt-1.4.2-20110816001 - 2011-08-16 12:52:05 +0300
+ Added: Added logic to Makefile to automatically update translation files.
+ Fixed: Added some more strings to gettext and updated translations.
ClipIt-1.4.2-20110726001 - 2011-07-26 18:10:39 +0300
+ Fixed: Updated German localisation. (LP: #793878)
+ Fixed: Fixed problem with excludes and actions lists not working properly
on Debian derived distributions. (SF: #3315622)
ClipIt-1.4.2-20110623001 - 2011-06-23 13:46:10 +0300
+ Fixed: Bumped version to 1.4.2.
+ Fixed: Changed layout of the ChangeLog file.
ClipIt-1.4.1-20110604001 - 2011-06-04 17:49:05 +0300
+ Fixed: Removed some more files from git.
ClipIt-1.4.1-20110527004 - 2011-05-27 10:29:37 +0300
+ Fixed: Typo in src/Makefile.am.
ClipIt-1.4.1-20110527003 - 2011-05-27 10:24:50 +0300
+ Fixed: Removed some files from git. Again.
ClipIt-1.4.1-20110527002 - 2011-05-27 09:59:35 +0300
+ Fixed: Made autogen.sh executable.
ClipIt-1.4.1-20110527001 - 2011-05-27 09:53:08 +0300
+ Fixed: Hidden righ-click menu option when indicator is active and
disabled the static item spin when static items are not
shown.
ClipIt-1.4.1-20110526008 - 2011-05-26 23:03:11 +0300
+ Fixed: We're not loosing the static flag on existing items anymore.
ClipIt-1.4.1-20110526007 - 2011-05-26 22:24:38 +0300
+ Fixed: Fixed a bug in the history saving function.
+ Added: We are now showing static items in the menu.
ClipIt-1.4.1-20110526006 - 2011-05-26 18:37:47 +0300
+ Fixed: Fixed display and icon of indicator menu.
+ Fixed: We are now installing the icon to the icontheme instead of
the pixmaps folder.
ClipIt-1.4.1-20110526005 - 2011-05-26 15:38:12 +0300
+ Added: Added options for static items in menu.
ClipIt-1.4.1-20110526004 - 2011-05-26 12:54:45 +0300
+ Added: Added option for using right-click menu.
ClipIt-1.4.1-20110526003 - 2011-05-26 11:28:25 +0300
+ Fixed: Unified history and tray menu for easier maintenance.
ClipIt-1.4.1-20110526002 - 2011-05-26 10:10:34 +0300
+ Fixed: Simplified add item process.
ClipIt-1.4.1-20110526001 - 2011-05-26 09:47:54 +0300
+ Added: Items marked as static are not purged from the history anymore.
ClipIt-1.4.1-20110525003 - 2011-05-25 11:13:14 +0300
+ Added: We now also use png icons, if there are any.
ClipIt-1.4.1-20110525002 - 2011-05-25 09:03:24 +0300
+ Fixed: Numpad keys now work for selecting too.
ClipIt-1.4.1-20110525001 - 2011-05-25 08:48:36 +0300
+ Fixed: Changed history file to new type.
ClipIt-1.4.1-20110524001 - 2011-05-24 12:10:02 +0300
+ Fixed: Converted history to new data type.
+ Fixed: Fixed all of the remaining warnings.
ClipIt-1.4.1-20110523003 - 2011-05-23 16:05:14 +0300
+ Fixed: We are now checking if the history should be saved in the
save_history function itself.
+ Fixed: Indicator menu should now refresh even if "Save history"
is disabled.
ClipIt-1.4.0-20110521003 - 2011-05-21 22:29:03 +0300
+ Fixed: Fixed wrong selection behaviour in "Manage history" dialog.
ClipIt-1.4.0-20110521001 - 2011-05-21 19:56:46 +0300
+ Added: We are now using the shipped icon in the systray.
ClipIt-1.4.0-20110520002 - 2011-05-21 00:46:33 +0300
+ Fixed: Remove duplicate truncate_history functionality.
+ Added: Added basic history item structure.
ClipIt-1.4.0-20110520001 - 2011-05-20 22:54:04 +0300
+ Fixed: Deleted items are now properly removed from the history.
+ Fixed: Double clicking an item in the "Manage history" dialog now
properly selects it again.
+ Added: [Enter] (for selecting the item) and [Delete] (for removing
the item(s)) now works in the "Manage history" dialog.
ClipIt-1.4.0-20110518002 - 2011-05-18 15:51:13 +0300
+ Added: Also added 1-0 shortcuts to the history menu.
ClipIt-1.4.0-20110518001 - 2011-05-18 15:24:54 +0300
+ Fixed: Re-enabled indicator support.
+ Added: We are now installing a sepparate icon for clipit (not using it
yet, though).
+ Added: Search as you type in "Manage history" dialog.
+ Added: 1-0 shortcuts for fast selecting of menu items.
+ Added: Possiblity to select multiple items for deletion in the
"Manage history" dialog.
ClipIt-1.4.0-20110506001 - 2011-05-06 14:15:48 +0300
+ Added: Added option to automatically paste an entry after selecting it.
+ Fixed: Re-enabled indicator since it should now work properly.
ClipIt-1.3.13-20110503001 - 2011-05-03 08:55:49 +0300
+ Fixed: Bug in the indicator code that makes ClipIt crash X under
certain circumstances.
ClipIt-1.3.12-20110228001 - 2011-02-28 14:23:09 +0200
+ Fixed: Fixed a typo in the warnings.
+ Fixed: Turned off appindicator because it's buggy.
ClipIt-1.3.11-20101224001 - 2010-12-24 10:16:59 +0200
+ Fixed: Removed some unneeded files from both the archive and git.
+ Fixed: Changed git versioning scheme.
ClipIt-v1.3.11-22122010001 - 2010-12-22 12:12:28 +0200
+ Fixed: Indicator menu now actually refreshes properly.
+ Fixed: Removed "Full history" and changed the wording in the
"Preferences" dialog.
+ Fixed: Imported "Select first item in menu" fix from Parcellite 0.9.3.
ClipIt-v1.3.10-21122010001 - 2010-12-21 21:05:38 +0200
+ Fixed: Imported fixes from Parcellite 0.9.3 (thanks to Doug Springer).
+ Fixed: Fixed cast warnings when building on x86 machines.
+ Fixed: Fixed build error on ubuntu 11.04.
+ Fixed: Fixed problem with statusicon menu showing double content.
+ Fixed: Fixed problem with clicking the statusicon menu multiple
times killing the program.
ClipIt-v1.3.9-19122010001 - 2010-12-19 14:21:42 +0200
+ Fixed: Fixed error while compiling without indicator support.
+ Fixed: Fixed a couple of memory leaks.
ClipIt-v1.3.8-18122010002 - 2010-12-18 15:20:11 +0200
+ Fixed: Updated configure script for 1.3.8.
ClipIt-v1.3.8-18122010001 - 2010-12-18 13:52:42 +0200
+ Fixed: Changed the "old" menu to look exactly like the indicator
menu.
+ Fixed: Changed the indicator menu to refresh automatically.
ClipIt-v1.3.6-06122010002 - 2010-12-06 14:10:51 +0200
+Fixed: Fixed a small bug when building without indicator support.s
ClipIt-v1.3.5-06122010001 - 2010-12-06 10:55:14 +0200
+ Added: Added support for "Application Indicator".
+ Fixed: Fixed a couple of typos and indentations.
ClipIt-v1.3.4-26112010001 - 2010-11-26 13:44:33 +0200
+ Fixed: Now we are warning the user that his history is saved in a
plain text file and ask for his explicit permission
to save the history.
+ Fixed: When the user disables history saving we also ask if he wants
to empty the current history file.
+ Fixed: Renamed "Find" menu entry to "Manage history".
+ Fixed: ClipIt now complies to the "XDG Base Directory Specification".
ClipIt-v1.3.3-23112010001 - 2010-11-23 11:31:11 +0200
+ Fixed: Fixed some more markup.
+ Fixed: Rearranged parts of the Preferences dialog to be cleaner.
+ Fixed: Fixed bug in "Manage History" window not selecting the history
item properly.
ClipIt-v1.3.2-22112010001 - 2010-11-22 10:59:01 +0200
+ Fixed: Fixed most of the markup and indentation (replaced double spaces
with tabs).
+ Fixed: Removed clipboard restoring from history, as this seems to cause
more problems than it solves.
ClipIt-v1.3.1-17112010001 - 2010-11-17 08:29:36 +0200
+ Added: Added autostart support for LXDE.
+ Fixed: Fixed problem with "Edit" window not appearing.
ClipIt-v1.3.0-14112010001 - 2010-11-14 21:03:11 +0200
+ Added: Added "Edit" and "Remove" buttons to the "Manage History" dialog.
+ Fixed: Major speed improvements for big history entries while:
searching through the history;
populating the "Manage History" dialog;
generating the popup menus;
All of these should now be more than 99% faster, at the expense
of an (at most) 1MB overhead. I think it's worth it, though.
+ Fixed: Fixed a drawing issue with the small history menu when activated
by clicking on the systray icon.
ClipIt-v1.2.6-12112010003 - 2010-11-12 12:01:11 +0200
+ Fixed: Removed reference to pthread.h from configure.in.
+ Fixed: Set AM_MAINTAINER_MODE to disabled by default.
ClipIt-v1.2.5-12112010002 - 2010-11-12 10:39:04 +0200
+ Fixed: Now using autopoint instead of gettextize to avoid waiting for
user input.
+ Fixed: Added AM_MAINTAINER_MODE, to get rid of the disable-maintainer-mode
warning.
+ Fixed: Fixed a small typo in main.c.
+ Fixed: removed dependency of pthread.h (the pthread_exit function that we
use is also in glib.h).
ClipIt-v1.2.4-12112010001 - 2010-11-12 08:29:02 +0200
+ Fixed: Fixed 2 small omitions from previous changes.
ClipIt-v1.2.3-11112010002 - 2010-11-11 20:24:19 +0200
+ Fixed: Fixed the manpage so it now aligns to the conventions for
writing Linux man pages.
+ Fixed: Added the "-Wl,--as-needed" flag, so only the needed packages
are included.
ClipIt-v1.2.2-11112010001 - 2010-11-11 13:21:09 +0200
+ Fixed: Some small compatibility changes for debian packaging.
ClipIt-v1.2.1-10112010002 - 2010-11-10 11:21:03 +0200
+ Fixed: Fixed OOM bug when copying large chunks of text by limiting
the history entry to 512KB.
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=602205)
ClipIt-v1.2.0-10112010001 - 2010-11-10 09:49:29 +0200
+ Added: Option to save URIs (they were actually saved by default before, but
now you have the option to disable this behaviour).
+ Fixed: Copying files and folders now works again.
+ Fixed: Changed some of the default configuration values.
ClipIt-v1.1.0-09112010001-beta - 2010-11-09 12:46:50 +0200
+ Added: Option to show index numbers in history.
+ Fixed: Search window now gets properly focused when launched with the hotkey.
+ Fixed: Search window is now resizable.
+ Fixed: Double casting when calling 'item_selected'.
+ Fixed: Removed some unnecessary comments and fixed some of the others.
+ Fixed: Moved search dialog and functions to manage.c, as this dialog will
become "Manage Clipboard" in the next version.
ClipIt-1.4.1-20110523002 - 2011-05-23 13:02:17 +0300
+ Fixed: Unified indicator and systray menu into a single function.
ClipIt-1.4.1-20110523001 - 2011-05-23 10:21:38 +0300
+ Fixed: Removed some files from git again. You now need to run
./autogen.sh first when building from git.
Changes to be committed:
deleted: ABOUT-NLS
modified: ChangeLog
deleted: Makefile.in
modified: README
deleted: TODO
deleted: aclocal.m4
deleted: config.h.in
deleted: configure
modified: configure.in
deleted: data/Makefile.in
deleted: doc/Makefile.in
deleted: intltool-extract.in
deleted: intltool-merge.in
deleted: intltool-update.in
deleted: m4/codeset.m4
deleted: m4/fcntl-o.m4
deleted: m4/glibc2.m4
deleted: m4/glibc21.m4
deleted: m4/intdiv0.m4
deleted: m4/intl.m4
deleted: m4/intldir.m4
deleted: m4/intlmacosx.m4
deleted: m4/intmax.m4
deleted: m4/inttypes-pri.m4
deleted: m4/inttypes_h.m4
deleted: m4/lcmessage.m4
deleted: m4/lock.m4
deleted: m4/longlong.m4
deleted: m4/printf-posix.m4
deleted: m4/size_max.m4
deleted: m4/stdint_h.m4
deleted: m4/threadlib.m4
deleted: m4/uintmax_t.m4
deleted: m4/visibility.m4
deleted: m4/wchar_t.m4
deleted: m4/wint_t.m4
deleted: m4/xsize.m4
deleted: src/Makefile.in
ClipIt-1.4.0-20110521003 - 2011-05-21 22:29:03 +0300
+ Fixed: Fixed wrong selection behaviour in "Manage history" dialog.
Changes to be committed:
modified: ChangeLog
modified: src/manage.c
ClipIt-1.4.0-20110521002 - 2011-05-21 20:22:19 +0300
+ Fixed: Ran autogen.sh to reconfigure files.
Changes to be committed:
modified: configure
ClipIt-1.4.0-20110521001 - 2011-05-21 19:56:46 +0300
+ Added: We are now using the shipped icon in the systray.
Changes to be committed:
modified: ChangeLog
modified: TODO
modified: src/history.h
modified: src/main.c
modified: src/utils.c
ClipIt-1.4.0-20110520002 - 2011-05-21 00:46:33 +0300
+ Fixed: Remove duplicate truncate_history functionality.
+ Added: Added basic history item structure.
Changes to be committed:
modified: ChangeLog
modified: TODO
modified: src/history.c
modified: src/history.h
modified: src/main.h
ClipIt-1.4.0-20110520001 - 2011-05-20 22:54:04 +0300
+ Fixed: Deleted items are now properly removed from the history.
+ Fixed: Double clicking an item in the "Manage history" dialog now
properly selects it again.
+ Added: [Enter] (for selecting the item) and [Delete] (for removing
the item(s)) now works in the "Manage history" dialog.
Changes to be committed:
modified: ChangeLog
modified: TODO
modified: src/main.c
modified: src/manage.c
ClipIt-1.4.0-20110518002 - 2011-05-18 15:51:13 +0300
+ Added: Also added 1-0 shortcuts to the history menu.
Changes to be committed:
modified: ChangeLog
modified: src/main.c
ClipIt-1.4.0-20110518001 - 2011-05-18 15:24:54 +0300
+ Fixed: Re-enabled indicator support.
+ Added: We are now installing a sepparate icon for clipit (not using it
yet, though).
+ Added: Search as you type in "Manage history" dialog.
+ Added: 1-0 shortcuts for fast selecting of menu items.
+ Added: Possiblity to select multiple items for deletion in the
"Manage history" dialog.
Changes to be committed:
modified: ChangeLog
modified: Makefile.am
modified: Makefile.in
modified: TODO
modified: configure
modified: configure.in
modified: data/Makefile.am
modified: data/Makefile.in
new file: data/trayicon.svg
modified: src/Makefile.am
modified: src/Makefile.in
modified: src/main.c
modified: src/manage.c
ClipIt-1.4.0-20110506001 - 2011-05-06 14:15:48 +0300
+ Added: Added option to automatically paste an entry after selecting it.
+ Fixed: Re-enabled indicator since it should now work properly.
Changes to be committed:
modified: ChangeLog
modified: configure
modified: src/main.c
modified: src/main.h
modified: src/preferences.c
modified: src/preferences.h
ClipIt-1.3.13-20110503001 - 2011-05-03 08:55:49 +0300
+ Fixed: Bug in the indicator code that makes ClipIt crash X under
certain circumstances.
Changes to be committed:
modified: ChangeLog
modified: configure
modified: configure.in
modified: src/main.c
ClipIt-1.3.12-20110228001 - 2011-02-28 14:23:09 +0200
+ Fixed: Fixed a typo in the warnings.
+ Fixed: Turned off appindicator because it's buggy.
Changes to be committed:
modified: ChangeLog
modified: configure
modified: configure.in
modified: src/preferences.h
ClipIt-1.3.13-20110503001 - 2011-05-03 08:55:49 +0300
+ Fixed: Bug in the indicator code that makes ClipIt crash X under
certain circumstances.
Changes to be committed:
modified: ChangeLog
modified: configure
modified: configure.in
modified: src/main.c
ClipIt-1.3.12-20110228001 - 2011-02-28 14:23:09 +0200
+ Fixed: Fixed a typo in the warnings.
+ Fixed: Turned off appindicator because it's buggy.
Changes to be committed:
modified: ChangeLog
modified: configure
modified: configure.in
modified: src/preferences.h
ClipIt-1.3.11-20101224001 - 2010-12-24 10:16:59 +0200
+ Fixed: Removed some unneeded files from both the archive and git.
+ Fixed: Changed git versioning scheme.
Changes to be committed:
modified: ChangeLog
modified: Makefile.am
modified: Makefile.in
deleted: autom4te.cache/output.0
deleted: autom4te.cache/output.1
deleted: autom4te.cache/requests
deleted: autom4te.cache/traces.0
deleted: autom4te.cache/traces.1
deleted: po/Makefile.in.in~
deleted: po/Makevars.template
deleted: po/Rules-quot
deleted: po/boldquot.sed
deleted: po/en@boldquot.header
deleted: po/en@quot.header
deleted: po/insert-header.sin
deleted: po/quot.sed
deleted: po/remove-potcdate.sin
ClipIt-v1.3.11-22122010001 - 2010-12-22 12:12:28 +0200
+ Fixed: Indicator menu now actually refreshes properly.
+ Fixed: Removed "Full history" and changed the wording in the
"Preferences" dialog.
+ Fixed: Imported "Select first item in menu" fix from Parcellite 0.9.3.
Changes to be committed:
modified: ChangeLog
modified: autom4te.cache/output.0
modified: autom4te.cache/output.1
modified: autom4te.cache/traces.1
modified: configure
modified: configure.in
modified: src/history.c
modified: src/main.c
modified: src/main.h
modified: src/preferences.c
modified: src/preferences.h
ClipIt-v1.3.10-21122010001 - 2010-12-21 21:05:38 +0200
+ Fixed: Imported fixes from Parcellite 0.9.3 (thanks to Doug Springer).
+ Fixed: Fixed cast warnings when building on x86 machines.
+ Fixed: Fixed build error on ubuntu 11.04.
+ Fixed: Fixed problem with statusicon menu showing double content.
+ Fixed: Fixed problem with clicking the statusicon menu multiple
times killing the program.
Changes to be committed:
modified: ChangeLog
modified: Makefile.in
modified: autom4te.cache/output.0
modified: autom4te.cache/output.1
modified: autom4te.cache/requests
modified: autom4te.cache/traces.0
modified: autom4te.cache/traces.1
modified: configure
modified: configure.in
modified: data/Makefile.in
modified: doc/Makefile.in
modified: src/Makefile.am
modified: src/Makefile.in
modified: src/daemon.c
modified: src/main.c
modified: src/main.h
modified: src/manage.c
modified: src/preferences.c
ClipIt-v1.3.9-19122010001 - 2010-12-19 14:21:42 +0200
+ Fixed: Fixed error while compiling without indicator support.
+ Fixed: Fixed a couple of memory leaks.
Changes to be committed:
modified: ChangeLog
modified: autom4te.cache/output.0
modified: autom4te.cache/output.1
modified: autom4te.cache/requests
modified: autom4te.cache/traces.1
modified: configure
modified: configure.in
modified: src/history.c
modified: src/main.c
modified: src/manage.c
modified: src/preferences.c
ClipIt-v1.3.8-18122010002 - 2010-12-18 15:20:11 +0200
+ Fixed: Updated configure script for 1.3.8.
Changes to be committed:
modified: ChangeLog
modified: autom4te.cache/output.0
modified: autom4te.cache/output.1
modified: autom4te.cache/requests
modified: autom4te.cache/traces.1
modified: configure
ClipIt-v1.3.8-18122010001 - 2010-12-18 13:52:42 +0200
+ Fixed: Changed the "old" menu to look exactly like the indicator
menu.
+ Fixed: Changed the indicator menu to refresh automatically.
Changes to be committed:
modified: ChangeLog
modified: configure.in
modified: src/history.c
modified: src/main.c
modified: src/main.h
ClipIt-v1.3.7-12122010001 - 2010-12-12 18:19:48 +0200
+ Fixed: Changed E-Mail address and Project website.
+ Fixed: Included all files that get generated by autogen.sh, so
that now you don't need to run it anymore.
Changes to be committed:
new file: ABOUT-NLS
modified: AUTHORS
modified: ChangeLog
new file: Makefile.in
modified: NEWS
modified: README
new file: aclocal.m4
new file: autom4te.cache/output.0
new file: autom4te.cache/output.1
new file: autom4te.cache/requests
new file: autom4te.cache/traces.0
new file: autom4te.cache/traces.1
new file: config.h.in
new file: configure
modified: configure.in
new file: data/Makefile.in
new file: doc/Makefile.in
modified: doc/clipit.1
new file: intltool-extract.in
new file: intltool-merge.in
new file: intltool-update.in
new file: m4/codeset.m4
new file: m4/fcntl-o.m4
new file: m4/glibc2.m4
new file: m4/glibc21.m4
new file: m4/intdiv0.m4
new file: m4/intl.m4
new file: m4/intldir.m4
new file: m4/intlmacosx.m4
new file: m4/intmax.m4
new file: m4/inttypes-pri.m4
new file: m4/inttypes_h.m4
new file: m4/lcmessage.m4
new file: m4/lock.m4
new file: m4/longlong.m4
new file: m4/printf-posix.m4
new file: m4/size_max.m4
new file: m4/stdint_h.m4
new file: m4/threadlib.m4
new file: m4/uintmax_t.m4
new file: m4/visibility.m4
new file: m4/wchar_t.m4
new file: m4/wint_t.m4
new file: m4/xsize.m4
new file: po/Makefile.in.in~
new file: po/Makevars.template
new file: po/Rules-quot
new file: po/boldquot.sed
new file: po/en@boldquot.header
new file: po/en@quot.header
new file: po/insert-header.sin
new file: po/quot.sed
new file: po/remove-potcdate.sin
modified: po/zh_CN.po
new file: src/Makefile.in
modified: src/daemon.c
modified: src/daemon.h
modified: src/history.c
modified: src/history.h
modified: src/main.c
modified: src/main.h
modified: src/manage.c
modified: src/manage.h
modified: src/preferences.c
modified: src/preferences.h
modified: src/utils.c
modified: src/utils.h
ClipIt-v1.3.6-06122010002 - 2010-12-06 14:10:51 +0200
+Fixed: Fixed a small bug when building without indicator support.
Changes to be committed:
modified: ChangeLog
modified: configure.in
modified: src/main.c
ClipIt-v1.3.5-06122010001 - 2010-12-06 10:55:14 +0200
+ Added: Added support for "Application Indicator".
+ Fixed: Fixed a couple of typos and indentations.
Changes to be committed:
modified: ChangeLog
modified: configure.in
modified: src/Makefile.am
modified: src/main.c
ClipIt-v1.3.4-26112010001 - 2010-11-26 13:44:33 +0200
+ Fixed: Now we are warning the user that his history is saved in a
plain text file and ask for his explicit permission
to save the history.
+ Fixed: When the user disables history saving we also ask if he wants
to empty the current history file.
+ Fixed: Renamed "Find" menu entry to "Manage history".
+ Fixed: ClipIt now complies to the "XDG Base Directory Specification".
Changes to be committed:
modified: ChangeLog
modified: NEWS
modified: configure.in
modified: src/history.c
modified: src/history.h
modified: src/main.c
modified: src/preferences.c
modified: src/preferences.h
modified: src/utils.c
modified: src/utils.h
ClipIt-v1.3.3-23112010001 - 2010-11-23 11:31:11 +0200
+ Fixed: Fixed some more markup.
+ Fixed: Rearranged parts of the Preferences dialog to be cleaner.
+ Fixed: Fixed bug in "Manage History" window not selecting the history
item properly.
Changes to be committed:
modified: ChangeLog
modified: configure.in
modified: src/main.c
modified: src/manage.c
modified: src/preferences.c
ClipIt-v1.3.2-22112010001 - 2010-11-22 10:59:01 +0200
+ Fixed: Fixed most of the markup and indentation (replaced double spaces
with tabs).
+ Fixed: Removed clipboard restoring from history, as this seems to cause
more problems than it solves.
Changes to be committed:
modified: ChangeLog
modified: configure.in
modified: src/daemon.c
modified: src/daemon.h
modified: src/eggaccelerators.c
modified: src/history.c
modified: src/history.h
modified: src/main.c
modified: src/main.h
modified: src/manage.c
modified: src/manage.h
modified: src/preferences.c
modified: src/preferences.h
modified: src/utils.c
modified: src/utils.h
ClipIt-v1.3.1-17112010001 - 2010-11-17 08:29:36 +0200
+ Added: Added autostart support for LXDE.
+ Fixed: Fixed problem with "Edit" window not appearing.
Changes to be committed:
modified: ChangeLog
modified: configure.in
modified: data/clipit-startup.desktop.in
modified: src/main.c
modified: src/manage.c
modified: src/preferences.h
ClipIt-v1.3.0-14112010001 - 2010-11-14 21:03:11 +0200
+ Added: Added "Edit" and "Remove" buttons to the "Manage History" dialog.
+ Fixed: Major speed improvements for big history entries while:
searching through the history;
populating the "Manage History" dialog;
generating the popup menus;
All of these should now be more than 99% faster, at the expense
of an (at most) 1MB overhead. I think it's worth it, though.
+ Fixed: Fixed a drawing issue with the small history menu when activated
by clicking on the systray icon.
Changes to be committed:
modified: ChangeLog
modified: TODO
modified: configure.in
modified: src/history.h
modified: src/main.c
modified: src/manage.c
ClipIt-v1.2.6-12112010003 - 2010-11-12 12:01:11 +0200
+ Fixed: Removed reference to pthread.h from configure.in.
+ Fixed: Set AM_MAINTAINER_MODE to disabled by default.
Changes to be committed:
modified: ChangeLog
deleted: config.h.in
modified: configure.in
ClipIt-v1.2.5-12112010002 - 2010-11-12 10:39:04 +0200
+ Fixed: Now using autopoint instead of gettextize to avoid waiting for
user input.
+ Fixed: Added AM_MAINTAINER_MODE, to get rid of the disable-maintainer-mode
warning.
+ Fixed: Fixed a small typo in main.c.
+ Fixed: removed dependency of pthread.h (the pthread_exit function that we
use is also in glib.h).
Changes to be committed:
modified: ChangeLog
modified: autogen.sh
modified: configure.in
modified: src/main.c
ClipIt-v1.2.4-12112010001 - 2010-11-12 08:29:02 +0200
+ Fixed: Fixed 2 small omitions from previous changes.
Changes to be committed:
modified: ChangeLog
modified: configure.in
modified: src/history.c
modified: src/main.c
ClipIt-v1.2.3-11112010002 - 2010-11-11 20:24:19 +0200
+ Fixed: Fixed the manpage so it now aligns to the conventions for
writing Linux man pages.
+ Fixed: Added the "-Wl,--as-needed" flag, so only the needed packages
are included.
Changes to be committed:
modified: ChangeLog
modified: configure.in
modified: doc/clipit.1
modified: src/Makefile.am
ClipIt-v1.2.2-11112010001 - 2010-11-11 13:21:09 +0200
+ Fixed: Some small compatibility changes for debian packaging.
Changes to be committed:
modified: ChangeLog
modified: NEWS
modified: README
modified: configure.in
modified: doc/clipit.1
modified: po/POTFILES.in
modified: src/main.c
ClipIt-v1.2.1-10112010002 - 2010-11-10 11:21:03 +0200
+ Fixed: Fixed OOM bug when copying large chunks of text by limiting
the history entry to 512KB.
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=602205)
Changes to be committed:
modified: ChangeLog
modified: configure.in
modified: src/history.c
modified: src/history.h
ClipIt-v1.2.0-10112010001 - 2010-11-10 09:49:29 +0200
+ Added: Option to save URIs (they were actually saved by default before, but
now you have the option to disable this behaviour).
+ Fixed: Copying files and folders now works again.
+ Fixed: Changed some of the default configuration values.
Changes to be committed:
modified: ChangeLog
modified: TODO
modified: configure.in
modified: src/history.c
modified: src/history.h
modified: src/main.c
modified: src/main.h
modified: src/preferences.c
modified: src/preferences.h
ClipIt-v1.1.0-09112010001-beta - 2010-11-09 12:46:50 +0200
+ Added: Option to show index numbers in history.
+ Fixed: Search window now gets properly focused when launched with the hotkey.
+ Fixed: Search window is now resizable.
+ Fixed: Double casting when calling 'item_selected'.
+ Fixed: Removed some unnecessary comments and fixed some of the others.
+ Fixed: Moved search dialog and functions to manage.c, as this dialog will
become "Manage Clipboard" in the next version.
Changes to be committed:
modified: ChangeLog
modified: TODO
modified: configure.in
modified: src/Makefile.am
modified: src/main.c
modified: src/main.h
new file: src/manage.c
new file: src/manage.h
modified: src/preferences.c
modified: src/preferences.h
ClipIt-v1.0.0-05112010001-beta - 2010-11-05 23:37:05 +0200
Initial commit
new file: AUTHORS
new file: COPYING
new file: ChangeLog
new file: INSTALL
new file: Makefile.am
new file: NEWS
new file: README
new file: TODO
new file: autogen.sh
new file: config.guess
new file: config.h.in
new file: config.rpath
new file: config.sub
new file: configure.in
new file: data/Makefile.am
new file: data/clipit-startup.desktop.in
new file: data/clipit.desktop.in
new file: depcomp
new file: doc/Makefile.am
new file: doc/clipit.1
new file: install-sh
new file: m4/ChangeLog
new file: m4/Makefile.in
new file: m4/gettext.m4
new file: m4/iconv.m4
new file: m4/intltool.m4
new file: m4/lib-ld.m4
new file: m4/lib-link.m4
new file: m4/lib-prefix.m4
new file: m4/nls.m4
new file: m4/po.m4
new file: m4/progtest.m4
new file: missing
new file: po/Makefile.in.in
new file: po/POTFILES.in
new file: po/POTFILES.skip
new file: po/cs.po
new file: po/da.po
new file: po/de.po
new file: po/es.po
new file: po/fr.po
new file: po/hu.po
new file: po/it.po
new file: po/ja.po
new file: po/nb.po
new file: po/pl.po
new file: po/pl_PL.po
new file: po/pt_BR.po
new file: po/ro.po
new file: po/ru.po
new file: po/sv.po
new file: po/tr.po
new file: po/zh_CN.po
new file: src/Makefile.am
new file: src/clipit-i18n.h
new file: src/daemon.c
new file: src/daemon.h
new file: src/eggaccelerators.c
new file: src/eggaccelerators.h
new file: src/history.c
new file: src/history.h
new file: src/keybinder.c
new file: src/keybinder.h
new file: src/main.c
new file: src/main.h
new file: src/preferences.c
new file: src/preferences.h
new file: src/utils.c
new file: src/utils.h
|