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 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392
|
shutter (0.99.6)
Bug fixes:
* Fixed sporadic crash on startup due to wrong usage of libwnck. The ability to take screenshot of a window is currently broken, but that's better than not starting at all.
* Fixed Pixelate tool in Draw to decrease leaking of data from under pixelation
* Fixed quality setting of PNG images
New features:
* Added AVIF format support
New optional dependency for AVIF support: Gdk Pixbuf loader from libavif (https://github.com/AOMediaCodec/libavif), e.g. libavif-gdk-pixbuf (https://packages.debian.org/sid/libavif-gdk-pixbuf) in Debian, or as part of `libavif` package in some other distros.
shutter (0.99.5)
Bug fixes:
* Fixed loading and saving profiles
* Fixed the editor being unavailable under some circumstances
* Fixed crash when selection has zero width or height
* Check to prevent user setting a filename pattern without wildcards, which lead to crashes
* Fixed crash on Wayland under some circumstances
* Fixed crash when the autostart .desktop file is not writable
* Fixed handling images pasted from clipboard: they are now handled the same as screenshots made by Shutter itself, rather than being put into /tmp
* Fixed error when using the -s option with a zero coordinate for the selection origin
New features:
* Added WebP support
* In Selection mode added an option to take screenshot on releasing the mouse button without confirmation
New optional dependency for WebP support: webp-pixbuf-loader (https://github.com/aruiz/webp-pixbuf-loader)
shutter (0.99.4)
Two further bugs have been fixed after the recent 0.99.3 release:
* Fix not appearing tray icon on system startup under rare circumstances
* Fix crash on launch for new installs
shutter (0.99.3)
After a long time there is another bugfix release:
* Improved code quality a bit, added a few unit tests (thanks to Alexander Ruzhnikov!)
* Fixed font size in the editor
* Fixed loading of profiles
* Fixed crash when taking too small screenshots
* Fixed appearance of the web capture button
* Fixed XML schema of AppData
* Allow more valid character in filenames
* Removed dysfunctional upload plugins
* Added a visible warning about limited functionality on Wayland
New dependency: Moo (https://metacpan.org/pod/Moo)
Dropped dependencies: libwww-mechanize-perl, libwww-perl, libnet-oauth-perl
shutter (0.99.2)
Fix for previous version. Removal of debug code which was accidentally left, resulting in wayland-specific code to be executed for X11 system.
shutter (0.99.1)
A small fix-mostly release.
The fix is the compatibility with GLib 2.70. GLib strictened the way how GApplication is initialized, and Shutter apparently was doing it incorrectly before, resulting in inability to run Shutter again to bring up the main window, or to take screenshots from command line. The fix works with older GLib as well.
The new feature is a rudimentary Wayland support. Don't get too excited about it yet. All it does is it asks the compositor to let user take the screenshot, and user will be presented with some implementation-defined UI to select the window or area, which we cannot control at all. Maybe the limitations will be lifted in future, but no promises. Also there are multiple cases where it doesn't work, e.g.:
* The compositor doesn't even support XDG Desktop Portal API (https://flatpak.github.io/xdg-desktop-portal/portal-docs.html#gdbus-org.freedesktop.portal.Screenshot)
* The backend for the XDG Desktop Portal API doesn't match the compositor running, e.g. Gnome's portal backend cannot take screenshot on KDE, and instead it silently does nothing
We can't even meaningfully handle these cases, other than adding a huge timeout to the call, because perhaps the user is just taking time interacting the UI shown by the portal backend.
Finally, dependency on Gtk3::ImageView is bumped to v10: the improved selection tool added in Shutter 0.98 got moved upstream.
shutter (0.99)
* Fixed several more regressions of the Gtk3 switch:
* Fixed File->Open dialog
* Fixed Autoscroll option of the Draw tool
* Added support for `gir1.2-ayatanaappindicator3`, because some distros don't have `gir1.2-appindicator3` anymore. If neither of AppIndicator3 nor AyatanaAppIndicator3 is available, on some DEs you will miss the tray icon, so it's recommended to have at least one of these 2 libraries installed.
* Fixed schema of the appdata XML, use https in URLs in it
* Added search keywords to the shutter.desktop file
* Icons cleanup
* Dropped a copy of the whole Tango icon set, which was usable from the Draw Tool. Any icon can still be imported from the the local disk, including even Tango ones if they are installed
* Fixed shutter icon size
* Removed duplication of the same icons
* Removed logo images for dropped image hosters
shutter (0.98)
Fixes:
* show main window when launching Shutter and an instance is already running
* in selection mode allow to move the selection
* in selection mode allow to trigger the screenshot with doubleclick
* fix the Print button
* when uploading a screenshot via FTP, copying the URL to clipboard is now functional
* fix the "Torn paper" and "Watermark" plugins
shutter (0.97)
Crash fixes:
* when doing screenshot if "include cursor" is set
* when using text annotation tools in the editor
* when launching on Wayland. Note that the screenshot functionality is still not available on Wayland yet
* when using a DE without a dedicated Pictures/ directory
Additionally:
* the tray icon wasn't shown on Gnome, making it impossible to interact with the app after the main window is closed/hidden
* if both libappindicator is not available and the legacy tray icon doesn't work (it's not supported by gnome), closing the window will now terminate the application rather than hiding it to the non-existing tray
* copy to clipboard didn't work
* capturing full screen on multiple screens didn't work
shutter (0.96)
Drops dependency on Gtk2, and starts depending on Gtk3 instead.
More specifically, these perl dependencies are gone:
* Gtk2
* Gtk2::ImageView
* Gtk2::Unique
* Gtk2::AppIndicator
* Gnome2::Wnck
* Goo::Canvas
These dependencies are new:
* [Carp:::Always](https://metacpan.org/pod/Carp::Always)
* [Gtk3](https://metacpan.org/pod/Gtk3)
* [Gtk3::ImageView](https://metacpan.org/pod/Gtk3::ImageView) >= 9
* [GooCanvas2](https://metacpan.org/pod/GooCanvas2) (unlike old Goo::Canvas, this one is not optional anymore)
* [GooCanvas2::CairoTypes](https://metacpan.org/pod/GooCanvas2::CairoTypes)
* [Pango](https://metacpan.org/pod/Pango)
* [libwnck-3](https://gitlab.gnome.org/GNOME/libwnck), used via Glib Object Introspection
The feature of taking a section of window is removed (or, rather, commented out), because it didn't work with the way how modern Qt and Gtk were drawing their windows anyway.
Possible issues:
* Multiple screens might or might not be broken
* HiDPI screens might do screenshot of a nested menu in a wrong place
shutter (0.95)
* almost fully dropped the dependency on the outdated Perl Gnome2 library
* updated translations
* removed dependencies:
-- Arch: gnome-perl, gnome-vfs-perl
-- Debian: libgnome2-perl, libgnome2-vfs-perl
* new dependencies:
-- Arch: perl-number-bytes-human, perl-glib-object-introspection
-- Debian: libnumber-bytes-human-perl, libglib-object-introspection-perl
shutter (0.94.3)
This is another bugfix release which ensures functionality with Perl 5.30. Bugs fixed:
-- LP: #1831155
New File::Glob does not export glob, shutter does not start
-- LP: #1782646
shutter asks to "Authorize with Imgur" for each upload to account Imgur OAuth
shutter (0.94.2)
A quick fix for the Gyazo upload plugin.
shutter (0.94.1)
This is another bugfix release implementing further patches. Some upload plugins have been removed because the upload services have shut down (ITmages, Minus, TwitPic). Following changes in dependencies are there: perl-json-xs has been superseded by perl-json-maybexs; perl-webservice-gyazo-b is a new optional dependency for upload to Gyazo. Following update plugins are known to be still broken: Dropbox, vgy.me. Following bugs are fixed:
-- LP: #1354563
Right click > "show in folder" results in "There was an error executing xdg-open
-- LP: #1565017
[Patch] Convert all JSON modules to JSON::MaybeXS instead of discouraged JSON modules
-- LP: #1593781
[PATCH] [enhancement] Add support for Gyazo Uploads
-- LP: #1652600
Insecure use of perl exec()
-- LP: #1734202
Error when switching profiles
-- LP: #1739971
[PATCH] Use reverse-DNS style AppStream ID
-- Michael Kogan <michael.kogan@gmx.net> Sun, 09 Sep 2018 18:45:00 +0100
shutter (0.94)
This is a bugfix release implementing some of the patches available for quite some time. Following bugs are fixed:
-- LP: #731874 Launching a second instance of Shutter if one instance is already open causes a crash
-- LP: #1369330 [patch] i18n for desktop file
-- LP: #1396368 Shutter screenshots uploaded to Dropbox expires
-- LP: #1406324 Imgur uploaded links dialog shows links in random order on every upload
-- LP: #1469840 Send by e-mail generates error (ctrl-shft-E)
-- LP: #1495163 Insecure use of system() allows arbitrary code execution via "Show in Folder"
-- LP: #1556021 'Window' does not show non-latin characters
-- LP: #1565048 imgur upload plugin no longer works due to now unsupported API 1 and 2
-- LP: #1624795 Linux software store metadata
-- Michael Kogan <michael.kogan@gmx.net> Wed, 16 Aug 2017 20:53:00 +0100
shutter (0.93.1)
* updated Dropbox.pm and XFIXES.pm
* fixed deprecated code
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Wed, 24 Dec 2014 00:01:10 +0100
shutter (0.93)
* Fixed bugs / minor improvements
-- LP: #1163251
[Dropbox plugin doesn't work since it uses an old version of the API]
-- LP: #1250536
[Error Dropbox authentication and upload]
-- LP: #1298878
[vgy.me support]
-- LP: #1349512
[Dropbox upload plugin uses Public folder and does not create proper share link]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Sun, 17 Aug 2014 19:11:28 +0200
shutter (0.92)
* Fixed bugs / minor improvements
-- LP: #731874
[Launching a second instance causes a crash - ArchLinux]
-- LP: #1034768
[Segmentation fault (core dumped) when trying to edit an image]
-- LP: #1285287
[Crashes after clicking "edit" while using certain icon themes]
-- LP: #1334869
[Shutter: ImageBanana no loger active....]
-- LP: #1351015
[Remove Ubuntu One]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Sat, 09 Aug 2014 15:42:04 +0200
shutter (0.91)
* Fixed bugs / minor improvements
-- LP: #1243649
[Add new icon]
-- LP: #1308485
[immio has been closed]
-- LP: #1314893
[Session tab no longer shows thumbnails after fresh install Kubuntu 14.04]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Mon, 09 Jun 2014 19:08:59 +0200
shutter (0.90.1)
* Fixed bugs / minor improvements
-- LP: #1092522
[Shutter doesn't recognize the command-line option "-d"]
-- LP: #1191521
[--delay=0 doesn't work from command-line]
-- LP: #1216619
[Drawing Tool: encoding problems when using chinese fonts]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Sun, 25 Aug 2013 21:45:08 +0200
shutter (0.90)
* Fixed bugs / minor improvements
-- LP: #1035259
[No way to activate the main window when using the appindicator]
-- LP: #1081917
[Quicklist no more working]
-- LP: #1083033
[Needs a high contrast app icon]
-- LP: #1083586
[Remove keybinding code]
-- LP: #1083588
[Remove Simple Selection Tool]
-- LP: #1087367
[File extension .png]
-- LP: #1092054
[desktop-file-validate complains again]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Wed, 19 Dec 2012 12:21:39 +0100
shutter (0.89.1)
* Fixed bugs / minor improvements
-- LP: #1007712
[imageshack plug in fails]
-- LP: #1020600
[bug on save output image in cyrillic keybord layout]
-- LP: #1021158
[Imgur plugin doesn't work]
-- LP: #1033931
[libgtk2-appindicator-perl not available for lucid (Ubuntu 10.04)]
-- LP: #1035332
[desktop-file-validate complains]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Mon, 13 Aug 2012 22:52:36 +0200
shutter (0.89)
* Fixed bugs / minor improvements
-- LP: #664292
[Feature Request: Please make use of appindicators]
-- LP: #1012235
[Advanced Selection Capture entries do not work]
-- LP: #1018791
[Change fsf-address]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Wed, 01 Aug 2012 22:46:10 +0200
shutter (0.88.3)
* Fixed bugs / minor improvements
-- LP: #965589
[Dropbox upload should urlencode the resuting link]
-- LP: #966159
[Wrong image format in save dialogue]
-- LP: #975247
[Editor: icon tool fails to add image]
-- LP: #976316
[Add include/exclude cursor option for command-line]
-- LP: #976322
[Add --delay command line option]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Mon, 23 Apr 2012 01:10:03 +0200
shutter (0.88.2)
* Fixed bugs / minor improvements
-- LP: #625291
[Edit menu items should be shown in right-click popup for object]
-- LP: #812182
[save image to jpg extension]
-- LP: #903305
[Add no_session parameter]
-- LP: #909195
['Updating plugins' dialogue appears on every startup]
-- LP: #917158
[FTP upload plugin recently stopped working]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Thu, 23 Feb 2012 11:56:50 +0100
shutter (0.88.1)
* Fixed bugs / minor improvements
-- LP: #894416
[Some upload plugins fail with unicode characters in filename]
-- LP: #894577
[Minus service doesn't work]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Thu, 01 Dec 2011 22:01:50 +0100
shutter (0.88)
* New Features
-- Refactored the uploading code (added support for plugins)
-- Added new upload plugins
-- Public links are now saved when a screenshot was uploaded
-- New command line option: specify filename
* New Upload Plugins
-- Dropbox
-- ImageBanana
-- ImageShack
-- Imgur
-- ImmIO
-- ITmages
-- Minus
-- Omploader
-- ToileLibre
-- TwitPic
-- UbuntuPics
* Fixed bugs / minor improvements
-- LP: #342622
[Remember upload links]
-- LP: #841328
[black corners if window is selected from the window list]
-- LP: #888441
[dialog not clickable when renaming a file]
-- LP: #889031
[Package should'nt provide own perl libraries]
-- LP: #892703
[After unlinking from Dropbox there is no way to relink it again]
-- LP: #650701
[retrieve Public URL if screenshot is already uploaded]
-- LP: #675911
[Url not selected when i do single click]
-- LP: #793462
[Short URL in imageshack.us]
-- LP: #870556
[specify file name on command line]
-- LP: #374024
[http://omploader.org/ as new image hoster]
-- LP: #486490
[Feature Request: Upload to imgur]
-- LP: #489598
[Wish: Add Twitpic support]
-- LP: #598818
[feature request: extensible imagehost/upload tools]
-- LP: #602209
[Add integration with Dropbox]
-- LP: #619748
[Add ubuntuusers.de thumbnail code to any of the hosting plugins]
-- LP: #651029
[Feature Request: Upload to ITmages]
-- LP: #703299
[Add upload to http://pix.toile-libre.org/]
-- LP: #785032
[min.us uploading support]
-- LP: #793463
[More image services to upload]
* improved support for Gnome-Shell
* several smaller bugfixes
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Mon, 21 Nov 2011 15:54:45 +0100
shutter (0.87.3)
* New Features
-- Show "real" cursor (instead of standard cursor)
-- Locate on disk
* Fixed bugs / minor improvements
-- LP: #695629
[locate on disk feature]
-- LP: #781235
[shutter.1.gz isn't gzipped]
-- LP: #769902
[shutter --man displays source code]
-- LP: #752846
[Application doesn't work on windows with certain titles]
-- LP: #749442
[UI improvements to the timeout menu]
-- LP: #779252
[Support gnome-web-photo >= 0.10]
-- LP: #744397
[It doesn't save the selected profile between sessions]
-- LP: #388475
[Showing standard cursor (left-ptr) instead of current cursor]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Sun, 03 Jul 2011 15:35:08 +0200
shutter (0.87.2)
* Fixed bugs / minor improvements
-- LP: #737428
['Open with' does not work when filename contains german umlauts]
-- LP: #738710
[Needs quicklists for Natty]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Fri, 25 Mar 2011 11:59:51 +0100
shutter (0.87.1)
* Fixed bugs / minor improvements
-- LP: #657585
[Shutter ignores typed-in save location]
-- LP: #695295
[Section: Encoding problems in non-english version of Shutter]
-- LP: #697483
[Initial image in DrawingTool shouldn't be locked by default]
-- LP: #705094
[Enter and Escape keys don't work any more]
-- LP: #705315
[Shutter failed to take screenshot on seamless mode of virtualbox]
-- LP: #708753
[Tab closing crashes in some circumstances]
-- LP: #723075
[Error while opening image 'sel_window_list.svg']
-- LP: #730883
[Profiles doesn't save some information]
-- LP: #731495
[Uploading to ImageShack broken]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Thu, 10 Mar 2011 01:20:30 +0100
shutter (0.87)
* New Features
-- Capture active window
-- Uniqueness via libunique (single instance)
-- Support for rounded window corners when using Compiz
-- Automatically resize windows before capture
-- New option: don't save screenshot to disk
-- Advanced startup-options
-- EXIF orientation flag is now supported
-- Compatible with global menu (unity)
-- Export to PostScript
-- Faster application startup (load session in background task)
* Fixed Bugs / Improvements
-- LP: #336132
[Load last session in a background task]
-- LP: #348161
[Option not to save screenshots to disk by default]
-- LP: #371555
[Add advanced startup-options to the settings dialog]
-- LP: #388478
[multiple instances running]
-- LP: #419137
[keyboard shortcuts and hidden main window]
-- LP: #429677
[Add option to capture last active window]
-- LP: #481096
[hotkeys and Compiz' flat-file backend]
-- LP: #486659
[Pressing Enter in the image editor doesn't save image]
-- LP: #517267
[shortcut keys with abbreviations can reset compiz shortcut keys]
-- LP: #577040
[Add a --version command line argument]
-- LP: #632042
[Disable re-save file warnings]
-- LP: #638588
[Image name overlapping error with $nb_name format]
-- LP: #643675
[Editor window opens too large]
-- LP: #643683
[Can't capture cursor anymore]
-- LP: #644084
[Moving files to trash doesn't work with KDE]
-- LP: #644168
[Rotation in Shotwell is incomp. with some other applications]
-- LP: #644847
[Shutter does not respect the EXIF orientation flag]
-- LP: #654185
[Crop tool - Offset when zooming]
-- LP: #658740
['Open with' does not work with global menu (unity)]
-- LP: #658745
[Unreadable (built-in) notifications: Text is highlighted]
-- LP: #661424
[Plugins fails if ' in filename]
-- LP: #657585
[Shutter ignores typed-in save location]
-- LP: #666854
[Auto-resize windows]
-- LP: #666858
[Opaque window corners when using compiz]
-- LP: #671749
[Feature Request: Redo hotkey]
-- LP: #671914
[Zoom window does not update when modifying selection]
-- LP: #671917
[Use filename for notebook pages (instead of [no] - [date])]
-- LP: #671918
[autoincrement does not work (in rare cases)]
-- LP: #677745
[non-HIG complient menu tooltip]
-- LP: #681008
[Add feature 'Export to PostScript']
-- LP: #685235
[Double click doesn't work when selecting a selection]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Tue, 08 Feb 2011 07:15:28 +0100
shutter (0.86.4)
* New Features
-- Automatically add a border
-- Capture all workspaces as one image
* New Plugins
-- Hard Shadow
-- Autocrop
* Fixed Bugs / Minor Improvements
-- LP: #342628
[Make selection capture 'rounded grey box' less intrusive]
-- LP: #497050
[Direction/Color on Shadow Plugin]
-- LP: #535481
[Need an autocrop tool]
-- LP: #583988
[JPEG export: file size too big]
-- LP: #588188
[Add DrawingTool to Preferences>Actions>Open with]
-- LP: #590348
[Need "border" feature]
-- LP: #608683
[capture ALL desktops as one image]
-- LP: #611832
[Advanced selection tool - Enable numpad enter]
-- LP: #618008
[Non-latin filenames]
-- LP: #620136
[Keyboard should be able to be used for fine grain movements]
-- LP: #620397
[Adv. Selection Tool: no update when using the keyboard]
-- LP: #622638
[shutter launches ubuntuone also, at startup]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Wed, 01 Sep 2010 22:36:16 +0200
shutter (0.86.3)
* New features
-- Publish via Ubuntu One
-- New humanity icons (ubuntu-mono-dark and ubuntu-mono-light)
* Fixed bugs / minor improvements
-- LP: #361971
[Rename Redo to Retry in upload failure dialog]
-- LP: #506181
[Would like integration with Ubuntu One]
-- LP: #552842
[function to hash the file name]
-- LP: #577040
[Add a --version command line argument]
-- LP: #582134
[Cannot export photos to imageshack]
-- LP: #610042
[Ubuntu-pics.de is dead]
-- LP: #610784
[Cannot export photos to imagebanana]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Thu, 29 Jul 2010 17:47:59 +0200
shutter (0.86.2)
* Fixed bugs / minor improvements
-- LP: #470403
[Drag & drop the image after taking screenshot]
-- LP: #543446
[Transparent parts... show as <whatever>]
-- LP: #561097
[Profiles are broken]
-- LP: #566597
[imageshack.us direct link is messed up]
-- LP: #568961
[Desktop may crash when canceling web-capture]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Wed, 28 Apr 2010 11:34:02 +0200
shutter (0.86.1)
* Fixed bugs / minor improvements
-- LP: #541751
[Add support for Thunderbird when sending via email]
-- LP: #543058
[No error reporting on 'Send by mail']
-- LP: #549732
[print gives blank page]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Wed, 31 Mar 2010 23:39:34 +0200
shutter (0.86)
* New features
-- Repeat last screenshots easily
-- DrawingTool: New Pixelize tool
-- DrawingTool: PDF + SVG Export
-- DrawingTool: new shapes (e.g. callouts)
-- Improved PDF export
-- Copy URL to clipboard (FTP)
-- Built-in notification windows
-- Option to ask for a name and directory before saving
-- Many usability improvements
* Screenshot Tools
-- LP: #344754
[Keep selection for screenshots]
-- LP: #507465
[implement a workaround if some window doesn't deliver the correct type hint]
-- #515944
[Can't take window screenshots when using fluxbox and styles that use the XShape extension]
* Upload / Export
-- LP: #339920
[Copy URL to clipboard after uploading to a FTP Server]
-- LP: #341810
[Remember last used 'Upload' tab]
-- LP: #513778
[ImageShack direct link incorrect]
* Drawing Tool
-- LP: #349048
[Add a callout editing tool for quick annotations]
-- LP: #482791
[Text Tool should allow me to edit the text immediately]
-- LP: #486680
[Shapes can't be moved with keyboard]
-- LP: #493308
[Should be able to move around the original image]
-- LP: #511919
[Add an svg export to DrawingTool]
-- LP: #519869
[Line width not changes, in Shutter editor, if I use "draw arrow" tool after "censor" tool]
* Fixed bugs / minor improvements
-- LP: #264623
[Add pdf export to File Menu]
-- LP: #340762
[Send by email]
-- LP: #412917
[Remember the path to last opened folder in "Save as" dialog]
-- LP: #500352
[Shutter closes down completely when attempting web capture]
-- LP: #501969
[Ctrl N does nothing, even though it is listed in the File menu]
-- LP: #509546
[Option to ask for a name and location before saving the screenshots to disk]
-- LP: #510404
[Keybindings do not work correctly when optional command line parameters are used]
-- LP: #511942
[Default directory for saved screenshots is /home instead of /home/login]
-- LP: #512130
[Shutter doesn't start if $icontheme->load_icon fails]
-- LP: #513616
[File mask %T non compatible and $name]
-- LP: #522508
[Several problems with comma as decimal separator]
-- LP: #533764
[I'd like an option "Copy nothing to clipboard"]
-- LP: #543052
[Close buttons are right-aligned instead of left on tabs]
-- LP: #543063
[Layout overlap on bottom]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Fri, 26 Mar 2010 00:21:52 +0100
shutter (0.85.1)
* Fixed bugs
-- LP: #471895
[Unable to set Shutter as default screenshot tool when using compiz]
-- LP: #488845
[check gtk version before calling gtk-image-menu-...]
-- LP: #488895
[capture menu / tooltip doesn't work with gtk2-perl 1.161]
-- LP: #488897
[duplicate file after capturing a webpage and using $name in th...]
-- LP: #486322
[copy filename / copy screenshot to clipboard should be xor]
-- LP: #486659
[Pressing Enter in the image editor doesn't save image]
-- LP: #486691
[copy and copy filename do not work in session tab]
-- LP: #488702
[can't shot localhost web]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Tue, 01 Dec 2009 20:26:49 +0100
shutter (0.85)
* New features
-- Undo/Redo functionality
-- Drag and drop pics into Shutter
-- Functionality to capture menus
-- Functionality to capture tooltips
-- Improved Advanced Selection Tool
-- Improved Window Selection
-- Improved right-click menu in preview tab
-- Many UI improvements
-- Change backgound color in Drawing Tool
-- New multi-purpose wildcard $name
-- Import images from clipboard
-- Use system's notification system
-- Send screenshots via email or instant messenger
-- Autocopy filename to clipboard
-- Shutter registers itself as an app to open images with
* Screenshot Tools
-- LP: #371550
[Advanced selection tool: Specify pixel values of selection area]
-- LP: #392002
[Add gnome-web-photo's --width parameter to the webphoto settings]
-- LP: #412466
[gnome-web-photo "Unknown option -q"]
-- LP: #454266
[Cursor does not display]
-- LP: #457218
[Combine the advanced and the simple selection tool into one tool]
* Drawing Tool
-- LP: #311582
[Make the properties dialog function as "instant apply"]
-- LP: #394367
[change and mark hot spot of mouse pointer icons]
-- LP: #396431
[Properties of the marker tool aren't updated instantly]
-- LP: #403469
[DrawingTool: Add an option to change the background color when...]
-- LP: #466067
[no icos in the 'Screenshot-Edit-Insert image' menu]
* User Interface
-- LP: #279271
[Allow easy profile switching]
-- LP: #338800
[Drag and drop pics into shutter]
-- LP: #342643
[Provide easier access to actions in the preview tab]
-- LP: #344828
[Remove MIME type info from general window]
-- LP: #365373
[screenshot info should be summarized]
* Fixed bugs / minor improvements
-- LP: #328663
[Give the screenshot title of window when capturing window only]
-- LP: #338796
[Shutter should register itself as an app to open pictures with]
-- LP: #339728
[Need an 'undo' for image editing and plugin operations]
-- LP: #339924
[Rename strings]
-- LP: #340762
[Send by email]
-- LP: #345382
[add indicator for running countdown]
-- LP: #350660
[Add an option to keep the shutter window hidden after a capture]
-- LP: #415917
[Capture menus more easily]
-- LP: #421832
[Import image from clipboard]
-- LP: #426348
[JPG is a default format]
-- LP: #428661
[X crashes if no instance of Shutter is running while capture s...]
-- LP: #436504
[Screenshot looks fuzzy after printing]
-- LP: #440526
[Files remain in folder even if put in trash]
-- LP: #453210
[Shutter signals in Multi User Env]
-- LP: #457209
[Add a 'delete-on-tab-close' option to the preferences]
-- LP: #457211
[Add an option for a delete prompt to preferences]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Sat, 21 Nov 2009 15:01:45 +0100
shutter (0.80.1)
* Fixed bugs
-- LP: #363708
[small lines at the edge of small screenshots]
-- LP: #388532
[Respect stacking order of windows when selecting]
-- LP: #396795
[Jigsaw plugins are broken]
-- LP: #396797
[gnome-web-photo errors not properly handled in all cases]
-- LP: #397873
[check permissions when saving to directory]
-- LP: #397875
[Don't install anything to /usr/share/app-install]
-- LP: #404860
[Paths with whitespaces in them aren't properly treated]
-- LP: #406017
[settings could not be restored]
* DrawingTool: new cursors
* DrawingTool: improved 'insert image' functionality
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Thu, 06 Aug 2009 22:43:41 +0200
shutter (0.80)
* New features
-- Undo/Redo functionality in Drawing Tool
-- Added arrow shape to Drawing Tool
-- Added highlighter/marker to Drawing Tool
-- Added numbered tags to Drawing Tool
-- Added crop tool to Drawing Tool
-- Functionality to resize the canvas
-- Zoomable image preview
-- New 'Copy filename' action
-- Added access to 'Recent files'
-- New watermark plugin
-- New reflection plugin
-- New distortion plugin
-- New 3D rotate plugin
* Drawing Tool
-- LP: #310704
[object property changes should take immediate effect]
-- LP: #311578
[resize canvas]
-- LP: #312405
[added numbered tags]
-- LP: #312965
[Drawing tool should have an Undo feature]
-- LP: #318452
[save and restore last used tool]
-- LP: #322811
[Add crop tool to drawing tool]
-- LP: #338809
[keep tool focus after one usage]
-- LP: #360254
[added highlighter/marker]
-- LP: #364815
[added arrow shape]
-- LP: #380790
[Fullscreen mode]
* User Interface
-- Show screenshot menu on right-button click in each tab
-- Show default application in separate menu item
-- Show progress dialog when updating plugin information
-- LP: #338528
[use icon theme and toolbar style wherever it is possible]
* Plugins
-- LP: #264622
[new watermark plugin]
-- LP: #342034
[new reflection plugin]
-- LP: #374192
[new distortion plugin]
-- LP: #375069
[new 3D rotate plugin]
* Fixed bugs / minor improvements
-- Use File::HomeDir instead of $ENV{ 'HOME' }
-- Use xdg-open instead of gnome-open
-- LP: #312221
[Item is drawn in bottom-right point of the cursor]
-- LP: #336122
[Ctrl+resize in editor moves the shape]
-- LP: #338812
[Better timeout options]
-- LP: #340503
[Show item properties on double-click]
-- LP: #341458
[Allow zooming in editor via ctrl+scrollwheel]
-- LP: #348595
[keybindings don't work in ubuntu jaunty when using compiz]
-- LP: #353819
[check window border option when calculating shape]
-- LP: #353824
[fix advanced selection tool when using compiz]
-- LP: #353830
[do not capture the zoom window when using the simple selection]
-- LP: #356324
[Stutter doesn't remember preference for screenshot location]
-- LP: #362508
[File - Open with gets broken sometimes]
-- LP: #363708
[lines of selected area get captured sometimes]
-- LP: #340635
[Preview in plugin dialogs takes too long]
-- LP: #364165
[dialogs should set the window title]
-- LP: #365365
[polaroid plugin text doesn't allow apostrophes]
-- LP: #366695
[control advanced selection tool with arrow keys]
-- LP: #367513
[desktop entry contains deprecated encoding key]
-- LP: #370359
[Watermark plugin doesn't say the allowed syntax]
-- LP: #370367
[DrawingTool -> View has multiple same options]
-- LP: #384352
[Save settings to file when closing preferences dialog]
-- LP: #386304
[Rename Edit -> Quick select to Quick profile select]
-- LP: #386316
['Delete objects' and 'Delete all objects' are too similar]
-- LP: #386318
[New highlighter icon]
-- LP: #386766
[Text of '3D rotate' plugin is malformated]
-- LP: #386769
[quick profile selector is even sensitive when empty]
-- LP: #389837
[Invalid chars in japanese translation]
-- LP: #390853
[Workaround for upstream bug http://trac.bjourne.webfactional.com/ticket/21]
-- LP: #394283
[query new libgoocanvas properties and methods]
* code cleanup
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Sun, 05 Jul 2009 14:39:53 +0200
shutter (0.70.2)
* fixed bugs
-- LP: #339139
[Shutter selects incorrect target window]
-- LP: #340855 + LP: #340864
[fixed save-as function]
-- LP: #340856
[main window is partly visible on screenshots]
-- LP: #340990
[Shutter crashes when xserver grab fails]
-- LP: #341459
[Ctrl+ + doesn't zoom in drawing area]
-- LP: #347821
[decode filesize properly]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Tue, 24 Mar 2009 21:41:37 +0100
shutter (0.70.1)
* fixed bugs
-- LP: #260771
[Detect 'window-manager-changed' event]
-- LP: #328654
[Weird paths after uploading]
-- LP: #338829
[Uploading to imageshack is broken]
-- LP: #338990
[Open with dialog freezes shutter and desktop]
-- LP: #340253
[Capture Website creates two files]
-- LP: #340459
[Use fallback icons if icon does not exist]
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Tue, 10 Mar 2009 23:06:25 +0100
shutter (0.701)
* General changes
-- Rebranding from GScrot to Shutter
-- Exports to and opens all file formats supported by gdk-pixbuf
-- Added native printing support (instead of gtklp)
-- Watch opened files via GnomeVFS File Monitor to monitor changes
-- Integration of GNOME Virtual File System and
GNOME authentication manager (LP: #310780)
-- Respect non-rectangular windows (XSHAPE)
when using metacity (LP: #260771)
-- Use themeable icons wherever its is possible
-- Use systemwide MIME Information instead of config file
-- Move screenshots to trash instead of deleting them (LP: #313003)
-- Faster thumbail creation and caching
(improves gui startup when a lot of files are in last session)
-- Improved Dialogs (e.g. Settings Dialog)
-- Show context menu for each file in session tab (right click)
* Gui improvements
Show current profile in statusbar (LP: #279271)
Second toolbar removed (LP: #311626)
Progress bars (LP: #310299)
-- LP: #311627
-- LP: #312966
-- LP: #313346
-- LP: #326758
* Drawing Tool
Scale uniformly (LP: #310708)
Added standard actions (copy, cut, paste, delete) (LP: #313343)
Added censor tool to hide private data (LP: #317659)
-- LP: #310717
-- LP: #310721
-- LP: #311574
-- LP: #311576
-- LP: #311577
-- LP: #311580
* Miscellaneous
Shutter shows up in GNOME add/remove (LP: #322388)
Repository is not signed (thanks to the LP Team) (LP: #312681)
* Plugins
New hard shadow plugin (thanks to Tualatrix) (LP: #331914)
* Fixed bugs
-- LP: #303090
-- LP: #313761
-- LP: #316917
-- LP: #336120
-- LP: #336126
-- LP: #336121
-- LP: #336118
-- LP: #336133
-- LP: #336124
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Thu, 05 Mar 2009 12:23:51 +0100
gscrot (0.642)
* fixed bugs
-- LP: #313351
-- LP: #318226
-- LP: #318227
-- LP: #313351
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Sun, 18 Jan 2009 15:10:27 +0100
gscrot (0.640)
* fixed bugs
-- LP: #312866
-- LP: #313005
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Fri, 02 Jan 2009 14:33:27 +0100
gscrot (0.64)
* new goo-canvas based drawing tool (LP: #264617, LP: #278999, LP: #279001)
* added ftp-upload (LP: #291286)
* improved startup time (LP: #296341)
* improved advanced selection tool (LP: #311185)
* improved plugin interface and error handling (LP: #296091)
* fixed bugs/smaller feature requests
-- LP: #306420
-- LP: #264616
-- LP: #277040
-- LP: #279271
-- LP: #280161
-- LP: #291284
-- LP: #310871
* new plugin: torned-paper (Edwood Ocasio)
* updated translations
* massive code cleanup
-- Mario Kemper <mario.kemper@googlemail.com> Tue, 30 Dec 2008 09:48:36 +0100
gscrot (0.63)
* added new "advanced" selection-tool (see LP: #273763, depends on Gtk2::ImageView)
* added new keybinding-mode option
* ported to Gtk2::StatusIcon (Gtk2::TrayIcon supported for older Gtk2 Versions)
* faster plugin checks
* minor changes (human interface guidelines)
* fixed (LP: #286632, LP: #293091, LP: #291753, LP: #293616)
* updated translations
* code cleanup
-- Mario Kemper <mario.kemper@googlemail.com> Thu, 06 Nov 2008 13:45:57 +0100
gscrot (0.62)
* display session information on startup (see LP: #277121)
* minor changes related to upload dialog (see LP: #280154 and LP: #280165)
* new file->save as and file->close menu entries (see LP: #280155 and LP: #280886)
* new command line parameters (see LP: #280868 and LP: #281793)
* deleted hard dependencies of gnome-web-photo and gtklp in source code for more flexibility (e.g. packaging)
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Wed, 22 Oct 2008 15:10:33 +0200
gscrot (0.61)
* added new feature "include cursor" (default cursor)
* added imageshack.us as hosting-partner
* save and restore session automatically (restore tabs/screenshots)
* improved plugin-dialog and upload-dialog
* redesigned polaroid plugin
* fixed wrong utf8-encoding in profile names
* fixed wrong utf8-encoding in about dialog
* improved auto incrementing of filenames (see LP: #275352)
* improved thumbs (session tab)
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Mon, 06 Oct 2008 22:47:58 +0200
gscrot (0.60)
* added new feature "grab window-section"
* added settings-profiles
* added new plugin interface
* added new plugins
-- pdf-export
-- negate
-- sepia (perl)
-- resize
* gui redesign
-- scaling of main window
-- auto-scaling of preview
-- new toolbar
-- new menu entries
-- settings moved to menu
* updated translations
-- Mario Kemper <mario.kemper@googlemail.com> Wed, 24 Sep 2008 22:00:18 +0200
gscrot (0.51.1)
* minor changes
* added/updated translations
* fixed bugs
-- 264637
-- Mario Kemper <mario.kemper@googlemail.com> Fri, 05 Sep 2008 18:29:35 +0200
gscrot (0.51)
* new features
-- capture window by name
-- select specific workspace to capture
* minor changes
-- several performance improvements
-- some options added
* added/updated translations
-- Danish
-- Dutch
-- French
-- German
-- Italian
-- Korean
-- Norwegian Bokmal
-- Polish
-- Russian
-- Serbian
-- Simplified Chinese
-- Spanish
-- Swedish
-- Traditional Chinese
-- Ukrainian
* fixed bugs
-- 262165
-- 262206
-- 262207
-- 262263
-- Mario Kemper <mario.kemper@googlemail.com> Mon, 01 Sep 2008 03:25:16 +0200
gscrot (0.50.1)
* minor changes
-- partly rewritten window-selection
-- changed .po/.mo naming of plugins
-- added new svg icon
* added/updated translations
-- Brazilian Portuguese
-- Catalan
-- Spanish
-- Italian
-- Polish
-- Russian
-- Swedish
-- Traditional Chinese
-- Ukrainian
* fixed bugs
-- 260146
-- 260142
-- 260736
-- Mario Kemper <mario.kemper@googlemail.com> Tue, 26 Aug 2008 00:13:09 +0200
gscrot (0.50)
* implemented new backend (gscrot does not depend on scrot anymore)
* zoom for free-hand screenshot
* gui changes
-- added a detachable toolbar (buttons are replaced)
* added translations
-- spanish
-- catalan
-- Mario Kemper <mario.kemper@googlemail.com> Tue, 19 Aug 2008 22:00:58 +0200
gscrot (0.405)
* fixed bug https://bugs.launchpad.net/gscrot/+bug/252549
-- Mario Kemper <mario.kemper@googlemail.com> Mon, 28 Jul 2008 16:42:19 +0200
gscrot (0.404)
* gui changes (added expanders)
* session collection
-- added file infos
-- added thumbnails
* save settings automatically when exiting
* added url-column to accounts treeview
* included gscrot-plugins-bash in base-package
-- Mario Kemper <mario.kemper@googlemail.com> Fri, 25 Jul 2008 21:07:44 +0200
gscrot (0.39)
* drawing-tool
-- it's a canvas now ;-)
-- zoom-factor and width of brush configurable
-- fixed drawing glitches due to fast mouse movement
* added new wildcard (%NN = counter)
* added keybindings (using gconf, configurable via gui)
* added libgnome2-perl and libgnome2-gconf-perl to dependencies
-- Mario Kemper <mario.kemper@googlemail.com> Fri, 11 Jul 2008 00:57:11 +0200
gscrot (0.385)
* added simple drawing tool
* added plugin-interface and gui structure
* added support for image-hoster imagebanana.com
* added support for upload-accounts (ubuntu-pics.de && imagebanana.com)
-- gui structure and accounts.xml
* internal changes
-- upload-functionality swapped out to perl-modules
-- changed settings-format to xml
-- Mario Kemper <mario.kemper@googlemail.com> Thu, 03 Jul 2008 19:39:35 +0200
gscrot (0.370)
* added functionality to capture websites using gnome-web-photo
* added upload functionality to ubuntu-pics.de
--upload a file and automatically retrieve all links generated by ubuntu-pics.de
* moved configuration to /home/<username>/.gscrot/settings.conf
* modified program-selector
--switched simple entry to combobox with tree-model
--predefined or custom programs/scripts
--overwrite settings individually by setting up /home/<username>/.gscrot/programs.conf
* added custom icon-set
* smaller changes
--solved deprecation warning in about-dialog
--fixed wrong time format in debian/changelog
--added all new dependencies to debian/control
* added russian translation files
-- Mario Kemper <mario.kemper@gmx.de> Mon, 19 May 2008 12:49:27 +0200
gscrot (0.36.2)
* unset "reduce colors" by default
-- Mario Kemper <mario.kemper@gmx.de> Thu, 08 May 2008 22:43:38 +0200
gscrot (0.36)
* added functionalities to "session collection"
--remove screenshots from session (but do not delete them)
--reopen screenshot with specified program
--rename screenshot
* new arrangement of settings area
* new feature -- reduce colors --
* added dependency perlmagick
-- Mario Kemper <mario.kemper@gmx.de> Wed, 07 May 2008 19:55:10 +0200
gscrot (0.35)
* added feature "session collection"
--keep track of all screenshots during session
--copy screeners to clipboard
--print screenshots
--delete screenshots
* added command line args
--min_at_startup - starts gscrot minimized to tray
--beeper_off - turns audible feedback off
--debug - prints a lot of debugging information to STDOUT
--help - displays this help
* start of localization using gettext
--english is now default language
--german translation added
* fixed typo in info_message
* changed hbox/vbox arrangement
-- Mario Kemper <mario.kemper@gmx.de> Thu, 17 Apr 2008 13:17:37 +0200
gscrot (0.34)
* new features
* added keybindings in menubar
* added save and revert settings
* reimplemented message dialogs
* added support for grabbing window border when not using compiz or beryl
* added debian folder to source directory
* load settings automatically at startup
* added statusbar to main window
-- Mario Kemper <mario.kemper@gmx.de> Thu, 10 Apr 2008 21:00:10 +0200
gscrot (0.33)
* added homepage to about box
-- Mario Kemper <mario.kemper@gmx.de> Wed, 09 Apr 2008 13:19:30 +0200
gscrot (0.33)
* initial release
-- Mario Kemper <mario.kemper@gmx.de> Wed, 09 Apr 2008 12:50:28 +0200
|