commit e54fe112f6cb0d76d9f5f341e55cf302cc1fa375
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Jan 10 19:53:28 2023 +0100

    Update copyright year
    
    (cherry picked from commit 8ebf83d3afae5b0743459704c4ce0ee9bcf7cbf5)

commit 4081926d596807a10d7bdfebb982868bf7162be7
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Jan 10 18:39:11 2023 +0100

    tasklist: Fix scrolling through window buttons (Fixes #692)
    
    (cherry picked from commit 116ded7b6233e8de597a06f80eb405a0c375c0de)

commit 1cd0b104d1fc7a3a1041af251c13598e7fcaf4d6
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Jan 10 16:49:31 2023 +0100

    tasklist: Fix group button visibility
    
    Regression introduced in e17d6a35148e4d60cd1af43329af2e99de6c5cfa.
    
    Fixes: #693
    (cherry picked from commit eb27111dd3921a9a6ebcacde4fe49bd552e7cc06)

commit 75476c557dff724a22617827551791d1f09bb555
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Jan 8 21:19:26 2023 +0100

    libxfce4panel: Deprecate XfcePanelImage
    
    Related: c183ccab6a9ea941154752abb0172193eaca35fa
    (cherry picked from commit f76c2aee5c34f257fb858b2afa18260f5ae7f229)

commit a35a1d7bf0ee699918e80943331f91a8c570ee35
Author: Anonymous <noreply@xfce.org>
Date:   Sun Jan 8 00:47:06 2023 +0100

    I18n: Update translation el (99%).
    
    488 translated messages, 1 untranslated message.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 457db98399d46de5b9b52723573e52d31a767b6c
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Dec 11 12:51:13 2022 +0100

    tasklist: Do not duplicate menu item activation
    
    Connecting to "button-press-event" is just useless, but connecting to
    "button-release-event" should be kept for middle click actions. Luckily
    the left click worked on X11 because the two activations seem to work
    together, but they cancel each other out on Wayland. As for the right
    click, it did not work either on X11 or on Wayland.
    
    (cherry picked from commit f06f5ca49f01932ed579b591affdef73e7205c53)

commit 43be4147b542e13d3e592f635580b46d5177f841
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Jan 4 08:48:32 2023 +0100

    clock: Fix sync timeout
    
    (cherry picked from commit 5cf7006ee02cac06a693714ee9c30d3e7d326c17)

commit 223d954a4024c4c783b3bc55e7d8d5ed8493150b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Jan 1 17:08:33 2023 +0100

    docs: Fix version for xfce_panel_set_image_from_source()
    
    The `scale` argument was only added in 4.17.4, so better not to
    encourage the use of this function before.
    
    Related: !83, 0a732bdc8fddbe1bec37e6baa00df82dcb1ed435
    (cherry picked from commit 3f9d41e08699fa0e23e9a76819986f6464fd8e35)

commit 82532e63bf11930db44912a40be2813c4260720b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Thu Dec 29 14:49:57 2022 +0100

    clock: Add missing sanity check
    
    Fixes: 5ec58536b6d10396cf77380967ced1e634d35731
    (cherry picked from commit 9940f0974126d9ada6ce3caa6e7334d46297ea13)

commit f9dc20adb6feeaf08e5d032908453f4040e722da
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Dec 28 18:09:40 2022 +0100

    windowmenu: Adapt wnck default icon size when UI scale > 1 (Fixes #682)
    
    (cherry picked from commit d9b40caafb680f0bc8a0a0b1c993e28ced91d0a4)

commit 2fce4d9a665c88f76ae5503a8c8092dad299aa22
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Dec 28 17:35:15 2022 +0100

    tasklist: Adapt wnck default icon size when UI scale > 1 (Fixes #681)
    
    (cherry picked from commit 3fe42737bfe08cf3b6b74c7bfc0e1f9f8ee53eea)

commit ffa7e028417fac6f8e49f8d6947e646fcf36d5a8
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Dec 20 13:52:33 2022 +0100

    tasklist: Fix window count positioning when UI scale > 1
    
    Not really a regression, since it never worked.
    
    Fixes: 4f6e403144a6cfa5ea13e3bc5ef092f07ca42098
    (cherry picked from commit 01265609330d3d885e0bb7cf9880b4a76d4866ae)

commit 836a5c708c4d3249d11187f182f225c432416864
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Dec 20 13:14:46 2022 +0100

    tasklist: Keep icon pixbuf around and use surface also for menu items
    
    Closes: #676
    Fixes: 4f6e403144a6cfa5ea13e3bc5ef092f07ca42098
    (cherry picked from commit b328ce00585649f827681ca173439486ba6554c2)

commit 1c5aee55f0c89f532168cd4fa0f882aa7c9374d3
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Dec 19 18:37:54 2022 +0100

    clock: Do not override custom font formats
    
    The font specified via the font dialog can be applied globally while
    giving priority to custom font formats, as long as it is applied at the
    end and without mixing markup strings and Pango attributes, as the doc
    recommends. This means not applying the dialog font and the custom
    format separately, but all at once, so some refactoring.
    
    Fixes: #675
    Related: !101
    (cherry picked from commit 5ec58536b6d10396cf77380967ced1e634d35731)

commit 8e4beee7fad6eb403e18bb34fa16e3ba4003b29b
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jan 2 00:47:31 2023 +0100

    I18n: Update translation ko (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit a9a615654826fddff12dc828685f6f973ad722aa
Author: Anonymous <noreply@xfce.org>
Date:   Sun Jan 1 00:48:31 2023 +0100

    I18n: Update translation pt_BR (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 29c95e31ed4b2620cd4bf0569f06a40360218496
Author: Anonymous <noreply@xfce.org>
Date:   Fri Dec 30 12:54:24 2022 +0100

    I18n: Update translation ko (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 25344cb2f5d020889e49871c5113e08c443f225e
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 29 00:51:47 2022 +0100

    I18n: Update translation fr (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 73566e4493b10d6d85c7e6a4c2f1a17dce423cb9
Author: Anonymous <noreply@xfce.org>
Date:   Mon Dec 26 12:49:33 2022 +0100

    I18n: Update translation zh_CN (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit b73e8ad4d22d557a98015a1f2a52c5999d920e18
Author: Anonymous <noreply@xfce.org>
Date:   Sun Dec 25 00:49:19 2022 +0100

    I18n: Update translation he (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 1360ff13bf47d074f98410e7cdddff499ab99398
Author: Anonymous <noreply@xfce.org>
Date:   Fri Dec 23 00:50:34 2022 +0100

    I18n: Update translation nl (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit f7c0bff3458d50efa13eb1d81a08be99190c730d
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:58 2022 +0100

    I18n: Update translation zh_TW (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 6daf982254c5c03cd5e2461500e236e8e262d3b3
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:57 2022 +0100

    I18n: Update translation zh_HK (85%).
    
    419 translated messages, 70 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 5395be5893d283e4b632707dd0d90d85ac2026b5
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:57 2022 +0100

    I18n: Update translation zh_CN (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit e4697b3cf96b0855599e4f683f280f43a5f9e0fe
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:57 2022 +0100

    I18n: Update translation vi (63%).
    
    312 translated messages, 177 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 2de6b657745edb382580710590cbcb7cd1aa538b
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:57 2022 +0100

    I18n: Update translation uk (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit ae2ec70bf2c71d47550a732174efbd52b92bb56a
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:57 2022 +0100

    I18n: Update translation ug (78%).
    
    383 translated messages, 106 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit f220a17bd358d8dc8e44180cc05bc1b765fdb2d6
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:57 2022 +0100

    I18n: Update translation tr (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit c8c055ebda6e694fd14f5582b56e48f223b49632
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:57 2022 +0100

    I18n: Update translation th (94%).
    
    464 translated messages, 25 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit ae8be00084c9cb09c350b4471152fb1fa4bfe956
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:57 2022 +0100

    I18n: Update translation sv (99%).
    
    486 translated messages, 3 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 4ddbcbdfe615db091486a02b02ed0dc3c58474e7
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:57 2022 +0100

    I18n: Update translation sr (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit ce5cef76540af1fc7a5c5166e46f6421a7bbd44a
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:56 2022 +0100

    I18n: Update translation sq (99%).
    
    487 translated messages, 2 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 9a24ebaba6df3f51cde52749eb352b113657355a
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:56 2022 +0100

    I18n: Update translation sl (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 5bea6d7d105877290cbb9c2016b32de9b4803ccd
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:56 2022 +0100

    I18n: Update translation sk (94%).
    
    464 translated messages, 25 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit a031f7e67e00d0a3d1ad6da80ed54cb0d80abbac
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:56 2022 +0100

    I18n: Update translation si (57%).
    
    280 translated messages, 209 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 0e477bc9846d1e7844b145439f60cf0ae97a2e9f
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:56 2022 +0100

    I18n: Update translation ru (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 99784afcb8202eba9adac8c497f0edbc0da88df5
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:56 2022 +0100

    I18n: Update translation ro (79%).
    
    389 translated messages, 100 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 84f84fb225d39fede7a4353bb9dd105c51ebb8dc
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:56 2022 +0100

    I18n: Update translation pt_BR (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 76193ce96b25df8928cd7f157181038afa6853be
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:56 2022 +0100

    I18n: Update translation pt (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 888d48ca0da960bc39dbe413e8fcda0c1ab7ddc1
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:55 2022 +0100

    I18n: Update translation pl (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit eb4d50cd88b7eee7bd1a4d63879b257635e354f6
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:55 2022 +0100

    I18n: Update translation pa (57%).
    
    280 translated messages, 209 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit f5daf81b5aaee82376f59480cb7647b6ba137edb
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:55 2022 +0100

    I18n: Update translation oc (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 8c99bf9cae10547f380d8c0f14d8f656b896ae74
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:55 2022 +0100

    I18n: Update translation nn (88%).
    
    431 translated messages, 58 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 266eb642f59916257eb0ec1d816a56cafc3ed2b6
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:55 2022 +0100

    I18n: Update translation nl (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 20bcad9ff9047e8bb71425adc408ed517b769f28
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:55 2022 +0100

    I18n: Update translation nb (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 023537174d3ae1b8b97fe3f472655920359a8d59
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:55 2022 +0100

    I18n: Update translation ms (95%).
    
    466 translated messages, 23 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit e53c8fb9afca1d5f506dfc755c2571d88529ccd6
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:55 2022 +0100

    I18n: Update translation lt (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 487f660d1ee199ebb88c7917353a82689f35be37
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:54 2022 +0100

    I18n: Update translation ko (94%).
    
    464 translated messages, 25 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit b771f932b5e1fdf9da51dedb80d061b62f6b0da8
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:54 2022 +0100

    I18n: Update translation kk (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 5ca300578007de713bc1b80511c612d956e4f2b8
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:54 2022 +0100

    I18n: Update translation ka (62%).
    
    308 translated messages, 181 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit cb2af0c5ca109874de2c754131eec0b56a183626
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:54 2022 +0100

    I18n: Update translation ja (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 5a8a9be1339325b95195c77583f58f75981213f3
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:54 2022 +0100

    I18n: Update translation it (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 2e5b735406ecc1562c098b3b211e8c19d899a0f6
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:54 2022 +0100

    I18n: Update translation is (83%).
    
    409 translated messages, 80 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 78261cbbf3c7871f606f3eb0d34a65c9fe655120
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:54 2022 +0100

    I18n: Update translation ie (91%).
    
    448 translated messages, 41 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit ae7ae127fa2a51385bdf16ed274fe1df7ec77cdf
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:53 2022 +0100

    I18n: Update translation id (99%).
    
    488 translated messages, 1 untranslated message.
    
    Transifex (https://explore.transifex.com/xfce/).

commit fc1265fab5e8180dae617df904b5b296829885b0
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:53 2022 +0100

    I18n: Update translation hye (85%).
    
    418 translated messages, 71 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit fc77bc4faaa392cd63f55fd83f74d917e51ecbbc
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:53 2022 +0100

    I18n: Update translation hy_AM (89%).
    
    436 translated messages, 53 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit d5f0f261e6274eb5e2f967777dd499ce1bc676ce
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:53 2022 +0100

    I18n: Update translation hu (93%).
    
    455 translated messages, 34 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit d6b71e40cb4e48098a385d2723765782fa4981c1
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:53 2022 +0100

    I18n: Update translation hr (89%).
    
    440 translated messages, 49 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 86444b6b02e297915f491df4370217b2b684d8c0
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:53 2022 +0100

    I18n: Update translation he (97%).
    
    478 translated messages, 11 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 06a6be8efe96a38cc0cf27474fbf74c3e93553cb
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:53 2022 +0100

    I18n: Update translation gl (94%).
    
    464 translated messages, 25 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit ee04ed0ac201ab93e3c117c01201ac660fa424c2
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:53 2022 +0100

    I18n: Update translation fr (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 76c7ab7df81b1c4d1f555ac76c5af480b562a29b
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:52 2022 +0100

    I18n: Update translation fi (89%).
    
    439 translated messages, 50 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 7b617afe09846fd362f70d3e2900e7d76c9e2796
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:52 2022 +0100

    I18n: Update translation eu (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit c1299e1aaedc3d1ec308e2d52b0ac28b87e90e2a
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:52 2022 +0100

    I18n: Update translation et (98%).
    
    482 translated messages, 7 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 4343f4ef96cf0d841fd7618436374956f9227336
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:52 2022 +0100

    I18n: Update translation es (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 1a585aceb9163f9655753cf8300e415bc14d15c4
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:52 2022 +0100

    I18n: Update translation en_GB (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 6b3ed0c761b620e28240b055765a8f17d2143405
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:52 2022 +0100

    I18n: Update translation en_AU (83%).
    
    409 translated messages, 80 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit c19a60dfbb50ed762c6b93f335e12c56dd9284b3
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:51 2022 +0100

    I18n: Update translation el (99%).
    
    488 translated messages, 1 untranslated message.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 7cae34f868aa1b2074435d94871bd00200845254
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:51 2022 +0100

    I18n: Update translation de (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 87f097846eb48f6f59ee091c232f1a17c71cde0c
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:51 2022 +0100

    I18n: Update translation da (95%).
    
    465 translated messages, 24 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 0a126428d41972720f1c3a852a238b976a423b65
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:51 2022 +0100

    I18n: Update translation cs (95%).
    
    465 translated messages, 24 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 12a66bf73551a40b5fba420e9f523977e4c9112a
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:51 2022 +0100

    I18n: Update translation ca (94%).
    
    464 translated messages, 25 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 6996d10c9f9e5fc442bf37702bc5369b627de7e5
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:51 2022 +0100

    I18n: Update translation bn (60%).
    
    297 translated messages, 192 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 82d7c4c1f71fe12e4d8cd077605c508727017bab
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:51 2022 +0100

    I18n: Update translation bg (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 83123a6a208d46eba40ea2a3932d5e7df266598f
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:51 2022 +0100

    I18n: Update translation be (94%).
    
    464 translated messages, 25 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 95e291136f63252d18a637562c0533378e6614a2
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:51 2022 +0100

    I18n: Update translation ast (77%).
    
    379 translated messages, 110 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit c3046b6254558d161f259f103566cbe3a085720c
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:50 2022 +0100

    I18n: Update translation ar (84%).
    
    414 translated messages, 75 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 9481164f76392286945e4104163c8ae76ce0b51e
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 22 12:53:50 2022 +0100

    I18n: Update translation am (62%).
    
    307 translated messages, 182 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 7dca229573ae38adb5440841d346c57b674730ec
Author: Gaël Bonithon <gael@xfce.org>
Date:   Thu Dec 15 10:08:36 2022 +0100

    Back to development

commit 1e1fdc05ff214c07430581296f975f683978d001
Author: Gaël Bonithon <gael@xfce.org>
Date:   Thu Dec 15 10:08:14 2022 +0100

    Updates for release

commit da9aa65781937631d67d3029c68886b786c94a7f
Author: Anonymous <noreply@xfce.org>
Date:   Tue Dec 13 12:46:46 2022 +0100

    I18n: Update translation lt (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit b4c563ca63546a05fb56171387fcb62b8391eacb
Author: Anonymous <noreply@xfce.org>
Date:   Tue Dec 13 00:51:16 2022 +0100

    I18n: Update translation ru (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit eacc3be6ea13a29a9ab5229518c338302495d3a1
Author: Anonymous <noreply@xfce.org>
Date:   Wed Dec 7 00:45:48 2022 +0100

    I18n: Update translation ru (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 52536398df29fed71af382c50a3f899427041068
Author: Anonymous <noreply@xfce.org>
Date:   Tue Dec 6 12:46:37 2022 +0100

    I18n: Update translation ru (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit c77948a4f85e2c644bf9a868d7b1610358695680
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Dec 5 21:16:04 2022 +0100

    build: Bump requirements for Xfce 4.18

commit acd496fc92a6e4b86a979ba48d7fce486ede7fab
Author: Anonymous <noreply@xfce.org>
Date:   Mon Dec 5 12:47:17 2022 +0100

    I18n: Update translation hu (93%).
    
    455 translated messages, 34 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit c270541e0e40dbb8d18e9be0f63d6ec15b688af1
Author: Anonymous <noreply@xfce.org>
Date:   Sat Dec 3 00:46:13 2022 +0100

    I18n: Update translation tr (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 7b38b48db60d6341081e1ddb2a46e3ea943a15cd
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 1 12:46:54 2022 +0100

    I18n: Update translation tr (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit adc1fee0fde6027f01981600bfd7f3e90b5727f7
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Nov 30 16:38:28 2022 +0100

    Back to development

commit 1277005b224fde1b67c96fd943ce09e196b30f7b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Nov 30 16:37:52 2022 +0100

    Updates for release

commit 9a111d919a1e68b0c28a4819cd90be18323007d0
Author: Anonymous <noreply@xfce.org>
Date:   Wed Nov 30 00:51:03 2022 +0100

    I18n: Update translation kk (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit e2f432564b7365dea52ba74b95130bca7aa1b7d0
Author: Anonymous <noreply@xfce.org>
Date:   Tue Nov 29 12:46:44 2022 +0100

    I18n: Update translation pt_BR (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 9392f70f2f4276a5476b0677a136b9505049d269
Author: Anonymous <noreply@xfce.org>
Date:   Sun Nov 27 12:46:41 2022 +0100

    I18n: Update translation el (99%).
    
    488 translated messages, 1 untranslated message.
    
    Transifex (https://explore.transifex.com/xfce/).

commit decc7c32f9c709170b3de5e250cf8a0c27ed5b14
Author: Akbarkhon Variskhanov <akbarkhon.variskhanov@gmail.com>
Date:   Sun Nov 27 09:38:05 2022 +0000

    panel-desktop-handler: Add `OnlyShowIn=XFCE` key (!106)

commit 03f01527a3c7bd8c03ad79788476a99d36b35348
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Nov 22 22:52:40 2022 +0100

    Fix previous commits about menu positioning
    
    Avoid iterating the main loop by hand. This is bad practice that may
    change the order in which things should normally happen and lead to bad
    surprises.
    
    For popup_menu() use g_idle_add() instead. For position_widget(), just
    delete this code since it was broken before and probably never called,
    and put a hint in the doc instead.
    
    Fixes: 7d0976db, 42b6032e

commit 42b6032efc6b030b4124f0faca4e055dcbe66865
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Nov 16 23:52:25 2022 +0100

    libxfce4panel: Fix menu positioning when the panel is hidden
    
    Mainly useful for popup commands, but consistent with position_widget().

commit bc991f4eeca31d2a4072ca21ab102702faf5801e
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Nov 16 23:50:11 2022 +0100

    Revert "Reposition menu for popup commands if necessary"
    
    This reverts commit ed56fbb16eab6611fbbb3f33a6915854889fb1cc.
    
    Fixed directly in xfce_panel_plugin_popup_menu() in the next commit
    instead.

commit 7d0976db9ea1a97b2ef253a18800582506b2fa3d
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Nov 16 23:44:22 2022 +0100

    libxfce4panel: Fix menu widget positioning when the panel is hidden
    
    It is enough to purge the current events once to show the panel, and the
    use of `gdk_window_get_position()` was wrong and in the wrong place.

commit 6d42ee69177771aa0c4e5230f42b9f8c0387609c
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Nov 15 23:26:42 2022 +0100

    libxfce4panel: Strengthen sanity check for emitting "provider-signal"
    
    This covers corner cases, for example when a menu is opened when the
    panel is closed.

commit b715f71649b70dc63ff9ae9f6857cc50b3f5d3cc
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Nov 15 20:40:24 2022 +0100

    libxfce4panel: Make popup_penu() consistent with position_widget()
    
    By popping up menu at widget also when the panel is floating if
    possible.
    
    Related: !80, 7a24ea0c1966ccdd07cd8774811fbafe694f028d

commit 5d86d1071cd0fd6531294ece4f3ba94c6ecc37a5
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Nov 14 12:25:38 2022 +0100

    panel: Remove dead code
    
    Seems to have always been dead code, at least since 2dc06568.

commit 73383455bb3a24ae43dcc46a924bf85cbceccd29
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Nov 14 12:19:12 2022 +0100

    panel: Remove limitation on setting struts in multi-monitor mode
    
    This limitation seems to make sense only for `_NET_WM_STRUT` and not for
    `_NET_WM_STRUT_PARTIAL`, which is the only variant used in the code (the
    code related to `_NET_WM_STRUT` is dead code removed in the next
    commit).
    
    Fixes: #661

commit 357d87c0e321049cae53afd1c452668dd00d8851
Author: Akbarkhon Variskhanov <akbarkhon.variskhanov@gmail.com>
Date:   Mon Oct 17 21:13:47 2022 +0500

    Define and use macros for Xfconf properties
    
    MR: !104

commit 658fcf7483c874d8a79929b7dcc63706134f162c
Author: Akbarkhon Variskhanov <akbarkhon.variskhanov@gmail.com>
Date:   Fri Nov 11 20:27:19 2022 +0500

    panel: Do not call `g_snprintf()` a second time
    
    Note that this also removes a typo in the property name so that the
    plugin is now removed from the channel when it was not before.
    
    MR: !104

commit a44086d70948d47d2b9d9ea6903012a3bb98f192
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Nov 11 16:16:51 2022 +0100

    clock: Do not include `private.h` in headers

commit 2d9452e7cfe1b71704d0aeeeed4e56e90938dc17
Author: Anonymous <noreply@xfce.org>
Date:   Thu Nov 10 12:47:02 2022 +0100

    I18n: Update translation ko (94%).
    
    464 translated messages, 25 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 44b4b03aaa86ceadc32790ae7931bd54281bbe9f
Author: Gaël Bonithon <gael@xfce.org>
Date:   Thu Nov 3 09:42:32 2022 +0100

    launcher: Fix tooltip icon invalidation on boutton update
    
    Fixes: 23be07d2fb08fab4e8981bc2998e2ffe09fe609b

commit d75ec9d49f4f88f4808d9b1cf36963c10da1b3ce
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Nov 1 09:18:39 2022 +0100

    tasklist: Take window scaling into account for dnd

commit 28fd738fb8e59b1bb418d20bd0a75c78d0ace9ed
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Oct 31 16:52:46 2022 +0100

    Back to development

commit 97962e5c089d75d1adbd76479d37feec170003d3
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Oct 31 16:51:59 2022 +0100

    Updates for release

commit 0039206e93807616e5fe1988b9af887f5f62f606
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Oct 31 10:30:37 2022 +0100

    systray: cleanup: Fix misleading variable name

commit e519b3858c2b47b0c1abea26c598dfc30b44ee03
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Oct 31 10:25:12 2022 +0100

    systray: cleanup: Remove dead code

commit 379b015a2c693719fd1df0cf9f8e4e41944fc974
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Oct 30 21:01:03 2022 +0100

    windowmenu: Take window scaling into account for icons
    
    This just allows the icons not to be blurred. It doesn't change the
    management of their size which is still to be improved, within the
    limits of what Libwnck allows.

commit 4f6e403144a6cfa5ea13e3bc5ef092f07ca42098
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Oct 30 20:43:04 2022 +0100

    tasklist: Take window scaling into account for icons
    
    This just allows the icons not to be blurred. It doesn't change the
    management of their size which is still to be improved, within the
    limits of what Libwnck allows.

commit 84b7be260a542fdfb477b060f41e98abf143bc66
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Oct 30 20:19:57 2022 +0100

    systray: Take window scaling into account for status notifiers

commit 0a732bdc8fddbe1bec37e6baa00df82dcb1ed435
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Oct 30 19:51:09 2022 +0100

    libxfce4panel: Add window scaling to xfce_panel_set_image_from_source()
    
    Related: !83

commit f8938fe9d3c329d7803009e7896a91b3dee0ba39
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Oct 30 18:08:42 2022 +0100

    launcher: Take window scaling into account for icons from files

commit 206215bebb3a81b54b53f92bbb9e63b9428e2367
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Oct 30 16:56:00 2022 +0100

    launcher: Rebuild the menu when the panel size changes

commit 7034541118e762dd9796cabb584f09ef7b835328
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Oct 30 16:39:55 2022 +0100

    launcher: Do not overwrite button icon cache with menu item icons
    
    An old bug, which can cause the button to have the icon of one of the
    menu items when invalidated (e.g. when changing the panel size).

commit 26d17dd187fc801223205dbd016f97200b70da36
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Oct 29 23:13:56 2022 +0200

    clock: Decrease verbosity

commit 23be07d2fb08fab4e8981bc2998e2ffe09fe609b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Oct 29 22:45:09 2022 +0200

    launcher: Fix tooltip icon management
    
    The whole thing needed a refactoring, to treat in the same way theme
    icons and file icons, button icon and menu item icons, and to take into
    account window scaling.

commit 91fb2c983485bc58e61f25240f74a88928105e4e
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Oct 28 19:00:54 2022 +0200

    panel: Remove duplicated PanelWindow:scale-factor property
    
    For some reason I completely missed GtkWidget:scale-factor when doing
    329fbf9f5523d7f768a44b3c1dd4e61b0091a6ab.
    
    Related: !71

commit 59888ec93108e5842aee5e4b594185a9053a8f37
Author: Anonymous <noreply@xfce.org>
Date:   Thu Oct 27 00:46:18 2022 +0200

    I18n: Update translation oc (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 1de71f112d7f2ec47a4c3f323e09dc38de7880e8
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Oct 25 18:34:55 2022 +0200

    libxfce4panel: Fix a memory leak

commit a660921a71c75c9826697f2b1e9672f837e0cab9
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Oct 25 18:30:34 2022 +0200

    panel: Chain up to parent in constructed()

commit c59c66c5c4f2804a52fcbf28aaa97b353eb08caa
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Oct 25 18:26:19 2022 +0200

    tasklist: Add missing sanity check

commit 668e8eb436d72bcbe9d7829ac13a14e7ae62e249
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Oct 25 18:23:41 2022 +0200

    panel: Add missing sanity check

commit 921a2fa49d57ec342c9297d00e1db1f1e3b73342
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Oct 25 18:21:06 2022 +0200

    panel: Fix test likeliness

commit b211448e6b3b668bf9b80804c4ec278575eb9660
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Oct 25 18:15:19 2022 +0200

    panel: Remove some duplicate build flags

commit a0392e0f01e227e08b02b32d878261d87ea9feb3
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Oct 25 18:10:58 2022 +0200

    docs: Add libxfce4panel first
    
    This can mislead the build otherwise, by linking against an installed
    libxfce4panel instead of the one being built.

commit 5517aee6e5fce5be1c78139c154ed6a44dd665a7
Author: Erkki Moorits <erkki.moorits@mail.ee>
Date:   Mon Oct 24 11:18:48 2022 +0300

    clock: Filter out 'posix' and 'right' directories.

commit 2ab5dc29a7a2e4bffcc52bb93643f74d2f55da9d
Author: Erkki Moorits <erkki.moorits@mail.ee>
Date:   Fri Oct 21 12:07:21 2022 +0300

    clock: Improved time zone matching.
    
    Replaced zone info matching function, old matching function search
    match only from the begging of the string, new one can find match
    in the middle of the string.

commit cc6a9671176d1ee60e119382051188c00b7f5081
Author: Erkki Moorits <erkki.moorits@mail.ee>
Date:   Fri Oct 21 12:00:38 2022 +0300

    clock: Fixed zone info directory. Fixes #646

commit becb76a837de61053e26c3938ac210ea3a9dd797
Author: Anonymous <noreply@xfce.org>
Date:   Thu Oct 20 00:46:34 2022 +0200

    I18n: Update translation kk (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit d5d21c9fa3601bf5f23f87df63bbd5c4cf517b81
Author: Anonymous <noreply@xfce.org>
Date:   Mon Oct 17 00:46:19 2022 +0200

    I18n: Update translation en_GB (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 4e1a3d3b1d6a60b562a229108048b25d3299e20d
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Oct 12 06:27:49 2022 +0200

    systray: Properly disconnect signal handler
    
    Another fix to beef2eed after 3f68a730.

commit 3c778082b01d8b977825d618d2358eaa5299cf6c
Author: Anonymous <noreply@xfce.org>
Date:   Mon Oct 10 09:43:37 2022 +0200

    I18n: Update translation uk (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit b76c50c8d2622533c1f09f5ad77dccb8151618a5
Author: Anonymous <noreply@xfce.org>
Date:   Mon Oct 10 09:43:37 2022 +0200

    I18n: Update translation sl (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 47d5c8296f1ccec1939521b47d621c3445ad1b22
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Oct 9 20:07:36 2022 +0200

    Fix previous commit

commit ebdc5412f04c8cfa75b00b1af7e9b1692c6ef6c8
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Oct 9 16:45:18 2022 +0200

    tasklist: Properly restore button state on GtkMenu::selection-done

commit 0ef59edae926448f1da244dda5396290a071c617
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Oct 8 16:05:50 2022 +0200

    tasklist: Browse a copy of the window list if it is subject to change
    
    Probably the real fix for #594, instead of delaying more or less things
    like in dd202448 and 6faf1e36.

commit 3ee105d8d645a43b1e8222aeb802e8e4e5f7fd4e
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Oct 8 15:49:49 2022 +0200

    Revert "tasklist: Delay sorting if window list is in use"
    
    This reverts commit dd202448e7d919c097f3845b2c1409ba87a4be24.

commit 159ee54296e6a5728c66f67de8db715c70aa558f
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Oct 8 15:49:16 2022 +0200

    Revert "tasklist: Delay sorting if window list is in use (V2)"
    
    This reverts commit 6faf1e36293d0851537330de3e2d7c6df78fcf6e.

commit 6faf1e36293d0851537330de3e2d7c6df78fcf6e
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Oct 8 07:31:49 2022 +0200

    tasklist: Delay sorting if window list is in use (V2)
    
    Completes dd202448 by delaying the whole function of updating the
    visibility of group buttons, as 69fae345 has added changes to the window
    list and thus reactivated bug #594.

commit e1ca76c71d79e2ec297c23d24a18cfe027cd2819
Author: Anonymous <noreply@xfce.org>
Date:   Tue Oct 4 14:11:00 2022 +0200

    I18n: Update translation  (99%).
    
    486 translated messages, 3 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit ec0712793b88b3df3f4e6614bfed7b2490494434
Author: Anonymous <noreply@xfce.org>
Date:   Tue Oct 4 14:11:00 2022 +0200

    I18n: Update translation  (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 530c34de3cec011e6cf42c34491f965ab6cdafd6
Author: Anonymous <noreply@xfce.org>
Date:   Tue Oct 4 14:11:00 2022 +0200

    I18n: Update translation  (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 2b63ee2bda868807d5d5dc4778c589b1f412ed69
Author: Anonymous <noreply@xfce.org>
Date:   Tue Oct 4 14:11:00 2022 +0200

    I18n: Update translation  (99%).
    
    488 translated messages, 1 untranslated message.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 3deca807b43c476ee90bfe831eb220547f595b5f
Author: Anonymous <noreply@xfce.org>
Date:   Tue Oct 4 14:11:00 2022 +0200

    I18n: Update translation  (100%).
    
    489 translated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 37ec35b6b287f6f4412287f283aac63cf85efe1d
Author: Anonymous <noreply@xfce.org>
Date:   Tue Oct 4 14:11:00 2022 +0200

    I18n: Update translation  (98%).
    
    482 translated messages, 7 untranslated messages.
    
    Transifex (https://explore.transifex.com/xfce/).

commit 7cc9b17ddcf41d758080d30a23b57a4cd174247c
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Sep 30 20:26:40 2022 +0200

    clock: Improve backward compatibility
    
    Removes all the old code related to the no longer used "digital-format"
    property, and queries Xfconf instead. If none of the new properties are
    set and the old one exists, we use it as the time format, with a layout
    that reproduces as much as possible the old rendering.
    
    Helps: #641
    Related: !101

commit 17e97e204fc0d1ac581afae481a764515b54931a
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Sep 30 17:43:30 2022 +0200

    clock: Prevent visual glitch when showing calendar window
    
    Window pre-positioning must be done early enough to avoid visual glitch.
    
    Fixes: #466

commit 973d36eda8dd106790689eb843a4829418cb90cb
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Sep 30 17:36:28 2022 +0200

    Revert "clock: Prevent visual glitch when showing calendar window"
    
    This reverts commit 5c4f90c9, which breaks calendar reset. #466 is fixed
    again in next commit.
    
    Fixes: https://gitlab.xfce.org/xfce/xfce4-panel/-/issues/641#note_55615

commit dcb0046bce24cd8703aa21f7f4cbe742c3e32e20
Author: Anonymous <noreply@xfce.org>
Date:   Sun Sep 25 12:48:59 2022 +0200

    I18n: Update translation id (99%).
    
    485 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 27d101be90bf4a21c496727524b645398b9aaf3c
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Sep 25 11:06:52 2022 +0200

    Ignore Libwnck 43.0 deprecations
    
    Using WnckHandle would imply changes impacting the code structure (at
    least for the panel), and it is not obvious that this will ever be
    necessary at this stage.

commit f4dfc4c1cc8b7bc8ad4c587f5744a15ff0d6ba68
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 24 00:47:29 2022 +0200

    I18n: Update translation ru (100%).
    
    489 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dec9fd71f0029df61863f86747c3631861fe811e
Author: Anonymous <noreply@xfce.org>
Date:   Fri Sep 23 12:48:23 2022 +0200

    I18n: Update translation ru (99%).
    
    488 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fa11936f893ce89b92e247654f0b029760d05c5d
Author: Anonymous <noreply@xfce.org>
Date:   Fri Sep 23 12:48:23 2022 +0200

    I18n: Update translation de (100%).
    
    489 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1a202bf2961db5c2481fbf9fe851aa15ed13dfc3
Author: Anonymous <noreply@xfce.org>
Date:   Fri Sep 23 00:47:19 2022 +0200

    I18n: Update translation pt_BR (98%).
    
    483 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3fc88c06ae1dc6c1e7c187022cac999e150df4fb
Author: Anonymous <noreply@xfce.org>
Date:   Fri Sep 23 00:47:19 2022 +0200

    I18n: Update translation ja (100%).
    
    489 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1369d3bd070f691c99e4dc091805926ed459548f
Author: Anonymous <noreply@xfce.org>
Date:   Fri Sep 23 00:47:18 2022 +0200

    I18n: Update translation es (100%).
    
    489 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5fca1b0aca5dcbb9f2c3a778445a89d8e7434eda
Author: Anonymous <noreply@xfce.org>
Date:   Thu Sep 22 12:48:25 2022 +0200

    I18n: Update translation zh_CN (100%).
    
    489 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 30bdc5205c9637424993a1fdd77c0937d8818a77
Author: Anonymous <noreply@xfce.org>
Date:   Thu Sep 22 12:48:25 2022 +0200

    I18n: Update translation lt (100%).
    
    489 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 67ce372a4e76c32b20cc63c3d13f6b74da2217d0
Author: Anonymous <noreply@xfce.org>
Date:   Thu Sep 22 00:47:34 2022 +0200

    I18n: Update translation tr (100%).
    
    489 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b4d38d20f6cf53967f79c90f506f0e5832429de4
Author: Anonymous <noreply@xfce.org>
Date:   Thu Sep 22 00:47:33 2022 +0200

    I18n: Update translation pt (100%).
    
    489 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 742df0b1f74bacb6d94867c5013348124934f4e3
Author: Anonymous <noreply@xfce.org>
Date:   Thu Sep 22 00:47:33 2022 +0200

    I18n: Update translation lt (99%).
    
    488 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1fdc1926c3b06436d52b6cc069098302754e52da
Author: Anonymous <noreply@xfce.org>
Date:   Wed Sep 21 12:48:56 2022 +0200

    I18n: Update translation bg (100%).
    
    489 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6da33516a099d80483c39c96c6d0abe8a6658890
Author: Anonymous <noreply@xfce.org>
Date:   Wed Sep 21 00:47:37 2022 +0200

    I18n: Update translation pt_BR (98%).
    
    483 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9c27e60d25cbe9216412f9af1d1a3818db725b9a
Author: Anonymous <noreply@xfce.org>
Date:   Wed Sep 21 00:47:37 2022 +0200

    I18n: Update translation ja (99%).
    
    488 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 89a3b6dfbf44e43bf1be3ffde81106d18f8ac302
Author: Anonymous <noreply@xfce.org>
Date:   Wed Sep 21 00:47:37 2022 +0200

    I18n: Update translation it (100%).
    
    489 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b7dabd2cafff844a5bb241e4d88fff70cc5aae21
Author: Anonymous <noreply@xfce.org>
Date:   Wed Sep 21 00:47:36 2022 +0200

    I18n: Update translation fr (100%).
    
    489 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3461797e2caa7971063d1c4815fe4d41b3b14dd2
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Sep 20 20:10:02 2022 +0200

    tasklist: Update button visibility when sent to another workspace
    
    Regression introduced in d3cfa274. Contrary to what is said there, the
    call to `xfce_tasklist_active_workspace_changed()` is not useless, since
    a window can change workspace without the current workspace changing.

commit 3bf950653c26f4ded627a34607c5b780b24e6987
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Sep 20 18:54:55 2022 +0200

    tasklist: Properly update fallback icon (Fixes #636)

commit ace1e386887a652bd62944741c76bb51f5719131
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:48 2022 +0200

    I18n: Update translation zh_TW (100%).
    
    489 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a6b5cee4f7203ff7b55a2a5212bf348b17f0cb6a
Author: Ivan <personal@live.hk>
Date:   Tue Sep 20 12:48:48 2022 +0200

    I18n: Update translation zh_HK (85%).
    
    419 translated messages, 70 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 657063894e6fb6049b82c1ce8eaf821d0e36104b
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:48 2022 +0200

    I18n: Update translation zh_CN (97%).
    
    478 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 96546aa5260aa064d258356d9d447bcbda39b8ec
Author: Duy Truong Nguyen <truongap.ars@gmail.com>
Date:   Tue Sep 20 12:48:48 2022 +0200

    I18n: Update translation vi (63%).
    
    312 translated messages, 177 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 335845ebfc4d5e518ef05bc3bc0195406c971f53
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:48 2022 +0200

    I18n: Update translation uk (96%).
    
    471 translated messages, 18 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8677a569ee51a6370e1e5c55b126bc42fd36f2ab
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Tue Sep 20 12:48:48 2022 +0200

    I18n: Update translation ug (78%).
    
    383 translated messages, 106 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8317a95c2f3120a67e2b67fc94980c597b637a0c
Author: Sabri Ünal <libreajans@gmail.com>
Date:   Tue Sep 20 12:48:47 2022 +0200

    I18n: Update translation tr (97%).
    
    477 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 280a068d13135f27cae7f61494fbf9f4db82652c
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:47 2022 +0200

    I18n: Update translation th (94%).
    
    464 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 243e7f84ea34acd07746dd6a99b9c13f1f3da722
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:47 2022 +0200

    I18n: Update translation sv (97%).
    
    476 translated messages, 13 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4f4316311093bb5a5d5c3152b78b551f2012370a
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:47 2022 +0200

    I18n: Update translation sr (97%).
    
    478 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3b8773a3b101597ac552d6a79ad3729216c4805c
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:47 2022 +0200

    I18n: Update translation sq (99%).
    
    487 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f3be4c1a26430b2b4a4a8ed4e961d6206872ca3c
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:47 2022 +0200

    I18n: Update translation sl (95%).
    
    467 translated messages, 22 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 918d9d55036c3c7a0f5a5403546a24e21e432f3c
Author: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Date:   Tue Sep 20 12:48:47 2022 +0200

    I18n: Update translation sk (94%).
    
    464 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 46930f94140e4565a0a6f5d3f7ac73c357be55fc
Author: callkalpa <callkalpa@gmail.com>
Date:   Tue Sep 20 12:48:47 2022 +0200

    I18n: Update translation si (57%).
    
    280 translated messages, 209 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 45c484199f743b6550eab3516d5fb678498152d2
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:46 2022 +0200

    I18n: Update translation ru (97%).
    
    478 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 306915a891b2dd42f9cad476d9d88bfd75674378
Author: Mișu Moldovan <dumol@xfce.org>
Date:   Tue Sep 20 12:48:46 2022 +0200

    I18n: Update translation ro (79%).
    
    389 translated messages, 100 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 91dda21c3d76da6b52b93cfd8065de6ba6335b55
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:46 2022 +0200

    I18n: Update translation pt (97%).
    
    478 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a7071eac82da92651f8bc1afaeba8662ecc17ddb
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:46 2022 +0200

    I18n: Update translation pt_BR (96%).
    
    472 translated messages, 17 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 38ef3fc9db1304523db049acfdf52bc65f333787
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:46 2022 +0200

    I18n: Update translation pl (100%).
    
    489 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3b01de49890707016efff8f568eedcace539d709
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:46 2022 +0200

    I18n: Update translation pa (57%).
    
    280 translated messages, 209 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c8b123737e0333057066c28a4b653fa0267f25b6
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:46 2022 +0200

    I18n: Update translation oc (96%).
    
    472 translated messages, 17 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d1a665f22c027f9aa1f476b4d742def66569d636
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:46 2022 +0200

    I18n: Update translation nn (88%).
    
    431 translated messages, 58 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1a2639bf88756ca323d000c63c40f37b395f7db5
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:45 2022 +0200

    I18n: Update translation nl (100%).
    
    489 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 47d6598634b6054864f3723ce4628b26a3bda86d
Author: heskjestad <cato@heskjestad.xyz>
Date:   Tue Sep 20 12:48:45 2022 +0200

    I18n: Update translation nb (97%).
    
    478 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a175fe9df93cecdd7acab43df283124030b1c3c5
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:45 2022 +0200

    I18n: Update translation ms (95%).
    
    466 translated messages, 23 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ac96213def5f7dcb9aa9e98a80866149039b4e72
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:45 2022 +0200

    I18n: Update translation ko (89%).
    
    439 translated messages, 50 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5ae9265325ac2f30cb33ccd3eed07cf8378d6b63
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:45 2022 +0200

    I18n: Update translation kk (94%).
    
    464 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bb6c0dcd2ba63641a9513ef2a7f63d4b1632fefd
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:45 2022 +0200

    I18n: Update translation ka (62%).
    
    308 translated messages, 181 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c6dba0e0882052927244ed79b627efd046833005
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:45 2022 +0200

    I18n: Update translation it (98%).
    
    480 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e9ec3784a977cf6d0bf5190e9a732e0135902dd4
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:45 2022 +0200

    I18n: Update translation is (83%).
    
    409 translated messages, 80 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f36a02d71485b46618bb6b0e87e2a3f790d4b7e5
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:44 2022 +0200

    I18n: Update translation ie (91%).
    
    448 translated messages, 41 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9f15e92c40eb81ba076b1de4807e8ed292b6e915
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:44 2022 +0200

    I18n: Update translation id (96%).
    
    474 translated messages, 15 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit aefaa84cfd903822e69bed7f53d56f24c269315c
Author: Arman Harutyunyan <arman.harut468@gmail.com>
Date:   Tue Sep 20 12:48:44 2022 +0200

    I18n: Update translation hye (85%).
    
    418 translated messages, 71 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b98341da8588c57e8fb3ee01fe21a9a223500dad
Author: Samvel Harutyunyan <samvel@ehayq.am>
Date:   Tue Sep 20 12:48:44 2022 +0200

    I18n: Update translation hy_AM (89%).
    
    436 translated messages, 53 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit af56826e9c809a324645fedf1882fd1610793300
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:44 2022 +0200

    I18n: Update translation hu (89%).
    
    437 translated messages, 52 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 84bccd118a903ac1ef3d2947db9393d8a02989b9
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:44 2022 +0200

    I18n: Update translation hr (89%).
    
    440 translated messages, 49 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8c80acb4b074a2725e239ee15d9512c66e030e37
Author: Elishai Eliyahu <elishai@mailfence.com>
Date:   Tue Sep 20 12:48:44 2022 +0200

    I18n: Update translation he (97%).
    
    478 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cfbbf1f365eb410e58099cbb90254507692e99d2
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:43 2022 +0200

    I18n: Update translation gl (94%).
    
    464 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c4d2ebd9880d8144289230959301a8a1b3b5ddbb
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:43 2022 +0200

    I18n: Update translation fr (97%).
    
    478 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d2ec0d5bb35c16cdd14a5f2a0edeedf87c2bf9bf
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:43 2022 +0200

    I18n: Update translation fi (89%).
    
    439 translated messages, 50 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 72902bacc017c7d251ea643c6e0c56182011df62
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:43 2022 +0200

    I18n: Update translation eu (96%).
    
    472 translated messages, 17 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3562e77257a16fa60418348ff3bec608f0ef619a
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:43 2022 +0200

    I18n: Update translation et (96%).
    
    473 translated messages, 16 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 40b8ce641499599ec080034010eeee2f79aa04c1
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:43 2022 +0200

    I18n: Update translation en_GB (95%).
    
    469 translated messages, 20 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 411dc5f9ac8cada2a814b0dff713e5749552e7aa
Author: Steven Xu <stevenxxiu@gmail.com>
Date:   Tue Sep 20 12:48:43 2022 +0200

    I18n: Update translation en_AU (83%).
    
    409 translated messages, 80 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 52b2d16c611d504c240d8dc77d00ba5723899817
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:43 2022 +0200

    I18n: Update translation el (95%).
    
    467 translated messages, 22 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7ccb76ecb870ad35e30aa376ccc748a2237e7638
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:42 2022 +0200

    I18n: Update translation da (95%).
    
    465 translated messages, 24 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e19150b6cf8c01f2817a74faa60aaa7428b45690
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:42 2022 +0200

    I18n: Update translation cs (95%).
    
    465 translated messages, 24 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4eb53ea746ee45c55c2bbcc834f639e664e42bee
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:42 2022 +0200

    I18n: Update translation ca (94%).
    
    464 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 01ca1f23d4573845b0b782a6996c9b2d188d5d9b
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:42 2022 +0200

    I18n: Update translation bn (60%).
    
    297 translated messages, 192 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 040cc02a607d390efa96846f3c03985a40929627
Author: nab <nab@mail.by>
Date:   Tue Sep 20 12:48:42 2022 +0200

    I18n: Update translation be (94%).
    
    464 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 29dcbcfe906f0e6ea450f7a51f61476ed9b4bf31
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:42 2022 +0200

    I18n: Update translation ast (77%).
    
    377 translated messages, 112 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 880bcb7929d9213afadf3fc932f0f1c54acf6c3e
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:42 2022 +0200

    I18n: Update translation ar (84%).
    
    414 translated messages, 75 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a537eebcab19de5288bdb117cba1d083223a181e
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 12:48:42 2022 +0200

    I18n: Update translation am (62%).
    
    307 translated messages, 182 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4e436fb05152dfc690778095453d3321287c036b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Sep 20 12:15:24 2022 +0200

    clock: Remove %r from default formats
    
    It causes a warning in some locales because `g_date_time_format()`,
    which discourages its use, fails to extract a format. It is also more or
    less duplicating other formats already present.

commit e14fd639e2ed57afd3ffbfeedf63552b5a1a25fc
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Sep 20 12:08:30 2022 +0200

    clock: digital: Better centering

commit b25a62a4269ebccd84ff03224cd501a07ccb3c1f
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Sep 20 09:22:59 2022 +0200

    systray: Use theme colors for symbolic icons
    
    This fixes a regression introduced in 40010a6f, as
    `gtk_icon_theme_load_icon()` does not directly substitute
    `gtk_image_set_from_icon_name()` for symbolic icons.
    
    Fixes: #635
    Related: 40010a6f51c7394171c5df328c7fb1f42f4a6501

commit 70c5c8392759bf231428fa0f512f3f1bab0a926c
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 00:47:46 2022 +0200

    I18n: Update translation sq (99%).
    
    477 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5440e364ddaebc7d12caf24d88d7def3b3aaaa1a
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 00:47:45 2022 +0200

    I18n: Update translation nl (100%).
    
    479 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3799cc98e98a742cd4f646bf4b9f0d088c3f58f5
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 00:47:45 2022 +0200

    I18n: Update translation lt (100%).
    
    479 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e2b90d0ab62d492657ae2e3c68d5fce906705cb1
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 00:47:45 2022 +0200

    I18n: Update translation ja (100%).
    
    479 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 72f60f0b8c53db6d51679c4a069ddd7d965ded75
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 00:47:45 2022 +0200

    I18n: Update translation es (100%).
    
    479 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6fab8329038766056cb24c8c2b2d85054d271df9
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 00:47:45 2022 +0200

    I18n: Update translation de (100%).
    
    479 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2e4f5b0906155253ad8f48e6ceb20d96b8af69ac
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 20 00:47:45 2022 +0200

    I18n: Update translation bg (100%).
    
    479 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d2baedecc20e439a1e33ac98ed367fd87882b224
Author: Yogesh Kaushik <masterlukeskywalker02@gmail.com>
Date:   Thu Sep 15 23:46:33 2022 +0530

    clock: Implemented layouts for date and time label in digital clock
    
    Currently we have the "digital-layout" property which stores the
    layout selected by the user. Now the visibility of "date_label"
    and "time_label" can be changed as per the layout selected by the
    user.

commit 137647d14f8a21fc8392e1a20772480086efa1d9
Author: Yogesh Kaushik <masterlukeskywalker02@gmail.com>
Date:   Thu Sep 15 23:42:07 2022 +0530

    clock: Implemented fonts for date and time label in digital clock
    
    The font of date and time label can now be changed by changing
    appropriate properties of the digital clock.

commit c5834a959e7c29d4d50318b51843898052e56deb
Author: Yogesh Kaushik <masterlukeskywalker02@gmail.com>
Date:   Thu Sep 15 23:25:20 2022 +0530

    clock: Added date and time label to digital clock
    
    Currently, the digital clock has a class of GtkLabel. So it can only
    have one label and not two different labels for date and time. Now
    the digital clock class is modified to GtkBox and it has two GtkLabel
    "date_label" and "time_label" to show date and time respectively.

commit 8b08cf64a0a3e3620df29c611f5d708f65739a6d
Author: Yogesh Kaushik <masterlukeskywalker02@gmail.com>
Date:   Thu Sep 15 19:58:25 2022 +0530

    clock: Added four new properties to digital clock
    
    Four new properties: "digital-time-format", "digital-date-format",
    "digital-time-font" and "digital-date-font" are added to digital
    clock. These are used to store the font and format for date and
    time label. These properties are not yet attached to the properties
    dialog box.

commit 1d7f604c3e40ae400e2802b48af156956c45021e
Author: Yogesh Kaushik <masterlukeskywalker02@gmail.com>
Date:   Mon Sep 19 01:01:03 2022 +0530

    clock: Added layout property to digital clock
    
    A new property "layout" is added to digital clock which stores the
    layout selected by the user in properties dialog box. Accordingly
    the options for date label and time label are made visible or not.

commit b3efa7fd82f88b77fc091e8aec384b117750e075
Author: Yogesh Kaushik <masterlukeskywalker02@gmail.com>
Date:   Mon Sep 19 00:44:57 2022 +0530

    clock: Added layouts to digital clock in prefs dialog box
    
    Now the user can select from new layouts for digital clock
    "Date, then Time", "Time, then Date", "Date only" and
    "Time only". The user can also select font for date and
    time label. And the option to select format is also added.

commit 0566be4294dc1ba61612b6db5dfcf1ec2d4f7f83
Author: Anonymous <noreply@xfce.org>
Date:   Mon Sep 19 12:48:59 2022 +0200

    I18n: Update translation zh_TW (100%).
    
    479 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d17add02d068ae2ac3b2817662852e4cfeb0f810
Author: Anonymous <noreply@xfce.org>
Date:   Mon Sep 19 12:48:59 2022 +0200

    I18n: Update translation pt_BR (98%).
    
    471 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c926ef630d9a75a4f99ae03cd8d7c5c6f0889db4
Author: Anonymous <noreply@xfce.org>
Date:   Mon Sep 19 12:48:58 2022 +0200

    I18n: Update translation pl (100%).
    
    479 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7ed5390875a05495e529f5cb6433b4c480d45ac6
Author: Anonymous <noreply@xfce.org>
Date:   Mon Sep 19 12:48:58 2022 +0200

    I18n: Update translation it (100%).
    
    479 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 84a04415fc8e1c3269d96e0ba2c7932547e7e865
Author: Andre Miranda <andreldm@xfce.org>
Date:   Sun Sep 18 13:14:45 2022 +0200

    Add title to message dialogs

commit 5890da95f1e3486b1d2fbfaa6cc22a5d5587af8b
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 17 12:48:27 2022 +0200

    I18n: Update translation sr (100%).
    
    477 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3f68a7309b0fc776f47bf0ae37115753b3e86967
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Sep 16 10:54:47 2022 +0200

    systray: Fix previous commit
    
    The signal handler is supposed to receive the plugin as the only
    parameter.
    
    Fixes: beef2eed1389cbd67be548201c6e5c776e1da592

commit c20e5da6cede617703c8092562dcc2c13946c098
Author: Sabri Ünal <libreajans@gmail.com>
Date:   Wed Sep 14 00:47:35 2022 +0200

    I18n: Update translation tr (99%).
    
    476 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 57d2e6e7c5dafb157c58283acd49d8330c27c594
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Sep 11 12:07:26 2022 +0200

    docs: Do not track `libxfce4panel-overrides.txt`

commit 511d3c2c5a3455e62ec7e2243b63e9fb5e87b0f1
Author: Alexander Schwinn <alexxcons@xfce.org>
Date:   Sat Sep 10 22:55:22 2022 +0000

    Bump GObject Introspection minim version to 1.66

commit 3a311235039d3a77dfdadf2ec383ec164df91cf2
Author: Elishai Eliyahu <elishai@mailfence.com>
Date:   Sun Sep 11 00:47:36 2022 +0200

    I18n: Update translation he (100%).
    
    477 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit beef2eed1389cbd67be548201c6e5c776e1da592
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Sep 10 18:20:16 2022 +0200

    systray: Replace deprecated "GtkWidget::composited-changed" signal

commit ff06ad8e691603368e74feb11669a259550ec8bb
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Sep 10 10:03:51 2022 +0200

    panel: Chain-up to parent in style_updated() (Fixes #490)

commit f61d52cce7b1e9378a50608cf7c1aa3d021d4c30
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Sep 10 09:46:32 2022 +0200

    Revert "panel: Save and restore style context around marching ants"
    
    This reverts commit f3136aa6280ed7f22b74ae93cde213c44ab47a72.
    The proper fix is actually to chain-up to parent in style_updated(),
    which is done in next commit.

commit 3798f505d2b8044440018f758fe0a679e3cb1a81
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Sep 10 09:41:12 2022 +0200

    Replace deprecated "style-set" signal with "style-updated"

commit e9d6193cdffa489e0066da6e0426800e9c0e5696
Author: heskjestad <cato@heskjestad.xyz>
Date:   Sat Sep 10 00:47:19 2022 +0200

    I18n: Update translation nb (100%).
    
    477 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fa8420cce0556d0aaf2090ad572821c3705efd92
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 10 00:47:19 2022 +0200

    I18n: Update translation id (99%).
    
    473 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 57d153a5f63e48138aabed280c326a7af8056ac4
Author: Anonymous <noreply@xfce.org>
Date:   Thu Sep 8 00:47:20 2022 +0200

    I18n: Update translation sq (99%).
    
    475 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4d0fef14d5e3aab487bee6d1c1323395d64e37ee
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 6 12:48:34 2022 +0200

    I18n: Update translation zh_CN (100%).
    
    477 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 41dacbfb9f94a02b75028e366a0773fe0ccb8663
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 6 12:48:33 2022 +0200

    I18n: Update translation ja (100%).
    
    477 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2c26875eeca987aae449fa019f00976b82b1c46a
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 6 00:47:21 2022 +0200

    I18n: Update translation pt (100%).
    
    477 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c70b20427f3fc057718a10d72717388c0a0e4ac3
Author: Anonymous <noreply@xfce.org>
Date:   Mon Sep 5 12:48:11 2022 +0200

    I18n: Update translation zh_TW (100%).
    
    477 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 678e545360690ceac707a14ebc22ef2168ee2d12
Author: Anonymous <noreply@xfce.org>
Date:   Mon Sep 5 00:47:24 2022 +0200

    I18n: Update translation sv (99%).
    
    475 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0faaddfe5c6090b121ea4db77580f4bc94c8cbdc
Author: Anonymous <noreply@xfce.org>
Date:   Sun Sep 4 12:48:01 2022 +0200

    I18n: Update translation nl (100%).
    
    477 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a7d844d78df4b045cca9c3d0c1dd11a4f69998a7
Author: Anonymous <noreply@xfce.org>
Date:   Sun Sep 4 12:48:01 2022 +0200

    I18n: Update translation lt (100%).
    
    477 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0337d93855c30844159eba40def555e2a83c2bc0
Author: Anonymous <noreply@xfce.org>
Date:   Sun Sep 4 12:48:01 2022 +0200

    I18n: Update translation es (100%).
    
    477 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5c9c1617586a93e4261a5af424d24d4dab0acfb4
Author: Anonymous <noreply@xfce.org>
Date:   Sun Sep 4 00:47:33 2022 +0200

    I18n: Update translation ru (100%).
    
    477 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c154c2f3ab14a7d0a4cd0d7f404f39ad725ca713
Author: Anonymous <noreply@xfce.org>
Date:   Sun Sep 4 00:47:32 2022 +0200

    I18n: Update translation it (100%).
    
    477 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5c2da8a403cd159f0e9efb6faf1e1bfd233ccd09
Author: Anonymous <noreply@xfce.org>
Date:   Sun Sep 4 00:47:32 2022 +0200

    I18n: Update translation fr (100%).
    
    477 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d15c2f59ce5a5b5657edc99bee9edbc0d7b10e92
Author: Anonymous <noreply@xfce.org>
Date:   Sun Sep 4 00:47:32 2022 +0200

    I18n: Update translation bg (100%).
    
    477 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d0a0c77182455c82d188b91bcaa98a02ea7643f8
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:49 2022 +0200

    I18n: Update translation zh_TW (99%).
    
    475 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a9415a841a889f945235a57414e340e6b6b6d94f
Author: Ivan <personal@live.hk>
Date:   Sat Sep 3 12:48:49 2022 +0200

    I18n: Update translation zh_HK (87%).
    
    419 translated messages, 58 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 98f868082d95cc674f2a84d1b6700a667a4ee00c
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:48 2022 +0200

    I18n: Update translation zh_CN (99%).
    
    475 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c9d0664de872856f143dce7d7a20ab0fb019c03e
Author: Duy Truong Nguyen <truongap.ars@gmail.com>
Date:   Sat Sep 3 12:48:48 2022 +0200

    I18n: Update translation vi (65%).
    
    312 translated messages, 165 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cdc826f781c90faaae33669e6a64eba92119e93c
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:48 2022 +0200

    I18n: Update translation uk (98%).
    
    470 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ef94e182d56acfd442b77842b0ca93333bc3a05a
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Sat Sep 3 12:48:48 2022 +0200

    I18n: Update translation ug (80%).
    
    383 translated messages, 94 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ca9c833f1c2b09f33c67d48a7f27a7b15b880569
Author: Sabri Ünal <libreajans@gmail.com>
Date:   Sat Sep 3 12:48:48 2022 +0200

    I18n: Update translation tr (99%).
    
    475 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a39201a5179137c9d85e6a0c8a4a8f7cb48d5160
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:48 2022 +0200

    I18n: Update translation th (97%).
    
    463 translated messages, 14 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9b7bbefde30dca17d20894759a38a67800f24791
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:48 2022 +0200

    I18n: Update translation sv (99%).
    
    474 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2567dccf8aea3242ccb4c00446845a94cfef61dc
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:48 2022 +0200

    I18n: Update translation sr (99%).
    
    475 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a3f7a74e161f9e1c5baa22e28264a963faeacfb7
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:47 2022 +0200

    I18n: Update translation sq (98%).
    
    469 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9b1d42847e1da9dff0f0dbeabdad5627cb244dd9
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:47 2022 +0200

    I18n: Update translation sl (97%).
    
    467 translated messages, 10 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3c15371c3e5bd4bca959746fd218c8777c4f6f4b
Author: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Date:   Sat Sep 3 12:48:47 2022 +0200

    I18n: Update translation sk (97%).
    
    463 translated messages, 14 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 97e2fdb1b91aa28e5e03c938b60ee51826146ba8
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:47 2022 +0200

    I18n: Update translation ru (99%).
    
    475 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ecea3dfa024e79f201aa40a05cf3dda560a6e23a
Author: Mișu Moldovan <dumol@xfce.org>
Date:   Sat Sep 3 12:48:47 2022 +0200

    I18n: Update translation ro (81%).
    
    389 translated messages, 88 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e779e09cf66cc113a40da29230a97f508aff2b3a
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:47 2022 +0200

    I18n: Update translation pt (99%).
    
    475 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bf894f298cf69cb4425cedaa4aa39b5a63f87d40
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:47 2022 +0200

    I18n: Update translation pt_BR (98%).
    
    471 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit daf5ba3b095084334394b309be6b2112dc57a30a
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:47 2022 +0200

    I18n: Update translation pl (100%).
    
    477 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2ee30140b3213a828a79affc59303cc5e0a9bbb6
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:46 2022 +0200

    I18n: Update translation oc (98%).
    
    472 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 249bb84699bd45a6bc59a212d5a4e157e09decf0
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:46 2022 +0200

    I18n: Update translation nn (90%).
    
    431 translated messages, 46 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0c357a4118812b2a483b2be5ca3aba3c4cf4f619
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:46 2022 +0200

    I18n: Update translation nl (99%).
    
    475 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 054bfe15493bed6a8c75953bcec208162162a75f
Author: heskjestad <cato@heskjestad.xyz>
Date:   Sat Sep 3 12:48:46 2022 +0200

    I18n: Update translation nb (99%).
    
    475 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3b81522e578666c3341b7a5158ac64e729be90c7
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:46 2022 +0200

    I18n: Update translation ms (97%).
    
    465 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b52581f0ce3032714a81bf92208687d1a36ac257
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:46 2022 +0200

    I18n: Update translation lt (99%).
    
    475 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 171f364665131eb1485ffd9e035712a750d33912
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:46 2022 +0200

    I18n: Update translation ko (91%).
    
    438 translated messages, 39 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b8ee7270bbcbc2711c64ea8bd6163e2cef017e50
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:45 2022 +0200

    I18n: Update translation kk (97%).
    
    463 translated messages, 14 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 38b4dd643fe5fa5cfbf73ad5db5b025eb5ff89e1
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:45 2022 +0200

    I18n: Update translation ka (64%).
    
    308 translated messages, 169 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 11f78667cddf921d79e5047e40224d08540b7963
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:45 2022 +0200

    I18n: Update translation ja (99%).
    
    475 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 25f8ff386d798f51935be07f403992a602c4b39e
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:45 2022 +0200

    I18n: Update translation it (99%).
    
    475 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bc1523ad7767b7c6c24070bd68e229ceb49fc9a5
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:45 2022 +0200

    I18n: Update translation is (85%).
    
    408 translated messages, 69 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4e8410c03c952429d1089f355565445a920c9d5d
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:45 2022 +0200

    I18n: Update translation ie (93%).
    
    448 translated messages, 29 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 260b4dc43d44f50f151a058c87ecc5ef8cd214d9
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:45 2022 +0200

    I18n: Update translation id (98%).
    
    468 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 98b9977b56a176126a55e4b9921fc1d64e4833d2
Author: Arman Harutyunyan <arman.harut468@gmail.com>
Date:   Sat Sep 3 12:48:45 2022 +0200

    I18n: Update translation hye (87%).
    
    418 translated messages, 59 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6f868df629fd9bad036603708932d8b4f6957a57
Author: Samvel Harutyunyan <samvel@ehayq.am>
Date:   Sat Sep 3 12:48:44 2022 +0200

    I18n: Update translation hy_AM (91%).
    
    435 translated messages, 42 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ac94a582fd25ebdd560a6e30d02debe1f19ea356
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:44 2022 +0200

    I18n: Update translation hu (91%).
    
    436 translated messages, 41 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3c5a77c6ac63fb7f8b38ce680dbcc90f0807346f
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:44 2022 +0200

    I18n: Update translation hr (92%).
    
    439 translated messages, 38 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7e126d9f7d0d5bf627a1af8f9b1aa6bd374607d3
Author: Elishai Eliyahu <elishai@mailfence.com>
Date:   Sat Sep 3 12:48:44 2022 +0200

    I18n: Update translation he (98%).
    
    471 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 486a79cc522b6c3765a42289c1dd66f1bf165189
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:44 2022 +0200

    I18n: Update translation gl (97%).
    
    463 translated messages, 14 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit db403fe5cb624280c0c74c0c97a0aa4e722c63f6
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:44 2022 +0200

    I18n: Update translation fr (99%).
    
    475 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e53a1b9565919efe96f242c628781a37cbcfeede
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:44 2022 +0200

    I18n: Update translation fi (91%).
    
    438 translated messages, 39 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6b5f7b463d3724ab9e7f9a94973a1f810415c963
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:44 2022 +0200

    I18n: Update translation eu (98%).
    
    471 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d2ebba4049764cb9be0618c93ca11505bb611104
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:43 2022 +0200

    I18n: Update translation et (99%).
    
    473 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 295e094e387a8e595861a6aaa86e0d8998b2c402
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:43 2022 +0200

    I18n: Update translation es (99%).
    
    475 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8157a10d0f1d0ccd84a44bd1d785d54dec247899
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:43 2022 +0200

    I18n: Update translation en_GB (98%).
    
    468 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f24182ade3b4a85eb2d1715817c3a1936f2a3b12
Author: Steven Xu <stevenxxiu@gmail.com>
Date:   Sat Sep 3 12:48:43 2022 +0200

    I18n: Update translation en_AU (85%).
    
    408 translated messages, 69 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3c53307a8a3df5b62d8953518fa970857ac908e6
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:43 2022 +0200

    I18n: Update translation el (97%).
    
    466 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c2167b7b99194f4f8ca4f5e325fbb5bda0f745bd
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:43 2022 +0200

    I18n: Update translation de (100%).
    
    477 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0f6fdf5d03c4e7e35882c6bbd4521f7782153d53
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:43 2022 +0200

    I18n: Update translation da (97%).
    
    464 translated messages, 13 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 75025d998a813ee7050303dcd5a12bc5b6ab4bb3
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:43 2022 +0200

    I18n: Update translation cs (97%).
    
    464 translated messages, 13 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9dc213ba31633bc8c98140c3156fa35d476d9665
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:42 2022 +0200

    I18n: Update translation ca (97%).
    
    463 translated messages, 14 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a8cc66eae6eab1199521b6ac262136c202a3b589
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:42 2022 +0200

    I18n: Update translation bg (99%).
    
    475 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 73fdf533416b700c488baa73a8f2c83bd11e2ccb
Author: nab <nab@mail.by>
Date:   Sat Sep 3 12:48:42 2022 +0200

    I18n: Update translation be (97%).
    
    463 translated messages, 14 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 665783edf5e6064bc8888f29cc7e9f5f939865f8
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:42 2022 +0200

    I18n: Update translation ast (79%).
    
    377 translated messages, 100 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 42cdd7b4fc932cf3f4ea0b4b4fdc3fb387e11ec5
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:42 2022 +0200

    I18n: Update translation ar (86%).
    
    414 translated messages, 63 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit aee6ce97942b68cde8737cfe2d3d11faa89211d9
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 3 12:48:42 2022 +0200

    I18n: Update translation am (64%).
    
    306 translated messages, 171 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2c61e65a3c9355991fdac2933c409feda3f877bb
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Sep 2 18:02:02 2022 +0200

    clock: Reveal calendar command in prefs dialog (Fixes #560)

commit a8aa29709715c18bfa7b4fd8232ad2e50ff036be
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Sep 2 17:58:09 2022 +0200

    clock: Run calendar command with single click (Fixes #560)

commit f3136aa6280ed7f22b74ae93cde213c44ab47a72
Author: Gaël Bonithon <gael@xfce.org>
Date:   Thu Sep 1 19:39:56 2022 +0200

    panel: Save and restore style context around marching ants
    
    Fixes: #490
    Co-authored-by: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>

commit 7c8755c46d9c7ca919dab3ff07129157ea091717
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Sep 2 10:32:29 2022 +0200

    clock: Fix widget visibility in prefs dialog
    
    Fixes: dcc1fdc66f048c3698ddf8dfb9f094f3c7a834b6
    Related: !94

commit 522c068aa5d9048c38a607c3767c5c6a586d22c0
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Aug 30 11:27:35 2022 +0200

    docs: Fix "unused declarations" warning

commit e55eef1bce30e157bed603e7511cc687d498aee4
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Aug 30 11:26:27 2022 +0200

    docs: Add missing link for api-index-4.18

commit 16410b1489e81c9df9e8d5d02bfac70277db74b8
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Aug 30 11:25:12 2022 +0200

    docs: Add missing "macros" section

commit ced03c1631e3e9530623e1e335453276ce0e04c1
Author: Anonymous <noreply@xfce.org>
Date:   Tue Aug 30 12:48:01 2022 +0200

    I18n: Update translation et (99%).
    
    472 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e82fa23464dbd337a7c78bfc4a264f8fc9f3dcf3
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 28 12:47:57 2022 +0200

    I18n: Update translation cs (97%).
    
    463 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c141f78a3be52bc3c5d4f67a103bca62a894e4b4
Author: Anonymous <noreply@xfce.org>
Date:   Wed Aug 24 00:47:45 2022 +0200

    I18n: Update translation oc (99%).
    
    471 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5891f35fc5c36296fac4d632e6fcdd3141174518
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Aug 20 17:32:29 2022 +0200

    Back to development

commit 3aca94f29939eb0f657296fe8affa5b1fe23faf3
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Aug 20 17:30:28 2022 +0200

    Updates for release

commit 897c02e6d4e77c8a4079312e6b7585685b2b6c3d
Author: Anonymous <noreply@xfce.org>
Date:   Sat Aug 20 00:47:37 2022 +0200

    I18n: Update translation id (98%).
    
    467 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4bdebbfa1c28f84c7a1968679c9384a214f854de
Author: Anonymous <noreply@xfce.org>
Date:   Fri Aug 19 00:47:58 2022 +0200

    I18n: Update translation es (100%).
    
    474 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 614b043c634ac1ce182260ad832a11402fd9fa08
Author: chenz <chrhenz@gmx.de>
Date:   Thu Aug 18 17:21:17 2022 +0000

    clock: Implement sleep monitor
    
    When a wakeup event is received from the operating system, trigger a
    UI update by invalidating and restarting any timeouts and issuing a
    "time changed" signal.
    
    Fixes: #58
    MR: !88

commit 85119b57d5c24dd8b49522fe6a0633e0bc2eadbd
Author: Anonymous <noreply@xfce.org>
Date:   Thu Aug 18 00:47:33 2022 +0200

    I18n: Update translation it (100%).
    
    474 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 94a0a027e28e6a58883191fb6ccf852361d51601
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Aug 17 09:59:46 2022 +0200

    systray: Do not auto-terminate on error in a running proxy callback
    
    These errors can have multiple causes, but if the proxy is still alive,
    they are probably only temporary. If the proxy is dead or dying, the
    item finalization should be triggered elsewhere (normally by
    unregistering the status notifier).
    
    The display of debug info (and thus the use of a GError) is kept in
    `sn_item_get_all_properties_result()`, to make debugging easier if it
    should have any side effects.
    
    Helps: #102, #243, #599

commit 0bf1cb8e9ce05934bc6775999d7b318c4aee857f
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Aug 17 09:52:50 2022 +0200

    systray: Add debug info when item auto-terminates
    
    It is not clear that this auto-termination is appropriate under any
    circumstances. Perhaps one should either accept the failure or try to
    re-register the item via the SnWatcher. It is likely that this is the
    cause of unexpected item vanishing, as noted in #102, #243 and #599.
    This commit should help debugging the problem.
    
    Helps: #102, #243, #599

commit 3c2b48d64926ad603d7be632a67726635f661454
Author: Anonymous <noreply@xfce.org>
Date:   Wed Aug 17 12:48:21 2022 +0200

    I18n: Update translation zh_CN (100%).
    
    474 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2f5794968e589148387eeea9b58552733d7220e9
Author: Anonymous <noreply@xfce.org>
Date:   Wed Aug 17 12:48:20 2022 +0200

    I18n: Update translation lt (100%).
    
    474 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1eeaa51e27d84a59dbb62c58aa16838bd8eaca5a
Author: Anonymous <noreply@xfce.org>
Date:   Wed Aug 17 00:47:34 2022 +0200

    I18n: Update translation ru (100%).
    
    474 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c599fb395ca01a54dbb0e153dd56587b76ade8b4
Author: Anonymous <noreply@xfce.org>
Date:   Wed Aug 17 00:47:34 2022 +0200

    I18n: Update translation ja (100%).
    
    474 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f5b4f2e369de434804e5b48a6dd07121ec7e890c
Author: Sabri Ünal <libreajans@gmail.com>
Date:   Tue Aug 16 00:47:24 2022 +0200

    I18n: Update translation tr (100%).
    
    474 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7ee44bb44611cccf40ba81366cf3e750ca1236ef
Author: Anonymous <noreply@xfce.org>
Date:   Tue Aug 16 00:47:24 2022 +0200

    I18n: Update translation pt_BR (99%).
    
    470 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f6605351efeea85747ac9b51e5ec781d6425b15c
Author: Anonymous <noreply@xfce.org>
Date:   Tue Aug 16 00:47:23 2022 +0200

    I18n: Update translation bg (100%).
    
    474 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 69526a4d63e7116267835686b930f0b38fc00843
Author: Anonymous <noreply@xfce.org>
Date:   Mon Aug 15 12:48:08 2022 +0200

    I18n: Update translation zh_TW (100%).
    
    474 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6bf214ead3676ef4887ece292867ffee686699e6
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 12:48:07 2022 +0200

    I18n: Update translation sr (100%).
    
    474 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c5f91107b77dd502085b8fbcfdd7899c68a7976f
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 12:48:06 2022 +0200

    I18n: Update translation nl (100%).
    
    474 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b86f4c24341def415f7dda15a31795357ba78634
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 12:48:06 2022 +0200

    I18n: Update translation de (100%).
    
    474 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ece9a18164f36931bd9f1073903a2b4a3ef21ea5
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:48:00 2022 +0200

    I18n: Update translation zh_TW (99%).
    
    470 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ecc68bf2415763ef6e177aa97fe81960806b106d
Author: Ivan <personal@live.hk>
Date:   Sun Aug 14 00:48:00 2022 +0200

    I18n: Update translation zh_HK (88%).
    
    418 translated messages, 56 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 57e9a26b41334d7fa47572b876eb1703b4cbc6f4
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:48:00 2022 +0200

    I18n: Update translation zh_CN (99%).
    
    470 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8dcd8b93cac39b0f7c2d097e488b2110b54a8fb0
Author: Duy Truong Nguyen <truongap.ars@gmail.com>
Date:   Sun Aug 14 00:48:00 2022 +0200

    I18n: Update translation vi (65%).
    
    311 translated messages, 163 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bb2853016698c307d767b68eda06581c615bdd98
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:59 2022 +0200

    I18n: Update translation uk (98%).
    
    469 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2f27ad3dfb5da5782e3d69b85bdafa6fa9c480df
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Sun Aug 14 00:47:59 2022 +0200

    I18n: Update translation ug (80%).
    
    382 translated messages, 92 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7b4b0e676265646696762144144ff321a0f2b5ec
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:59 2022 +0200

    I18n: Update translation tr (99%).
    
    470 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dee67b57f49668a44780bfc36f6997fa323f1779
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:59 2022 +0200

    I18n: Update translation th (97%).
    
    462 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c12c51101ded58084191774a5190b95aeb845224
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:59 2022 +0200

    I18n: Update translation sv (99%).
    
    473 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 23e58af3f34dee6b6146c20a5c1e6f2b4f68a082
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:59 2022 +0200

    I18n: Update translation sr (99%).
    
    470 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2653d310876aa8965ec4bf31d573fc2561f7134b
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:59 2022 +0200

    I18n: Update translation sq (98%).
    
    468 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f9073515f5a8c34e37fc283cc5b6d6297902a189
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:59 2022 +0200

    I18n: Update translation sl (98%).
    
    466 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 718b9e60680e6260a902cb2e50b24020d9662cf3
Author: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Date:   Sun Aug 14 00:47:58 2022 +0200

    I18n: Update translation sk (97%).
    
    462 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit de4be6c3146d41690e1aaae09bbdc869c85bc46f
Author: callkalpa <callkalpa@gmail.com>
Date:   Sun Aug 14 00:47:58 2022 +0200

    I18n: Update translation si (59%).
    
    281 translated messages, 193 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 461d3107dc021747e46ab80d2f391c6a9d5ad109
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:58 2022 +0200

    I18n: Update translation ru (99%).
    
    470 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2cde8761466b626c23abb6098c2f1f368478cbd4
Author: Mișu Moldovan <dumol@xfce.org>
Date:   Sun Aug 14 00:47:58 2022 +0200

    I18n: Update translation ro (81%).
    
    388 translated messages, 86 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 64d2352f5b297869397146b8ecbf187f3e9f4d5f
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:58 2022 +0200

    I18n: Update translation pt (100%).
    
    474 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ec5cb5817abfd7a87313ac40f2251bad93df4ec5
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:58 2022 +0200

    I18n: Update translation pt_BR (98%).
    
    465 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 675ef26624f6816b231696d3e728dc219e8fe6ca
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:58 2022 +0200

    I18n: Update translation pl (100%).
    
    474 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bfbd6e34e73e5f080cf5dcdb2a5196e43ac50cdc
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:58 2022 +0200

    I18n: Update translation pa (59%).
    
    281 translated messages, 193 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 666936dcb0fc395212cb66577cbd9a45d84d94d8
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:57 2022 +0200

    I18n: Update translation oc (98%).
    
    467 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0c6498b590ac72568a51f8db363dab1f6ca0ba62
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:57 2022 +0200

    I18n: Update translation nn (90%).
    
    430 translated messages, 44 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f8bd83741c60769a13a11e3b87dbb2c0064e07ee
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:57 2022 +0200

    I18n: Update translation nl (99%).
    
    470 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0917a62977a388f8606479e0d083db180d733dc9
Author: heskjestad <cato@heskjestad.xyz>
Date:   Sun Aug 14 00:47:57 2022 +0200

    I18n: Update translation nb (100%).
    
    474 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1794a142550f15beaffae76ab7bfb322ed287fe9
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:57 2022 +0200

    I18n: Update translation ms (97%).
    
    464 translated messages, 10 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5483d848154cc5e0b40649eca0ab397a88c36de8
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:57 2022 +0200

    I18n: Update translation lt (99%).
    
    470 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 73f520e82d9e052fca3df3f481037a1d7669c2b9
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:57 2022 +0200

    I18n: Update translation ko (92%).
    
    437 translated messages, 37 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3aa88ff1a362c19998bdb0506bb6fc1bdc07bcf3
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:56 2022 +0200

    I18n: Update translation kk (97%).
    
    462 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2a962b2547a19170585581c41833e2d18b86359d
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:56 2022 +0200

    I18n: Update translation ja (99%).
    
    470 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 11419c461b3911ca99c22ff9ecbe8bfdb1faed99
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:56 2022 +0200

    I18n: Update translation it (99%).
    
    470 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 688749c4a3aba3635d1ff6c94a6823bedf6fb315
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:56 2022 +0200

    I18n: Update translation is (85%).
    
    407 translated messages, 67 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b1cd72e7476e50589b3c4a70d2acf649cae3b62c
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:56 2022 +0200

    I18n: Update translation ie (94%).
    
    447 translated messages, 27 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9f1831c32026e0ff6227569d099a3fec103f2ade
Author: Faisal Rachmadin <frachmadin@gmail.com>
Date:   Sun Aug 14 00:47:56 2022 +0200

    I18n: Update translation id (97%).
    
    463 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5e19ddd755553fc355b8a0e5300ae4b4bb7e1627
Author: Arman Harutyunyan <arman.harut468@gmail.com>
Date:   Sun Aug 14 00:47:56 2022 +0200

    I18n: Update translation hye (87%).
    
    417 translated messages, 57 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4f9a59c6bd0ff81afecd82d7fce63683e0c2e05d
Author: Samvel Harutyunyan <samvel@ehayq.am>
Date:   Sun Aug 14 00:47:56 2022 +0200

    I18n: Update translation hy_AM (91%).
    
    434 translated messages, 40 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3dc8ccaecb61c7f4af7495a139c22d43771f2101
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:55 2022 +0200

    I18n: Update translation hu (91%).
    
    435 translated messages, 39 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7030d8bfd0efb85af3a7eeb44101d6dc7174c8c5
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:55 2022 +0200

    I18n: Update translation hr (92%).
    
    438 translated messages, 36 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5507b2026a6748de4e2b3f86d03f4e642c3401e6
Author: Elishai Eliyahu <elishai@mailfence.com>
Date:   Sun Aug 14 00:47:55 2022 +0200

    I18n: Update translation he (99%).
    
    470 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f079a4dec1e4e53c91525190c833a2cba59b112f
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:55 2022 +0200

    I18n: Update translation gl (97%).
    
    462 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e95387b4a1d1991044b45f7f38d136aafbd79a9a
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:55 2022 +0200

    I18n: Update translation fr (100%).
    
    474 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0b1d2e75ba8dbfd33d849b94da971ea2f7abec43
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:55 2022 +0200

    I18n: Update translation fi (92%).
    
    437 translated messages, 37 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 84aa9c7105781b5a6598521c0f48dc37164367d9
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:54 2022 +0200

    I18n: Update translation eu (99%).
    
    470 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 11e9b88994f465617e53542da752ced8fa3a2724
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:54 2022 +0200

    I18n: Update translation et (98%).
    
    468 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ba130ecb454dbc2cceb15d110f023bedaed208b5
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:54 2022 +0200

    I18n: Update translation es (99%).
    
    470 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1e96101fe96a36a34c4f6ed7fcf311280f2d264f
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:54 2022 +0200

    I18n: Update translation en_GB (98%).
    
    467 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0e989c1bf14836b825a5812e22b0bd84cb0806c0
Author: Steven Xu <stevenxxiu@gmail.com>
Date:   Sun Aug 14 00:47:54 2022 +0200

    I18n: Update translation en_AU (85%).
    
    407 translated messages, 67 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d49b3a451e7bf9f3bf809565c05c5444a9413a3f
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:54 2022 +0200

    I18n: Update translation el (98%).
    
    465 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e8a03ca68c1a19ba9907539e1cf8feec3c8d3db8
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:54 2022 +0200

    I18n: Update translation de (99%).
    
    470 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a893a2e0792dc6f215c5c9a67997ee533716e8f9
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:54 2022 +0200

    I18n: Update translation da (97%).
    
    463 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3ff238658e7e865cff6cbae6f769b7c5546ce0f2
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:53 2022 +0200

    I18n: Update translation cs (97%).
    
    462 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7cb50b0d99ba8bccaac606a5196cc03b6e7c4f99
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:53 2022 +0200

    I18n: Update translation ca (97%).
    
    462 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 61c1d1d5fe02b8474bd37e14233bb5aa790608ea
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:53 2022 +0200

    I18n: Update translation bn (62%).
    
    297 translated messages, 177 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 667b6cce071a83bf313cae678c7ff22c883aa684
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:53 2022 +0200

    I18n: Update translation bg (99%).
    
    470 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 78973ff702f5253d1dd924893faebd7538b339ec
Author: nab <nab@mail.by>
Date:   Sun Aug 14 00:47:53 2022 +0200

    I18n: Update translation be (97%).
    
    462 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cd1eaab809bc61329cf84aad4594121c7b398500
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:53 2022 +0200

    I18n: Update translation ast (79%).
    
    376 translated messages, 98 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4e7bb47a50285a2abbb4b59745b066b7484c3756
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 14 00:47:53 2022 +0200

    I18n: Update translation ar (87%).
    
    413 translated messages, 61 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 96dec6e6b7c318f1f71055e8773973e0c6a677d9
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Aug 13 15:53:03 2022 +0200

    cleanup: Use the same debug function everywhere

commit 991b5f0c7981f65a0eb2d8e10e3166342dccffa2
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Thu Jun 13 02:04:49 2019 -0500

    clock: binary: add new binary time mode
    
    Typical binary clocks simply take the normal time and display it in
    binary, this provides no value.
    
    In binary bits should have meaning: the most significant bit should be
    significant. If a day is 0x10, half a day should be 0x8.
    
    If we divide the day in 16 equal parts that number can be represented
    with four bits, noon is 0b1000 and therefore everything after noon has
    the most significant bit on.
    
    Binary time divides the day in 2 ** 16 equal parts, with 4 bits we have
    a resolution of hours, and 8 bits a resolution of minutes (~6 minutes),
    for seconds we need all 16 bits.
    
    In binary time every bit is useful and it means something, now there's
    actually a reason to actually use a binary clock.
    
    More explanation can be found by reading of hexadecimal time [1], which
    is another representation of the same thing.
    
    https://en.wikipedia.org/wiki/Hexadecimal_time
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit dcc1fdc66f048c3698ddf8dfb9f094f3c7a834b6
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Thu Jun 13 01:20:59 2019 -0500

    clock: binary: add new mode option
    
    Switch from 'true-binary' to this new mode.
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit d3c17774a95bd91d79f7b667f7dac9249c762853
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Sun Aug 7 17:55:21 2022 -0500

    clock: binary: turn table into single value
    
    We only need 24 bits at most and the algorithms can write directly into
    the right location.
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit a1bea89a44af4eb12ac26c5db780139b24a32e2c
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Sun Aug 7 17:42:45 2022 -0500

    clock: binary: reorder rows and cols
    
    If 0x0 starts at the bottom right instead of the top left the rest of
    the code becomes simpler.
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit 35962a4ebf0dfb93166dd5238f3b40ffcfd7096d
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Mon Aug 1 01:34:33 2022 -0500

    clock: binary: rework algorithms
    
    Most of the code for the algorithms isn't necessary.
    
    All we need is a single decimal-based number which can be represented
    in two binary ways.
    
    After this the two algorithms look almost identical.
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit a2af4fe92c6646a46569f63f067636f90d1732fd
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Mon Aug 1 01:22:26 2022 -0500

    clock: binary: share more code
    
    The variables time, rows and cols can be shared between functions.
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit ad150dc5eb917a2e8d2a74cf22b863d3c8a97f8c
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Mon Aug 1 01:04:59 2022 -0500

    clock: binary: fetch state flags and color only once
    
    No need to fetch them multiple times.

commit 667af5c176ba50ef5739d04ed7851439257262e4
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Sun Aug 7 20:27:44 2022 -0500

    clock: binary: add missing pixel from the grid
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit 8204ef25b3ca7f4e63f7e838d9fb9b28b3a27c51
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Aug 10 15:56:34 2022 +0200

    panel: Exit gracefully when display cannot be opened (Fixes #625)

commit 87421aceafbec9db0a30cef85ae1dd2d218e398e
Author: Anonymous <noreply@xfce.org>
Date:   Mon Aug 8 00:47:27 2022 +0200

    I18n: Update translation sr (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 490335becccf79c0b12d4789cc4405071a9ea097
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Mon Aug 1 00:59:23 2022 -0500

    clock: binary: move and share draw code
    
    Both clocks use exactly the same draw code, so move it and share it.
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit 61445fcf3014508a36152b356e80845834284e48
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Mon Aug 1 00:33:41 2022 -0500

    clock: binary: split logic from drawing
    
    We store the dots in a table so the drawing code can be split.
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit c8468fa5ed8e46871cd2d56f7557eb78e51dd9a4
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Sun Jul 31 23:56:17 2022 -0500

    clock: binary: simplify grid draw
    
    No need for an outside rectangle when we can just draw two more grid
    lines.
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit 35b406c2562bb58386a5aa582e9e152663012a0e
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Sun Jul 31 23:33:46 2022 -0500

    clock: binary: no need to store offset
    
    It's easy to calculate from the rows and cols.
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit 2d2cb10e9711fef381394e8676892033b44005c8
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Sun Jul 31 23:25:05 2022 -0500

    clock: binary: avoid recalculations
    
    There's no need to constantly recalculate the width and height of the
    dots: they are always the same.
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit e623b7e9c5e75878cf25fffc9e2d136daa2eab38
Author: Anonymous <noreply@xfce.org>
Date:   Sat Aug 6 12:48:27 2022 +0200

    I18n: Update translation tr (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8f1a117b7123705ae3fa7d853e3d86b380ffad10
Author: Anonymous <noreply@xfce.org>
Date:   Sat Aug 6 00:47:33 2022 +0200

    I18n: Update translation et (99%).
    
    469 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bcb4d095fdfa2bfadeca8c73207c557f663f415f
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Sun Jul 31 23:10:56 2022 -0500

    clock: binary: simplify
    
    No need to get the same style twice: we can let C copy the contents of
    the struct.
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit 29bb3a00c22a9a20ce13f31f50dcd6313f49db64
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Sun Jul 31 22:59:03 2022 -0500

    clock: binary: remove redundant code
    
    The code does exactly the same whether or not the insensitive flag is
    set, so there's no point in checking it.
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit aeaf117f217992f9ea3ef0dc300599fb553f495d
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Sun Jul 31 22:13:15 2022 -0500

    clock: binary: get the color of the current state
    
    The same way xfce_clock_binary_draw_binary() does it.
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit 1dd61dae4cc06c88b4053f452e0e566ce6bc94c8
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Sun Jul 31 22:53:49 2022 -0500

    clock: binary: fix state flag check
    
    gtk_widget_get_state_flags() returns StateFlags, not State.
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit 2aef8fcc578e4359d396bcfd8d1cd6561945b987
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Sun Jul 31 20:46:30 2022 -0500

    clock: binary: don't get style of the parent
    
    We want the style of the clock, not the clock button.
    
    xfce_clock_binary_draw_binary() is already doing this correctly.
    
    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit d0de8586525f099e5ff785fdcd94fbd83924e016
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Aug 5 16:35:57 2022 +0200

    launcher: Replace deprecated GtkWidget::state-changed signal

commit dd1c742dd70f1e8b43a901b82ba91d673be98c2a
Author: Anonymous <noreply@xfce.org>
Date:   Wed Aug 3 12:48:06 2022 +0200

    I18n: Update translation sv (99%).
    
    470 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9c7185c488fd6d1f2d97141f39edcd647f0b8191
Author: Anonymous <noreply@xfce.org>
Date:   Wed Aug 3 00:47:29 2022 +0200

    I18n: Update translation oc (99%).
    
    468 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cd847f492e79a36d4865bfbd06dc6483e9d43f50
Author: Anonymous <noreply@xfce.org>
Date:   Mon Aug 1 00:47:25 2022 +0200

    I18n: Update translation it (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2960b4fecd7517a7287a089d13516825fd2eb36e
Author: Anonymous <noreply@xfce.org>
Date:   Sun Jul 31 12:48:05 2022 +0200

    I18n: Update translation eu (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 552df709ec33225296ffc26fdce65611b0317ac4
Author: Anonymous <noreply@xfce.org>
Date:   Sun Jul 31 00:47:40 2022 +0200

    I18n: Update translation lt (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dd7a1ef592ad5e8e7c38f463d1ad6fb3ef4ce493
Author: Elishai Eliyahu <elishai@mailfence.com>
Date:   Sun Jul 31 00:47:39 2022 +0200

    I18n: Update translation he (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit de94a43ea577d44a81710c1c3ef61ed42c0ecfa3
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 30 00:47:22 2022 +0200

    I18n: Update translation pt (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1b6664b295b09f94719ac923351da5e2609845b1
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jul 29 12:47:51 2022 +0200

    I18n: Update translation sq (99%).
    
    469 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b4662995de4a66a47001adc9aa4d5a434efb1f5a
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jul 29 00:47:15 2022 +0200

    I18n: Update translation fr (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 40baceacde265a5e67235c516c5722f91f9573ba
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jul 29 00:47:14 2022 +0200

    I18n: Update translation es (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e528acaf41d2848f944115a75bc6eaacaaeb3261
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 12:48:04 2022 +0200

    I18n: Update translation zh_TW (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c26e0346d229aa3effeea99affd71aa8b3b6ad3f
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 12:48:04 2022 +0200

    I18n: Update translation zh_CN (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e17263195a323ea0e46c8216204e105463353d6c
Author: heskjestad <cato@heskjestad.xyz>
Date:   Thu Jul 28 12:48:04 2022 +0200

    I18n: Update translation nb (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 945c06b597289a87cb4d10a3563d8424f4239a90
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 12:48:04 2022 +0200

    I18n: Update translation bg (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c15e136fa2c8c13b0e2c30fe5015380be8dfa68c
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:49 2022 +0200

    I18n: Update translation zh_TW (99%).
    
    470 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit de2ed4f7d4249305f359a6337005326d414ff2b0
Author: Ivan <personal@live.hk>
Date:   Thu Jul 28 00:47:48 2022 +0200

    I18n: Update translation zh_HK (88%).
    
    419 translated messages, 52 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 05a2b61694139fd8073bb2083fe8d2888e22702e
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:48 2022 +0200

    I18n: Update translation zh_CN (99%).
    
    470 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit aa084c7a57a0271bb0589878ae105474c02fd0cc
Author: Duy Truong Nguyen <truongap.ars@gmail.com>
Date:   Thu Jul 28 00:47:48 2022 +0200

    I18n: Update translation vi (66%).
    
    312 translated messages, 159 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 41c05e1ee62b5c47884003342ec375a72f04a55a
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:48 2022 +0200

    I18n: Update translation uk (99%).
    
    470 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1a99c4c9bbb2110dc9ea387bf2989408f3cc263d
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Thu Jul 28 00:47:48 2022 +0200

    I18n: Update translation ug (81%).
    
    383 translated messages, 88 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 113cad272b1746caa21d84e25b43c996faa413a2
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:48 2022 +0200

    I18n: Update translation tr (99%).
    
    468 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fc3d581d0274e9c07e597732c20917b626d909bd
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:48 2022 +0200

    I18n: Update translation th (98%).
    
    463 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 069739a7ce95b29c8be15b7cde4242cce3aefbef
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:47 2022 +0200

    I18n: Update translation sv (99%).
    
    469 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 895016c032696f6c3ba0494cc1f291fba7357e9c
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:47 2022 +0200

    I18n: Update translation sr (99%).
    
    469 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a7a3c604eebf597bdf81dcf32b1dfe8859e3125e
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:47 2022 +0200

    I18n: Update translation sq (99%).
    
    468 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 68004a6014b4ceb6c001c835891d33adbeb047cf
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:47 2022 +0200

    I18n: Update translation sl (99%).
    
    467 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 431dbaa37a5a32cef6592ea6535be3fc35cf0dc6
Author: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Date:   Thu Jul 28 00:47:47 2022 +0200

    I18n: Update translation sk (98%).
    
    463 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 671d3c80e4f490ea150d702fc976e60efbec298e
Author: callkalpa <callkalpa@gmail.com>
Date:   Thu Jul 28 00:47:47 2022 +0200

    I18n: Update translation si (59%).
    
    282 translated messages, 189 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1df39a0e4f905cf596100d5bd9871ab428b4e6ac
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:46 2022 +0200

    I18n: Update translation ru (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8dc3811222d53d8060fd6e7d928c92be1e20f574
Author: Mișu Moldovan <dumol@xfce.org>
Date:   Thu Jul 28 00:47:46 2022 +0200

    I18n: Update translation ro (82%).
    
    389 translated messages, 82 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0d941d5ce4f1c813ed2255871bcea309b40f4898
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:46 2022 +0200

    I18n: Update translation pt (99%).
    
    470 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6c6a6337a4c4afe7d321b5a1cbd29e2f1865c30c
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:46 2022 +0200

    I18n: Update translation pt_BR (98%).
    
    466 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d991459e7499fae5c460887a932cbd89ed25a732
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:46 2022 +0200

    I18n: Update translation pl (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 61653f9dab5a48c459a4afb58815b35af5f396a6
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:46 2022 +0200

    I18n: Update translation pa (59%).
    
    282 translated messages, 189 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e035e85189ff98110b9be4f49f87660497e1839f
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:46 2022 +0200

    I18n: Update translation oc (98%).
    
    463 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6f06c0b74febaf1656b713b920ab1c1b8ec773fd
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:45 2022 +0200

    I18n: Update translation nn (91%).
    
    431 translated messages, 40 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c21ea5f47e13ba6a394de70a97278669fded5a5b
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:45 2022 +0200

    I18n: Update translation nl (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f7dff10f5793107a861723aad6b21e88492df5ad
Author: heskjestad <cato@heskjestad.xyz>
Date:   Thu Jul 28 00:47:45 2022 +0200

    I18n: Update translation nb (99%).
    
    470 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e8047c574b3bff2e45fce260984f90acfafbf901
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:45 2022 +0200

    I18n: Update translation ms (98%).
    
    465 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 22eb59dce981c630d13338dc50f9593f6216a803
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:45 2022 +0200

    I18n: Update translation lt (99%).
    
    470 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 00e1455a063285679306c6a409109e6036697741
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:45 2022 +0200

    I18n: Update translation ko (92%).
    
    438 translated messages, 33 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a5d0fb4d7db5894252c6f3a2fb5debf920aab633
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:45 2022 +0200

    I18n: Update translation kk (98%).
    
    463 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 63c796b54aa852cf16cc75cbcfa1cd08fec7648d
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:45 2022 +0200

    I18n: Update translation ja (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4a97d1c9853960a84e8580c02466b6dc59cfae50
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:44 2022 +0200

    I18n: Update translation it (99%).
    
    470 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1e42ec76b70bed3106353577515d608d910281b6
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:44 2022 +0200

    I18n: Update translation is (86%).
    
    408 translated messages, 63 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7a0ff70f8dea40e657926ce985cedbb4fd467454
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:44 2022 +0200

    I18n: Update translation ie (95%).
    
    448 translated messages, 23 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e65c661ed1c70de779984cc36a3bce0ff77b5779
Author: Faisal Rachmadin <frachmadin@gmail.com>
Date:   Thu Jul 28 00:47:44 2022 +0200

    I18n: Update translation id (98%).
    
    464 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9247e80b4e8aa7af83c0033547a3aab30e9ed230
Author: Arman Harutyunyan <arman.harut468@gmail.com>
Date:   Thu Jul 28 00:47:44 2022 +0200

    I18n: Update translation hye (88%).
    
    418 translated messages, 53 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 64379849d1e9dcd95df2890f06f19e6c9fc582a7
Author: Samvel Harutyunyan <samvel@ehayq.am>
Date:   Thu Jul 28 00:47:44 2022 +0200

    I18n: Update translation hy_AM (92%).
    
    435 translated messages, 36 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit db19d9c276935fe1511f47bcf250de432ec0abe2
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:44 2022 +0200

    I18n: Update translation hu (92%).
    
    436 translated messages, 35 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit aedc01805176191d78d3f6a65d7d5973bef0a595
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:43 2022 +0200

    I18n: Update translation hr (93%).
    
    439 translated messages, 32 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 31fcd94fc0fb07f4c26524a42707da92a7250039
Author: Elishai Eliyahu <elishai@mailfence.com>
Date:   Thu Jul 28 00:47:43 2022 +0200

    I18n: Update translation he (98%).
    
    465 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 61257eddd9de4d3f4e37d8bd7b934a3ab759e63f
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:43 2022 +0200

    I18n: Update translation gl (98%).
    
    463 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b324130959fad664505373a5a6d43829a519e76a
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:43 2022 +0200

    I18n: Update translation fr (99%).
    
    470 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit eeef70855a9f72f5b278bc6b3debd082cd7b834a
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:43 2022 +0200

    I18n: Update translation fi (92%).
    
    438 translated messages, 33 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c891069d7f5463c65332976075eec10c63c02e37
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:43 2022 +0200

    I18n: Update translation eu (99%).
    
    468 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8d22d2a84028489edf53bc289afa8009a2a306de
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:43 2022 +0200

    I18n: Update translation et (98%).
    
    466 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 340d3e0a32a0089ed47ca83a70fae3ae82773531
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:42 2022 +0200

    I18n: Update translation es (99%).
    
    470 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b6ef0ce972e1c60018c172c4c050202d263aca31
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:42 2022 +0200

    I18n: Update translation en_GB (99%).
    
    468 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8f565b3c11ecdb7eb610fde17e43d7454cb61822
Author: Steven Xu <stevenxxiu@gmail.com>
Date:   Thu Jul 28 00:47:42 2022 +0200

    I18n: Update translation en_AU (86%).
    
    408 translated messages, 63 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a406387225dd2d3f9c4fec1c5a9e56fe6f1b42a8
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:42 2022 +0200

    I18n: Update translation el (98%).
    
    466 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 11bb3c8d97889476b3bb0412ff971fa8691865d9
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:42 2022 +0200

    I18n: Update translation de (100%).
    
    471 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a3d16cbae2fc4920ee923f1bd9f39c597e028381
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:42 2022 +0200

    I18n: Update translation da (98%).
    
    464 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e8e4a4c091303d2c1c18dd253f936a0fa24a8bf3
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:42 2022 +0200

    I18n: Update translation cs (98%).
    
    463 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7898d762d16c08f0b144322fc522c64678546461
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:42 2022 +0200

    I18n: Update translation ca (98%).
    
    463 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 21908a9682e764d8945be20b8cf6a1c8276e0c63
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:41 2022 +0200

    I18n: Update translation bn (63%).
    
    298 translated messages, 173 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 017f82a7eaaa6f96b78e009c505e23fd42bb935e
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:41 2022 +0200

    I18n: Update translation bg (99%).
    
    470 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7479de993ee44ba1100a2367eb42e0300efd14d0
Author: nab <nab@mail.by>
Date:   Thu Jul 28 00:47:41 2022 +0200

    I18n: Update translation be (98%).
    
    463 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3c6ea441396d7614cce6881edb747fd5c35d091d
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:41 2022 +0200

    I18n: Update translation ast (80%).
    
    377 translated messages, 94 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit eb6e086e59f64e8fd6b738aafdd7668afa77b254
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:41 2022 +0200

    I18n: Update translation ar (87%).
    
    414 translated messages, 57 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e9f41149746002eabdd9c69ff5022d6233e555bc
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 28 00:47:41 2022 +0200

    I18n: Update translation am (64%).
    
    305 translated messages, 166 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit efb2a256a84e8035907cfda313d62f1db2382129
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jul 27 12:48:36 2022 +0200

    I18n: Update translation ka (65%).
    
    309 translated messages, 163 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 417ff4a062b1b1c0bd7dcc1659b6386b9c4e3807
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Jul 26 18:01:55 2022 +0200

    tasklist: Use a checkbox for button grouping
    
    Related: 50c4281e, cleanup in previous commit

commit 64940a9049a2cf0a01e13a34c1f2dc9c077af061
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Jul 26 17:36:17 2022 +0200

    cleanup: Remove dead code
    
    Related: 50c4281e, 52a00879

commit a1730b85019f5ede0b00acbb18be92efcfec6b84
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Jul 25 23:20:42 2022 +0200

    cleanup: Wrap some GdkScreen deprecations in one place

commit 8be68652232c6442fd11fe29506ad1e3f5919f45
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Jul 25 20:59:22 2022 +0200

    cleanup: Wrap GtkImageMenuItem deprecations in one place

commit 3e685b61b90191d0d9bc459ae1cb7e58801ffcb8
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Jul 25 19:46:41 2022 +0200

    cleanup: Remove deprecated GdkColor

commit 7f176f471eaa50a3e7a7067ebaf3e3a656a05754
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Jul 25 12:11:26 2022 +0200

    tasklist: Set labels in group button menu as in windowmenu
    
    MR: !90

commit e17d6a35148e4d60cd1af43329af2e99de6c5cfa
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Jul 25 12:09:00 2022 +0200

    tasklist: Fix update of group button urgency blinking
    
    MR: !90

commit 978b818e1e8ff62ee10edaf0335b9ab1ac56ae95
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Jul 25 12:05:58 2022 +0200

    tasklist: Update button urgency blinking whether visible or not
    
    MR: !90

commit 3727a8541988ef5cd984bc5060fdbe5ec28607c4
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Jul 25 12:01:15 2022 +0200

    tasklist: Set urgency blinking when adding a new window
    
    MR: !90

commit d0e51c03d1779d919d10b6e65701af0bc8c8c86a
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Jul 25 11:53:54 2022 +0200

    windowmenu: Properly initialize urgency blinking at startup
    
    MR: !90

commit 3470e5e35501daf2ffb0a729ba1c5352aaf16f70
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Jul 25 11:46:28 2022 +0200

    libxfce4panel: Be consistent in the decision to start urgency blinking
    
    Completes: ad86d9269e55fe538a466b4c7940f29cfae98b8c
    MR: !90

commit 914398b38841a3ed4e82d4996b058263b59aaaae
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Jul 27 03:38:55 2022 +0200

    windowmenu: Properly disconnect signal handler
    
    Fixes: 185f793fccd77c90ca967154f5e7bb7c543adc0f
    Related: #37

commit 0744457f3d4c4604302fedb2d8fc9374a02c0aeb
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jul 27 00:47:22 2022 +0200

    I18n: Update translation uk (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e76b8c71b14e525a07b7bb87c9a75a691c0c1477
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jul 27 00:47:22 2022 +0200

    I18n: Update translation es (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9fa9e8c97c22ba379dc10188aa406d366a53c174
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 26 12:48:01 2022 +0200

    I18n: Update translation pt (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e837c79c122231944923f0f31c20ad5bfd1a6299
Author: ზურაბი დავითაშვილი <zurabi@tuta.io>
Date:   Tue Jul 26 00:47:34 2022 +0200

    I18n: Update translation ka (61%).
    
    290 translated messages, 182 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6e89f87172f2f1d04cfb002638976f584d417592
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Jul 25 16:13:14 2022 +0200

    prefs-dialog: Always select another panel after removing one

commit d99bbdfe3370a93abf613dda10321ae351ff7f92
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 25 00:47:18 2022 +0200

    I18n: Update translation ja (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 739cebf7be9792f9cb2787475158b7a620c0cb28
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 25 00:47:18 2022 +0200

    I18n: Update translation de (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 750ccfffa162f5a1f34cee0fae5f6922629f6456
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Jul 24 17:51:30 2022 +0200

    tasklist: Fix previous commit

commit 8d0a0eb1a60918262e85cc865e8f80359ceda520
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Jul 24 17:37:35 2022 +0200

    tasklist: Do not release button if left-click minimization is disabled

commit 6b939da5eddee9345fa275f5cd303d0f8952c356
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Jul 24 16:28:17 2022 +0200

    tasklist: Properly exclude grouped windows from overflow menu
    
    This fixes the transfer of single window buttons to the overflow menu
    when window grouping is active. As for the transfer of grouped window
    buttons, this is a feature that has yet to be implemented.

commit 69fae345b6596d87130f2f20c79bc425f372b39f
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Jul 24 11:43:22 2022 +0200

    tasklist: Keep dnd position when grouping/ungrouping windows
    
    This was supposed to be fixed in 8e36c4e4, but in fact it was only fixed
    in a few special cases, by side effect.
    
    Fixes: #323
    Related: !81

commit ed56fbb16eab6611fbbb3f33a6915854889fb1cc
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jul 23 16:20:08 2022 +0200

    Reposition menu for popup commands if necessary

commit 31d194fecf88f5611d6dda2b017d61479bc7671c
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jul 23 12:53:09 2022 +0200

    tasklist: Fix memory leak

commit 7cb050fcf9c6bdb972e0dd345578ac427b15a979
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 23 12:48:08 2022 +0200

    I18n: Update translation fr (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ffaa6094cd8c7e3a4930fcc6a2c8777e1e424de9
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Jul 22 19:35:43 2022 +0200

    panel: Populate item dialog after setting dialog screen (Fixes #62)

commit c57a3bf2df0c57ddb3afc61c1027d963cdac381c
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jul 22 12:47:57 2022 +0200

    I18n: Update translation zh_CN (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dcfb447d20ea8d542b61385706f2ac91b3867c05
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jul 22 00:47:24 2022 +0200

    I18n: Update translation pl (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 264f7f3defc862fa8eb6805f5f750e87680513eb
Author: heskjestad <cato@heskjestad.xyz>
Date:   Fri Jul 22 00:47:23 2022 +0200

    I18n: Update translation nb (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 58fe114f8dde6cc98881953a2b55190371817395
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:37 2022 +0200

    I18n: Update translation zh_TW (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c931f5869a2b9cfdbb8ec1a26573842b20a9a92e
Author: Ivan <personal@live.hk>
Date:   Thu Jul 21 12:48:37 2022 +0200

    I18n: Update translation zh_HK (89%).
    
    421 translated messages, 51 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8b91ba3cc9051ac6198a3de95a68bf7f6e30b6c9
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:37 2022 +0200

    I18n: Update translation zh_CN (99%).
    
    470 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cf9e9e8bcb4d517d97d1e96667fe2a1b0fd63aa6
Author: Duy Truong Nguyen <truongap.ars@gmail.com>
Date:   Thu Jul 21 12:48:37 2022 +0200

    I18n: Update translation vi (66%).
    
    314 translated messages, 158 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6a600da4e86376f754147d3e86b4121172a02d53
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:37 2022 +0200

    I18n: Update translation uk (99%).
    
    468 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 09aa33a0d54064355043e14ea7b9a61ad4386473
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Thu Jul 21 12:48:37 2022 +0200

    I18n: Update translation ug (81%).
    
    385 translated messages, 87 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f0209a29402c6d06be613f667f248ca2a545d3ad
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:37 2022 +0200

    I18n: Update translation tr (99%).
    
    470 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6b772b426d3c6bc1123e8e0a2e874afbfc42461a
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:36 2022 +0200

    I18n: Update translation th (98%).
    
    465 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 29cca051c73247cdea3f1ae534eff57988946759
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:36 2022 +0200

    I18n: Update translation sv (99%).
    
    470 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 80700fc9b9e2461fd37fa153beb862fa9372dcc3
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:36 2022 +0200

    I18n: Update translation sr (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4198fcaae10cf4f63c9a3964bae8002291378ca0
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:36 2022 +0200

    I18n: Update translation sq (99%).
    
    470 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit adeeefb50029e4869369b72a0024a7949eb694df
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:36 2022 +0200

    I18n: Update translation sl (99%).
    
    469 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3af9e4cb09b0145fee7fdd5e6caa4c7ea4fd2211
Author: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Date:   Thu Jul 21 12:48:36 2022 +0200

    I18n: Update translation sk (98%).
    
    465 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ac747fd6044b237d90db08b4e8bf212b90b3f394
Author: callkalpa <callkalpa@gmail.com>
Date:   Thu Jul 21 12:48:36 2022 +0200

    I18n: Update translation si (60%).
    
    284 translated messages, 188 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 42823d8f769c4aa56efa668e978628fe82e2043f
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:35 2022 +0200

    I18n: Update translation ru (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9d269beee70d5a26dd13cc85ce4cfa780eaa518b
Author: Mișu Moldovan <dumol@xfce.org>
Date:   Thu Jul 21 12:48:35 2022 +0200

    I18n: Update translation ro (82%).
    
    391 translated messages, 81 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit db5c590a8d152829a007af35feb0b0b8d8c98768
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:35 2022 +0200

    I18n: Update translation pt (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 63f0ed06ed1cf22c7a2d73ddf124530b57629800
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:35 2022 +0200

    I18n: Update translation pt_BR (99%).
    
    468 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5460412d309826a1ba1c89255a6353b275300022
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:35 2022 +0200

    I18n: Update translation pl (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ba03658676e0fdb85930d6d81b701d3fbb42c152
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:35 2022 +0200

    I18n: Update translation pa (60%).
    
    284 translated messages, 188 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b4d376381fee8448d75575b136dca4af43776bbf
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:35 2022 +0200

    I18n: Update translation oc (98%).
    
    465 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit aae7cf2ccfb2ab655c51b18b5e83b24732f1aa70
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:35 2022 +0200

    I18n: Update translation nn (91%).
    
    433 translated messages, 39 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 23c4546684bd512a3c57a477bc5d7e4467347765
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:34 2022 +0200

    I18n: Update translation nl (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b7b322102029643f404ddc8ac3b955f8ea6bbf6e
Author: heskjestad <cato@heskjestad.xyz>
Date:   Thu Jul 21 12:48:34 2022 +0200

    I18n: Update translation nb (99%).
    
    470 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d2b8c6a1a1a50419c3fa38ad8a80298e47e90fad
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:34 2022 +0200

    I18n: Update translation ms (98%).
    
    467 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 97629eb50b35783a6d639372433b107156025b9b
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:34 2022 +0200

    I18n: Update translation lt (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b84101380e55edf29b306fd8eff0518bb48b4df4
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:34 2022 +0200

    I18n: Update translation ko (93%).
    
    440 translated messages, 32 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0b852c61b04387d9502748c3c9247fde92a235cb
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:34 2022 +0200

    I18n: Update translation kk (98%).
    
    465 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 444b585ae6c80e669fff73e3045969c8cb9fa2bf
Author: ზურაბი დავითაშვილი <zurabi@tuta.io>
Date:   Thu Jul 21 12:48:34 2022 +0200

    I18n: Update translation ka (61%).
    
    289 translated messages, 183 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 940c6a1fa8cabc124610926886b43a4ece3b0dc4
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:33 2022 +0200

    I18n: Update translation ja (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 48d0dafb9ddf717378a429aa487d52b11e03642b
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:33 2022 +0200

    I18n: Update translation it (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5e2f5c8a0125c2fb828c74c7c0978baa20154e29
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:33 2022 +0200

    I18n: Update translation is (86%).
    
    410 translated messages, 62 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e10dcc1298074c5695303de1abf7c84b7ac0066a
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:33 2022 +0200

    I18n: Update translation ie (95%).
    
    450 translated messages, 22 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4d7210aa0c404d73138a8af9af72108291610fd3
Author: Faisal Rachmadin <frachmadin@gmail.com>
Date:   Thu Jul 21 12:48:33 2022 +0200

    I18n: Update translation id (98%).
    
    466 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 56a21e1e38abc9735e27e0d0b45f573fba9be458
Author: Arman Harutyunyan <arman.harut468@gmail.com>
Date:   Thu Jul 21 12:48:33 2022 +0200

    I18n: Update translation hye (88%).
    
    420 translated messages, 52 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dbc941f82c226a2b9a500473442571c01c24efd8
Author: Samvel Harutyunyan <samvel@ehayq.am>
Date:   Thu Jul 21 12:48:33 2022 +0200

    I18n: Update translation hy_AM (92%).
    
    437 translated messages, 35 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit eb00e3183641490e1e0b8092b8d641d5e68fd9cf
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:33 2022 +0200

    I18n: Update translation hu (92%).
    
    438 translated messages, 34 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 794ca282ebe62cbc5b2f3ca1a3450f2dab09d332
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:32 2022 +0200

    I18n: Update translation hr (93%).
    
    441 translated messages, 31 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 18ab7ca1597b4ea148664c646dbd2941bc554b98
Author: Elishai Eliyahu <elishai@mailfence.com>
Date:   Thu Jul 21 12:48:32 2022 +0200

    I18n: Update translation he (98%).
    
    467 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 73d62317b005d46062a9b170f89d93f5c77c7c57
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:32 2022 +0200

    I18n: Update translation gl (98%).
    
    465 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8c20c2ecfbac1260ea6e8d947596c5ab317e75d6
Author: roxfr <roxfr@outlook.fr>
Date:   Thu Jul 21 12:48:32 2022 +0200

    I18n: Update translation fr (99%).
    
    470 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dc60f1b7c9db2330acb54c003e9b92d9d71a5836
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:32 2022 +0200

    I18n: Update translation fi (93%).
    
    440 translated messages, 32 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7f488981591539c7a096e6e5fa3a87809ee2d14c
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:32 2022 +0200

    I18n: Update translation eu (99%).
    
    470 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit de5b4f3439f16d1c589a3382ab3813f8815f0d93
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:32 2022 +0200

    I18n: Update translation et (99%).
    
    468 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d12387dd6c76ae373eb96485dbf1c18644dab344
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:31 2022 +0200

    I18n: Update translation es (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 02785b53d51834c267ebc19627d08ecbf3b9477a
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:31 2022 +0200

    I18n: Update translation en_GB (99%).
    
    470 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1f26dfcfa01b14c1dc0213f2fbd3bbd1b7f964f2
Author: Steven Xu <stevenxxiu@gmail.com>
Date:   Thu Jul 21 12:48:31 2022 +0200

    I18n: Update translation en_AU (86%).
    
    410 translated messages, 62 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 12662720d68bac17978a0f4f27e76c1327eafc43
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:31 2022 +0200

    I18n: Update translation el (99%).
    
    468 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 21f98cef71f985b1809e1f3fc66d176d1a74b88c
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:31 2022 +0200

    I18n: Update translation de (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 344751c16ff3216cf06afcaf1e4b071bc8fc2c90
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:31 2022 +0200

    I18n: Update translation da (98%).
    
    466 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 00068fcdd6ba12073f8b8cb24b564efe3a7dd017
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:31 2022 +0200

    I18n: Update translation cs (98%).
    
    465 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 343bb72464d851da0f88dfc2267dcdcae07be539
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:31 2022 +0200

    I18n: Update translation ca (98%).
    
    465 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 58a01035cc3d45a6b13aeabddb10882b633c66ca
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:30 2022 +0200

    I18n: Update translation bn (63%).
    
    300 translated messages, 172 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8bf23c756bf024b8ce6d6a3d0fa539211c166aa6
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:30 2022 +0200

    I18n: Update translation bg (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c2ef3a4e14652802f097d90e523d703474806bc4
Author: nab <nab@mail.by>
Date:   Thu Jul 21 12:48:30 2022 +0200

    I18n: Update translation be (98%).
    
    465 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1aec5822c1c452e8fccd75b4cf30fef03a15c294
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:30 2022 +0200

    I18n: Update translation ast (80%).
    
    379 translated messages, 93 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9dd5d294f2209de5c33963fda95533ec78bce828
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:30 2022 +0200

    I18n: Update translation ar (88%).
    
    416 translated messages, 56 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bf8acf96291fef45b1f28546cd16fbdcb12c5afc
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 12:48:30 2022 +0200

    I18n: Update translation am (64%).
    
    306 translated messages, 166 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 317b0a78b41881ea97dbed97158c6cde6aae2bd8
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 21 00:47:40 2022 +0200

    I18n: Update translation lt (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b9795ecf069e644005776753bb5fac040e1ee253
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Jul 20 16:42:00 2022 +0200

    panel: Fix previous commit

commit d5d179f44a185714588b75af8accbd08c64d426e
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Jul 20 15:26:45 2022 +0200

    panel: Switch to pixels for the panel length in the prefs dialog
    
    Internally, this length remains a proportion between 0 and 1, albeit
    with increased precision. In Xfconf, it remains a percentage but again
    with increased precision, so stored as a double. This ensures backward
    compatibility.
    
    So the user can still enter a percentage via Xfconf if he wants to. It
    does not seem necessary to make the preferences dialog more cumbersome
    by maintaining this possibility at this stage.
    
    Fixes: #99

commit 7670e66284996cb7e25794754bd5a20bb1337f92
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jul 20 00:47:15 2022 +0200

    I18n: Update translation de (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a083114357ff1570c0180f3cb562f3e84fe5ae8b
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 12:48:13 2022 +0200

    I18n: Update translation zh_TW (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit eeef7b69d1f981f618858e2edf02a8a1d073e414
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 12:48:13 2022 +0200

    I18n: Update translation sq (99%).
    
    470 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 43a11d12665c205724136695a696f9689409056e
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 12:48:13 2022 +0200

    I18n: Update translation bg (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9fc8d220fa93e593ceef5804fa12436e40857214
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:11 2022 +0200

    I18n: Update translation zh_TW (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a5132f20e855387bf5263692d6e8aebbca81b110
Author: Ivan <personal@live.hk>
Date:   Tue Jul 19 00:48:11 2022 +0200

    I18n: Update translation zh_HK (89%).
    
    422 translated messages, 50 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7d7674e282ee868be9c147837c8fec0d2a417520
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:11 2022 +0200

    I18n: Update translation zh_CN (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 64d6d3aed0610072416c3ffbfc1bfbe0c7ef482b
Author: Duy Truong Nguyen <truongap.ars@gmail.com>
Date:   Tue Jul 19 00:48:11 2022 +0200

    I18n: Update translation vi (66%).
    
    315 translated messages, 157 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f9026a8686571c723844c6361943aa9977e3f29b
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:11 2022 +0200

    I18n: Update translation uk (99%).
    
    469 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e83ce15e0047936590b72f59be93cbcdcf6e58e5
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Tue Jul 19 00:48:11 2022 +0200

    I18n: Update translation ug (81%).
    
    386 translated messages, 86 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 369c8f8dd472675a10f51b653720f92466b437dd
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:11 2022 +0200

    I18n: Update translation tr (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8c8cff123e0327ec4ee83127243d4952fba51c52
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:10 2022 +0200

    I18n: Update translation th (98%).
    
    466 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 19716ea5a827f7ea502ac2232e6bef14438ec7de
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:10 2022 +0200

    I18n: Update translation sv (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f3d86cd0dd381ca43f889fed6275185ce8ed8e59
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:10 2022 +0200

    I18n: Update translation sr (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b179b1f2b71adcb4f40646879e8e8cb101cb2113
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:10 2022 +0200

    I18n: Update translation sq (99%).
    
    469 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 47f8ac06ebf05262d6f323d76c35e38bdc606d0d
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:10 2022 +0200

    I18n: Update translation sl (99%).
    
    470 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 55b9425a678b6371ae3ca935b906f7569c7a0556
Author: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Date:   Tue Jul 19 00:48:10 2022 +0200

    I18n: Update translation sk (98%).
    
    466 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f2c5e8fad1be8d34a07c9dd59f47921df98e2687
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:10 2022 +0200

    I18n: Update translation ru (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0c2b034bd6a62cddf6f087297c920e633011b004
Author: Mișu Moldovan <dumol@xfce.org>
Date:   Tue Jul 19 00:48:09 2022 +0200

    I18n: Update translation ro (83%).
    
    392 translated messages, 80 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d3ed4100ac35c814b8a040a4656f42c287285ee0
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:09 2022 +0200

    I18n: Update translation pt (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a8d294d5cdadd477c21c919f8911aea44ce754fa
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:09 2022 +0200

    I18n: Update translation pt_BR (99%).
    
    469 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d02a5f0c5ae8c1eb5c67437d59ae399de2500d69
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:09 2022 +0200

    I18n: Update translation pl (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6c1aeae9b32ce7dafdb63d82340b3abe128d078b
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:09 2022 +0200

    I18n: Update translation oc (98%).
    
    466 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1e220d056e5ad53d4155a4ffc8e508cc94d3d7f5
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:09 2022 +0200

    I18n: Update translation nn (91%).
    
    434 translated messages, 38 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9206a344cbc3ba9bd83cb1523bf12034f0c1a783
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:09 2022 +0200

    I18n: Update translation nl (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 88397946346426d7168f044f4197ac7eba1721ec
Author: heskjestad <cato@heskjestad.xyz>
Date:   Tue Jul 19 00:48:08 2022 +0200

    I18n: Update translation nb (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 080394a7fb6955ccad2a6ba24c90172ab6c607e4
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:08 2022 +0200

    I18n: Update translation ms (99%).
    
    468 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ed82d5a4d985d1a31d8920bd6ec146655652c7ef
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:08 2022 +0200

    I18n: Update translation lt (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6854fddeee1ccc91a9e893789c7950f6b21394cf
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:08 2022 +0200

    I18n: Update translation ko (93%).
    
    441 translated messages, 31 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit daa409c094d0a10ef7839b072b0d17690e2c26bb
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:08 2022 +0200

    I18n: Update translation kk (98%).
    
    466 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1644f4b4f575c04de5bd49650915d490a7d0a3f8
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:07 2022 +0200

    I18n: Update translation ja (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 606b6581d12291f884581d33ef8a1db66f37f950
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:07 2022 +0200

    I18n: Update translation it (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1ac5ba8c25047929591ac7c41c14a4b99cdcd450
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:07 2022 +0200

    I18n: Update translation is (87%).
    
    411 translated messages, 61 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7cb938a09d3207bd1f9651015b5c45fb61be3c62
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:07 2022 +0200

    I18n: Update translation ie (95%).
    
    451 translated messages, 21 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 92446f76e3f9b0246c904d33bf5b614d0f65be6c
Author: Faisal Rachmadin <frachmadin@gmail.com>
Date:   Tue Jul 19 00:48:07 2022 +0200

    I18n: Update translation id (98%).
    
    467 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a433023e62c51532674c485ed43cde9c03c05f20
Author: Arman Harutyunyan <arman.harut468@gmail.com>
Date:   Tue Jul 19 00:48:07 2022 +0200

    I18n: Update translation hye (89%).
    
    421 translated messages, 51 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fe413ca257317d76b9a3f9192f88f63aab0576d6
Author: Samvel Harutyunyan <samvel@ehayq.am>
Date:   Tue Jul 19 00:48:07 2022 +0200

    I18n: Update translation hy_AM (92%).
    
    438 translated messages, 34 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9640da7b46bfee53b4772222ba7da13c15ee4e33
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:06 2022 +0200

    I18n: Update translation hu (93%).
    
    439 translated messages, 33 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3fd5f501239695d66612e4d435f0a472622ef510
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:06 2022 +0200

    I18n: Update translation hr (93%).
    
    442 translated messages, 30 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ba943f3278aa7dcc6fd5469ade2437e37cff985f
Author: Elishai Eliyahu <elishai@mailfence.com>
Date:   Tue Jul 19 00:48:06 2022 +0200

    I18n: Update translation he (99%).
    
    468 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit afac54e991eaeddc2f2597a31fd662e585f0c11a
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:06 2022 +0200

    I18n: Update translation gl (98%).
    
    466 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 68ed333659376b69b4ef608e59ab25a870685959
Author: roxfr <roxfr@outlook.fr>
Date:   Tue Jul 19 00:48:06 2022 +0200

    I18n: Update translation fr (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0d1f8080c2b6b5f5ceafd325193bfccfc149356d
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:06 2022 +0200

    I18n: Update translation fi (93%).
    
    441 translated messages, 31 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 75496da1d52957c9fa339c74f52bc667c943fc19
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:06 2022 +0200

    I18n: Update translation eu (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7dfffed495ab287c362b98f7effb7876afabf15a
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:06 2022 +0200

    I18n: Update translation et (99%).
    
    469 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 56f7dc6243d1276a69207dffb2aebb9622e59297
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:05 2022 +0200

    I18n: Update translation es (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f9eccacbb3afc0e4b861fce4e440982f6ed3632e
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:05 2022 +0200

    I18n: Update translation en_GB (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4d909ab480a7c8b45bb463ec9776ec4a998c35dd
Author: Steven Xu <stevenxxiu@gmail.com>
Date:   Tue Jul 19 00:48:05 2022 +0200

    I18n: Update translation en_AU (87%).
    
    411 translated messages, 61 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9f1aeb8720d6379abd7e98765f1f4515154821bb
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:05 2022 +0200

    I18n: Update translation el (99%).
    
    469 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 21fdc7d733048df704bdb6d861bbba3eb17c6ff6
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:05 2022 +0200

    I18n: Update translation de (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6e5c3b98d3d30eaa783a076911e2bd98fc434206
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:05 2022 +0200

    I18n: Update translation da (98%).
    
    467 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8d3df4b70c5ec4d7684cd2c3be3f94e5bc858f62
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:05 2022 +0200

    I18n: Update translation cs (98%).
    
    466 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5e7b92bef76558e8ee613fc006f26e133ffbc019
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:04 2022 +0200

    I18n: Update translation ca (98%).
    
    466 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 20391bcd50152407f03826c8ecf9fe4ad9a3f8f7
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:04 2022 +0200

    I18n: Update translation bg (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dbdfd67c6c0227cac493ace54679b3ae89ef119f
Author: nab <nab@mail.by>
Date:   Tue Jul 19 00:48:04 2022 +0200

    I18n: Update translation be (98%).
    
    466 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 38fbd7020ce7e2e49514f7f9fb6c6828b7f80ead
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:04 2022 +0200

    I18n: Update translation ast (80%).
    
    380 translated messages, 92 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f1fb69c3edca108af06e5233b0ecaaed9f88d5c9
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:04 2022 +0200

    I18n: Update translation ar (88%).
    
    417 translated messages, 55 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bbc9134712fb1d0a0a790650688d62822bf158ad
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 19 00:48:04 2022 +0200

    I18n: Update translation am (65%).
    
    307 translated messages, 165 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6f64ea01f56a1a8de90b0993e33d76f8aa24b14a
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Jul 18 08:55:58 2022 +0200

    prefs-dialog: Rephrase "Don't reserve space on borders" (Fixes #217)

commit 96e2ec72ec026e9d36ac0660b69d4b58c3da961e
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Jul 17 18:23:09 2022 +0200

    panel: Rework enter/leave opacity management
    
    The general idea is to follow autohide rules for choosing enter/leave
    opacity, so that these terms can also be understood as active/inactive.
    This allows in particular to have a consistent behavior when a widget is
    shown from the panel, whether it grabs the pointer or not.
    
    Fixes: #180

commit c684bc564e009ef509734a7f24b3482368a7edee
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Jul 17 10:40:11 2022 +0200

    systray: Set button border width to 0 (Fixes #604)

commit 5ec17b6d1166e7dc4a9fe7d45169252335bdf1da
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jul 16 09:06:09 2022 +0200

    systray: Perform sanity checks also for "NewStatus" signal (Fixes #602)

commit dac89b351ba6d9ac267dc7b9b1264df2e3f74090
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:04 2022 +0200

    I18n: Update translation zh_TW (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 149eebeb4f3a9bed8b36af427492dfef16e5ed76
Author: Ivan <personal@live.hk>
Date:   Sat Jul 16 00:48:04 2022 +0200

    I18n: Update translation zh_HK (89%).
    
    423 translated messages, 49 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7f581fac87a6c93b4f986e9f57fea17e516f8753
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:04 2022 +0200

    I18n: Update translation zh_CN (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e3f8cd0aa27cad344d03c0960f2c2acd9eaf9fd7
Author: Duy Truong Nguyen <truongap.ars@gmail.com>
Date:   Sat Jul 16 00:48:04 2022 +0200

    I18n: Update translation vi (66%).
    
    316 translated messages, 156 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0b90ca0c2afeafae72468a3083fdd66447e66487
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:03 2022 +0200

    I18n: Update translation uk (99%).
    
    470 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fc02691e0a9395b13237dc755df0216e5f2ffd53
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Sat Jul 16 00:48:03 2022 +0200

    I18n: Update translation ug (81%).
    
    387 translated messages, 85 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c919e8aca1de7f4db345cf672de1571450b8ef20
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:03 2022 +0200

    I18n: Update translation tr (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 649b6fe5feb2452d160113fbd63b0e02c7394695
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:03 2022 +0200

    I18n: Update translation th (98%).
    
    467 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 52936a680d4e752f0ed6cf5ba6249fd63b9c248e
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:03 2022 +0200

    I18n: Update translation sv (99%).
    
    470 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 98a041acf0be478b8fc50cd1f67f0cbe1592d0e3
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:03 2022 +0200

    I18n: Update translation sr (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 33ca53fa4350a75774958d2576fc5aefb5bd24d2
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:03 2022 +0200

    I18n: Update translation sq (99%).
    
    470 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 83adfd541f1f663c26fffd557f7c2092e0d63fbc
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:02 2022 +0200

    I18n: Update translation sl (99%).
    
    471 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0c97043d33ff2e37c4b8a347463b542466c3dd78
Author: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Date:   Sat Jul 16 00:48:02 2022 +0200

    I18n: Update translation sk (98%).
    
    467 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1ec4fed7284b280a20b2ce98a7b2f289c2f57d3e
Author: callkalpa <callkalpa@gmail.com>
Date:   Sat Jul 16 00:48:02 2022 +0200

    I18n: Update translation si (60%).
    
    285 translated messages, 187 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 63a2f7e1efb2318be190362cc9bc4cd932a0b7c9
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:02 2022 +0200

    I18n: Update translation ru (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cab1b7625287a59dc1a913d2d7f94938fbba1610
Author: Mișu Moldovan <dumol@xfce.org>
Date:   Sat Jul 16 00:48:02 2022 +0200

    I18n: Update translation ro (83%).
    
    393 translated messages, 79 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 73a823540b9ac3e662b7e489a3d539a7681d9522
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:01 2022 +0200

    I18n: Update translation pt (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a35bb0ac33510f2bb6b99d524a11743b82ab43ec
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:01 2022 +0200

    I18n: Update translation pt_BR (99%).
    
    470 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 473bbef91125705a2cc667337453d273cd83cae6
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:01 2022 +0200

    I18n: Update translation pl (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit aeea53c922e7b26782e6b85bd714369cf0f30927
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:01 2022 +0200

    I18n: Update translation pa (60%).
    
    285 translated messages, 187 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e3bd25c4927b10fa8f228de9879575306d8a8209
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:01 2022 +0200

    I18n: Update translation oc (98%).
    
    467 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cf0a1844ad6049aaeb60f5e8a6ac12eeabbd86d8
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:01 2022 +0200

    I18n: Update translation nn (92%).
    
    435 translated messages, 37 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5501a148616c0c11460db7be12ecb33c759a1697
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:01 2022 +0200

    I18n: Update translation nl (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3c80c0276ed9d93d4792e80d4e1a661835114de7
Author: heskjestad <cato@heskjestad.xyz>
Date:   Sat Jul 16 00:48:00 2022 +0200

    I18n: Update translation nb (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 30728efc37383a6d71674c024a55734973769a13
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:00 2022 +0200

    I18n: Update translation ms (99%).
    
    469 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8ddf1f73f6a3524c1aa479c5cf0e7cda17668b00
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:00 2022 +0200

    I18n: Update translation lt (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a7a9328dd967b59be868157668560e8f26688dba
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:00 2022 +0200

    I18n: Update translation ko (93%).
    
    442 translated messages, 30 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1a07f89491d660b0afa0fc8b99de7c1bb9fecb05
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:00 2022 +0200

    I18n: Update translation kk (98%).
    
    467 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1bb3580d855adf39e2769664648b86272c19b269
Author: ზურაბი დავითაშვილი <zurabi@tuta.io>
Date:   Sat Jul 16 00:48:00 2022 +0200

    I18n: Update translation ka (61%).
    
    290 translated messages, 182 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2cab70d6091363edd97d0352db8e5161af863f37
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:00 2022 +0200

    I18n: Update translation ja (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit aae4c087d0cf5bf2e03c02839b7a28e2896bab06
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:48:00 2022 +0200

    I18n: Update translation it (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d7f43ad8e1dc044341b5dd9764b6a5bbf51f4a09
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:59 2022 +0200

    I18n: Update translation is (87%).
    
    412 translated messages, 60 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 89fa4de81ba329994eead152f1f7afa645a1fba2
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:59 2022 +0200

    I18n: Update translation ie (95%).
    
    452 translated messages, 20 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9ff24295e1fe77d7414892493cf11ddef1888989
Author: Faisal Rachmadin <frachmadin@gmail.com>
Date:   Sat Jul 16 00:47:59 2022 +0200

    I18n: Update translation id (99%).
    
    468 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8af1679d2fc9adab79a03bdb537cdc83dfe5e23a
Author: Arman Harutyunyan <arman.harut468@gmail.com>
Date:   Sat Jul 16 00:47:59 2022 +0200

    I18n: Update translation hye (89%).
    
    422 translated messages, 50 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d090c251d0ad34753cc1a01bbc33d57f88ca3734
Author: Samvel Harutyunyan <samvel@ehayq.am>
Date:   Sat Jul 16 00:47:59 2022 +0200

    I18n: Update translation hy_AM (93%).
    
    439 translated messages, 33 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ba2b9630242096150f7cb0f333dd57800c8fd0ce
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:59 2022 +0200

    I18n: Update translation hu (93%).
    
    440 translated messages, 32 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 78d8283be5ef8a1fc3cd02aed544ff67e283471d
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:58 2022 +0200

    I18n: Update translation hr (93%).
    
    443 translated messages, 29 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9688080979e4b3cb10aa2ba5908f3a87170075ab
Author: Elishai Eliyahu <elishai@mailfence.com>
Date:   Sat Jul 16 00:47:58 2022 +0200

    I18n: Update translation he (99%).
    
    469 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2b5815ea2efdfec8e11c94bbcb6a0c90b5b50a03
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:58 2022 +0200

    I18n: Update translation gl (98%).
    
    467 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e7cffe47a8ddbbeabcdff1363af9ebf46c336f01
Author: roxfr <roxfr@outlook.fr>
Date:   Sat Jul 16 00:47:58 2022 +0200

    I18n: Update translation fr (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3ed11135e93ccd72a0000ba7582b5c795354d278
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:58 2022 +0200

    I18n: Update translation fi (93%).
    
    442 translated messages, 30 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cc1641cc629caf0a04d9f3965341a37ba73e91ae
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:58 2022 +0200

    I18n: Update translation eu (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4cee9420461e8cb4932c1779560494a16ad9675c
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:57 2022 +0200

    I18n: Update translation et (99%).
    
    470 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 084bbba75fa09df8e77ba45e89d2cfade4960ac1
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:57 2022 +0200

    I18n: Update translation es (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5256eaee2df0d0557ad932cd87ff62de74405fbb
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:57 2022 +0200

    I18n: Update translation en_GB (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit adf497b4c09a079d6742bec2c3e07d65c5d999fa
Author: Steven Xu <stevenxxiu@gmail.com>
Date:   Sat Jul 16 00:47:57 2022 +0200

    I18n: Update translation en_AU (87%).
    
    412 translated messages, 60 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 26a910f1f230b5ea6a56109f6d9f0710f0beadf0
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:56 2022 +0200

    I18n: Update translation el (99%).
    
    470 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e65140e7c5b7f27c19ed49b96f3d2e74ca1b2734
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:56 2022 +0200

    I18n: Update translation de (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 41951b0ae582fff19dfa7a6868a9ddb448d61c98
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:56 2022 +0200

    I18n: Update translation da (99%).
    
    468 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 626e6fb38528bf353fa4c81486afccf32b88f8fe
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:56 2022 +0200

    I18n: Update translation cs (98%).
    
    467 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 232cbc8c7977abb134065ca728b18a5fe1d40b75
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:56 2022 +0200

    I18n: Update translation ca (98%).
    
    467 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f1bc176d77e19b33833d9bed0d3c1559a2c64610
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:56 2022 +0200

    I18n: Update translation bn (63%).
    
    301 translated messages, 171 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5d110ef9c40250acdd45ec00966a34afc3ecbd50
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:56 2022 +0200

    I18n: Update translation bg (100%).
    
    472 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5b9684cebfbf4b860580bb8f3b8cec79fb491ef5
Author: nab <nab@mail.by>
Date:   Sat Jul 16 00:47:55 2022 +0200

    I18n: Update translation be (98%).
    
    467 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 189862f4bd225f9337af386f995963fd99c2e875
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:55 2022 +0200

    I18n: Update translation ast (80%).
    
    381 translated messages, 91 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ff64e0ecaee0916122e2a190189df13f15cebe73
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:55 2022 +0200

    I18n: Update translation ar (88%).
    
    418 translated messages, 54 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4045923196fe4e939a590e287aca532780723ec3
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 16 00:47:55 2022 +0200

    I18n: Update translation am (65%).
    
    308 translated messages, 164 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8f310b868646036b6eb1694005b667f22229b0b1
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Jul 15 17:08:01 2022 +0200

    pager: Fix aspect ratio for viewport (Fixes #119)

commit 642168a469e16ab3f87907aa9b5bb0789baaea12
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Jul 15 12:44:19 2022 +0200

    pager: Synchronize layout between plugin instances wrt WnckScreen
    
    This preserves the possibility offered by Libwnck to have one layout per
    WnckScreen.
    
    Completes: bb2aaf09f0a5e71e2f09a1964db6e2f0c60c643d

commit 3685557863b79cf87e42b2445af472f741109bab
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date:   Mon Apr 21 18:30:40 2014 +0700

    clock: Distinguish AM/PM hours in fuzzy clock for L10N
    
    In some languages such as Thai, AM and PM hours are called differently.
    So, add context to them for translation.
    
    Fixes: #77
    Signed-off-by: Theppitak Karoonboonyanan <theppitak@gmail.com>

commit ad86d9269e55fe538a466b4c7940f29cfae98b8c
Author: Gaël Bonithon <gael@xfce.org>
Date:   Thu Jul 14 19:34:23 2022 +0200

    libxfce4panel: Report a highlighted arrow button as blinking
    
    This is contrary to what the documentation of the function said before,
    but until 0ede27aeba2456d08f2c7204ce470b3014edfb79 (4.15.5) and since
    ccd848851c5a207c999f83107a5365c5de8edd22 (4.9.0) the blinking timeout
    has always been infinite. So in practice this will only change the
    behavior of the function since 4.15.5, and will make it rather
    consistent with what it was before. It's also probably more in line with
    what you'd expect: the highlight at the end of the timeout is simply a
    kind of "locked blinking".
    
    Besides, this fixes a regression introduced by the above commit in
    tasklist, when a window demands attention from another workspace, and
    the blinking timeout is over: clicking on the window button does not
    change the workspace anymore.
    
    Related: !10

commit 185f793fccd77c90ca967154f5e7bb7c543adc0f
Author: Gaël Bonithon <gael@xfce.org>
Date:   Thu Jul 14 12:30:28 2022 +0200

    windowmenu: Update plugin icon on active window icon change (Fixes #37)

commit bb2aaf09f0a5e71e2f09a1964db6e2f0c60c643d
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Jul 12 16:36:43 2022 +0200

    pager: Synchronize workspace layout between plugin instances
    
    For internal Libwnck reasons, the workspace layout must be common to the
    different instances of the plugin. So the best we can do is to
    synchronize them properly, as much as possible. The number of rows
    synchronizes well, but the orientation does not, which is why it is left
    as it is in this commit.
    
    Closes: #7
    Related: !82, f1c08ac79d513d16b6e8bd0577be79d158fe80a7
    See-also: https://bugzilla.gnome.org/show_bug.cgi?id=635341

commit 8251c82f811fc06539aa34e62debd2d3d97d19dc
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Jul 12 16:06:33 2022 +0200

    pager: Move some function calls to their right place

commit d0f30ee858d931b8c9ca4d91f095cd1b07500c7b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Jul 11 11:10:54 2022 +0200

    pager: Properly disconnect signal handler
    
    Fixes critical warning when there is a screen layout change after the
    plugin has been removed.

commit ddb3bdab424b12a1609f13d559602cb200699fc5
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Jul 11 11:03:31 2022 +0200

    tasklist: Guard against null workspace
    
    This should silence critical warnings reported e.g. in these logs:
    https://gitlab.xfce.org/xfce/xfce4-panel/-/issues/496#note_51607

commit 1b3ec2e4dc7d7050f3e6223c0e5cc55b0db1e366
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:48:02 2022 +0200

    I18n: Update translation zh_TW (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 952380f470ea2d7febcb3fa69a600c2d32dc055f
Author: Ivan <personal@live.hk>
Date:   Mon Jul 11 00:48:02 2022 +0200

    I18n: Update translation zh_HK (89%).
    
    411 translated messages, 49 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 432ed8526367322ce69e0d3828d3fbf07ccba2ca
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:48:02 2022 +0200

    I18n: Update translation zh_CN (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6775931131845aecaa83867fdbbab0246c2e07f9
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:48:02 2022 +0200

    I18n: Update translation uk (99%).
    
    458 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8f1b654dde52a03dd11466216152178dfe9dec53
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Mon Jul 11 00:48:01 2022 +0200

    I18n: Update translation ug (81%).
    
    375 translated messages, 85 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4700457eb939491dbc64bc5bf6299220d169e924
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:48:01 2022 +0200

    I18n: Update translation tr (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ba59eec190382f04ca51d77756b23d6dc233fc42
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:48:01 2022 +0200

    I18n: Update translation th (98%).
    
    455 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 94b77b1c0167337548b641d24b5726778b997819
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:48:01 2022 +0200

    I18n: Update translation sv (99%).
    
    458 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 193f4fafeaa215d2341a8e3ca014c44c828ee713
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:48:01 2022 +0200

    I18n: Update translation sr (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e4060a86ebd51da8e7efb029a8f3dfa23ec79376
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:48:01 2022 +0200

    I18n: Update translation sq (99%).
    
    458 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9ad1787504307db14e5657566f927eb5e6fae12c
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:48:00 2022 +0200

    I18n: Update translation sl (99%).
    
    459 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c6663647a17ed70d1bad9059a87b187f946d1d9c
Author: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Date:   Mon Jul 11 00:48:00 2022 +0200

    I18n: Update translation sk (98%).
    
    455 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5244613381f56cbed2f5fbd32df75a5a0e132a93
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:48:00 2022 +0200

    I18n: Update translation ru (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ca94c60cf96c94b7eb17f624b1516465d622deb8
Author: Mișu Moldovan <dumol@xfce.org>
Date:   Mon Jul 11 00:48:00 2022 +0200

    I18n: Update translation ro (82%).
    
    381 translated messages, 79 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2391cc2d18e48a653d91400b917194880f4d1601
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:48:00 2022 +0200

    I18n: Update translation pt (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 09d78cf255d66e038c0f92484a9bc8b6b8016d15
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:48:00 2022 +0200

    I18n: Update translation pt_BR (99%).
    
    458 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0009437043c3d6aee997b2c645f16621284ebdd9
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:48:00 2022 +0200

    I18n: Update translation pl (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 33bab989e62f5cd55ff5e58f535f77e15dd3d567
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:59 2022 +0200

    I18n: Update translation oc (98%).
    
    455 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5fd1c23aec5ea842d54aa1ca6e039f16ec73da42
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:59 2022 +0200

    I18n: Update translation nn (91%).
    
    423 translated messages, 37 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c89509bf4ad1f47235f3818fed978bc45cdad6cb
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:59 2022 +0200

    I18n: Update translation nl (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3f483c554c5f6aff813f5f4d2ce2e33e932df4f7
Author: heskjestad <cato@heskjestad.xyz>
Date:   Mon Jul 11 00:47:59 2022 +0200

    I18n: Update translation nb (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a72cbe4358396d941ec4bab04d1eb35693218e9f
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:59 2022 +0200

    I18n: Update translation ms (99%).
    
    457 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0f58b4736d2e3d01933278bc68f9db3d46eabcee
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:59 2022 +0200

    I18n: Update translation lt (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 91d37ff38f1dbedb96f079ed428dc9f3ee36044e
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:59 2022 +0200

    I18n: Update translation ko (93%).
    
    430 translated messages, 30 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit de2da1938e98c16d5a02d5c3c56eb1219a54aea2
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:59 2022 +0200

    I18n: Update translation kk (98%).
    
    455 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7e2c1bc75614469347d9302541eaba1e187255dc
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:58 2022 +0200

    I18n: Update translation ja (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 08ce1f8e57ab9a0ed15e294b30f516a6914fb40a
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:58 2022 +0200

    I18n: Update translation it (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b81480bb82a821b759b79152e20439e96d116fe7
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:58 2022 +0200

    I18n: Update translation is (86%).
    
    400 translated messages, 60 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c93b8967e254264138c2dd5c4b292d20cac3e7a8
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:58 2022 +0200

    I18n: Update translation ie (95%).
    
    440 translated messages, 20 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2b1dc504432f6ad33aa8d5ecd4f542d1413e29c2
Author: Faisal Rachmadin <frachmadin@gmail.com>
Date:   Mon Jul 11 00:47:58 2022 +0200

    I18n: Update translation id (99%).
    
    456 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2ff0461aa2a81ebf7726e557914b291d80223308
Author: Arman Harutyunyan <arman.harut468@gmail.com>
Date:   Mon Jul 11 00:47:58 2022 +0200

    I18n: Update translation hye (89%).
    
    410 translated messages, 50 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 23fd520068878e68dd56c85dc5a6353944e9098c
Author: Samvel Harutyunyan <samvel@ehayq.am>
Date:   Mon Jul 11 00:47:58 2022 +0200

    I18n: Update translation hy_AM (92%).
    
    427 translated messages, 33 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d5c7a9e762973373678abb443aef23b427aadd9e
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:57 2022 +0200

    I18n: Update translation hu (93%).
    
    428 translated messages, 32 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fa11c15a49656c8667074f58487f2f15656796fb
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:57 2022 +0200

    I18n: Update translation hr (93%).
    
    431 translated messages, 29 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d78d1d9f720616b4584062c3b858aabbca9179bb
Author: Elishai Eliyahu <elishai@mailfence.com>
Date:   Mon Jul 11 00:47:57 2022 +0200

    I18n: Update translation he (99%).
    
    457 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5efdb9f6d303b59718820f5fe8adf58dda46ad52
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:57 2022 +0200

    I18n: Update translation gl (98%).
    
    455 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6320e3a85649c22d103e59cc9b9c2c0731ee139e
Author: roxfr <roxfr@outlook.fr>
Date:   Mon Jul 11 00:47:57 2022 +0200

    I18n: Update translation fr (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 466c3e1fd670053d2ca839d9888a17e0bc5b9098
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:57 2022 +0200

    I18n: Update translation fi (93%).
    
    430 translated messages, 30 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 80e6c47b356fb26f12f33291aeba8d38702714c2
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:57 2022 +0200

    I18n: Update translation eu (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 14da1e1861e6a1842143d4a1e03e01e3866d9814
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:56 2022 +0200

    I18n: Update translation et (99%).
    
    458 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 842b5e55e15b086cbcced17388285048da5f55a0
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:56 2022 +0200

    I18n: Update translation es (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit caa9dd322219a1436942aa9736edbdafa0684e9d
Author: Steven Xu <stevenxxiu@gmail.com>
Date:   Mon Jul 11 00:47:56 2022 +0200

    I18n: Update translation en_AU (86%).
    
    400 translated messages, 60 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 48f172ccada26d0c9c23a9c6f687c3195fc0274d
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:56 2022 +0200

    I18n: Update translation el (99%).
    
    458 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f62b7974ede1b721f88af8c6fb97f04151c0adcd
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:56 2022 +0200

    I18n: Update translation de (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4530a8bf1363e426ad8e19930799be8f1c59b76a
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:56 2022 +0200

    I18n: Update translation da (99%).
    
    456 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e45c4c4551f7966eca37c51689b9b46dac623730
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:56 2022 +0200

    I18n: Update translation cs (98%).
    
    455 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f7e0a6a35595d951009b8be19bb6231f00e74fd8
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:55 2022 +0200

    I18n: Update translation ca (98%).
    
    455 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a642b23dd2b90afbdcce885bce7e883db4bd89a1
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:55 2022 +0200

    I18n: Update translation bg (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 481fe5b053145f5f2c0b2656028efc40ec2acff7
Author: nab <nab@mail.by>
Date:   Mon Jul 11 00:47:55 2022 +0200

    I18n: Update translation be (98%).
    
    455 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2756f325c7263fd425944a876fb0b1849924d4c7
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 11 00:47:55 2022 +0200

    I18n: Update translation ar (88%).
    
    406 translated messages, 54 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d3cfa2742d373452e51f240291ad7651c629e5d8
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Jul 10 17:38:20 2022 +0200

    tasklist: Properly update active window when it changes workspace
    
    This includes in particular the fix for bug 6474. As for the call to
    `xfce_tasklist_active_workspace_changed()` it is useless, since by
    assumption, if one passes in `xfce_tasklist_button_workspace_changed()`,
    a workspace change signal is already sent.
    
    Fixes: #207

commit 7700795c990d68afad1a5b38be1a88ddbed743f6
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Jul 10 12:36:24 2022 +0200

    libxfce4panel: Warn about deprecated xfce_panel_plugin_position_menu()
    
    This should have been part of a5764f7c7604711bd8a9f27f6bc1fb16ebeeb3c9,
    and released in 4.17.2. Too bad.
    
    Related: !80

commit 4f846ca1abea39599d0d5cb07771e0a3867e4460
Author: Anonymous <noreply@xfce.org>
Date:   Sun Jul 10 12:48:05 2022 +0200

    I18n: Update translation en_GB (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d0579ededbe3cf86ec45a3e4195a590bd192981e
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Jul 10 12:01:51 2022 +0200

    tasklist: Simplify label text
    
    This part is useless and confusing in some translations. It's also
    consistent with windowmenu.

commit 0be3d4ca2d95f12ede0fd644a93899bdd312a331
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Jul 10 10:45:45 2022 +0200

    Back to development

commit 202ca07db2a7518c77bd9da73f73bdd23d53fe1e
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Jul 10 10:44:57 2022 +0200

    Updates for release

commit 1ad688574f3c9e8fc960ccecf769198e1d978e09
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Jul 6 12:14:59 2022 +0200

    panel: Silence allocation warning for external plugins (V2)
    
    This strives to impose a minimum size on external plugins only as long
    as necessary to silence allocation warnings, thus avoiding side effects
    noted in https://gitlab.xfce.org/xfce/xfce4-panel/-/merge_requests/84#note_51278.
    
    There does not seem to be a reliable upper bound on the time interval
    during which this minimum size is required, hence the use of a timeout
    which is restarted as long as one of the external plugins requires a
    reallocation on its own (this is typically needed at panel startup, when
    several plugins are loading in parallel).
    
    This should eliminate most allocation warnings (unless you are on a
    really slow or overloaded system), without impacting the size of the
    plugins beyond loading.
    
    Fixes: #590
    MR: !89
    Related: !84

commit 7be3ade64b774fb5cb43e6d9d00245569758c74e
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jul 9 12:17:27 2022 +0200

    panel: Compare monitor geometries in the right dimension
    
    A patch by Kamil Yaminov in
    https://gitlab.xfce.org/xfce/xfce4-panel/-/issues/54#note_7708.
    
    Fixes: #54

commit 2baeb16ed6248c8df25d2e3510bb895662906b88
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jul 9 12:12:56 2022 +0200

    panel: Do not compare monitor geometry to itself
    
    Regression introduced in a899b2993954501d20300b24fed9e3ee94e3da39.
    
    Helps: #54

commit 7ccade169d76355e21256c3bdb43ad293c53fab9
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jul 9 12:11:50 2022 +0200

    cleanup: Remove useless variable
    
    Useless since a899b2993954501d20300b24fed9e3ee94e3da39.

commit 19412f9c052cef58f35030b39ce107b061875a46
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jul 9 12:07:58 2022 +0200

    cleanup: Use already defined panel scale factor
    
    Related: !71

commit e5d35aabe7ddbc1ec4b359037b61204ccc4e705b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Jul 8 15:51:46 2022 +0200

    tasklist: Take window scaling into account when detecting window position
    
    Fixes: #505
    Related: !71

commit 73634be7c8833461f6ebefafc4ebeb3504346ec5
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Jul 8 15:42:25 2022 +0200

    tasklist: Take window scaling into account when hiding wireframe
    
    Completes: 97894c260e81bd6179632d64adb1029818e8d7b0
    Related: #543, !70, !71

commit 9c2a9fac1aa9ece51d5039f6910799a935e72b12
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Jul 8 15:37:39 2022 +0200

    panel: Take window scaling into account when grabbing pointer
    
    Regression introduced in b74a58ade5bab43a0b56c35ef2c9f778a9f719f3.
    
    Related: #227, !71

commit 0d97f0c70d6979c43bce7d2ebd61290d31547658
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Jul 8 17:03:48 2022 +0200

    panel: Be sure to save plugins before xfconf_shutdown()
    
    For some reason, starting the panel on a disconnected device, i.e.
    without displaying the panel, allows this problem to occur (critical
    warning at the beginning of panel_application_save()).

commit f1b08245e4f3787b568a504cd3ca229b69c36549
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Jul 8 15:36:32 2022 +0200

    tasklist: Fix critical warning when starting on a disconnected device

commit a8b45da2b974cff4cba8c33c5072bb308217d7cf
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Jul 8 15:25:13 2022 +0200

    panel: Be sure to disable struts when switching to intellihide
    
    Regression introduced in b7f5f8f3ea77d8956cc3b3d36fc3606793419c8a.
    
    Related: !77

commit 970f581214d19fbfdd940d1837643085144be805
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Jul 6 13:57:11 2022 +0200

    cleanup: Fix old typo

commit b4fa99e977fc1878a4827127c2bd024eb34be172
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Jun 15 07:42:18 2022 +0200

    panel: Silence allocation warning for external plugins
    
    Fixes: #590
    MR: !84

commit 39e9fe7193a3132fea8c04ba2bae454066fdeca4
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jul 1 12:47:56 2022 +0200

    I18n: Update translation zh_CN (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 09b6ad2ee53c6e9ff96a0c9d7a613e4a264d1ded
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jun 25 12:48:46 2022 +0200

    I18n: Update translation sq (99%).
    
    459 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b7beb71eba682c20151acfad90e98f8e6dcfdb61
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jun 25 12:48:46 2022 +0200

    I18n: Update translation el (99%).
    
    459 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2c0c2f99e47cc17b8d53276f684013f3a8b658af
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jun 25 00:47:32 2022 +0200

    I18n: Update translation tr (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 064df4a9dc9f8046e98d4326d8b7b907e074bab0
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Jun 15 19:44:24 2022 +0200

    tasklist: Remove redundant function call

commit dd202448e7d919c097f3845b2c1409ba87a4be24
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Jun 15 19:35:40 2022 +0200

    tasklist: Delay sorting if window list is in use
    
    Here when browsing the list to determine the visibility of window
    buttons.
    
    Regression introduced in 8e36c4e463ea84ad1a465a93a0bdf29da53686f1.
    
    Fixes: #594

commit e110d3cb23b42bafca4b19f8384af7686c214a5f
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Jun 15 11:47:40 2022 +0200

    libxfce4panel: Allow to show about dialog when prefs dialog is shown
    
    There seems to be no reason not to allow showing the about dialog when
    the preferences dialog is shown, especially since it is always possible
    to show the preferences dialog when the about dialog is shown.
    
    This condition was added a long time ago in
    f825f21b6107eba51f3e64cf1034822a416fe348, without any particular
    justification. Maybe a copy-paste error.
    
    Fixes: #221

commit 47113c9db8e93fe5a48e68abb7479cc09b17fe26
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Jun 15 08:55:13 2022 +0200

    panel: Prevent compositing message from affecting dialog size (Fixes #591)

commit 5b1d4ffde601fac97489933a01b6b4007a47cca7
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Jun 15 07:38:07 2022 +0200

    libxfce4panel: Unblock autohide before removing the plugin
    
    Regression introduced in e654d048dbd5c4dddb212246d1167a0ed503a3f1.
    
    Fixes: #592
    Related: !78

commit b31303fe96c63f338b54fa9d6712697fb34ae309
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jun 15 00:47:27 2022 +0200

    I18n: Update translation eu (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ce94d0c238486571b939d27b0e2b753b78edc681
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jun 14 00:47:48 2022 +0200

    I18n: Update translation et (99%).
    
    459 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4fd0d6fa1f72a1b1aa24daf6ff160abae0d30447
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jun 13 00:47:34 2022 +0200

    I18n: Update translation el (99%).
    
    459 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4e796416e04ef9cf971f25655e40102acf57f444
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jun 11 20:15:24 2022 +0200

    Grab devices until the menu takes over for popup commands
    
    This should improve 2807b173207fe5aedc98bdabd3b14d98b8afd3e8 a bit,
    hopefully it's not too much of a side effect.
    
    Helps: #201, #585

commit 62facbccb6e19671682c89d4f15b37f995635e8a
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jun 11 20:03:23 2022 +0200

    Fix return value of "remote-event" signal handlers
    
    This value is not always correct according to its definition in
    Libxfce4panel, and this is even more problematic when it is used to
    evaluate the success of the remote command, as in
    `xfce4-popup-applicationsmenu.sh` (although it is not meant for that in
    the first place).
    
    Fixes: #585

commit 8a024319a0402f365c8b09572a5c6462b9571fc4
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jun 11 19:53:35 2022 +0200

    Avoid "no trigger event" warning for popup commands

commit bf10604f637c0f9386e39fd00ae42315d78c7e43
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jun 11 12:15:10 2022 +0200

    Guard against the return value of `gdk_seat_get_pointer()`

commit e9c7751919d13c894727f4c1f32b9ff5ac0da097
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jun 11 00:47:32 2022 +0200

    I18n: Update translation pt_BR (99%).
    
    459 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0513befc2017253fee5c81fec0ce8fa796912d12
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jun 10 12:48:54 2022 +0200

    I18n: Update translation zh_CN (99%).
    
    460 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5b388722c6b6788fbfe42315a6d8aee65dcb7020
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jun 8 12:48:05 2022 +0200

    I18n: Update translation ru (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b74a58ade5bab43a0b56c35ef2c9f778a9f719f3
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Jun 6 20:36:22 2022 +0200

    panel: Ensure that handles are always grabbable (Fixes #227)

commit 81ee664ce6cfcb25c3818b001352e6d8128f2413
Author: roxfr <roxfr@outlook.fr>
Date:   Tue Jun 7 00:47:58 2022 +0200

    I18n: Update translation fr (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 425764df2a8d59dfb5624889cebb2b15b3014c73
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jun 4 12:59:55 2022 +0200

    directorymenu: Allow to set a custom icon
    
    Fixes: #254
    MR: !83

commit 4b948f64bb57d5326eb309ce817d10996f4735b5
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jun 4 12:52:57 2022 +0200

    directorymenu: Update plugin icon in one place
    
    Pure refactoring.
    
    MR: !83

commit 419c0f78287f4ea947029ab5642b5957ab7c288b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jun 4 12:41:23 2022 +0200

    directorymenu: Get rid of dialog icon
    
    Pure refactoring.
    
    MR: !83

commit 9954fba35467cabec814681a15cf047b164c3274
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jun 4 12:32:28 2022 +0200

    directorymenu: Check for icon name emptiness in one place
    
    Pure refactoring.
    
    MR: !83

commit 8957f6f5077be5007e1ca31547f7a13892bf172c
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jun 4 12:17:56 2022 +0200

    applicationsmenu: Allow to set a custom icon
    
    This was already possible for the most part, but there was a bug
    displaying the icon in the preferences dialog, due to a regression
    introduced in ada7e9c8aaa0551beb931d9b2be97c4e868d957a.
    
    MR: !83

commit 30c3652d4d4c9e6d00276c29cf9444d104f47ab4
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jun 4 11:47:34 2022 +0200

    applicationsmenu: Renaming so "icon" refers to strings in this file
    
    Pure refactoring.
    
    MR: !83

commit df4517f198dd4c9f71c2b50d27222ad9a86d1760
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jun 4 11:13:01 2022 +0200

    applicationsmenu: Get rid of dialog icon
    
    Pure refactoring.
    
    MR: !83

commit 66f1befb060194dc8d7ab814750f60cec71d1992
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jun 4 10:58:20 2022 +0200

    applicationsmenu: Check for icon name emptiness in one place
    
    Pure refactoring.
    
    MR: !83

commit 523205fd98a925ca1015279bc125bd1448d8fec6
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jun 4 12:06:18 2022 +0200

    libxfce4panel: Add new function `xfce_panel_set_image_from_source()`
    
    MR: !83

commit a8954517cabb80d870c82c92d3f834d36c305b54
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Jun 5 15:41:23 2022 +0200

    systray: Do not require compositing to be enabled to use RGBA visual
    
    See https://gitlab.xfce.org/xfce/xfce4-panel/-/issues/251#note_49605
    
    Amends: 87c609e7a576425f69b4c56786dbf657c278ae6a

commit 7853436578ee8a8e1a1c4cb5b63aec7407b65ddd
Author: Anonymous <noreply@xfce.org>
Date:   Sun Jun 5 00:47:27 2022 +0200

    I18n: Update translation sr (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 87c609e7a576425f69b4c56786dbf657c278ae6a
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Jun 4 20:04:41 2022 +0200

    Use RGBA visual only if compositing is enabled (Fixes #251)

commit e75c9827c205d013e4a3a9812efaf09e0ca29238
Author: heskjestad <cato@heskjestad.xyz>
Date:   Sat Jun 4 12:48:25 2022 +0200

    I18n: Update translation nb (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 411f4389b07547b97d6fb315af8fe261638cfe7e
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Jun 3 18:27:07 2022 +0200

    launcher: Fix wrong format specifier in config file name (Fixes #581)

commit 382d0054c0ff040c8ff7b8c63ebd7342e737f19b
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jun 3 12:48:59 2022 +0200

    I18n: Update translation pt (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 80a33e5c4021110de113fc4d39303641e3a006ba
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jun 3 00:47:28 2022 +0200

    I18n: Update translation nl (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dcbd562e731eebb5d2df73668d7027d2bf7189f0
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jun 3 00:47:28 2022 +0200

    I18n: Update translation lt (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5a4184f97737dd93d34f6cc2288d6aa93536b05d
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jun 3 00:47:28 2022 +0200

    I18n: Update translation it (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 749b2f896ad9b47e9994ba9cd2d48f174d75078b
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jun 3 00:47:28 2022 +0200

    I18n: Update translation es (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e6b0ce597e9b4422cfb262ea80e5f5a9e75d29f2
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jun 3 00:47:28 2022 +0200

    I18n: Update translation de (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c4bf448d0254e30dbdd62a8533dda518b28f5382
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jun 2 12:47:53 2022 +0200

    I18n: Update translation zh_TW (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cc1a32d7683c289f4d52ca3d2dc536d8b5817012
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jun 2 12:47:53 2022 +0200

    I18n: Update translation pl (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8131740a46416825e3fb5b6031ed767eb5bdec9a
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jun 2 12:47:53 2022 +0200

    I18n: Update translation ja (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d5b4382da918d3e84574473be5b8448fa87f0d83
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jun 2 12:47:53 2022 +0200

    I18n: Update translation bg (100%).
    
    461 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b495426446983f0827a674f87959d79673af244d
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jun 2 00:47:34 2022 +0200

    I18n: Update translation fr (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 959b468b0b20844db5c7a68b5b2d363b82ccd1fa
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Jun 1 17:09:35 2022 +0200

    applicationsmenu: Add option to set "small" property (Fixes #31, #113)

commit c9838d8c2b7be89840295dcd6317c6196041b448
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jun 1 12:48:12 2022 +0200

    I18n: Update translation zh_TW (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9f54aa5984e22708b06736a8a2fcd8e8565b3f0b
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jun 1 12:48:12 2022 +0200

    I18n: Update translation sl (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d1c9e351adeb25b28fbc809a81069f5c8af6d4a0
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jun 1 12:48:12 2022 +0200

    I18n: Update translation nl (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5030c214b2ff692d09d1b464e4a8fc42cd91f7f4
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jun 1 00:47:43 2022 +0200

    I18n: Update translation pt (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 81878efcdf54ee3d404791d1912a61ec7dac5f47
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jun 1 00:47:43 2022 +0200

    I18n: Update translation pl (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3f2569991cd428c9244acb3e80ae7b2f17f03338
Author: heskjestad <cato@heskjestad.xyz>
Date:   Wed Jun 1 00:47:43 2022 +0200

    I18n: Update translation nb (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d49a249441ba64994d65b3212dc16b42b8c57d42
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jun 1 00:47:43 2022 +0200

    I18n: Update translation lt (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f181434d47733e7b78dc87b82c687ccff501c564
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jun 1 00:47:43 2022 +0200

    I18n: Update translation es (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6391984ec06c417aaa014666c29154d741ba4df0
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jun 1 00:47:43 2022 +0200

    I18n: Update translation de (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b2cb27e9bfe48a844678cf6bdba442ac0f1f9df3
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jun 1 00:47:42 2022 +0200

    I18n: Update translation bg (100%).
    
    460 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8a2a4adaeaefbce45b704ff798e8148049352ce3
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 30 17:58:14 2022 +0200

    pager: Convert messages into warnings and silence one of them
    
    MR: !82

commit f1c08ac79d513d16b6e8bd0577be79d158fe80a7
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 30 17:47:20 2022 +0200

    pager: Set workspace layout in "buttons" mode
    
    Fixes: #74
    MR: !82

commit e53f413bdd8fd60d31bd123ba3b4801d6b8945d7
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 30 11:19:41 2022 +0200

    pager: Reveal hidden setting "wrap-workspaces"
    
    Fixes: #257
    MR: !82

commit ba72400b7f29ce285c716a043c487ca8755dc7c5
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 30 11:16:33 2022 +0200

    pager: Remove useless class members
    
    MR: !82

commit d96d5241912fb575d06c5ceb6470a9491bc6c03f
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue May 31 11:08:18 2022 +0200

    pager: Re-enable "workspace-scrolling" setting in miniature view
    
    Fixes: #253
    MR: !82

commit 9ebd02c3a702d2cca5241f821b633d25649d1076
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 30 10:18:39 2022 +0200

    pager: Override Libwnck scroll event handler
    
    Fixes: #209, #274
    MR: !82

commit 1f5751c1e036b92058c7a80304db870af7aaa215
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 30 10:57:06 2022 +0200

    Revert "pager: Allow disable switch with mouse wheel for miniature view (#253)"
    
    This reverts commit 57c1c5f7598d4b98b4c22c3ade973993d2ea4ac0. #253 will
    be fixed again in next commits.
    
    MR: !82

commit 9ea5f4e35e1bdb75654b0998b123b19c70388d4b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue May 31 10:44:13 2022 +0200

    libxfce4panel: Make urgency blinking more visible (Fixes #259)

commit 2fe288778bdaa9d764390fa88244e8c08d3c8ac7
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 30 18:22:02 2022 +0200

    systray: Fix previous commit
    
    This restricts the forced update of the dbus-menu to the only case that
    concerns #567, thus avoiding that the menu disappears unexpectedly for
    some applications like qBittorrent.
    
    Amends: 3b40f9fd142c64e1751d1cee9e391ab26e819f8a

commit 8ccb41b4b778c2558c72cb0e8f3983990062fbf6
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri May 27 18:38:38 2022 +0200

    tasklist: Sort windows also within groups
    
    Fixes: #29
    MR: !81

commit 8e36c4e463ea84ad1a465a93a0bdf29da53686f1
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri May 27 18:28:46 2022 +0200

    tasklist: Properly set window groups id
    
    This allows window groups to be included in the timestamp sort,
    identifying the group's timestamp with that of its most recent window.
    
    Fixes: #126, #323
    MR: !81

commit 3b40f9fd142c64e1751d1cee9e391ab26e819f8a
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat May 28 11:39:28 2022 +0200

    systray: Force dbus-menu update when item is invalidated (Fixes #567)

commit b0de23dd6f1c2a549f8b1f38cbe4c714e8ca4db0
Author: Anonymous <noreply@xfce.org>
Date:   Fri May 27 00:47:34 2022 +0200

    I18n: Update translation uk (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e80036e2212a66103d322d71e48d68256a060e77
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue May 24 16:26:41 2022 +0200

    libxfce4panel: Unregister menu also on "selection-done"
    
    The previous commit gives an example of a situation where only this
    signal is emitted.

commit cb3e880c612238866f948661e8597dab5fd15dc2
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue May 24 16:18:05 2022 +0200

    applicationsmenu: Do post-processing on "selection-done"
    
    It is no longer necessary to prefer "deactivate" as explained in
    cb6314755cb42fd1412211279199140d0015d2b2, since autohide blocking is now
    handled in the parent class. However, it appears that some situations,
    such as cancelling a dnd, require connecting to "selection-done" instead
    of "deactivate".

commit 07b8cbcbb0ace0086070bc5d3caca999368ff3b0
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue May 24 10:01:17 2022 +0200

    windowmenu: Do not popup menu item wnck menu at widget
    
    This breaks the feature, as the reference widget does not have the
    lifetime of the menu attached to it.

commit f913f7e9f0940d66cde16d60095701fef0972873
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue May 24 09:57:46 2022 +0200

    Fix plugin menu popup at pointer
    
    This completes 2807b173207fe5aedc98bdabd3b14d98b8afd3e8 which fixed the
    bug for the application menu.
    
    Fixes: #297

commit bb2c7483b49f23668838387a5855a8791e5b4d84
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue May 24 09:51:44 2022 +0200

    refactoring: Consistency of plugin menu callbacks

commit f4fe715e8b70c9cf11f8a55c1a2d058e7978a237
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 23 17:14:09 2022 +0200

    Use new function `xfce_panel_plugin_popup_menu()` in plugins
    
    Also removes autohide lockers since they are now included in
    `xfce_panel_plugin_popup_menu()`. This also adds a few that were still
    missing.
    
    Fixes: #147
    MR: !80

commit 4f55213dbed7dec091002026a1323c4dd3b115d3
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 23 12:56:10 2022 +0200

    systray: Remove deprecated `xfce_panel_plugin_position_menu()`
    
    MR: !80

commit a5764f7c7604711bd8a9f27f6bc1fb16ebeeb3c9
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 23 12:29:20 2022 +0200

    libxfce4panel: Deprecate `xfce_panel_plugin_position_menu()`
    
    `gtk_menu_popup()` is deprecated since GTK 3.22, and this function does
    not position the menu correctly when panel autohide is enabled.
    
    MR: !80

commit 7a24ea0c1966ccdd07cd8774811fbafe694f028d
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 23 12:14:27 2022 +0200

    libxfce4panel: Add new function `xfce_panel_plugin_popup_menu()`
    
    MR: !80

commit a1c9c1e2f6d85c7c3f8ba063b7487175e452627b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 23 10:06:58 2022 +0200

    refactoring: Use `g_file_peek_path()` when appropriate
    
    Available since GLib 2.56, i.e. e833bc8820aa8efe951a62353b89adc36724ea75

commit fe23dcaa2548c53b8604d82358a73ea98a5d909d
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue May 17 20:03:06 2022 +0200

    panel: Handle `AUTOHIDE_HIDDEN` in `panel_window_autohide_queue()`
    
    MR: !77

commit 5968c8d05388c03cad00a2ea64601eab0b8e28e4
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue May 17 19:39:20 2022 +0200

    panel: Simplify autohide management when pointer enters
    
    MR: !77

commit b7f5f8f3ea77d8956cc3b3d36fc3606793419c8a
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue May 17 16:41:07 2022 +0200

    panel: Get rid of `AUTOHIDE_DISABLED`
    
    Duplicates with `AUTOHIDE_VISIBLE` and `AUTOHIDE_BEHAVIOR_NEVER`.
    
    MR: !77

commit cb6314755cb42fd1412211279199140d0015d2b2
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat May 21 05:04:55 2022 +0200

    applicationsmenu: Do post-processing on "deactivate"
    
    "selection-done" can be emitted several times, which in particular
    results in autohide lock being released several times.
    
    MR: !77

commit e28c454de48cd3a6d144608b539521abc67be9c4
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 16 17:47:32 2022 +0200

    libxfce4panel: Remove redundant `PLUGIN_FLAG_BLOCK_AUTOHIDE`
    
    This flag is in fact not only redundant, but also conflicts with the
    lock count, which are two different concepts. We keep only the lock
    count, for consistency with what is done in `panel-window.c`, and
    because it was already quite clear that
    `xfce_panel_plugin_block_autohide()` should be used in lock/unlock
    pairs.
    
    Therefore, this commit is not pure refactoring: if external plugins were
    to misuse `xfce_panel_plugin_block_autohide()`, i.e. without making sure
    that a lock is followed by an unlock, it could lead to a bug. But it
    would then be up to the plugin to rectify its use of
    `xfce_panel_plugin_block_autohide()`.
    
    MR: !77

commit 920da82c9eb87ce810db18bd3f9b94a47adeb956
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 16 17:43:28 2022 +0200

    libxfce4panel: Handle autohide locking in one place
    
    MR: !77

commit db715559b537d98bb0c7392a466df2bb528309b1
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 16 12:23:01 2022 +0200

    panel: Remove useless code
    
    These parts of the code covered autohide blocking cases that are now
    handled at the plugin level.
    
    MR: !77

commit 80ed5394773446bc089f670dd178f3f338f4fe32
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 16 11:51:13 2022 +0200

    tasklist: Add autohide blockers for menu popup
    
    This should be handled here rather than at the panel level, as with
    other plugins. This change prepares the removal of the code that
    currently covers these cases at the panel level.
    
    MR: !77

commit d324f8b5afa230da9d0bf4a13984b3018ce54ee1
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 16 11:34:07 2022 +0200

    tasklist: Cast plugin getter macro to plugin type
    
    Preliminary refactoring to add autohide blockers.
    
    MR: !77

commit 980aa1807661dc7b30e56a5e8edb26ebb9e1485d
Author: MShrimp4 <mshrimp@sogang.ac.kr>
Date:   Sun May 22 19:20:04 2022 +0900

    Replace soon-to-be-deprecated exo-string functions
    
    Related : exo#82
    
    Requires Glib >= 2.66.0, libxfce4util>=4.17.2
    
     * _exo_string_looks_like_an_uri () => g_uri_is_valid ()
    
    A code is duplicated from libexo (probably to avoid dependency),
    but a function that can do such is added in Glib 2.66.
    
     * exo_str_is_empty () => xfce_str_is_empty ()
    
    This function is relocated from libexo to libxfce4util.

commit 39314b7436741926a3a443d6db7b72b316f970e9
Author: MShrimp4 <mshrimp@sogang.ac.kr>
Date:   Sun May 22 19:17:43 2022 +0900

    Glib>=2.66.0, libxfce4util>=4.17.2
    
    Related : exo#82, libxfce4util!24, !79

commit 9ede7912476c64d64a839ce5d6f021d277653599
Author: Anonymous <noreply@xfce.org>
Date:   Mon May 23 00:48:12 2022 +0200

    I18n: Update translation el (99%).
    
    458 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 38965004f28b578efe22d3d8f4c33c7dd7ee80b5
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun May 22 22:53:23 2022 +0200

    Update `.gitignore`

commit c343fd9d754fae5507a2d57cb977938b96b39455
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun May 22 22:39:35 2022 +0200

    Back to development

commit 0b92d9654f38176877bd4ef87a985bac8f94ed8b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun May 22 22:38:58 2022 +0200

    Updates for release

commit e654d048dbd5c4dddb212246d1167a0ed503a3f1
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 16 20:08:04 2022 +0200

    libxfce4panel: Block autohide when remove plugin dialog is shown
    
    MR: !78

commit e16d94542cf30dadf86d471196d99c3f06cd2045
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 16 19:53:36 2022 +0200

    Block autohide when plugins preferences dialog is shown
    
    To allow this change to be applied to external plugins as well, we would
    have to modify the "configure-plugin" signal, adding as return value the
    plugin preferences dialog, or add a new dedicated API. In both cases,
    this would not avoid a modification for each plugin, with no assurance
    that plugin writers will actually use these new APIs. So it's probably
    not worth it, since blocking/unblocking autohide on showing/hiding the
    dialog is a matter of a few lines of code with the existing API.
    
    MR: !78

commit b7739fa1d183d2eb56c4d90d0a1fecb0d77261de
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 16 09:54:55 2022 +0200

    Bump minimal required Garcon to 4.17.0
    
    To include the fixes for #184 and #485 from garcon!18.

commit a9dcd4ac55c8bfdfa93e1445dadc5cde8dc96989
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun May 22 11:58:52 2022 +0200

    libxfce4panel: Destroy plugin prefs dialog on plugin "destroy" signal
    
    This avoids a crash when closing the panel via `xfce4-panel -q` (or when
    removing an external plugin) while a plugin preferences dialog is open,
    for which widget properties are binded to those of the plugin. This is
    the case for all plugins embedded in the panel, except tasklist (which
    uses a child widget instead). Destroying the dialog via a weak reference
    on the plugin, i.e. on `dispose()`, is obviously too late, given the way
    GObject handles the release of weak references internally.

commit 1d9761135bfef790bf474a8050dfcb04c7ea73bb
Author: Stathis Kamperis <ekamperi@auth.gr>
Date:   Sat May 21 12:48:32 2022 +0200

    I18n: Update translation el (99%).
    
    457 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 62514ab3f2d6eb9462b5568e31bac31bb7b8406b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue May 17 19:44:50 2022 +0200

    panel: Manage autohide in the same way on pointer leave and drag leave
    
    Consistent with what is done for the autohide window: drag leave is just
    another kind of pointer leave. It fixes a bug in intellihide mode, on
    drag leave, which was treated as `AUTOHIDE_BEHAVIOR_ALWAYS` until then.
    
    Related: !75

commit 1199ef897a92ac11125636639d4bb4d3e53a7e61
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue May 10 19:22:40 2022 +0200

    windowmenu: Block autohide when the plugin menu is shown
    
    MR: !75

commit eb93362226de19106faf49a59cfc6fb641c208ee
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue May 10 12:27:05 2022 +0200

    panel: Do not ask to hide panel if autohide count is positive
    
    This prevents an xfce4-panel-CRITICAL warning for example when dnd-ing a
    window button while the autohide count is positive for some reason (e.g.
    because of an urgency blinking).
    
    MR: !75

commit 798ed344e87dc5f9fc5b65018ef38e1c6a792193
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue May 10 10:56:16 2022 +0200

    libxfce4panel: Raise panel on urgency blinking
    
    Fixes: #48
    MR: !75

commit 0e9817d3133b8cca0728d5df024b97985c1b6e08
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon May 9 11:32:48 2022 +0200

    panel: Add autohide count at application level
    
    Generally speaking, this is a notion that is missing in the code,
    because the autohide count can be changed for all windows at once, or
    for a particular window.
    
    This is especially required when a new window is created from the
    preferences dialog, and its autohide count needs to be set to the level
    of the other windows. Otherwise, it may go negative when the dialog is
    closed, triggering an xfce4-panel-CRITICAL warning.

commit 0db1d7efa47dc5b6bda2fe977e5d988ce84aa0a2
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun May 8 23:33:34 2022 +0200

    panel: Autohide when counter reaches zero only if pointer is outside
    
    This prevents the panel from hiding and then reappearing after the
    context menu of external plugins is displayed, when the pointer is
    inside the panel.
    
    MR: !75

commit d913fade7eca21b33f4dcc7f325f2224a4b6abe0
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun May 8 23:02:13 2022 +0200

    panel: Normalize coding style
    
    MR: !75

commit a9075c22d8d20f72c73528a1f8211d17c952bb97
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun May 8 22:39:37 2022 +0200

    systray: Block autohide when the button menu is shown
    
    Helps: #116
    MR: !75

commit c27ef38c4a80f700c02e811a6f238cf6da862a63
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat May 7 19:22:13 2022 +0200

    panel: Block autohide when the panel is moved
    
    Fixes: #397
    MR: !75

commit 4228184fd85fcfd0792a2e60f7a68f80a9934446
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat May 7 19:13:57 2022 +0200

    panel: Get rid of `AUTOHIDE_BLOCKED`
    
    Preliminary refactoring to block autohide when the panel is moved.
    
    MR: !75

commit b217ffdaae15a6f7bd4b67c6fcfac8f06f337bbd
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri May 13 18:36:52 2022 +0200

    build: Fix intltool lock file problem during make distcheck
    
    See https://mail.xfce.org/pipermail/xfce4-dev/2022-May/032915.html

commit f3ed7a82788ecedf02138416c7ec558b91f22a93
Author: Anonymous <noreply@xfce.org>
Date:   Thu May 12 00:47:40 2022 +0200

    I18n: Update translation lt (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 662d4e4d8bec98341b1e16b89706ec2906d2a0c1
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed May 11 19:27:25 2022 +0200

    systray: Hide button menu if button is hidden by its app (Fixes #391)

commit 15c482dc41ad46669a39fdfb19f3b87b8ba27819
Author: Anonymous <noreply@xfce.org>
Date:   Wed May 11 12:49:11 2022 +0200

    I18n: Update translation en_GB (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3b7f0afd2a437521bd6b309c502f892ffb73636b
Author: carlos-ramos-73 <carlos.a.ramos.73@gmail.com>
Date:   Tue May 10 18:59:00 2022 -0700

    tasklist: Middle click minimize window groups
    
    MR: !76

commit 018067f201774d88d685bcc073da92a063a6423d
Author: carlos-ramos-73 <carlos.a.ramos.73@gmail.com>
Date:   Tue May 10 18:45:28 2022 -0700

    tasklist: Middle click close window groups
    
    Fixes: #322
    MR: !76

commit d3e0a50ecac0e98d0c474d00196736dbe57518f2
Author: Anonymous <noreply@xfce.org>
Date:   Mon May 9 12:48:21 2022 +0200

    I18n: Update translation zh_TW (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 69fee495d8e384504de983c99d66a7fe7fc91b93
Author: Anonymous <noreply@xfce.org>
Date:   Mon May 9 12:48:21 2022 +0200

    I18n: Update translation zh_CN (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d98bbef49099bdc67158256242de015d4e1d7a46
Author: Anonymous <noreply@xfce.org>
Date:   Mon May 9 12:48:21 2022 +0200

    I18n: Update translation sv (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 05eaf227e87d94b45afee22ec388396c20ba9094
Author: Sabri Ünal <libreajans@gmail.com>
Date:   Mon May 9 00:47:52 2022 +0200

    I18n: Update translation tr (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e0fbb7df5d7791f18b161f6d6157362770cd9104
Author: Anonymous <noreply@xfce.org>
Date:   Mon May 9 00:47:52 2022 +0200

    I18n: Update translation pt (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e7c56c2af4f0c19f4cef344a1a37d8ab604faae2
Author: Anonymous <noreply@xfce.org>
Date:   Sun May 8 00:47:38 2022 +0200

    I18n: Update translation nl (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f6cd97042798d2b9b7cba99756bf8cc09ef96f5f
Author: heskjestad <cato@heskjestad.xyz>
Date:   Sun May 8 00:47:38 2022 +0200

    I18n: Update translation nb (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9feb9205ee13ca3589fcfcdd14bd6a7ba8b92b83
Author: Anonymous <noreply@xfce.org>
Date:   Sun May 8 00:47:38 2022 +0200

    I18n: Update translation it (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 35db246dbf70e781a2d0931a488374c9cedafc01
Author: Anonymous <noreply@xfce.org>
Date:   Sun May 8 00:47:38 2022 +0200

    I18n: Update translation fr (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d5eeaf1131a6d8493c6e9ff9e03f77f87a2c4e3d
Author: Anonymous <noreply@xfce.org>
Date:   Sun May 8 00:47:38 2022 +0200

    I18n: Update translation de (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8cffb7b857a03ac6df5efc0807841311252bb3dc
Author: Anonymous <noreply@xfce.org>
Date:   Sun May 8 00:47:38 2022 +0200

    I18n: Update translation bg (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8726acbb94b7716684072aebf1d50d07103670fb
Author: Anonymous <noreply@xfce.org>
Date:   Sat May 7 12:49:01 2022 +0200

    I18n: Update translation sq (99%).
    
    458 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d8ede49c7122d0824858df50725d3721a380e67b
Author: Anonymous <noreply@xfce.org>
Date:   Sat May 7 12:49:01 2022 +0200

    I18n: Update translation pl (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bafc0ceb8f118eef6b4243d71ab1961ec9649182
Author: Anonymous <noreply@xfce.org>
Date:   Sat May 7 12:49:00 2022 +0200

    I18n: Update translation ja (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6d2f64a138114d95b0dcd4c300b3d8c308de237b
Author: Anonymous <noreply@xfce.org>
Date:   Sat May 7 12:49:00 2022 +0200

    I18n: Update translation es (100%).
    
    459 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e276637e5ff38cf52ca70b6bdaef49caa4e3e7aa
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat May 7 09:43:27 2022 +0200

    Complete a previous commit
    
    An oversight in e53bc7143008fc808a284530669c561b73a040d5.

commit 1e6ad10cd9b0600974e1a2f913c6b87be1cc7a38
Author: carlos-ramos-73 <carlos.a.ramos.73@gmail.com>
Date:   Fri May 6 17:23:10 2022 +0000

    tasklist: Middle click opens new instance
    
    This allows for opening a new instance via middle click if configured.
    Also works with groups and task menu.
    
    Fixes: #166
    MR: !72

commit 1180fb9dbee975e3d21886fdd5c9eea06c9d7e79
Author: Martin Srebotnjak <miles@filmsi.net>
Date:   Thu May 5 00:47:50 2022 +0200

    I18n: Update translation sl (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0d4603d76103a7734080b83c7c4220b55bf1206b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed May 4 16:23:27 2022 +0200

    launcher: Use same icons for item list as in prefs dialog (Fixes #415)

commit 7ed61b9d96b007efaeab72a483b42705d382ebb6
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed May 4 15:28:31 2022 +0200

    launcher: Make add dialog consistent with panel add dialog (Fixes #416)

commit c093c0774b8ed2553a61fee74f58bb8a4a74e173
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue May 3 23:22:24 2022 +0200

    tasklist: Fix context menu position in deskbar mode (Fixes #417)

commit 9c8c87a0fe41632f5121b2c7ac63527892377a95
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue May 3 15:25:31 2022 +0200

    systray: Display square systray icons on multiple rows
    
    A minimal fix to make systray consistent with status notifier in
    multirow mode.
    
    Fixes: #426

commit ebc66d595769437ba48a770dce92add89eac434e
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun May 1 20:50:36 2022 +0200

    panel: Do not rely on borders to trigger autohide animation
    
    Fixes https://bugzilla.xfce.org/show_bug.cgi?id=16064. The old fix is
    reverted in the previous commit.

commit d6fa280fbb8388d8d74be697ed05888cf92b9b50
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun May 1 18:59:53 2022 +0200

    Revert "Fix autohide with bg color or image (Bug #16064)"
    
    This reverts commit b39978985b90c5c3478aea8fab484d2f2707c4ac, which
    introduced regressions. The next commit fixes bug #16064 avoiding these
    problems.
    
    Fixes: #435, #512

commit 97894c260e81bd6179632d64adb1029818e8d7b0
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Apr 19 16:07:22 2022 +0200

    tasklist: Hide wireframe on window buttons
    
    This prevents the wireframe from interfering with the receipt of pointer
    events on the window buttons, which trigger its display. Without this,
    an infinite loop can occur where one leaves the button to enter the
    wireframe when it is displayed, causing it to be hidden and thus
    re-entering the button, etc.
    
    Fixes: #543
    MR: !70

commit 4e4c018bfeadfd3841842617ab80f3067ebc2809
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Apr 25 20:39:34 2022 +0200

    systray: Fully honor symbolic icon priority
    
    No reason not to prioritize them in this case too.
    
    MR: !73

commit 40010a6f51c7394171c5df328c7fb1f42f4a6501
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Apr 25 20:34:00 2022 +0200

    systray: Simplify `sn_icon_box_apply_icon()`
    
    This is not supposed to introduce any functional change.
    
    MR: !73

commit 320e7dc80d3d0c59c6866f4668223bb3adcf798d
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Apr 25 20:26:36 2022 +0200

    systray: Consider the specified icon size as maximum
    
    Helps: #571
    MR: !73

commit 7ae4c9e00d1d2303ad5bbffbd21283cf8ff221ee
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Apr 25 20:19:00 2022 +0200

    systray: Do not treat symbolic icon size separately
    
    Helps: #571
    MR: !73

commit 8c81b52c1e5ea2cda684c94838ed1990402307b0
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Apr 25 20:04:23 2022 +0200

    systray: Remove artificial icon size increase
    
    This allows the icon size announced in the preferences dialog to match
    the actual size, consistent with the panel size.
    
    Helps: #571
    MR: !73

commit ea3aa662f6ad172fa77d2f1e0d4d166212c3d66f
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Apr 26 08:08:37 2022 +0200

    systray: Disable broken smooth scroll with Xfwm4
    
    It actually works in some cases, like double finger scroll on touchpads,
    but it doesn't seem possible to identify these cases a priori to specify
    or not the `GDK_SMOOTH_SCROLL_MASK` flag. So it's better to remove it
    until the Xfwm4 bug is solved.
    
    Fixes: #411
    MR: !74

commit 79b9d9161a89821179f6a29edddc020b0f1efbe3
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun May 1 09:44:36 2022 +0200

    prefs-dialog: Filter out irrelevant selection changes in "Items" tab
    
    This fixes in particular critical warnings when you are in the "Items"
    tab, there are two panels, and you switch from one to the other via the
    combo box.

commit f8574192368c8993e58e290401d4b91f3911b87f
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Apr 30 18:44:08 2022 +0200

    wrapper: Ensure that provider stays alive when processing "g-signal"
    
    The race condition probably never appears in normal use of the panel,
    but it is quite easy to make it appear when running the panel in
    Valgrind (by dropping the plugin quickly).

commit 1513a76df3906178053d57678dce5a110261a343
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Apr 30 18:37:20 2022 +0200

    Revert "panel: Keep a reference on item during drag and drop"
    
    This reverts commit 279fdc587fafdc2fde7963a3a62a2cd4f6516127. This was a
    red herring: a reference is already kept in `xfce_widget_reparent()`,
    called in `panel_application_drag_data_received()`. The problem can
    actually still be reproduced after that, and the real fix is given in
    the next commit.

commit d422b7674b279c971bb6c150e3f653321fe1de3a
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 29 00:47:47 2022 +0200

    I18n: Update translation en_GB (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 90eaed1bcd3f37f902a50e2c48b0a9ca99d7b0a7
Author: Anonymous <noreply@xfce.org>
Date:   Wed Apr 27 12:48:47 2022 +0200

    I18n: Update translation el (99%).
    
    457 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 06c38372ee3e0005e6cfbd75f2b0fc6ed4f195df
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Apr 26 17:12:39 2022 +0200

    panel: Fix oversight in previous commit

commit e8fcafde05cd4da5202293077d69f967cb8e03e8
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Apr 26 12:32:56 2022 +0200

    panel: Clear opaque region so compositor properly apply transparency
    
    Fixes: #378, #427

commit e53bc7143008fc808a284530669c561b73a040d5
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Apr 26 10:21:31 2022 +0200

    Fix `gdk_rgba_to_string()`-related memory leaks

commit 837e9e63ceb921e122b584270df401b6ebf36460
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Apr 26 10:16:34 2022 +0200

    panel: Refactor background setters
    
    * A function should not be in charge of releasing its parameters.
    * Normalize coding style.

commit 5e0eee40a79f55793a5137b26959516fae10a2de
Author: Elishai Eliyahu <elishai@mailfence.com>
Date:   Tue Apr 26 00:47:39 2022 +0200

    I18n: Update translation he (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7f10313f2a429dc247d0edec2ac685a7298d37cf
Author: Anonymous <noreply@xfce.org>
Date:   Mon Apr 25 00:47:45 2022 +0200

    I18n: Update translation en_GB (90%).
    
    413 translated messages, 45 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4181cf8eedca7aee4db0936f5697a91a3aa891a4
Author: Anonymous <noreply@xfce.org>
Date:   Sun Apr 24 12:49:16 2022 +0200

    I18n: Update translation ms (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b47b3d010b7125d6e0bf9ae3222d46eedc143af6
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Apr 23 18:20:58 2022 +0200

    systray: Load icon from theme at desired size
    
    Trying to load first at "real size" was introduced in
    panel-plugins/xfce4-statusnotifier-plugin@72563d96 without rationale,
    and specifying -1 for the icon size does not seem to be documented. As
    this may prevent the icons from scaling properly afterwards, this commit
    reverts this change.
    
    Fixes: #463

commit 7dce10cb421d6e273fc84a2b1cd3d13962db9e3e
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Apr 23 13:37:32 2022 +0200

    panel: Take window scaling into account for intellihide
    
    Fixes: #465
    MR: !71

commit fa999df6b998657d722a1ba30971e25e07e1bc8a
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Apr 23 13:34:13 2022 +0200

    panel: Force external plugins to fully re-render on scale change
    
    Fixes: #486
    MR: !71

commit 329fbf9f5523d7f768a44b3c1dd4e61b0091a6ab
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Apr 23 13:09:29 2022 +0200

    panel: Add a PanelWindow property to take into account window scaling
    
    MR: !71

commit 042c61b51d093de9a37ed6bd7a154620390753a4
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Apr 23 12:56:28 2022 +0200

    panel: Fix a memory leak

commit 5c4f90c99b51f14f97bc424a12b0502a46799f54
Author: Gaël Bonithon <gael@xfce.org>
Date:   Thu Apr 21 12:58:49 2022 +0200

    clock: Prevent visual glitch when showing calendar window
    
    The "show" signal is flagged `G_SIGNAL_RUN_FIRST`, so handlers connected
    to it are invoked when the window is already shown. Window
    pre-positioning should be done on "realize" instead.
    
    Fixes: #466

commit 7f40d5dd9c72a540cafef6b9042e6497b6aa56c5
Author: Anonymous <noreply@xfce.org>
Date:   Thu Apr 21 00:48:49 2022 +0200

    I18n: Update translation pt_BR (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 52f09288921d7f0bec604d0f7857f1f0f501d45c
Author: Anonymous <noreply@xfce.org>
Date:   Wed Apr 20 12:48:02 2022 +0200

    I18n: Update translation el (99%).
    
    457 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 99369aee059844761e671cac4261ab0e13f797cc
Author: Anonymous <noreply@xfce.org>
Date:   Wed Apr 20 00:47:38 2022 +0200

    I18n: Update translation el (99%).
    
    457 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cc5aecd75f3858eda8ce5f080e846fde925928d5
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Apr 19 10:06:59 2022 +0200

    tasklist: Fix wireframe for CSD windows (v2)
    
    This amends 46239d1637056cbfe9b9f0d75017c97a7b2b7d82, to use
    `gdk_x11_window_foreign_new_for_display()` instead of
    `gdk_x11_window_lookup_for_display`, so that the GdkWindow wrapper for
    the native window is created if it does not already exist.
    
    Fixes: #562

commit 736a89c0d5c40cbd4017f2e0912ff20e20d3fec6
Author: Anonymous <noreply@xfce.org>
Date:   Mon Apr 18 12:48:13 2022 +0200

    I18n: Update translation el (99%).
    
    456 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ed807119756c62786254163208942c4f8273db5b
Author: Sabri Ünal <libreajans@gmail.com>
Date:   Mon Apr 18 00:47:39 2022 +0200

    I18n: Update translation tr (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b959ab775c7ed6e7f5f2605c99f31a3c9c57ea66
Author: Anonymous <noreply@xfce.org>
Date:   Mon Apr 18 00:47:38 2022 +0200

    I18n: Update translation pa (59%).
    
    273 translated messages, 185 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 452b8c53134da800e12e4a8a98b37e9ec286b148
Author: Stathis Kamperis <ekamperi@auth.gr>
Date:   Mon Apr 18 00:47:38 2022 +0200

    I18n: Update translation el (99%).
    
    456 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bba2dca83c0c7466c8e5403588f5355aaee281eb
Author: Anonymous <noreply@xfce.org>
Date:   Sun Apr 17 12:48:26 2022 +0200

    I18n: Update translation el (99%).
    
    456 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c04c0f38eb8b6ad122a9d62cae361165945e0139
Author: Anonymous <noreply@xfce.org>
Date:   Sun Apr 17 00:47:45 2022 +0200

    I18n: Update translation sr (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 03800e58a8ef748ea59267cd19d908938821334e
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Apr 16 22:44:08 2022 +0200

    systray: Check that the proxy exists when invalidating item
    
    Previous commits have removed possibles calls to `sn_item_invalidate()`
    in `sn-item.c` when the proxy has not yet been created. But there is
    still a possible call from `sn-backend.c`, in response to a
    "status-notifier-item-registered" signal, for which we cannot ensure
    that the proxy already exists.
    
    It is therefore better to make this check legal, rather than generating
    irrelevant warnings in this case.

commit 884bae9147c370cb6d910765c71750a794715fa4
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Apr 16 13:31:00 2022 +0200

    Back to development

commit 68947d5364ee175b04325cbfd20c0d0a596eabbc
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Apr 16 13:29:49 2022 +0200

    Updates for release

commit 5d50e808fcd328b07e2cfa691371496702dfe35c
Author: Anonymous <noreply@xfce.org>
Date:   Sat Apr 16 12:47:42 2022 +0200

    I18n: Update translation ru (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4e5100c501bc96f7e2cf08f35744cfd357f64080
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Apr 16 11:44:42 2022 +0200

    Update copyright year and standardize formatting

commit 826b161dddfa37204fadfe38de5b5a9bede7385a
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Apr 16 11:42:02 2022 +0200

    Update and sort author list by name

commit 6ef2c51de04f639bdb4672ed85292aac5e9f5cc8
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Apr 16 11:39:21 2022 +0200

    Remove unused project files

commit 9976a45fa97353257a83ee95f9435b61549041a3
Author: Gaël Bonithon <gael@xfce.org>
Date:   Thu Apr 14 17:21:04 2022 +0200

    panel: Fix regression "intellihide does not hide when leaving slowly"
    
    Regression introduced in 29a637fe2084799601ad1e431ccd7c670162eb92.
    The "leave-notify-event" signal can be emitted when the pointer is on
    the border of the panel.
    
    Fixes #388, related to !7.

commit 39a0154ad82d02dae355bf2e67f6049c1117c0b3
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Apr 13 17:45:43 2022 +0200

    panel: Fix regression "'Span Monitor' has no effect"
    
    Regression introduced in a24b0214c9218ab39581d0e40b1b441913d631f7,
    where the string comparison with "Automatic" has been forgotten at this
    place.
    
    The feature could sometimes work despite this since then, because when
    a new panel is created, the "output-name" property is left empty in
    Xfconf, even though it appears as "Automatic" in the panel preferences
    dialog. But as soon as the preference was changed, the feature was
    broken.
    
    Fixes #405.

commit 279fdc587fafdc2fde7963a3a62a2cd4f6516127
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Apr 13 12:44:28 2022 +0200

    panel: Keep a reference on item during drag and drop
    
    This is only useful when drag-and-dropping between different panels, and
    it doesn't seem to be really necessary in normal use. However, running
    the panel in Valgrind shows that the item can be released before
    reaching its target, so we have to keep an extra reference during the
    move.

commit 878fd64f6f8bbeec5bf178af92533241c8e04f08
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Apr 13 11:20:54 2022 +0200

    panel: Fix a memory leak

commit cc9cb97993c116908c9aaf3c88da34b6eb3c01d3
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Apr 12 16:49:36 2022 +0200

    systray: Do not apply icon if not yet set
    
    This is unlikely to happen during normal use of the panel, but when it
    is run in Valgrind, the slowdown can be significant enough to encounter
    this problem.

commit d99c2a8dae9bdb35211750d9bae6ce7cf05a0ff9
Author: Avinash Sonawane <rootkea@gmail.com>
Date:   Tue Apr 12 10:57:11 2022 +0000

    Fix `deadcode.DeadStores` warnings from `scan-build`
    
    Co-authored-by: Gaël Bonithon <gael@xfce.org>

commit 02afb867dc4797566b80ab469e66fee4142025ff
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Apr 12 10:08:35 2022 +0200

    Fix `core.UndefinedBinaryOperatorResult` warning from `scan-build`

commit 2f78e36012eed98b6a09c073300556b0663b70fd
Author: Avinash Sonawane <rootkea@gmail.com>
Date:   Tue Apr 12 10:15:59 2022 +0000

    Fix `core.NullDereference` warning from `scan-build`
    
    Also fixes a memory leak, by the way.
    
    Co-authored-by: Gaël Bonithon <gael@xfce.org>

commit 5f24f9452910601efbe4587999ae691fd491045c
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Apr 12 00:11:34 2022 +0200

    panel: Fix broken drag and drop between panels
    
    A never released regression introduced in
    6b671b0d03a353fae93ff09a769cab27a66018ac.
    
    Fixes #561, related to !46.

commit 6b0fe43729038ab99bb8ae2f5a985783981a895d
Author: heskjestad <cato@heskjestad.xyz>
Date:   Sun Apr 10 00:47:42 2022 +0200

    I18n: Update translation nb (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0367d3d89efa9b600788d8334cdaf73cfe8d9d08
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Apr 8 20:14:13 2022 +0200

    systray: Only activate item under mouse
    
    Same issue as #519 for systray items, same fix as
    a3c3116676a239ee194ac969608959ce993e0629.

commit a11cf6a1f9ed87d93153629926464657021a364f
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Apr 8 19:31:11 2022 +0200

    Bump minimal required Garcon to 0.8.0 (v2)
    
    An oversight in de56ba0733446e1de3abd544dda555af4161f78a.

commit e833bc8820aa8efe951a62353b89adc36724ea75
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Apr 8 18:49:44 2022 +0200

    Use GLib structured logging
    
    Suitable for viewing logs in tools such as `journalctl`, in particular
    adding location information to the message.
    
    Requires `GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_56` to work
    properly in GLib logging macros (not documented, see
    `glib/gmessages.h`).

commit 8b604611c2f657cbf0fd05760a2b180b6b41bb87
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Apr 8 15:09:04 2022 +0200

    Use a normalized URI internally for the background image
    
    This avoids character escaping problems, for example when using the URI
    in CSS code. Before this change, it was not possible to use an image
    whose name contained a single quote.
    
    It is still possible to specify a file path via Xfconf as before, and it
    becomes additionally possible to specify an URI (in fact all
    possibilities accepted by `g_file_new_for_commandline_arg()` to build a
    GFile). So this should not cause any backward compatibility problems.

commit 84857f2b3ccf13e5caec05e6682824eda5faeeb7
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Apr 8 09:58:42 2022 +0200

    panel: Disconnect from screen signals when window is destroyed
    
    This could cause use-after-free, reproducible for example by
    enabling/disabling compositing after removing a panel.

commit 22af9ae71d362f5ba7c15ec2ff178c45e971d434
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Apr 8 09:21:12 2022 +0200

    Fix ignored `*.desktop.in` in `.gitignore`

commit abae51d8b9e8a65939e9905a20c6dfe38d367fee
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Apr 8 08:48:18 2022 +0200

    systray: Do not connect to proxy signal if async method failed
    
    There is a short period of time between the connection to the signal and
    the destruction of the item where the callback can be called while
    `item->properties_proxy` is `NULL`.

commit 74b4d920347d108fb23bf7892b3618c89f6ff8da
Author: Graeme Gott <graeme@gottcode.org>
Date:   Thu Dec 23 09:39:54 2021 -0500

    actions: Lay out buttons in grid for deskbar (Fixes #437)
    
    The action buttons are still placed in a single row or column for
    horizontal or vertical panels. In deskbar panels, the buttons are now
    placed next to each other horizontally and wrapped at the number of
    panel rows.

commit 5611ea6e4c1732ea20b8e7d22db56fc0cd2b3b47
Author: Anonymous <noreply@xfce.org>
Date:   Thu Apr 7 00:47:43 2022 +0200

    I18n: Update translation uk (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 691265b38371d2e7cce8ea95946352f1537acaff
Author: Anonymous <noreply@xfce.org>
Date:   Wed Apr 6 12:48:48 2022 +0200

    I18n: Update translation zh_TW (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f7fbf71e3e4f6a6da3cb46a904713b46ca951715
Author: Anonymous <noreply@xfce.org>
Date:   Wed Apr 6 00:47:39 2022 +0200

    I18n: Update translation sv (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 111922a6b1f8ae484170ae644bb59603aef37f49
Author: Anonymous <noreply@xfce.org>
Date:   Tue Apr 5 12:48:21 2022 +0200

    I18n: Update translation es (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c6d1a30c67a4db7e0dccc4fbb8feab4a0db57a88
Author: Anonymous <noreply@xfce.org>
Date:   Tue Apr 5 00:48:20 2022 +0200

    I18n: Update translation pt (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit def7fb362533f54e1fb17d6dc916648550e3c843
Author: Anonymous <noreply@xfce.org>
Date:   Tue Apr 5 00:48:20 2022 +0200

    I18n: Update translation et (99%).
    
    456 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 90120883abc6b61a312b9bc8bd2f6f2156aa92e0
Author: Rory Fewell <roryfewell@hotmail.com>
Date:   Mon Apr 4 18:58:26 2022 +0000

    wrapper: Rework widget drawing
    
    Rather than having a custom paint method, just use CSS rules (like the
    panel itself does) and let GTK handle it. This allows the system theme
    to work correctly, and XFCE settings to override.
    
    `background` CSS shorthand is used to make sure things like
    `background-repeat`, `background-size`, etc., are default rather than
    system theme when overriding via XFCE settings.
    
    Fixes #520.

commit 0e2bed9e141bd09de7a5b281625d59c56ce4eb43
Author: Anonymous <noreply@xfce.org>
Date:   Mon Apr 4 12:48:50 2022 +0200

    I18n: Update translation nl (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 28fa23a744fc336a816a28a6515fe85d0188fed4
Author: Anonymous <noreply@xfce.org>
Date:   Mon Apr 4 12:48:50 2022 +0200

    I18n: Update translation lt (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d6eee1fd782ce4912a3e5c4b916cad2c3d2af7e9
Author: Anonymous <noreply@xfce.org>
Date:   Mon Apr 4 12:48:50 2022 +0200

    I18n: Update translation bg (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 149f2b0a0d57f3cc04b58e78ec515cfe321f46cd
Author: Anonymous <noreply@xfce.org>
Date:   Mon Apr 4 00:47:42 2022 +0200

    I18n: Update translation it (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ef7b87895146906fbbb54887b2f41b77ac0eb734
Author: Anonymous <noreply@xfce.org>
Date:   Mon Apr 4 00:47:42 2022 +0200

    I18n: Update translation fr (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 21d92e5b498264ad662fbac2329d322a8d42658b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Apr 3 18:44:47 2022 +0200

    Revert "pager: Fix Wnck version check"
    
    This reverts commit d5c3746a4610ee12ab947001ba6cf076d38dfe57.

commit d5c3746a4610ee12ab947001ba6cf076d38dfe57
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Apr 3 18:21:17 2022 +0200

    pager: Fix Wnck version check
    
    `wnck_pager_set_scroll_mode()` is available since 3.36.0 and 3.40.0 does
    not exist (next release is 40.0).

commit 4656aac5fc2c6ed165d922bdb68e19d5d5732d3c
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Apr 3 18:07:41 2022 +0200

    Remove obsolete Exo version checks
    
    This dependency was added back in
    8a33dd8f794dea46a550498271a37398b50c60fc.

commit de56ba0733446e1de3abd544dda555af4161f78a
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Apr 3 18:05:12 2022 +0200

    Bump minimal required Garcon to 0.8.0 i.e. Xfce 4.16

commit e7ba2860015bff1ea92744cf3f177fb9a385f42f
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Apr 3 18:04:43 2022 +0200

    Remove obsolete GTK version checks

commit cc7bebf21198fa87e206c1052cc815f2dd6fcecf
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Apr 3 17:24:13 2022 +0200

    Use GLIB_VERSION_MIN/MAX_REQUIRED/ALLOWED

commit d327feb1515da2ec482ea6e023d3f7e63784f3ac
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Apr 3 17:03:18 2022 +0200

    autoconf: Some updates
    
    * AC_HELP_STRING -> AS_HELP_STRING.
    * Remove AC_HEADER_STDC.
    * Protect AC_DEFINE parameters so it doesn't break syntax highlighting
      in some text editors.

commit b082990032326c792249d155bd1b2145b66b21a6
Author: budRich <robstenklippa@gmail.com>
Date:   Sun Apr 3 15:12:03 2022 +0000

    windowmenu: Emit "deactivate" signal when hiding the menu
    
    This triggers a post-processing callback, which in particular
    deactivates the menu button.
    
    Fixes #22.

commit c072947cea01f98cdd1d47152aa02bee0651a123
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Apr 3 16:37:33 2022 +0200

    libxfce4panel: Silence `-Wredundant-decls` warnings
    
    Fixes #495.

commit 86fe9f4a36868ae14b341955bc0be09007aad74b
Author: Anonymous <noreply@xfce.org>
Date:   Sun Apr 3 12:48:57 2022 +0200

    I18n: Update translation zh_CN (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5c06c2c6a59e72713852acdc202b297e54408c15
Author: Anonymous <noreply@xfce.org>
Date:   Sun Apr 3 12:48:57 2022 +0200

    I18n: Update translation sq (99%).
    
    457 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 771dd33a5f6f8b56e7e5e8a70b9ba1941cd05ead
Author: Anonymous <noreply@xfce.org>
Date:   Sun Apr 3 12:48:57 2022 +0200

    I18n: Update translation pl (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c5f1eacb774e2905593130e2b67b4e994ec83d11
Author: Anonymous <noreply@xfce.org>
Date:   Sun Apr 3 12:48:57 2022 +0200

    I18n: Update translation ja (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5bdc8cb3dfed4a83bd697f37e27f0e679b0a1ffd
Author: Anonymous <noreply@xfce.org>
Date:   Sun Apr 3 12:48:57 2022 +0200

    I18n: Update translation de (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit eafebf37f28f9cb387337629140c4b615336c33b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Feb 2 18:53:44 2022 +0100

    systray: Fix wrong sanity check

commit 8128cb94746544b2ef41ed1f8d989ce050c18b25
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Feb 2 18:46:15 2022 +0100

    systray: Properly initialize systray item

commit e3504540487e6f65d9869e203e547e551e49982b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Jan 26 20:16:04 2022 +0100

    systray: Trust the status to update the attention icon
    
    Fixes #392.

commit faff2afede83ccf0488c70ef57d1450c19b4c0ca
Author: Martin Bradley <martsbradley@googlemail.com>
Date:   Sat Apr 2 19:17:15 2022 +0000

    tasklist: Add a setting to control the display of tooltips
    
    Closes #548.

commit b4b9ae565546ddbf3935593dc2223f214ceea3e1
Author: Taras Panchenko <top39@ukr.net>
Date:   Fri Apr 1 00:47:36 2022 +0200

    I18n: Update translation uk (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f8325e79c5c22790a0415bf15e3c7d41f8f5f3fd
Author: Martin Srebotnjak <miles@filmsi.net>
Date:   Sun Mar 27 00:47:28 2022 +0100

    I18n: Update translation sl (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6125580bb47818b53c80a7badb4c370e6b800ebc
Author: Anonymous <noreply@xfce.org>
Date:   Sun Mar 20 00:47:32 2022 +0100

    I18n: Update translation da (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6cb5bde805fd1ad16ae7dbd7be8ad17ad783006b
Author: Faisal Rachmadin <frachmadin@gmail.com>
Date:   Thu Mar 17 00:48:24 2022 +0100

    I18n: Update translation id (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4e257727605e281dadbb1c6ba7347536ddd19bb0
Author: Anonymous <noreply@xfce.org>
Date:   Sat Mar 12 12:47:47 2022 +0100

    I18n: Update translation ru (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d142ea64c66a6fe2ffdc1e286f82658b4600a22a
Author: Anonymous <noreply@xfce.org>
Date:   Sat Mar 12 00:47:48 2022 +0100

    I18n: Update translation da (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3f7d625a2fe603da91b849625d215af98f5fc28b
Author: Andre Miranda <andre42m@gmail.com>
Date:   Wed Mar 9 00:47:34 2022 +0100

    I18n: Update translation pt_BR (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9881894b9588d36da69901f15215009c8debf1ac
Author: fulalas <rcd99@zipmail.com.br>
Date:   Fri Feb 18 19:07:46 2022 +0000

    Fixed some window buttons not appearing in the panel (Issue #188)

commit bac92d5d4b40e3da890c9a4a1a63aa06220138aa
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Mon Feb 14 12:49:47 2022 +0100

    I18n: Update translation et (99%).
    
    455 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ada213b9f69909c773af1d07be76f6971656f3c9
Author: Anonymous <noreply@xfce.org>
Date:   Sun Feb 13 00:47:59 2022 +0100

    I18n: Update translation eu (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b6203a5883f765ad455d80c69fd797cbb28af4b4
Author: Demiray Muhterem <mdemiray@msn.com>
Date:   Sat Feb 12 12:48:41 2022 +0100

    I18n: Update translation tr (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6f5f3e4374e803cf17ba098b4ca6cdc8fc77a7af
Author: Anonymous <noreply@xfce.org>
Date:   Sat Feb 12 12:48:41 2022 +0100

    I18n: Update translation fr (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7a4ce1dc02fda0b528d1ac1d3ab92d61bd20dcc0
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Fri Feb 11 12:48:18 2022 +0100

    I18n: Update translation zh_CN (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2dbbfc97c402623125e163bce05c6cf32a38e602
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Fri Feb 11 00:47:24 2022 +0100

    I18n: Update translation sr (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bd53f117afe4a318d964e98469d1bc093b8b1aee
Author: Toni Estévez <toni.estevez@gmail.com>
Date:   Fri Feb 11 00:47:24 2022 +0100

    I18n: Update translation es (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6f82b0751886ee6c2df2a11c273f7ec5de1e62c5
Author: heskjestad <cato@heskjestad.xyz>
Date:   Thu Feb 10 00:47:24 2022 +0100

    I18n: Update translation nb (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 477a068601306db8c4db2804c9373e5559106772
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Wed Feb 9 12:48:03 2022 +0100

    I18n: Update translation nl (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 21ccd96450d154484b0637623f1f9ead6f358e52
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Wed Feb 9 12:48:03 2022 +0100

    I18n: Update translation bg (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d43e96de19f50d1158deb45b9d0a08ff30c8aef7
Author: Luna Jernberg <bittin@cafe8bitar.se>
Date:   Wed Feb 9 00:47:31 2022 +0100

    I18n: Update translation sv (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 20e8753d878ad94760ed0f4c4740eabb461bf1f4
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date:   Wed Feb 9 00:47:31 2022 +0100

    I18n: Update translation pt (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ec217e899c43f70d07a61cfd18d6495f3514c92b
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date:   Wed Feb 9 00:47:31 2022 +0100

    I18n: Update translation it (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bf696d37742f3bfff2b0e78c05b9e98f549494ab
Author: Andreas Eitel <github-aneitel@online.de>
Date:   Wed Feb 9 00:47:31 2022 +0100

    I18n: Update translation de (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 43dbb3e0fddccb6ac32012ee55396f5d46488eec
Author: 黃柏諺 <s8321414@gmail.com>
Date:   Tue Feb 8 12:48:53 2022 +0100

    I18n: Update translation zh_TW (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 430aa30ccb4c2e0a96f3f20daaa4ba0ad0d24009
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:52 2022 +0100

    I18n: Update translation zh_HK (90%).
    
    412 translated messages, 45 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit facbd2524e04efa9cc188a96dda6480d09b04968
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:52 2022 +0100

    I18n: Update translation zh_CN (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b5af86aac687b67c2ecec874888bc2b3ff016cd2
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:52 2022 +0100

    I18n: Update translation vi (66%).
    
    304 translated messages, 153 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 86fff7daabcdc080cf7fa5c797c1b8547b55f5ad
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:52 2022 +0100

    I18n: Update translation uk (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bcec767dd3cc019c33f507ac24ae2da6c574e3c3
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:52 2022 +0100

    I18n: Update translation ug (82%).
    
    376 translated messages, 81 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4f748e542b9b58daa0f58fa53c67ba50f88b6a6d
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:52 2022 +0100

    I18n: Update translation tr (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit db6bfacbca5fb4e434e2d24b82264b9b2cf62f35
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:52 2022 +0100

    I18n: Update translation th (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bb93568f25da23dd734677682cd0d0a86974692d
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:52 2022 +0100

    I18n: Update translation sv (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d4161de870d900f0dbc328509a683e1dbf9afd74
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:51 2022 +0100

    I18n: Update translation sr (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d98a91a27869519d08484010e728ea15247168e6
Author: Besnik Bleta <besnik@programeshqip.org>
Date:   Tue Feb 8 12:48:51 2022 +0100

    I18n: Update translation sq (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit eae93e4193fe010cb71c55a10fb689436528af41
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:51 2022 +0100

    I18n: Update translation sl (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 58c18ce3c81a01457c4623dcf6c2094c1bb5a53f
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:51 2022 +0100

    I18n: Update translation sk (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 82c675560e094a040478a09dbb2c418bacbc4c39
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:51 2022 +0100

    I18n: Update translation si (59%).
    
    273 translated messages, 184 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 51dc9f1e051b784ac429d9759ee12c419af2abac
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:51 2022 +0100

    I18n: Update translation ru (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 51f2c4a76ea55940a581893ea12a837f1f59820f
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:51 2022 +0100

    I18n: Update translation ro (83%).
    
    382 translated messages, 75 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 12a3fc6e18f7d6a1b602976d55f08a875d0d1b35
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:50 2022 +0100

    I18n: Update translation pt (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8e0b93d260e0da25cd9f75c45b397221ff1b752e
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:50 2022 +0100

    I18n: Update translation pt_BR (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 83df9dee08fa4310573ab129047d5e673658f414
Author: Anonymous <noreply@xfce.org>
Date:   Tue Feb 8 12:48:50 2022 +0100

    I18n: Update translation pl (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9262dc10a10e5815a11f9ca4bea34d171816caf5
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:50 2022 +0100

    I18n: Update translation pa (59%).
    
    272 translated messages, 185 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 712742053a67a59da4624a71280dbb8b0b78f93c
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:50 2022 +0100

    I18n: Update translation oc (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cd18fad3d05452d165141db89c79ec6a601ce88b
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:50 2022 +0100

    I18n: Update translation nn (92%).
    
    424 translated messages, 33 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ef884059131e0ec92b965af31c6969a386d5f96d
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:50 2022 +0100

    I18n: Update translation nl (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ed85a2d2830517ab726b06d480efb90086e1d58c
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:49 2022 +0100

    I18n: Update translation nb (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8bc6977d22544e6bc8cb809d29069e49288dc9a2
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:49 2022 +0100

    I18n: Update translation ms (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f679549eb624852a763f8f7af497276e3b0da0ca
Author: Anonymous <noreply@xfce.org>
Date:   Tue Feb 8 12:48:49 2022 +0100

    I18n: Update translation lt (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 646609d9f80d876ce7686a6fdcd484f3f214b0aa
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:49 2022 +0100

    I18n: Update translation ko (94%).
    
    431 translated messages, 26 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5a2ed0b0ca644f292476cacac13672c4cc8820d0
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:49 2022 +0100

    I18n: Update translation kk (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 97102bd9761b7590ca9d774b35a9bc99eab79b3a
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:49 2022 +0100

    I18n: Update translation ka (60%).
    
    278 translated messages, 179 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 03d03cd42bcdf33736636965b43ec25c4ccada36
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date:   Tue Feb 8 12:48:49 2022 +0100

    I18n: Update translation ja (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c6815bc1e70bf015937e1aededf753e1cfa284f1
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:48 2022 +0100

    I18n: Update translation it (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 98d1637b8902c95a6aaa5435629490125efe8ab6
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:48 2022 +0100

    I18n: Update translation is (87%).
    
    401 translated messages, 56 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4886ec37b1a0ddb7c2802112f873ce34bbc86223
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:48 2022 +0100

    I18n: Update translation ie (96%).
    
    441 translated messages, 16 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dcba1d9358f5afbf9ba4e13639a0b34b85d8d6ee
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:48 2022 +0100

    I18n: Update translation id (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5f8760a1e6f03e1abb373f82d0d06f386b37c19b
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:48 2022 +0100

    I18n: Update translation hye (89%).
    
    411 translated messages, 46 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 93f470845c911c99a96444b21baf46c10d061a2c
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:48 2022 +0100

    I18n: Update translation hy_AM (93%).
    
    428 translated messages, 29 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 91934de62d0b23e620b4091054e76c80743be86b
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:48 2022 +0100

    I18n: Update translation hu (93%).
    
    429 translated messages, 28 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 28413dc7d857fef38993352fcf67bb2777062e48
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:47 2022 +0100

    I18n: Update translation hr (94%).
    
    432 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f091b96c9ee32d57d05ca0ffc80330550a1207f8
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:47 2022 +0100

    I18n: Update translation he (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 24a6e2590b8191ee14f31606ac143b69f6b5f287
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:47 2022 +0100

    I18n: Update translation gl (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1779ca351a6bf4011fdc5cc312c48a483fecf51c
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:47 2022 +0100

    I18n: Update translation fr (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5b41e52f54af0d5f399e4ac936b0d28c47801112
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:47 2022 +0100

    I18n: Update translation fi (94%).
    
    431 translated messages, 26 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 587cd4b96e268e95f4fbd91a7d6276229169ca7f
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:47 2022 +0100

    I18n: Update translation eu (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 464d619513781638fec0208e7f638a81d6b62a2b
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:46 2022 +0100

    I18n: Update translation et (99%).
    
    454 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c03545c6969ab958373ca8868e888c0916d77f62
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:46 2022 +0100

    I18n: Update translation es (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f36a6864a0fc33bea0c6b029870879c610a43953
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:46 2022 +0100

    I18n: Update translation en_GB (90%).
    
    412 translated messages, 45 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e3250d7a6038b079f8c403e5a4a6019f90163ada
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:46 2022 +0100

    I18n: Update translation en_AU (87%).
    
    401 translated messages, 56 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 567fc14298b6b9b5220a60eeee2277d74ce9e7c1
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:46 2022 +0100

    I18n: Update translation el (90%).
    
    412 translated messages, 45 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a02f2df361da47b5e059a3010e1c1bec89020eee
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:46 2022 +0100

    I18n: Update translation de (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 52fd237c4616d31d3ebdde636b4d18106c1c75a1
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:46 2022 +0100

    I18n: Update translation da (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8fccfded518851a74459aa90f29224a0e540e2fe
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:45 2022 +0100

    I18n: Update translation cs (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 86ad74d1a3bc8bf44c2c5c99c3928ee7932ff752
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:45 2022 +0100

    I18n: Update translation ca (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a40712f694762ba59a42e6ff4e8f31e97d77dc31
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:45 2022 +0100

    I18n: Update translation bn (63%).
    
    289 translated messages, 168 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5b99d243d25c4624265466af1534a6bdae7fabe5
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:45 2022 +0100

    I18n: Update translation bg (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6ebacb6096f5369b2bbc80834a135f118b083982
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:45 2022 +0100

    I18n: Update translation be (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 41ef392d1064fbe486ab6b925e6dbbe4e11e3551
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:45 2022 +0100

    I18n: Update translation ast (80%).
    
    369 translated messages, 88 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4e165a977b31bbc9b37c2a183f45a401437a57ff
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:45 2022 +0100

    I18n: Update translation ar (89%).
    
    407 translated messages, 50 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c38f310eb7a31f93af175c96966a764396bdef36
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 8 12:48:44 2022 +0100

    I18n: Update translation am (64%).
    
    296 translated messages, 161 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 018e055beb6febda1bc761ad4b11b2494b39f7b5
Author: Kevin Bowen <kevin.bowen@gmail.com>
Date:   Mon Feb 7 18:00:37 2022 +0000

    Remove ellipsis
    
    Fixes #480

commit d81b82b8da47f1d45de195fe3a449047074bc0cf
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jan 6 00:48:14 2022 +0100

    I18n: Update translation ro (83%).
    
    382 translated messages, 75 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a3c3116676a239ee194ac969608959ce993e0629
Author: Graeme Gott <graeme@gottcode.org>
Date:   Wed Dec 15 10:34:24 2021 -0500

    launcher: Only activate under mouse (Fixes #519)

commit 59496ec498bc57b02e49919fe79ca9f739dad19c
Author: Graeme Gott <graeme@gottcode.org>
Date:   Sun Dec 12 20:00:48 2021 -0500

    launcher: Clear action menu when destroyed (Fixes #540)

commit b09ace4bf13b33a0dcfb247af30469630096b24e
Author: Graeme Gott <graeme@gottcode.org>
Date:   Mon Dec 13 13:43:10 2021 -0500

    actions: Block panel autohide (Fixes #431)

commit 1e7bbc64110659166c16a299044c9a46efc725ed
Author: Anonymous <noreply@xfce.org>
Date:   Sat Nov 13 00:47:21 2021 +0100

    I18n: Update translation oc (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 16c4f7b4dc3dc7337eea3f6ac3ad1ee3186ce284
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Sat Nov 13 00:47:21 2021 +0100

    I18n: Update translation et (99%).
    
    455 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 23be8c8dbc9a4bb1e145573186d6be9d752d6ee6
Author: abuyop <abuyop@gmail.com>
Date:   Thu Sep 30 00:47:23 2021 +0200

    I18n: Update translation ms (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0f292c113030c9fcb8da62d82b997d0f9ff7519e
Author: Triyan W. Nugroho <triyan.wn@gmail.com>
Date:   Tue Sep 21 12:47:33 2021 +0200

    I18n: Update translation id (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2807b173207fe5aedc98bdabd3b14d98b8afd3e8
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Sep 4 00:57:40 2021 +0200

    panel: Fix grabs for popup commands (Fixes #201)

commit 6cfb3960e66f02ef6fc477694fb3baea806360c3
Author: Vahe Safaryan <vahe.safaryan@realschool.am>
Date:   Wed Aug 18 12:47:47 2021 +0200

    I18n: Update translation hy_AM (93%).
    
    428 translated messages, 29 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 61480da609fcb7f52439952a27a8c7c468000f6c
Author: Anonymous <noreply@xfce.org>
Date:   Mon Aug 9 00:47:07 2021 +0200

    I18n: Update translation pl (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 50280efcffe8a75a1aa942288fd2538850a016fe
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Jul 23 15:55:20 2021 +0200

    I18n: Update translation gl (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3e6372aa2269222d25f45cab0e50a7a50f890806
Author: Toni Estévez <toni.estevez@gmail.com>
Date:   Fri Jul 23 15:55:19 2021 +0200

    I18n: Update translation es (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c1e33511264b92f1e75f9be8cfb678f9e41cda6b
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date:   Fri Jul 23 15:55:18 2021 +0200

    I18n: Update translation ca (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f53da674a3ba92732f86a1363e28b51f52b34b89
Author: AlexanderFilev <avfill@outlook.com>
Date:   Tue Jul 20 00:46:05 2021 +0200

    I18n: Update translation ru (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0aa06c096cfa60612b0e7b9b2795ae044acc9c93
Author: lindevel <lindevel0@gmail.com>
Date:   Fri May 28 23:21:11 2021 +0300

    Fix compilation warnings (#492, #493, #494)

commit 5a4cfa29da23724909f2e289f44e30937481158b
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date:   Mon Jun 28 00:45:37 2021 +0200

    I18n: Update translation th (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 437bb0c280068b1a84d7b19f4bc845c7ba1753ca
Author: Arnold Marko <arnold.marko@gmail.com>
Date:   Wed May 26 12:46:50 2021 +0200

    I18n: Update translation sl (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ccbccd2f50ce67322f12af16e60c68a7517121f3
Author: Muadh Abdulaziz <m_abdulaziz@tutamail.com>
Date:   Tue May 25 12:46:37 2021 +0200

    I18n: Update translation ar (89%).
    
    407 translated messages, 50 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9ce396403a38e7157a4fadd4fd7b4ef2d9bfa98a
Author: Anonymous <noreply@xfce.org>
Date:   Mon May 24 00:46:07 2021 +0200

    I18n: Update translation pl (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 45d572d79e050ef7441ef4eb78ea28282289081f
Author: Toni Estévez <toni.estevez@gmail.com>
Date:   Mon May 24 00:46:07 2021 +0200

    I18n: Update translation es (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 28652a715c236b34cfaff81fe83a45fe3bff2eb2
Author: Toni Estévez <toni.estevez@gmail.com>
Date:   Sun May 23 00:46:19 2021 +0200

    I18n: Update translation es (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4eb0945ea59a0b97d3c76990f1fe792529508793
Author: Muadh Abdulaziz <m_abdulaziz@tutamail.com>
Date:   Tue May 18 00:45:56 2021 +0200

    I18n: Update translation ar (88%).
    
    403 translated messages, 54 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fa5efdf7a37551c98afd3d470451ba5ddc324a46
Author: Toni Estévez <toni.estevez@gmail.com>
Date:   Sat May 15 12:46:06 2021 +0200

    I18n: Update translation es (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3419274f10f0ff4e9e942bb278323739270d4e37
Author: Toni Estévez <toni.estevez@gmail.com>
Date:   Sat May 15 00:46:09 2021 +0200

    I18n: Update translation es (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1df98a959d45f13c5c5b29206e618e7ca225027f
Author: Toni Estévez <toni.estevez@gmail.com>
Date:   Fri May 14 00:46:29 2021 +0200

    I18n: Update translation es (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 44f1f1a530c08becd9814af68e0f7b03041566a5
Author: Toni Estévez <toni.estevez@gmail.com>
Date:   Wed May 12 00:45:51 2021 +0200

    I18n: Update translation es (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b9d1fc9ebc6750e182cee1ee32fd44d7425165bb
Author: Toni Estévez <toni.estevez@gmail.com>
Date:   Sun May 9 12:46:34 2021 +0200

    I18n: Update translation es (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f75ed8582b452bdc56bbaa525ac7dd5e52f13d3b
Author: Arve Eriksson <031299870@telia.com>
Date:   Sun May 9 00:46:02 2021 +0200

    I18n: Update translation sv (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4f9c78fb18ec6a6dbe0425c3bcc3308d12287c04
Author: Muadh Abdulaziz <m_abdulaziz@tutamail.com>
Date:   Fri May 7 00:46:05 2021 +0200

    I18n: Update translation ar (87%).
    
    398 translated messages, 59 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4f12903d9c589f76f161d1357af997e0ed690930
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Thu May 6 00:45:58 2021 +0200

    I18n: Update translation et (99%).
    
    455 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9c37ba028ab4fc777b2d6425f3b95945bb6196b4
Author: Toni Estévez <toni.estevez@gmail.com>
Date:   Wed May 5 00:45:54 2021 +0200

    I18n: Update translation es (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4d577b3de745fecf9bf8414e6bf46cefcd8cfcb6
Author: Toni Estévez <toni.estevez@gmail.com>
Date:   Tue May 4 12:46:33 2021 +0200

    I18n: Update translation es (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 37908c17b348244585031f54acc8a004f3a83117
Author: Toni Estévez <toni.estevez@gmail.com>
Date:   Tue May 4 00:46:00 2021 +0200

    I18n: Update translation es (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b9f19c94cefa66263f7fb5901cb5936502a08c15
Author: Luna Jernberg <bittin@cafe8bitar.se>
Date:   Mon May 3 12:46:59 2021 +0200

    I18n: Update translation sv (98%).
    
    450 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8082594eaedd3fe3ee7e6792149be5d795ef139a
Author: Toni Estévez <toni.estevez@gmail.com>
Date:   Mon May 3 00:46:12 2021 +0200

    I18n: Update translation es (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2924c51be536d153db818c7b04ddd4bf5ffb6ae3
Author: Anonymous <noreply@xfce.org>
Date:   Thu Apr 29 00:46:02 2021 +0200

    I18n: Update translation it (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 18d04b923792c83c5025a9258455e70c360f16ec
Author: Toni Estévez <toni.estevez@gmail.com>
Date:   Sun Apr 25 12:54:50 2021 +0200

    I18n: Update translation es (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 976bcdccba072ed51201b5479682677935b58852
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Apr 22 09:35:34 2021 +0200

    launcher: Adjust menu icon size (Fixes #255)
    
    Use the icon size used by the plugin in the panel also for menu items in
    the "launcher overflow menu".

commit 50cce81febca30d691f7826cdac1288437c5269a
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Sat Apr 24 00:53:34 2021 +0200

    I18n: Update translation et (98%).
    
    452 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 89ca3bc47e1c8e362316953101a7682aba2f4c9a
Author: Toni Estévez <toni.estevez@gmail.com>
Date:   Fri Apr 23 00:53:34 2021 +0200

    I18n: Update translation es (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dc66f9d2d2cee08ad0c2601f2537ff4756ecd31d
Author: Xfce Bot <transifex@xfce.org>
Date:   Thu Apr 22 10:12:28 2021 +0200

    I18n: Update translation sq (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c68da63750e38b4aa7d1ad4fc1c595da43099c51
Author: Arnold Marko <arnold.marko@gmail.com>
Date:   Thu Apr 22 10:12:28 2021 +0200

    I18n: Update translation sl (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d2cca9ac250cecba3bdfa43512696da178ed772f
Author: heskjestad <cato@heskjestad.xyz>
Date:   Thu Apr 22 10:12:26 2021 +0200

    I18n: Update translation nb (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dee868cdb34b5f45a19fc5a85c472743710248ae
Author: Anonymous <noreply@xfce.org>
Date:   Wed Apr 21 00:46:02 2021 +0200

    I18n: Update translation bg (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a6595913312cee7556bf5a9bea22cb54c36b3189
Author: Luna Jernberg <bittin@cafe8bitar.se>
Date:   Sat Apr 17 12:46:37 2021 +0200

    I18n: Update translation sv (98%).
    
    448 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5116dcb3bce2b509749c6e0f4a21533920d02233
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Apr 4 12:49:33 2021 +0200

    Fix exit procedure when plugin insertion failed
    
    * Do not destroy the plugin twice
    * Do not try to watch child if pid == 0
    * Reset source id after removing it

commit c7c5a2612483a91b3d2c4870390fc976d98a087b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Thu Mar 18 16:57:44 2021 +0100

    libxfce4panel: Review memory management for context menu
    
    There should be no `g_object_unref()` in a "destroy" signal handler,
    particularly when the widget destruction, and therefore the signal
    emission, are triggered by a previous `g_object_unref()`. This is the
    cause of a GObject-CRITICAL here, that appears for example when
    removing a workspace switcher (pager plugin) via its context menu.
    
    More generally, the memory management of custom menu items should be
    simplified:
    * use `g_slist_free_full()` to free the maintained items list;
    * let GTK take care of its part of memory management when the menu is
      destroyed (by one means or another).
    
    Fixes #452, see !46 for more details.

commit 6b671b0d03a353fae93ff09a769cab27a66018ac
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Mar 15 18:35:43 2021 +0100

    panel: Mitigate a memory leak when removing items
    
    Sometimes, maybe most of the time, panel items are not finalized when
    they are removed from the panel. For lack of being able to find the
    reason why extra references accumulate, this commit eliminates them
    after the item has been removed from the panel and all priority
    operations have been performed, until triggering the destruction of the
    item.
    
    Beyond the beneficial effect on memory, this also avoids potential
    crashes due to the reuse of data supposed to be freed, such as
    typically the dbus path.
    
    See !46 for more details.

commit 2fe089b7405c3fa4017bdfccdd77fbbd5bdbc2f4
Author: Gaël Bonithon <gael@xfce.org>
Date:   Mon Mar 29 21:22:27 2021 +0200

    tasklist: Silence an allocation warning
    
    This warning appears at the opening of each new window, thus polluting
    the log significantly.

commit 134bf9811ef604be6b69d51617ff1be2b3d9ee71
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Mar 28 19:41:34 2021 +0200

    launcher: Check for menu item initialization
    
    A necessary complement to 3d0f972069192d45a472d3b04b2255bd3fbd5562 in
    certain situations.

commit 73ec72bdd4072e6584ad1cca27714a633f700e77
Author: Steven Xu <stevenxxiu@gmail.com>
Date:   Thu Apr 1 12:46:43 2021 +0200

    I18n: Update translation en_AU (87%).
    
    401 translated messages, 56 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 29d2f804a6def16903a0e1d1474b8589a95acd8e
Author: Yousuf Philips <philipz85@hotmail.com>
Date:   Tue Mar 23 08:39:49 2021 +0000

    panel: Change width of default panel-2 to 1% (Fixes #454)

commit 468e5c45411bee48f1cef47e7b5c34fc65c9143b
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Mar 17 20:50:31 2021 +0100

    panel: Fix xfce4-panel-CRITICAL when already running
    
    `panel_dbus_service_is_exported()` is not the right test to know if an
    instance is already running. Instead, let's follow the documentation of
    `g_bus_own_name()`:
    * if `panel_dbus_name_lost()` is called and `connection == NULL`, there
      is a dbus issue;
    * if `panel_dbus_name_lost()` is called and `connection != NULL`, the
      name can't be acquired, which means that there is an already running
      instance if `G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT` is not set
      (which is currently the case for xfce4-panel);
    * `application != NULL` if and only if `panel_dbus_name_acquired()` is
      called, if and only if `panel_dbus_name_lost()` is not called.

commit 07e765d54d0591b65101f8f5b958aaf8c9390f98
Author: Gaël Bonithon <gael@xfce.org>
Date:   Wed Mar 17 18:51:47 2021 +0100

    systray: Fix GObject-CRITICAL
    
    The SnItem may have already been released when this operation is
    performed asynchronously, as in `sn_item_get_all_properties_result()`.

commit a64abe84bc506d1da51b3153d0ee0e8fbd154ad6
Author: Gaël Bonithon <gael@xfce.org>
Date:   Tue Mar 16 19:27:07 2021 +0100

    systray: Fix libsystray-CRITICAL
    
    Connect to the "g-signal" signal of GDBusProxy after its properties are
    set, so that calling `sn_item_invalidate()` always makes sense, and the
    timeout workaround should no longer be necessary.

commit 57eb27c1541de303bc36160111434e17dcaab0c8
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Mar 13 22:26:27 2021 +0100

    panel: Fix xfce4-panel-CRITICAL
    
    This is triggered for example by playing with window drag and drop in
    the taskbar: see !43 for more details.

commit dbe3c90fa1c552155de230240ebdcf91b5df155a
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Mar 13 22:23:31 2021 +0100

    tasklist: Fix Gtk-CRITICAL
    
    This is triggered for example by playing with the prefs dialog autohide
    combo: see !43 for more details.

commit 5223d2b1004fdcc36a7088386ec7b40cfa216854
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Mar 13 22:09:05 2021 +0100

    systray: Fix Gtk-CRITICAL at startup/shutdown

commit 3d0f972069192d45a472d3b04b2255bd3fbd5562
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Mar 13 22:04:36 2021 +0100

    launcher: Fix garcon-CRITICAL at startup

commit b61054c0578ecc3d87e1af63486faf2b66b69492
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sat Mar 13 22:00:01 2021 +0100

    Silent `-Wcast-align` from Clang

commit a74b4f93a79215fae59feaeeab252a36d49991d3
Author: Kjell Cato Heskjestad <cato@heskjestad.xyz>
Date:   Sun Mar 21 12:46:40 2021 +0100

    I18n: Update translation nb (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 51b233422f6b3fb0044666d9d941b7749a4f310f
Author: Gaël Bonithon <gael@xfce.org>
Date:   Fri Mar 19 17:50:49 2021 +0100

    libxfce4panel: Do not destroy context menu if popped up
    
    Since a method allowing to request the context menu destruction is
    exposed in the API, care should be taken to ensure that such a request
    does not occur when the menu is popped up in response to a click event.
    
    This simple patch just ignore the request for destruction when the menu
    is shown.
    
    Fixes #442, see !45 for more details.

commit e0f2a840916aeba15a60485400e72c631b0d43ad
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Wed Mar 10 12:46:58 2021 +0100

    I18n: Update translation ug (82%).
    
    376 translated messages, 81 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d534d8e7c094bd8ba67ed115bb6d376ff7786de6
Author: Omer I.S <omeritzicschwartz@gmail.com>
Date:   Fri Mar 5 12:47:19 2021 +0100

    I18n: Update translation he (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f26352af0ce66307c69ae6112e386e1a5716f06d
Author: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Date:   Tue Jan 19 17:07:26 2021 +0100

    tasklist: Auto-adjust icon size (v2)
    
    Auto-adjust icon sizes independent of whether showing labels.
    
    Additional changes made by this patch:
    
    - Removal of hard-coded constants when drawing the circled
      number of windows in a group
    - Repaint group button icon when its size changes
    - Tasklist's default button size is increased from 25 to 32 pixels
      in order to avoid icons being cropped at the bottom and at the top
    - Fix a memory leak
    
    Changes in respect to version 1 of this patch (commit 9c9f09ce):
    
    - Fix duplicate application of CSS opacity to the icon of a window group
      when all windows in the group are minimized
    - Update tasklist icon size when panel is resized. The XfcePanelPluginClass
      struct doesn't have a separate 'icon_size_changed' method - a change
      in icon size is being signaled through the 'size_changed' method
      which is also invoked when the panel size changes.
    - Add workarounds to ensure that the icon and the label are laid out
      properly if the icon has been resized
    - Minor code cleanup: return G_SOURCE_REMOVE instead of FALSE
    
    Test environments: FreeBSD, Gentoo, Xubuntu
    
    Closes: https://gitlab.xfce.org/xfce/xfce4-panel/-/issues/90
    Obsoletes: https://gitlab.xfce.org/xfce/xfce4-panel/-/merge_requests/28
    See also: https://gitlab.xfce.org/xfce/xfce4-panel/-/issues/354

commit 200e3bd5b41bdf6760ca1e81d53e1113e3fa8ce7
Author: Omer I.S <omeritzicschwartz@gmail.com>
Date:   Wed Mar 3 00:46:14 2021 +0100

    I18n: Update translation he (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 29f49072e2fceb31c2bd8c272823f385b60b2c4e
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date:   Mon Mar 1 00:45:50 2021 +0100

    I18n: Update translation pt (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a721ef5b40d34d934b5529051d349bc091a87b40
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Feb 26 09:14:00 2021 +0100

    Update copyright and version info

commit d0a8d566df305ceec3bdced2b0a90a98cd34ee6a
Author: Yousuf Philips <philipz85@hotmail.com>
Date:   Thu Feb 25 18:43:01 2021 +0100

    Update about dialog copyright year

commit ab9f7bc7ec5a16d8a4c9b0b20e16fc4dc9955701
Author: Yousuf Philips <philipz85@hotmail.com>
Date:   Thu Feb 25 18:53:15 2021 +0100

    Update CLI copyright year

commit 6070680a408f5928ad383735cd5341f727ef7240
Author: Anonymous <noreply@xfce.org>
Date:   Fri Feb 26 00:46:14 2021 +0100

    I18n: Update translation oc (84%).
    
    386 translated messages, 71 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0b4b18eb6e14680ad3d8fc80ef9a479826dfadb5
Author: ზურაბი დავითაშვილი <zdavitashvili0@gmail.com>
Date:   Thu Feb 25 12:47:39 2021 +0100

    I18n: Update translation ka (60%).
    
    278 translated messages, 179 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 57c1c5f7598d4b98b4c22c3ade973993d2ea4ac0
Author: Andre Miranda <andreldm@xfce.org>
Date:   Tue Feb 23 22:47:46 2021 -0300

    pager: Allow disable switch with mouse wheel for miniature view (#253)
    
    Closes #253

commit 97b8c22c5030ed46e452b4ad9eee87208754647a
Author: Andrij Mizyk <andmizyk@gmail.com>
Date:   Thu Feb 18 00:46:23 2021 +0100

    I18n: Update translation uk (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a01273a68d13c3d7cf2b6ed7e1e1fd87493c8cac
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Mon Feb 15 00:45:40 2021 +0100

    I18n: Update translation hr (94%).
    
    432 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3c7c3dfdd45fce7e6b0d24c41603f2db93e6a34b
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Tue Feb 9 12:48:18 2021 +0100

    I18n: Update translation et (98%).
    
    452 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2b94d43821342f0af6b802a8602223e696c06878
Author: Андрій Мізик <andmizyk@gmail.com>
Date:   Thu Feb 4 00:45:51 2021 +0100

    I18n: Update translation uk (95%).
    
    438 translated messages, 19 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 994c202c545a2e6bcd1af963187fdbfe511a4b51
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Feb 2 17:03:21 2021 +0100

    Add icons to help and about items in panel menu
    
    Fixes #421

commit 810623aba13c7966dc4ccbbed5d85b6dcd5d94dc
Author: Romain Bouvier <skunnyk@alteroot.org>
Date:   Sun Jan 31 15:28:15 2021 +0100

    Revamp the documentation to modernize and uniformize accross components

commit 3651252c80d7b65899a8600302b49d4c0a4b350b
Author: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Date:   Wed Jan 27 00:46:07 2021 +0100

    I18n: Update translation sk (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0e33c35a07067077ff042e32b95acebbd52253eb
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Jan 25 11:40:26 2021 +0100

    pager: Use gobject bindings (Fixes #376)
    
    In order to set the correct visibility on settings we use GObject
    Bindings over the previous code in set_properties which caused a
    segfault.

commit 8ccc76051d0ada38fe719e6b0660cb20b7c5c0e8
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jan 26 00:45:53 2021 +0100

    I18n: Update translation fi (94%).
    
    432 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5e24a94123d8bd9f418336bbc8ff45c247dcf25f
Author: Pablo Mazzini <pmazzini@gmail.com>
Date:   Tue Dec 29 15:18:33 2020 +0000

    launcher: avoid double fork

commit 4c9c927cb54f5293a05df237e97c0c3dcd582788
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Jan 24 18:58:08 2021 +0100

    Fix compilation warnings

commit 4ea82596fc62dba488634a3f8bb3b5e5d26d09d9
Author: Gaël Bonithon <gael@xfce.org>
Date:   Sun Jan 24 14:04:33 2021 +0100

    Update `.gitignore`

commit 23e22a1f336a219862c2d0dfc1e09756d9c6ea11
Author: Frédéric Brière <fbriere@fbriere.net>
Date:   Sat Jan 23 14:51:45 2021 -0500

    Display tooltip title of statusnotifier items as plaintext
    
    According to the StatusNotifierItem specification¹², only the tooltip
    *subtitle* may contain markup, not the title.  The latter must therefore
    either be escaped before gtk_tooltip_set_markup(), or set with
    gtk_tooltip_set_text() instead.
    
    Note that KDE Plasma also made this modification³, and while this did
    break some applications⁴ (many of which have been fixed by now), the
    final decision was to stick to the specification.  Consequently, systray
    should also be able to display a title such as "<Rock&Roll>" without
    choking.
    
     ¹ https://www.freedesktop.org/wiki/Specifications/StatusNotifierItem/StatusNotifierItem/
     ² https://www.freedesktop.org/wiki/Specifications/StatusNotifierItem/Markup/
     ³ https://invent.kde.org/frameworks/plasma-framework/-/merge_requests/6
     ⁴ https://bugs.kde.org/show_bug.cgi?id=422616

commit 09a674720f050bf9d5c93a8b7868db5e5d456539
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:46 2021 +0100

    I18n: Update translation zh_TW (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7fbde1553d2f196f26a95997da60a4adef0d09ec
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:46 2021 +0100

    I18n: Update translation zh_HK (90%).
    
    412 translated messages, 45 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 92b7509d08c11fcf0d7f986efb510fa88368d11e
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:45 2021 +0100

    I18n: Update translation uk (90%).
    
    414 translated messages, 43 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d6e97bf9592315fd003d41c89e622310b8a4d932
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:45 2021 +0100

    I18n: Update translation ug (82%).
    
    375 translated messages, 82 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 62392589befc6e972240157d236a940c6ae5d59f
Author: Emin Tufan Çetin <etcetin@gmail.com>
Date:   Tue Jan 19 10:07:45 2021 +0100

    I18n: Update translation tr (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 146d7cc8b19cc16a883515ce27853c88c68becfd
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:45 2021 +0100

    I18n: Update translation th (89%).
    
    408 translated messages, 49 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit adb537ec6e0c39233987b8d1e4ddb9b77408453b
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:45 2021 +0100

    I18n: Update translation sq (99%).
    
    456 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fe8776c7392a65c67fdeafa9fe79020a3e682b7a
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:44 2021 +0100

    I18n: Update translation si (59%).
    
    273 translated messages, 184 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 990bace55212dac9a25d817ddf7eaeba87f96907
Author: ivmazurenko <ivmazurenko@yandex.ru>
Date:   Tue Jan 19 10:07:44 2021 +0100

    I18n: Update translation ru (98%).
    
    450 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ce4a294bc42afb8288eaf90ea421e8a5addb53bf
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:44 2021 +0100

    I18n: Update translation ro (83%).
    
    380 translated messages, 77 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2f507e14c2d440eb9cf42dfd3fb0a97b6b241b26
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:44 2021 +0100

    I18n: Update translation pt (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 73a0569894eaf89c762058f562d356315907df37
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:44 2021 +0100

    I18n: Update translation pt_BR (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 211fa6da7c9508a02223ce6a71f28c69732dfc56
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:43 2021 +0100

    I18n: Update translation pa (59%).
    
    272 translated messages, 185 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3920482395822ba8e5351d8cdcba85be0c0e650e
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:43 2021 +0100

    I18n: Update translation oc (84%).
    
    384 translated messages, 73 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f18da24bc7b713795dad829773de36621cdf4450
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:43 2021 +0100

    I18n: Update translation nl (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8e2be6c060bf8011bf62a354b1bdda27b74947fd
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:43 2021 +0100

    I18n: Update translation ms (92%).
    
    423 translated messages, 34 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9b9a654deaabd26d30c8c2f5101119c9ca88f571
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:43 2021 +0100

    I18n: Update translation lt (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e3e1dd466be86cc4231d0d87b90bf6be3e33d707
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:42 2021 +0100

    I18n: Update translation ko (94%).
    
    432 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d5353f70886638dd51226d364167d640ea0ca1d3
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:41 2021 +0100

    I18n: Update translation kk (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d7ed63490d2af803ce59d8b94dc5b076aecc14a8
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:41 2021 +0100

    I18n: Update translation ka (59%).
    
    272 translated messages, 185 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 98a0ebb7f0e75aa8124e9c40f63ae293edcb16f8
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:41 2021 +0100

    I18n: Update translation ja (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b7aa8eb969658315d24f35102961bd77790094af
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:41 2021 +0100

    I18n: Update translation it (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d748f7950fa832d29db1689d84eb356736d222a4
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:41 2021 +0100

    I18n: Update translation is (87%).
    
    401 translated messages, 56 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f17ee0a092d1fdf4b77895611f878c4d2060b7e8
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:41 2021 +0100

    I18n: Update translation id (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dc2bb74da8b0791f8fca4f0b3c5bf63b56e15c2e
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:40 2021 +0100

    I18n: Update translation hye (89%).
    
    411 translated messages, 46 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b97eccc024b62cd693ab0e7204a6e389cf21acea
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:40 2021 +0100

    I18n: Update translation hy_AM (89%).
    
    407 translated messages, 50 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9696846c1d80dbd39641f9ea7c0ea549dc72cc47
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:40 2021 +0100

    I18n: Update translation hu (93%).
    
    429 translated messages, 28 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e3873221cad58e775db4c0b9134960ce865f975c
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:40 2021 +0100

    I18n: Update translation hr (93%).
    
    428 translated messages, 29 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 87997fc29072d023c07f1ddc09aa866069a9505c
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:40 2021 +0100

    I18n: Update translation he (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6d21187af797b9cf1ae5324920eb5e337e15a2a6
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:40 2021 +0100

    I18n: Update translation gl (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 097fd876e4615a87a1abcfe2713e3381fc585d01
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:40 2021 +0100

    I18n: Update translation fr (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f338fa7e9d646d726199803d4dbacce51b846b70
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:39 2021 +0100

    I18n: Update translation eu (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8dc6d3c74b3c9c846f217a18ed134c3774120e02
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jan 19 10:07:39 2021 +0100

    I18n: Update translation es (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fed557e9ad42841b9916e47c2128e61e70f05f24
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:39 2021 +0100

    I18n: Update translation en_GB (90%).
    
    412 translated messages, 45 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 10eb49e426a3e97071f9c43f21bbdd18c610b1ff
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:39 2021 +0100

    I18n: Update translation en_AU (87%).
    
    401 translated messages, 56 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit df87939987476bc4cddefe3e831f86a7f1f0c3e8
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:39 2021 +0100

    I18n: Update translation el (90%).
    
    412 translated messages, 45 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b0840f3c2c8778db61c3d847d05208689c7e4a1d
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:39 2021 +0100

    I18n: Update translation da (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1c0b2076289640d2c63612c27970cd57b88ea802
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Tue Jan 19 10:07:38 2021 +0100

    I18n: Update translation cs (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ba4a5aadfe19d7bb2e862f917f70c1569cd64183
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Tue Jan 19 10:07:38 2021 +0100

    I18n: Update translation ca (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9bca7a6a56b90e4cbbaa01ae0e8d810dc7987e74
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:38 2021 +0100

    I18n: Update translation bn (63%).
    
    289 translated messages, 168 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 62b9141afd49664263023a34e909ce12e4f7fc28
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:38 2021 +0100

    I18n: Update translation bg (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 81bdf985896d2b08fda4edd0b766a978b1d4d254
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:38 2021 +0100

    I18n: Update translation be (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d0446bfb83b0831d578876a1a0ce63ec5db970ce
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:37 2021 +0100

    I18n: Update translation ar (84%).
    
    386 translated messages, 71 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3cae743b88e3c3769597f3f8d764f1a09620c4b5
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Jan 19 10:07:37 2021 +0100

    I18n: Update translation am (64%).
    
    296 translated messages, 161 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 153f2abf6d7d924988f3f7ad24a76cd096ece336
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Jan 11 16:28:20 2021 +0100

    pager: Switch to new workspaces icon name

commit e4616236e4668e1f92902911508d4197fcff7553
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Jan 2 23:27:06 2021 +0100

    statustray: Prevent crash when parsing properties (Fixes #379)

commit 83969c3aea9feda35d9d854c5bab38bf8d479b17
Author: Luna Jernberg <bittin@cafe8bitar.se>
Date:   Thu Jan 7 12:47:15 2021 +0100

    I18n: Update translation sv (97%).
    
    445 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b003b3d13c54eb46596d91c29929ec6d0be8f291
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jan 7 12:47:15 2021 +0100

    I18n: Update translation pl (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit de4ada254b176e7aded976ef86c7e80235b6c2da
Author: Xfce Bot <transifex@xfce.org>
Date:   Thu Jan 7 00:45:41 2021 +0100

    I18n: Update translation ast (80%).
    
    369 translated messages, 88 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d3ae01661241e6a37368dcd1ebcb8f1c20a9fea3
Author: Anonymous <noreply@xfce.org>
Date:   Sun Jan 3 00:45:49 2021 +0100

    I18n: Update translation pl (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5ada2b0f3bacd9cd7d111ca59989e92df35d045f
Author: Jiri Grönroos <jiri.gronroos@iki.fi>
Date:   Fri Jan 1 12:47:06 2021 +0100

    I18n: Update translation fi (94%).
    
    430 translated messages, 27 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c6e1544946d7efaeaa0bbc895b700de8102ed6fe
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 31 12:46:17 2020 +0100

    I18n: Update translation ie (96%).
    
    442 translated messages, 15 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a50c4adf04dba25b012436183187c85348912742
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Thu Dec 31 00:46:02 2020 +0100

    I18n: Update translation et (98%).
    
    451 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 35fa4fb0375dc795674bd19d9708de20f9fef53e
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Thu Dec 31 00:46:02 2020 +0100

    I18n: Update translation cs (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 01e15abcae4022ac6de32594036d61e3d86669e6
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Wed Dec 30 12:46:47 2020 +0100

    I18n: Update translation et (98%).
    
    450 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 83025b022b7527485fda8ac77c40191cb05cae51
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Wed Dec 30 12:46:47 2020 +0100

    I18n: Update translation cs (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1510a84857903f9c1ee8f28e0b56059b10813dde
Author: Anonymous <noreply@xfce.org>
Date:   Tue Dec 29 12:46:40 2020 +0100

    I18n: Update translation de (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 79ca255327a90751a3d1052eefdf0a3c8b5a0915
Author: Kjell Cato Heskjestad <cato@heskjestad.xyz>
Date:   Tue Dec 29 00:46:33 2020 +0100

    I18n: Update translation nb (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 69f023f2c4ffa40ce1ed06d54f33d2387e1ee9eb
Author: John C. Allwein <git@johnnyapol.me>
Date:   Thu Dec 24 18:36:57 2020 -0500

    windowmenu: fix use-after-free in window_menu_plugin_window_item_new
    
    Both `utf8` and `decorated` can be aliased to `name`, which is needed later in the code.
    Detected via clang static analysis (scan-build).

commit 9b312b1033dcab110a5eec4effbac96a27c5e455
Author: Anonymous <noreply@xfce.org>
Date:   Thu Dec 24 12:46:56 2020 +0100

    I18n: Update translation ie (94%).
    
    433 translated messages, 24 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c2e593a959a92395801439a7b9cf03ca96179c0d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Dec 23 00:06:06 2020 +0100

    Back to development

commit 2eea4c4cc0e89c306c940a28d8298008db4a8c03
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Dec 23 00:04:33 2020 +0100

    Updates for release

commit 89f466b1700ffb6cb95df9e010ed05c6b19667c7
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Dec 21 23:41:18 2020 +0100

    Revert "tasklist: Auto-adjust icon size (Closes #90)"
    
    This reverts commit 9c9f09ce9f78f3a0f8970bb36728c99fdf9e8e34.

commit 84aa195b743fb1d75a875329d4805e252f505d44
Author: Olaf Hering <olaf@aepfle.de>
Date:   Fri Dec 18 19:46:58 2020 +0100

    Fix GSourceFunc removal
    
    xfce-panel-plugin.c: In function 'xfce_panel_plugin_menu_move':
    error: passing argument 1 of 'g_idle_add' from incompatible pointer type [-Werror=incompatible-pointer-types]
    
    Fixes commit 469073d8ba52077132824d668b030cc3f1e25db5
    
    Signed-off-by: Olaf Hering <olaf@aepfle.de>

commit 469073d8ba52077132824d668b030cc3f1e25db5
Author: Olaf Hering <olaf@aepfle.de>
Date:   Sat Dec 12 22:01:06 2020 +0100

    Remove GSourceFunc casts
    
    Convert the callback into a real GSourceFunc.
    
    Signed-off-by: Olaf Hering <olaf@aepfle.de>

commit 46239d1637056cbfe9b9f0d75017c97a7b2b7d82
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Dec 16 09:01:10 2020 +0100

    tasklist: Fix wireframe for CSD windows (Fixes #338)

commit c272e9e124304ed2e13160ffb8910b249da0fbd6
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Dec 16 01:02:34 2020 +0100

    panel: Fix intellihide with CSD (Fixes #368)
    
    As we're using brand new API we also need to bump the libxfce4ui dependency
    to a future release (4.15.8)

commit 9c9f09ce9f78f3a0f8970bb36728c99fdf9e8e34
Author: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Date:   Sun Nov 29 20:08:20 2020 +0100

    tasklist: Auto-adjust icon size (Closes #90)
    
    Auto-adjust icon sizes independent of whether showing labels.
    
    Additional changes made by this patch:
    
    - Removal of hard-coded constants when drawing the circled
      number of windows in a group
    - Repaint group button icon when its size changes
    - Tasklist's default button size is increased from 25 to 32 pixels
      in order to avoid icons being cropped at the bottom and at the top
    - Fix a memory leak
    
    Closes: https://gitlab.xfce.org/xfce/xfce4-panel/-/issues/90
    See also: https://gitlab.xfce.org/xfce/xfce4-panel/-/issues/354

commit 706d50404654a804b813aa7763edff6a3db016ed
Author: Alexander Schwinn <alexxcons@xfce.org>
Date:   Tue Dec 15 23:10:33 2020 +0100

    Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump
    
    Current glib minimum is 2.50.0

commit bd9d0234c40d2a615a8b33d52511d8622420a995
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Dec 14 00:55:53 2020 +0100

    Back to development

commit e267df39131481736c6d36eaebf2591b7b69d4d8
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Dec 14 00:55:01 2020 +0100

    Updates for release

commit 2dcc78d4c6baa75467360e721ec5536276693cee
Author: Romain Bouvier <skunnyk@alteroot.org>
Date:   Sun Dec 13 23:57:57 2020 +0100

    gobject introspection wants a capital letter for the gir file
    
    - See https://gi.readthedocs.io/en/latest/buildsystems/autotoolsintegration.html:
    "Namespace of the gir, first letter capital, rest should be lower case"
    - This will help vapigen to find correct namespaces
    - Update m4/introspection.m4 from upstream
    - Panel now requires libxfce4util 4.15.6

commit b2f28100340c72dd54ea3cd53c279432eb82b2ef
Author: Le Tri <Leminhtri10a1t@gmail.com>
Date:   Sun Dec 13 00:46:24 2020 +0100

    I18n: Update translation vi (66%).
    
    304 translated messages, 153 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ae747944518c3d766aff8a6640a536367de872d7
Author: Jose Riha <jose1711@gmail.com>
Date:   Sat Dec 12 12:46:15 2020 +0100

    I18n: Update translation sk (99%).
    
    455 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a94a2f9a73e385252ed4730e86ef4d5298006981
Author: Simon Steinbeiß <ochosi@xfce.org>
Date:   Thu Dec 10 23:56:27 2020 +0100

    Use new xfce_spawn API
    
    This spawns processes reparenting them to init versus as children of the
    panel process. Previously applications launched from panel launchers
    would crash along with the panel.

commit 4b19d0c289f4b5a92fc1d89651bb0dca2e54afd1
Author: Romain Bouvier <skunnyk@alteroot.org>
Date:   Thu Dec 10 01:13:42 2020 +0100

    Add help string for dbusmenu-gtk3 optionnal dependency
    
    - Now ./configure --help print a nice help string to disable dbusmenu-gtk3
    - Also upgrade some autohells obsolete macros

commit 00feee78b5980f66f5e887a80c33b7ce2f1d7e33
Author: Alexander Schwinn <alexxcons@xfce.org>
Date:   Wed Dec 9 09:31:50 2020 +0100

    bump glib (and gio, gthread, etc) minimum to 2.50.0
    
    In order to unify dependencies for core components.
    (See 4.16 roadmap)

commit 56f4380e55eda867c38be67aabd493f141832be8
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Tue Dec 8 00:45:51 2020 +0100

    I18n: Update translation sr (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1ca83b702bcd4a0fc294d37d72d13d90f0b8e4ee
Author: Kevin Brubeck Unhammer <unhammer+dill@mm.st>
Date:   Sat Dec 5 00:45:54 2020 +0100

    I18n: Update translation nn (92%).
    
    424 translated messages, 33 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f48417814c3b2c421ef5c82c44d89a6524aed54a
Author: ivmazurenko <ivmazurenko@yandex.ru>
Date:   Sat Nov 28 12:46:55 2020 +0100

    I18n: Update translation ru (98%).
    
    450 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9212092e9003e65255c9452cf66232af4bb3000c
Author: Dušan Kazik <prescott66@gmail.com>
Date:   Wed Nov 25 12:46:17 2020 +0100

    I18n: Update translation sk (99%).
    
    455 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3072e24b26f9038dc179661330ab4acf64776bc2
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Fri Nov 20 00:47:21 2020 +0100

    I18n: Update translation et (95%).
    
    437 translated messages, 20 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b01143f0866b302f0ec86ebe33c8b15d940d6ab1
Author: Emin Tufan <etcetin@gmail.com>
Date:   Mon Nov 16 12:46:36 2020 +0100

    I18n: Update translation tr (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 997f57ae7c06f209130dcbfec335ff7748c91608
Author: Andre Miranda <andreldm@xfce.org>
Date:   Fri Nov 13 01:08:53 2020 -0300

    Update .gitignore

commit b31e496b1202da42b1bf97e62ab3e2cbafd6b50a
Author: Andre Miranda <andreldm@xfce.org>
Date:   Fri Nov 13 01:08:44 2020 -0300

    Add README.md to EXTRA_DIST

commit f6e72a85e171f9d9a0aa9446fade166f74ccfe13
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Nov 12 10:37:12 2020 +0100

    settings: Use spinbuttons for size and nrows
    
    Scales are hard for tweaking absolute values.

commit 50b2f0f2ece900761d30400dc9203384039382f8
Author: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Date:   Sat Nov 7 01:05:36 2020 +0100

    Fix compiler warnings
    
    This patch fixes some (not all) warnings printed by GCC.

commit c1e61a5289d51e0490cd396629b65bce0e8990e7
Author: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Date:   Sat Nov 7 01:03:45 2020 +0100

    Fix memory leaks

commit 0aa82d5db2200b8d6a200fa71a5f7dcb1727ad55
Author: Arnold Marko <arnold.marko@gmail.com>
Date:   Tue Nov 10 00:46:04 2020 +0100

    I18n: Update translation sl (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8e9e33727b279ff505447a0a78ddf8298ce78297
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Nov 9 22:58:48 2020 +0100

    Drop generated code from repo

commit e03bcb8d426bd6be61bfe242ae241f60a542ab50
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Nov 9 13:42:02 2020 +0100

    settings: Update item listview toolbar

commit c778ed14896eb1c578826498f55023d6c7bf8c3f
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Sun Nov 8 14:50:32 2020 -0500

    Make dbusmenu-gtk3-0.4 optional, disables StatusNotifier integration

commit 542653a1fd94c770dfe33d58d4a59cb1e24ce3e0
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Wed Nov 4 12:46:14 2020 +0100

    I18n: Update translation zh_CN (100%).
    
    457 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 71b2f8e0277b9e8171b2b4532ddeac5c78bda022
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Nov 3 23:04:23 2020 +0100

    Revert "launcher: Appear "checked" on click (Fixes #256)"
    
    This reverts commit b0dd0dd32e95c74897dbad8fc6d1bd105cac799e.
    It turned out this is actually a theming problem and the checked state
    was there even before this commit.

commit 27488c7e8e860dbc5d095b92bb24e90901c33e78
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Nov 3 00:51:23 2020 +0100

    Back to development

commit aa57ee1ae7178a48c5059cef12dbb496add2fd60
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Nov 3 00:49:16 2020 +0100

    Updates for release

commit 53405a4bdc22362fb5f7f096dab366f5fe3bb11b
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Nov 3 00:36:47 2020 +0100

    actions: Switch to new session icons (Fixes #332)

commit bdcc5255042b58e270af3e62bf4b54346777e121
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Nov 3 00:19:07 2020 +0100

    add-items: Drop not-so-helpful dialog subtitle

commit 0bd7fa7d7bf86133bd27e022fc9195414a77edf2
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Nov 3 00:18:30 2020 +0100

    add-items: Bump default dialog size (Fixes #258)

commit b0dd0dd32e95c74897dbad8fc6d1bd105cac799e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Nov 3 00:10:19 2020 +0100

    launcher: Appear "checked" on click (Fixes #256)

commit 3aeb8a3c38cf0d8bc0501cd38efc835d2fbadf53
Author: Anonymous <noreply@xfce.org>
Date:   Mon Nov 2 12:46:08 2020 +0100

    I18n: Update translation es (96%).
    
    443 translated messages, 15 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0176c577797eae622d40f52162f1d7425e0da5e2
Author: Kevin Bowen <kevin.bowen@gmail.com>
Date:   Thu Oct 22 10:56:39 2020 +0200

    Add new README.md
    
    Also update AM_INIT_AUTOMAKE

commit 47f65772a10407ce86e6c8ad52d1ca68b53e142e
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:59 2020 +0200

    I18n: Update translation zh_HK (90%).
    
    413 translated messages, 45 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8337a8ba2c8157b69c72fb8d59a132e390dee338
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:59 2020 +0200

    I18n: Update translation vi (65%).
    
    302 translated messages, 156 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3b8665d849cdb414e8dcdf809cf18a22029f3283
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:59 2020 +0200

    I18n: Update translation uk (90%).
    
    415 translated messages, 43 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c34511a78770447414410534a5aacc653a9afd52
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:59 2020 +0200

    I18n: Update translation ug (82%).
    
    376 translated messages, 82 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f2546469ec092917f7d8f0cac8dce385de8896ef
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:58 2020 +0200

    I18n: Update translation th (89%).
    
    409 translated messages, 49 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 48abb78922291d9e0ce759d8f05fc67bd1b066e5
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:58 2020 +0200

    I18n: Update translation sr (94%).
    
    433 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 772e42588680dc1736e0241ca6a54f2ba72c0c2b
Author: Besnik Bleta <besnik@programeshqip.org>
Date:   Fri Oct 16 18:21:58 2020 +0200

    I18n: Update translation sq (99%).
    
    457 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit badfe0c506aa416a0ec6024ebe417137128d47ec
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:58 2020 +0200

    I18n: Update translation sl (92%).
    
    424 translated messages, 34 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d8ed7be3429a3a5c675282b18cd620a59082467e
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:57 2020 +0200

    I18n: Update translation si (59%).
    
    274 translated messages, 184 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 88927b0f67ecfea4abe41a313383660a3544bc26
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:57 2020 +0200

    I18n: Update translation ro (83%).
    
    381 translated messages, 77 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 109aacffcb03e9b89d21c35f7e8fe592b67c9e87
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:57 2020 +0200

    I18n: Update translation pa (59%).
    
    273 translated messages, 185 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6f6f886469d16ce3990f72dd1fb1b6442f7b32d9
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:56 2020 +0200

    I18n: Update translation nn (83%).
    
    384 translated messages, 74 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 960bb0b47d7c2bfefe0786d84a0a16afe4a5913c
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Fri Oct 16 18:21:56 2020 +0200

    I18n: Update translation nl (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e1d2350305b5aac9d2848acfdee633d171fe872e
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:56 2020 +0200

    I18n: Update translation ms (92%).
    
    424 translated messages, 34 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 80d86ae797c7e77b3f07f1a55beb9029a09081e3
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:56 2020 +0200

    I18n: Update translation ko (94%).
    
    433 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 08467fdbe9eff014a884af2f28841f891a6d5e04
Author: zura davitashvili <zdavitashvili0@gmail.com>
Date:   Fri Oct 16 18:21:56 2020 +0200

    I18n: Update translation ka (59%).
    
    273 translated messages, 185 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0db51b001ddd8189990eb7508ffe8aae7f684d67
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date:   Fri Oct 16 18:21:55 2020 +0200

    I18n: Update translation it (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 13bae6ebb366e446188e23b566a01f3541302aca
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:55 2020 +0200

    I18n: Update translation is (87%).
    
    402 translated messages, 56 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 27a2064786e265a808b310cddf16c44293cd3e2c
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:55 2020 +0200

    I18n: Update translation ie (93%).
    
    429 translated messages, 29 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3135a0fa08f0e80d5ed3a7242d3a37e72f5bac53
Author: Real School <localization@ehayq.am>
Date:   Fri Oct 16 18:21:55 2020 +0200

    I18n: Update translation hye (89%).
    
    412 translated messages, 46 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b75c38976539ecc82e27860cb854eccf2bd5a7f8
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:55 2020 +0200

    I18n: Update translation hy_AM (89%).
    
    408 translated messages, 50 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 331546176c7b3c8b9bdc505e5eba70b0b20745e3
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:55 2020 +0200

    I18n: Update translation hu (93%).
    
    430 translated messages, 28 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2652c633d63d9e53a641b0173b51c672efaca047
Author: Elishai Eliyahu <elishai@mailfence.com>
Date:   Fri Oct 16 18:21:54 2020 +0200

    I18n: Update translation he (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dcfe28252496ba4e0644e4a0d7103a86f953bbc6
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:54 2020 +0200

    I18n: Update translation fi (93%).
    
    428 translated messages, 30 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ccea5287d8352b4ae6d49ecffde6e923815708a8
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:54 2020 +0200

    I18n: Update translation et (92%).
    
    423 translated messages, 35 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 16d387deed3753aae5fff13459e88da4de3d005d
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:53 2020 +0200

    I18n: Update translation en_GB (90%).
    
    413 translated messages, 45 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cb149a8a7cd163fe229588e8efa4b2ca1d603a4a
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:53 2020 +0200

    I18n: Update translation en_AU (87%).
    
    402 translated messages, 56 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e10e41102b8b089ef3b4e52167bc3bcbbb0d1208
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:53 2020 +0200

    I18n: Update translation el (90%).
    
    413 translated messages, 45 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3c2665b0dbcab2eca872ef616a82c876f0a5a311
Author: Andreas Eitel <github-aneitel@online.de>
Date:   Fri Oct 16 18:21:53 2020 +0200

    I18n: Update translation de (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1891e46a2995d6c88c850f51200e549ac8360efd
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:53 2020 +0200

    I18n: Update translation bn (63%).
    
    290 translated messages, 168 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e7250762ee300ac60b8b96b56ba6e1331077d7ac
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Fri Oct 16 18:21:52 2020 +0200

    I18n: Update translation bg (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b6e040a0845309435c929a09ea935ddfea615eb3
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:52 2020 +0200

    I18n: Update translation ar (84%).
    
    387 translated messages, 71 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c212dfcdc0ed628acec2e8538cdcd4c3bd326f5a
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Oct 16 18:21:52 2020 +0200

    I18n: Update translation am (64%).
    
    297 translated messages, 161 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 47ad2283ca40d64947d957f4c1121c0b24ea356a
Author: Zmicer Turok <nashtlumach@gmail.com>
Date:   Tue Oct 13 00:45:48 2020 +0200

    I18n: Update translation be (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 18c6e922fba4e1b22feeae2dbde8ca383d194829
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Sun Oct 11 20:12:41 2020 +0100

    Unref datetime objects
    
    Fixes #349.

commit 60f742efa1b9a35161f86267f193ceabc8553f46
Author: Luna Jernberg <bittin@cafe8bitar.se>
Date:   Fri Oct 9 12:46:52 2020 +0200

    I18n: Update translation sv (97%).
    
    445 translated messages, 13 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 235b56eb945186d2a6236f0b47eea3c71f029553
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Tue Oct 6 00:45:42 2020 +0200

    I18n: Update translation zh_CN (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d3a88f338fc670f68c8630272aa447b5356a46fb
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Mon Oct 5 12:46:05 2020 +0200

    I18n: Update translation zh_CN (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4e0da50fc9b8c2498b0445d27fef774f3283c41e
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Mon Oct 5 00:45:47 2020 +0200

    I18n: Update translation zh_CN (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0ede27aeba2456d08f2c7204ce470b3014edfb79
Author: Andre Miranda <andreldm@xfce.org>
Date:   Thu Sep 3 19:57:59 2020 -0300

    tasklist: Limit blinking notification
    
    After blinking 8(16/2) times, let the window button highlighted.
    I went with CHECKED state because ACTIVE is removed when hovering in and
    out.

commit 33edd502d984510368f24079ab016b59f06ad2a4
Author: Anonymous <noreply@xfce.org>
Date:   Sun Oct 4 12:45:55 2020 +0200

    I18n: Update translation es (95%).
    
    436 translated messages, 22 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9ef38f4684ff4472be996d11404b4c9683442c13
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Sun Oct 4 00:46:00 2020 +0200

    I18n: Update translation cs (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a18dd49a373afddf724ad48a63299af0b0ae05f4
Author: Luna Jernberg <bittin@cafe8bitar.se>
Date:   Sat Oct 3 00:45:51 2020 +0200

    I18n: Update translation sv (94%).
    
    432 translated messages, 26 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 815ead9769ba8753a0b518942d461801aab9d4e6
Author: Dušan Kazik <prescott66@gmail.com>
Date:   Fri Oct 2 12:47:11 2020 +0200

    I18n: Update translation sk (99%).
    
    455 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6900f9e61df5128194c95e7388eb380ba4e5d6e9
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Wed Sep 30 00:46:22 2020 +0200

    I18n: Update translation he (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ff8d23e89b324550542627eb603c16e4aa75f71f
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Wed Sep 30 00:46:21 2020 +0200

    I18n: Update translation fr (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e493a55e0351cdcb879c60248dda890774c8418b
Author: Dabid Martinez <dabid@laborategia.eus>
Date:   Wed Sep 30 00:46:21 2020 +0200

    I18n: Update translation eu (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 303befb342e13c574c8eeecbe80cefccd3276372
Author: Dabid Martinez <dabid@laborategia.eus>
Date:   Sun Sep 20 00:46:08 2020 +0200

    I18n: Update translation eu (97%).
    
    448 translated messages, 10 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 326c7793b864ea056aaacbc2241d463485c07da6
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 15 00:45:50 2020 +0200

    I18n: Update translation oc (84%).
    
    385 translated messages, 73 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 73337a13a43f1085ae8fc391180b6c4a500749a5
Author: Anonymous <noreply@xfce.org>
Date:   Mon Sep 14 12:55:54 2020 +0200

    I18n: Update translation ru (98%).
    
    450 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4bb8ea43700357a2a60a4b3cbb507455a404ba69
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Sun Sep 13 12:46:46 2020 +0200

    I18n: Update translation pt_BR (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e0902ecf6c25fbafb6ce23c45537e48d203c8b5d
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sun Sep 13 12:46:45 2020 +0200

    I18n: Update translation fr (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 225567ff37338f40bd22f1d778f270c355a017c3
Author: Demiray Muhterem <mdemiray@msn.com>
Date:   Tue Sep 8 12:46:41 2020 +0200

    I18n: Update translation tr (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7c2f3b3b504465f8eab681fc98dc044181a487be
Author: Triyan W. Nugroho <triyan.wn@gmail.com>
Date:   Tue Sep 8 12:46:41 2020 +0200

    I18n: Update translation id (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9d03e9ad532573ed54c2ccbafc616bc84afd1b5c
Author: Triyan W. Nugroho <triyan.wn@gmail.com>
Date:   Tue Sep 8 00:45:47 2020 +0200

    I18n: Update translation id (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f684a4372530fbaf382019ed88d13485ab422b57
Author: Anonymous <noreply@xfce.org>
Date:   Sun Sep 6 12:47:14 2020 +0200

    I18n: Update translation ru (94%).
    
    432 translated messages, 26 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6aa8cca661374a610ab7c4d11ebc943b60aa3f07
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date:   Wed Sep 2 12:48:44 2020 +0200

    I18n: Update translation pt (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7ddcb8a3e39b5671f25cdc87830061db65d0ff7b
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Mon Aug 31 12:49:45 2020 +0200

    I18n: Update translation kk (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 25cf73fea2f10b9431d9ffb6abdca948cfe21d45
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Mon Aug 31 12:49:42 2020 +0200

    I18n: Update translation hr (93%).
    
    429 translated messages, 29 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0aa7308b23be45d1863a48cec3e78fa1edd624d8
Author: Maurizio Galli <maurizio.galli@gmail.com>
Date:   Sun Aug 30 17:08:43 2020 +0800

    Fixed icon for about dialog and added more icons for better scaling

commit 29a637fe2084799601ad1e431ccd7c670162eb92
Author: Michael Alexsander <michaelalexsander@protonmail.com>
Date:   Thu Aug 6 00:47:13 2020 -0300

    intellihide: Check if cursor is over the panel (Fixes #311)

commit 4d3e8d0e0b72cce7b52f0ad9cf172f6c22b7c2f0
Author: Anonymous <noreply@xfce.org>
Date:   Fri Aug 28 12:48:20 2020 +0200

    I18n: Update translation da (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 810eb37276cb8ed9875609328d98ac060b4d14b7
Author: Lucas Wilm <lucaswilm@gmail.com>
Date:   Fri Aug 28 00:48:33 2020 +0200

    I18n: Update translation pt_BR (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 40bf3be630c719bea97576457a4d2d5addf54f76
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Aug 27 09:07:43 2020 +0200

    launcher: Set plugin icon as fallback (Fixes #329)

commit 05cc237cf6bcf55ebb29892bda6b7ee35003370d
Author: Anonymous <noreply@xfce.org>
Date:   Wed Aug 26 12:48:11 2020 +0200

    I18n: Update translation da (96%).
    
    444 translated messages, 14 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 37c095b0443d1b7b931f3942200344d5e76ef7b4
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Wed Aug 26 00:45:48 2020 +0200

    I18n: Update translation pt_BR (96%).
    
    444 translated messages, 14 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7e8226c52065dacde8bb448bc5f63467e2e54c93
Author: UTUMI Hirosi <utuhiro78@yahoo.co.jp>
Date:   Tue Aug 25 00:45:36 2020 +0200

    I18n: Update translation ja (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 56ba263afd7eac075880c28494ebd771f47c002b
Author: Lucas Wilm <lucaswilm@gmail.com>
Date:   Sun Aug 23 00:45:48 2020 +0200

    I18n: Update translation pt_BR (96%).
    
    444 translated messages, 14 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 138e6a961f8e439a69f5ff3a51fb46d4a9645097
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 23 00:45:48 2020 +0200

    I18n: Update translation pl (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 416264a9e23da1b4c6ea8d567b6991897c16fc05
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Sun Aug 23 00:45:48 2020 +0200

    I18n: Update translation nl (99%).
    
    456 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 86a0d64df358e9698ba4e7edd8366ffccf1e5383
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sun Aug 23 00:45:42 2020 +0200

    I18n: Update translation fr (95%).
    
    436 translated messages, 22 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 38a146945cffb70a90ff6f91de1baaf074f4b719
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Sun Aug 23 00:45:42 2020 +0200

    I18n: Update translation ca (96%).
    
    444 translated messages, 14 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e68710029f4e19e179a200bc88ae57ff7207d1fe
Author: 黃柏諺 <s8321414@gmail.com>
Date:   Sat Aug 22 12:46:59 2020 +0200

    I18n: Update translation zh_TW (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ff7749006c14d81e864114285a40977bfbeadc8f
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Sat Aug 22 12:46:59 2020 +0200

    I18n: Update translation gl (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 37e74c7de40ef1ed389e7418fd71cae15b94672d
Author: Kjell Cato Heskjestad <cato@heskjestad.xyz>
Date:   Sat Aug 22 00:46:27 2020 +0200

    I18n: Update translation nb (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ff4b6a39299d44846db2bf1be898000506072e7b
Author: Anonymous <noreply@xfce.org>
Date:   Sat Aug 22 00:46:27 2020 +0200

    I18n: Update translation lt (100%).
    
    458 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f88c71bdfdb5abf43fdd3faf292e4470903b0f3b
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Sat Aug 22 00:46:27 2020 +0200

    I18n: Update translation gl (95%).
    
    436 translated messages, 22 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c0e5b47065315f0887d13f33b5d636858cc7c866
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Aug 22 00:38:19 2020 +0200

    Back to development

commit f0e94f581862f0aa79b1225548953dc67238bf17
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Aug 22 00:36:48 2020 +0200

    Updates for release

commit c6f68e97196cb588f68e185af12eeb4ead9d5b4b
Author: Simon Steinbeiß <ochosi@xfce.org>
Date:   Fri Aug 21 23:57:49 2020 +0200

    plugins: Add new rDNS icons
    
    All core plugins have now received new icons that follow the
    new palette and style.
    
    Co-Author: Maurizio Galli <maurizio.galli@gmail.com>

commit 09a78c28fd402c20987cfed6c66fe0a875ea9eb6
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Jul 13 14:46:45 2020 +0200

    Add Zoom to known applications

commit 39bb14fba3699cd535a188a6e7b6995abb528a03
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Jul 13 14:33:08 2020 +0200

    Extend list of known (legacy) applications

commit b7a8c9ab9e54ca6133365e5a20efe6fa4a6ab195
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Sun Jul 12 12:41:30 2020 -0400

    Use the correct terminology

commit 1ea74c19000eec73efd8d935e73af627710ea3ed
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Sun Jul 12 12:39:05 2020 -0400

    Use improved settings terminology

commit fc0d63a8e66d52796122226979baeecdd29a05c6
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Sun Jul 12 07:28:52 2020 -0400

    Rearrange preferences for applicable settings

commit 8b6aad9675f02916c239675ebd41af52f0c18d5b
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Sun Jul 12 06:27:29 2020 -0400

    Fix spacing between systray and statusnotifiers

commit 77340dd73401e8db8a19a7888739d21ecf9ff271
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Sun Jul 12 06:09:45 2020 -0400

    Fix alignment and row count at all sizes

commit 2f3cf009ba69a284382ecec6e619c70199d128ec
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Sun Jul 12 05:51:40 2020 -0400

    Fix alignment at most sizes

commit 37b15df58c737949747d7d0eac9419d690027263
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Sat Jul 11 21:49:02 2020 -0400

    Add support for panel icon-size settings

commit b8a7e7f7edfbe49bc4d8212546f28f6598892ee0
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Sat Jul 11 20:05:04 2020 -0400

    Redraw statusnotifiers when config changes

commit 7592ab15e9056066cbfcf6943475926008550f4f
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Sat Jul 11 19:51:57 2020 -0400

    Make systray and statusnotifiers match size and almost match multi-line positioning

commit 3704321a8ced407afbeda155751ed312c8f7b3f2
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Thu Jul 9 21:35:43 2020 -0400

    Make mode-whitelist work with systray

commit 0bb6fcdf30d7cf7ce61e939b6836817f46f663f9
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Jul 6 09:14:30 2020 +0200

    Start unifying configuration defaults

commit 00ada80539ce653902bff63b4f3fb0bcb0b14171
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Sun Jul 5 07:38:22 2020 -0400

    Enable single-row for systray

commit 4c569f9f093901527f7e7ee6dffb4b31963e9208
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Sun Jul 5 06:46:23 2020 -0400

    Make the arrow work with statusnotifiers

commit 1ab2fe9debf7b6b9ca4117ad4187d668a3eca48f
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Sat Jul 4 07:48:55 2020 -0400

    Revert the invalid symbolic-icons systray patch

commit 0405d7983cb33449a0215b2cb2d4f14ff755d702
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Sat Jul 4 07:40:13 2020 -0400

    Make the clear button work for systray; Strip out the systray dialog code

commit 8fba0613845ba5abf0b60e969976f3ae9f28db07
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Fri Jul 3 06:32:14 2020 -0400

    Fix hidden setting, move arrow to end of box

commit f9a538b09bf3f51d9314873f1396180590ecbea7
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Fri Jul 3 05:59:47 2020 -0400

    Add systray items list view

commit 7aa1f6dc0f3ffc9120cd9fb797256f355e5d07ec
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jul 2 22:52:32 2020 +0200

    Further reduce the diff

commit 2576f88b36aafc670b62e3389ff1310325e7291d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jul 2 17:57:03 2020 +0200

    Further reduce diff to master

commit b87fe5b37ab6dcfdb513c4b20d3497c629ae8876
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jul 2 14:37:23 2020 +0200

    Reduce diff to master

commit 92b7a864544ecee0251cfa159449d89e43a08102
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jul 2 14:35:56 2020 +0200

    Drop duplicate line

commit 920ca9ccf3e7b33b2c9cbe4e26414842bced6ebe
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jul 2 14:01:29 2020 +0200

    Drop about dialog from systray

commit c1f3d9258131b2230e955834f570dac58e7a28fd
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jul 2 14:00:15 2020 +0200

    Drop statusnotifier from default panel layout

commit 19cd3b8678cbee003fdfec2da202891e151dd6c6
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jul 2 14:00:03 2020 +0200

    Rename statusnotifier to systray
    
    This will make the transition more seamless for users.

commit 1b6e2452f7ea250179ba5787aa10c5eaa216134d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jul 2 10:30:32 2020 +0200

    Add Python statusnotifier for testing

commit 1e0262fc112822fd0f0b2b76b459bd65fb44a8fd
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Jun 30 15:21:33 2020 +0200

    Fix icon names

commit ca5c338732dc39c423c6099d03fbf304cc48b171
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Tue Jun 30 06:46:49 2020 -0400

    Make symbolic icons optional in systray (needs testing)

commit 3c9157af1deb7871ffedf15ffda700c5fcc02d36
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Tue Jun 30 06:07:14 2020 -0400

    Add remaining properties

commit 51289c936ad916c2288e63ea0848ae7b9e497be1
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Mon Jun 29 23:25:29 2020 -0400

    Make systray recognize and respond to config updates (size max, square icons)

commit 91fd0f22fd459c45b1ba633770c69a39d06911fb
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Mon Jun 29 22:55:37 2020 -0400

    Fix adding known legacy items to Xfconf

commit 50b47bfb71867dd4963f5471c5cfbf75fe27becb
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jun 26 16:52:37 2020 +0200

    Fix make distcheck

commit 93130b055588f92d62084d7b5f97121736b8f678
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jun 26 16:35:28 2020 +0200

    Rename to Status Tray plugin

commit 6ef31102ad0675213b82a2d4e9000c3160088ca6
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jun 26 04:19:44 2020 +0200

    Update potfiles

commit ab1be2a73f6cfeb1d2f42b0b0e70d7abac56812e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jun 26 04:00:45 2020 +0200

    Indentation fixes

commit ab9a6157b0f5926cc09f6c6820e17fd3ee2fab37
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jun 26 03:54:11 2020 +0200

    Hook up systray size changed signal

commit 261d58e4327d6e7cd9cf5ec2cceb0fc03e3b89ee
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jun 26 03:49:50 2020 +0200

    Drop dead code

commit 87ef4852de94a17f7dac93b41bbfc6047e01345d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jun 26 03:45:04 2020 +0200

    Fix systray orientation

commit 7a0b8c36bc940ab648d37a04ffbfc2b0b90b17ac
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Thu Jun 25 21:59:27 2020 -0400

    Add configs for legacy known and hidden items

commit 3d12067c08e3230756b8804335e1cfbd7a5f3fe4
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Thu Jun 25 21:44:21 2020 -0400

    Align settings names

commit 9c9ed6cb53fc19d9baefd92f666b91b0e467b63e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jun 26 03:30:36 2020 +0200

    Fix warnings when removing the plugin

commit d6984523df8c63da8f9f2cef63ca8f79b9ccba91
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jun 26 03:00:50 2020 +0200

    Make the systray show up

commit 508f5f0e51c78097eb9f6d1a0067c9b1b765f002
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jun 26 02:53:11 2020 +0200

    Initialize systray part of the plugin

commit a889bf7b057164f3edd69f41be81f539f8e8ce5d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jun 26 02:33:12 2020 +0200

    Fix sn_box packing

commit 86d24409b076fdba4eb57330609672b278a7d5b3
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jun 26 02:05:10 2020 +0200

    Fix packing in the plugin

commit e213d31c34e7d782e6e5371388d090026c4279d6
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jun 26 01:55:11 2020 +0200

    Drop systray from makefile

commit c453829406c8b4576d3e6459cdc3c210fa109523
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Jun 23 18:58:44 2020 +0200

    WIP: Merge statusnotifier and systray

commit 50e88c8f2bd7602001e467dd434e1ede742fd002
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Jun 21 18:30:54 2020 +0200

    Fix distcheck

commit 54ce26211b5ebfd5b491e7eff44d904bcecb19a8
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Jun 20 21:30:29 2020 +0200

    Add statusnotifier to build

commit 5462df4c7c5ffdc89a2bd5dfe1f107b21cd8f543
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jun 19 00:11:30 2020 +0200

    statusnotifier: Fix potfiles paths

commit c460c936777d64e053121cbbd0882a42e289f066
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jun 18 23:56:00 2020 +0200

    Merge xfce4-statusnotifier-plugin to the panel

commit 5f9baeb9b9baec52d988aa00f5ffc6a19966f545
Author: Anonymous <noreply@xfce.org>
Date:   Thu Aug 20 12:47:46 2020 +0200

    I18n: Update translation lt (100%).
    
    437 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d1eac6dde18c36d7def6462ec965a380f83b99b8
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Wed Aug 19 12:46:32 2020 +0200

    I18n: Update translation ko (100%).
    
    437 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 90b7821870b35e3b3c2a433082890616f6b4832a
Author: Tamaranch <138-Tamaranch@users.noreply.gitlab.xfce.org>
Date:   Wed Jul 8 11:47:21 2020 +0200

    Use shared field codes expansion

commit a79c663bcff784e9084cc36a75c6b945b5ae58f8
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Sun Jul 26 00:46:27 2020 +0200

    I18n: Update translation he (100%).
    
    437 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c5d0333f5545cd680db335888a7f4640d2407804
Author: Demiray Muhterem <mdemiray@msn.com>
Date:   Tue Jul 21 00:45:59 2020 +0200

    I18n: Update translation tr (100%).
    
    437 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a3d19642712cbb17dc1874eebc6babd66d78fd14
Author: 黃柏諺 <s8321414@gmail.com>
Date:   Sun Jul 19 12:46:31 2020 +0200

    I18n: Update translation zh_TW (100%).
    
    437 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7430e0d83853056a53b836018846e87d2c73a63b
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sat Jul 18 12:46:44 2020 +0200

    I18n: Update translation fr (100%).
    
    437 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1ea727c2631fb5a4cc49d12ee3102ae73d576877
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date:   Sat Jul 18 00:46:17 2020 +0200

    I18n: Update translation pt (100%).
    
    437 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 56c6f8b1f85ee54a4cc3742a97da5cfa89c34019
Author: UTUMI Hirosi <utuhiro78@yahoo.co.jp>
Date:   Sat Jul 18 00:46:17 2020 +0200

    I18n: Update translation ja (100%).
    
    437 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4fd28deec13c35f957de20e22765cc12d71d9f24
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Fri Jul 17 12:46:43 2020 +0200

    I18n: Update translation zh_CN (100%).
    
    437 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0bb7bd47bc3b66230e423968dba02a29ddabb69d
Author: Kjell Cato Heskjestad <cato@heskjestad.xyz>
Date:   Fri Jul 17 12:46:43 2020 +0200

    I18n: Update translation nb (100%).
    
    437 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8617744fe74ae0672bbc36c8343e4d7f261d183d
Author: Lucas Wilm <lucaswilm@gmail.com>
Date:   Fri Jul 17 00:45:49 2020 +0200

    I18n: Update translation pt_BR (100%).
    
    437 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 055cb18675c211be7eaac484901daa0df485f8d4
Author: Besnik Bleta <besnik@programeshqip.org>
Date:   Thu Jul 16 12:46:55 2020 +0200

    I18n: Update translation sq (99%).
    
    436 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 149c06f9792fe67fec8e75aee88dc297c1f05630
Author: Simon Steinbeiß <ochosi@xfce.org>
Date:   Wed Jul 15 00:48:09 2020 +0200

    tasklist: Add "Launch New Instance" item to menu (Fixes #158)
    
    Works on at least Linux where `/proc/<pid>/exe` is a symlink to
    the running executable. Could be adapted to other platforms by using
    their version of that symlink.
    If not supported, the "Launch New Instance" item is not added to
    the menu.

commit 1bde38b49f19388fc57475ff91b8921ab74e7038
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Mon Jul 13 00:46:22 2020 +0200

    I18n: Update translation ko (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cb1cffea69dc4f7d9614fb47639358d2f9795dc9
Author: Luna Jernberg <bittin@cafe8bitar.se>
Date:   Thu Jul 9 12:46:50 2020 +0200

    I18n: Update translation sv (98%).
    
    428 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 561556695de356696d0b0bc9651051b1580e0b85
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Thu Jul 9 12:46:50 2020 +0200

    I18n: Update translation hr (99%).
    
    432 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3e24ebda359162d398226070d9153644d4eb39a5
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 9 00:45:50 2020 +0200

    I18n: Update translation pl (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7d651bc1f3e611fae9769e18066909b29cc59460
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jul 1 00:45:58 2020 +0200

    I18n: Update translation he (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9e1913df410553c170be3fea2c4b5ffbb272f6f5
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sun Jun 28 12:46:34 2020 +0200

    I18n: Update translation kk (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1d517721e4ed5a130138bfcc8af862c444d9c6a7
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Sat Jun 27 12:46:24 2020 +0200

    I18n: Update translation et (97%).
    
    424 translated messages, 10 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a7d93445a86bb1658c5e3a8cc51dbf9bfc32fc2c
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Fri Jun 26 01:03:19 2020 +0200

    I18n: Update translation sr (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4f7c533cdc476b47205bcf379049e7393dd3a8d9
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Jun 23 19:07:35 2020 +0200

    Back to development

commit 5ee95eb79a79ef33b0f9e835fbaf06a731a954fa
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Jun 23 19:04:37 2020 +0200

    Updates for release

commit a325c2bd9fafafdd18e597fad0ba937e15e71a8f
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jun 23 12:46:09 2020 +0200

    I18n: Update translation he (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7234aba192e2c4011e16602313358c64d96e7ca9
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jun 23 00:46:07 2020 +0200

    I18n: Update translation he (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e805e9bc587c1f79a0d1ce57eaf686cadf495818
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Fri Jun 19 12:47:51 2020 +0200

    I18n: Update translation gl (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6987d3b95d5519cd03a0a2a837add66cd6ec51e3
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jun 18 12:46:47 2020 +0200

    I18n: Update translation hu (99%).
    
    433 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ccc728addd952b63e998ab33c7b1d2fb5af9126d
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jun 15 12:46:34 2020 +0200

    I18n: Update translation he (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2612052b3cc6e1533a3d0aaa2320af7621ac5e19
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jun 15 00:46:04 2020 +0200

    I18n: Update translation he (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 589c4bddfaaae1f04d3f08aa5c60b24358ca6580
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Sun Jun 14 12:46:30 2020 +0200

    I18n: Update translation et (96%).
    
    420 translated messages, 14 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 54c8e08226679939da68b318b89a1fa7dba00c6e
Author: Besnik Bleta <besnik@programeshqip.org>
Date:   Sat Jun 13 00:45:53 2020 +0200

    I18n: Update translation sq (99%).
    
    433 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2e2be3b89d015b14d59072a9535a234db01bca15
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jun 12 12:47:08 2020 +0200

    I18n: Update translation he (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3a23646127397abd94e1b209238b2effee875773
Author: Jiri Grönroos <jiri.gronroos@iki.fi>
Date:   Thu Jun 11 00:46:11 2020 +0200

    I18n: Update translation fi (98%).
    
    428 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 43b04957f80ef38a362334efae24125dc7830c8d
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jun 10 00:46:19 2020 +0200

    I18n: Update translation he (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 90d0a694d5b4574af53174af7da092b32e22222b
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Jun 8 00:36:00 2020 +0200

    Update gitignore (Fixes #295)

commit 44d98b20544e23b31042f78440c11df2868c2f88
Author: Arman Harutyunyan <arman.harut468@gmail.com>
Date:   Fri Jun 5 00:45:45 2020 +0200

    I18n: Update translation hye (95%).
    
    415 translated messages, 19 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b6a26334d6a551da74edbfbea142ae38877ed088
Author: Igor <f2404@yandex.ru>
Date:   Tue Jun 2 12:46:24 2020 +0200

    I18n: Update translation ru (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b29f5de2110655cca40562b665c93e08f4cf4b5c
Author: Wellington Almeida <wsalmeida6@gmail.com>
Date:   Tue Jun 2 00:45:49 2020 +0200

    I18n: Update translation pt_BR (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 28bc0f046e26858d540be9103ac8f6613f816109
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jun 2 00:45:49 2020 +0200

    I18n: Update translation he (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9b03408e59eefc86b2132cac32a400391265e4b4
Author: Wellington Almeida <wsalmeida6@gmail.com>
Date:   Mon Jun 1 00:45:55 2020 +0200

    I18n: Update translation pt_BR (99%).
    
    433 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6492a82adb99c9a2bc3e3fed97dfbd2ba8995e4a
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date:   Sun May 31 00:45:59 2020 +0200

    I18n: Update translation pt (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 42f0e64811161e0c95bd0c7fb4c57d29ff97ac5e
Author: Anonymous <noreply@xfce.org>
Date:   Sun May 31 00:45:59 2020 +0200

    I18n: Update translation lt (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c77dbcf58b7224939c61617ac17862b7c25b61c4
Author: Anonymous <noreply@xfce.org>
Date:   Sun May 31 00:45:59 2020 +0200

    I18n: Update translation es (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 82385ee1d44d3cff5230adb61ba0b1e04b20d112
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun May 31 00:24:20 2020 +0200

    dark-mode: Make property unique across panels
    
    As gtk-application-prefer-dark-theme can only be meaningfully set once
    per application we should also treat it accordingly. Before this commit
    the changing of the dark-mode setting in one panel would have
    side-effects on other panels: everything panel-internal would change,
    all external plugins would stick to the dark-mode setting of their
    panel, resulting in mixed bright/dark panels.

commit a7b6f4b4ce72166327a69cf0d159288412dd45b8
Author: 黃柏諺 <s8321414@gmail.com>
Date:   Sat May 30 12:47:12 2020 +0200

    I18n: Update translation zh_TW (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a747023d47df63774cfe728663e538d6ead8c1ca
Author: Kjell Cato Heskjestad <cato@heskjestad.xyz>
Date:   Sat May 30 12:47:12 2020 +0200

    I18n: Update translation nb (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f63fca56c7661b6142d87877870f24b7bb1202cc
Author: Andreas Eitel <github-aneitel@online.de>
Date:   Sat May 30 12:47:11 2020 +0200

    I18n: Update translation de (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6341353dbf9bcf91a752da38ae4940c05d950725
Author: UTUMI Hirosi <utuhiro78@yahoo.co.jp>
Date:   Sat May 30 00:45:54 2020 +0200

    I18n: Update translation ja (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9e2c5a97d07b7190d27b7b44c3a8fe7c46c9bdf8
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sat May 30 00:45:54 2020 +0200

    I18n: Update translation fr (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 55abd9fc3bb1c10482bbcca3a264dfb0700c4a78
Author: Anonymous <noreply@xfce.org>
Date:   Sat May 30 00:45:53 2020 +0200

    I18n: Update translation da (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f175f23ed5ca477e0555a0bec73a5831efd10cbc
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Sat May 30 00:45:53 2020 +0200

    I18n: Update translation ca (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 47b66259a2012c47e5d95414224c08850441bbb9
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri May 29 23:21:09 2020 +0200

    launcher: Fix launcher menu button state (Fixes #264)

commit 4652770995627c90bb6681ca47e8345bcd423c1b
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri May 29 22:51:42 2020 +0200

    tasklist: Allow keyboard navigation within groups (Fixes #270)

commit fd490b5ec5a3fafa558f0b6b6d949bf0358f86e3
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri May 29 20:32:34 2020 +0200

    applicationsmenu: Correctly block autohiding (Fixes #287)

commit e075e2043b4b4e02ecad3c02be5f1f89fd9ba60e
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Fri May 29 12:46:35 2020 +0200

    I18n: Update translation zh_CN (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 37340bb6c2ed0af73cc203c57dacf1d9557b8f74
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Fri May 29 12:46:35 2020 +0200

    I18n: Update translation bg (100%).
    
    434 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 399315bf588aaf5de6c6c93ef7bf8024b1a11427
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu May 28 11:21:54 2020 +0200

    action buttons: Fix combobox signal

commit 350659a50569a444290b80baa27205250e7babc4
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu May 28 11:16:57 2020 +0200

    action buttons: Drop 'inverted buttons' setting (#223)

commit 2f885a51718190e7408e352c3c59b5898788bfc2
Author: Marcus Comstedt <marcus@mc.pp.se>
Date:   Thu May 28 01:20:55 2020 +0200

    action buttons: Add button title options (Bug #8980)
    
    Co-Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>

commit 46a74eee963721fb61196e00ebe89f798b11682b
Author: Triyan W. Nugroho <triyan.wn@gmail.com>
Date:   Thu May 28 00:46:21 2020 +0200

    I18n: Update translation id (99%).
    
    428 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a4c980bb8528eba630f607c96e44b43629905d48
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed May 27 22:30:04 2020 +0200

    action buttons: Fix separator width (Bug #15558)

commit 4c12892c91d9106569cc80bca01663fee2d5de6b
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed May 27 12:29:47 2020 +0200

    launcher: Fix crash with actions menu (Bug #16823)

commit 960030ba800fcd5bded4bcf003b7dbd60cd46548
Author: Samvel Harutyunyan <samvel@ehayq.am>
Date:   Wed May 27 00:45:52 2020 +0200

    I18n: Update translation hye (96%).
    
    416 translated messages, 13 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c3933b46338c5edea51b316c6a8a4b735fc78dc9
Author: Romain Bouvier <skunnyk@alteroot.org>
Date:   Tue May 26 19:01:56 2020 +0200

    Fix launcher in default panel configuration
    
    - exo-helpers have been merged in xfce4-settings and renamed to xfce4-xxx

commit 2d07ad49611e21bfc77be30c621dd128b5f1e6bf
Author: Ivan <personal@live.hk>
Date:   Tue May 26 12:46:29 2020 +0200

    I18n: Update translation zh_HK (94%).
    
    407 translated messages, 22 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 08105d950bd877b3b556952afb7efbfdd26b4b33
Author: Samvel Harutyunyan <samvel@ehayq.am>
Date:   Tue May 26 12:46:29 2020 +0200

    I18n: Update translation hye (96%).
    
    415 translated messages, 14 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 02a9d90dfb7d94df87d50fbb28d84b6550c59b01
Author: Natanael Copa <ncopa@alpinelinux.org>
Date:   Tue May 26 10:40:02 2020 +0200

    Add Gio to libxfce4panel gir includes
    
    This fixes the following error when building xfce4-stopwatch-plugin:
    
      Gio-2.0.gir:120281.7-120285.24: error: `UnixSocketAddress' already
      contains a definition for `abstract'
      Gio-2.0.gir:120071.7-120073.21: note: previous definition of `abstract'
      was here

commit 7af78564701fcd457aaa47036554caee1dbebea2
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Tue May 26 00:46:01 2020 +0200

    I18n: Update translation et (96%).
    
    413 translated messages, 16 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5fa137ba4a55efd4f02d35d5e885c7474bf067e0
Author: Real School <localization@ehayq.am>
Date:   Mon May 25 12:47:47 2020 +0200

    I18n: Add new translation hye (96%).
    
    414 translated messages, 15 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 272913f11f6ab06943327ce3cb903edbd93d055b
Author: Besnik Bleta <besnik@programeshqip.org>
Date:   Mon May 25 12:47:46 2020 +0200

    I18n: Update translation sq (99%).
    
    428 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 00a79ec835d0cb10613ca6a2123abf880a11f944
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Mon May 25 00:45:59 2020 +0200

    I18n: Update translation et (95%).
    
    410 translated messages, 19 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3f66d6e252789210a052ee820dd4f41042e1c882
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Sun May 24 12:46:22 2020 +0200

    I18n: Update translation et (95%).
    
    410 translated messages, 19 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b24218cee1c8cd460cbb0d1ee373ce5a2207d221
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Sun May 24 00:45:36 2020 +0200

    I18n: Update translation et (95%).
    
    410 translated messages, 19 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c8ea4d4d439c4b7af9380a6d9ffc8d1df5510cbb
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date:   Fri May 22 23:01:23 2020 +0200

    Improve docs for xfce_panel_plugin_position_widget (Bug #9438)
    
    Fix small typos and be more explicit about what the function does. It
    does not actually position the widget, it computes the coordinates
    needed to position it.

commit 02248cf9c7ec7d7cc0fbc66950e58840c7528daa
Author: Vincenzo Reale <vinx.reale@gmail.com>
Date:   Fri May 22 00:46:56 2020 +0200

    I18n: Update translation it (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9840226519fa71b739358e60a955e8fa70b1625c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri May 22 00:26:03 2020 +0200

    Fix background of 48px app icons (Bug #16873)

commit 8d5d89f68b1a38ebcdf37bfd8f6a8c768b18c03d
Author: Samvel Harutyunyan <samvel@ehayq.am>
Date:   Thu May 21 12:46:22 2020 +0200

    I18n: Update translation hy_AM (96%).
    
    412 translated messages, 17 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d2d4fbc908dc520d524982ee96d18d42801b4d58
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue May 19 22:54:43 2020 +0200

    Add new app icon and rDNS icon name

commit 1ad146eaaa4512a0293a00aa24d6c2536e1dbd41
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Sat May 16 00:45:40 2020 +0200

    I18n: Update translation et (95%).
    
    409 translated messages, 20 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 125391a26e19841f199b27c2b1959450516de841
Author: Walter Cheuk <wwycheuk@gmail.com>
Date:   Fri May 15 12:46:04 2020 +0200

    I18n: Update translation zh_TW (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6167134972750d147fb97fb8963032bbfa8cdfa2
Author: Simon Steinbeiß <simon.steinbeiss@tttech.com>
Date:   Mon May 11 14:56:06 2020 +0200

    Add basic GitLab pipeline

commit 859867c141ed2f866ce25cc60c72cf2d8ebca110
Author: Ignacio Poggi <ignaciop.3@gmail.com>
Date:   Mon May 11 00:45:38 2020 +0200

    I18n: Update translation es (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 00893e813f1deb49e95405a1dbde9a8a84f40f7a
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Thu May 7 00:46:18 2020 +0200

    I18n: Update translation nl .
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f1851e37b0551f80cb17669531c5d95baac3e50f
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Thu May 7 00:46:18 2020 +0200

    I18n: Update translation et .
    
    404 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ec28ac0d3c7bebb234b1baf612f47fa87f1508d4
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Wed May 6 00:46:01 2020 +0200

    I18n: Update translation et .
    
    404 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c06df30f322549bca3ce20e7854c46b305210ad7
Author: Ignacio Poggi <ignaciop.3@gmail.com>
Date:   Fri May 1 00:15:41 2020 +0200

    I18n: Update translation es (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ce10efc6f893d84721251a4b117a4df989ed5653
Author: Ignacio Poggi <ignaciop.3@gmail.com>
Date:   Wed Apr 29 19:41:14 2020 +0200

    I18n: Update translation es (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5fd5c1c5295801bea8dd0144d61570dd480d9d1b
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Apr 28 12:49:41 2020 +0200

    Fix whitespace error

commit 659d61ee2901ffe1e34f7dbcf5d8213b7a17d142
Author: Romain Bouvier <skunnyk@alteroot.org>
Date:   Sun Apr 26 23:08:43 2020 +0200

    Fix panel build with vala 0.48 (Bug #16426)
    
    This commit disables the remote_event in vala plugins.
    
    - Since vala 0.48, vapigen fails with :
      overriding method `Xfce.PanelPlugin.remote_event' is incompatible with base method
      `bool Xfce.PanelPluginProvider.remote_event (string, GLib.Value, uint)': too few parameters.
    - The problem may be present since 2010 when remote event replies from the wrapper
      has been added in d168066d3 (so not for internal plugins which don't use the wrapper)
    - So, skip PanelPlugin.remote_event from vapi generation. Maybe this can
      break some vala plugins, but I'm not aware of any using this
      remote_event feature.

commit 08dfc14a9bedf90b0cf18fce9daec765e2ca5c9a
Author: Igor <f2404@yandex.ru>
Date:   Sun Apr 26 00:12:25 2020 +0200

    I18n: Update translation ru (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 82e48c53fc65a314651519b06c25ef9cfbbb534c
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Sun Apr 26 00:12:25 2020 +0200

    I18n: Update translation pt_BR (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 680377e30a000330b76b603991fdbd05ffcfbe67
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Sun Apr 26 00:12:25 2020 +0200

    I18n: Update translation et (92%).
    
    398 translated messages, 31 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 19f42141fe35f32c69ffdffbfa0a8899fd07aeeb
Author: Ignacio Poggi <ignaciop.3@gmail.com>
Date:   Sun Apr 26 00:12:25 2020 +0200

    I18n: Update translation es (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e61c7055cdd591bc5c350afd5eb36e5a8ef0d631
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Apr 25 22:53:02 2020 +0200

    Fix build

commit 19b2977543f3f72b1f23853878355fbbbf2e6fa8
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Apr 25 00:36:12 2020 +0200

    Drop references to Gtk2 and 4.6 panel plugins

commit de6b062f9dbc441b8c10531797ee5ce5aa92b792
Author: Anonymous <noreply@xfce.org>
Date:   Sat Apr 18 22:21:28 2020 +0200

    I18n: Update translation es (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1b5605df2e4a780a0a8097e8306e1b4db9888199
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:30 2020 +0200

    I18n: Update translation zh_HK (88%).
    
    381 translated messages, 48 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 546a9c558f9e1e1a3daace1530d55d4cd3c00668
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:29 2020 +0200

    I18n: Update translation vi (71%).
    
    306 translated messages, 123 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e40de229cfae2385c2246c77458e547db748d2d7
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:29 2020 +0200

    I18n: Update translation uk (97%).
    
    419 translated messages, 10 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 08c11c258936d17ad65b42b3b2a9f17fd83b1d53
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:29 2020 +0200

    I18n: Update translation ug (88%).
    
    381 translated messages, 48 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b55b51cbaef00f21a102bfab7c636199686082e9
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:29 2020 +0200

    I18n: Update translation tr (99%).
    
    428 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 14d31495ba60d2329fa502167d1e22f7a557381d
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:29 2020 +0200

    I18n: Update translation th (96%).
    
    413 translated messages, 16 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 29de8484868dae99e64b488cc7e61c15066a4f54
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:29 2020 +0200

    I18n: Update translation sv (97%).
    
    417 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c8cef4c8ec05e34d005ea12de335a92abc62d221
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:29 2020 +0200

    I18n: Update translation sq (99%).
    
    427 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cb5e5cf0628b47a372b8caa955745e17f570b7b2
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:28 2020 +0200

    I18n: Update translation sl (99%).
    
    428 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0c84320cd12909dccb33b16ba1fa27a0c993741a
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:28 2020 +0200

    I18n: Update translation sk (97%).
    
    418 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit daee91b211cefc5f4b1ec4f00dc9ce6015ade062
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:28 2020 +0200

    I18n: Update translation si (64%).
    
    276 translated messages, 153 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit aef87cfe954cf01463cdf31b1a72cc4fc91840ea
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:28 2020 +0200

    I18n: Update translation ru (99%).
    
    428 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 73355a7f5dbf60638947c27dc78e635b7ed70c77
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:28 2020 +0200

    I18n: Update translation ro (89%).
    
    385 translated messages, 44 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 506d9c07050c62ac58f917d9529512203b0e0516
Author: Anonymous <noreply@xfce.org>
Date:   Tue Apr 14 23:55:28 2020 +0200

    I18n: Update translation pl (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a512b1f865556dff28b224685ea6d5b8f551c18f
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:27 2020 +0200

    I18n: Update translation pa (64%).
    
    275 translated messages, 154 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d63c4399cde89d8c57cb5374c3bf9a3024a8b7ec
Author: Anonymous <noreply@xfce.org>
Date:   Tue Apr 14 23:55:27 2020 +0200

    I18n: Update translation oc (90%).
    
    388 translated messages, 41 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2d97b8ea2d3331fd9ae35a9dbae62b820f052e03
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:27 2020 +0200

    I18n: Update translation nn (90%).
    
    387 translated messages, 42 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c6e0123d18cc34d916e7b3d215365c76c0cc4627
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:27 2020 +0200

    I18n: Update translation nb (99%).
    
    427 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 227333ff5ad00ce22e73cff2234ab8e7175ae274
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:27 2020 +0200

    I18n: Update translation ms (99%).
    
    428 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5c4471a38f6f7d4f95031c0d85cf0ed7d90db21f
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:27 2020 +0200

    I18n: Update translation ko (97%).
    
    417 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e48386d26838493f5291780abdf320c308330bf0
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:26 2020 +0200

    I18n: Update translation kk (99%).
    
    428 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4bda8a4f6c053dc61ee5ee4e1f657730f5f8c2fc
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:26 2020 +0200

    I18n: Update translation ka (63%).
    
    271 translated messages, 158 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2fec0fab3a04a6397f6d24119dec51b1b913df8d
Author: UTUMI Hirosi <utuhiro78@yahoo.co.jp>
Date:   Tue Apr 14 23:55:26 2020 +0200

    I18n: Update translation ja (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1a8215ed45e1ff813c376b012b0feb108921d260
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:26 2020 +0200

    I18n: Update translation is (94%).
    
    406 translated messages, 23 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0c7d0779598c13f7926fbb0e6d44f08cda388bf5
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:26 2020 +0200

    I18n: Update translation ie (95%).
    
    408 translated messages, 21 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7edb1a59ad6ed45ea3d693975c8e475763fe48a2
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:26 2020 +0200

    I18n: Update translation id (96%).
    
    413 translated messages, 16 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1f19d1bfbf4a7a788df78f43bd01ef14a0447200
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:25 2020 +0200

    I18n: Update translation hy_AM (96%).
    
    412 translated messages, 17 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4360807185b41773e2a74b284e26f2ebaef7a9aa
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:25 2020 +0200

    I18n: Update translation hu (99%).
    
    428 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 29509ae899253d2b54f561263951c00960d8154b
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:25 2020 +0200

    I18n: Update translation hr (99%).
    
    428 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2d77a27be8b522fb16b7be7ba87cf25dd5ddda57
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:25 2020 +0200

    I18n: Update translation fi (99%).
    
    427 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d9dc1f4dd75e47f2a9fc5ea1a5e95802e81ce39d
Author: Priit Jõerüüt <transifex@joeruut.com>
Date:   Tue Apr 14 23:55:24 2020 +0200

    I18n: Update translation et (90%).
    
    390 translated messages, 39 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bbddaf31d8cd3f1971a130baa39a411d1896faa3
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:24 2020 +0200

    I18n: Update translation en_GB (97%).
    
    417 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5ddc6a1af592a9b9bb85f965596ddccd3b539c87
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:24 2020 +0200

    I18n: Update translation en_AU (94%).
    
    406 translated messages, 23 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7c0c79c40b2ebe525380449b1e004b1ed32d3640
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:24 2020 +0200

    I18n: Update translation el (97%).
    
    417 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8f46a85086b2f0e5455fe88723406dea917c7b6a
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:24 2020 +0200

    I18n: Update translation cs (99%).
    
    427 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2609d7c931155f1cc392d90ecb93a15ce9c21a69
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:23 2020 +0200

    I18n: Update translation bn (67%).
    
    291 translated messages, 138 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f732fbc5feebacbefb23fe00931229e3f748b18f
Author: Zmicer Turok <nashtlumach@gmail.com>
Date:   Tue Apr 14 23:55:23 2020 +0200

    I18n: Update translation be (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4a80c7ca4a8bb6103e487f34640166d19aadc07a
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:23 2020 +0200

    I18n: Update translation ar (90%).
    
    390 translated messages, 39 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5d22d4f5f0a093a934e250b43b7b8e74efc5920e
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Apr 14 23:55:23 2020 +0200

    I18n: Update translation am (69%).
    
    297 translated messages, 132 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a527df0647649849b0b2a92c7a3772b6786b25d2
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Thu Apr 9 06:30:51 2020 +0200

    I18n: Update translation zh_CN (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b5a0715de40c64110bfa7737a730be9d7ed0cfe7
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Apr 6 23:41:35 2020 +0200

    Back to development

commit 9f985e2d980965dc748d3d21d84e2c66f7e35b44
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Apr 6 23:39:58 2020 +0200

    Updates for release

commit 7c6a66718a31fd746c552f1a33b54423b4ae3164
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Apr 6 23:29:54 2020 +0200

    systray: Silence deprecation warnings

commit 2f11b3588376f7a1bb4157e3524435bcb87c4930
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Apr 6 23:29:25 2020 +0200

    Fix cast

commit fa8ca40cebc6ab37dd550c1e9b6e557a9f871f71
Author: Andre Miranda <andreldm@xfce.org>
Date:   Mon Apr 6 22:22:33 2020 +0200

    Fix GTimeVal deprecation (Bug #16643)

commit b46a8d71f613dc2ad8515a90d320afcb46dbe1cd
Author: Anonymous <noreply@xfce.org>
Date:   Mon Apr 6 12:31:13 2020 +0200

    I18n: Update translation lt (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1a4d817c3776ff42761c279ec440921783fed186
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Mon Apr 6 12:31:13 2020 +0200

    I18n: Update translation he (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 62c3c125dda4f6b4148be9df3ece281b54ac3779
Author: Ben Wiederhake <BenWiederhake.GitHub@gmx.de>
Date:   Sun Apr 5 23:25:45 2020 +0200

    Fix memory leak in panel plugin wrapper (Bug #16640)

commit 00e3a0b4ce2a6ef69ee8ca379cc6480eb0aa4b19
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sun Apr 5 12:30:40 2020 +0200

    I18n: Update translation fr (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f71cbe4cb858756c0d82a28abde37de9047a6711
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Apr 4 23:46:42 2020 +0200

    Update docstring

commit aa276a295a8bdc9e9ac1ef1f039ed3a49df44820
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Apr 4 23:45:33 2020 +0200

    Update libxfce4panel symbols

commit 0a59e41de031e204eb2b83cd2813542537143783
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Apr 4 21:38:17 2020 +0200

    plugin: Show custom menu items below plugin name
    
    Previously all custom panel menu items were shown below the "Move"
    context menu item.

commit 7f3dd44de951a74dc1adb446e2b2f643043b1100
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Apr 4 21:11:37 2020 +0200

    launcher: Show desktop actions in context menu
    
    So e.g. for Firefox this includes "Open a New Window" and
    "Open a New Private Window".
    This feature is only available for launchers holding a single
    application (as opposed to launcher menus).
    This feature depends on garcon >= 0.7.0.

commit fb37ad2c35b7903c22f8c4e1de9238783937be36
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Apr 4 20:47:36 2020 +0200

    Add xfce_panel_plugin_menu_destroy to plugin API
    
    This call allows plugins to destroy and recreate the plugin's
    context menu. This is not necessary for most plugins, as the
    xfce_panel_plugin_menu_insert_item refreshes the menu.
    In the case of the launcher's action menu we need to more frequently
    refresh the menu and also be able to remove all custom icons at once.

commit ae19e0036c81425ec4d3c11c07806e0d9c3862a8
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Sat Apr 4 18:30:40 2020 +0200

    I18n: Update translation pt_BR (99%).
    
    428 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 81eb5b54ec5ca4125edb5fb9bff099b15f2950fd
Author: Anonymous <noreply@xfce.org>
Date:   Sat Apr 4 12:30:40 2020 +0200

    I18n: Update translation da (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9dde3625330d4d8928b119b98320925629a677de
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Thu Apr 2 18:30:43 2020 +0200

    I18n: Update translation sr (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4e8dce600a13bb2aee8ccd8d87ea9f73453e12ce
Author: José Vieira <jvieira33@sapo.pt>
Date:   Thu Apr 2 12:30:53 2020 +0200

    I18n: Update translation pt (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1b5f5c54b3ade8e95010c963dbc5990642e7c8a2
Author: Anonymous <noreply@xfce.org>
Date:   Thu Apr 2 12:30:53 2020 +0200

    I18n: Update translation eu (99%).
    
    428 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 19bfd1bce8b64233af40c7521ff806ef27de1898
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date:   Wed Apr 1 18:30:45 2020 +0200

    I18n: Update translation it (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1f756232f3141e9a9a6b2ed083f49339bb6c5fac
Author: Andreas Eitel <github-aneitel@online.de>
Date:   Wed Apr 1 18:30:45 2020 +0200

    I18n: Update translation de (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c983b36ef4ea1440c2d5b4a20a0ad028c6856805
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Wed Apr 1 18:30:45 2020 +0200

    I18n: Update translation bg (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3b1726d0e327b3114630dbc869c5196b23d07f73
Author: 黃柏諺 <s8321414@gmail.com>
Date:   Wed Apr 1 12:30:47 2020 +0200

    I18n: Update translation zh_TW (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4a46c5de2b9851ae2e4370fad854459b0376bf61
Author: Anonymous <noreply@xfce.org>
Date:   Wed Apr 1 12:30:47 2020 +0200

    I18n: Update translation pl (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f7320b48bf53b9e9831e85e7b27468150c8d4751
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Wed Apr 1 12:30:47 2020 +0200

    I18n: Update translation nl (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 45213c420958348d8a5ef706fcc8053ace40803f
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Wed Apr 1 12:30:47 2020 +0200

    I18n: Update translation gl (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e65bd4f8918b5a1539af211611f66134c76db64e
Author: Anonymous <noreply@xfce.org>
Date:   Wed Apr 1 12:30:46 2020 +0200

    I18n: Update translation es (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 714bc710cb8f7188b6ae517d1b8bf9c2fce2fb49
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Wed Apr 1 12:30:46 2020 +0200

    I18n: Update translation ca (100%).
    
    429 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a39e549a1b2e52cbf96dcbc30d621779e13a2720
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Apr 1 00:28:19 2020 +0200

    settings: Add keywords for discoverability (Bug #10694)

commit 3d6e914ef02e51d834823cc43a44e3a7d6f52411
Author: Anonymous <noreply@xfce.org>
Date:   Sun Mar 29 06:31:08 2020 +0200

    I18n: Update translation pt_BR (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit abfe3eb3c589a37b32186c1b4d2b8ac3c2f50c18
Author: Piotr Sokół <psokol.l10n@gmail.com>
Date:   Fri Mar 20 12:31:11 2020 +0100

    I18n: Update translation pl (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b9580093238d9986732f1529dbfa23fcd294edf5
Author: Zmicer Turok <nashtlumach@gmail.com>
Date:   Sun Mar 1 12:30:41 2020 +0100

    I18n: Update translation be (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a67d53cfea285cc9d610d1eb4d96317221adee3e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Feb 28 21:05:32 2020 +0100

    tasklist: Hide brackets for min windows by default
    
    Previously the default was to show "[%s]" as window title for minimized
    windows. The old behavior can be re-enabled by setting the hidden
    "label-decorations" setting (since 4.14) to TRUE.

commit eb31afbf8747ac84dce7d9fe1f20d1abe058d19a
Author: Zmicer Turok <nashtlumach@gmail.com>
Date:   Fri Feb 28 12:31:08 2020 +0100

    I18n: Update translation be (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 906ea6bb2a7507db5ca347554a771e284fad8602
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Feb 24 23:27:42 2020 +0100

    tasklist: Fix crash middle-click-closing grouped windows (Bug #16410)
    
    Unfortunately the menu doesn't resize when removing an item, so we close
    it (even though keeping it open would allow users to middle-click close
    multiple windows in a row, which seems to be a valid use case).

commit 8cadeac921200b892c8f575a7447d17c9d89c61b
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Feb 24 22:24:34 2020 +0100

    panel: Fix autohide state machine
    
    Previously in some cases the panel's autohide state would go out of
    sync, leaving the panel visible when it should be hidden. In other cases
    the cancellation of autohide timeouts lead to unwanted flickering.

commit afc0c0bce8d3b24cdc405929a94082f6b2030f18
Author: Steffen Trog <shtrog@gmail.com>
Date:   Thu Feb 13 18:31:08 2020 +0100

    I18n: Update translation nb (99%).
    
    427 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 599e7e1adac4945d30a98bac9d5ceab2c2a05a90
Author: Kjell Cato Heskjestad <cato@heskjestad.xyz>
Date:   Tue Feb 11 18:30:37 2020 +0100

    I18n: Update translation nb (99%).
    
    427 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9d95ba6499dc3dfc3b85fe60481afac458bc85a7
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Tue Feb 11 12:30:37 2020 +0100

    I18n: Update translation sr (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c8a3882218b28daa0a124ec51420f9a59b043970
Author: abuyop <abuyop@gmail.com>
Date:   Sun Feb 9 00:30:57 2020 +0100

    I18n: Update translation ms (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 18dd918f4f58ab0f5869e82a1e0f4bfcdecc99bc
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Feb 5 23:53:56 2020 +0100

    Make var names more consistent

commit 0209eaceae60a61ba8badf95b0f094872ec7eb00
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Feb 5 23:46:37 2020 +0100

    Improve autohide animation
    
    The speed of the animation can be controlled through the
    popdown-speed property in Xfconf. The higher the speed though
    the slower the animation.
    The panel's autohide timeout Gtk settings are now also taken
    into account correctly.
    Finally I have added a cubic ease out function to make the animation
    look nicer.

commit 563c1647f1917f6390397dd0998d99d067e98e63
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Feb 3 14:42:59 2020 +0100

    panel: Don't tamper with leave_opacity value (Bug #16296)
    
    Instead of changing the value of leave_opacity and remembering the
    original value when compositing changes, we just set the value
    to 1.0 when needed to avoid artifacts.

commit 9fa58946bd440ec24f359405c48c53680dfa1fc8
Author: Anonymous <noreply@xfce.org>
Date:   Tue Feb 4 06:30:45 2020 +0100

    I18n: Update translation fi (99%).
    
    427 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0b38497ea78ebfc44e5afb7f7d122b2f0e8ac55e
Author: zura davitashvili <zdavitashvili0@gmail.com>
Date:   Tue Feb 4 00:31:04 2020 +0100

    I18n: Update translation ka (63%).
    
    271 translated messages, 157 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 654ec4bf9b9590363db11e5c9d2eb2a9cdcf3584
Author: Anonymous <noreply@xfce.org>
Date:   Tue Feb 4 00:31:04 2020 +0100

    I18n: Update translation fi (99%).
    
    424 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1a89fa8c591dde8afa7555a5d281e908aba08f26
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Feb 3 13:03:47 2020 +0100

    panel: Add "popdown-speed" property to adjust autohide animation
    
    Setting the property to 0 will disable the animation entirely.

commit b02619f7703fc1ae45bec5967e3b702f28167c53
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Feb 3 12:48:14 2020 +0100

    Fix typo

commit f9292c2f3b34c95e8a05d8fd31639dc5bc2b63a5
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Feb 2 14:41:03 2020 +0100

    panel: Fix cancellation of autohide animation

commit e70f10732b5080f250ae50982b0e97e4f8725094
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Feb 2 12:52:39 2020 +0100

    panel: Immediately show panel in intellihide
    
    At init time we used to pop up the panel, instead we now show it
    immediately to avoid flickering or the panel ghostly moving across the
    screen (due to the autohide slide-out animation).

commit b877250de5100effdcbd41bc20c820b2ac9f0649
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Feb 1 14:02:56 2020 +0100

    Fix indentation

commit 1de5e5fc15d65e5c927d519a87de0554119bb1f6
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Mon Feb 3 00:31:07 2020 +0100

    I18n: Update translation he (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 30104b8dd9b1bea2d24996637b07eecf6aeaaa12
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date:   Sun Feb 2 00:31:09 2020 +0100

    I18n: Update translation pt (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 14b164f61dffe5f2d7e8904353eb18badaa2f133
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sat Feb 1 18:31:09 2020 +0100

    I18n: Update translation kk (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 69896ac892880521396526f52ae7710dc12382a3
Author: Anonymous <noreply@xfce.org>
Date:   Sat Feb 1 18:31:09 2020 +0100

    I18n: Update translation da (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1c5177febe441b02bb9c0bb75858cced5778ed16
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Fri Jan 31 18:31:10 2020 +0100

    I18n: Update translation zh_CN (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0a1d40fc04e8902f61712ec9a5e24fee3fa318d8
Author: Igor <f2404@yandex.ru>
Date:   Fri Jan 31 18:31:10 2020 +0100

    I18n: Update translation ru (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dde155f529855e658b0852d2fab212ecedf29acd
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date:   Fri Jan 31 12:30:39 2020 +0100

    I18n: Update translation hr (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 25eec9f5f09045795030adadab705e3d33241339
Author: UTUMI Hirosi <utuhiro78@yahoo.co.jp>
Date:   Fri Jan 31 00:30:37 2020 +0100

    I18n: Update translation ja (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0c901518bb3aab749a95078d7c8e896a28047dfb
Author: Andreas Eitel <github-aneitel@online.de>
Date:   Fri Jan 31 00:30:37 2020 +0100

    I18n: Update translation de (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 17652f53fb9a8d6b22fbd47b7d28d57ec8590e1b
Author: Serdar Sağlam <teknomobil@msn.com>
Date:   Thu Jan 30 18:30:48 2020 +0100

    I18n: Update translation tr (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d0a84456b977d459ac1e5ad2574826e01e227471
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jan 30 18:30:48 2020 +0100

    I18n: Update translation hu (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b77f0ff269e1b45fc0840252df9f303e030f3d3f
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jan 30 18:30:48 2020 +0100

    I18n: Update translation es (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c8cd7889f3e745b44af3508f9c5ae0b2eec44ec8
Author: 黃柏諺 <s8321414@gmail.com>
Date:   Thu Jan 30 12:31:05 2020 +0100

    I18n: Update translation zh_TW (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 46e841e172712b715e6268fe775bfc9e62847e58
Author: Besnik <besnik@programeshqip.org>
Date:   Thu Jan 30 12:31:05 2020 +0100

    I18n: Update translation sq (99%).
    
    427 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e4613eab06ec9bdcaabd6cb8dd68c6a873f26491
Author: Arnold Marko <arnold.marko@gmail.com>
Date:   Thu Jan 30 12:31:04 2020 +0100

    I18n: Update translation sl (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bb4722061f396ed45e9ab6c1fb7fa6bfe0664d18
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jan 30 12:31:04 2020 +0100

    I18n: Update translation pl (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0152b61cf4456977bb8bfd57927bbeeb0a1ef9b8
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Thu Jan 30 12:31:04 2020 +0100

    I18n: Update translation nl (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f4607a42009cd64357c59cd891b2dad14c6df7a8
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jan 30 12:31:04 2020 +0100

    I18n: Update translation lt (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4b6f36e185ad5718372ef74d83888aef328801df
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date:   Thu Jan 30 12:31:04 2020 +0100

    I18n: Update translation it (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b71766305b93d076d303209cb7a099802cb32502
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Thu Jan 30 12:31:04 2020 +0100

    I18n: Update translation fr (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6fecbfd945126bb587b133e2f4126b7d4433be94
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Thu Jan 30 12:31:04 2020 +0100

    I18n: Update translation ca (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5ba58ee5bf3cb625eb97f7a9fffa8c3f156eb099
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Thu Jan 30 12:31:04 2020 +0100

    I18n: Update translation bg (100%).
    
    428 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit baeda0c43cfcc5dd73470cc848ef3b55a3b5acb2
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Jan 29 21:59:05 2020 +0100

    Improve wording in "Remove plugin" dialog (Bug #9000)

commit f3d51708ce4458dcf01c8df94663255922eca0ce
Author: Besnik <besnik@programeshqip.org>
Date:   Mon Jan 27 18:30:39 2020 +0100

    I18n: Update translation sq (99%).
    
    426 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fbc9875cb3201dec663d18d9c9fecf4e400be2b5
Author: dsafsadf <heneral@gmail.com>
Date:   Sun Jan 26 00:30:38 2020 +0100

    I18n: Update translation uk (98%).
    
    419 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1379825a6d467202c382204a22ba38d3321cc790
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Jan 25 20:15:17 2020 +0100

    systray: Remove superfluous warning

commit a27adedaeed42f60988cada52009555e7eb2e4b8
Author: zura davitashvili <zdavitashvili0@gmail.com>
Date:   Wed Jan 22 00:30:46 2020 +0100

    I18n: Update translation ka (63%).
    
    270 translated messages, 157 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2db73eb885b0af41cad6fbeb89478131f8c85b09
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Tue Jan 21 18:31:00 2020 +0100

    I18n: Update translation sr (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0ac5ca9a9fb7bdc65f895f7d4ff9d662c9deb12c
Author: José Vieira <jvieira33@sapo.pt>
Date:   Mon Jan 20 12:30:38 2020 +0100

    I18n: Update translation pt (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c6072baa12083dc330259a2e01a52e81ab55b328
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Sun Jan 19 00:30:52 2020 +0100

    I18n: Update translation pt_BR (97%).
    
    418 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7db1f872835f522a44c0e935897187444d486ea7
Author: Clement Lefebvre <root@linuxmint.com>
Date:   Fri Jan 17 22:48:57 2020 +0100

    systray: Basic support for symbolic icons

commit d51df58bd27acd908cb4d92d1f01c3d5c61bb5c7
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Jan 14 01:11:21 2020 +0100

    Back to development

commit 42a6617bf584fcefa4e94e3f4250ff6742579883
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Jan 14 01:10:00 2020 +0100

    Updates for release

commit 4eb97e0b19181849e14bb28c2830f07c0450844f
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Jan 14 00:57:29 2020 +0100

    Enable dark-mode by default

commit 35440ee2d9540a3c1afdcbff5f50dc0ee2f83d9b
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jan 9 00:19:53 2020 +0100

    tic-tac-toe: Fix XfceTitledDialog with CSD

commit 1661e4a22c5d33e6442787ad6b905abd620cb570
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jan 9 00:14:42 2020 +0100

    add-item dialog: Fix XfceTitledDialog with CSD

commit 12b28bb49b6ea2fcbd0009af4af7eca147a0756b
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Jan 14 00:32:38 2020 +0100

    systray: Improve app icon lookup
    
    Also bump the dependency on libxfce4ui to 4.15.1 as a result.

commit df9eac2e97ae960483c5e1d3f0a45d87253e3597
Author: Evangelos Foutras <evangelos@foutrelis.com>
Date:   Sun Jan 12 21:28:21 2020 +0100

    Always provide files for vala binding in dist tarball
    
    So even if vala is not installed during the distcheck step, the vala
    bindings can be built from the dist tarball.

commit 50e9e85777432eb7a383c59109f673ee7c65e7e7
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sun Jan 12 18:31:02 2020 +0100

    I18n: Update translation fr (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 536272e869ea5472a319a7368009f3b4f4051095
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jan 10 23:40:35 2020 +0100

    plugins: Fix enter/leave opacity w/o compositing (Bug #14577)
    
    Before this patch the enter and leave opacity values were applied to
    external panel plugins and the systray even with compositing disabled,
    rendering them as black boxes.

commit 2c4e8af0a719cc6d26eb1f2cff3592fcdfb63896
Author: zura davitashvili <zdavitashvili0@gmail.com>
Date:   Fri Jan 10 18:30:59 2020 +0100

    I18n: Update translation ka (62%).
    
    269 translated messages, 158 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d32e16a3704617a7579a788746cb89d4e98712d8
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jan 9 00:31:27 2020 +0100

    I18n: Update translation da (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2998ceaacf394868243285b18776f208b08b3799
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Tue Jan 7 12:30:48 2020 +0100

    I18n: Update translation gl (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c66db5db0a738fff65da3312bbe778ec7b97325a
Author: José Vieira <jvieira33@sapo.pt>
Date:   Tue Jan 7 00:30:43 2020 +0100

    I18n: Update translation pt (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e9588ba094350a8c775e008e8039067fd2004c3d
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date:   Tue Jan 7 00:30:43 2020 +0100

    I18n: Update translation hr (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1b3a86ebb98a375927f2d410f42f9b716e68eb06
Author: 黃柏諺 <s8321414@gmail.com>
Date:   Mon Jan 6 12:30:42 2020 +0100

    I18n: Update translation zh_TW (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0856eaacd98ca561b8222d5218f3adc8cf64141c
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Mon Jan 6 06:31:25 2020 +0100

    I18n: Update translation zh_CN (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 13f88c7f232d627757a7289392932c7e78609158
Author: Igor <f2404@yandex.ru>
Date:   Mon Jan 6 06:31:25 2020 +0100

    I18n: Update translation ru (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 71239e2b678927939514aad367605092665313d7
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jan 6 00:30:48 2020 +0100

    I18n: Update translation es (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 76fac61b511911102bdb1a860fe98f189ff42b9b
Author: Andreas Eitel <github-aneitel@online.de>
Date:   Mon Jan 6 00:30:48 2020 +0100

    I18n: Update translation de (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8f704e6a100e331544b3733628f7d1ec1806efed
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Mon Jan 6 00:30:47 2020 +0100

    I18n: Update translation ca (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit eba50a5459d82b69cac8f088115e70c7c879433a
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Sun Jan 5 18:31:23 2020 +0100

    I18n: Update translation nl (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 418355b0c64e9dda4685d1e4a6440e6935dfdee6
Author: Anonymous <noreply@xfce.org>
Date:   Sun Jan 5 18:31:23 2020 +0100

    I18n: Update translation lt (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 60c5340800b8b4b00af85b3bb5a3b919a3114d3c
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date:   Sun Jan 5 18:31:22 2020 +0100

    I18n: Update translation it (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 54bd7624dfc744eac53c8ac9f4f18208d82e3a76
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sun Jan 5 18:31:22 2020 +0100

    I18n: Update translation fr (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 65d6bbf5b16d5b7816453556c3d88b5485f141c3
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Sun Jan 5 18:31:22 2020 +0100

    I18n: Update translation cs (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f058209154ba56cc61d2c36ba6b69d05090b4e2e
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Sun Jan 5 18:31:21 2020 +0100

    I18n: Update translation bg (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 37c701e4cc708e84f48698d0c7b20011a6d2fdce
Author: Besnik <besnik@programeshqip.org>
Date:   Sun Jan 5 12:31:16 2020 +0100

    I18n: Update translation sq (98%).
    
    420 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4a18e05d22e499bf39220b82138d0c14f1cd1ed6
Author: Anonymous <noreply@xfce.org>
Date:   Sun Jan 5 12:31:16 2020 +0100

    I18n: Update translation pl (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 753d2341ca2f8aa2d54e2ea2a07d1865d4695f08
Author: UTUMI Hirosi <utuhiro78@yahoo.co.jp>
Date:   Sun Jan 5 12:31:16 2020 +0100

    I18n: Update translation ja (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 25a4ce708466f70d8b0d370cf73e511a65d354a0
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sun Jan 5 12:31:16 2020 +0100

    I18n: Update translation fr (100%).
    
    427 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 295650d0a1c59f6af3bf6c78f17136f0503e9b19
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Sun Jan 5 00:30:41 2020 +0100

    I18n: Update translation nl (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ab86c3c8a1c075b2a5ca4c70b7272ea36b301faf
Author: cryptogopher <xfce@michalczyk.pro>
Date:   Tue Dec 10 16:24:28 2019 +0100

    directorymenu: Add create folder/document menuitems (Bug #15639)

commit fe54c27ac38224e59496f30db6f62baf9b6085eb
Author: zura davitashvili <zdavitashvili0@gmail.com>
Date:   Fri Jan 3 12:30:42 2020 +0100

    I18n: Add new translation ka (50%).
    
    211 translated messages, 205 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9f906b6262c0ea8957ebf90c6a0609a38b02cf58
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date:   Fri Jan 3 00:30:44 2020 +0100

    I18n: Update translation pt (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c613627aa07316f75670d11d2e8f5f95bb7d1954
Author: Kjell Cato Heskjestad <cato@heskjestad.xyz>
Date:   Fri Jan 3 00:30:44 2020 +0100

    I18n: Update translation nb (99%).
    
    415 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 15822aaace244ae0b762299e60ccb33b8c803c99
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Thu Jan 2 12:30:42 2020 +0100

    I18n: Update translation gl (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 514a49f9a3ec801fc60bef14e795b3440d6acafc
Author: Demiray Muhterem <mdemiray@msn.com>
Date:   Thu Jan 2 00:30:45 2020 +0100

    I18n: Update translation tr (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4edda27ef920b76b122ad136d0fe21a099f52648
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Wed Jan 1 00:30:41 2020 +0100

    I18n: Update translation ca (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit abcd501dfc3cf33e065e17004e2629ac28741b1b
Author: Anonymous <noreply@xfce.org>
Date:   Tue Dec 31 12:30:44 2019 +0100

    I18n: Update translation da (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5f0ee2f4d670054c39a0687d5e4916f6f1588525
Author: Igor <f2404@yandex.ru>
Date:   Tue Dec 31 00:30:43 2019 +0100

    I18n: Update translation ru (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cd5af7bc4fdce4342d8e724ca5ae13c21f9e90eb
Author: UTUMI Hirosi <utuhiro78@yahoo.co.jp>
Date:   Tue Dec 31 00:30:43 2019 +0100

    I18n: Update translation ja (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 68b83379bf0dc56a2d2f997b873c8d0d056930ca
Author: Andreas Eitel <github-aneitel@online.de>
Date:   Mon Dec 30 18:30:41 2019 +0100

    I18n: Update translation de (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d327af9d0dd9b85a10a2941b5448ce912d1a8b34
Author: Besnik <besnik@programeshqip.org>
Date:   Mon Dec 30 12:30:47 2019 +0100

    I18n: Update translation sq (97%).
    
    407 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b5ddce57cf6df245b74095e9c51ca69353980fab
Author: Anonymous <noreply@xfce.org>
Date:   Mon Dec 30 12:30:47 2019 +0100

    I18n: Update translation pl (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 08528685a107beb35ddecb567a3b578fc59c6d7c
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date:   Mon Dec 30 12:30:47 2019 +0100

    I18n: Update translation it (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 30b30734ceb3a308d3d98e121d071943cf0c30f4
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date:   Mon Dec 30 12:30:47 2019 +0100

    I18n: Update translation hr (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f4c921fc22541ceb860457f6c2e0df12ae36adf2
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Mon Dec 30 12:30:47 2019 +0100

    I18n: Update translation fr (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fc9689181ae6f2825d6876ec47685542dab912b8
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Mon Dec 30 12:30:47 2019 +0100

    I18n: Update translation bg (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 79b47e64ba79a485d8259641bb32681754427862
Author: 黃柏諺 <s8321414@gmail.com>
Date:   Mon Dec 30 06:30:48 2019 +0100

    I18n: Update translation zh_TW (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1430ff7865bb51daaabaf8d477f803246fd3fac5
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Mon Dec 30 06:30:48 2019 +0100

    I18n: Update translation zh_CN (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bb1d0ac0bef04c754365fb8572145ad0e81aa0a5
Author: Andre Miranda <andreldm@xfce.org>
Date:   Sun Dec 8 18:52:54 2019 -0300

    Use an empty placeholder icon for launcher (Bug #15819)

commit 7f530d0d50bed2f4d468b219ecb53d999828b0d4
Author: Andre Miranda <andreldm@xfce.org>
Date:   Sun Dec 29 09:57:13 2019 -0300

    Remove extra underscore (Bug #16266)

commit 07491d3372e464b50f28a42e0c79233d4d73b4fd
Author: Hudd <haddayn@gmail.com>
Date:   Mon Dec 23 16:59:53 2019 +0300

    tasklist: Fix drag&drop in deskbar mode (Bug #16298)
    
    The previous if statement mixed horizontal and deskbar behavior (by
    checking for a vertical panel). As the DnD sort order is the same in
    vertical and deskbar, it should instead distinguish horizontal from
    non-horizontal.

commit dfa135b0ffbb5a98f66d3d7fd3b53d6afd6b3ea3
Author: UTUMI Hirosi <utuhiro78@yahoo.co.jp>
Date:   Wed Dec 25 12:31:12 2019 +0100

    I18n: Update translation ja (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c00aba763d8329e16d41f7aa725dcc998fa7ddf4
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Tue Dec 24 12:31:06 2019 +0100

    I18n: Update translation gl (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ce62b3bad592cea337c9fbb45fcd9fdce09f5620
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Tue Dec 24 00:30:47 2019 +0100

    I18n: Update translation hr (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e5dc1e4d8bf23d9f358bfdb15248f38df608fee5
Author: Kjell Cato Heskjestad <cato@heskjestad.xyz>
Date:   Sun Dec 22 12:31:05 2019 +0100

    I18n: Update translation nb (99%).
    
    415 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f2e235c4d6ca71150d85fda74b75fed1a5c7883b
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sun Dec 22 12:31:05 2019 +0100

    I18n: Update translation fr (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9130347b96749fc29d62d4a871b7929dda316612
Author: Francisco <fserrador@gmail.com>
Date:   Mon Dec 16 18:30:47 2019 +0100

    I18n: Update translation es (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 841015a1d0d0fef3b74ddcc1c4dcb077e3c17315
Author: Demiray Muhterem <mdemiray@msn.com>
Date:   Wed Dec 11 12:30:48 2019 +0100

    I18n: Update translation tr (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c325352aedea24588f5a276234db7247b61b8d55
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Wed Dec 11 12:30:48 2019 +0100

    I18n: Update translation sr (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 844ef7c31fd2618a08467799a540e8556597e7f9
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Wed Dec 11 00:30:40 2019 +0100

    I18n: Update translation nl (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit df99efc5db5ea0316d50b35868b164f42f60beb1
Author: Anonymous <noreply@xfce.org>
Date:   Wed Dec 11 00:30:40 2019 +0100

    I18n: Update translation es (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 13fd461a882843cedcd4d2c602207ff31e01ea23
Author: Andreas Eitel <github-aneitel@online.de>
Date:   Wed Dec 11 00:30:40 2019 +0100

    I18n: Update translation de (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 32a82e8c984b7a0589e344cc2ce9926d557b3983
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date:   Tue Dec 10 00:30:48 2019 +0100

    I18n: Update translation it (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ae039d2b616ec45d9ad65df95809a0de8db6a1a8
Author: Anonymous <noreply@xfce.org>
Date:   Tue Dec 10 00:30:48 2019 +0100

    I18n: Update translation da (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 08a10b608947da37991a2944d22dd8def3a7a779
Author: Igor <f2404@yandex.ru>
Date:   Mon Dec 9 18:30:42 2019 +0100

    I18n: Update translation ru (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2044b0bc5db5602dd7a0171bc306ee3a8e5b77bc
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Mon Dec 9 18:30:42 2019 +0100

    I18n: Update translation ca (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d79e2587436b3d254ed8ad5197c6015cf307d0bf
Author: Besnik <besnik@programeshqip.org>
Date:   Mon Dec 9 12:30:42 2019 +0100

    I18n: Update translation sq (97%).
    
    407 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5a0754e17b55cc4563985320019c8a6ebd3a4d9c
Author: Anonymous <noreply@xfce.org>
Date:   Mon Dec 9 12:30:42 2019 +0100

    I18n: Update translation pl (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2bd33dbe2aac9bea4a9f0171daaed8957b7920f7
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date:   Mon Dec 9 12:30:42 2019 +0100

    I18n: Update translation hr (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c1218bc8c96b0146b5f4914ee5006cbc23cd51c0
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Mon Dec 9 12:30:42 2019 +0100

    I18n: Update translation bg (100%).
    
    416 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a13494d184b8888f16d080dbd03ab79fb33a0f46
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Dec 8 21:58:19 2019 +0100

    directorymenu: Add option to hide folder/terminal menuitems (Bug #15630)

commit baa55d96923d86cf7cb5165600f3da43b3fbe928
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sat Dec 7 00:30:41 2019 +0100

    I18n: Update translation fr (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c3ccbd5957c3583e61d8a903350a5fbc2191ca94
Author: Slavko <linux@slavino.sk>
Date:   Thu Dec 5 18:31:19 2019 +0100

    I18n: Update translation sk (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 18bfcf5df8fc4f5e3b965a7013efd31031cd6e7c
Author: Programy1 Programy1 <programy1.borec.cz@gmail.com>
Date:   Tue Dec 3 18:31:09 2019 +0100

    I18n: Update translation cs (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 56d086612596ccf27fce80822713191b0427892d
Author: Anonymous <noreply@xfce.org>
Date:   Tue Nov 26 18:30:39 2019 +0100

    I18n: Update translation eu (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 91873d2df60cb685ca2c64a9ace12582934c23ca
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date:   Sat Nov 23 00:30:57 2019 +0100

    I18n: Update translation pt (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d5238ca322e672bdde25c940abdfea52473bb114
Author: Arnold Marko <arnold.marko@gmail.com>
Date:   Tue Nov 19 18:30:43 2019 +0100

    I18n: Update translation sl (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6c0605caaad402d351fa2a241cba67ef7e7625c1
Author: Anonymous <noreply@xfce.org>
Date:   Tue Nov 19 00:30:34 2019 +0100

    I18n: Update translation pl (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 00462b6bbeb4edc47404fa6f9f0db8cbb865dedd
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date:   Thu Nov 14 00:30:37 2019 +0100

    I18n: Update translation ja (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 354c79502bd0b4c6194ca3a4e5146d7b07514604
Author: Anonymous <noreply@xfce.org>
Date:   Tue Nov 12 12:30:38 2019 +0100

    I18n: Update translation lt (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit eb12cbc18be89fb5088075522748f03eb2996ca2
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date:   Tue Nov 12 12:30:38 2019 +0100

    I18n: Update translation it (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c53ca144c4f2c5bf0e4af904e73be1ddbe7abcdc
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Mon Nov 11 12:30:37 2019 +0100

    I18n: Update translation zh_CN (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit acf56c24eb00d0a2d7c89cb6b6e958e44de9bdca
Author: Hüseyin Fahri Uzun <mail@fahriuzun.com>
Date:   Mon Nov 11 12:30:37 2019 +0100

    I18n: Update translation tr (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 44a9215d576f71a0781dccf8179580d50b169a04
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Mon Nov 11 12:30:37 2019 +0100

    I18n: Update translation gl (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0fb96813a42f0097e6e5d5e7b205a36e34c1a743
Author: 黃柏諺 <s8321414@gmail.com>
Date:   Mon Nov 11 06:30:39 2019 +0100

    I18n: Update translation zh_TW (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fcafc29d1c0dbda6947f3d8260c82ea2b970052a
Author: Igor <f2404@yandex.ru>
Date:   Mon Nov 11 00:30:38 2019 +0100

    I18n: Update translation ru (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9bcb4fc6a49a426fc166e507ea27332fededc856
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date:   Mon Nov 11 00:30:38 2019 +0100

    I18n: Update translation pt (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 832f422e8fb3711bc77dd46b572b85dddc1f3190
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Mon Nov 11 00:30:38 2019 +0100

    I18n: Update translation nl (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5cdacab8bd3f49a4224c889f454121f1632d0e21
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date:   Mon Nov 11 00:30:38 2019 +0100

    I18n: Update translation hr (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d601fe44ce672977986f451fa2c09c90c6becb82
Author: Anonymous <noreply@xfce.org>
Date:   Mon Nov 11 00:30:38 2019 +0100

    I18n: Update translation es (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9fa7fdaf5e7ba7a25a8efa8f7402c7aa07459fd2
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date:   Sun Nov 10 18:30:37 2019 +0100

    I18n: Update translation pt (99%).
    
    413 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f95cf8a0ee5ed9591d189ee337b34cb87d6ff768
Author: Anonymous <noreply@xfce.org>
Date:   Sun Nov 10 18:30:37 2019 +0100

    I18n: Update translation da (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e9b12c9612336f430607e98a7e353837083cb7a2
Author: Besnik <besnik@programeshqip.org>
Date:   Sun Nov 10 12:31:09 2019 +0100

    I18n: Update translation sq (97%).
    
    402 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4f303026d2945c26485c9bf396ff3b611acc2d4f
Author: Anonymous <noreply@xfce.org>
Date:   Sun Nov 10 12:31:09 2019 +0100

    I18n: Update translation pl (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 319a30b6788919434926a2d38f3e01cf81546995
Author: Andreas Eitel <github-aneitel@online.de>
Date:   Sun Nov 10 12:31:09 2019 +0100

    I18n: Update translation de (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 78915ec19a4567d88403a5b1470708150cdf1b7c
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Sun Nov 10 12:31:08 2019 +0100

    I18n: Update translation ca (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6b2b09c9d784feb91a56608cc0d59c21a190bdac
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Sun Nov 10 12:31:08 2019 +0100

    I18n: Update translation bg (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1afb65374f9cb81f613b40fc96bc414c3470f709
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Nov 9 23:21:05 2019 +0100

    clock: Drop leading zeros for days in default layout

commit e8c6fc408d0c0e750420633c8424498c9439cc17
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Nov 9 23:19:03 2019 +0100

    clock: Add back hour:min to format presets (Bug #16035)
    
    Previously it used to be %R, which adds leading zeros to the hours, but
    it was dropped shortly before 4.14.
    https://git.xfce.org/xfce/xfce4-panel/commit?id=2c69eeb88871829d165b480d8ad9b6a704e09568

commit 57f439b9b30c645b9b52a233056819c3b54fcc89
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Nov 6 01:15:31 2019 +0100

    panel: Make sure "span monitors" is conditionally sensitive

commit 7cddebd3efe1f9b1fe3ae01b01ffac7dcb8e24c8
Author: Walter Cheuk <wwycheuk@gmail.com>
Date:   Thu Nov 7 12:30:34 2019 +0100

    I18n: Update translation zh_TW (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3ca9e8b216a78ca64ebbf1bef7fc2043be6b1c93
Author: Andre Miranda <andreldm@xfce.org>
Date:   Tue Nov 5 22:10:13 2019 -0300

    Replace GtkStock icon

commit f47379fe115d772b63d8634d3327ad48414c207f
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Nov 6 01:14:59 2019 +0100

    Use symbolic window-close button image

commit 86f1344f86329dab2a72d178ec01e9c7c8b7f616
Author: Andre Miranda <andre42m@gmail.com>
Date:   Sun Nov 3 18:30:53 2019 +0100

    I18n: Update translation pt_BR (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d8d628380c4cbd3903ccd6ec270244426b828f87
Author: Andre Miranda <andreldm@xfce.org>
Date:   Sat Nov 2 17:53:55 2019 -0300

    Fix doc typos

commit a2cc7f21b41df856730f7e521e1a324f5b790ba4
Author: Arnold Marko <arnold.marko@gmail.com>
Date:   Fri Nov 1 12:30:35 2019 +0100

    I18n: Update translation sl (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 020d392b86f646926dae0aff8b9bb17e7f0d42f2
Author: Walter Cheuk <wwycheuk@gmail.com>
Date:   Fri Nov 1 06:30:39 2019 +0100

    I18n: Update translation zh_TW (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 866c2571a843fee51f9ed19dc36e5a957f8e9395
Author: Anonymous <noreply@xfce.org>
Date:   Thu Oct 31 12:30:35 2019 +0100

    I18n: Update translation ie (97%).
    
    405 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b671efa1d9fa1ebe29ec4d5aa6829f8c88273894
Author: Jason Collins <JasonPCollins@protonmail.com>
Date:   Mon Oct 28 12:30:35 2019 +0100

    I18n: Update translation en_GB (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a1addd685a37324934476ece688d592cb0924a2a
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Sun Oct 27 12:30:43 2019 +0100

    I18n: Update translation sr (99%).
    
    413 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 52b38d5ab2ac18f27b98d75b6dc07c21f60355dd
Author: Jason Collins <JasonPCollins@protonmail.com>
Date:   Sat Oct 26 00:30:45 2019 +0200

    I18n: Update translation en_GB (99%).
    
    410 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c956424097d885e24a9958b83eecc956396b309b
Author: Πέτρος Σαμαράς <psamaras1@gmail.com>
Date:   Fri Oct 25 06:30:45 2019 +0200

    I18n: Update translation el (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c5d06170be19561adc56dd7b2b9e9638444050b3
Author: Arnold Marko <arnold.marko@gmail.com>
Date:   Fri Oct 25 00:30:43 2019 +0200

    I18n: Update translation sl (93%).
    
    386 translated messages, 28 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 66c45ef6952fff11cb5630f41d8a2f0627a21dd7
Author: Toni Estévez <toni.estevez@gmail.com>
Date:   Fri Oct 25 00:30:43 2019 +0200

    I18n: Update translation es (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 20db81deb675088e8753043bf8b6ddcf7c4eed76
Author: Anonymous <noreply@xfce.org>
Date:   Wed Oct 23 18:30:35 2019 +0200

    I18n: Update translation fi (99%).
    
    412 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 832bf1cc5997173114f6391984769966ed6eb571
Author: Anonymous <noreply@xfce.org>
Date:   Tue Oct 22 18:30:35 2019 +0200

    I18n: Update translation hu (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 21300855035d5554bc6a61b3e1ffe4a5999b46be
Author: František Jamrich <frantisek.jamrich@gmail.com>
Date:   Tue Oct 22 06:30:42 2019 +0200

    I18n: Update translation sk (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ed2cf2f257cb74f971717432f7d1fccb965ab69a
Author: Kjell Cato Heskjestad <cato@heskjestad.xyz>
Date:   Tue Oct 22 06:30:42 2019 +0200

    I18n: Update translation nb (99%).
    
    413 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ec4a37295c02c90f10ba34bd1dcf9f4bc7ebb422
Author: Slavko <linux@slavino.sk>
Date:   Mon Oct 21 18:30:34 2019 +0200

    I18n: Update translation sk (99%).
    
    410 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1ebc728902837a14f114b4eb3567ebcd604be6bc
Author: Natavan Mirzayeva <mirzayevanatavan@gmail.com>
Date:   Mon Oct 21 00:30:43 2019 +0200

    I18n: Update translation tr (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 81eb741c0e145fbaaa05d7f001aedff0425aa4e8
Author: Carlos Dz <cls567@tuta.io>
Date:   Mon Oct 21 00:30:43 2019 +0200

    I18n: Update translation sv (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a9dd99b9a8d2de4054e8bff717578f1b903cd6a8
Author: Xfce Bot <transifex@xfce.org>
Date:   Mon Oct 21 00:30:43 2019 +0200

    I18n: Update translation ie (81%).
    
    338 translated messages, 76 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9016c0968d39de4489f3969441af2a6235610877
Author: Alois Nešpor <info@aloisnespor.info>
Date:   Mon Oct 21 00:30:43 2019 +0200

    I18n: Update translation cs (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d8b2e63dc8160db5463cef743d4bf2330558a5fa
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Oct 20 12:18:21 2019 +0200

    Improve the marching ants animation
    
    Previously the panel background would "jump around" if set to "image".

commit a719b180ba5fd237a5e8f484948f0b68257f699a
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Oct 20 12:11:08 2019 +0200

    Fix indentation

commit b39978985b90c5c3478aea8fab484d2f2707c4ac
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Oct 20 12:09:51 2019 +0200

    Fix autohide with bg color or image (Bug #16064)
    
    We previously didn't set any borders with custom backgrounds, which is
    bad for knowing the panel position. Now we know about the borders but
    simply don't draw them with custom backgrounds.

commit e16f64ea678c98259ba54253110ef7ecb5133402
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Oct 20 00:40:27 2019 +0200

    Back to development

commit 47d0eaf8c3828e78a83923b21fbc884c11e156b9
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Oct 20 00:37:13 2019 +0200

    Updates for release

commit 787824f221cb7c2f88c35d0872476cc6bd2bc1f8
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Oct 20 00:31:14 2019 +0200

    Add dark mode to libxfce4panel symbols

commit ead01d665fcb943153ff286ffcbffcaa75541b24
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Sun Oct 20 00:30:34 2019 +0200

    I18n: Update translation ca (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cefd6ebc3042a9a5bfdfa3269c06edb95a10858a
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Sat Oct 19 18:30:35 2019 +0200

    I18n: Update translation pt_BR (99%).
    
    413 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8cc672cd70a9a260f1e2b6729afca5658abecbca
Author: Andreas Eitel <github-aneitel@online.de>
Date:   Sat Oct 19 18:30:35 2019 +0200

    I18n: Update translation de (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ae8292c25d9b359deb9efcba4be443614dd1fc0c
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Fri Oct 18 18:30:41 2019 +0200

    I18n: Update translation fr (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b5f64a9ac57a4ed534175466ac859dbd6c24a088
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date:   Fri Oct 18 12:30:32 2019 +0200

    I18n: Update translation pt (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 579cc8e6d0ebb63b8e024ca31466402d251bf235
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date:   Fri Oct 18 12:30:32 2019 +0200

    I18n: Update translation ja (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ba836c540c88b8fb69ac84b63afb5c803ceac096
Author: 黃柏諺 <s8321414@gmail.com>
Date:   Fri Oct 18 06:30:38 2019 +0200

    I18n: Update translation zh_TW (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 61a187fd64558fade741a88c9d28deee087076ea
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Fri Oct 18 06:30:38 2019 +0200

    I18n: Update translation zh_CN (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d357ea3ae629883e37f69243c437ab069492b01b
Author: Igor <f2404@yandex.ru>
Date:   Fri Oct 18 06:30:38 2019 +0200

    I18n: Update translation ru (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b3732d5c3a31577d5d75d9d070d44e1171ef77d2
Author: Anonymous <noreply@xfce.org>
Date:   Fri Oct 18 00:30:33 2019 +0200

    I18n: Update translation pl (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6c83955821f2032f7d2c79638a29bcdb019c48d6
Author: Anonymous <noreply@xfce.org>
Date:   Fri Oct 18 00:30:33 2019 +0200

    I18n: Update translation lt (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d53c2472ebd899f0197e45a988bffe9affd50529
Author: Anonymous <noreply@xfce.org>
Date:   Fri Oct 18 00:30:33 2019 +0200

    I18n: Update translation da (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0640444de58adf55e93042e89b198b209f9b990f
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Sep 17 16:53:02 2019 +0200

    Add dark mode preference
    
    This also results in the panel preferences dialog being drawn with the
    Gtk dark theme variant, as well as all plugins and their various
    widgets.

commit 1d60ceb88e663c1d320a84a16a7a750300cde262
Author: Anonymous <noreply@xfce.org>
Date:   Wed Oct 16 18:30:41 2019 +0200

    I18n: Update translation hu (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 54e96b33d7e6a00a09bef5d8f3c6dad8533df148
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Wed Oct 16 18:30:41 2019 +0200

    I18n: Update translation fr (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cb98db7505ef7d06c7d235d3d3ca185897c0ce69
Author: Demiray Muhterem <mdemiray@msn.com>
Date:   Wed Oct 16 12:30:39 2019 +0200

    I18n: Update translation tr (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3c569af6b60ab7ed2fd31a33140e35d699a859d4
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date:   Tue Oct 15 18:30:40 2019 +0200

    I18n: Update translation ja (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 416b7127f209e545018b5ae26552a8505d1ae4d8
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date:   Tue Oct 15 00:30:43 2019 +0200

    I18n: Update translation pt (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bb5a5c7af0dd8b84b2dfcd31072b14255e862ce1
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date:   Tue Oct 15 00:30:43 2019 +0200

    I18n: Update translation hr (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3bb058fa09c0b7da34e73626534747e2b2b84740
Author: Anonymous <noreply@xfce.org>
Date:   Mon Oct 14 06:30:45 2019 +0200

    I18n: Update translation da (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f4fdbb2561b1cb52ab60450ea4a0bf7dc208b43e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Oct 14 00:46:46 2019 +0200

    Fix typo in docstring

commit a9a1b9e7ac9004b52472459ec58822c407c44908
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Oct 14 00:08:16 2019 +0200

    autohide: Cancel the animation when needed

commit 5a996cb8cddb6471c3e6786113fc9882b1ba1028
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Oct 13 00:21:29 2019 +0200

    autohide: Improve animation support for intellihide

commit b8609b06851ab523f7591d1001a158a21b52ea0d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Oct 12 23:42:44 2019 +0200

    autohide: Don't animate hiding of floating panels

commit bcb6d4c1493354607040cdf52e6bab4612f65f45
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Oct 12 01:25:16 2019 +0200

    autohide: Add sliding out animation
    
    This should help users understand "where the panel has gone".

commit 4564cc6a1c8135596cd8e34b8a50ee1f92c90e49
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Oct 14 00:59:00 2019 +0200

    Fix indentation

commit 17049bdf7e55447460c0371cbae63fa5ac75f0d1
Author: Olivier Duchateau <duchateau.olivier@gmail.com>
Date:   Sun Oct 13 01:16:21 2019 +0200

    appmenu: Listen to icon theme changes (Bug #15861)

commit aa6a8db87fe595dbf660e471612dd6788d7be264
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Oct 13 01:09:28 2019 +0200

    Improve code formatting

commit 285ee742f98707516c79a4d22f08285f448d28cd
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Oct 13 01:07:59 2019 +0200

    clock: Validate timezone entry (Bug #16036)

commit 42f16379adc9340d06ea8edda6a26307df9a1474
Author: Thomas Lange <thomas-lange2@gmx.de>
Date:   Mon Oct 7 23:04:43 2019 +0200

    prefs: Plug memory leaks (Bug #16016)

commit d5092e12bec154b1899d9eb8b60085941ae4a899
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Oct 13 00:59:35 2019 +0200

    docs: Fix build by dropping unused refs (Bug #16031)

commit 83132ccf5dcf8e1c958f2b4eac8e45409b951b46
Author: Anonymous <noreply@xfce.org>
Date:   Sun Oct 13 00:30:32 2019 +0200

    I18n: Update translation lt (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ca23a70655957d3ec5113cb73d790f990bd34316
Author: Andreas Eitel <github-aneitel@online.de>
Date:   Sat Oct 12 18:30:41 2019 +0200

    I18n: Update translation de (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 02514df26601eb31524d29863eddfcec42a50024
Author: Kjell Cato Heskjestad <cato@heskjestad.xyz>
Date:   Sat Oct 12 12:30:32 2019 +0200

    I18n: Update translation nb (99%).
    
    412 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 77c29357153a115c937e391caa41f36234bda4b0
Author: abuyop <abuyop@gmail.com>
Date:   Sat Oct 12 12:30:32 2019 +0200

    I18n: Update translation ms (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cf433fd365055ed8b84a2bed45adb7070c9cd23b
Author: 黃柏諺 <s8321414@gmail.com>
Date:   Sat Oct 12 06:30:33 2019 +0200

    I18n: Update translation zh_TW (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 427691fc66e8ee8e1e3e8efb3f6515eb93787158
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Sat Oct 12 00:30:33 2019 +0200

    I18n: Update translation nl (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 63ecc65eca2dd628b33334a04fd718b7a9908919
Author: Igor <f2404@yandex.ru>
Date:   Fri Oct 11 18:30:32 2019 +0200

    I18n: Update translation ru (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 004186eb89d781aafe5469ac4e49d7edb897161f
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date:   Fri Oct 11 18:30:32 2019 +0200

    I18n: Update translation it (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 793da7c39c1202cc6a9154b8c0fa4ca70e3425e9
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Fri Oct 11 18:30:32 2019 +0200

    I18n: Update translation bg (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9502e28e7b3f211c218bb04d721bf100eedd7690
Author: Anonymous <noreply@xfce.org>
Date:   Fri Oct 11 12:30:32 2019 +0200

    I18n: Update translation pl (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b44a7ae95538b1d3a0841bb6d506265a51b0bbe9
Author: Anonymous <noreply@xfce.org>
Date:   Fri Oct 11 12:30:32 2019 +0200

    I18n: Update translation es (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0b63a2240aabad9ea4de49ad59dc5142df3c9dba
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Fri Oct 11 06:30:39 2019 +0200

    I18n: Update translation zh_CN (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 966820112eb0b33d3b32cc86cce64827d3ad15d1
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Fri Oct 11 06:30:39 2019 +0200

    I18n: Update translation gl (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ecb819474fd7506b5b7b739d3f13d7b08472f5c2
Author: Igor <f2404@yandex.ru>
Date:   Thu Oct 10 18:30:35 2019 +0200

    I18n: Update translation ru (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f08a2cf6d9d2a095d9ee483d9dbeab1b20acfb69
Author: Andre Miranda <andre42m@gmail.com>
Date:   Thu Oct 10 18:30:35 2019 +0200

    I18n: Update translation pt_BR (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 45ad738929693ec9bdffc6db6cd1ec2cb86a4f7e
Author: Anonymous <noreply@xfce.org>
Date:   Thu Oct 10 18:30:34 2019 +0200

    I18n: Update translation lt (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c7b477deca5c0524c9753441fc1c0d498f227976
Author: Anonymous <noreply@xfce.org>
Date:   Thu Oct 10 18:30:34 2019 +0200

    I18n: Update translation da (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 31faa2cfa553595bb24ce91436ccb9a7961e9f12
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Thu Oct 10 18:30:34 2019 +0200

    I18n: Update translation bg (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit beef6c6777a883cc1dbd0dbd3ce6fa07b862f360
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Oct 10 13:30:51 2019 +0200

    pager: Finish face-lift of settings dialog

commit 99828ffedb4b3707e628cadbc3d382493cbbd1d1
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Oct 10 01:09:00 2019 +0200

    appmenu: Use panel's icon size

commit 9e945f64cb6941880b2ff4f90136dcb218e52b5c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Oct 10 01:08:40 2019 +0200

    pager: Rework settings dialog layout

commit 84491f4ffe1281eeedc5e32d074f379a0018021c
Author: Igor <f2404@yandex.ru>
Date:   Thu Oct 10 00:30:34 2019 +0200

    I18n: Update translation ru (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 87c9defedfa52da1c431d83ad592a5b4722f9d38
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Thu Oct 10 00:30:34 2019 +0200

    I18n: Update translation fr (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1a843648461390cccd0cf71f966aca29b6d1048f
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Thu Oct 10 00:30:34 2019 +0200

    I18n: Update translation bg (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 96249863ae3cd9c4f56c172c1be683add867c811
Author: Anonymous <noreply@xfce.org>
Date:   Wed Oct 9 18:30:35 2019 +0200

    I18n: Update translation pl (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ddef3bb963032dce117990d928ce7ec2760ca651
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Wed Oct 9 18:30:35 2019 +0200

    I18n: Update translation nl (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 64451448f81fc139bda2d6c4c1cb436ae457485c
Author: Anonymous <noreply@xfce.org>
Date:   Wed Oct 9 18:30:35 2019 +0200

    I18n: Update translation lt (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b78d9be35c257229234c62170a6dbe7869e5c4cf
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date:   Wed Oct 9 18:30:35 2019 +0200

    I18n: Update translation it (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e8066c87504f168b870608859524434f4b2200d2
Author: Anonymous <noreply@xfce.org>
Date:   Wed Oct 9 18:30:35 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dec242e03eaeb42c00c86ba1e861dd537b5d3598
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Oct 9 11:45:10 2019 +0200

    pager: Silence warning

commit 679822b027ef3d41138562c6e7b17b72b0621173
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Oct 8 20:53:39 2019 +0200

    pager: Only show scroll-option with buttons
    
    As the pager widget of libwnck takes care of the scrolling event on its
    own the scrolling option currently doesn't take any effect. So this
    option should be hidden until libwnck has a switch to disable the scroll
    event handler.

commit c710beb945c34987f121ec0ba9562a3b19298435
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Oct 8 00:14:32 2019 +0200

    pager: Add option to show ws number

commit 8a9c40600a91efe494126042590aa43b65283dd7
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Oct 7 12:04:44 2019 +0200

    systray: Drop remaining obsolete frame properties

commit d77b3b382dd8724489c9210e15f6865964628ba1
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Oct 2 13:40:50 2019 +0200

    systray: Drop "Show frame" option (Bug #14186)

commit 259cb898fbfda68d4b4f8f6b49ad145c5de272ac
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Oct 1 01:08:28 2019 +0200

    Drop Gtk2/4.6-only references from the docs

commit 9fb2af214758c2a23d51ccdd5d93bdd8bcb5bbd9
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Mon Sep 30 12:32:05 2019 +0200

    I18n: Update translation hr (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2b7a7a7c9a7ffb8c5fedb8b109eaa8c293d39623
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Sep 19 15:45:08 2019 +0200

    Fix typo

commit 01e2fef26281e45ca47fd81ffd2d7e2848e63709
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Sep 19 15:45:22 2019 +0200

    Don't show or try to load Gtk2 plugins anymore

commit a539b6559f07450bc2751fc3fdbe1ae31adc4015
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Sep 18 15:32:51 2019 +0200

    Drop support for Gtk2 and 4.6 plugins
    
    This also means the Gtk2 API is dropped, so some panel plugins still
    using the old API may need updating (e.g. panel_slice_new0 is still used
    by some plugins).

commit b4216a11592596b08baad78b5bed3f3f938fa861
Author: Walter Cheuk <wwycheuk@gmail.com>
Date:   Wed Sep 25 06:30:41 2019 +0200

    I18n: Update translation zh_TW (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e2d41cbba56ddbcbd625685910787f114e1018cd
Author: Walter Cheuk <wwycheuk@gmail.com>
Date:   Tue Sep 24 12:30:54 2019 +0200

    I18n: Update translation zh_TW (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c57d541bc2c28340a43dfc88269c5fba51bc7b85
Author: Zmicer Turok <nashtlumach@gmail.com>
Date:   Tue Sep 24 12:30:54 2019 +0200

    I18n: Update translation be (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 43c06265fdcfb31082e647dc56fe1b72aeffd18c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Sep 19 14:40:57 2019 +0200

    Draw panel border based on position and length
    
    Previously we chose a more simplistic approach - not taking the panel
    length into account - which resulted e.g. in the default layout in the
    bottom panel not having a left and right border drawn, despite it not
    having 100% width.
    Also: Fix a leak (not freeing the border_side gchar).

commit 07f985b66c2c002aded4a33e5206955d91572080
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Jul 13 23:17:26 2019 +0200

    tasklist: Resize when windows get removed (Bug #14394)
    
    The idea is to do what is also done for the window-added signal.

commit f6f70cce417fd2982c2ce6f01016ed01deb6a9ae
Author: Ivan A. Melnikov <iv@altlinux.org>
Date:   Mon Sep 23 16:18:10 2019 +0400

    systray: Fix icons without compositing (Bug #14577)
    
    Wrapper window uses RGBA visual when it's available;
    systray manager should try to do the same for
    the transparent or parent-relative background to work.
    
    That means that the manager and icons will work with
    RGBA visual even if the screen is not compositing; so
    we should always force-redraw the icons.
    
    Refs: https://bugzilla.xfce.org/show_bug.cgi?id=14577
    Signed-off-by: Ivan A. Melnikov <iv@altlinux.org>

commit 98796c0e8f2f46266c267dc65bec9103c3cba1e0
Author: Dušan Kazik <prescott66@gmail.com>
Date:   Sat Sep 21 00:31:05 2019 +0200

    I18n: Update translation sk (97%).
    
    402 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 60a90020669ed5947cc0127c2a7cae0e52390140
Author: Dušan Kazik <prescott66@gmail.com>
Date:   Tue Sep 17 12:30:33 2019 +0200

    I18n: Update translation sk (97%).
    
    401 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 774716949ecdecd55f77203d3af48cac4fa9e274
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date:   Mon Sep 16 06:30:59 2019 +0200

    I18n: Update translation th (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 24cb42e8ec2b50e20a38bc5a8d9f30d9d6288012
Author: Stefan Höök <stefan.hook@gmail.com>
Date:   Sat Sep 14 00:30:42 2019 +0200

    I18n: Update translation sv (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d80126d1b9d01475e4eb9be4c5f4815b8e7bc8f1
Author: Anonymous <noreply@xfce.org>
Date:   Fri Sep 6 18:30:48 2019 +0200

    I18n: Update translation el (99%).
    
    412 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bea6950cb95179d89d30d261c01e0e1ba7cea935
Author: tap saja <tapsaja@gmail.com>
Date:   Thu Sep 5 12:30:32 2019 +0200

    I18n: Update translation id (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c11cec87f92fc6f54098865f77041b5bfaccddde
Author: abuyop <abuyop@gmail.com>
Date:   Mon Sep 2 18:31:09 2019 +0200

    I18n: Update translation ms (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a5d29eb36f0eb1e546fb82c0ab152119e195b6dd
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Mon Sep 2 12:31:18 2019 +0200

    I18n: Update translation zh_CN (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7dc5cf70d23d25b7e4a458b42d2bee44450e35cc
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Fri Aug 30 12:31:14 2019 +0200

    I18n: Update translation gl (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0d4f558b05c37b9a3f63e8669a3fe38e60aaf187
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Fri Aug 23 18:31:26 2019 +0200

    I18n: Update translation gl (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 181bd4b4ed76181e6cc80e65010b52a19f34929f
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Aug 21 18:16:09 2019 +0200

    windowlist: Make layout consistent with xfdesktop

commit cd8cad6baf6927b441fac22b13b107e80dae2a0a
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Aug 21 18:10:24 2019 +0200

    windowmenu: Replace deprecated gtk_widget_modify_font

commit a08af0517a51b19f73d80ce75c5446cb2dbb293d
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date:   Wed Aug 21 06:30:38 2019 +0200

    I18n: Update translation ja (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 55dc7b400feef0c35fda3e8d3515dada2ced29c4
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Aug 15 23:27:25 2019 +0200

    pager: Fix scrolling in pager-buttons (Bug #15614)
    
    Unfortunately this doesn't affect the miniature view (aka WnckPager),
    where scrolling is handled natively and in a different - broken - order.

commit 1cad3ae954f46dd63426b6565afc51c8bdb6b45d
Author: Piotr Sokół <psokol.l10n@gmail.com>
Date:   Sun Aug 18 00:30:55 2019 +0200

    I18n: Update translation pl (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7a20445b540bd605009727002b4babad997eab0f
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Sun Aug 18 00:30:55 2019 +0200

    I18n: Update translation he (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8dcb8ee646d0e466b5dc8ed7535867b21c94cf36
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Sat Aug 17 18:31:09 2019 +0200

    I18n: Update translation gl (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ad42af93bab16c8cd473d2ea66d4e70f84035dbb
Author: clmmbs <msreywel@hotmail.com>
Date:   Sat Aug 17 18:31:09 2019 +0200

    I18n: Update translation ar (93%).
    
    388 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 29cf0cc6397167426fa22a10c2ab09e44a262857
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Thu Aug 15 00:30:34 2019 +0200

    I18n: Update translation sr (99%).
    
    412 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8e900e817a0891a43b05c189f20390e267398a11
Author: Besnik <besnik@programeshqip.org>
Date:   Wed Aug 14 18:30:52 2019 +0200

    I18n: Update translation sq (97%).
    
    401 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 76c10ece7d93dc822bfc20389b17b29b9b70a270
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Aug 14 16:37:13 2019 +0200

    launcher: Fix visual state of arrow-button (Bug #15818)
    
    For some reason the "hover" (aka PRELIGHT) state remains after closing
    the menu. Manually resetting it helps.

commit 56877ac8eaa5f00cb38fb386ffabe95dff283518
Author: Real School <translator_students@realschool.am>
Date:   Wed Aug 14 12:30:35 2019 +0200

    I18n: Update translation hy_AM (99%).
    
    412 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ae4ed68b248df16fb0fdf625acc785ae73ef24cf
Author: Andre Miranda <andreldm@xfce.org>
Date:   Wed Aug 14 00:29:11 2019 -0300

    launcher: Avoid excessive left padding on popup menu (Bug #15819)

commit 58f09ae8d9f10f9454a3df667d37803cfb15d4fe
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Aug 11 23:13:56 2019 +0200

    Back to development

commit 8980371d80e7be81392ccba4bde5f7bca71ff037
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Aug 11 23:10:56 2019 +0200

    Updates for release

commit cfdf495627b699d7cb8aa349bf35ef5c3d4a1a2b
Author: Kjell Cato Heskjestad <cato@heskjestad.xyz>
Date:   Sun Aug 11 12:30:40 2019 +0200

    I18n: Update translation nb (99%).
    
    412 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 002378a77d0ea5e9379dd4be452cc824e30dc920
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Sat Aug 10 12:30:51 2019 +0200

    I18n: Update translation gl (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b014c29ad0a0f78d22cc46fe04e02762e2dd6abf
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date:   Thu Aug 8 18:31:40 2019 +0200

    I18n: Update translation it (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 441462627bc0c2a84c881b3718c04d02f31b8dcd
Author: Anonymous <noreply@xfce.org>
Date:   Wed Aug 7 00:30:37 2019 +0200

    I18n: Update translation da (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f2671bda9603c2b6c85bb727ea8d17be8a8ba5cf
Author: Jiri Grönroos <jiri.gronroos@iki.fi>
Date:   Tue Aug 6 00:30:34 2019 +0200

    I18n: Update translation fi (99%).
    
    412 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 94a41c8cc263845de24637ffe68a93754e0a02e7
Author: Anonymous <noreply@xfce.org>
Date:   Sun Aug 4 18:30:34 2019 +0200

    I18n: Update translation hu (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 75a10e232c2ebbd5bd3a04d580f522fbbf3495cd
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Aug 3 23:02:32 2019 +0200

    tasklist: Keep panel visible on drag and drop (Bug #15703)

commit 95319248145b5506f5a639c7ccdd7732772d74bd
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Jul 13 22:58:18 2019 +0200

    pager: Keep panel visible on drag and drop (Bug #15703)

commit 713e98978ae7c97f09a662b0a65a9d28734e330b
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sat Aug 3 12:30:34 2019 +0200

    I18n: Update translation kk (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8b7603a153e7fb9449b8f23ef5e27991d645115f
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Sat Aug 3 12:30:34 2019 +0200

    I18n: Update translation gl (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c599e1e2e7b3cceabd1bda8ad9a10228fe2c4ed2
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Fri Aug 2 18:30:35 2019 +0200

    I18n: Update translation gl (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5231d4b79f7dd13a6f4ee51fd7e4e720ec351f64
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Wed Jul 31 06:30:48 2019 +0200

    I18n: Update translation pt_BR (100%).
    
    413 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit aba078dd561e1550be5c81cf909be07391342713
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date:   Wed Jul 31 06:30:48 2019 +0200

    I18n: Update translation ja (99%).
    
    412 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7b73b9b49b6617ec6f5ff813c28cf6de7b981c21
Author: Andre Miranda <andre42m@gmail.com>
Date:   Tue Jul 30 06:30:40 2019 +0200

    I18n: Update translation pt_BR (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b9c5a8b963e34e13ee19d22dc097f773cc12cc25
Author: Andre Miranda <andreldm@xfce.org>
Date:   Mon Jul 29 23:42:44 2019 -0300

    Make launcher-dialog's context menu popup at pointer

commit ae8e7bba3ef47f04ee8d21d2cb4b87b2c5b279d2
Author: Andre Miranda <andreldm@xfce.org>
Date:   Mon Jul 29 23:42:25 2019 -0300

    Make strings translatable

commit c66a5455edab63a353ff02f07a7cd0903b3bceba
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 29 12:30:42 2019 +0200

    I18n: Update translation lt (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8fb43d726ac620dea6776a3f8fa2c504d0f8e4e8
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Mon Jul 29 06:30:49 2019 +0200

    I18n: Update translation zh_CN (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 09fd379482da9fc5eb49097813cbcb7e8d2c693e
Author: Andreas Eitel <github-aneitel@online.de>
Date:   Mon Jul 29 00:30:51 2019 +0200

    I18n: Update translation de (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 79cd35d5c78b7c7dfa69643c29c942411237f536
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Jul 28 15:22:52 2019 +0200

    Back to development

commit 40ac073ec85634a80687cf8558936764299fa7c9
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Jul 28 15:20:42 2019 +0200

    Updates for release

commit 3d5c9333484231b5f7bbaf1c0a0e08c4efed5afb
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Sun Jul 28 00:30:33 2019 +0200

    I18n: Update translation bg (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6e4d4b822e9e35a97ca9c62ef01158bb3ed19646
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Sat Jul 27 18:30:50 2019 +0200

    I18n: Update translation ca (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9c56460038878811951a1edc92571b3ef341cf3e
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sat Jul 27 12:30:34 2019 +0200

    I18n: Update translation fr (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 613be90f2688376225a52002cfc9b77143a1cd9b
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 27 12:30:34 2019 +0200

    I18n: Update translation es (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1b7263e783027393a89a688f08f31fd0835480a1
Author: Igor <f2404@yandex.ru>
Date:   Sat Jul 27 00:30:34 2019 +0200

    I18n: Update translation ru (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 505d80698b592f09eb3aae87e553d130fc8faa2f
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date:   Sat Jul 27 00:30:34 2019 +0200

    I18n: Update translation pt (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 60546d5f4b69750584223a45718d1e360244d3bb
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Sat Jul 27 00:30:34 2019 +0200

    I18n: Update translation gl (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b964e572ffc661971803a0b15e00bbfcf17d31b9
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Fri Jul 26 12:30:32 2019 +0200

    I18n: Update translation gl (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2a8a480da873e673837bee90241a8c01d1d51ed3
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jul 26 10:24:32 2019 +0200

    clock: Add short weekday to default clock string

commit 2c69eeb88871829d165b480d8ad9b6a704e09568
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jul 26 10:08:22 2019 +0200

    clock: Add date to default clock layout (Bug #15456)

commit 8179911e9058874f70335c7320bde809bd96c90a
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Fri Jul 26 06:30:34 2019 +0200

    I18n: Update translation zh_CN (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1faca7a5394089ab58da5774756b6e839b6d2400
Author: Igor <f2404@yandex.ru>
Date:   Fri Jul 26 00:30:33 2019 +0200

    I18n: Update translation ru (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e5f425ab43cf33844db855839f979f52ac463f03
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date:   Fri Jul 26 00:30:33 2019 +0200

    I18n: Update translation it (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3af6579441751ed792d3bdb4343b188ad1929e06
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jul 26 00:16:26 2019 +0200

    Revert "Disable Gtk+2 support by default"
    
    This reverts commit 5caaeb23c448c2738007e9afe78652229f774fd8.
    The reason for re-enabling Gtk+2 support by default is because otherwise
    the build and docs break. This will have to wait until after 4.14 when
    Gtk+2 support is finally dropped.

commit 2e921ba291d1e4f621d10fd3787485f2f114ee8c
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 25 18:30:34 2019 +0200

    I18n: Update translation pl (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a4901785c96375e2a79840361b4ccd61209e568d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jul 25 00:30:42 2019 +0200

    prefs: Improve position of panel profiles button (Bug #15657)

commit aa96c1f29dd369298efa7ba1310af2c7d82f2e8b
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Wed Jul 24 18:30:40 2019 +0200

    I18n: Update translation pt (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7f985f7926484b876cf0c5138b4c4c045a28d861
Author: Kjell Cato Heskjestad <cato@heskjestad.xyz>
Date:   Tue Jul 23 18:31:09 2019 +0200

    I18n: Update translation nb (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 621b63d9d818a558f21ac05e90432253757de1f0
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date:   Mon Jul 22 18:30:51 2019 +0200

    I18n: Update translation ja (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9cdec85b48ff17f050776c43d96832f801bdcddc
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Jul 22 00:10:22 2019 +0200

    tasklist: Fix position of group indicator in vertical mode

commit 0c80148ae547d9311e9645e276d6d3604b10c535
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Jul 22 00:09:21 2019 +0200

    tasklist: Fix overlapping vertical window titles (Bug #14901)
    
    It seems unclear why ellipsizing was disabled in Gtk+2, but possibly the
    behaviour of vertical lables has changed in this respect.

commit 6e54a8daf81450ea30f87da69a2010ec2ccdc4a0
Author: Zmicer Turok <nashtlumach@gmail.com>
Date:   Sun Jul 21 00:30:33 2019 +0200

    I18n: Update translation be (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5a497c257fd9e035133fd9e89fc91079c9fb5fc8
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 18 06:30:45 2019 +0200

    I18n: Update translation da (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 14450dc090c3f372dbf24472acb94c55ebbea406
Author: Jiri Grönroos <jiri.gronroos@iki.fi>
Date:   Wed Jul 17 12:31:35 2019 +0200

    I18n: Update translation fi (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 151c449b1ab877fdb23b675ccc242f0ae91b51e9
Author: Jiri Grönroos <jiri.gronroos@iki.fi>
Date:   Wed Jul 17 00:31:36 2019 +0200

    I18n: Update translation fi (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d1edf285db6af76cb1c4ef8b0313748449aa6a6d
Author: Simeon Krastnikov <simeonkrastnikov@gmail.com>
Date:   Sun Jul 14 21:15:33 2019 -0400

    directory-menu: Use natural order for sorting (Bug #15413)
    
    Natural sort order is also what Thunar uses.

commit 0bf9842cfa78a7e89ab1022f39ce60049ab0203f
Author: Olivier Fourdan <fourdan@xfce.org>
Date:   Wed Jul 10 09:33:50 2019 +0200

    arrow-button: Remove timeout on dispose (Bug #15696)
    
    The blinking source timeout has a GDestroyNotify function associated
    that will update the button when the timeout is removed.
    
    But the timeout is removed on the button finalize, i.e. once the object
    is freed, which will lead to a crash trying to access memory already
    freed.
    
    I think the original author meant to use `dispose` instead of `finalize`
    for removing the blinking timeout.
    
    Signed-off-by: Olivier Fourdan <fourdan@xfce.org>

commit 6f0fc6628ef721521025e34c543a6e865ad01a9e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Jul 13 23:49:34 2019 +0200

    pager: Ensure bg color is set correctly (Bug #15690)

commit 58a77d9f46aff3ec949f3d355014a99873f7e881
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sun Jul 14 18:31:19 2019 +0200

    I18n: Update translation kk (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4bae858a2ce2ebad58a446224c336d849a33050f
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Sun Jul 14 00:30:35 2019 +0200

    I18n: Update translation pt_BR (99%).
    
    406 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 332d31c684b30daab974991ad8abedd568e86d09
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date:   Wed Jul 10 12:30:59 2019 +0200

    I18n: Update translation th (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d1f80e77cf081feeca3f7e29c04f6cb00be5455e
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Wed Jul 10 00:30:54 2019 +0200

    I18n: Update translation uk (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2f61f92b45ca1b9a1ab1ce1150170eb12e025125
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Mon Jul 8 00:30:29 2019 +0200

    I18n: Update translation sr (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f7f1c528512ec8c1ad05f63a969851fef2b66927
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date:   Sun Jul 7 06:30:47 2019 +0200

    I18n: Update translation pt (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4bf28e217239110efee7e13fb9c854f8c2467417
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Jul 7 01:00:26 2019 +0200

    Make vala and gobject-introspection optional
    
    This change is mostly relevant to packagers.

commit 120ed6d766b2ada4beda0d96e69a0e18f629e561
Author: Matias De lellis <mati86dl@gmail.com>
Date:   Thu Jul 4 23:38:56 2019 +0200

    show-desktop: Toggle also when DND-ing (Bug #15654)
    
    When dragging a file to the show-desktop plugin's button the button will
    be activated and the desktop will be shown, enabling users to
    interactively copy items to the desktop in a single mouse-driven
    workflow.

commit d0e3ec4c24feff7f2a8477dbac9734c00b492f9e
Author: jolupa <jolupameister@gmail.com>
Date:   Thu Jul 4 18:30:30 2019 +0200

    I18n: Update translation ca (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5451f7e688b3088db8374e2e48b0b60a0aa0b23f
Author: Vinzenz Vietzke <vinz@vinzv.de>
Date:   Thu Jul 4 12:30:31 2019 +0200

    I18n: Update translation de (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4ec999b31da9ce742557ae29822fca68d773454f
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Jul 3 23:05:40 2019 +0200

    tic-tac-toe: Add mnemonic to Close button

commit d04a412c072ee94a29fa14894cf46cfada2c60a2
Author: Olivier Fourdan <ofourdan@redhat.com>
Date:   Mon Jul 1 14:52:26 2019 +0200

    tic-tac-toe: Avoid use-after-free/double-free (Bug #15649)
    
    Clicking on the easter egg “tic-tac-toe” would crash the panel.
    
    Avoid the use-after-free/double-free by not destroying the dialog in
    the email hook.
    
    Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>

commit d37926251642e9850b581a211ecd02d29d052d99
Author: Real School <translator_students@realschool.am>
Date:   Wed Jul 3 12:30:43 2019 +0200

    I18n: Update translation hy_AM (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8d4a46f7b463245f42a1101a0f1dc85dbd5301bc
Author: abuyop <abuyop@gmail.com>
Date:   Tue Jul 2 18:30:31 2019 +0200

    I18n: Update translation ms (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2fbd44f3dc936c79ac145f458259807df9efe424
Author: Iharob Al Asimi <iharob@gmail.com>
Date:   Tue Jul 2 11:50:23 2019 +0200

    tasklist: Add fallback for missing window icons (Bug #15511)
    
    While libwnck provides icons, we can - as final fallback - also query
    the name of the WM_CLASS property of the window and look for an icon of
    that name in the icon theme.

commit 5caaeb23c448c2738007e9afe78652229f774fd8
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Jul 2 11:41:00 2019 +0200

    Disable Gtk+2 support by default

commit a0f6143ea54e3388e070fd3ca3e013d0bffdde9e
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Tue Jul 2 06:30:30 2019 +0200

    I18n: Update translation zh_CN (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ac4154b10815842f7ffc08c32798980eabc4cda4
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 2 00:30:51 2019 +0200

    I18n: Update translation lt (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7104596670e69b1a2ff15ca8d1bf9c1f974ed3ac
Author: Jeff Huang <s8321414@gmail.com>
Date:   Mon Jul 1 18:30:33 2019 +0200

    I18n: Update translation zh_TW (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 583dfad55dd5d09f56635f29248ee68b761b25bd
Author: Igor <f2404@yandex.ru>
Date:   Mon Jul 1 18:30:33 2019 +0200

    I18n: Update translation ru (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4e2e66d17a892d5823ad92e329c7d3ba5f810698
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date:   Mon Jul 1 18:30:33 2019 +0200

    I18n: Update translation it (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2c853aa00a22c3499c43285bfe20ab02fbc470a7
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 1 18:30:33 2019 +0200

    I18n: Update translation hu (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 16453e681ed94a2ac25ebf1532ab57325eb4fbf9
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Mon Jul 1 18:30:33 2019 +0200

    I18n: Update translation fr (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e82eb17096bdfcd0467c31e9306aa57074e96626
Author: Besnik <besnik@programeshqip.org>
Date:   Mon Jul 1 12:30:37 2019 +0200

    I18n: Update translation sq (97%).
    
    400 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2963fb2f935d33557c544c6a0e17c1db7f5b7af7
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 1 12:30:37 2019 +0200

    I18n: Update translation pl (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d6031a67274166c1ac3a0fe2599aee97ea763b85
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Mon Jul 1 12:30:37 2019 +0200

    I18n: Update translation nl (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c63b29c66782f3ac0bf17872d8ae090ed510c90b
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date:   Mon Jul 1 12:30:37 2019 +0200

    I18n: Update translation hr (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit af0886709af71ad99d5bf23b7201160518b0763c
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Mon Jul 1 12:30:37 2019 +0200

    I18n: Update translation gl (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1361ae02e3b452ab57e914e1cbd41bd7085c1dad
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 1 12:30:37 2019 +0200

    I18n: Update translation es (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 43e2c1c720b4dd6a42bbafa14f7e9e86559ac030
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 1 12:30:37 2019 +0200

    I18n: Update translation da (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c21828421b0fa14428dd417136e0b09f4366f7a2
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Mon Jul 1 12:30:37 2019 +0200

    I18n: Update translation cs (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 68c2b863f75c6e4d8cf27e9627f8df8b403e1288
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Mon Jul 1 12:30:37 2019 +0200

    I18n: Update translation bg (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e0817289ddd5ecbf2798ae82bcece4a31359d66d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Jul 1 00:25:23 2019 +0200

    Back to development

commit 133ab04dd4d254acb0494af182f12f64f902e61c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Jul 1 00:22:32 2019 +0200

    Updates for release

commit f586a3c99228596ce3c12d8e883c16e10e1b2ba4
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Jul 1 00:13:34 2019 +0200

    Update default panel layout
    
    - include more plugins by default (only added to the panel if
      available/installed)
    - update layout
    - re-number plugins internally for better maintenance
    - activate some new or improved features (square icons, symbolic icons,
      icon size, intelligent hiding, window grouping)

commit b3702a0596f43fb6339028bb8df3e63e70376dd1
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Jul 1 00:07:22 2019 +0200

    directorymenu: Fix plugin menu autohide behaviour

commit 2202f3e4b5e415c35811416099285a0b2f91f578
Author: Yousuf Philips <philipz85@hotmail.com>
Date:   Fri Jun 28 23:43:27 2019 +0400

    prefs: Add missing mnemonic accelerators (Bug #15652)

commit 90faa4c5b56e12b5d19fbc8a553fcb99d5a2b214
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Jun 30 22:36:59 2019 +0200

    tasklist: Only base bg color of group indicator on gtk theme
    
    The previous approach never worked because we cannot easily get the
    *actual* background color of the panel (e.g. users can override the
    background color or use an image). So we now just take the fg color,
    which is reliable, as it's used for all text on the panel, use that for
    drawing the bubble and then "calculate" whether to write into that with
    white or black. This should work in most cases.

commit 6434790bb260cf86dd9aefa8dc4588191b3af8e1
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Sun Jun 30 18:30:49 2019 +0200

    I18n: Update translation sr (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 704681a5e88280baeaa392e448cfd274935d1832
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sun Jun 30 18:30:49 2019 +0200

    I18n: Update translation fr (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f92dc8249704f71ac7e331ec7d64b6196d67f90a
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Sun Jun 30 18:30:48 2019 +0200

    I18n: Update translation ca (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 65bad1cbe711e00eff98f4c4b60ae4b7af67abf7
Author: Jeff Huang <s8321414@gmail.com>
Date:   Sun Jun 30 12:30:32 2019 +0200

    I18n: Update translation zh_TW (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7ede114d98e7d491eccef5426e78b9b121515cb4
Author: Anonymous <noreply@xfce.org>
Date:   Sun Jun 30 06:31:49 2019 +0200

    I18n: Update translation zh_CN (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8f1350dade7f0f018e2f9f27d378e649f5032a0f
Author: Andre Miranda <andre42m@gmail.com>
Date:   Sun Jun 30 06:31:49 2019 +0200

    I18n: Update translation pt_BR (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 447150daaf5065278282197de24e7686b64e1712
Author: Anonymous <noreply@xfce.org>
Date:   Sun Jun 30 00:30:30 2019 +0200

    I18n: Update translation es (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a480a8953ebfad7a44c6674495b5595566c68cbe
Author: Serdar Sağlam <teknomobil@msn.com>
Date:   Sat Jun 29 18:31:00 2019 +0200

    I18n: Update translation tr (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 577d2c8e0ee794f9ae9b9a3a5ff915f2e6d73d52
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jun 29 18:31:00 2019 +0200

    I18n: Update translation lt (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d29ea53717c294b64bd6e5bf5b6269d8aa9a8935
Author: Andreas Eitel <github-aneitel@online.de>
Date:   Sat Jun 29 18:31:00 2019 +0200

    I18n: Update translation de (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d74efefc2ad71827d4f786bed7292193c772d46d
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jun 29 18:31:00 2019 +0200

    I18n: Update translation da (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2920aacf638d30373965c2bf14ddf55f08bd7b20
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Sat Jun 29 18:31:00 2019 +0200

    I18n: Update translation cs (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4e85848db979f84666f4a2f85fcfc4edbfd0d570
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Sat Jun 29 18:31:00 2019 +0200

    I18n: Update translation bg (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 37959b5c38c702683ab3da5f518014b772a46507
Author: Besnik <besnik@programeshqip.org>
Date:   Sat Jun 29 12:30:31 2019 +0200

    I18n: Update translation sq (97%).
    
    401 translated messages, 10 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3ca536d865770236f2df13010c9040f0823425c2
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jun 29 12:30:31 2019 +0200

    I18n: Update translation pl (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 30fd708ad2a8a12a2017758beef8a235272bfab9
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Sat Jun 29 12:30:31 2019 +0200

    I18n: Update translation nl (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4f1fa58d95ce86c8212a9052c2906eaaf5cc1c00
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date:   Sat Jun 29 12:30:31 2019 +0200

    I18n: Update translation hr (100%).
    
    411 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7d38c1bb06df6078369b78eeb259426a7bfa629d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Jun 29 01:06:49 2019 +0200

    tasklist: Avoid draw signal loop

commit 36d54fac715c073f4ca8b44c61ca107644374b75
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Jun 29 00:18:32 2019 +0200

    prefs: Improve window title (Bug #15653)

commit ea7a59272a46de7f1a475e5f70fde614d9211883
Author: Yousuf Philips <philipz85@hotmail.com>
Date:   Fri Jun 28 22:50:01 2019 +0400

    prefs: Correct capitalization of labels (Bug #15651)

commit 36bc57e035e0e356e3d59d7442adcdd05884d5c8
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Jun 26 23:16:13 2019 +0200

    tasklist: Draw grouped windows count indicator (Bug #10844)
    
    Instead of showing the number of windows in a group in as part of the
    label we show it as a cairo drawn indicator on top of the button.
    There are several benefits to this.
    1) Also with button labels disabled, users can distinguish single
    windows from grouped windows.
    2) It's visually easier to parse.
    3) There's less ambiguity, as some applications (e.g. Telegram) show
    things like unread message as part of the label, which then looks the
    same as the window count.

commit d32217d77e52f7afb152975014ad9eeecd5f8322
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Jun 26 23:07:34 2019 +0200

    arrow-button: Allow connect_after signals on draw
    
    Otherwise you cannot draw with cairo on arrow-buttons.

commit 2de51ee9158ac8235965b3e6a4916ddf50090d92
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jun 26 12:31:15 2019 +0200

    I18n: Update translation ie (82%).
    
    340 translated messages, 70 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0ad33088dc56673a652ea0b5919ba0e3b3b560d5
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Jun 24 22:37:26 2019 +0200

    tasklist: Don't show actionsmenu in grouped windows (Bug #15622)
    
    Previously right-clicking a window in a group (which is a menuitem) the
    regular wnck actions menu would be shown and allow you to interact with
    the application/window in question. Unfortunately the two menus stacked
    on top of each other resulted in a bug, which caused me to 1)
    investigate and 2) decide that there are no other contexts in which we
    allow right-click menus in regular menus.
    
    The new behavior is simply that right-clicks will be treated like
    left-clicks and activate the window in the menu. If you want to interact
    with one of the windows in the group, you can simply right-click the
    group button in the panel and get the regular arrow sub-menus, which are
    much more discoverable.

commit 306856ca04e9626113d9ae3073cd19b808a59a93
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Jun 22 22:32:45 2019 +0200

    Retain original GDK_CORE_DEVICE_EVENTS setting for plugins (Bug #15044)
    
    Previously the panel disabled smooth scrolling for all plugins - and
    therefore unfortunately also for all applications launched through panel
    plugins - because of leave/enter notify spam when hovering the panel.
    With this patch it retains the original setting and passes it down
    correctly to plugins, which should in turn mean applications would get
    the correct setting.

commit 14346382af9dbd6fa2324337087d5914401c0117
Author: Real School <translator_students@realschool.am>
Date:   Thu Jun 20 12:30:55 2019 +0200

    I18n: Update translation hy_AM (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ffd5533d08d71ae38cb3b652750b8707edb35487
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jun 18 00:31:21 2019 +0200

    I18n: Update translation da (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a07a763308db0e40f161bb708525cddff3bbebf6
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jun 17 18:31:18 2019 +0200

    I18n: Update translation da (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e749952e265ac6e3d5657ad467cc01aaaf863872
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jun 17 00:31:03 2019 +0200

    I18n: Update translation da (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0f10581a17731a3b49aab0e6572a74d8ceaf12b6
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Sun Jun 16 18:30:52 2019 +0200

    I18n: Update translation pt (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7fc1627e41e807724907a3396e5fced88fe03c16
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jun 13 18:31:00 2019 +0200

    I18n: Update translation da (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 327a3cc11271c02e57d711a0f2cd3266d73649bf
Author: Real School <translator_students@realschool.am>
Date:   Wed Jun 12 18:31:42 2019 +0200

    I18n: Update translation hy_AM (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 19293232a256ae00a0bfa4018bd98c02b8088cf8
Author: Real School <translator_students@realschool.am>
Date:   Wed Jun 12 00:30:51 2019 +0200

    I18n: Update translation hy_AM (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6ea788de72af0d09b2f4ebef34f6003575827aa9
Author: Real School <translator_students@realschool.am>
Date:   Tue Jun 11 18:31:25 2019 +0200

    I18n: Add new translation hy_AM (69%).
    
    286 translated messages, 124 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 56f6161e99cb71e9b2025b8e7ecf67b5d1b21f99
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Tue Jun 11 12:30:46 2019 +0200

    I18n: Update translation fr (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8a9c61438f734b57dd11820640bcdcfcec92d5fa
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jun 6 06:31:15 2019 +0200

    I18n: Update translation da (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2188fcdea98bd7ae8af7569476caf1416bb555bc
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jun 6 00:31:17 2019 +0200

    I18n: Update translation da (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 53d50f4bc5e93f53ed62c3512bccdfedee4f52f7
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jun 4 00:30:56 2019 +0200

    I18n: Update translation da (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6568761e9328a604bd496aa5ecd51a593688c96e
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jun 1 18:30:48 2019 +0200

    I18n: Update translation da (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d38a7727820ea9bb5af9496db444a105a9257d71
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jun 1 00:31:35 2019 +0200

    I18n: Update translation da (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 136fd1d2eac9a62951b877605b5bdedf74f32682
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date:   Thu May 30 00:30:56 2019 +0200

    I18n: Update translation it (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2ccc13d5de64ef15220fd74b7f8b4dde04b90e0f
Author: Anonymous <noreply@xfce.org>
Date:   Wed May 29 18:30:57 2019 +0200

    I18n: Update translation da (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 26d76d7d61beed9758bc7d1cef9bf086a55f807d
Author: John Humphrys <john.humphrys@pm.me>
Date:   Wed May 29 12:31:03 2019 +0200

    I18n: Update translation en_AU (100%).
    
    410 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 44d2d6badfeff9544bb1de7b2ad19af29a5a1113
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue May 28 22:34:18 2019 +0200

    Add more accelerators to dialog buttons (Bug #15490)

commit 14e8f44737fedc1b0d0ed743c2c35cb020c957fa
Author: Anonymous <noreply@xfce.org>
Date:   Tue May 28 18:31:20 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 555b78b55a43ba3c04f82f01ca2525d5ab6d256f
Author: Anonymous <noreply@xfce.org>
Date:   Mon May 27 18:31:39 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b588af0ac74c5d2e671e69759d910fe7908ee431
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Sun May 26 18:31:10 2019 +0200

    I18n: Update translation pt (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b04c4ebc00e0a5396505cc1b1ecc3ba01efaf08b
Author: Anonymous <noreply@xfce.org>
Date:   Sat May 25 18:31:19 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1aa1f06eda8345f026ac5e70a729ecb22b551f9d
Author: Anonymous <noreply@xfce.org>
Date:   Sat May 25 00:31:06 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7342dd84ea4ca4292ce399cf9ea749e19661d1f9
Author: Anonymous <noreply@xfce.org>
Date:   Fri May 24 18:31:12 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c0e96a08c14d946437c27cf70c136ecf1613e76e
Author: Serdar Sağlam <teknomobil@msn.com>
Date:   Thu May 23 12:31:51 2019 +0200

    I18n: Update translation tr (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fa2602dcc5a97670438a40b30a85c8ab76cc7bdc
Author: Serdar Sağlam <teknomobil@msn.com>
Date:   Thu May 23 06:30:58 2019 +0200

    I18n: Update translation tr (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 36abbde2f8d6803d2b7a1feae8fb25e39005553c
Author: Anonymous <noreply@xfce.org>
Date:   Thu May 23 00:30:41 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 054b84b8ba4876161cd288a2422cce6d19b2902b
Author: Anonymous <noreply@xfce.org>
Date:   Wed May 22 00:30:57 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 56b36b269a23333c7a087c87eb54e1889e5a9a49
Author: Anonymous <noreply@xfce.org>
Date:   Mon May 20 18:31:20 2019 +0200

    I18n: Update translation ie (82%).
    
    341 translated messages, 71 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 52fc8b90713590f90a2811e0ee15e777734054b3
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon May 20 09:18:14 2019 +0200

    AC_CONFIG_MACRO_DIR -> AC_CONFIG_MACRO_DIRS

commit 674265309d59c24e12c781fc4b6bad744a7335a2
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun May 19 22:19:55 2019 +0200

    Fix typo in debug output

commit 1d0bf98079c2efae5fbf880818e0f4e2236f89c4
Author: Anonymous <noreply@xfce.org>
Date:   Fri May 17 18:32:08 2019 +0200

    I18n: Update translation ie (82%).
    
    341 translated messages, 71 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5535071576c9cc90248fb83decd9c4f4586781ed
Author: Anonymous <noreply@xfce.org>
Date:   Fri May 17 18:32:07 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b00f7bdea8a20606a9c4fce17b30b6bc3cec0a00
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri May 17 15:05:29 2019 +0200

    Back to development

commit 330e76a6c27eb77e39a08d8a19680388bd044872
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri May 17 15:00:39 2019 +0200

    Updates for release

commit 77f4059da9646f3d3b16968736da8d72c30a8059
Author: Christos Arvanitis <arvchristos@gmail.com>
Date:   Fri May 17 12:31:05 2019 +0200

    I18n: Update translation el (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9289b72e179a824b815077425afb458320efe085
Author: Anonymous <noreply@xfce.org>
Date:   Fri May 17 00:31:51 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e8767fcf9f7c00419883b84242b5b6026c74f97c
Author: Anonymous <noreply@xfce.org>
Date:   Thu May 16 18:32:02 2019 +0200

    I18n: Update translation ie (82%).
    
    339 translated messages, 73 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8847205acdf6757043e5368520ec162365489e61
Author: Anonymous <noreply@xfce.org>
Date:   Thu May 16 00:32:34 2019 +0200

    I18n: Update translation ie (81%).
    
    337 translated messages, 75 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 875b79665ca9fab8ab1c6fdf4b5454b4ba03a62a
Author: Anonymous <noreply@xfce.org>
Date:   Thu May 16 00:32:34 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9f054d131176fc63a0ab7f74a77b8752c61bcbd0
Author: Anonymous <noreply@xfce.org>
Date:   Wed May 15 06:31:39 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ea0b183f3ead06cf7271b16cc5189a3f16c8b0fa
Author: Anonymous <noreply@xfce.org>
Date:   Wed May 15 00:31:42 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6934c299ed0347ca2245cf6f57ee50db8826f41c
Author: Sveinn í Felli <sv1@fellsnet.is>
Date:   Tue May 14 18:31:10 2019 +0200

    I18n: Update translation is (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1aeeb147f5309b63350f6746278d5090389ea949
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon May 13 23:04:32 2019 +0200

    separator: Use symbolic icon for more clarity (Bug #15359)

commit 6e0ddceaa0afa097ad5bce839bc5d79d233a547b
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon May 13 22:59:52 2019 +0200

    Hide systray frame in default panel config

commit eeacd898cadf35bae99fbd7e5cdaac9aad8b9da4
Author: Anonymous <noreply@xfce.org>
Date:   Mon May 13 18:31:43 2019 +0200

    I18n: Add new translation ie (80%).
    
    333 translated messages, 79 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d22a1947d36bf137b54d0850ba60837534e86b7c
Author: Sveinn í Felli <sv1@fellsnet.is>
Date:   Fri May 10 18:33:10 2019 +0200

    I18n: Update translation is (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3ce813aa00a134fe76548ba1006dd02a377f3f73
Author: Sveinn í Felli <sv1@fellsnet.is>
Date:   Fri May 10 12:32:03 2019 +0200

    I18n: Update translation is (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5a0be1db6d2ef69d9b16e7fc3ab3dac423a15cd0
Author: Anonymous <noreply@xfce.org>
Date:   Fri May 10 06:31:35 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8198ccd1a5d5c36154d9300ea5e0e00c731e4fd7
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:41 2019 +0200

    I18n: Update translation zh_HK (92%).
    
    380 translated messages, 32 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 870e379682a66dbb319683d3b2916d26e8e7aa04
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:41 2019 +0200

    I18n: Update translation vi (74%).
    
    307 translated messages, 105 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 617bb393dcdad3df4a4adf255c7e03be0a272b05
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:40 2019 +0200

    I18n: Update translation ug (91%).
    
    379 translated messages, 33 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d563f6890d45043ca453bf56d07a2675e8fa71cc
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:39 2019 +0200

    I18n: Update translation sv (97%).
    
    401 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7673404ed44e7d7ab7f17115d9098cd2cc3b0704
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:39 2019 +0200

    I18n: Update translation sl (94%).
    
    390 translated messages, 22 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a5a65cf9a963349bdbcfa6216da7ea850ad80774
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:38 2019 +0200

    I18n: Update translation si (66%).
    
    272 translated messages, 140 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8003dbc1dcc87d07a21c5f43105bda53952267df
Author: Igor <f2404@yandex.ru>
Date:   Wed May 8 19:27:38 2019 +0200

    I18n: Update translation ru (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0f353311b56c386095b0aa10a531d603255f3d78
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:37 2019 +0200

    I18n: Update translation ro (93%).
    
    385 translated messages, 27 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit eb0a4449f0ff929c4de1d4c8ea645d5eec4ff27b
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:36 2019 +0200

    I18n: Update translation pa (66%).
    
    274 translated messages, 138 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dc07de733008e43314e6312760bcd5b6c1159577
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:36 2019 +0200

    I18n: Update translation oc (93%).
    
    385 translated messages, 27 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 84147d71e683c1b85b45ecfdd69112519202a8a2
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:36 2019 +0200

    I18n: Update translation nn (94%).
    
    388 translated messages, 24 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 99c4c831cd5982a0c81ba343bf7394991495bcfb
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:36 2019 +0200

    I18n: Update translation nb (96%).
    
    399 translated messages, 13 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d75d82f183cd1a84e3d1216ff732a1af39a81e81
Author: 박정규(Jung-Kyu Park) <bagjunggyu@gmail.com>
Date:   Wed May 8 19:27:35 2019 +0200

    I18n: Update translation ko (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 72d127de9fea3985db1071ca7f937cbba06b0be2
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date:   Wed May 8 19:27:34 2019 +0200

    I18n: Update translation it (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 814f20fbe827b9ed52ab8e55d6e9802806a0c141
Author: Anonymous <noreply@xfce.org>
Date:   Wed May 8 19:27:32 2019 +0200

    I18n: Update translation eu (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0e9e1dbf5ae36479b835ab4b8ea0b8510d777bc7
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:32 2019 +0200

    I18n: Update translation et (84%).
    
    347 translated messages, 65 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 59a62922d42573a3f8ffdfa34d1ea7d1840dcef3
Author: Alfredo Quintero <alfredomob@gmail.com>
Date:   Wed May 8 19:27:31 2019 +0200

    I18n: Update translation es (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b1edf1d131d551b2a7411ec40375487937c5a192
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:31 2019 +0200

    I18n: Update translation en_GB (96%).
    
    398 translated messages, 14 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7d3a800f02e0511aed1858821f3ecf8d502b89d6
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:31 2019 +0200

    I18n: Update translation en_AU (99%).
    
    409 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d0730d612edbe252875f4628231bdc5c49b902ff
Author: Andreas Eitel <github-aneitel@online.de>
Date:   Wed May 8 19:27:30 2019 +0200

    I18n: Update translation de (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5702849653659eb498f0ab9b8826104295b8eaeb
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:29 2019 +0200

    I18n: Update translation bn (70%).
    
    289 translated messages, 123 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 14148dc1af241d84dc51cc4d7f1b45f53d9654cd
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:29 2019 +0200

    I18n: Update translation ast (91%).
    
    375 translated messages, 37 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d6469f63be3d9b45325d0907852192385a58fa9d
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:28 2019 +0200

    I18n: Update translation ar (94%).
    
    390 translated messages, 22 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a7587db39267492d31ceaed50df0429c731f49b6
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed May 8 19:27:28 2019 +0200

    I18n: Update translation am (71%).
    
    296 translated messages, 116 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a052c7cf9001e2b180db17214be62faaea4db6ae
Author: Anonymous <noreply@xfce.org>
Date:   Sun May 5 00:31:32 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2ac9e32cc565d51b9f270d91c65f0a658128ca90
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Sat May 4 18:31:57 2019 +0200

    I18n: Update translation gl (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 170095e9776a64a8090fec78ca15c014055fe4c0
Author: Anonymous <noreply@xfce.org>
Date:   Sat May 4 18:31:57 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 62e731a3d617732013df44cfd3510ce2c6f480a0
Author: Anonymous <noreply@xfce.org>
Date:   Sun Apr 28 00:31:22 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ad65e83fa06b301f4c0231cd0894d96ce2ed4c30
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Sat Apr 27 18:30:54 2019 +0200

    I18n: Update translation pt_BR (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bbfb18d41ce94ff9d3d33bd9b532b6fdfaf9332e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Apr 26 23:07:51 2019 +0200

    launcher: Fix tooltip icon size (Bug #15319)
    
    The tooltip icons were only broken with absolute paths. The problem
    seemed to be that gdk_pixbuf_new_from_file_at_scale doesn't like the
    GTK_ICON_SIZE* macros.

commit 5eb34b3a72d77a5f3c914803dfab0dae4bfa5ecf
Author: Anonymous <noreply@xfce.org>
Date:   Mon Apr 22 00:30:40 2019 +0200

    I18n: Update translation lt (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7dd473f8a77f6998e816fdfc5f0b2f5de07f3f2e
Author: Olivier Fourdan <fourdan@xfce.org>
Date:   Fri Apr 19 23:04:03 2019 +0200

    tasklist: Activate parent windows (Bug #15307)
    
    With the fix for xfwm4 bug 14953, which allows regular transient windows
    to be minimized independently from their parent window, the taskbar
    needs to activate the parent window instead of the highest transient
    otherwise using the taskbar would just show/hide the toplevel instead of
    activating the parent window.

commit 1dd2d556659c11ea9c37bea004889095460a536a
Author: Anonymous <noreply@xfce.org>
Date:   Sat Apr 20 00:31:25 2019 +0200

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 490f64bf3cefd38142aeef01de00c021be3c9688
Author: Andre Miranda <andreldm@xfce.org>
Date:   Thu Apr 18 00:21:27 2019 -0300

    Bump glib version

commit cda0787bd60a9bdff8f7f78547769d0313036de5
Author: Anonymous <noreply@xfce.org>
Date:   Wed Apr 17 18:30:45 2019 +0200

    I18n: Update translation bg (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 31552b083129b94aeeaca7087ba1c8547820b99d
Author: Anonymous <noreply@xfce.org>
Date:   Tue Apr 16 18:31:05 2019 +0200

    I18n: Update translation bg (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c062d6361798145503bdc09ef4c576d41a3b2a7a
Author: Anonymous <noreply@xfce.org>
Date:   Tue Apr 16 12:31:31 2019 +0200

    I18n: Update translation bg (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 321bf70972a1313054463eac9b1648fdbf0ba393
Author: Andre Miranda <andreldm@xfce.org>
Date:   Sun Apr 14 18:46:54 2019 -0300

    Fix this use of "defined" may not be portable

commit ff724933be1b16c074660470f79ab2a688fa9339
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Apr 14 22:21:11 2019 +0200

    Fix alpha-transparent background images (Bug #14850)
    
    Unfortunately not setting the background-color to "transparent" means
    that the original theme color will interfere with the alpha-transparent
    parts of a background image a user may set.
    Hence we have to explicitly set it to transparent.

commit b2fb4b49a4f21022aae610b2de34779141b612b7
Author: Andre Miranda <andreldm@xfce.org>
Date:   Sun Apr 14 12:57:27 2019 -0300

    Fix compiler error -Wcast-function-type (GCC 8)

commit 7b91954c7ede1ef18550fde79e0c949ca60606a6
Author: Demiray Muhterem <mdemiray@msn.com>
Date:   Sun Apr 7 12:30:53 2019 +0200

    I18n: Update translation tr (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 687bb6f07b6b28034bc3888ebcfb3a83bb9000e3
Author: Pasi Lallinaho <pasi@shimmerproject.org>
Date:   Sat Apr 6 12:31:05 2019 +0200

    I18n: Update translation fi (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 69f14efc0f4418fdd570235af3022b9987218db6
Author: Andre Miranda <andreldm@xfce.org>
Date:   Fri Apr 5 23:26:38 2019 -0300

    actions: use a different icon for hybrid sleep when possible (Bug #15204)

commit 3abbe78bfa3c643f7d31338e97682d8490a09a59
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Apr 5 22:01:14 2019 +0200

    Make sure panel plugin icons aren't clipped (LP #1756608)
    
    Previously all icons <19px, ==34px and >39px were somewhat clipped with
    Adwaita. The current calculation consistently assumes we have at least
    4px internal padding/border on each plugin button and substracts that.

commit 2341cf325aed19964a64da29f7a3efcfca3a701c
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Mon Mar 25 00:31:32 2019 +0100

    I18n: Update translation nl (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 987979f88a89942e514588033242d33ab1ceb32e
Author: Ardjuna <Asyura.x@gmail.com>
Date:   Sat Mar 16 12:30:42 2019 +0100

    I18n: Update translation id (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 880bf58cd6ca87395ce6c4d583b5396536070e03
Author: Ardjuna <Asyura.x@gmail.com>
Date:   Sat Mar 16 06:31:02 2019 +0100

    I18n: Update translation id (95%).
    
    395 translated messages, 17 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6eefe311e03115b500231034991977594400baee
Author: Besnik <besnik@programeshqip.org>
Date:   Sat Mar 16 00:30:35 2019 +0100

    I18n: Update translation sq (97%).
    
    401 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d2a0b53cb88a022366caf39dd66cf783d71b5433
Author: Alfredo Quintero <alfredomob@gmail.com>
Date:   Wed Mar 13 06:30:43 2019 +0100

    I18n: Update translation es (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 485f0727c63d2966998f41fe9193ea170603b1ba
Author: Anonymous <noreply@xfce.org>
Date:   Thu Mar 7 18:31:26 2019 +0100

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit efc1d70457500cbbed2cdac03cd621e7a2313476
Author: Anonymous <noreply@xfce.org>
Date:   Thu Mar 7 12:31:40 2019 +0100

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 24df4880614a0cdc0ad5caad768cd325501149bd
Author: Arianit Kukaj <akukaj@msn.com>
Date:   Sun Feb 17 00:30:43 2019 +0100

    I18n: Update translation sq (98%).
    
    404 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1c6f82c56f98d0e799ac7772fab9ad596bd03c5b
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sat Feb 16 18:31:11 2019 +0100

    I18n: Update translation kk (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5b7b32f9dc01c3a7fc2cf7dc13270b41a0ec3a55
Author: Andre Miranda <andre42m@gmail.com>
Date:   Sat Feb 16 06:31:10 2019 +0100

    I18n: Update translation pt_BR (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6165cccb9a2b39fb50ab2b7b4314136cceb916af
Author: Anonymous <noreply@xfce.org>
Date:   Fri Feb 8 00:30:39 2019 +0100

    I18n: Update translation uk (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 749345e7135a5a2561ad3ea9fecb23f91e572c5c
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Thu Jan 31 18:31:32 2019 +0100

    I18n: Update translation gl (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit da58ec8e67b76fc651b18be6c5d33a512e1587eb
Author: beriain <beriain@bitmessage.ch>
Date:   Mon Jan 28 18:31:21 2019 +0100

    I18n: Update translation eu (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ef566020c8f9ba375a858993574c65a6b36243db
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Sun Jan 27 18:31:24 2019 +0100

    I18n: Update translation sr (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4e7ddc96b9e644dd3661c5df5a4db415a39fa63a
Author: abuyop <abuyop@gmail.com>
Date:   Sat Jan 26 18:30:58 2019 +0100

    I18n: Update translation ms (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ca155362e4945e25d63ca5eb3d4d4b272504ac6c
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Sat Jan 26 12:31:02 2019 +0100

    I18n: Update translation ca (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit df70683af3dffb67c5a7775eb9ab5f44c7abdd8c
Author: dsafsadf <heneral@gmail.com>
Date:   Thu Jan 24 00:30:34 2019 +0100

    I18n: Update translation uk (99%).
    
    409 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7650f4c79c87fce1e5b3ec5054ad57488b625608
Author: Luis Mendoza <darcn181@gmail.com>
Date:   Tue Jan 22 18:30:48 2019 +0100

    I18n: Update translation es (99%).
    
    410 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8f0459cea0e714ff302dbc71e28550b80f725962
Author: Zmicer Turok <zmicerturok@gmail.com>
Date:   Tue Jan 22 12:30:58 2019 +0100

    I18n: Update translation be (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fbce32adcc42c52e79b7e69f8a6d3bcca41c10aa
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Sat Jan 19 18:30:48 2019 +0100

    I18n: Update translation pt (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8428a792240e0b26bba528c3b1de0379cdf876cd
Author: Shun <shun98@139.com>
Date:   Thu Jan 17 12:32:11 2019 +0100

    I18n: Update translation zh_CN (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1677f1d0a47f79f7f27c6c24a2b8a1fcfa6b0bc5
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Tue Jan 15 00:30:37 2019 +0100

    I18n: Update translation ca (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b9bb6e2b65f6becad45722a4e2c2983284ccabfe
Author: Sveinn í Felli <sv1@fellsnet.is>
Date:   Mon Jan 14 18:31:21 2019 +0100

    I18n: Update translation is (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0e5d41819b4a78c4b3f3ac2725f7318ab7a62a0e
Author: Davidmp <medipas@gmail.com>
Date:   Mon Jan 14 18:31:20 2019 +0100

    I18n: Update translation ca (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 309be72091df0d00ffc0217cdbb360012160e485
Author: Pavel Borecki <pavel.borecki@gmail.com>
Date:   Fri Jan 11 12:31:38 2019 +0100

    I18n: Update translation cs (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 62c8611355c234f79fd15e4afdb76052e5be1960
Author: Jose Riha <jose1711@gmail.com>
Date:   Wed Jan 9 18:31:31 2019 +0100

    I18n: Update translation sk (97%).
    
    402 translated messages, 10 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ca1cf69831073f8fcf2f583f6ef70dadb48b138d
Author: Zmicer Turok <zmicerturok@gmail.com>
Date:   Tue Jan 8 00:30:53 2019 +0100

    I18n: Update translation be (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4ffc6ece568a8635e697b41b0da1e1226e1c20bd
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Sun Jan 6 18:30:56 2019 +0100

    I18n: Update translation cs (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b123aa0e4f8a4833b1768e337b4f0cf7f50f3d6a
Author: Christos Arvanitis <arvchristos@gmail.com>
Date:   Fri Jan 4 18:31:01 2019 +0100

    I18n: Update translation el (99%).
    
    410 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dc1f684d600884583d93cfbdae6b78a6b2b9ee9f
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jan 3 15:07:32 2019 +0100

    Revert "Applications menu icon sizing fixes" (Bug #14976)
    
    This reverts commit c04e40bcbf319b294f2e34f374fdb350571d6f72.
    Without the GdkPixbuf logic in this commit the image file option of the
    applications menu doesn't work anymore. Allowing non-square icons is a
    feature of the panel, but it can much more easily be reverted, if
    needed.

commit df07f0d01848f50ac0e83b07fc1d47cc24c4ddf6
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date:   Thu Jan 3 06:31:03 2019 +0100

    I18n: Update translation th (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cc13fadf9cbaff1a0c02273905a67a557eb0db47
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Wed Jan 2 06:30:35 2019 +0100

    I18n: Update translation cs (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7a663b182ab6937721a1047bd64a1c99ae5972bc
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Jan 2 00:57:06 2019 +0100

    Back to development

commit 8e57819186ee3c2070fbcd9c8b019e1c90f33edd
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Jan 2 00:52:49 2019 +0100

    Updates for release.

commit 529f47f22b6ec09939bd9654850ac750bc3d3c39
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Wed Jan 2 00:31:12 2019 +0100

    I18n: Update translation cs (99%).
    
    409 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6ccf2516013ad99920c42299e75b71e65839fdfb
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date:   Mon Dec 31 12:30:35 2018 +0100

    I18n: Update translation th (97%).
    
    401 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6639c5297073f5356cc52ec16114130f772e4c2d
Author: Anonymous <noreply@xfce.org>
Date:   Sat Dec 29 18:30:40 2018 +0100

    I18n: Update translation de (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5bec37497d8cb454381721ffe9d49ca77dcd161e
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Thu Dec 27 06:30:37 2018 +0100

    I18n: Update translation zh_CN (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5ceb4057a2e4c6136b7884ad649dd95f1c71aabf
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Sat Dec 22 23:15:54 2018 +0000

    Ignore deprecated GdkScreen calls

commit 3255fe7a8b6da4e8a19e476113306e15fc72cef6
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Sat Dec 22 22:41:08 2018 +0000

    external: Fix deprecated instance private data API

commit 209938afb497c8aed5acca9559c9ea4251f8dfa0
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Sun Dec 16 11:55:52 2018 +0000

    clock: Replace separate kb/mouse grabs with a seat grab
    
    This fixes numerous deprecation warnings and the code becomes
    shorter and simpler too. This patch is Gtk+3 only.

commit bfad53ae9f5abdcaf97e601210ff1a65a6e8104e
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Sun Dec 16 10:09:31 2018 +0000

    launcher: Fix deprecated functions
    
    The replacements are Gtk+3 only. Also, this code seems to be broken
    both before and after this patch. This needs a deeper investigation.
    
    See Xfce bug #14986

commit 9c933df808b661c7b2b29afb7956edb34f274dde
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Mon Dec 3 23:53:18 2018 +0000

    tasklist: Replace deprecated GdkScreen calls with GdkDisplay
    
    The stored GdkScreen is now only used when first getting the
    WnckScreen, so it can be removed. Instead, the GdkDisplay is
    stored, as it is now used instead of GdkScreen in all the
    other places. Additionally the monitor update function now
    always keeps n_monitors updated, instead of only updating it
    when all_monitors is FALSE.
    
    gdk_display_get_n_monitors requires at least Gtk+3.22.

commit a5622dd2998ae2a8e9b935ff3099d9d43925a2fc
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Tue Dec 4 01:09:54 2018 +0000

    tasklist: Remove xfce_tasklist_gdk_screen_changed
    
    This does nothing useful any more since the panel doesn't receive
    these events. Other code is calling it, but it can just call the
    inner function directly and get the same result.

commit 5a30e2eef13459765d23c9e9820a7aaa88330635
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Tue Dec 4 01:14:27 2018 +0000

    tasklist: Remove xfce_tasklist_geometry_set_invalid
    
    The filter_monitors macro always checks n_monitors and all_monitors.
    This means that setting n_monitors to 0 whenever all_monitors is TRUE
    has no effect, and there is no need for a macro which does this.

commit f08003ff13fd195ccd78a62f80200c08cf53453c
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Sat Dec 22 18:30:35 2018 +0100

    I18n: Update translation he (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0ba99f666d13e3e3d804d48571a35b15fa6b647e
Author: Balázs Meskó <meskobalazs@gmail.com>
Date:   Fri Dec 21 00:30:35 2018 +0100

    I18n: Update translation hu (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2489db47c6b49898e557883fa0974d46c67a2559
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Sun Dec 16 11:04:00 2018 +0000

    systray: Fix incompatible pointer type warning

commit 48fc05a8302e42107742f7544322aaa3f8d17afa
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Sun Dec 16 10:08:49 2018 +0000

    launcher: Fix incompatible pointer type warning

commit ff3ee9076014013eee41dee0350d27b9a5ff3c15
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Sat Dec 15 14:34:23 2018 +0000

    actions: Fix uninitialized retval warning

commit 050b3fdb31c7fcf79734862287b2b21feb6d8fcf
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Tue Dec 4 02:40:33 2018 +0000

    tasklist: Add a default case with error message
    
    This silences an annoying warning about GTK_SCROLL_SMOOTH. This
    type of event is filtered out earlier so the switch does not
    actually need to handle it, but the compiler complains anyway.

commit dc9bb3e612d7473c3917c2e5da9f01bf17148c03
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Tue Dec 4 21:45:31 2018 +0000

    libxfce4panel: Fix deprecated instance private data API
    
    Remove g_type_class_add_private and use G_DEFINE_TYPE_WITH_PRIVATE
    and G_ADD_PRIVATE instead.
    
    This re-introduces code previously reverted due to bug #14860. The
    new version should take care of that bug.

commit 0df60dc8e4b6d3d007eea442cda464950b187218
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Dec 14 10:27:32 2018 +0100

    Revert "tasklist: Add support for larger application icons"
    
    Unfortunately the global icon cache of libwnck lets us run into an
    "icon-changed" signal loop if a user has multiple tasklists with
    different icon sizes. This was already realized in 2002, when this call
    was originally removed from libwnck. It's unclear to me why it was
    re-introduced without addressing this issue.
    For reference:
     * https://github.com/GNOME/libwnck/commit/4b216137230d2fac212b42b42acb8267e604c0a7
    
    This reverts commit fc4efcc991b21d191f0b82412fb33070009780c5.

commit 1667a3248edd2d208131218a54005797adca6374
Author: José Vieira <jvieira33@sapo.pt>
Date:   Mon Dec 10 00:30:53 2018 +0100

    I18n: Update translation pt (99%).
    
    411 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c65d61ac5993e180c9b896b828fee690384ba619
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date:   Mon Dec 10 00:30:53 2018 +0100

    I18n: Update translation ja (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fc4efcc991b21d191f0b82412fb33070009780c5
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Dec 7 12:11:41 2018 +0100

    tasklist: Add support for larger application icons
    
    As libwnck now supports larger icon sizes we should make use of them.
    In some cases the icon-cache of libwnck is outdated. To be exact:
    a correct icon is there, but the size is not. So we sometimes get a
    32px icon even though we requested a larger one.
    The only way to work around this is to take the icon of an app in
    that group until the cache is valid again.

commit 9d868ccd98c9a2f344fbd8e0bc4cf7908cdd398a
Author: Emanuele Petriglia <inbox@emanuelepetriglia.me>
Date:   Fri Dec 7 12:30:36 2018 +0100

    I18n: Update translation it (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f768f4229d21dc70ffd8ecca063a9bb76e809d85
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Dec 7 11:46:58 2018 +0100

    tasklist: Fix segfault

commit 239984d1b607f7c96d5080c7cf60347e1406bc88
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Tue Dec 4 02:38:35 2018 +0000

    tasklist: Remove unused variable lucent

commit 3a0bdf11a995e38ab4d74078c4002ff6a0ea62b3
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Tue Dec 4 22:11:25 2018 +0000

    libxfce4panel: Remove unused icon_size variable

commit 4703c6fb8c2665063e67787c42dfcd50aff274cd
Author: Demiray Muhterem <mdemiray@msn.com>
Date:   Thu Dec 6 12:30:35 2018 +0100

    I18n: Update translation tr (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a73935e00c036ba35fc6688e812dc915ffe06b75
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Thu Dec 6 12:30:35 2018 +0100

    I18n: Update translation fr (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7e6ff8c53e8cb6b17e6616fe4641b14e2e134bee
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date:   Thu Dec 6 00:30:37 2018 +0100

    I18n: Update translation ja (98%).
    
    404 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0dfd8a5a9fbcd80c7c24e47b7a454710257e0ce0
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Dec 6 00:21:38 2018 +0100

    tasklist: Fix group-button states

commit ecf9bec4fa082e20b79ce037c5df7f7935e4396b
Author: Andrzej <andrzejr@xfce.org>
Date:   Wed Dec 5 23:01:02 2018 +0000

    libxfce4panel: arrow button size fixes
    
    Initialise button sizes not to return rubbish.
    Make minimum and natural sizes the same to prevent
    squeezing the buttons when panel runs out of space.

commit ea5d5b0929b1bc046a9f046642407e68a999171c
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Tue Dec 4 22:24:12 2018 +0000

    Add comments indicating intentional fall through
    
    GCC 7 is actually smart enough to find these comments and disable
    -Wimplicit-fallthrough so this silences some false positive warnings.

commit 92bd0174a23dafdb992ecf51670b08d45e640ab4
Author: Igor <f2404@yandex.ru>
Date:   Wed Dec 5 18:30:47 2018 +0100

    I18n: Update translation ru (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fa5f78506b313eaa6e2737a06c438e2e85c0ec2a
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Mon Dec 3 23:49:41 2018 +0000

    tasklist: Disconnect configure-event instead of GdkScreen signals
    
    Since 3c2b62db2a configure-event is used instead of GdkScreen, but
    the disconnects were not updated to match.

commit 50ca1e969b1fed44284e1384fdcb1214a48f60a8
Author: Andrzej <andrzejr@xfce.org>
Date:   Tue Dec 4 22:21:03 2018 +0000

    launcher: plugin sizing fixes

commit 1d981213f29558246b31134b23c3e4df037be276
Author: Tony Paulic <tony.paulic@gmail.com>
Date:   Tue Dec 4 20:31:24 2018 +0100

    appmenu: Add support for other menu editors (Bug #11684)
    
    MenuLibre, which is currently probably the best menu editor around, is
    now set as the default/fallback editor.
    Distributions can set their own menu editor in the 'menu-editor' xfconf
    property.

commit fcdc79ffdfe122474cfb3b959656078f10318aa4
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Tue Dec 4 18:30:35 2018 +0100

    I18n: Update translation bg (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6b8ad70e8f2f19c46b1ff2ad1505bdbcec16be63
Author: Jeff Huang <s8321414@gmail.com>
Date:   Tue Dec 4 12:30:37 2018 +0100

    I18n: Update translation zh_TW (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d7f788a821e748283ac8611229b32dcb412ea176
Author: Besnik <besnik@programeshqip.org>
Date:   Tue Dec 4 12:30:37 2018 +0100

    I18n: Update translation sq (97%).
    
    401 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1f278b6b800aee14d05e063336cd5edb2ec54fe2
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date:   Tue Dec 4 12:30:37 2018 +0100

    I18n: Update translation hr (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4b21ba3021f2a51e9ac37158e225e65639e5f525
Author: Anonymous <noreply@xfce.org>
Date:   Tue Dec 4 12:30:37 2018 +0100

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e69c7e7dc53b75d210b3829fe78e65985b8ae09b
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Tue Dec 4 12:30:37 2018 +0100

    I18n: Update translation ca (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5cc81da49b7309047b9b6d7b2f5fe2065ca8faf5
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Tue Dec 4 06:30:38 2018 +0100

    I18n: Update translation zh_CN (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9a2153d1dfd534b794df00d5835f89c668cc7236
Author: 박정규(Jung-Kyu Park) <bagjunggyu@gmail.com>
Date:   Tue Dec 4 06:30:38 2018 +0100

    I18n: Update translation ko (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0145a148ec9bba7edd0304f9c45cac5153bd0d95
Author: Anonymous <noreply@xfce.org>
Date:   Tue Dec 4 00:30:36 2018 +0100

    I18n: Update translation pl (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ad8a1b38092d7184b8d4f7fa1f780e30ab1558a5
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Tue Dec 4 00:30:36 2018 +0100

    I18n: Update translation nl (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5ad5a7ae3a383059a96891c10a75b4a8fe964c7e
Author: Anonymous <noreply@xfce.org>
Date:   Tue Dec 4 00:30:36 2018 +0100

    I18n: Update translation lt (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d45ce7bda97705952bce63f41e896908c84f1696
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Tue Dec 4 00:28:01 2018 +0100

    Add comments for using deprecated struts code

commit 632d5f1bc7cd564be3418bf7549e2f749e4f7db1
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Dec 3 23:56:47 2018 +0100

    tasklist: Fix urgency blinking for group buttons (Bug #6904)

commit 85ae07304b2f08fdac44c0db50ed9b563eeb5e5f
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Dec 3 23:47:40 2018 +0100

    tasklist: Correctly return value on configure event

commit 971188bec9a1336db42492ce32f9a4ad7ecd7f0e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Dec 3 23:39:20 2018 +0100

    tasklist: Add 'group-button' styleclass
    
    This allows themes to visually distinguish between normal single-window
    buttons and group buttons (which is useful, because the behaviors
    differ:
     - single-window buttons focus the corresponding window on left-click
     - group buttons open a menu with all grouped windows on left-click

commit 2ba9fc0aeb2ab63fce2bcd71ab72f7ba2c00795d
Author: Sergey Alyoshin <alyoshin.s@gmail.com>
Date:   Mon Dec 3 22:33:53 2018 +0100

    I18n: Update translation ru (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 840f62fffc5b74cfd64d290ba9611a373d482a2a
Author: Sveinn í Felli <sv1@fellsnet.is>
Date:   Mon Dec 3 22:33:53 2018 +0100

    I18n: Update translation is (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit acd616d981fe6a4a330fc558d9db496b3e3b64df
Author: Balázs Meskó <meskobalazs@gmail.com>
Date:   Mon Dec 3 22:33:52 2018 +0100

    I18n: Update translation hu (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b22b0811d699b1dcfd4ffeefc95bc90501896f5c
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Mon Dec 3 22:33:52 2018 +0100

    I18n: Update translation he (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d3bfdabd5ea1e3cab76262e8618b76838027bf73
Author: Anonymous <noreply@xfce.org>
Date:   Mon Dec 3 22:33:52 2018 +0100

    I18n: Update translation fi (99%).
    
    405 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6f48e1588c5d10e2f1c53ee7dd5cf232abef16ed
Author: Anonymous <noreply@xfce.org>
Date:   Mon Dec 3 22:33:52 2018 +0100

    I18n: Update translation da (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0dba5bc9cfd35fe35e9d7acb5791b08b8e38cece
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Sat Dec 1 20:43:34 2018 +0000

    Fix anchors for gtk_menu_popup_at_widget
    
    This fixes the use of anchors throughout the panel codebase.
    
    In most cases the menu position depends on the panel orientation.
    If the panel is vertical then the top left corner of the menu is
    aligned with the top right corner of the widget. If the panel is
    horizontal then the top left corner of the menu is aligned with
    the bottom left corner of the widget.
    
    In one case the logic is different: the menu which pops up when
    right clicking the window list dropdown is adjusted to behave
    like a normal cascading menu.
    
    Only one usage of gtk_menu_popup_at_widget is not modified:
    The dropdown menu for when a launcher has multiple actions appears
    to be correct already.
    
    Note that gdk automatically flips anchors to make the menu fit
    on screen, so this automatically works if the panel is on the
    right or bottom edge of the screen.
    
    Fixes bug #14803

commit 5de1be8280cca97a19f25a85049170bf6e757b4c
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Mon Nov 19 04:06:03 2018 +0000

    Fix struts on the bottom and right of the screen
    
    We can't use the monitor geometry of a single monitor to calculate
    this for two reasons. Both reasons are caused because the struts
    are relative to the bottom and right edges of the X11 screen.
    
    If we try to use a single monitor geometry by saying something like
    geometry.y + geometry.height, this will fail on at least one monitor
    if the bottom edges of the monitors are not aligned.
    
    If we try to calculate the rectangle containing all monitors this
    will also fail because the logical X11 screen size can be even larger.
    
    The only way to get this information is to go to raw X11 calls, or
    just use the deprecated functions.
    
    Also switch to using alloc instead of base coordinates. When this
    function is called, base_x and base_y do not contain correct values.
    This has no effect on the code since scale factor is the same for
    all monitors under X11, and if it weren't the rest of the code would
    likely break anyway.
    
    Fixes bug #14886

commit 3c2b62db2a795cc83b33c87e48f11e9db0ca2c63
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Sun Nov 18 00:05:01 2018 +0000

    tasklist: Don't listen for monitor changes in the plugin
    
    Previously both the panel and the plugin listened for monitor changes.
    This lead to a race condition since there was no control over which
    would receive the event first. When the panel receives the event it
    may move itself to another monitor. If the plugin receives the event
    it will update itself before the move, and then its contents will be
    wrong after the move.
    
    The fix makes the plugin listen to configure events from the panel
    instead of monitor events from Gdk. These are only sent after the
    panel has finished processing the move event. They are sent in some
    other situations too, so this is slightly in-efficient, but it is
    probably not worth worrying about.
    
    Fixes bug #10725

commit c7e53e8747c28ed0138abc953d67dc26c098dc76
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Sat Nov 17 22:54:04 2018 +0000

    tasklist: Use Gdk to to determine which monitor contains a window
    
    Calculating which monitor contains a window can be surprisingly
    difficult. A window can span more than one monitor but more
    confusingly it can also be on zero monitors. Gdk already has
    robust functions for finding the "best" monitor for a window,
    and they handle all the corner cases much better than the code
    in the tasklist plugin. Specifically they will return the nearest
    monitor if the window is outside all monitors. This will prevent
    some cases where windows go missing from the panel.
    
    This also removes the need to maintain lists of monitor geometry
    inside the tasklist, meaning a whole load of error-prone
    g_new/g_renew code can be ripped out.

commit 6e458db8c06e46dab9dac95e5ef29b88b0ec6efd
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Dec 2 23:56:11 2018 +0100

    tasklist: Make workaround for int->double less silly

commit 4003fcfe2aac30160a13946581fff1769f0aa81c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Dec 1 22:26:27 2018 +0100

    tasklist: Avoid segfault with grouping disabled

commit 4acc4837b0391c52cef67057136fa4eedfe82daa
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Dec 1 00:57:43 2018 +0100

    tasklist: Ensure pressed buttons with open menus

commit 59baa93a007f1daf38e576a779bad2d9001eceac
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Dec 1 00:26:55 2018 +0100

    tasklist: Replace exo-lucency with gtkcss
    
    Instead of re-drawing the pixbuf we just add a style-class "minimized"
    to the icons that relate to minimized apps and add "opacity: 0.5;".

commit 9921b874b7c929696eca061b8818303d3e439a93
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Nov 29 00:23:19 2018 +0100

    tasklist: Make all-minimized group buttons translucent (Bug #10862)

commit f7e02cf41cbb46e1def2b81054ebc34b2a04709e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Nov 29 00:21:01 2018 +0100

    Add missing icon-size property to PanelItembar

commit c4ca7f2e7b8a984aceee1d79ae862c6f382f3650
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Nov 28 15:49:06 2018 +0100

    tasklist: Switch from wnck* icons to standard names

commit dd45eaadc70aab72c6365070e56dd17d288033ca
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Nov 28 15:48:06 2018 +0100

    tasklist: Keep groupbutton active after closing menu

commit b26d09d053ba409d6e80cc740cddd5b590c8aaa8
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Nov 28 15:27:47 2018 +0100

    tasklist: Make sure icons in the group menu are 16px
    
    Previously they were sized just like the taskbar group button icon.

commit f8d673c5024af0cd6b7f2bb63f2ffa434a708faa
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Nov 28 14:39:14 2018 +0100

    tasklist: Make grouped buttons active (Bug #9129)

commit 4d1b17980b43d4cba0edaa84fc3edced62193596
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Jul 4 23:28:30 2018 +0200

    Add icon-size property per panel
    
    Plugins using the xfce_panel_plugin_get_icon_size method returns either the
    fixed icon-size that users can now define per panel or a calculated icon-size.
    This way combinations of sizes that were previously impossible are do-able,
    e.g. a 32px panel with 16px icons. This should help with consistency of icons.
    
    Setting 'icon-size' to 0 results in "auto sizing" (i.e. icon-size
    calculated based on the size of the panel).

commit ca31a0852196223aec87cd6356be05f22999c6e1
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Nov 26 23:48:39 2018 +0100

    launcher: Rely on icon-size provided by panel

commit 0578ad2f49aae82083a08b7b784bb5b85faea093
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Mon Nov 26 12:31:11 2018 +0100

    I18n: Update translation zh_CN (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9c65d39b74f0c7c6d18881ee94fbbcf798145c15
Author: John Humphrys <john.humphrys@pm.me>
Date:   Mon Nov 26 12:31:10 2018 +0100

    I18n: Update translation en_AU (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 37fb588ec0c22b3677545b2492571e8223de69d1
Author: Jeff Huang <s8321414@gmail.com>
Date:   Mon Nov 26 06:30:45 2018 +0100

    I18n: Update translation zh_TW (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ba390fb3bbf892093163d93f472f264d8b1ff1ee
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Mon Nov 26 06:30:45 2018 +0100

    I18n: Update translation zh_CN (99%).
    
    408 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0ac99f5528e5ae9158167af3e56703a032af5359
Author: Igor <f2404@yandex.ru>
Date:   Mon Nov 26 06:30:45 2018 +0100

    I18n: Update translation ru (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 027484c1f39a256c12c968335a0c02cfaa38a078
Author: Emanuele Petriglia <inbox@emanuelepetriglia.me>
Date:   Mon Nov 26 00:30:52 2018 +0100

    I18n: Update translation it (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 47cb5bcddc7b133988780c4d7df54dc5be6b0f89
Author: 박정규(Jung-Kyu Park) <bagjunggyu@gmail.com>
Date:   Sun Nov 25 18:31:00 2018 +0100

    I18n: Update translation ko (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 830ed989169ce281a2a0a7d4b767b57b65e4dd13
Author: Pavel Borecki <pavel.borecki@gmail.com>
Date:   Sun Nov 25 18:30:59 2018 +0100

    I18n: Update translation cs (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d8c966ae22c803682b879f2088cf5a7464be584d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Nov 25 01:08:16 2018 +0100

    Remove unused variables

commit cf18bd1e7208fae82113d7af5351c76167f0a350
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Nov 25 01:06:58 2018 +0100

    Prevent crash on removing certain plugins (Bug #14418)
    
    We now also remove the reference to the menu item and clean up the
    GSList as a whole.

commit 31c25bbb78e334b80c77e5c7209f9e387a6e42ae
Author: Anonymous <noreply@xfce.org>
Date:   Sun Nov 25 00:30:42 2018 +0100

    I18n: Update translation lt (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 60e4a1dd6d208faedc4c0f085949142a11796f62
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date:   Sun Nov 25 00:30:42 2018 +0100

    I18n: Update translation hr (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4fb71d95a05324d70e7aa15e09b65b33400e74a1
Author: Demiray Muhterem <mdemiray@msn.com>
Date:   Sat Nov 24 18:30:38 2018 +0100

    I18n: Update translation tr (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 123f6d94f6019c00e96c06225b4b0bfcaf4336d0
Author: Anonymous <noreply@xfce.org>
Date:   Sat Nov 24 18:30:38 2018 +0100

    I18n: Update translation pl (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit aa531c66944e8f25e4bbbe5a1d343ef3d0c5a9ca
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Sat Nov 24 18:30:38 2018 +0100

    I18n: Update translation bg (100%).
    
    409 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7ce7430e51b418a2cc80101d5826cbd9ee7f722a
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Nov 24 00:34:42 2018 +0100

    Add "configure" button to composited infobar
    
    If we find xfwm4-tweaks-settings in the path we assume the user is
    running xfwm4 and offer easy access to the compositing setting via the
    "Configure..." button.

commit 2815f7e44369a4c1356c20cca56238339757d1ba
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Nov 24 00:04:43 2018 +0100

    Make compositor info in settings dialog a GtkInfoBar

commit 1ecf9e4d533cad51dadacea828bc6b43b40218c7
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Nov 23 23:49:44 2018 +0100

    applicationsmenu: Drop deprecated call

commit 789dae4449e2e63c8646e39d1bddcc591fa95a70
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Nov 23 23:47:09 2018 +0100

    directorymenu: Fix crash and drop deprecated call
    
    The dialog_icon is a regular GtkImage instead of a XfcePanelImage so the
    typecheck needed to be adjusted. The alternative_button_order could be
    dropped because it had no affect.

commit 48cf552f4abf5e37296ff2207388478daaa37473
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Nov 23 23:26:44 2018 +0100

    Silence compiler warnings

commit d9e4900125cfbfba89f9e51864d4972d3d9e6448
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Nov 23 23:26:27 2018 +0100

    Set minimum Gtk+3 version to 3.22
    
    Drop all Gtk3.22 specific ifdefs and - where necessary - replace them
    with generic Gtk3 ifdefs.

commit 60bb559af477341f53a1d508e4a77f7659f6b56d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Nov 23 22:43:31 2018 +0100

    Fix unreadable panel items without compositing (Bug #14842)
    
    If the "leave-opacity" is defined then disabling compositing results
    in the panel being drawn with wrong colors. The widget opacity will
    somehow still be taken into consideration and results in almost
    unreadable icons and text.
    We work around this problem by making sure the "leave opacity" is always
    100% visibility without compositing and remembering the original value
    so we can restore it if compositing is re-enabled and the panel hasn't been
    restarted meanwhile.

commit cb563935e76bf43d9e1909e78756816a1b7ba954
Author: 박정규(Jung-Kyu Park) <bagjunggyu@gmail.com>
Date:   Fri Nov 23 18:30:36 2018 +0100

    I18n: Update translation ko (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6fff2cf45e864ee0458c56fbe743f414360ad313
Author: Andre Miranda <andre42m@gmail.com>
Date:   Fri Nov 23 08:37:19 2018 -0300

    launcher: Make properties' content resizable (Bug #14898)

commit f8781e86d36bc1ce18b9565db81c26948c3c2785
Author: Zmicer Turok <zmicerturok@gmail.com>
Date:   Thu Nov 22 18:30:35 2018 +0100

    I18n: Update translation be (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c08cc8675c9b7d37e4df0d4b8cc4bc056be3bc31
Author: Muhammet Kara <muhammetk@gmail.com>
Date:   Wed Nov 21 18:31:24 2018 +0100

    I18n: Update translation tr (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 26f1982067058654e147b96a9c09877ebaa2bc04
Author: Pavel Borecki <pavel.borecki@gmail.com>
Date:   Wed Nov 21 18:31:24 2018 +0100

    I18n: Update translation cs (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9ba6436d8b508fbf3d99def2b0cf64cfba596afc
Author: Anonymous <noreply@xfce.org>
Date:   Wed Nov 21 00:30:47 2018 +0100

    I18n: Update translation da (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 43ae214f210b56d8472ca5986f9fe93199168e01
Author: Emanuele Petriglia <inbox@emanuelepetriglia.me>
Date:   Tue Nov 20 18:30:48 2018 +0100

    I18n: Update translation it (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 574f3f51eb0a9b80f43b67f57cf880f943a71856
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Nov 20 00:36:09 2018 +0100

    launcher: Fix arrows not being shown (Bug #14373)
    
    Unfortunately this bug was a combination of:
    - wrong widget packing in the GtkBox
    - wrong size requests
    - and finally Adwaita setting the button min-height/width

commit 6ff02360bbd31f6048252f23beb2129a1a8933df
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date:   Tue Nov 20 00:30:47 2018 +0100

    I18n: Update translation hr (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 805249296df27e1af44398e1c4f365442eb49616
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Mon Nov 19 18:31:27 2018 +0100

    I18n: Update translation pt (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 74c2807fec0c15ea32e7ca92ec89eeb7d00c0dee
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Mon Nov 19 18:31:27 2018 +0100

    I18n: Update translation nl (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e07a5d935e866471acec3eda3a9d798720061de3
Author: Jeff Huang <s8321414@gmail.com>
Date:   Mon Nov 19 06:30:40 2018 +0100

    I18n: Update translation zh_TW (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3bd133c49bff3150a29754e1bd3f03ed84d4aa48
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Mon Nov 19 06:30:40 2018 +0100

    I18n: Update translation zh_CN (99%).
    
    406 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6883a4414578375bafcf2444451ba6ca02ef3107
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Mon Nov 19 06:30:40 2018 +0100

    I18n: Update translation pt_BR (99%).
    
    404 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ea8332da51fb86c83319b66b715b258d8fb96221
Author: Igor <f2404@yandex.ru>
Date:   Mon Nov 19 00:31:33 2018 +0100

    I18n: Update translation ru (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit faf51dad5d947bc584c073fbb1d597ff54c6b221
Author: Anonymous <noreply@xfce.org>
Date:   Mon Nov 19 00:31:33 2018 +0100

    I18n: Update translation lt (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bff5c22cb19106c427e0c44ba4580ba36f47ceb7
Author: Charles Monzat <c.monzat@laposte.net>
Date:   Mon Nov 19 00:31:33 2018 +0100

    I18n: Update translation fr (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3cdf2a44751823752cf62da58ce4c03aa283bd3d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Nov 18 22:59:47 2018 +0100

    launcher: Fix tooltip icon size (Bug #14774)
    
    Previously tooltip icons were unscaled if there was no icon available in
    the appropriate size.

commit 4144efe3663461126ccfc1afbff4464bdb0c310d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Nov 18 22:55:54 2018 +0100

    Re-introduce button images to plugin settings dialogs

commit cefb52a03be9e9467f5e1b887f460d049565e29a
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Sun Nov 18 18:30:42 2018 +0100

    I18n: Update translation uk (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 91ee27fb308294b7339bfc0956dff7a410eedb56
Author: Demiray Muhterem <mdemiray@msn.com>
Date:   Sun Nov 18 18:30:42 2018 +0100

    I18n: Update translation tr (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c763de5c3e18645df13e0a7aabfc044f9d5644b4
Author: Besnik <besnik@programeshqip.org>
Date:   Sun Nov 18 12:30:36 2018 +0100

    I18n: Update translation sq (95%).
    
    388 translated messages, 19 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ef837b69cbb963089b032cb0a0e5992c4dee6f1f
Author: Anonymous <noreply@xfce.org>
Date:   Sun Nov 18 12:30:36 2018 +0100

    I18n: Update translation pl (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7bdbc1da38de581f44cce34fc5f9163a20250d1e
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sun Nov 18 12:30:36 2018 +0100

    I18n: Update translation fr (99%).
    
    406 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b0e04eace332bf0ebd49f82087dab397e7647da9
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Sun Nov 18 12:30:36 2018 +0100

    I18n: Update translation ca (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 562e0d51ed33cca8a7a2d191dbeb0be7891c66a0
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Sun Nov 18 12:30:36 2018 +0100

    I18n: Update translation bg (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0aa911024b9e0de3a886a42151f069648d91e606
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Nov 18 00:34:05 2018 +0100

    clock: Improve layout of settings dialog

commit e60d88c7c91345807c9905f8d72023ff8215341b
Author: Anonymous <noreply@xfce.org>
Date:   Sun Nov 18 00:31:11 2018 +0100

    I18n: Update translation lt (100%).
    
    405 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8a92aee4edae663006bed2197dd0a4c7e2673902
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Nov 18 00:23:01 2018 +0100

    Make the settings dialog more HIG compliant

commit 97ee249b27be03cecc22ca049bf8e4ed86c40e63
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Nov 17 22:54:10 2018 +0100

    launcher: Add 'New Link' button to properties (Bug #14855)
    
    This action was previously hidden in the context menu of the treeview.
    I also re-ordered the items in the properties dialog to match the order
    of the items in the context menu, re-added the dialog button icons that
    were lost with the GtkStock transition and made the move-up/down buttons
    linked.

commit 2c528845a4948d09335ad4ff52105430f0346ba4
Author: Jeff Huang <s8321414@gmail.com>
Date:   Sat Nov 17 18:30:58 2018 +0100

    I18n: Update translation zh_TW (100%).
    
    405 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 44164c17f43a620085424027edcb8a751e3ed97e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Nov 17 00:01:57 2018 +0100

    Drop the panel's welcome dialog (Bug #14388)
    
    Instead of asking new users to choose between the default config and an
    empty panel we simply give them the default panel. Anybody knowing what
    they are doing can get an empty panel with a few clicks and those not
    knowing what they're doing should always get our default config.

commit 4f385393711887826ea4aac54ce623655f6853aa
Author: beriain <beriain@bitmessage.ch>
Date:   Thu Nov 15 18:31:19 2018 +0100

    I18n: Update translation eu (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3962625bf53ae61e98a12e296758965846e30d70
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Thu Nov 15 12:30:36 2018 +0100

    I18n: Update translation uk (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8cda5e440ab2f0bf0d43e4169c04aa9a7f535fa7
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Nov 10 23:44:28 2018 +0100

    Revert replacing of G_TYPE_INSTANCE_GET_PRIVATE macro (Bug #14860)

commit c5f1edc4580b157d98bf4b583cf66f608e315312
Author: Påvel Nicklasson <pavel2@frimix.se>
Date:   Mon Nov 12 12:30:52 2018 +0100

    I18n: Update translation sv (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5d5a3f655ec19882e6eb7167e315676836a78f2e
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sat Nov 10 18:32:07 2018 +0100

    I18n: Update translation ko (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bce45b5542d8e4a2b0720fa4d71b78522a62b1af
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Nov 9 00:20:02 2018 +0100

    Fix typecasting

commit 6a7a2ace8d3c008104736b8fb20731382eea862a
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Nov 9 00:19:38 2018 +0100

    Fix deprecations in xfce-panel-plugin

commit 3a736e64e3b9412eb1fd3b38e311b7a724392e4f
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Nov 8 23:10:02 2018 +0100

    Replace deprecations (X error event ignoring)

commit 13a52ec0c269a95732a9172ca635c584e1f3347c
Author: Sveinn í Felli <sv1@fellsnet.is>
Date:   Mon Nov 5 18:30:38 2018 +0100

    I18n: Update translation is (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 550d01a5e8e0a2d574a7faa934e8fdba2d0ce871
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Nov 4 01:34:59 2018 +0100

    clock: Resolve deprecations and fix binary clock
    
    Previously the binary clock was not correctly/consistently
    colored. Now it should follow the theme's colors correctly.

commit d53065b521caa24eede448be140386c5b009cae3
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Nov 4 00:47:51 2018 +0100

    clock: Fix incorrect types

commit 174563de9704a2af08982f367ef2b32ab1182efb
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date:   Fri Nov 2 00:30:38 2018 +0100

    I18n: Update translation ja (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 28a33c82759e5347879595829d8458c6f741bf24
Author: Vinzenz Vietzke <vinz@vinzv.de>
Date:   Tue Oct 30 00:31:20 2018 +0100

    I18n: Update translation de (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e427be9d8ed3b456742ffca21891fc861e4e35bc
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Sat Oct 27 18:30:36 2018 +0200

    I18n: Update translation he (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 863d1ed96c8a33ab01abdfb18e743696aae982fc
Author: Emanuele Petriglia <inbox@emanuelepetriglia.me>
Date:   Sat Oct 27 12:31:26 2018 +0200

    I18n: Update translation it (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c4e5767f54ab4984aa05a965d6ebee5d0141a91a
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Oct 27 00:17:00 2018 +0200

    Re-introduce button images in panel dialogs
    
    The images were lost as part of the transition away
    from GtkStock.

commit 05a50fadcd3bad792dc9cbedddc127dba682ecb5
Author: abuyop <abuyop@gmail.com>
Date:   Fri Oct 26 18:31:17 2018 +0200

    I18n: Update translation ms (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit eb09b6e5004173c50f8e1e7058aa0e8ed19ed2d5
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Oct 23 23:45:28 2018 +0200

    Drop instance of deprecated g_type_class_add_private

commit e56e8699e271cea209f5b283421952d9035ad2b5
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Oct 23 23:40:53 2018 +0200

    Workaround for xinput2's subpixel handling (LP #1795135)
    
    This xinput2 subpixel handling results in continuous firing of
    enter/leave-notify events when the panel is at 0x0 and the pointer is a
    y/x=0. The actual coordinates returned by xorg can be even below 0, so
    e.g. -0.67823, thereby triggering a leave-notify event.
    This problem has to be tackled within xorg, clamping the subpixel
    coordinates at least at the lower maxima.

commit 7802d9c534fd75aea9e71a81f1df585e1b734b3f
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Oct 23 23:39:14 2018 +0200

    Ensure the orientation style classes are always applied
    
    This means you can always use .xfce4-panel.horizontal or
    .xfce4-panel.vertical to refer to a panel in the related orientation.

commit fd1d3921aefda3a63340c5401272624975f0e709
Author: Charles Monzat <c.monzat@laposte.net>
Date:   Tue Oct 23 00:30:50 2018 +0200

    I18n: Update translation fr (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7f5c59dde7e6fec6614b9659943d69d9aeb910bb
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Tue Oct 23 00:30:50 2018 +0200

    I18n: Update translation ca (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fc71b0e6deda5abe5a1c3859d38a56ed032513e1
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Mon Oct 22 18:30:50 2018 +0200

    I18n: Update translation ca (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6c6a26447e8c07e604d78cf2c7463fe54182ee19
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Mon Oct 22 12:31:04 2018 +0200

    I18n: Update translation ca (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c7b034378a3e75e73153178409f9723326503ecf
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Mon Oct 22 00:31:23 2018 +0200

    I18n: Update translation ca (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a3e01ab321862023fa93b2f28d2bb70c9460c8ce
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date:   Sun Oct 21 12:30:48 2018 +0200

    I18n: Update translation hr (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0ae12f43cfc43a6b5d6f696ce416438e76dce395
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Sun Oct 21 12:30:47 2018 +0200

    I18n: Update translation ca (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9b65386b96aff4a66726d37bd3641b0a7fe42615
Author: Anonymous <noreply@xfce.org>
Date:   Sat Oct 20 00:30:45 2018 +0200

    I18n: Update translation es (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cbee98f5890193ba8d51f1634e84efa21bb2f2a9
Author: Igor <f2404@yandex.ru>
Date:   Fri Oct 19 18:30:37 2018 +0200

    I18n: Update translation ru (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e3ad67439f21c4efcbded166cebe0d7cb03bddaa
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Fri Oct 19 12:31:00 2018 +0200

    I18n: Update translation ca (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 61b313ca5d7c2df4b631cbf32dd7af7240d700a4
Author: Jeff Huang <s8321414@gmail.com>
Date:   Fri Oct 19 06:30:39 2018 +0200

    I18n: Update translation zh_TW (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7b3e0d117303b35f9364171558d70371b5053a3e
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Fri Oct 19 06:30:39 2018 +0200

    I18n: Update translation zh_CN (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8210a7b78dce7712149edb61b6db836f5ee34ff3
Author: Demiray Muhterem <mdemiray@msn.com>
Date:   Fri Oct 19 00:30:45 2018 +0200

    I18n: Update translation tr (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4b917de32f7f392289aeb1d56ba948666dca4418
Author: Anonymous <noreply@xfce.org>
Date:   Fri Oct 19 00:30:45 2018 +0200

    I18n: Update translation da (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit da6c29cc5d400c1d3538d4dec71b00582411beae
Author: Anonymous <noreply@xfce.org>
Date:   Thu Oct 18 18:30:38 2018 +0200

    I18n: Update translation pl (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ee349ece3007ddee24e27c223e22bec7c8265364
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Thu Oct 18 18:30:38 2018 +0200

    I18n: Update translation gl (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6a3333087b5e7a6aa8fbeb9a802d90991c62833b
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Oct 18 00:39:52 2018 +0200

    Fix list of authors in about dialog

commit bb70adecd0eb66ceb06acbffd8fab4af33525a53
Author: Aitor Beriain <beriain@bitmessage.ch>
Date:   Mon Oct 15 18:30:50 2018 +0200

    I18n: Update translation eu (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 52d4c333269452a03a0f1f8c527861b5cd21792d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Sep 30 00:30:45 2018 +0200

    Add orientation-related style classes for improved theming
    
    This means that themes can make use of the .horizontal, .vertical and
    .deskbar classes to tweak e.g. margins or paddings.

commit dae97814bdf926457a0a189513322df74276a4f2
Author: Charles Monzat <c.monzat@laposte.net>
Date:   Mon Oct 1 18:32:07 2018 +0200

    I18n: Update translation fr (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5f0e41ded7f120dc642607168b50ef1c1a5be3fc
Author: Anonymous <noreply@xfce.org>
Date:   Mon Oct 1 18:32:07 2018 +0200

    I18n: Update translation da (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f9ed9bf4b52c7f03ecfa11d22eee7eda9855089c
Author: Charles Monzat <c.monzat@laposte.net>
Date:   Wed Sep 26 18:31:24 2018 +0200

    I18n: Update translation fr (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1af2dc1585ea476d8b3b8a3b0b4c10dcf293043e
Author: Charles Monzat <c.monzat@laposte.net>
Date:   Wed Sep 26 00:31:18 2018 +0200

    I18n: Update translation fr (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0ab3a6beb563a55d77af39f67ca305677582df60
Author: Aitor Beriain <beriain@bitmessage.ch>
Date:   Tue Sep 25 18:31:07 2018 +0200

    I18n: Update translation eu (97%).
    
    405 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d30d0164540922d8324d005fbf37900e13cd8bf7
Author: Anonymous <noreply@xfce.org>
Date:   Sun Sep 23 00:30:46 2018 +0200

    I18n: Update translation da (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4abe7e76e82a2c911e6ba21f99eafeedd6a591ad
Author: Charles Monzat <c.monzat@laposte.net>
Date:   Sat Sep 15 18:32:44 2018 +0200

    I18n: Update translation fr (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c0ececbc8d23bb3ab6315d52c1a6c75e1fa93676
Author: Jeff Huang <s8321414@gmail.com>
Date:   Fri Sep 14 06:37:05 2018 +0200

    I18n: Update translation zh_TW (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a065b16ebecb26f40c515d2ef1b77ef34b3d7a13
Author: Walter Cheuk <wwycheuk@gmail.com>
Date:   Fri Sep 14 06:37:05 2018 +0200

    I18n: Update translation zh_HK (94%).
    
    393 translated messages, 21 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 06402c1f412298dc3c14dfc832f05e5221f3acfe
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:05 2018 +0200

    I18n: Update translation zh_CN (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 528631bf4e6159eed5e7831ea24a1e0c906f46e3
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:05 2018 +0200

    I18n: Update translation vi (75%).
    
    313 translated messages, 101 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c50e482f4c1529171e0f8c97d958429e60eb5963
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:05 2018 +0200

    I18n: Update translation uk (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 45db9cb020c8734913bebab1b28371a68ff6a4bf
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Sep 14 06:37:05 2018 +0200

    I18n: Update translation ug (94%).
    
    392 translated messages, 22 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ecbfa9eb97038c01aa25774037296be10766fa6c
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:05 2018 +0200

    I18n: Update translation tr (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 94635818ba314f15a49b19f3f3e2b0bf77b63024
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:05 2018 +0200

    I18n: Update translation th (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a77ee3951e5986cd6e5e15100c08fdabb2003879
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:05 2018 +0200

    I18n: Update translation te (50%).
    
    207 translated messages, 207 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4d4887ca14d84cc5a002f6de5f75b2bab39ce319
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:05 2018 +0200

    I18n: Update translation sv (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 830953d562d0e2e51eb9e5cf7951df2627ac6cc8
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Fri Sep 14 06:37:05 2018 +0200

    I18n: Update translation sr (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ae9f09c1213d511d37981186af42886cd553e55b
Author: Besnik <besnik@programeshqip.org>
Date:   Fri Sep 14 06:37:05 2018 +0200

    I18n: Update translation sq (78%).
    
    327 translated messages, 87 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a09c5c58d0b0907fac79890aa67e273a2b195e96
Author: Anonymous <noreply@xfce.org>
Date:   Fri Sep 14 06:37:04 2018 +0200

    I18n: Update translation sl (97%).
    
    404 translated messages, 10 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a8d4f061a80fef20005069abdf9dd498d46a7bdc
Author: Slavko <linux@slavino.sk>
Date:   Fri Sep 14 06:37:04 2018 +0200

    I18n: Update translation sk (99%).
    
    411 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c4be95f383bf2ed41becd290e7d35181d5e38bf3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Sep 14 06:37:04 2018 +0200

    I18n: Update translation si (68%).
    
    282 translated messages, 132 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b50236a0ad0277aad658168496143e9a662d7cab
Author: Igor <f2404@yandex.ru>
Date:   Fri Sep 14 06:37:04 2018 +0200

    I18n: Update translation ru (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit abf6aa02a1541f2359da0479668eec4ba8e272df
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Sep 14 06:37:04 2018 +0200

    I18n: Update translation ro (96%).
    
    398 translated messages, 16 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e22c2d9f6e74750571cbb0e651a6cc34e164c450
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:04 2018 +0200

    I18n: Update translation pt (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9e6e363da9bef900b817171371d6e57b87f37379
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:04 2018 +0200

    I18n: Update translation pt_BR (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit de437dd5c9c7b96a1fa970160969bf332e1c98c2
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:04 2018 +0200

    I18n: Update translation pl (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 77c4ea93f4ab56fffc0f12f0314591ea562b9041
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Sep 14 06:37:04 2018 +0200

    I18n: Update translation pa (68%).
    
    284 translated messages, 130 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 85a3c7457028e3d8dc13180ba5d78642c5a9266a
Author: Cédric Valmary <cvalmary@yahoo.fr>
Date:   Fri Sep 14 06:37:03 2018 +0200

    I18n: Update translation oc (96%).
    
    399 translated messages, 15 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f68ba8115e60f6b82b41b0bc4a3a55126feed441
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:03 2018 +0200

    I18n: Update translation nn (97%).
    
    402 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 82e4dbcf953a049ddff7c5905c467fe8d686b467
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:03 2018 +0200

    I18n: Update translation nl (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3312969ef2c504b52fd1898c0cbfec9044491195
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:03 2018 +0200

    I18n: Update translation nb (99%).
    
    413 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 225566a5b188cd05eb7a8df12970f3488bb113cd
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:03 2018 +0200

    I18n: Update translation ms (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3d69fbefda0d1c81805c5887af62ed27f687b242
Author: Anonymous <noreply@xfce.org>
Date:   Fri Sep 14 06:37:03 2018 +0200

    I18n: Update translation lt (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1fb81f6f3c1e15ca30aa642be303bb2a455c0d2c
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:03 2018 +0200

    I18n: Update translation ko (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bb534bc4780e02b25477af75b54c56b503b1c131
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:03 2018 +0200

    I18n: Update translation kk (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fa29c1118527884d49f63e14ece779884437b637
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:03 2018 +0200

    I18n: Update translation ja (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6c4d395c396dc39084b2d933e542150bffcbee9c
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:03 2018 +0200

    I18n: Update translation it (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bfb771247549ba495c800691eebd4ca43e4665af
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:03 2018 +0200

    I18n: Update translation is (98%).
    
    407 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4a88fa927365f7a4a5a8ee89cbbea2785e16c6f4
Author: Kukuh Syafaat <syafaatkukuh@gmail.com>
Date:   Fri Sep 14 06:37:03 2018 +0200

    I18n: Update translation id (98%).
    
    409 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1dcead33b6e82c56b0f3aa2b7c96df4d5b6f2ea0
Author: Balázs Meskó <meskobalazs@gmail.com>
Date:   Fri Sep 14 06:37:02 2018 +0200

    I18n: Update translation hu (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4f0a9eaaa149ac07d98f0ac8c3b0dec83a9ba5fa
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date:   Fri Sep 14 06:37:02 2018 +0200

    I18n: Update translation hr (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3b2babe69065d380e61c13f652800cdc5abfa508
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:02 2018 +0200

    I18n: Update translation he (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c7d01ee73946c195fa59b299dad7ce3a8f7e6bdb
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:02 2018 +0200

    I18n: Update translation gl (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 96dd4173351b75d3bdea72f216a777bf470ff7ca
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:02 2018 +0200

    I18n: Update translation fr (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bb0b63c732fc95a9ad08b31ff9f2c0dfeed5bd4e
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:02 2018 +0200

    I18n: Update translation fi (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6e6857743e5afefeecf8b6b07e5444591460a111
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:02 2018 +0200

    I18n: Update translation eu (97%).
    
    402 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fbc59b068280cc531481ed556566850ef2417431
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Sep 14 06:37:02 2018 +0200

    I18n: Update translation et (86%).
    
    360 translated messages, 54 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b421bf5b59f4a53926fafcae85372327df62939f
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:02 2018 +0200

    I18n: Update translation es (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2049fd03e12543d3c7f6b1a98383ed91eaa10ca8
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:02 2018 +0200

    I18n: Update translation en_GB (99%).
    
    412 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0512c31672ae260e5d306ff65d8ab27f49faea5d
Author: Panagiotis Mantzios <pmantzios@hotmail.com>
Date:   Fri Sep 14 06:37:02 2018 +0200

    I18n: Update translation el (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 10ef485f75bc6babc6ba0bed44184ab25f5bd748
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:02 2018 +0200

    I18n: Update translation de (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8a732c959e1987cab5fcd549d59d157d0bd119c8
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:01 2018 +0200

    I18n: Update translation da (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5a3008b0bf62c68a56124177e8a8a3d0d4d3ce5d
Author: Pavel Borecki <pavel.borecki@gmail.com>
Date:   Fri Sep 14 06:37:01 2018 +0200

    I18n: Update translation cs (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 589b1206a50ff15877f96a0a33520f0379d7aefe
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:01 2018 +0200

    I18n: Update translation ca (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5f4819dbf87d7be30c2bab0bb912171319ab407a
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:00 2018 +0200

    I18n: Update translation bn (71%).
    
    298 translated messages, 116 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e76aa6481ec434f92f2624aac867b52643174688
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:00 2018 +0200

    I18n: Update translation bg (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit dd2bd84e2fc15505302053d95a13f302f7d36cc5
Author: Zmicer Turok <zmicerturok@gmail.com>
Date:   Fri Sep 14 06:37:00 2018 +0200

    I18n: Update translation be (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e8499bf503b4fecda4baeaa24ac5d438991f09e7
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:00 2018 +0200

    I18n: Update translation ast (93%).
    
    388 translated messages, 26 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4046514ccb0496f50d5169bc690507fa1bc6a853
Author: Xfce Bot <transifex@xfce.org>
Date:   Fri Sep 14 06:37:00 2018 +0200

    I18n: Update translation ar (97%).
    
    404 translated messages, 10 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6fa94c3054c465e6d83383c8b38423085815669e
Author: samson <sambelet@yahoo.com>
Date:   Fri Sep 14 06:37:00 2018 +0200

    I18n: Update translation am (73%).
    
    303 translated messages, 111 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4203f860d6de4ae9060e5f0a974ed76769ee9c86
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date:   Fri Aug 31 12:31:18 2018 +0200

    I18n: Update translation th (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ae541c5a59ac190b2b0203b817ad751b1f919f40
Author: Emanuele Petriglia <inbox@emanuelepetriglia.me>
Date:   Sat Aug 25 18:31:16 2018 +0200

    I18n: Update translation it (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 14c5d324aad842021045519758c0f1eb862b9455
Author: Emanuele Petriglia <inbox@emanuelepetriglia.me>
Date:   Thu Aug 23 00:35:10 2018 +0200

    I18n: Update translation it (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 518069720f697078943c5586a77b934819a82a11
Author: Emanuele Petriglia <inbox@emanuelepetriglia.me>
Date:   Tue Aug 21 18:31:36 2018 +0200

    I18n: Update translation it (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b823f32749ff7ec8d2abc4d10fd7457b628cdcdd
Author: Emanuele Petriglia <inbox@emanuelepetriglia.me>
Date:   Thu Aug 16 18:30:50 2018 +0200

    I18n: Update translation it (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 61462e8dd1c155f866561fe1952bca85ba1e4ea0
Author: Emanuele Petriglia <inbox@emanuelepetriglia.me>
Date:   Thu Aug 16 00:30:59 2018 +0200

    I18n: Update translation it (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ea0a69645ccef4a12f410722893756683aa60faa
Author: Emanuele Petriglia <inbox@emanuelepetriglia.me>
Date:   Mon Aug 13 00:30:54 2018 +0200

    I18n: Update translation it (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bf6207821d91ec0a7675c24a17e4d957ee67d06e
Author: Erlend Østlie <erlendandreas12368@gmail.com>
Date:   Sat Aug 4 18:30:46 2018 +0200

    I18n: Update translation nb (99%).
    
    411 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9df83365384d6a0fe4152776d867d5dcc62a5e1b
Author: Pavel Borecki <pavel.borecki@gmail.com>
Date:   Thu Aug 2 18:32:06 2018 +0200

    I18n: Update translation cs (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7677a2f12c4658de0af262d5203423a63f984a6c
Author: Pavel Borecki <pavel.borecki@gmail.com>
Date:   Wed Aug 1 18:31:34 2018 +0200

    I18n: Update translation cs (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 91a828dffa982897f56f6ee70ff73861849b4438
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sat Jul 21 18:31:23 2018 +0200

    I18n: Update translation kk (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 69be789e5ff36d64540254f1868dfd0339ae30a1
Author: Ivailo Panamski <ipanamski@gmail.com>
Date:   Wed Jul 18 18:30:58 2018 +0200

    I18n: Update translation bg (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 900e04c7ff94d472b722ca667954f90299fa9758
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 16 18:31:43 2018 +0200

    I18n: Update translation fi (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 738032483f4501f3743a8cef3e169129b3e8c10c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Jul 15 15:52:38 2018 +0200

    Add support for xfce4-panel-profiles
    
    Just to be sure, we also take the old name of the executable,
    xfpanel-switch, into account.

commit 5340a0f80814635e84f7a31175bf5c17be861208
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jul 13 00:30:57 2018 +0200

    I18n: Update translation lt (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 77e579478473d923fcf6c05a50a403f046dcea99
Author: Tony Paulic <tony.paulic@gmail.com>
Date:   Thu Jul 5 00:27:59 2018 +0200

    Fix default size of new panels (Bug #14417)

commit aa0b79fafce3797715094dac636b5911dc042cc4
Author: Påvel Nicklasson <pavel2@frimix.se>
Date:   Mon Jul 2 18:31:35 2018 +0200

    I18n: Update translation sv (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2f1b367de2a8ce241c11d60de49b77dedd2af889
Author: Efstathios Iosifidis <iefstathios@gmail.com>
Date:   Wed Jun 27 12:31:09 2018 +0200

    I18n: Update translation el (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 980ac91288664d1175c52d337a90d178cf5b3479
Author: Nikola Radovanović <cobisimo@gmail.com>
Date:   Mon Jun 25 18:31:40 2018 +0200

    I18n: Update translation sr (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 74c39517c077ea321e16b86e2fb911c52028a74c
Author: Zmicer Turok <zmicerturok@gmail.com>
Date:   Sun Jun 24 00:31:21 2018 +0200

    I18n: Update translation be (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fc1218087862756240e9a504dcfef5f7930b2181
Author: Hsiu-Ming Chang <cges30901@gmail.com>
Date:   Tue Jun 19 18:31:09 2018 +0200

    I18n: Update translation zh_TW (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c007c9cdd0f6e2d870b57dffc39cb7b66005bec7
Author: Daniel Muñiz Fontoira <dani@damufo.com>
Date:   Sat Jun 9 12:31:34 2018 +0200

    I18n: Update translation gl (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit de100457814328b9a71de8117961b5eec375cc28
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Jun 6 22:37:48 2018 +0200

    Fix compilation

commit 19b14fe75720b4b2db54070af10042504edabe95
Author: Sean Davis <smd.seandavis@gmail.com>
Date:   Tue Jun 5 00:58:19 2018 +0200

    actions: Add support for dm-tool
    
    gdmflexiserver is no longer provided by LightDM.
    Use dm-tool if it is available.

commit d614f388b0202ae55377b1058d90381b226f4deb
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue May 29 00:09:27 2018 +0200

    panel-plugin: Try to fix crashes when removing plugins (Bug #14144)
    
    While one would expect the menu to be destroyed at this point, it seems
    not to be the case, so we try to handle it by removing all custom items
    from the menu.

commit 83e18ce649030b94d4c3bbff3e8271b1cfc57af2
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sat May 26 12:30:47 2018 +0200

    I18n: Update translation ko (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1865aa55106afbdb69d4c3ff73e043997ea18f4d
Author: Luna Jernberg <bittin@cafe8bitar.se>
Date:   Thu May 24 00:30:49 2018 +0200

    I18n: Update translation sv (99%).
    
    412 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 90fa227385e303c0163c1d9fe54fb0d784ffdd54
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Wed May 23 18:30:57 2018 +0200

    I18n: Update translation pt (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 68de42fbc7408cbfbc4bf53b546e5e1fe4cb3544
Author: Enrico B <enricobe@hotmail.com>
Date:   Sat May 19 18:30:49 2018 +0200

    I18n: Update translation it (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a2e9f1f24ab3d8ade20a01d4bc5ac9cfc23303bf
Author: Andre Miranda <andre42m@gmail.com>
Date:   Fri May 18 12:30:52 2018 +0200

    I18n: Update translation es (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6e5153fea4ce6f624fa8c1772310a81a40b1e2a2
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Thu May 17 06:30:53 2018 +0200

    I18n: Update translation pt_BR (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b84573cca4bc2cc8f899fea923752f35c8802fc8
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Wed May 16 12:30:57 2018 +0200

    I18n: Update translation ca (100%).
    
    414 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3dc74db98805b49958623d9f04715b091aa928c5
Author: Andre Miranda <andre42m@gmail.com>
Date:   Sat May 5 00:26:56 2018 -0300

    Make more former GtkStock strings translatable (Bug #14379)

commit 271e0ca8c0ef23ba541492444ea818cefadf15b4
Author: Besnik <besnik@programeshqip.org>
Date:   Fri May 4 18:30:41 2018 +0200

    I18n: Update translation sq (78%).
    
    324 translated messages, 90 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a8a3b83432b6d775441260b29a4fab410b12a908
Author: Jason Zaman <jason@perfinion.com>
Date:   Tue Apr 24 11:44:42 2018 +0800

    panel-base-window: fix mixed declaration warning
    
    panel-base-window.c: In function ‘panel_base_window_active_timeout_destroyed’:
    panel-base-window.c:584:3: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
       PanelBaseWindow        *window = PANEL_BASE_WINDOW (user_data);

commit aa6f9cb811ad00e55ea55db8665af4f59f4ed336
Author: Jason Zaman <jason@perfinion.com>
Date:   Tue Apr 24 11:39:41 2018 +0800

    panel-application: fix deprecated GdkScreen
    
    It only supported one GdkScreen so just get the default
    
    Signed-off-by: Jason Zaman <jason@perfinion.com>

commit 4e20bf33350d04056f1f101d65d03354b4abe3c2
Author: Jason Zaman <jason@perfinion.com>
Date:   Tue Apr 24 11:38:11 2018 +0800

    panel-plugin-external: fix deprecated GdkScreen and GdkColor
    
    port to GdkDisplay and GdkRGBA instead
    
    Signed-off-by: Jason Zaman <jason@perfinion.com>

commit 564fecd295618edb238dee98a57f954e85e7c1b3
Author: Jason Zaman <jason@perfinion.com>
Date:   Tue Apr 24 11:36:16 2018 +0800

    panel-preferences-dialog: port to GdkDisplay and GdkMonitor
    
    The code forced number of GdkScreens to 1 so remove deprecated dead
    code.

commit 719a0cca1a25acd54c02abbb08f093f0787d5bc9
Author: Jason Zaman <jason@perfinion.com>
Date:   Tue Apr 24 01:12:03 2018 +0800

    panel-window: There is only one GdkScreen per GdkDisplay, remove extras

commit 354ebfb3dd226439b2d8bef8198217f0c82c150d
Author: Jason Zaman <jason@perfinion.com>
Date:   Tue Apr 24 01:10:31 2018 +0800

    panel-window: set struts with monitor scaling

commit a09578bee5fda0d76ebbd39c889fa0f74046b455
Author: Jason Zaman <jason@perfinion.com>
Date:   Tue Apr 24 01:06:38 2018 +0800

    panel-window: gdk_device_grab port to gdk_seat_grab

commit a899b2993954501d20300b24fed9e3ee94e3da39
Author: Jason Zaman <jason@perfinion.com>
Date:   Tue Apr 24 01:02:36 2018 +0800

    panel-window: add GdkDisplay and port over depreciated GdkScreen

commit 9165ff0f32adeb6a0316d86e4a63f511412ce62d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri May 4 00:45:17 2018 +0200

    Back to development

commit 6d755c759af735b9659ff9a76003457f11206b70
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri May 4 00:36:52 2018 +0200

    Updates for release

commit f017232ee5a6f9fd9e49309b925ac0ae99c5ca47
Author: Andre Miranda <andreldm@xfce.org>
Date:   Fri May 4 00:29:28 2018 +0200

    clock: Improve discoverability of tooltip help-texts (Bug #11708)

commit 4dd56023c9a736c56fba1cf6884aa360da88e285
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue May 1 01:04:48 2018 +0200

    Make double-click add plugin in the "Add item" dialog (Bug #9784)

commit 8e673ec6f65d4990987db3a359fd1925a1e8c96b
Author: Balázs Meskó <meskobalazs@gmail.com>
Date:   Sun Apr 29 00:31:18 2018 +0200

    I18n: Update translation hu (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 79ace25a373efd89117e45203200b8eb0b4317ad
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Fri Apr 27 18:30:47 2018 +0200

    I18n: Update translation uk (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fdce84cc8dbc3292831254f81cae61dcec284be1
Author: Andre Miranda <andre42m@gmail.com>
Date:   Fri Apr 27 06:31:04 2018 +0200

    I18n: Update translation pt_BR (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b16400579975d71a42a1afb7a9c07a65fb00b07d
Author: John Humphrys <john.humphrys@pm.me>
Date:   Fri Apr 27 06:31:04 2018 +0200

    I18n: Update translation en_AU (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5f237b809a56fcebf22ad54e5aa7f0c2a08ab533
Author: abuyop <abuyop@gmail.com>
Date:   Thu Apr 26 06:30:48 2018 +0200

    I18n: Update translation ms (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 32154d27bcfd006d75741037b818915baf3c7424
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Wed Apr 25 18:30:50 2018 +0200

    I18n: Update translation he (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 42c5a5191bd73bc0a2e370df64f15d4533ebc328
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Apr 23 22:13:33 2018 +0200

    Make former GtkStock dialog buttons translateable (Bug #14338)
    
    This affects all plugin settings dialogs.

commit 005ea236a86ecfafd49c847d00f3f94ccdeac8ac
Author: Necdet Yücel <necdetyucel@gmail.com>
Date:   Mon Apr 23 00:30:54 2018 +0200

    I18n: Update translation tr (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d69b8071fa02b062e7ed057162c67868adb968f2
Author: Anonymous <noreply@xfce.org>
Date:   Sat Apr 21 18:30:42 2018 +0200

    I18n: Update translation da (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9001069c6439e7cb19c4c8e348891baf8a842c23
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Fri Apr 20 12:30:42 2018 +0200

    I18n: Update translation cs (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 78d13c6009bd254138fb5e60830573085160f5e0
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Fri Apr 20 06:30:40 2018 +0200

    I18n: Update translation zh_CN (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8f5a9f41d1380be1642ff381ebec4f2f350391d1
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 20 00:30:41 2018 +0200

    I18n: Update translation pl (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 614bd89456dc20c36d145079b6c54067b95bee88
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Fri Apr 20 00:30:40 2018 +0200

    I18n: Update translation nl (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 24576492ba1ad55d4da6a1a0536614ad58b2fa33
Author: Igor <f2404@yandex.ru>
Date:   Thu Apr 19 18:30:41 2018 +0200

    I18n: Update translation ru (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e2aa481618e922da678b7a8fc815184c6ba95095
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date:   Thu Apr 19 18:30:41 2018 +0200

    I18n: Update translation hr (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cb642aa265b0b3d43304e94f0e0977a41bcfbeea
Author: Charles Monzat <superboa@hotmail.fr>
Date:   Thu Apr 19 18:30:41 2018 +0200

    I18n: Update translation fr (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1e2175b0cb8fc828fad9198ba6430beab25a160c
Author: Vinzenz Vietzke <vinz@vinzv.de>
Date:   Thu Apr 19 18:30:41 2018 +0200

    I18n: Update translation de (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bb529c06c2396e38557762f891431e135260677b
Author: Anonymous <noreply@xfce.org>
Date:   Thu Apr 19 12:30:41 2018 +0200

    I18n: Update translation lt (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f4b563a0f6fe21eb1d015dd565725ea855e0a23d
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date:   Thu Apr 19 12:30:41 2018 +0200

    I18n: Update translation ja (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9c7830340d205360b332ed62dc786c736337ffd5
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Thu Apr 19 12:30:41 2018 +0200

    I18n: Update translation ca (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4d5192c4a7246f7c0cd367db54d5e4400fff5ffc
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Thu Apr 19 12:30:41 2018 +0200

    I18n: Update translation bg (100%).
    
    415 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a6bd44d8d4de549b06debb3a6ebb045bf3c00186
Author: Mario Rugiero <mrugiero@gmail.com>
Date:   Wed Apr 18 23:57:53 2018 +0200

    Correctly initialize return value (Bug #10873)

commit 41626aa6ca634e46aa0a3217a1054235d7f9745c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Apr 18 23:54:32 2018 +0200

    Fix spelling mistake (Bug #11835)

commit b11a9855bcd4bec699b4d1730faa0243ec52a0a6
Author: Andre Miranda <andre42m@gmail.com>
Date:   Tue Apr 17 12:33:32 2018 -0300

    Make a couple of strings translatable (Bug #14338)

commit ad89459796d2a95c42df65968368bc51fae6f438
Author: Anonymous <noreply@xfce.org>
Date:   Wed Apr 18 00:30:41 2018 +0200

    I18n: Update translation pl (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 289d31df6481c1b6e2020bc0159da42b7bd610a6
Author: Andre Miranda <andre42m@gmail.com>
Date:   Tue Apr 17 18:30:40 2018 +0200

    I18n: Update translation pl (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 815beef5a6f1caefc2d26aa9052b9ff150208c33
Author: John Humphrys <john.humphrys@protonmail.com>
Date:   Fri Apr 6 06:31:26 2018 +0200

    I18n: Update translation en_AU (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 964e8ce011c1d142be6744c826528dfb34287faa
Author: Emanuele Petriglia <inbox@emanuelepetriglia.me>
Date:   Sat Mar 31 12:30:53 2018 +0200

    I18n: Update translation it (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c5e59cb2e28568629d62d5485ce97e9711b3ad84
Author: Viktor Semykin <thesame.ml@gmail.com>
Date:   Wed Mar 28 13:17:13 2018 -0500

    Get the actual widget state flags to avoid constant redraws (Bug #14307)
    
    In Gtk+3 default state for CSS context style is GTK_STATE_FLAG_DIR_LTR
    so every call to gtk_style_context_get_color with GTK_STATE_NORMAL
    changes its state internally and results in a redraw. By querying
    the state we avoid these useless CPU cycles.

commit 72be2b1ef798bcb5673ed45c5368955fb94974d4
Author: Zmicer Turok <zmicerturok@gmail.com>
Date:   Thu Mar 22 00:30:56 2018 +0100

    I18n: Update translation be (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ff15aa9d8ee35df780fd1238fd68ad6778648172
Author: Сяргей Снапкоўскі <sirozass@outlook.com>
Date:   Wed Mar 21 18:31:04 2018 +0100

    I18n: Update translation be (99%).
    
    408 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7c605301ac6454e92bd898b677a2d1e824af3a60
Author: Emanuele Petriglia <inbox@emanuelepetriglia.me>
Date:   Sun Mar 18 18:31:00 2018 +0100

    I18n: Update translation it (99%).
    
    409 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a3a4e24c48e35cee4597dfc7c8751738cef56ee9
Author: Πέτρος Σαμαράς <psamaras1@gmail.com>
Date:   Sun Mar 18 18:31:00 2018 +0100

    I18n: Update translation el (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 88bad509b15bff0e974963209e93920cabae64e0
Author: Charles Monzat <superboa@hotmail.fr>
Date:   Thu Mar 15 18:30:47 2018 +0100

    I18n: Update translation fr (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cc3cde9262c29a526f4a9b5f82ca55f32037029a
Author: Erlend Østlie <erlendandreas12368@gmail.com>
Date:   Mon Mar 12 18:30:59 2018 +0100

    I18n: Update translation nb (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 289af8856adc2f2792345963702f77c08ad42c17
Author: Pasi Lallinaho <pasi@shimmerproject.org>
Date:   Thu Mar 8 18:31:24 2018 +0100

    I18n: Update translation fi (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0508e617a6ccf4d3e2d6b2d8c30ff5085f0861bc
Author: Pasi Lallinaho <pasi@shimmerproject.org>
Date:   Thu Mar 8 12:31:00 2018 +0100

    I18n: Update translation fi (98%).
    
    406 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit df3ebdf1c4ba13e2039fb0427616652fb6cdca33
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Sat Mar 3 18:31:06 2018 +0100

    I18n: Update translation hr (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 020802d417277fd5d08fbaf0831dd7d49be12e7d
Author: Πέτρος Σαμαράς <psamaras1@gmail.com>
Date:   Sat Feb 24 18:31:46 2018 +0100

    I18n: Update translation el (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0af00dbd8f4649924a4b10245f9132ce28a89460
Author: samson <sambelet@yahoo.com>
Date:   Fri Feb 23 06:30:51 2018 +0100

    I18n: Update translation am (72%).
    
    300 translated messages, 112 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bb4700f85978a3fa4dbd852a3157dfc9fcd1e4ec
Author: samson <sambelet@yahoo.com>
Date:   Fri Feb 23 00:30:55 2018 +0100

    I18n: Update translation am (70%).
    
    290 translated messages, 122 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f3d2c3146f45ab1f028332615e589bd75455ddde
Author: Jiri Grönroos <jiri.gronroos@iki.fi>
Date:   Mon Feb 19 18:30:57 2018 +0100

    I18n: Update translation fi (98%).
    
    405 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 169ad143e4cb13365bcc6100191dfd2d5974060c
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Thu Feb 15 12:30:57 2018 +0100

    I18n: Update translation ca (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0dff48be939c4f6c7a0f296f12056ed12b68a094
Author: samson <sambelet@yahoo.com>
Date:   Wed Feb 14 06:31:12 2018 +0100

    I18n: Update translation am (70%).
    
    289 translated messages, 123 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 19cc863705c8dcc28e7c65ff0012be2db3d87279
Author: samson <sambelet@yahoo.com>
Date:   Wed Feb 14 00:30:56 2018 +0100

    I18n: Update translation am (68%).
    
    284 translated messages, 128 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 02fd7f7b7edb9c2563ac285dbdb4c2f530c201e1
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Mon Feb 12 12:30:54 2018 +0100

    I18n: Update translation ca (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b1efeadb1eefbf43b35f6ffe89010a11f904d9e7
Author: samson <sambelet@yahoo.com>
Date:   Mon Feb 12 06:30:49 2018 +0100

    I18n: Update translation am (62%).
    
    258 translated messages, 154 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f08b586180f909e801bc51c010587c263bc5e5ef
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Tue Jan 16 00:31:25 2018 +0100

    I18n: Update translation uk (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ce03fdba54b8a9c814ef4c0149f4ead78c8ee6c5
Author: Xosé <xosecalvo@gmail.com>
Date:   Sun Jan 14 00:31:22 2018 +0100

    I18n: Update translation gl (98%).
    
    405 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f179b1438d57ae7e13b5c0f6baf52c06ab899207
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jan 4 23:26:28 2018 +0100

    Fix remaining deprecated icon names

commit f8441b8bfa4c945293f4def5cfd9a3591f79d8d4
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Jan 3 22:24:47 2018 +0100

    launcher: Fix resizing of pixbuf based icons (Bug #14138)

commit 9c2416cdb240ae174f14d6f03f2ebf44ebab4f8c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Jan 3 15:41:30 2018 +0100

    Move "Separator" to the top of the "Add New Items..." menu (Bug #14086)
    
    This makes the separator more accessible, as this is one of the few plugins
    that you may want to add to a panel multiple times.

commit 7f6b708571bceec2e9ed86022fdbc211607fc542
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Jan 3 10:58:20 2018 +0100

    launcher: Make sure the appropriate icon size is used

commit 880f91a20d6c61df154aac44e2e6d76157162277
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Jan 3 01:37:02 2018 +0100

    launcher: Make sure icons are not oversize

commit cb568546debf9e3c44350356799f7d7fbc781fc3
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Jan 3 01:04:16 2018 +0100

    launcher: Fix empty button in remove launcher dialog (Bug #13962)

commit bffe11c318b8290a6be24330f0a516757ea1ca70
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Jan 3 00:56:37 2018 +0100

    Try to fix menu positioning with Gtk3.22
    
    Follow-up of patch 43dfa79865eed5948c62847b1d03a8010e13d9a2 and Bug #14135

commit 96b8a42da2134089b616569d6878735fe81d9cca
Author: Olivier Duchateau <duchateau.olivier@gmail.com>
Date:   Wed Jan 3 00:21:06 2018 +0100

    Use 'gdk_screen_is_composited' with Gtk3 (Bug #14128)

commit 5c007a74b773057bf26b16a58973fca4406b2295
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Jan 2 21:40:01 2018 +0100

    Fix Gtk+3 version in ifdef

commit 43dfa79865eed5948c62847b1d03a8010e13d9a2
Author: Olivier Duchateau <duchateau.olivier@gmail.com>
Date:   Tue Jan 2 15:10:15 2018 +0100

    Fix various warnings with Gtk3 (Bug #14135)
    
    * replace 'gtk_menu_popup' by 'gtk_menu_popup_at_pointer' or
            'gtk_menu_popup_at_widget'
    * 'gtk_dialog_set_alternative_button_order' is only for Gtk+ < 3.x
      (Bug #14129)

commit 983bcedfa712d804657cd10b779fbf36219deff7
Author: Olivier Duchateau <duchateau.olivier@gmail.com>
Date:   Mon Jan 1 11:23:47 2018 +0100

    Fix missing icons with Adwaita icon theme (Bug #14133)

commit 3e87296e7229f3e100b11ba29fb1c870a26fc9db
Author: Olivier Duchateau <duchateau.olivier@gmail.com>
Date:   Wed Dec 27 06:56:51 2017 +0100

    Switch to GtkIconTheme (Bug #14125)

commit 6a7056cebe2777883c9d5a9bdd709b20c5a97eb4
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Mon Jan 1 00:31:52 2018 +0100

    I18n: Update translation ca (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c3d6b3b5c78816481df4399038c22b99bfb6e628
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Fri Dec 22 12:31:21 2017 +0100

    I18n: Update translation sr (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8fc31a3276bde4756bc687acb42626733abf2018
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Fri Dec 22 06:30:49 2017 +0100

    I18n: Update translation zh_CN (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit aa40000f05f691539be175d036aa5c947e00e72a
Author: Necdet Yücel <necdetyucel@gmail.com>
Date:   Fri Dec 22 00:31:21 2017 +0100

    I18n: Update translation tr (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a7000fbeda9a8793818c0142dee35566296990c9
Author: Anonymous <noreply@xfce.org>
Date:   Tue Dec 19 12:31:54 2017 +0100

    I18n: Update translation fi (97%).
    
    403 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9d72e4b603e33e7ca3ee2dc4b3855868ba8801de
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Mon Dec 18 06:30:50 2017 +0100

    I18n: Update translation zh_CN (99%).
    
    410 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c9ebc5a6c7ebfa43b30e97415e4018561fa44a69
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Fri Dec 15 12:30:58 2017 +0100

    I18n: Update translation ca (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c0b575eef908f5365e7a6908a0a290979bf5ca78
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Thu Dec 14 00:31:06 2017 +0100

    I18n: Update translation ca (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1a36bffed0b4821632915855edb6e104f8d742a0
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Dec 13 23:45:09 2017 +0100

    Back to development

commit 9d0439ecf432d8aadb9d1ef8c0f4f7827f92fe7a
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Dec 13 23:38:48 2017 +0100

    Updates for development release

commit 940f9fe359071e21bc014f06b9938ec9ec6b545a
Author: Romain B <skunnyk@alteroot.org>
Date:   Mon Dec 11 13:42:02 2017 +0100

    Add missing functions to documentations
    
    - Also fix some typos in comments.

commit 7a98414d468ac09d80b8e4ac894bc053790d0145
Author: Romain B <skunnyk@alteroot.org>
Date:   Mon Dec 11 13:33:03 2017 +0100

    Correctly deprecate XfceHVBox in documentation
    
    - Print deprecated warnings in generated gtkdoc

commit efd6f94ed3af76c1dbf4034ee65bebdbabf86297
Author: Romain B <skunnyk@alteroot.org>
Date:   Mon Dec 11 13:15:49 2017 +0100

    Update documentation and add api versions
    
    - This way we can list deprecated and new functions by versions !

commit b8ac589041e7048977a49277f119ba0d9816864f
Author: Romain B <skunnyk@alteroot.org>
Date:   Mon Dec 11 12:47:17 2017 +0100

    Fix gtkdoc warnings
    
    - Introduced by gobject-introspection (https://wiki.gnome.org/action/show/Projects/GObjectIntrospection/Annotations#GTK-Doc_support)

commit 18139cccff9bea05e8db890c46306c6caf8b73f7
Author: abuyop <abuyop@gmail.com>
Date:   Wed Dec 13 18:31:36 2017 +0100

    I18n: Update translation ms (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ff878043fb1763b9912d3682d6aae3388fc52f14
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Sun Dec 10 18:30:49 2017 +0100

    I18n: Update translation ca (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 84b7b024f9a7f2e8ff81db3df3a0aed429c59846
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Fri Dec 8 18:31:30 2017 +0100

    I18n: Update translation pt (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5eb5463bad87a64933ecf68297eaebe931f9ed57
Author: Andre Miranda <andre42m@gmail.com>
Date:   Thu Dec 7 06:31:22 2017 +0100

    I18n: Update translation pt_BR (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 835e1e3bdff9f8afa846c93f6a812af21d83f45a
Author: Andi Chandler <andi@gowling.com>
Date:   Thu Dec 7 00:31:37 2017 +0100

    I18n: Update translation en_GB (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 776fc7aef72efdc67a08e31ff613781536ce7157
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date:   Mon Dec 4 12:31:17 2017 +0100

    I18n: Update translation th (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 628624b41908eb70264b4ea491394834af5783ef
Author: Romain B <skunnyk@alteroot.org>
Date:   Mon Nov 27 22:49:44 2017 +0100

    Fix make distcheck (But #14040)
    
    - distcheck is broken since the introduction of vala binding generation.
    - We don't need to generate them on release tarball, we only need to
    provide the necessary files
    - Disable vala in DISTCHECK_CONFIGURE_FLAGS

commit d1137215b2c6a2eb63b7ecb9230baf7e3d879a4f
Author: Anonymous <noreply@xfce.org>
Date:   Tue Nov 28 00:31:44 2017 +0100

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2427d35e4358029ed22d1cfee9dd1c3754f46f60
Author: Masato HASHIMOTO <cabezon.hashimoto@gmail.com>
Date:   Sun Nov 26 12:30:47 2017 +0100

    I18n: Update translation ja (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 989d654b5d6b33e1c4127c740c806420a30b45a4
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Nov 26 01:15:17 2017 +0100

    clock: Fix format validation (Bug #11527)
    
    The insert-text signal is ok for validating before the user input.
    As we want to validate the complete string we use the changed signal
    instead, because it is emitted after the user input.

commit 448ba21e90b1bf42931eb16bf5ce499abccb5cfe
Author: Arve Eriksson <031299870@telia.com>
Date:   Wed Nov 22 00:30:53 2017 +0100

    I18n: Update translation sv (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 752450ae650fed5d966a73a1ee9351b2501b6a77
Author: Tobias Bannert <tobannert@gmail.com>
Date:   Tue Nov 21 18:30:48 2017 +0100

    I18n: Update translation de (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4dcaf920997ab96220a3be49d447499075d46940
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Tue Nov 21 00:30:53 2017 +0100

    I18n: Update translation he (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 87dcf1280cb5b145cf66ed1c66243f4dbeef199e
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Tue Nov 21 00:30:52 2017 +0100

    I18n: Update translation cs (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0f971eb9cd5e1a531d1c3d58bee9a28279dc2d44
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date:   Mon Nov 20 12:30:49 2017 +0100

    I18n: Update translation ja (99%).
    
    410 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 76cf855122cfdd05b1a7ac98efcb408990053100
Author: Allan Nordhøy <epost@anotheragency.no>
Date:   Mon Nov 20 06:30:48 2017 +0100

    I18n: Update translation nb (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0912ca34c90c36356a38c85be4aef9f9c2d8e555
Author: Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] <prflr88@gmail.com>
Date:   Mon Nov 20 06:30:47 2017 +0100

    I18n: Update translation es (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 72a6149393c3e71c6de89449328da1efea800147
Author: Dušan Kazik <prescott66@gmail.com>
Date:   Sat Nov 18 18:30:49 2017 +0100

    I18n: Update translation sk (99%).
    
    411 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 64331520ddd1748e99a3267dcaf198d72dbaca5a
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Fri Nov 17 18:32:07 2017 +0100

    I18n: Update translation kk (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 171b4efa58a6483667cae8ef26f2ec925a64376d
Author: Anonymous <noreply@xfce.org>
Date:   Fri Nov 17 18:32:06 2017 +0100

    I18n: Update translation da (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e9c3718f6fe66c6aac6c847eb4f3f84e5fc5ba36
Author: Jeff Huang <s8321414@gmail.com>
Date:   Fri Nov 17 12:30:49 2017 +0100

    I18n: Update translation zh_TW (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d01cdc9111c77c964ec6303f98f661e7cf4769c2
Author: Igor <f2404@yandex.ru>
Date:   Thu Nov 16 18:30:50 2017 +0100

    I18n: Update translation ru (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7bb81ec4fc10e7736b7fec9a9493876baa423619
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Thu Nov 16 18:30:50 2017 +0100

    I18n: Update translation nl (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 97bc00225c03cf0f2084e8fd59a45b4997d34220
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date:   Thu Nov 16 12:30:51 2017 +0100

    I18n: Update translation hr (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b3fb539e98bd5effe4b87df64b003153babbc4af
Author: 박정규(Jung-Kyu Park) <bagjunggyu@gmail.com>
Date:   Thu Nov 16 06:30:49 2017 +0100

    I18n: Update translation ko (100%).
    
    412 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a25624c894e93e1ff354f597975639ef0c2822c2
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Nov 16 00:26:51 2017 +0100

    clock: Add a validator for digital custom formats (Bug #11527)

commit e43248058e67e1cf2725788c894616dc431458cd
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Nov 15 23:50:10 2017 +0100

    clock: Fix invalid datetime formats appearing in list (Bug #11527)
    
    Unfortunately some format specifiers don't seem to work in specific locales,
    as it was reported with Germand and %r. Now we simply don't show these formats
    in the default list of selections anymore, but they can still be set through
    custom formats (thus producing an empty clock widget). We would have to add
    a validator function for the gtkentry to completely fix this problem.

commit 5ab8e2ba2ddac3e13a44a94e11318e45070e23e8
Author: poma <pomidorabelisima@gmail.com>
Date:   Wed Nov 15 17:35:23 2017 +0100

    actions: Show Hybrid Sleep option (Bug #12771)
    
    i.e. "hibernate" and suspend the system.
    Hybrid Sleep support, here in the Xfce's panel - via Action Buttons,
    is dependent on Hybrid Sleep support in the Xfce's session manager:
    https://git.xfce.org/xfce/xfce4-session/commit/?id=37f681e6c203c0ad8837869ccef45d32a8489afd
    
    Hybrid Sleep initially only writes hibernation image to SWAP space,
    it does not power off the machine, as a whole Suspend To Disk (S4) does,
    it rather Suspend To RAM (S3).
    
    The benefit of this combination is pronto RESUME from S3,
    whilst in case of battery drained or interruptions in power supply of any kind,
    you ain't gonna lose your work.
    
    Hybrid Sleep is the feature of the Linux kernel.
    To test it directly via cli:
    echo suspend > /sys/power/disk ; echo disk > /sys/power/state
    
    However to make this feature work,
    both Suspend To RAM (S3) and Suspend To Disk (S4)
    must be provided by the hardware
    dmesg:
    ACPI: (supports ... S3 S4 ...)
    in working order.
    
    Furthermore Suspend To Disk (S4) requires a relatively simple configuration
    an appendix to kernel command line:
    resume=<path to resume partition>
    i.e. directive to utilize particular SWAP space
    man 7 dracut.cmdline
    
    Ref.
    https://www.kernel.org/doc/Documentation/power/swsusp.txt

commit 711d4a6d246da58835a0f02a1f1f156182b0bd24
Author: 박정규(Jung-Kyu Park) <bagjunggyu@gmail.com>
Date:   Tue Nov 14 18:32:48 2017 +0100

    I18n: Update translation ko (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7b563743b14914a074652a1e6db9949fcae294a0
Author: Kukuh Syafaat <syafaatkukuh@gmail.com>
Date:   Tue Nov 14 12:31:19 2017 +0100

    I18n: Update translation id (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7b6f620942f95ce636184006eebd8486c8b690ed
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Nov 12 00:11:48 2017 +0100

    actions: Fix GPtrArray usage (Bug #13981)
    
    This is a fix analogous to the ones for launcher and systray in
    commit fd4b03b165ba6e3110014216dc77468401237e4c

commit 617aa7c7b9056ede24607e3c95555653bfbeabc8
Author: Olivier Duchateau <duchateau.olivier@gmail.com>
Date:   Sun Sep 17 15:44:24 2017 +0200

    tasklist: Fix alignment of labels when orientation is changed (Bug #13864)

commit 6345387b168fd25240b1d025e277fb0ea4c7131e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Nov 1 11:00:15 2017 +0100

    launcher: Fix custom images

commit c0f71fedb751a76af0afb8d833c361d7dfa0f3ac
Author: Anonymous <noreply@xfce.org>
Date:   Wed Nov 1 00:30:48 2017 +0100

    I18n: Update translation da (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 81bc29e40dc74d1a3dfbb274d63245f292dd3398
Author: Christian Hesse <mail@eworm.de>
Date:   Sun Oct 29 00:40:37 2017 +0200

    Make "Automatic" the default selection in the panel config dialog
    
    If the property is not set in xfconf the panel will behave in automatic
    mode. Reflect this by selecting the corresponding setting in the dialog.

commit b8760e83aa06ac73ab5fb0065599cef8161edc91
Author: Πέτρος Σαμαράς <psamaras1@gmail.com>
Date:   Tue Oct 24 00:31:41 2017 +0200

    I18n: Update translation el (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a8222eb94cd7e15a561a8abdbc80df0ccc7ba7cd
Author: Πέτρος Σαμαράς <psamaras1@gmail.com>
Date:   Mon Oct 23 18:30:54 2017 +0200

    I18n: Update translation el (99%).
    
    404 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 589515347c797c10374ae1f39d694746707d91b0
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Oct 15 23:08:30 2017 +0200

    tasklist: Define cosmetic default padding for images (Bug #13865)
    
    This fixes themes like Adwaita looking fairly bad with no image padding
    in the tasklist items.

commit 35018324b980bf1905ce85291ff7099ce8df46b1
Author: Viktor Odintsev <ninetls@xfce.org>
Date:   Fri Sep 15 07:48:52 2017 +0300

    systray: Fix crash when systray is empty (Bug #13927)
    
    Gtk-ERROR **: GtkBox child XfceSystrayBox minimum width: -1 < 0 for height 1

commit e445b2fab57d43b72d34c69d81cf442acf707737
Author: Viktor Odintsev <ninetls@xfce.org>
Date:   Wed Sep 13 00:32:55 2017 +0300

    tasklist: Allow to hide label decorations (Bug #10546)

commit 3b9944fe6fabc3907a303a9cd4e1c3fdbf6b3af8
Author: Anonymous <noreply@xfce.org>
Date:   Mon Oct 9 00:31:11 2017 +0200

    I18n: Update translation lt (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d1c00cdec57a6e4a6d89c5ac565be3cb75e37f9a
Author: Påvel Nicklasson <pavel2@frimix.se>
Date:   Sun Oct 8 18:31:06 2017 +0200

    I18n: Update translation sv (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 991f427fe727c749107f52c675be9dd7f9b284e8
Author: Vinzenz Vietzke <vinz@vinzv.de>
Date:   Tue Oct 3 00:31:00 2017 +0200

    I18n: Update translation de (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c2a213fccb20497f7a9db19a74bc41d0ed6561d4
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 30 18:31:57 2017 +0200

    I18n: Update translation da (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bc13a8d17626f05ac65cd1f6448f266fad00c0d3
Author: Dušan Kazik <prescott66@gmail.com>
Date:   Sat Sep 30 12:31:18 2017 +0200

    I18n: Update translation sk (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e3b7c21e1c04441ef631aa4508a56ff6bbbef097
Author: Sr Aldeano <sraldeano@gmail.com>
Date:   Sat Sep 30 12:31:18 2017 +0200

    I18n: Update translation eu (97%).
    
    397 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0e9efde418a5b3aa4314adb44fe75049de628435
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 30 00:31:32 2017 +0200

    I18n: Update translation da (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7778caf54d380cf7c59aa12ec9ef40d0ef0ee273
Author: Anonymous <noreply@xfce.org>
Date:   Fri Sep 29 18:31:16 2017 +0200

    I18n: Update translation da (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 668f6e96ead41aba040f7dd234da4229bc091b96
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Tue Sep 26 12:30:52 2017 +0200

    I18n: Update translation zh_CN (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c52e62e194c6cf7787676d3f1f2ff911f8f58856
Author: Xfce Bot <transifex@xfce.org>
Date:   Sun Sep 24 00:35:52 2017 +0200

    I18n: Update translation ug (94%).
    
    385 translated messages, 23 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ba7f171c174ad693f12cc6f7249928f82b080430
Author: Xfce Bot <transifex@xfce.org>
Date:   Sun Sep 24 00:35:51 2017 +0200

    I18n: Update translation th (99%).
    
    407 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c56bf822806935e554fc7b6b04094c5fa07d2ed8
Author: Xfce Bot <transifex@xfce.org>
Date:   Sun Sep 24 00:35:51 2017 +0200

    I18n: Update translation sr (97%).
    
    399 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 45d2c0a8b15251fd984a5d9083e5e08e3ed4688a
Author: José Vieira <jvieira33@sapo.pt>
Date:   Sun Sep 24 00:35:51 2017 +0200

    I18n: Update translation pt (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 73488579fd778a85d675d78bdd934d5961bb5b8a
Author: Marcelo Tobias <marcelo.tobbias@gmail.com>
Date:   Sun Sep 24 00:35:50 2017 +0200

    I18n: Update translation pt_BR (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5a27af8b8cadc6e8312078523f1c67e4349bde40
Author: Anonymous <noreply@xfce.org>
Date:   Sun Sep 24 00:35:50 2017 +0200

    I18n: Update translation pl (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a2478b1fc4094ca06b4e201a26c4a1c29c8eab52
Author: Xfce Bot <transifex@xfce.org>
Date:   Sun Sep 24 00:35:50 2017 +0200

    I18n: Update translation oc (94%).
    
    387 translated messages, 21 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 394d482eb3038883d18ce8216cd83b7818105635
Author: Xfce Bot <transifex@xfce.org>
Date:   Sun Sep 24 00:35:49 2017 +0200

    I18n: Update translation it (99%).
    
    407 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8f9b9665febb5c70b3a62d4eb4bae66cc2d2399e
Author: Xfce Bot <transifex@xfce.org>
Date:   Sun Sep 24 00:35:49 2017 +0200

    I18n: Update translation id (99%).
    
    407 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 371ba890f21f34ebc23e3d9e8b0e2dd409de8bac
Author: Xfce Bot <transifex@xfce.org>
Date:   Sun Sep 24 00:35:49 2017 +0200

    I18n: Update translation hu (94%).
    
    387 translated messages, 21 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8fb3752153cd069a7f1c423a462333f8f19f2bdf
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Sun Sep 24 00:35:49 2017 +0200

    I18n: Update translation he (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 29e7ce592d405e479815aeeb3aa8bc94fbc6bf1a
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sun Sep 24 00:35:49 2017 +0200

    I18n: Update translation fr (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 51737c5a8907deabc25ea8d987b34034b9591cd7
Author: Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] <prflr88@gmail.com>
Date:   Sun Sep 24 00:35:48 2017 +0200

    I18n: Update translation es (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3c3ad6dd0c3a677bd180a34e7f750b2c8d875704
Author: Xfce Bot <transifex@xfce.org>
Date:   Sun Sep 24 00:35:48 2017 +0200

    I18n: Update translation en_AU (94%).
    
    387 translated messages, 21 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 23f707c1b1fcccbefefb7ae474f4516fe998d797
Author: Xfce Bot <transifex@xfce.org>
Date:   Sun Sep 24 00:35:48 2017 +0200

    I18n: Update translation ast (92%).
    
    376 translated messages, 32 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9e0ac5cbd4a97f296923e5333ab544bf876ffb35
Author: Xfce Bot <transifex@xfce.org>
Date:   Sun Sep 24 00:35:48 2017 +0200

    I18n: Update translation ar (99%).
    
    404 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 231ab639f8acf81f1e793823fbdae19ce0471a02
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sat Sep 23 00:30:38 2017 +0200

    I18n: Update translation kk (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4e97ea9561ffb45aa6085d5bb78605567c7712d1
Author: Necdet Yücel <necdetyucel@gmail.com>
Date:   Wed Sep 20 18:30:40 2017 +0200

    I18n: Update translation tr (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit eed79aa610c1c21c3ad43d3a0ca54e95310f09f4
Author: Jeff Huang <s8321414@gmail.com>
Date:   Wed Sep 20 00:40:09 2017 +0200

    I18n: Update translation zh_TW (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e844a309b1fb8ab1e920a58084ed6c329f006e05
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:09 2017 +0200

    I18n: Update translation zh_HK (94%).
    
    385 translated messages, 23 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1b4eb8240d51d1c59efae164a7357a81f0940607
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:08 2017 +0200

    I18n: Update translation zh_CN (99%).
    
    407 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d620666d0eae65be2e309f7fdad432c96cfd8fa3
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:08 2017 +0200

    I18n: Update translation vi (74%).
    
    302 translated messages, 106 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e83f0d43e7e38986c6933569c67e46ab938d99cc
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Wed Sep 20 00:40:08 2017 +0200

    I18n: Update translation uk (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 937acf3c7218aedbea065586fde2e3a78ec91149
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:08 2017 +0200

    I18n: Update translation ug (94%).
    
    385 translated messages, 23 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7294b1b5a042749d80280f4f98c52849cec7a651
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:08 2017 +0200

    I18n: Update translation tr (99%).
    
    407 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ef3e4921784b8c7feadb8bffe9c4bfcbc4b70a43
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:08 2017 +0200

    I18n: Update translation th (99%).
    
    407 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c000755143ed4c9f6d01526a693038536d19fbab
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:07 2017 +0200

    I18n: Update translation sv (99%).
    
    407 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit af57b745cee517c73147e909dc2b5989b1c25227
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:07 2017 +0200

    I18n: Update translation sr (97%).
    
    399 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 03e7669ca7a84e237f9e3d5631d982e55732858b
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:07 2017 +0200

    I18n: Update translation sk (99%).
    
    407 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9e6fd5e039dcafe7f29e29809cd615433245ddd6
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:06 2017 +0200

    I18n: Update translation si (68%).
    
    279 translated messages, 129 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 447470e0dce25213998c282aed66275bb1a36e19
Author: Igor <f2404@yandex.ru>
Date:   Wed Sep 20 00:40:06 2017 +0200

    I18n: Update translation ru (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4d8dc9fff3ab9e4861dea00e0fa33deb9df1d47e
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:06 2017 +0200

    I18n: Update translation ro (94%).
    
    386 translated messages, 22 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 103759a8c67ace179e55393bda1baf1415a8ffe7
Author: José Vieira <jvieira33@sapo.pt>
Date:   Wed Sep 20 00:40:06 2017 +0200

    I18n: Update translation pt (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7b6327ec18a0b631ba92479aed077bd3e9c3a81a
Author: Anonymous <noreply@xfce.org>
Date:   Wed Sep 20 00:40:06 2017 +0200

    I18n: Update translation pl (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 074c84ff1237a2ddf25d451dafc852940d8e6ab4
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:05 2017 +0200

    I18n: Update translation pa (64%).
    
    265 translated messages, 143 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 93549cc607adf959b2752f1d65da5570edeab21c
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:05 2017 +0200

    I18n: Update translation oc (94%).
    
    387 translated messages, 21 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit acac60ab97f67355a5f807919bc55df388da5b92
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:05 2017 +0200

    I18n: Update translation nn (94%).
    
    387 translated messages, 21 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e610cd787e713749a9bc7288e9cc477819ebf24e
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Wed Sep 20 00:40:04 2017 +0200

    I18n: Update translation nl (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e5722967f6fb5ead6fa481e7c766ec8a0dc77055
Author: Allan Nordhøy <epost@anotheragency.no>
Date:   Wed Sep 20 00:40:04 2017 +0200

    I18n: Update translation nb (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 29e87409e01aadfc735f2d164c0d1b9ec4626240
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:04 2017 +0200

    I18n: Update translation ms (99%).
    
    407 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 3157f9c920722ec77e3e8bd47ee155f5fdd086c3
Author: Anonymous <noreply@xfce.org>
Date:   Wed Sep 20 00:40:04 2017 +0200

    I18n: Update translation lt (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 6a9846fe4ed2280c0eeef975525b005cf8d0ca5d
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:03 2017 +0200

    I18n: Update translation kk (99%).
    
    407 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9253e319389154d4e17ba31e2bd3c0c0c134b061
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:03 2017 +0200

    I18n: Update translation it (99%).
    
    407 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cd71db952ec92ec93c422c47e94d729424657416
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:03 2017 +0200

    I18n: Update translation is (99%).
    
    407 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7e7d347deefbb8c1c54b0efa597ed766c32d563b
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:02 2017 +0200

    I18n: Update translation id (99%).
    
    407 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d56dd64e166bff7b36ff2b78f51ff8d31b11aa1c
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:02 2017 +0200

    I18n: Update translation hu (94%).
    
    387 translated messages, 21 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e7408a70dfa877a4ae0ddd57ed775e9b78250e51
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Wed Sep 20 00:40:02 2017 +0200

    I18n: Update translation hr (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 36410ba5b6d665de9ae43bfc46ac89581487d322
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:02 2017 +0200

    I18n: Update translation gl (95%).
    
    388 translated messages, 20 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b0486f833c8d5834fbbbe5df8f8b677e98d5a1ce
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Wed Sep 20 00:40:01 2017 +0200

    I18n: Update translation fr (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e10c41fabd53faa25a274fac1e5ab6337dbf595c
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:01 2017 +0200

    I18n: Update translation fi (94%).
    
    387 translated messages, 21 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5a1d86aeffaa6d11388d9ba28fb2a1bb63efef06
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:01 2017 +0200

    I18n: Update translation eu (94%).
    
    387 translated messages, 21 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5777f5afdc6253de1ca692df62d56d725b522fb1
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:01 2017 +0200

    I18n: Update translation et (84%).
    
    345 translated messages, 63 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 91a175ad027309f3e5dc2dc6b5446d1f3d4da769
Author: Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] <prflr88@gmail.com>
Date:   Wed Sep 20 00:40:00 2017 +0200

    I18n: Update translation es (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9aa6f14b501cb6e9121e2767fef55fec8cdf9978
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:00 2017 +0200

    I18n: Update translation en_GB (94%).
    
    385 translated messages, 23 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f9a5a2db5a8d3c445c8d7bf4385b1ebf191c367c
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:00 2017 +0200

    I18n: Update translation en_AU (94%).
    
    387 translated messages, 21 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 131f8ed580c227743652dfa86dd236ff7f07623b
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:00 2017 +0200

    I18n: Update translation el (97%).
    
    399 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 64bd6e080eb0a4ed45279a9259da7a1e78e2b1a2
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:40:00 2017 +0200

    I18n: Update translation de (99%).
    
    407 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 229fca5c1bc4a653305cf2fc190c6f1a78c263e0
Author: Anonymous <noreply@xfce.org>
Date:   Wed Sep 20 00:39:59 2017 +0200

    I18n: Update translation da (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f87aa169a537060e81127da07b2ba0e0da73a11f
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Wed Sep 20 00:39:59 2017 +0200

    I18n: Update translation cs (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4a664271601c71cb90292efb17543fb396c47e8e
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Wed Sep 20 00:39:59 2017 +0200

    I18n: Update translation ca (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0be3633b6aefd158cec522a74da788f5ed0389e2
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:39:59 2017 +0200

    I18n: Update translation bn (71%).
    
    290 translated messages, 118 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 0d35234db2bdfeef9617e317a39422329b990cef
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Wed Sep 20 00:39:59 2017 +0200

    I18n: Update translation bg (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 878b185d0285b8d851bc19cf02a319bee69e455f
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:39:59 2017 +0200

    I18n: Update translation ast (92%).
    
    376 translated messages, 32 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 025fbf2c7e8c4af05b6849d4d88b26a1e67a9ecd
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:39:59 2017 +0200

    I18n: Update translation ar (99%).
    
    404 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 20a17e5d75bc309e27d35250d557462e6487f12c
Author: Xfce Bot <transifex@xfce.org>
Date:   Wed Sep 20 00:39:58 2017 +0200

    I18n: Update translation am (56%).
    
    232 translated messages, 176 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 70c5b514de0b0d86109feb0bce81a2aaefc2d085
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Tue Sep 19 06:30:38 2017 +0200

    I18n: Update translation hr (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit aa9c6b5e5b8d4d07eb34b65114bc75ccb3bd56c5
Author: Anonymous <noreply@xfce.org>
Date:   Tue Sep 19 00:30:47 2017 +0200

    I18n: Update translation sl (99%).
    
    404 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4efb7c3af784031dd6a91cf032656f6a476acd32
Author: Marcelo Tobias <marcelo.tobbias@gmail.com>
Date:   Mon Sep 18 18:30:37 2017 +0200

    I18n: Update translation pt_BR (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 040b1cc8804eb3acf675e16bf3b295f3341ef010
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sat Sep 16 12:31:15 2017 +0200

    I18n: Update translation ko (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 09fc6ce8388b65304dc70ff687f9dd0915b50c53
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date:   Sat Sep 16 06:30:54 2017 +0200

    I18n: Update translation ja (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 802a38d5b3eaeb1abb29117a19f8912413f7e3bb
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Fri Sep 15 00:30:50 2017 +0200

    I18n: Update translation he (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f3fb776a9f6732f607ed80a3863a3343370878fa
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date:   Thu Sep 14 18:30:39 2017 +0200

    I18n: Update translation hr (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 27d014960b77a2a4aef225b06893bc47f235f06c
Author: Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] <prflr88@gmail.com>
Date:   Thu Sep 14 06:30:36 2017 +0200

    I18n: Update translation es (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 438d1138850cdb358385e7572aefb83ded095df4
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Thu Sep 14 00:31:51 2017 +0200

    I18n: Update translation uk (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 665c1049101a1ee40e214f10224edd4e9c2e22e8
Author: José Vieira <jvieira33@sapo.pt>
Date:   Thu Sep 14 00:31:51 2017 +0200

    I18n: Update translation pt (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 43ceeec89b1c82ea24e23c56179c8eb92ddad8c8
Author: Anonymous <noreply@xfce.org>
Date:   Thu Sep 14 00:31:51 2017 +0200

    I18n: Update translation da (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a747f65e5a9a95ffa2487ee53514d4fda9a070fb
Author: Unit 193 <unit193@ubuntu.com>
Date:   Wed Sep 13 17:15:05 2017 -0400

    Fix a few spelling mistakes

commit ca42838b6f396c5ffa01a37bb891341f517125e2
Author: Viktor Odintsev <ninetls@xfce.org>
Date:   Wed Sep 13 02:00:59 2017 +0300

    Pass socket id to D-Bus service to embed settings window (Bug #13854)

commit 9a62aeb0ab3954eaa7ff777b7435710e0500d280
Author: Igor <f2404@yandex.ru>
Date:   Wed Sep 13 18:32:00 2017 +0200

    I18n: Update translation ru (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 7dd5e7ec87b5cb55155b64b7055a90251ba8280e
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Wed Sep 13 18:32:00 2017 +0200

    I18n: Update translation nl (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e70b989a8c252d25fdad4fcf8817581e71a377a0
Author: Anonymous <noreply@xfce.org>
Date:   Wed Sep 13 18:32:00 2017 +0200

    I18n: Update translation da (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b33185903248b8f7bd1abfc0d3bd57fe6b52c9fd
Author: Anonymous <noreply@xfce.org>
Date:   Wed Sep 13 12:30:39 2017 +0200

    I18n: Update translation pl (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a01b1fb89eb54b938be91969193a77898948046a
Author: Allan Nordhøy <epost@anotheragency.no>
Date:   Wed Sep 13 12:30:39 2017 +0200

    I18n: Update translation nb (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 45754dfff095f23c8354ecdb01679060ff2767e7
Author: Anonymous <noreply@xfce.org>
Date:   Wed Sep 13 12:30:39 2017 +0200

    I18n: Update translation lt (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b3ba86d913a80e25b83a62d15f9db4c76d68e69e
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Wed Sep 13 12:30:39 2017 +0200

    I18n: Update translation fr (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f063aa1a655b34bbba857082d7087c1927151851
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Wed Sep 13 12:30:39 2017 +0200

    I18n: Update translation cs (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f62ede1cb2fecf6654831a38c82e022158dca097
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Wed Sep 13 12:30:39 2017 +0200

    I18n: Update translation ca (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4a3ba77a8c9941e10a0496ce38c09d1424633f8d
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Wed Sep 13 12:30:38 2017 +0200

    I18n: Update translation bg (100%).
    
    408 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5a5cce5244285507f33d02de7cdbbfdc9d1b1373
Author: Viktor Odintsev <ninetls@xfce.org>
Date:   Sat Jun 24 12:08:42 2017 +0300

    systray: Add option to display icons with square sizing (Bug #12093)

commit 272a59a2d521c42d5a139976ab1d0f9c025d1145
Author: José Vieira <jvieira33@sapo.pt>
Date:   Tue Sep 12 18:30:36 2017 +0200

    I18n: Update translation pt (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 53bd72f672a52b3bbc2c0a8374434201ee04789e
Author: Francesco Galizzi <f.galizzi92@gmail.com>
Date:   Mon Sep 11 12:30:38 2017 +0200

    I18n: Update translation it (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9d16eb5776003199036d1a3058243317baf13e9b
Author: José Vieira <jvieira33@sapo.pt>
Date:   Mon Sep 11 00:30:56 2017 +0200

    I18n: Update translation pt (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d03db6183e7e2ac0c84bd8f7c5cb3c6eda35d169
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Sun Sep 10 00:31:00 2017 +0200

    I18n: Update translation ca (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5540c854dad37204afffad2bc59fccae811c1fde
Author: dsafsadf <heneral@gmail.com>
Date:   Fri Sep 8 12:31:08 2017 +0200

    I18n: Update translation uk (99%).
    
    406 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 4f306be80aaadf931efe4b1fc21e3b42a3ff2ca0
Author: Sveinn í Felli <sv1@fellsnet.is>
Date:   Tue Sep 5 12:31:17 2017 +0200

    I18n: Update translation is (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c74d8fd8e029c596fe336eca362967b272ed1ba6
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date:   Sun Sep 3 12:30:55 2017 +0200

    I18n: Update translation th (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d3d92a62614119ee26d4a8bbd7bb143a889ef67a
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Tue Aug 29 06:32:33 2017 +0200

    I18n: Update translation pt_BR (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 5c900222aa7a80847f65208376a381751cf2d5a0
Author: Anonymous <noreply@xfce.org>
Date:   Thu Aug 24 00:30:35 2017 +0200

    I18n: Update translation lt (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a277f13bf907379529a8f9dce58aa291f1e41bea
Author: abuyop <abuyop@gmail.com>
Date:   Tue Aug 22 06:31:02 2017 +0200

    I18n: Update translation ms (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 9ff63cdaf60174b2ab313064a4c444ac6a95c178
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Mon Aug 21 00:30:35 2017 +0200

    I18n: Update translation ca (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit d768b1a6ff8ab285a9993180638b356e9bd694f5
Author: Olivier Duchateau <duchateau.olivier@gmail.com>
Date:   Mon Aug 14 19:21:27 2017 +0200

    clock: Use freedesktop.org compliant icon (Bug #13779)
    
    While it is a little odd to use a mimetype in this case, there is no
    alternative in the fd.org spec and the mimetype looks meaningful in most
    icon-themes.

commit 4de1909f476f394074470464e4088a347c3fdeff
Author: Viktor Odintsev <ninetls@xfce.org>
Date:   Sun Aug 20 15:47:12 2017 +0300

    systray: Don't lookup hash table for null keys (Bug #11929)
    
    This is a small regression of the implementation of reordering systray
    items, hence the same bug report is referenced.

commit c2fc42eb5debd536bdce6761eb685ac65e6335c8
Author: Stefan Berzl <stefanberzl@gmail.com>
Date:   Sun Aug 20 14:55:07 2017 +0200

    tasklist: Fix scrolling to cycle through open windows (Bug #13789)
    
    This patch also handles smooth scrolling.

commit 02039764b37dd16250078a329d4a6a6c16a54b6f
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Aug 19 22:15:42 2017 +0200

    Add vapigen to m4 folder

commit e2dbdf186e20402c7133bc0ed90d7b98f23a050e
Author: Vidar Haarr <vhaarr@gmail.com>
Date:   Mon Aug 7 20:50:12 2017 +0200

    GObject Introspection: Move header file location from vapi to gir

commit 353dfbb39b2c78376ff0f5da2b2599dddc0b90f4
Author: Vidar Haarr <vhaarr@gmail.com>
Date:   Mon Aug 7 18:26:37 2017 +0200

    GObject Introspection: Make sure valac finds the headers
    
    in libxfce4panel-2.0/libxfce4panel/libxfce4panel.h

commit 7c165d1cbda1b2116d90f78d385967b33cbac2d8
Author: Vidar Haarr <vhaarr@gmail.com>
Date:   Mon Aug 7 18:26:04 2017 +0200

    GObject Introspection: Prevent generating empty vala bindings

commit e2bd09a3412861981638a492f25e441b3242b3ba
Author: Vidar Haarr <vhaarr@gmail.com>
Date:   Mon Aug 7 18:25:45 2017 +0200

    GObject Introspection: Add libxfce4panel/libxfce4panel-2.0.vapi to gitignore

commit 3d6d1dd39864d013e96072ce63e8e0c4dfff9a2d
Author: Vidar Haarr <vhaarr@gmail.com>
Date:   Mon Aug 7 18:25:26 2017 +0200

    GObject Introspection: Add VAPIGEN for vala binding generation

commit 9ceea9bdfa3f7f2f028c2f46d4b52746dade6177
Author: Vidar Haarr <vhaarr@gmail.com>
Date:   Mon Aug 7 18:25:04 2017 +0200

    GObject Introspection: Hide warnings about potentially unportable defines
    
    Add -Wno-expansion-to-defined to libxfce4panel compiler flags, which
    hides warnings about #defines potentially not being portable.

commit 9f92321e4701a0fe79302f08652fc2a99bb34659
Author: Vidar Haarr <vhaarr@gmail.com>
Date:   Mon Aug 7 18:24:36 2017 +0200

    GObject Introspection: Include extra folders for GIR
    
    when compiling in a prefix environment

commit b65a8f024558a35c3c2e79e58db5a7294ba3e05d
Author: Vidar Haarr <vhaarr@gmail.com>
Date:   Mon Aug 7 18:23:51 2017 +0200

    GObject Introspection: Extend gitignore

commit 30346253c5fceb935671fc40e749a09bae80f3f7
Author: Vidar Haarr <vhaarr@gmail.com>
Date:   Mon Aug 7 18:23:26 2017 +0200

    GObject Introspection: Bump libxfce4util to 4.13.0
    
    to get the required introspection file.

commit c2782485af0457948be46e20bc7886947540b29c
Author: Eric Koegel <eric.koegel@gmail.com>
Date:   Sat Jun 24 16:56:42 2017 +0300

    Add initial support for GOBJECT-INTROSPECTION (Bug #13689)
    
    GOjbect Introspection allows various other languages to automatically
    generate bindings they can use. For details see:
    https://wiki.gnome.org/action/show/Projects/GObjectIntrospection

commit ed7ede9214b455024ddbf840781186221684eac6
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Aug 14 13:39:05 2017 +0200

    Back to development

commit 543b852878aaee31b345568ccdfa9f3b52e06cc2
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Aug 14 13:33:23 2017 +0200

    Updates for development release

commit a74bceaaa939aab6624130c3198f4a19862db2fa
Author: Piotr Strębski <strebski@gmail.com>
Date:   Wed Aug 2 18:30:35 2017 +0200

    I18n: Update translation pl (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 150354518547b4919ad7ccbd1a3d30d30dd172ac
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date:   Wed Aug 2 06:30:34 2017 +0200

    I18n: Update translation ja (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 21452b2a0cec4d7dcaef98a18152cffda484bc5d
Author: Anonymous <noreply@xfce.org>
Date:   Tue Aug 1 12:30:51 2017 +0200

    I18n: Update translation bn (71%).
    
    290 translated messages, 117 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit efac48a7945a442cde439775b86073f140348347
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Tue Jul 25 18:31:11 2017 +0200

    I18n: Update translation pt (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 86456c7b8576e7ccd8e7a9419b3a519233d0026a
Author: Necdet Yücel <necdetyucel@gmail.com>
Date:   Mon Jul 24 12:31:12 2017 +0200

    I18n: Update translation tr (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 73575dca85684e7b00cdb54b771a49eb16eb2f72
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jul 24 00:30:34 2017 +0200

    I18n: Update translation pl (99%).
    
    405 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a0e7da104248593003c9842fb90c03105779fa58
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jul 20 23:00:57 2017 +0200

    windowmenu: Fix icon size in menu

commit 4cfb1f81bfe8084ed7430817e37f32125d2417ae
Author: Ali Abdallah <ali@xfce.org>
Date:   Thu Jul 20 00:52:15 2017 +0200

    Prevent panel crash on unsupported GValues in PluginEvents
    
    A non supported gvalue that slips into PluginEvent causes the panel to crash,
    due to an assertion failure in the convertion between the GValue and the
    GVariant. So throw a warning instead.
    
    Example to trigger the crash
    dbus-send --session --type=method_call --print-reply \
    --dest='org.xfce.Panel' '/org/xfce/Panel' \
    'org.xfce.Panel.PluginEvent' string:whiskermenu \
    string:popup variant:byte:'a'
    
    Unless we want the conversion to handle all possible types,
    throwing just a warning instead of crashing is the good way to go.

commit 5e5f6120701bd9c028c8e34545933da85b50e6d7
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jul 20 00:23:58 2017 +0200

    Fix default settings xml of panel-2

commit e1c4d679b66067f5bcf92208c4da748d40e6e443
Author: Tobias Bannert <tobannert@gmail.com>
Date:   Wed Jul 19 18:30:57 2017 +0200

    I18n: Update translation de (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 2596199732633e0cf151ebc26e3bdb82c7514196
Author: Ali Abdallah <ali@xfce.org>
Date:   Mon Jul 17 14:54:01 2017 +0200

    Support for basic gtype to gvariant conversion in wrapper_gvalue_prop_to_gvariant

commit 475af41a0afd748cc40611ecb5128089f716e13f
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Thu Jul 13 06:30:47 2017 +0200

    I18n: Update translation kk (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 98d67cfb5d3ed2818359628907a0ae3592869f6c
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 13 00:30:51 2017 +0200

    I18n: Update translation uk (99%).
    
    405 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit fbd01a67ec8ffb94d129ed05ef0e044d3c716c99
Author: Andre Miranda <andre42m@gmail.com>
Date:   Thu Jul 13 00:30:51 2017 +0200

    I18n: Update translation pt_BR (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b3b09080efeff55b4fef2b11786037ea944f1aeb
Author: adrien vigneron <adrienvigneron@ml1.net>
Date:   Tue Jul 11 18:30:43 2017 +0200

    I18n: Update translation fr (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit cef8f2b7633c7520c4b83982f9b5c2310ebabbfa
Author: 박정규(Jung-Kyu Park) <bagjunggyu@gmail.com>
Date:   Mon Jul 10 06:30:42 2017 +0200

    I18n: Update translation ko (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit bf8fbc02aea5fc7e2f976da3efea08c9f199fe07
Author: Pablo Roberto “Jristz” Lezaeta Reyes <prflr88@gmail.com>
Date:   Mon Jul 10 00:30:42 2017 +0200

    I18n: Update translation es (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit f82b4150292ef1d89a734be2db1a1d382c528d09
Author: Anonymous <noreply@xfce.org>
Date:   Sun Jul 9 18:30:47 2017 +0200

    I18n: Update translation ar (99%).
    
    404 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e10a1b0d09496f3fa049f33a3c1cccfd2f21adcb
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Sun Jul 9 06:30:48 2017 +0200

    I18n: Update translation zh_CN (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit adc8de2254a4ec082e0e22de79b0324b8140dbcf
Author: Allan Nordhøy <epost@anotheragency.no>
Date:   Fri Jul 7 06:30:42 2017 +0200

    I18n: Update translation nb (99%).
    
    405 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b4a60e6b18dc8096b72553f691486df9765247be
Author: Kukuh Syafaat <syafaatkukuh@gmail.com>
Date:   Thu Jul 6 12:30:39 2017 +0200

    I18n: Update translation id (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit b76319e10f86d55ba31d5dbbc31c3379accccc35
Author: Allan Nordhøy <epost@anotheragency.no>
Date:   Thu Jul 6 06:30:34 2017 +0200

    I18n: Update translation nb (99%).
    
    404 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 327ba0be15656e8940d406c142c627c38c4a78c6
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Wed Jul 5 18:30:38 2017 +0200

    I18n: Update translation he (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 1de70490ef813cf7c5cca940f4cbc48b403c8c01
Author: Edin Veskovic <edin.veskovic@openmailbox.org>
Date:   Wed Jul 5 12:30:34 2017 +0200

    I18n: Update translation hr (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 89a74600c1d5fe3c9c91fd7ef14cc6150d35300a
Author: Påvel Nicklasson <pavel2@frimix.se>
Date:   Wed Jul 5 00:30:47 2017 +0200

    I18n: Update translation sv (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c16dba722f9c134e8bb9d198ef522a73c16a4a1e
Author: Igor <f2404@yandex.ru>
Date:   Wed Jul 5 00:30:47 2017 +0200

    I18n: Update translation ru (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 075a85dece34ddfedb455e07971e66dde77072c0
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 4 18:30:35 2017 +0200

    I18n: Update translation da (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ecb3aa80fd0f15861efd43d057fccf9a89205d12
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Tue Jul 4 18:30:35 2017 +0200

    I18n: Update translation ca (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 85a6295a92618b374af9fd16b0eaf9df101f5b47
Author: Dušan Kazik <prescott66@gmail.com>
Date:   Tue Jul 4 12:34:39 2017 +0200

    I18n: Update translation sk (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit ec9857adbacc94bdde18bb23eeef15f080a82816
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Tue Jul 4 12:34:39 2017 +0200

    I18n: Update translation nl (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit c89bcba23fbab3f99ad0dd95eb00900dcc0b84ad
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 4 12:34:38 2017 +0200

    I18n: Update translation lt (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e0dbe35c47ee48da9b71b634268b8af7686a3318
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Tue Jul 4 12:34:38 2017 +0200

    I18n: Update translation cs (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 614d765299454ada36cd10f9118b9578c8f613b1
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Tue Jul 4 12:34:38 2017 +0200

    I18n: Update translation bg (100%).
    
    407 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a4adbb4dd9ef259e5dce0a7307ae594a065aae08
Author: Ali Abdallah <ali@xfce.org>
Date:   Mon Jul 3 12:16:26 2017 +0200

    Fix remote_event for both internal and external plugins

commit d16addd2f05975dbd51a60aa4855815e09cc30ab
Author: Ali Abdallah <ali@xfce.org>
Date:   Fri Jun 30 23:07:49 2017 +0200

    Add missing parenthesis in the wrapper dbus remote event variant type

commit 6b9b5325a2db36648573e4ad92a9294ab300c558
Author: Ali Abdallah <ali@xfce.org>
Date:   Thu Jun 29 22:02:16 2017 +0200

    Fix GVariant handling in the external wrapper
    
    The GValue in wrapper_remote might already hold a GVariant,
    so use it for the signal params. Also correctly send the guint handler.

commit 9bc565c9a30fee9a3bf595c735d19e671ab195a5
Author: Ali Abdallah <ali@xfce.org>
Date:   Thu Jun 29 10:28:35 2017 +0200

    Only load panel when we acquire bus name

commit 28fba673319798202a1edaf15b8cdc0f6b8adaa1
Author: Ali Abdallah <ali@xfce.org>
Date:   Thu Jun 29 09:15:53 2017 +0200

    Fix RemoteEvent signal on both panel and wrapper side

commit e946cf26899d8ecff2b5c52bac4436cef7ec15c7
Author: Ali Abdallah <ali@xfce.org>
Date:   Wed Jun 28 23:45:02 2017 +0200

    Remove remaining dbus-binding-tool Makefile.am rule

commit 9b75cf62e44674808d1dbeff65cd745707519b77
Author: Ali Abdallah <ali@xfce.org>
Date:   Wed Jun 28 20:41:47 2017 +0200

    Fix panel to wrapper signals
    
    By mistake signals emitted by the panel were bound to the panel name itself,
    thus not reaching the plugin wrappers.
    
    Also fix signal gvariant signatures.

commit 2de3bfd7056da3ec3ced02784ef12f6f7f795a46
Author: Ali Abdallah <ali@xfce.org>
Date:   Tue Jun 27 21:25:57 2017 +0200

    Send dummy arguments for add_new_item dbus method
    
    When no arguments are given this helps avoid a crash on g_variant_new_strv.

commit a02438858352edf4c7453fceef32141a8fd08df6
Author: Ali Abdallah <ali@xfce.org>
Date:   Tue Jun 27 21:12:44 2017 +0200

    In show preferences via D-Bus the socket param is not required anymore

commit 765ceeb4927235b65c8c1e2eb3a2f6537362e4ae
Author: Ali Abdallah <ali@xfce.org>
Date:   Tue Jun 27 21:12:24 2017 +0200

    Bump xfconf dependency version to 4.13.2

commit 7c170c5a952d3f3a420cbd81d931d464cfc060c5
Author: Ali Abdallah <ali@xfce.org>
Date:   Tue Jun 27 21:00:27 2017 +0200

    Fix plugin_event variant signature

commit fd4b03b165ba6e3110014216dc77468401237e4c
Author: Ali Abdallah <ali@xfce.org>
Date:   Sun Jun 25 13:38:30 2017 +0200

    Fix GPtrArray usage in launcher and systray
    
    For some properties, the launcher and systray plugins use a GPtrArray.
    In their _get_property, they set the array to the value using g_value_set_boxed,
    followed by a call to xfconf_array_free, which calls g_value_unset, g_free on each
    array's values and at the end a call to g_ptr_array_free.
    
    This results in xfconf_channel_set_property getting an array with length 0, making
    the preparation of the GVariant fails (xfconf_gvalue_to_gvariant).
    
    This is fixed in both plugins, by using a g_ptr_array_new_full, setting the boxed value
    and releasing the reference count of the array, the array's values are later destroyed
    by the (GDestroyNotify) function. No idea why it worked before with xfconf < 4.13.0.

commit 71b7e4224ae8cc60f2bf42f9fbfffc6cfac18971
Author: Ali Abdallah <ali@xfce.org>
Date:   Fri Jun 23 13:44:56 2017 +0200

    Get rid of more dbus-glib cflags and libs

commit a386a6e1b1ce814fcc587ab1a0bb47261fbbd0f3
Author: Ali Abdallah <ali@xfce.org>
Date:   Fri Jun 23 13:43:45 2017 +0200

    Fix signal disconnecting
    
    Use -1 as a default timeout for the wrapper.

commit cae0fd3be52c29a4998ef9afb5f4b85106f94461
Author: Ali Abdallah <ali@xfce.org>
Date:   Fri Jun 23 13:43:12 2017 +0200

    Port panel actions plugin to gdbus

commit c157851e61b5deb3785b81135d0710358d2bbc51
Author: Ali Abdallah <ali@xfce.org>
Date:   Fri Jun 23 13:41:47 2017 +0200

    Fix PanelDBusService GType

commit f8ea3f1a466f493ba663b6200f94501d4db3db2d
Author: Ali Abdallah <ali@xfce.org>
Date:   Fri Jun 23 13:40:34 2017 +0200

    Use correct G_VARIANT_TYPE_TUPLE instead of G_VARIANT_TYPE("a(uv)")

commit d3a6a546c83b1489b87087b0fd68bbcb0598118b
Author: Ali Abdallah <ali@xfce.org>
Date:   Thu Jun 22 13:51:07 2017 +0200

    Remove obsolete PANEL_PROPERTIES_TYPE_VALUE_ARRAY
    
    PANEL_PROPERTIES_TYPE_VALUE_ARRAY is obsolete dbus_g_type_collection.
    This makes the panel compatible with libxfconf >= 4.13.1, for this XDT_CHECK_PACKAGE
    for libxfconf has been bumped to the required version.

commit 47310591f521fbf6d60a9c30064c6acb49f3437c
Author: Ali Abdallah <ali@xfce.org>
Date:   Thu Jun 22 13:49:16 2017 +0200

    Get rid of dbus-glib libs and cflags

commit 81af574435bd3d04d395a19e8db3e059111481d2
Author: Ali Abdallah <ali@xfce.org>
Date:   Thu Jun 22 13:48:07 2017 +0200

    Acquire org.xfce.Panel on startup using gdbus API

commit b77bac758b2ae7adc19c6eeeb7bd76155ba538ff
Author: Ali Abdallah <ali@xfce.org>
Date:   Thu Jun 22 11:59:29 2017 +0200

    Plugin Wrapper ported to gdbus

commit c3d56227fb0882f389d6a026973efddea08efb10
Author: Ali Abdallah <ali@xfce.org>
Date:   Wed Jun 21 18:50:09 2017 +0200

    Port the external plugin wrapper to GDBus

commit f590e705122ef85f55093fbc7df5c82a662b9c7a
Author: Ali Abdallah <ali@xfce.org>
Date:   Wed Jun 21 18:48:24 2017 +0200

    Fix panel_return_if_fail call
    
    Use is_exported instead of is_owned for the exported dbus interface.

commit 6778d620c5f9f1849ba5064903dd5433ce89600f
Author: Ali Abdallah <ali@xfce.org>
Date:   Wed Jun 21 08:48:16 2017 +0200

    Port the panel dbus service to gdbus

commit a8def839a0ce84285cb6c9fed82d96ec6f1ea20d
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 1 18:31:01 2017 +0200

    I18n: Update translation lt (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 632c01742151233a040b8acb086f384567323ff6
Author: Slavko <linux@slavino.sk>
Date:   Sat Jul 1 12:30:39 2017 +0200

    I18n: Update translation sk (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit e5a6beb27c02da60f4869c586c7ea4e0856393cc
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 1 12:30:39 2017 +0200

    I18n: Update translation lt (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 19401261c6aa6313b2fe8a790fbe1ee3f57cc6f1
Author: jc1 <jc1.quebecos@gmail.com>
Date:   Sat Jul 1 00:30:47 2017 +0200

    I18n: Update translation fr (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 8aa5a79ed2c7b18150eefa8180ee90cf5a9f925e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jun 30 23:03:29 2017 +0200

    Fix plugin crash dialog buttons

commit e64f7aa71f7a2bc32bd3d1b539780c41ad35e5cd
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Thu Jun 29 18:30:35 2017 +0200

    I18n: Update translation zh_CN (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit 08733fdf26dba4e806a44607948eab4101165710
Author: Tobias Bannert <tobannert@gmail.com>
Date:   Wed Jun 28 18:30:34 2017 +0200

    I18n: Update translation de (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/xfce/public/).

commit a349f25dc64254a9300a26bb8a275760dd51eecc
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Jun 27 21:24:18 2017 +0200

    Add typecast to silence a compiler warning

commit b3ccde3fc444a4f590574e24c0f7fdce8e6aaf17
Author: Peter de Ridder <peter@xfce.org>
Date:   Tue Jun 27 20:07:25 2017 +0200

    Fix DND between external plugins (Bug #13687)
    
    Refrain from registering the XdndAware Atom to not let GtkSocket proxy
    the DND but instead let the application handle it.

commit 699b3cff7a3b5b4540bf8c0c190bc44d172a666f
Author: Pablo Roberto “Jristz” Lezaeta Reyes <prflr88@gmail.com>
Date:   Tue Jun 27 12:30:35 2017 +0200

    I18n: Update translation es (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 443feb97733239a8ae8ac52a421f0f03485a0490
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Jun 25 22:48:34 2017 +0200

    systray: Fix typo "childeren"

commit 6e5e8f5f6130980a281e227657d8191493edc61b
Author: Viktor Odintsev <zakhams@gmail.com>
Date:   Fri Jun 23 09:01:00 2017 +0300

    systray: Allow ordering of items (Bug #11929)

commit 7a5c83087480b2b4a0854ce7fddd13f30e1a0885
Author: dsafsadf <heneral@gmail.com>
Date:   Sun Jun 25 00:30:35 2017 +0200

    I18n: Update translation uk (99%).
    
    404 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 7bec50f8e8575a186c97c9bdade1b7e3b0ac9d83
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Sat Jun 24 18:30:34 2017 +0200

    I18n: Update translation he (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f05f205f33c58d0a3ca03d466c435464b3ace100
Author: Charles Monzat <superboa@hotmail.fr>
Date:   Fri Jun 23 18:30:34 2017 +0200

    I18n: Update translation fr (99%).
    
    404 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d30662ad6d5ec370bb499cef3e24ebbcc06102f5
Author: Jeff Huang <s8321414@gmail.com>
Date:   Fri Jun 23 12:30:35 2017 +0200

    I18n: Update translation zh_TW (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 8b5bbca9721d8350b3abe980b891c32448b13eb7
Author: Ardjuna <Asyura.x@gmail.com>
Date:   Fri Jun 23 12:30:35 2017 +0200

    I18n: Update translation id (99%).
    
    404 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1632fe8b2b83215ec400bb649b6e7f4136065ec2
Author: Edin Veskovic <edin.veskovic@openmailbox.org>
Date:   Fri Jun 23 12:30:34 2017 +0200

    I18n: Update translation hr (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 70064f60a0923be4ebdd5373f092d44dafd9dbd7
Author: Andre Miranda <andre42m@gmail.com>
Date:   Fri Jun 23 06:30:46 2017 +0200

    I18n: Update translation pt_BR (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6026b44c2e86bbb95ab441f7997741bcd3f1e417
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jun 23 00:30:35 2017 +0200

    I18n: Update translation lt (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5eef9004bd9f52fed5025768487a057bf23eb134
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Fri Jun 23 00:30:35 2017 +0200

    I18n: Update translation cs (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b4ed995bc2764b107cdbb2870d051fb03ba57349
Author: Igor <f2404@yandex.ru>
Date:   Thu Jun 22 18:30:36 2017 +0200

    I18n: Update translation ru (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 2cb01de7a8e36b2f17a22a408ba1e340e7eebe32
Author: 박정규(Jung-Kyu Park) <bagjunggyu@gmail.com>
Date:   Thu Jun 22 18:30:36 2017 +0200

    I18n: Update translation ko (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 86e6ee7d552d5ba6934b721e77672cc11135d57a
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Thu Jun 22 18:30:36 2017 +0200

    I18n: Update translation kk (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6ed959e71a65f0d9d45d8c20cb1afe5d3e7959c9
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Thu Jun 22 18:30:35 2017 +0200

    I18n: Update translation fr (98%).
    
    401 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b08b94f8aed1cf0ea48153ff07aa1da09ab8deae
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jun 22 18:30:35 2017 +0200

    I18n: Update translation da (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e31fa76a601340a5702115804f2b8736278d47c3
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Thu Jun 22 18:30:35 2017 +0200

    I18n: Update translation cs (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 2b3d18bf17f070033f883c88e8b1ebf60bc47076
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Thu Jun 22 18:30:35 2017 +0200

    I18n: Update translation ca (99%).
    
    404 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit df162767b9190c7f09bd24edd7d1f784d5f106f2
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Thu Jun 22 12:30:35 2017 +0200

    I18n: Update translation nl (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 0e25b7b6c3dc1d6304fb5dac2639b8e3240c41bb
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Thu Jun 22 12:30:35 2017 +0200

    I18n: Update translation bg (100%).
    
    406 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5a54105b14e46bdace52917002267e97ebb21166
Author: Peter de Ridder <peter@xfce.org>
Date:   Wed Jun 21 23:44:10 2017 +0200

    Fix drag and drop for internal plugins (Bug #13642)
    
    Place the move signal in idle source, giving time to pop down.

commit 4ab55dd6baed42d8b4440a786fa5d28394721f30
Author: Max <python.max@gmail.com>
Date:   Wed Jun 21 23:49:58 2017 +0200

    systray: Fix alignment of single non-square items (Bug #9095)

commit 4de767e604c2fcd063282ef051c224b9e87661e7
Author: André Miranda <andreldm@xfce.org>
Date:   Wed Jun 21 22:58:11 2017 +0200

    clock: Make the default date and time format translatable (Bug #9637)

commit 830356520568220f9971f4a9ecf2347a61a0b137
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Jun 21 22:02:02 2017 +0200

    Remove more references to GtkStock (Bug #13528)

commit eaca5041ae4a37b772f48b258819ab06bc9da3d3
Author: Peter de Ridder <peter@xfce.org>
Date:   Mon Jun 19 21:06:35 2017 +0200

    Don't let the wrapper crash on unknown properties (Bug #13614)
    
    This will help with the transition and mixed panel version setups
    (libxfce4-panel, wrapper and the panel).
    Also move the OPACITY property to the end since it's new.

commit 6bb609e5f682e74a5ffcd05716a9e2f88fd2f3f3
Author: Anonymous <noreply@xfce.org>
Date:   Sun Jun 18 06:31:16 2017 +0200

    I18n: Update translation lt (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5b717b1e0b15bbae90c380228497db5ccb058197
Author: Christoph Wickert <christoph.wickert@gmail.com>
Date:   Fri Jun 16 18:30:51 2017 +0200

    I18n: Update translation de (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 01008b37737fb90617fc9722e9db66ddbe3fd110
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Jun 15 23:03:04 2017 +0200

    Set default panel-2 size of default settings
    
    This should fix an issue where the panel-2 is only 30px tall
    when its plugins think it is 48 (and also its settings seem to say
    that).

commit 0002aea58d02647a5ad3985190ff7f06a75724d0
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Jun 12 20:35:14 2017 +0200

    tasklist: Add styleclass to make life easier for themers
    
    Gtk3 themes can now easily style the window buttons plugin by using
    the .tasklist class.
    e.g. ".tasklist button { color: red; }"

commit 746d2a74e6f2e2ef09db7adb7f0c88ed1f308532
Author: Viktor Odintsev <zakhams@gmail.com>
Date:   Sun Jun 11 13:45:30 2017 +0200

    Fix Gtk3 XfceArrowButtons not blinking (Bug #13599)
    
    While we're messing with GtkStateFlags here, this may still be
    better than injecting custom CSS that may look inconsistent with
    themes or even not be very visible. See the bugreport for details.

commit 92fb7e3aab9e6fc047b420ffc36331405cd95a23
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Sat Jun 10 15:03:36 2017 +0200

    I18n: Update translation nl (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5217d0656affd1f3ce6a3156f99f0b959b70c6e8
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date:   Thu Jun 1 06:30:38 2017 +0200

    I18n: Update translation ja (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 18a9f030d25f4c9d22af1233ab6dff7ec897cf96
Author: Andre Miranda <andre42m@gmail.com>
Date:   Thu May 25 23:52:51 2017 -0300

    Correct enter and leave opacity label positions (Bug #13594)

commit f4e283dc78e869e453e4262bacc93f1aea36b8e1
Author: Olivier Duchateau <duchateau.olivier@gmail.com>
Date:   Thu May 25 19:30:07 2017 +0200

    Use fd.org terminal icon name (Bug #13592)

commit 01df3bf6de1ec648a6821d29e1fdb3333b6d5184
Author: Romain B <skunnyk@alteroot.org>
Date:   Thu May 25 10:42:12 2017 +0200

    Fix datarootdir declaration in .pc files (Bug #13589)
    
    datarootdir needs to be defined before using it.
    Bug introduced by 0b83659b7085b62528cce4596d3ad3f97fd5f1ed

commit 17e74d4a136a87b739edfacac48f8c18dfe67400
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed May 24 23:17:13 2017 +0200

    Back to development

commit 9221757ce763a10a81d47f64d872d73e905ec781
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed May 24 22:59:35 2017 +0200

    Updates for development release

commit 629e3b5dcd6f054b507b8465cb2f240678464e40
Author: Andrzej <andrzejr@xfce.org>
Date:   Wed May 24 21:17:30 2017 +0100

    make distcheck fix
    
    Workaround for the following bug:
    https://bugs.launchpad.net/intltool/+bug/1117944

commit bd3bb0125c296e320272b9664b5dd093bfe39961
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date:   Tue May 23 12:30:34 2017 +0200

    I18n: Update translation th (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3815e1d96f22e4b0abd2d5004f97487eebb9e2ef
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue May 23 00:48:32 2017 +0200

    Add missing symbols to fix abicheck

commit 667581e6aa249532e5a761b92e9ac43b85d5e775
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue May 23 00:25:22 2017 +0200

    Revert "systray: Make sure checkboxes in prefs are always visible (Bug #8675)"
    
    This reverts commit 24aea0d3ed4fd7d95e68df3cdd8a20882b8d1929.

commit 24aea0d3ed4fd7d95e68df3cdd8a20882b8d1929
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon May 22 23:21:56 2017 +0200

    systray: Make sure checkboxes in prefs are always visible (Bug #8675)

commit 0b83659b7085b62528cce4596d3ad3f97fd5f1ed
Author: Romain B <skunnyk@alteroot.org>
Date:   Thu May 18 23:00:37 2017 +0200

    Fix some autotools warnings
    
    - Create m4 directory in autogen and declare it
    - Fix AC_COMPILE_IFELSE and datarootdir warnings since autoconf 2.68

commit 1b6beadc45e7d547444c896feceaa374770d2ee1
Author: abuyop <abuyop@gmail.com>
Date:   Sun May 21 18:31:15 2017 +0200

    I18n: Update translation ms (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c0789820bff987476d9ec3daa4f3876612e55392
Author: idetao <marcxosm@gmail.com>
Date:   Fri May 19 12:30:47 2017 +0200

    I18n: Update translation it (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9b1a36b96f24753a07e3bd3bad8ea22a52d5a37e
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Tue May 16 12:30:47 2017 +0200

    I18n: Update translation uk (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9ed3ebb0b7d06abea86c52195f3fd65e4bf5b561
Author: Kukuh Syafaat <syafaatkukuh@gmail.com>
Date:   Tue May 16 06:30:43 2017 +0200

    I18n: Update translation id (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 38c7e1fa5f868f27d258a3f485d04716947be01d
Author: Pablo Roberto “Jristz” Lezaeta Reyes <prflr88@gmail.com>
Date:   Tue May 16 06:30:43 2017 +0200

    I18n: Update translation es (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a0dd84046b6e52113414433b9fb73209735d7129
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Fri May 12 12:30:36 2017 +0200

    I18n: Update translation kk (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 25f70133b03032f6e22a4a4cc2f5ba995e72e8ca
Author: José Vieira <jvieira33@sapo.pt>
Date:   Sun May 7 00:30:33 2017 +0200

    I18n: Update translation pt (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 61774c17df59aa0e67b68baec02e039f74e89cfc
Author: Daniel Gullbransen <daniel@llama.nu>
Date:   Wed May 3 06:30:33 2017 +0200

    I18n: Update translation sv (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit cd85f68f6c74c82d2ee27ecbce12be296cb12946
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Tue May 2 12:30:34 2017 +0200

    I18n: Update translation zh_CN (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6ab1db97ebe5746c2a76a4c47d5c8203d2f1139a
Author: m4sk1n <m4sk1n@vivaldi.net>
Date:   Mon May 1 12:30:35 2017 +0200

    I18n: Update translation pl (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit fb7593044c9307435a031560784b1122ecc329dd
Author: Apóstolos Papaðimitríu <apostolos.papadimitriu@gmail.com>
Date:   Sun Apr 30 12:30:44 2017 +0200

    I18n: Update translation el (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 55b1c3e5917e32b1cb93736e21145a3d1150975f
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Sun Apr 30 00:30:35 2017 +0200

    I18n: Update translation he (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d6744ac6480f0a540b217b4dd72e502dae0b244c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Apr 30 00:21:39 2017 +0200

    Set labels in menuitems to be left-aligned (Bug #13539)
    
    Gtk+3 unfortunately defaults to centered.

commit 7e4b0389db2fd35503d6e3b0822e17c6081a1444
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Apr 30 00:18:23 2017 +0200

    Drop unused var

commit ee7381e4feb1c009c23e8936a351bf07d303d6e3
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Apr 30 00:15:17 2017 +0200

    Launcher: Fix size of menu icons (Bug #13539)
    
    While we get rid of the deprecated GtkImageMenuItem
    here, we also get the useless padding on the left
    which reserves space for radios and checks in menus
    that have those. The one useful feature of
    GtkImageMenuItem (apart from the convenience) was to
    not reserve that space.

commit 68d4cb8cc371d30515c2d83d5a13a331b269274e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Apr 29 23:59:29 2017 +0200

    Drop custom gtk_icon_sizes from plugins (Bug #13539)
    
    This was used in Gtk+2 to let themes customize icon
    sizes for certain contexts like menus. This approach
    doesn't work with Gtk+3 so we default to the standard
    menu icon sizes instead.

commit 0e3fbad76faef03d128aab0025215cfc56a651ec
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Apr 29 13:34:38 2017 +0200

    Fix typecasting errors

commit 998a2e96b912a96ce4f475bee099b1b0f69d7274
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Apr 29 12:50:33 2017 +0200

    Wrap GtkImageMenuItem in IGNORE_DEPRECATION macros (Bug #13529)
    
    This helps with keeping the compile-time output shorter and
    more readable, as only the relevant stuff should pop up.

commit aa13ae9535eac3c8e6d57a01501494ecc6f31b6f
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 28 06:30:44 2017 +0200

    I18n: Update translation da (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 35df3629a47f916e59974e5ab8e7db795c12e55e
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Fri Apr 28 00:30:39 2017 +0200

    I18n: Update translation sr (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3dbc28c54201e8bb495e9b283612c7ce3950e083
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Fri Apr 28 00:30:39 2017 +0200

    I18n: Update translation nl (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 693376121b625e76e5a354bfede6f7bebf0f2da4
Author: Jeff Huang <s8321414@gmail.com>
Date:   Thu Apr 27 18:30:35 2017 +0200

    I18n: Update translation zh_TW (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 72ae7608a441e8ff8cda7b6fa50ed60f4030da53
Author: Igor <f2404@yandex.ru>
Date:   Thu Apr 27 18:30:35 2017 +0200

    I18n: Update translation ru (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d80695e485ed0efbabbe7b05abe9222332aa29ef
Author: Tobias Bannert <tobannert@gmail.com>
Date:   Thu Apr 27 18:30:35 2017 +0200

    I18n: Update translation de (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a5830593bf631399d6e06e7ddec589c3422ab2c8
Author: Allan Nordhøy <epost@anotheragency.no>
Date:   Thu Apr 27 12:30:36 2017 +0200

    I18n: Update translation nb (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d80cd6103d3259dc994235d91d7307036fb0566c
Author: Anonymous <noreply@xfce.org>
Date:   Thu Apr 27 12:30:36 2017 +0200

    I18n: Update translation lt (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit bf40aa6528cbc477935ae708c2761881bc12c7ed
Author: Edin Veskovic <edin.veskovic@openmailbox.org>
Date:   Thu Apr 27 12:30:36 2017 +0200

    I18n: Update translation hr (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e55a73efcee51f641217ce6510b6574d8a175b4f
Author: Charles Monzat <superboa@hotmail.fr>
Date:   Thu Apr 27 12:30:36 2017 +0200

    I18n: Update translation fr (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1b8a8cf4a695d78e86c3241354a6de18b04d583b
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Thu Apr 27 12:30:36 2017 +0200

    I18n: Update translation cs (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6d563a0e52049b4104e79850b14cd1b752c03db1
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Thu Apr 27 12:30:36 2017 +0200

    I18n: Update translation ca (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d30973309fd5f6c66d576359b00b509a0fed3a86
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Thu Apr 27 12:30:36 2017 +0200

    I18n: Update translation bg (100%).
    
    399 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3554f9397a638e8188ee950d9e4562c41c60a367
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Apr 26 23:05:37 2017 +0200

    tasklist: Replace GtkAlignment with a simple GtkBox (Bug #13529)

commit 867275a79b66d521a53e6fcfefdac6af8c5e4b86
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Apr 26 22:35:14 2017 +0200

    Replace more references to GtkStock (Bug #13528)

commit 4f4461d84766bf586e116d6571cacff23f2f48f9
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date:   Wed Apr 26 18:30:35 2017 +0200

    I18n: Update translation th (100%).
    
    398 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9ed83066128f346e32f405e79602584c98763900
Author: abuyop <abuyop@gmail.com>
Date:   Wed Apr 26 18:30:35 2017 +0200

    I18n: Update translation ms (100%).
    
    398 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a68f301fae1a1db698fbed0d87e7b79e320f6608
Author: Arve Eriksson <031299870@telia.com>
Date:   Wed Apr 26 12:30:33 2017 +0200

    I18n: Update translation sv (99%).
    
    397 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b2325f9a265766b9ebf05c88fcd63361165e88d8
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Tue Apr 25 06:30:33 2017 +0200

    I18n: Update translation kk (100%).
    
    398 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 983367aceb4b8380893127596e224b6019e74b08
Author: Igor <f2404@yandex.ru>
Date:   Mon Apr 24 18:30:55 2017 +0200

    I18n: Update translation ru (100%).
    
    398 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit bd6a4a07e0241dae984ca15e020b0d178b3bd9aa
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Mon Apr 24 00:30:34 2017 +0200

    I18n: Update translation he (100%).
    
    398 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1a97efdaac5e416b96409f86800960eda74a1441
Author: Dušan Kazik <prescott66@gmail.com>
Date:   Sun Apr 23 18:30:43 2017 +0200

    I18n: Update translation sk (100%).
    
    398 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6eff2e00e46294b3d9bcf1ff4e262f1749f67409
Author: Enrico <allin@infinito.it>
Date:   Sun Apr 23 11:55:08 2017 +0200

    I18n: Update translation it (100%).
    
    398 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 7713912902c65bc4e7eefd94c1e06274ac90b6b7
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Apr 23 00:19:36 2017 +0200

    tasklist: Fix separator not showing up

commit d59c2142329117ea56a1636ea95f98040ff8231c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Apr 22 23:25:11 2017 +0200

    Improve panel handle drawing
    
    The panel handle used to be drawn in shades of the background
    color, which made them hard to see on dark panels. With the new
    implementation we rely on the foreground color to make sure they
    are visible. Also get rid of GtkSymbolicColor as it is deprecated.

commit 65fd68beb5496a0cd7f242044db5854342cac7a7
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Apr 22 11:13:28 2017 +0200

    Replace deprecated gdk_display_get_n_screens and gtk_widget_reparent
    
    From the Gtk+3 GdkDisplay documentation regarding get_n_screens:
    The number of screens is always 1.

commit 89df01cc3c875ec3e809d4b51fadd5f0448434ea
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Apr 22 11:03:31 2017 +0200

    Clock: Fix color in LCD mode

commit a100a9e5558738122c434dbfdab08760e710edf3
Author: 박정규(Jung-Kyu Park) <bagjunggyu@gmail.com>
Date:   Sat Apr 22 00:30:35 2017 +0200

    I18n: Update translation ko (100%).
    
    398 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3c852ce3502c96d3b7a67b63ad9f4cb1cc554085
Author: Aljoša Žagar <anthon.manix@gmail.com>
Date:   Fri Apr 21 12:30:53 2017 +0200

    I18n: Update translation sl (99%).
    
    396 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 48e6e7eb3c4257d0d80c06b8b8ca3c70e91b3360
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 21 06:30:34 2017 +0200

    I18n: Update translation da (100%).
    
    398 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 01caba0b4848136edd1d0874cb4f8197d181fe53
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Apr 21 00:10:56 2017 +0200

    Disable border drawing with custom background

commit c58699cfde666f766575d6bc932555ca913e0594
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Apr 20 23:51:19 2017 +0200

    Drop unused var

commit 4504c950421ed57bf2e94391c2e23b9f628bf3e7
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Apr 20 23:31:40 2017 +0200

    Minimal plugin icon sizing tweak
    
    With the previous behavior e.g. the applicationsmenu
    icon was cut by 1px on each side. Bumping the 26 to
    27 is enough to not have it cut anymore.

commit fb08a08304ace39165dbd051cef3b2e5c461c137
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Apr 20 23:13:51 2017 +0200

    applicationsmenu: Show icon by default

commit 0fae2e818d3172f04bb6938c40ec7d8b25390a8a
Author: Igor <f2404@yandex.ru>
Date:   Thu Apr 20 18:30:33 2017 +0200

    I18n: Update translation ru (100%).
    
    398 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 35647c5bb1cb259e11e1cb3bbc6bdea11c4555cd
Author: José Vieira <jvieira33@sapo.pt>
Date:   Thu Apr 20 00:30:35 2017 +0200

    I18n: Update translation pt (100%).
    
    398 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 316c6b371390addd9d0d120e0f3da8fecdefd78e
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Thu Apr 20 00:30:35 2017 +0200

    I18n: Update translation nl (100%).
    
    398 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit be03e0122a8eba833910702dae60e77652755f8b
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Thu Apr 20 00:30:35 2017 +0200

    I18n: Update translation ca (100%).
    
    398 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 4bb48b03e9236634acba25d8f07d77c998091ef7
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Apr 19 08:47:40 2017 +0200

    Replace more GtkStock items with icons and text (Bug #13505)
    
    With deprecating GtkStock in libxfce4ui we need to explicitely
    set the labels and icons not to get empty buttons.

commit 3c1c2ba22584ce14418e07fd258b1fe3228fd0cc
Author: Allan Nordhøy <epost@anotheragency.no>
Date:   Wed Apr 19 06:30:33 2017 +0200

    I18n: Update translation nb (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 4c73a6f67f53323543652d4a1434661ddb9e4d46
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Apr 19 01:02:28 2017 +0200

    Reimplement enter/leave opacity for Gtk3 plugins

commit 844bacab4cd423c57958c62f14c2f5637cb7c748
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Apr 18 22:38:08 2017 +0200

    Fix IT_PROG_INTLTOOL warning
    
    xdt-autogen: It is recommended to use IT_PROG_INTLTOOL([0.35.0])
                 in your configure.ac file and remove AC_PROG_INTLTOOL
    
                 See http://bugzilla.xfce.org/show_bug.cgi?id=8930 for
                 more information.

commit 1ca5c78b323779b160cd0ce687ac7d97b47a4a34
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Apr 18 20:55:45 2017 +0200

    separator: Reimplement dots and handle styles with cairo
    
    Also tone down the color for the separators

commit da85002872c4ef8fd8da7ac3b792aa174fe38670
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Sun Apr 16 18:30:31 2017 +0200

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit daff7c44c8300bce9d05600f2ddf0c675015d711
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sun Apr 16 00:30:31 2017 +0200

    I18n: Update translation kk (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 354c066e329e6abe29ef46f40d085b501e415477
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Apr 15 23:41:14 2017 +0200

    Replace deprecated gtk_style_context_get_background_color

commit ed233c7e29ce5b8545cd3fde518a01cf1420ae8b
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Apr 15 23:23:10 2017 +0200

    Fix typecasting to GTK_WIDGET

commit 95c87eaa6177dfa1d7650e93bc13e6ab7b2425c1
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Apr 15 02:36:23 2017 +0200

    Support bg-color with Gtk2 plugins
    
    Before only Gtk3 plugins had the correct coloring with custom
    background color because of the use of GdkColor in Gtk2 and GdkRGBA
    in Gtk3.

commit eeafc08d8495350ded48354788366ca9646e0cea
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Apr 14 23:59:19 2017 +0200

    Don't use GdkColor anymore

commit 520001be291867069907f45d3a295512fa2697e3
Author: Påvel Nicklasson <pavel2@frimix.se>
Date:   Sat Apr 15 12:30:32 2017 +0200

    I18n: Update translation sv (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 0c26a1743d1eff3adb01f84a125b5925b0fb7e15
Author: José Vieira <jvieira33@sapo.pt>
Date:   Sat Apr 15 12:30:32 2017 +0200

    I18n: Update translation pt (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c36b1401e1aa3b7a8e1afd93ac3e6a081d1bd8ef
Author: Anonymous <noreply@xfce.org>
Date:   Sat Apr 15 12:30:32 2017 +0200

    I18n: Update translation es (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 78f75b3a6ff4b246b6ba2704ad5723348e1e4132
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date:   Fri Apr 14 18:30:32 2017 +0200

    I18n: Update translation th (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit affd66b7c7078b4047d100605c9544b1dc1f0a26
Author: Igor <f2404@yandex.ru>
Date:   Fri Apr 14 18:30:32 2017 +0200

    I18n: Update translation ru (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 04a8486daa26dcef7be5efe461a52c9be6dc7499
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Apr 14 12:32:42 2017 +0200

    tasklist: fix typecasting

commit 65ff45a84a0f5db5569ad42f2a8fcd70dcde0042
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Apr 14 12:32:28 2017 +0200

    Replace deprecated gtk_widget_get_root_window

commit 6d51df7858307b34f2bd6b3dafd235c5c89b99d4
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Apr 14 12:32:11 2017 +0200

    panel-item-dialog: Fix typecasting

commit 2595a9e4ace4878e43c339fc9c57456efdd3ddfd
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Apr 14 12:31:20 2017 +0200

    Replace deprecated gtk_window_set_opacity

commit d3a510d75750363cc523cecb5b0ff9004d14e4f7
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Apr 13 23:45:47 2017 +0200

    Replace deprecated gtk_misc_set_alignment

commit fad3d47164a461ed2438fb7a8b09dd6b2f971832
Author: Anonymous <noreply@xfce.org>
Date:   Thu Apr 13 18:31:02 2017 +0200

    I18n: Update translation lt (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5db8ee8741ffc03ec4371223018a2b4f9137988e
Author: Edin Veskovic <edin.veskovic@openmailbox.org>
Date:   Wed Apr 12 12:30:30 2017 +0200

    I18n: Update translation hr (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c2c3736addbb1c851a1e11863d994f6ff7d2db2d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Apr 12 00:58:33 2017 +0200

    Fix "Primary" option appearing twice in prefs dialog

commit d0e7dfa7bf1f75e2eedbb0e2472dd0d900cfa679
Author: m4sk1n <m4sk1n@vivaldi.net>
Date:   Wed Apr 12 00:30:31 2017 +0200

    I18n: Update translation pl (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 2712e2a0d8841d91f08e599ae5e75b984ec8e1d4
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Wed Apr 12 00:30:31 2017 +0200

    I18n: Update translation nl (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c51b80e34cced0b8b859769b5760e173398223e9
Author: Anonymous <noreply@xfce.org>
Date:   Wed Apr 12 00:30:31 2017 +0200

    I18n: Update translation da (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a59ca9f7d1afd9db719d189e56c4a62e6aaa0060
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Wed Apr 12 00:30:31 2017 +0200

    I18n: Update translation bg (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 04c7de079decefe52f06e9d0fe2c361aede83069
Author: Dušan Kazik <prescott66@gmail.com>
Date:   Tue Apr 11 18:30:31 2017 +0200

    I18n: Update translation sk (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1eddfb5b34f01d6c6641cffca2b6414481e70a5c
Author: Anonymous <noreply@xfce.org>
Date:   Tue Apr 11 18:30:31 2017 +0200

    I18n: Update translation lt (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b0a1b64777545e87961818376f3aea3a735b2557
Author: Tobias Bannert <tobannert@gmail.com>
Date:   Tue Apr 11 18:30:31 2017 +0200

    I18n: Update translation de (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d3cb02c67a1aa98a0722c5d175df5632f83d2fd8
Author: Jeff Huang <s8321414@gmail.com>
Date:   Tue Apr 11 12:30:31 2017 +0200

    I18n: Update translation zh_TW (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 75c29ae44ea4490887ac0a1d7625dec29e322882
Author: 박정규(Jung-Kyu Park) <bagjunggyu@gmail.com>
Date:   Tue Apr 11 12:30:31 2017 +0200

    I18n: Update translation ko (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9ba92f72613253dc155af033beb098476fd2d0ea
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Tue Apr 11 12:30:31 2017 +0200

    I18n: Update translation fr (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit bb1637384654a7b8e3fd02a11fe0d06ced1bdd95
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Tue Apr 11 12:30:31 2017 +0200

    I18n: Update translation cs (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e89d626dad4852ef5c5cc8c7f7b409e0327a6597
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Tue Apr 11 12:30:31 2017 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit ece74ef127fec731842b8a203ed17c3c8eced219
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Apr 10 22:59:49 2017 +0200

    Replace GtkStock with icon names and standard strings
    
    References:
     * https://developer.gnome.org/gtk3/stable/gtk3-Stock-Items.html
     * https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html#names

commit a7f3157c37a86ef13f22a90209f809f4a1508216
Author: Tobias Bannert <tobannert@gmail.com>
Date:   Tue Apr 4 00:30:30 2017 +0200

    I18n: Update translation de (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 016331255217b246cba32a7bee566870d4b8588f
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat Apr 1 23:03:32 2017 +0100

    Analog clock: move minute hand smoothly when showing second hand

commit 2e1196498e908d31a6c3983304f5019c3b481327
Author: Viktor Odintsev <zakhams@gmail.com>
Date:   Fri Mar 17 21:03:33 2017 +0300

    Avoid double free in panel plugins
    
    GtkMenu should no be destroyed manually when attached to GtkWidget.

commit 083e17f069368f50b8a106cd10b33fae173e5058
Author: Tobias Bannert <tobannert@gmail.com>
Date:   Tue Mar 28 00:30:30 2017 +0200

    I18n: Update translation de (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit fe4b501a3f89290fccbc79216488800cc90a6284
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Mar 27 19:58:12 2017 +0100

    Fixed handling of a local timezone

commit 11703721c27141bb5f5385f9f4c8091e4a21a274
Author: Francisco Serrador <serrador@tecknolabs.com>
Date:   Sun Mar 26 18:30:40 2017 +0200

    I18n: Update translation es (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 8fbb19c51640fde835d50fb423e9bf382897335c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Mar 25 01:06:15 2017 +0100

    tasklist: Make sure group icons are correctly sized

commit beb82175e44e7d346abc8b2cd5d17b7f814d5664
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Mar 25 00:54:37 2017 +0100

    tasklist: queue_resize when changing show_labels
    
    Before the tasklist children would not properly resize when changing
    the show-labels setting.

commit a4cea9242f72b9b6fb24e9b050886c6d0a244182
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Mar 25 00:33:24 2017 +0100

    tasklist: Fix icons not showing up in group mode

commit a1aa88b1d576ffb2b19a4902a2c1a76ef50a23db
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Fri Mar 24 06:30:29 2017 +0100

    I18n: Update translation zh_CN (99%).
    
    389 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 425b7c0afe67b7798776ab59dcb171db079f9240
Author: Anonymous <noreply@xfce.org>
Date:   Wed Mar 22 06:30:30 2017 +0100

    I18n: Update translation da (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 8cfb842ed0404e9abde3cba614f5eb8882cf43ac
Author: Påvel Nicklasson <pavel2@frimix.se>
Date:   Tue Mar 21 18:30:30 2017 +0100

    I18n: Update translation sv (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 195a12e7c83620e06a050a536ec5c004774aa8db
Author: André Miranda <andre42m@gmail.com>
Date:   Tue Mar 21 06:30:29 2017 +0100

    I18n: Update translation pt_BR (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit ce2a3cff20efad2d755c2cfb90ca9ea2d52ef9d9
Author: Allan Nordhøy <epost@anotheragency.no>
Date:   Tue Mar 21 00:31:05 2017 +0100

    I18n: Update translation nb (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5c1af395070c7e3a581de5be820aab771b9b757b
Author: Xosé <xosecalvo@gmail.com>
Date:   Tue Mar 21 00:31:05 2017 +0100

    I18n: Update translation gl (99%).
    
    388 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d93f211469147999a25a0fc4bfccb889ac6c7e91
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Mon Mar 20 18:30:41 2017 +0100

    I18n: Update translation he (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b7b349df79c106e07f575cf52f2c50d0b80be8d2
Author: Anonymous <noreply@xfce.org>
Date:   Mon Mar 20 12:30:30 2017 +0100

    I18n: Update translation da (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 72a02d8b75a35162d5a267f3b7758a7f44037263
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Mar 20 01:40:17 2017 +0000

    Visual changes in analog clock

commit c04e40bcbf319b294f2e34f374fdb350571d6f72
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Mar 19 23:13:26 2017 +0000

    Applications menu icon sizing fixes
    
    Dropped support for stretching non-square icons to panel size and image files.

commit d92efdeb44217b1b46821a1c4d0a345343922d76
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Mar 19 23:21:25 2017 +0100

    pager: let themes override colors
    
    With GTK_STYLE_PROVIDER_PRIORITY_APPLICATION themes cannot override
    the style set by the panel plugin, however we only want to provide
    a fallback for themes that don't style wnck-pager at all.

commit 8a33dd8f794dea46a550498271a37398b50c60fc
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Mar 19 21:16:07 2017 +0000

    Re-added exo dep for plugins that still use it

commit c200ae82fcbee3572606280f3f69fa5840c7bfb5
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Mar 19 20:42:41 2017 +0000

    Removed button arg from _get_icon_size()

commit 596b452206382c7ca50cdc326525ea6045656497
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sun Mar 19 18:30:30 2017 +0100

    I18n: Update translation kk (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1f85c9f5f93be9f8b64ddaa42a3aae9be91046b8
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Mar 19 09:41:06 2017 +0000

    Removed button theme checking from _get_icon_size()
    
    If we are happy with this behaviour I'll remove the button argument.
    (plugins using _get_icon_size() will have to be modified)

commit 01a3703ca865ac45ae5bd91671f68c0737744d38
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Mar 18 23:58:19 2017 +0100

    tasklist: Replace xfce_panel_image with plain Gtk+

commit d1b42a30954ff0513ad60d58e617b1dd762cacb7
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Mar 18 20:20:29 2017 +0100

    launcher: Replace xfce_panel_image with plain Gtk+

commit 55fbf365f5d9b2ca5a524ebd50a2772a4a4d14e5
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat Mar 18 16:42:59 2017 +0000

    Switched from xfce_panel_image to gtk_image, some layout changes

commit ada7e9c8aaa0551beb931d9b2be97c4e868d957a
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Mar 18 13:40:08 2017 +0100

    appmenu:        Replace xfce_panel_image with plain Gtk+

commit ccfa4385a8657279112663da8f3f14875c152f6e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Mar 18 13:36:47 2017 +0100

    directorymenu: Drop remaining xfce_panel_image references

commit e3a14be802f576fe80b0041de6c1109f5ec58281
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Mar 18 13:20:02 2017 +0100

    showdesktop: Replace xfce_panel_image with plain Gtk+

commit ee94cb09e27462332f33a5bd9295e32c537daa6a
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Mar 18 13:07:09 2017 +0100

    windowmenu: Make sure the desktop icon has the right size

commit 74816bf0bfa728c95a3b0831cf4feec8e65e2fa2
Author: abuyop <abuyop@gmail.com>
Date:   Sat Mar 18 12:30:30 2017 +0100

    I18n: Update translation ms (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 7da400bb7157a8f020d9a7ca935655cfe4fce0d9
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sat Mar 18 12:30:30 2017 +0100

    I18n: Update translation kk (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1b0ec388cd0ce3148b9db0429ff75edb36bdb2c8
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Mar 18 11:28:23 2017 +0100

    directorymenu: Initialize panel icon size to 16px
    
    The proper size is set on size_changed anyway.

commit 930caa64b28772e457fe0df76e71d2a698ecfe3a
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Mar 18 11:27:27 2017 +0100

    windowmenu: Replace xfce_panel_image with plain Gtk+

commit c183ccab6a9ea941154752abb0172193eaca35fa
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Mar 18 10:30:12 2017 +0100

    directorymenu: Replace xfce_panel_image with plain Gtk+
    
    xfce_panel_image relies on pixbuf drawing and caused
    flickering in Gtk+3 implementations of plugins. Setting
    the icon name and size is the preferred method in Gtk+,
    so all plugins should be ported away from xfce_panel_image.

commit 79555402644ba0299b08048f929d81131c02b83c
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Fri Mar 17 23:27:38 2017 +0000

    Added an xfce_panel_plugin_get_icon_size function to unify icon sizes across plugins

commit 4989da9447232d3115241e2cd14359b3cbfa3ce3
Author: Jeff Huang <s8321414@gmail.com>
Date:   Fri Mar 17 18:30:31 2017 +0100

    I18n: Update translation zh_TW (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 33edee3967484b10d06ddd546cf488229ccf3c2d
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Fri Mar 17 18:30:31 2017 +0100

    I18n: Update translation pt (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit cf0ae758c6f962cf88c684cf9c4a8de585e2bfeb
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Fri Mar 17 18:30:31 2017 +0100

    I18n: Update translation cs (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 7a125bffa10b4c2cb52d55f41c71af714ce32679
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Fri Mar 17 00:30:30 2017 +0100

    I18n: Update translation fr (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6e0e90a37425fca903064cbfb495401c24770021
Author: Anonymous <noreply@xfce.org>
Date:   Fri Mar 17 00:30:30 2017 +0100

    I18n: Update translation da (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit bcfea9be18bc9247fdb6c7a89ee1e86b3f8bf1c4
Author: Igor <f2404@yandex.ru>
Date:   Thu Mar 16 18:30:31 2017 +0100

    I18n: Update translation ru (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 030075d208776b6769e65dcfd9e2904486b36525
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Thu Mar 16 18:30:31 2017 +0100

    I18n: Update translation pt (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9a3c4cf1e1c3a63aac808c2b7d081d97dd75321b
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Thu Mar 16 18:30:30 2017 +0100

    I18n: Update translation nl (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit bd6d3fd894536021727e4160e8b2209598d75fe4
Author: 박정규(Jung-Kyu Park) <bagjunggyu@gmail.com>
Date:   Thu Mar 16 18:30:30 2017 +0100

    I18n: Update translation ko (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e147216fe37b5ecb902eb5e4e7a000b8553e2100
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Thu Mar 16 18:30:30 2017 +0100

    I18n: Update translation bg (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b4ea1fb6cce5c53d6ea1c15a1d31fa4379a1dddd
Author: m4sk1n <m4sk1n@o2.pl>
Date:   Thu Mar 16 12:30:32 2017 +0100

    I18n: Update translation pl (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 962e6f76b083a471d157e74b6c3ee28589d10c1a
Author: Allan Nordhøy <epost@anotheragency.no>
Date:   Thu Mar 16 12:30:32 2017 +0100

    I18n: Update translation nb (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5db59ca4d186e392fcae24d4c77b0857a1b4a531
Author: Anonymous <noreply@xfce.org>
Date:   Thu Mar 16 12:30:32 2017 +0100

    I18n: Update translation lt (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 70ac5760b945a2d578fd980cfd67c73d507813f6
Author: Edin Veskovic <edin.veskovic@openmailbox.org>
Date:   Thu Mar 16 12:30:32 2017 +0100

    I18n: Update translation hr (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f264863aac892dd06516d73e01141b1aefc83ea7
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Thu Mar 16 12:30:32 2017 +0100

    I18n: Update translation ca (100%).
    
    390 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1ea3ea8cd4c58a728b63f8a89845e3dbb9e27923
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Mar 16 00:26:56 2017 +0100

    Bump the padding of panel buttons to 1px
    
    Setting it to 0 was maybe a bit excessive on our
    side and that didn't seem to work with some themes.

commit a24b0214c9218ab39581d0e40b1b441913d631f7
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Feb 27 23:33:01 2017 +0100

    Add support for XRandR's primary monitor feature (Bug #9338)
    
    If there is no output name set in xfconf it behaves like before,
    i.e. "Automatic" mode.
    However if the driver does not return a monitor name it now falls
    back to the primary display.

commit 11e8af42627bc7f4d579a56413882bf3919ddfc0
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Mar 16 00:02:03 2017 +0100

    Replace deprecated gtk_drag_begin

commit f9c84f007c699b6def81411557aa008b9dc6122e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Mar 15 22:15:35 2017 +0100

    Make sure the marching ants get drawn

commit 964a372239bfd069c5beafc5a1fac3452149a90c
Author: Viktor Odintsev <zakhams@gmail.com>
Date:   Sun Mar 5 20:55:04 2017 +0300

    Fix child size allocation
    
    Each child takes at least 1 px on the panel which led to an
    incorrect total length calculation.

commit e8931814e99c2bbe095eb5200b28163537893953
Author: 박정규(Jung-Kyu Park) <bagjunggyu@gmail.com>
Date:   Mon Mar 13 18:30:56 2017 +0100

    I18n: Update translation ko (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 889d657508a44cba2db46fc465762802d95ca766
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Mar 8 23:48:11 2017 +0100

    Make sure borders are redrawn on Gtk theme changes
    
    Also switch from the deprecated style-set signal to style-updated
    and call the background resetting function to make sure the borders
    actually get redrawn with the newly selected Gtk theme (so far we
    were only watching changes in the panel style settings).

commit 7c0678ab1b42f0b57e98b18e00931a40b40dda17
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Mar 8 23:24:08 2017 +0100

    Fix windows in workspace switcher being transparent

commit 510743d92a0120e7f6113ebcd41ee316172b248a
Author: Påvel Nicklasson <pavel2@frimix.se>
Date:   Wed Mar 8 00:30:30 2017 +0100

    I18n: Update translation sv (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 0c6a989fcf637322b72df4f6be160c39cd612b10
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Mar 8 00:07:53 2017 +0100

    Add hover and selected effect to workspace switcher
    
    As the hover and selected state are derived of the
    background color of the panel (which has no "selected"
    or "active" state we could take the color from) we
    still have to find a way to support dark and bright
    panels out of the box.
    FIXME: The current solution only works for bright themes
    like Adwaita.

commit 197cf9f9824ac54e9ea6840255d0d8017c356c69
Author: Dušan Kazik <prescott66@gmail.com>
Date:   Tue Mar 7 00:30:30 2017 +0100

    I18n: Update translation sk (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d1910cee8866f056437fc3af928418732567cbab
Author: Florian Schüller <florian.schueller@gmail.com>
Date:   Tue Mar 7 00:13:30 2017 +0100

    Fix some leaks

commit 3e786b3dd64f8cdd39cb0fcf8cd1f65172f5181c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Tue Mar 7 00:12:00 2017 +0100

    Don't mess with GTK_STATE_FLAGS anymore
    
    We used to use cairo and the draw signal, but as we draw with CSS
    now this line shouldn't be making any difference anymore.

commit f248bb0a497239e1fd392a1e5f2da920d0f8bae5
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Mar 6 23:55:26 2017 +0100

    Re-implement border drawing
    
    As with Gtk2 this only works when the Gtk+ theme's system colors
    are in use. In theory this could also be added to custom background
    colors.

commit 80687bd681faf8437bd4fe43fff4e738bc4a1e95
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Mar 4 23:16:55 2017 +0100

    Fix background colors with marching ants

commit 39b9ce00289d9baa657c380139546856837325df
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Mar 4 22:14:36 2017 +0100

    Fix transparent bg of internal plugins in locked mode
    
    The locked mode used to send the expose/draw signal to
    all panel children (i.e. internal plugins) and this may
    have been useful in Gtk2. In Gtk3 we don't use the draw
    signal anymore but instead internally draw with pure CSS.

commit db748403ba7847f33fa6ba2fd3890e2005f4f2b1
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Sat Mar 4 18:30:30 2017 +0100

    I18n: Update translation nl (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 007ff76c75e04d12828acf18679d7953ce779a6e
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Sat Mar 4 12:30:43 2017 +0100

    I18n: Update translation nl (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 2b0ad9953cba8743a906e624de35cb973b7ed5b9
Author: Apóstolos Papaðimitríu <apostolos.papadimitriu@gmail.com>
Date:   Sat Mar 4 00:30:51 2017 +0100

    I18n: Update translation el (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 879497894ad6d9fa72fd6dd6a899f463a5e4aecb
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Mar 3 00:24:26 2017 +0100

    Resurrect the marching ants when panel prefs are open
    
    This is now all done in CSS as opposed to cairo.

commit fdbef84f81f2e4cc15675a04029d1e3656de7db7
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Mar 2 22:52:55 2017 +0100

    Fix the systray background

commit d7ffb75ad2794cbbf6e8d95b0d9a7e538a0f81f0
Author: André Miranda <andre42m@gmail.com>
Date:   Thu Mar 2 18:30:31 2017 +0100

    I18n: Update translation pt_BR (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a6c671dbe7726b8b11b692e6c540af78490d9b94
Author: Jeff Huang <s8321414@gmail.com>
Date:   Thu Mar 2 06:30:31 2017 +0100

    I18n: Update translation zh_TW (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c5d56e72c7694c3dae69ab9094cb186ac31a6e16
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Thu Mar 2 06:30:31 2017 +0100

    I18n: Update translation kk (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 21cd70ce1dcbdf51aaae4af71fedeafdc87d7e98
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Thu Mar 2 00:44:42 2017 +0000

    Fix buttons with Adwaita
    
    Prevent the excessive padding from some
    themes to prevent proper rendering of the button.

commit 96e6fe3564d1565b159d2c4c8565a6d3c3a4e76c
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Thu Mar 2 00:39:33 2017 +0000

    Revert "Fix launchers overlapping with Adwaita"
    
    This reverts commit fa4477d6b48f05c855272e7296a047c551e68108.

commit aeef764e1d00daada1b476d61bb2036fbc2ad1ab
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Thu Mar 2 00:39:29 2017 +0000

    Revert "Fix applicationmenu button with Adwaita"
    
    This reverts commit 1cd8238f431cb41e21c34d39bcc5443a72b07f97.

commit 1cd8238f431cb41e21c34d39bcc5443a72b07f97
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Mar 2 00:36:10 2017 +0100

    Fix applicationmenu button with Adwaita
    
    Again prevent the excessive padding from some
    themes to prevent proper rendering of the button.

commit fa4477d6b48f05c855272e7296a047c551e68108
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Mar 2 00:22:15 2017 +0100

    Fix launchers overlapping with Adwaita

commit d5730f52880e96569fd4283411e13e3d6c5f941f
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Mar 1 23:38:18 2017 +0100

    Make sure themes don't use excessive padding in the panel
    
    This is a problem with Adwaita, the default Gtk theme, and
    leads to tiny icons in normally-sized panels.

commit aab64ecbec27c098d1fcdd8fa35a251b4afcbf05
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Wed Mar 1 18:30:30 2017 +0100

    I18n: Update translation cs (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6b7cb73b73edc44ae7c5ae25708f1446cd3a6879
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Wed Mar 1 18:30:30 2017 +0100

    I18n: Update translation ca (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 97982e0474bf78d22f6e358ad20168f8c7e43893
Author: Edin Veskovic <edin.veskovic@openmailbox.org>
Date:   Wed Mar 1 00:30:30 2017 +0100

    I18n: Update translation hr (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 83b6842802267206f73c50dcb3100140cb635441
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Wed Mar 1 00:30:30 2017 +0100

    I18n: Update translation bg (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c9824b362caa60b64cfb4aa43d46e733ddc4572c
Author: m4sk1n <m4sk1n@o2.pl>
Date:   Tue Feb 28 18:30:31 2017 +0100

    I18n: Update translation pl (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 04c0f57740b10f7a8979bf23eded69a0d5070f27
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Tue Feb 28 18:30:31 2017 +0100

    I18n: Update translation fr (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d1f413d8f7c58d66a417caee011132ebfb633ef3
Author: Igor <f2404@yandex.ru>
Date:   Tue Feb 28 12:30:32 2017 +0100

    I18n: Update translation ru (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 22e341cc075dd6421f3112073a2710a87e1b30b8
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Tue Feb 28 12:30:31 2017 +0100

    I18n: Update translation nl (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 15f7440b034b9eb0bf2b03a1a3b0deb02da8eaa6
Author: Anonymous <noreply@xfce.org>
Date:   Tue Feb 28 12:30:31 2017 +0100

    I18n: Update translation lt (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6a15d1ff3cf38e44671d980d5153a9355d75a88f
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Tue Feb 28 12:30:31 2017 +0100

    I18n: Update translation he (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 4928661eac1d45436c560181092a06e8a836e9ee
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Tue Feb 28 12:30:31 2017 +0100

    I18n: Update translation fr (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9090b99a8d2fbc339b5859c94721457d4bd2248e
Author: m4sk1n <m4sk1n@o2.pl>
Date:   Tue Feb 28 00:30:31 2017 +0100

    I18n: Update translation pl (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 458c1a5b27c442746b4eaf40ae8ae2fd04023b49
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Tue Feb 28 00:30:31 2017 +0100

    I18n: Update translation nl (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 02213fb32e9152c8c3533c2050aa81ac983a034c
Author: Manolo Díaz <diaz.manolo@gmail.com>
Date:   Tue Feb 28 00:30:30 2017 +0100

    I18n: Update translation es (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5936dbafe7cf406046f85e4ac9679908df2a6607
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Feb 27 21:22:59 2017 +0100

    Make panel hide intelligently with shaded windows (Bug #11371)

commit 95b481199e07923da0aa6cdf23e883614a061c28
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Feb 27 21:16:30 2017 +0100

    Fix panel hiding (intelligently) with open menus

commit 9acd890e6b5e919f811ee8b97726f8e5b5762c92
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Feb 27 21:13:39 2017 +0100

    Fix panel being initially hidden with intelligent autohiding
    
    After closing the panel preferences, the panel was always hidden when
    intelligent autohiding was selected. This patch adds a check whether the
    currently active window actually overlaps with the panel and only hides
    it in case it does.

commit 10794543f57fb648ef472add6d4d2d81bf7dae5b
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Feb 27 21:09:30 2017 +0100

    Fixing problems with intelligent panel hiding (Bug #11331)
    
    ochosi: "Just to document the findings I made during a quick debug session
    with the panel from git master (4.11.x). Intelligent hiding
    generally works, but the mouse-pointer behavior is buggy.
    Steps to reproduce the bug:
    1) set panel to intelligent hiding
    2) give a window focus that doesn't overlap with the panel
    3) hover the panel with the mouse
    4) upon leaving the panel hides again, even though there
       is no window overlapping
    
    What it should do instead: if intelligent hiding is in use
    it should check (possibly in panel_window_leave_notify_event
    or _enter_ in panel-window.c) whether there are windows
    overlapping with the panel and if not, the panel shouldn't
    hide on leave_notify."
    
    Rebased for the Gtk3 port by Simon Steinbeiss <simon@xfce.org>

commit 391353af16b03fc0a9a7f52d3edd04fdb33e2d27
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Feb 27 21:00:50 2017 +0100

    Fix compilation and indentation
    
    Also add the textcellrenderer to the combobox in
    settings and replace exo with native glib.

commit fa35b435024557d50dcc29058f129d2b1f24439c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Feb 27 00:39:24 2017 +0100

    Make "don't reserve space" sensitive only when autohiding is disabled
    
    This configuration option only makes sense when not hiding a panel
    automatically, so whenever one of the two autohide behaviors is enabled,
    the option is now greyed out in the UI.
    
    Rebased for the Gtk3 port by Simon Steinbeiss <simon@xfce.org>

commit 6e2787a5ce9678bf8b8c9ed0fc50e1e2226c9327
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Feb 27 00:39:03 2017 +0100

    Fix usage of GdkRGBA instead of GdkColor for background

commit b6a386901286415a4df21dce1cca8b19e76a2634
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Feb 27 00:29:47 2017 +0100

    More small rebasing fixes

commit ca5846f28a53370cfb603ccd3ad2f5bdd6cd2b54
Author: Jannis Pohlmann <jannis@xfce.org>
Date:   Mon Feb 27 00:27:25 2017 +0100

    Update preferences dialog for intelligent autohide
    
    Instead of a single "Show/hide panel automatically" check box, we now
    use a "Automatically hide the panel" combo box with the options "Never",
    "Intelligently" and "Always".
    
    Rebased for the Gtk3 port by Simon Steinbeiss <simon@xfce.org>

commit 7fa3829e96194bdeb4ac641c24ce3f2930dcb0d3
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Feb 27 00:27:07 2017 +0100

    Fix some errors that happened during rebasing

commit 978048d7a11242b1f272462aef2479ac70eab1d7
Author: Jannis Pohlmann <jannis@xfce.org>
Date:   Sun Feb 26 23:54:42 2017 +0100

    Automatically migrate old "autohide" properties to "autohide-behavior"
    
    We could write a migration script for it to avoid additional code being
    added to the panel itself but the solution presented here is simple and
    works: when a panel is created (e.g. during startup), we check whether
    there is an old "autohide" property in the Xfconf channel. If the new
    "autohide-behavior" property is not yet set, we translate "autohide"
    FALSE and TRUE into "autohide-behavior" NEVER and ALWAYS, respectively.
    We then reset the "autohide" property and thereby achieve an automatic,
    transparent migration from old to new.
    
    Rebased for the Gtk3 port by Simon Steinbeiss <simon@xfce.org>

commit dbeb8bcf8c4ac8531904b6416611d3f31d9df98a
Author: Jannis Pohlmann <jannis@xfce.org>
Date:   Sun Feb 26 23:49:21 2017 +0100

    Implement intelligent autohide behavior
    
    This implementation of intelligent autohiding works as follows:
    
    The current WnckScreen is monitored. Whenever the active window changes
    or whenever the geometry of an already active window changes, the
    algorithm checks whether the active window and the panel overlap. If
    this is the case, the panel is hidden. Otherwise, it is made or remains
    visible.
    
    Desktop windows are treated special. Even though they overlap
    with panels technically, we don't consider this relevant and always make
    the panel visible when a desktop window becomes active.
    
    Internally, there are three autohide behaviors now: never (disables
    autohiding altogether), intelligent (implements the above method) and
    always (the old "hide when not focused/grabbed by mouse or keyboard).
    
    Rebased for the Gtk3 port by Simon Steinbeiss <simon@xfce.org>

commit 6b35aad56b9338d39244c82050479337bb619591
Author: Dušan Kazik <prescott66@gmail.com>
Date:   Mon Feb 27 12:30:31 2017 +0100

    I18n: Update translation sk (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit aee4bdccf46c871e7551f1b366c4097cfd332306
Author: Igor <f2404@yandex.ru>
Date:   Mon Feb 27 12:30:31 2017 +0100

    I18n: Update translation ru (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9b939bb918b5952c2aff52466936414b0630da9c
Author: Jeff Huang <s8321414@gmail.com>
Date:   Mon Feb 27 06:30:30 2017 +0100

    I18n: Update translation zh_TW (100%).
    
    389 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 58962c1d93ace106bc4ea0a1adbe224d3ba184d2
Merge: daf2b6c04 c21e74c30
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Feb 26 15:29:23 2017 +0000

    Merge branch 'gtk3_css'

commit daf2b6c048239bbe171470e06dca201118304db7
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Fri Feb 24 00:30:30 2017 +0100

    I18n: Update translation sr (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1d3f54a3611fe097b0faae17a8fb8145af436538
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Fri Feb 17 00:30:40 2017 +0100

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 8dd9933224b748cc0206db3609a3a334b246979e
Author: Kukuh Syafaat <syafaatkukuh@gmail.com>
Date:   Sat Feb 11 12:30:30 2017 +0100

    I18n: Update translation id (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 30517a44021f48d8ad4d02e64ce0f098694a446d
Author: Øystein Alværvik <internett@protonmail.com>
Date:   Fri Feb 10 18:30:36 2017 +0100

    I18n: Update translation nn (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit ed6414ba13f9a660768737be83b6283736b627f7
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jan 27 06:30:30 2017 +0100

    I18n: Update translation da (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3453195bab101c6e1a109a92397caafad140283d
Author: samson <sambelet@yahoo.com>
Date:   Mon Jan 23 06:30:40 2017 +0100

    I18n: Update translation am (59%).
    
    235 translated messages, 160 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 82bb84cf29100c96f88927063cb33c3d9e45d556
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jan 23 00:31:03 2017 +0100

    I18n: Update translation da (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 971ea51dc0e92dadfa701e3f15e3ac83479b13de
Author: Anonymous <noreply@xfce.org>
Date:   Sun Jan 22 00:31:21 2017 +0100

    I18n: Update translation da (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit efe7710b3d12ffa63fbcd90dd1fdb975155ad2da
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jan 21 00:30:51 2017 +0100

    I18n: Update translation da (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 23a43a102cb26a409dc1637409fec0cfb6109c67
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jan 20 18:31:20 2017 +0100

    I18n: Update translation da (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 139a0949ea0ffb7efdb121fb4e159718548cdeb2
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jan 19 12:31:07 2017 +0100

    I18n: Update translation da (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 8f23da73071e76670eddc41ea7fb7a8d863cd389
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jan 16 18:31:14 2017 +0100

    I18n: Update translation da (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f5295ea7659de0506f78282040019f45fb6221e5
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jan 16 12:31:29 2017 +0100

    I18n: Update translation da (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f9e8e3d11ec61416a31ffac4348e432163b7dc42
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jan 14 18:30:50 2017 +0100

    I18n: Update translation da (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e31b879d89cbaefe9c786a80c18fa687051e878c
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jan 14 12:31:27 2017 +0100

    I18n: Update translation da (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 09118c20d19f9839abb8aa723ab3e3bd1db5b391
Author: Anonymous <noreply@xfce.org>
Date:   Sun Dec 18 06:30:52 2016 +0100

    I18n: Update translation da (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3e7c70e155834569be3f516601c2a727386d14ce
Author: Igor <f2404@yandex.ru>
Date:   Wed Nov 30 00:30:35 2016 +0100

    I18n: Update translation ru (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 711b0ec28c66e5586fdf1c53f670f0f3693faacf
Author: Cédric Valmary <cvalmary@yahoo.fr>
Date:   Mon Nov 7 12:30:57 2016 +0100

    I18n: Update translation oc (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c21e74c3090fcbc542bf02249868626985a2d979
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Nov 4 01:02:42 2016 +0100

    Drop unused vars

commit 28133ea35fd542beea4e519df6e6534c44739481
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Nov 4 00:57:52 2016 +0100

    Draw panel background with CSS and switch to GdkRGBA

commit 61196aa40c8d5c480ead8054c40cc2eabbd44eaa
Author: Manolo Díaz <diaz.manolo@gmail.com>
Date:   Wed Nov 2 12:30:31 2016 +0100

    I18n: Update translation es (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5733109a9450d5156ebed5f90a12dffe6f56600c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Oct 31 22:16:01 2016 +0100

    Fix hover state for internal plugins

commit 66855dab46a802a2e9884d321c19e2e7662f527f
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Oct 31 20:19:55 2016 +0100

    Fix incomplete replacement of gtk_button_set_focus_on_click

commit 8f13703949d5e1b15efc6f8dda86220a328aa5b3
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Oct 31 20:14:01 2016 +0100

    Replace deprecated button_set_focus

commit f23eea409bd52fbd7117d2da925a3499c4cfa76d
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Oct 30 09:35:51 2016 +0000

    Fixed tic-tac-toe

commit 71f040dc8c46694607fe89d4c1f0c2e373aced3b
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Oct 30 00:32:44 2016 +0100

    Fixed list of authors in the About dialog

commit 98fddc4c3d2d527540d3303dc751ff817dd4d0da
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat Oct 29 00:34:53 2016 +0100

    Improved size requisition in the pager plugin.

commit 4912641219122aa2df3ae459b557e783c5b0920e
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat Oct 29 00:34:16 2016 +0100

    Removed has_separator property from the .glade file

commit ea02b70707ee796848d28b9b676a112e32ee6e77
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat Oct 29 00:33:37 2016 +0100

    Fixes to the panel sizing.
    
    Issue exposed by the pager plugin, which somehow forces
    use of width_for_height and height_for_width functions.

commit 68d57a7791e5b9770e2af52881cc112edafd4346
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Oct 27 00:10:45 2016 +0200

    Switch from GdkColor to GdkRGBA for panel bg color

commit 4196dd3742f89fd691fed71f13db713aa44d04b3
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Oct 27 00:09:35 2016 +0200

    Make CSS string work with >=3.20

commit d3f779cc605b067abe1848efa29343c454c13ddf
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Oct 27 00:09:12 2016 +0200

    Always draw panel background

commit a8e69f1f17811c9320db13d5b3dafaaf85fad9ee
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Oct 26 16:32:41 2016 +0200

    Windowmenu: fix prefs dialog

commit ce838136c6ffba172d1235e8cb9619df6cb2b712
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Oct 26 16:31:25 2016 +0200

    Tasklist: fix prefs dialog

commit 4b875e053f8e0b8f2e448db9fcf51b79301c1bf6
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Oct 26 16:29:19 2016 +0200

    Systray: fix prefs dialog

commit 0d956fc43f3b95308b5695f552fe859c3dde10fe
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Oct 26 16:14:40 2016 +0200

    Separator: fix prefs dialog

commit f31b6dce40ab8516b23c5bd6fdd61d63dfc4b738
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Oct 26 16:13:32 2016 +0200

    Pager: fix prefs dialog

commit 7fba101785091218396c1ece65ae908296c5bc5d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Oct 26 16:11:56 2016 +0200

    Launcher: fix prefs dialog

commit d9bfc532b7fba1bd760b00241b6772d5f6fa6860
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Oct 26 16:08:03 2016 +0200

    Directory menu: fix prefs dialog

commit d9f2bab27fcd309bc99366b8cbe4d37d0fbda21e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Oct 26 13:41:12 2016 +0200

    Clock: fix showing and hiding elements in prefs dialog

commit c1248249606fb0188a0878e5519902e8a804fd1f
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Oct 26 13:34:01 2016 +0200

    Clock: fix prefs - todo: fix show/hide portions

commit c00402ff11f276459f72e10ad214662f82a13a04
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Oct 26 13:08:29 2016 +0200

    Applications menu: fix prefs dialog

commit 7892e32efebcaa62e101d341092df6f5a8161b20
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Oct 26 13:01:45 2016 +0200

    Action buttons: fix prefs dialog

commit f3dd3f66cec4555c888aeff0e1e54774f4454756
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Oct 26 12:56:12 2016 +0200

    Fix Add Plugin dialogs scrolledwindow

commit 763da8b2c7a171b8b4e6505e96253527b8d449da
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Oct 26 11:08:17 2016 +0200

    Further improvements to the main panel prefs dialog

commit 07b6f4f941b8be5574ca90735aa00702b0be0dd4
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Oct 26 00:49:28 2016 +0200

    Fix the preferences dialog

commit 34eafb1f0f206d12a4a0fc6897599bd5c0b0d780
Author: Adam Purkrt <adam@purkrt.net>
Date:   Wed Jul 6 23:59:33 2016 +0200

    Correctly initialize show-button-title setting in applicationsmenu (Bug #11540)

commit 300b20a345b56df2d8c1a78c192710ea7bfa7139
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Aug 8 15:16:20 2015 +0200

    When it is installed, show launcher for xfpanel-switch in the preferences

commit 18ae3825a3ad846d5849b47a6d86dd1a2e4988fd
Author: Thaddaeus Tintenfisch <thad.fisch@gmail.com>
Date:   Fri Feb 20 21:26:24 2015 +0100

    Do not use widget snapshot as tasklist draw icon

commit ed91fd6fd3cd6ba142e07298387237484fd3851b
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Thu May 14 23:56:11 2015 +0100

    DirectoryMenu, Open in terminal doesn't work with terminator. Bug #11742
    
    Related bug: #10270
    
    Pass working-directory as an argument only when requested.
    That is, only when starting FileManager, not TerminalEmulator.

commit 4068b7248087b27b8589a639e84cb8fda56cbe7a
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Thu May 14 23:17:13 2015 +0100

    Directory menu - selected directory not saved, bug #10331
    
    Author: Filipp Andjelo <filipp.andjelo@gmail.com>
    
    Directory Menu's setting panel does not save/show the selected directory and the browsing always starts from the user's home.
    Changing directory name in ..../xfconf/xfce-perchannel-xml/xfce4-panel.xml does nothing with this issue (it's overwritten with the user's home path).
    The only solution (I found) is to change the value in "xfce settings editor".

commit b1f812d21c4a8ef0134b94517320b90b8906ec27
Author: Peter de Ridder <peter@xfce.org>
Date:   Sat Feb 28 16:19:11 2015 +0100

    Use display_name as title of the confirmation dialog
    
    Bug: 11494
    Enables localization of dialog titles.

commit f063b2ce2f3a7f9a922f482ad5671dd108b78323
Author: John Lindgren <john.lindgren@aol.com>
Date:   Sat Feb 28 10:27:33 2015 +0100

    Use actual output geometry to place panels
    
    Bug: 11058
    
    The logical screen width/height as reported by X may be larger than
    the outer bounds of all the monitors combined.
    
    Compute the actual outer bounds of the monitors and place the panel
    accordingly.
    
    But keep the struts based on the logical screen width/height as this is
    what the standard expects.

commit 19b0acc6ca84a3cdf2b74ae9d65322b0ad41417f
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Oct 25 22:41:09 2016 +0100

    Removed exo macros

commit a8b98d800e75695f28571ffa0ce3bc7e184027b0
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat Feb 14 23:40:18 2015 +0000

    Grouped icons sometimes are wrongly rendered as a mini-icon (bug 10846)
    
    Author: Mauro Giubileo AKA amigamagic <debianmaverick@gmail.com>

commit 23fa25fb458915a4f59589e6a71b74d5a2be8dc1
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Feb 11 23:57:28 2015 +0000

    Renamed icon (bug 11513)

commit 3c22ae5f7570064a67b31ca0628a95589e5b1192
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Thu Feb 5 02:03:06 2015 +0000

    Set window wrapping behavior
    
    Disabled window wrapping when scrolling over the tasklist plugin.
    Window wrapping can be enabled by setting a hidden boolean property:
    /plugins/plugin-#/wrap-windows            true

commit 60ebd2da6fee552708333785158bb2a7b00c5d9d
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Thu Feb 5 01:41:45 2015 +0000

    Set workspace wrapping behavior (bug 6401)
    
    Disabled workspace wrapping when scrolling over the pager plugin.
    Workspace wrapping can be enabled by setting a hidden boolean property:
    /plugins/plugin-#/wrap-workspaces            true

commit e451a4b58fdcef6e34a67b12094b3d6fd561d729
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Jan 25 02:19:26 2015 +0000

    Do not descend to directories that are symlinks.
    
    This avoids possibility of infinite loops during recursion.
    The assumption is that all directories are still in /usr/share/zoneinfo,
    that is, none of the symlinks point outside of it.

commit 440060496c620ba90ad0e2ba4209ba032dfd474d
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Nov 19 22:19:35 2014 +0000

    Don't save the session during unattended shutdown
    
    Previous commit accidentally removed this feature. Bringing it back.

commit a1786406931d01499719f1aec344b6a3631399a6
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Nov 19 09:37:54 2014 +0000

    Panel action button Logout always save session (bug #7930)

commit b4d15e68a448e0f938cd6d22654dad6e1ead7d0b
Author: Jannis Pohlmann <jannis@xfce.org>
Date:   Mon Jul 28 02:07:46 2014 +0200

    Make panel application depend on libwnck
    
    This will be needed for intelligent autohiding, which is implemented by
    monitoring the current WnckScreen for active window changes and hiding
    the panel whenever the active window geometry overlaps with the panel.

commit e16f882a2dc068af87e4765b2d00c0bfae42802a
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Jun 22 10:56:23 2014 +0100

    Cleanup

commit ee5d4259c7772a36e252bb78375406fd67724d6a
Author: Petr Gajdůšek <gajdusek.petr@centrum.cz>
Date:   Sun Oct 14 07:49:28 2012 +0200

    Actions: Fix panel autohide broken by the actions menu (bug #8960)
    
    Check the button toggle status in actions_plugin_menu() and avoid to popup
    the menu if the button is not pressed.
    
    Signed-off-by: Petr Gajdůšek <gajdusek.petr@centrum.cz>

commit b0782dc2bf199613aa93433f01a5af07f196ff96
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed May 28 23:06:58 2014 +0100

    ApplicationsMenu: fixed wrong initial icon size in some themes

commit 623dec64b4a2f699a34013467efb3f5273f281c1
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Fri May 16 22:54:30 2014 +0100

    Tasklist, blocking event interfered with button highlight.
    
    Especially visible with minimized windows. The button was stuck
    in "half active" state (normally inactive, but rendered as active when
    mouse cursor was above it).

commit ff19dc0a2919c1c28cf710abeb70e9fd1134a02e
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Oct 25 22:32:25 2016 +0100

    Applications Menu: changed default button title to "Applications"

commit 666bb0f2be1f3017d3e2a5c983ef46be89b3686d
Author: Andre Miranda <andreldm1989@gmail.com>
Date:   Wed May 14 21:46:03 2014 -0300

    Scroll wheel cycling wrap

commit b2ea73a5bb634ca164a49c0f337134e23f9b55b8
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Thu May 15 02:31:07 2014 +0100

    ArrowButton: make sure the button relief is preserved during blinking

commit ca26b39d4675484091e0ed416a4f1054206ec7b5
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed May 14 20:24:45 2014 +0100

    Tasklist, fixing race condition between desktop and window switching
    
    In some cases clicking on a button switches to another desktop but fails
    to activate the application (another, previously activated window gets
    the focus).
    
    Not sure why gtk_main_iteration works and not e.g. XSync but it fixes
    the problem on affected systems.

commit ae992f8328b2772dd5feb81be95d5ba54c4e0326
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed May 14 20:20:35 2014 +0100

    Tasklist, removed an optimization causing problems on some systems.
    
    This optimization makes little difference to performance but causes
    problems in some situations where more than one button become active
    at once.

commit de4a30d57ae5055df39c34f2f7ea6d29c97b10b4
Author: Jannis Pohlmann <jannis@xfce.org>
Date:   Sun Jul 27 19:04:45 2014 +0200

    Fix typo in a debug message

commit cfb1cd61025da64fd903598c427492762f9e9fa3
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat May 10 00:28:55 2014 +0100

    Action buttons: fix compilation warning

commit 48ad5c6eb4b5ffa6e6f84ca1cdd6a87f9ce3c48e
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat May 10 00:22:26 2014 +0100

    Action buttons: default to a horizontal button layout in the deskbar mode

commit 5a64b644c495bd0ab350019be804251cc1f7a5b8
Author: Eric Koegel <eric.koegel@gmail.com>
Date:   Wed Feb 12 19:03:34 2014 +0300

    Fix transparency with alpha being 100 (Bug 10658)
    
    A panel with style set to 'none (use system style)' and alpha to
    100 is still affected by the problem which can be triggered manually
    by launching another indicator after the initial panel start. This
    patch removes an unneeded check that was causing the issue. Thanks
    to Thaddäus Tintenfisch for reporting the issue and finding the
    exact part of the code that needed to be corrected.

commit c249913c356eece0a41593c3db0d4584de29204a
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Fri Jan 17 00:21:17 2014 +0000

    Improve the tasklist multimonitor handling.
    
    The tasklist widget has an option to only show windows from the
    current monitor. This previously worked by calculating the centre
    pixel of the window, and then testing that against the monitor.
    However, it is possible to position a window such that the centre
    pixel does not appear on any monitor.
    
    Instead, find the monitor which has the largest intersection with
    the window and display the window button there.

commit eba3eb3ff7e27e57a1055529a4476bbe601490d7
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Jan 7 02:26:50 2014 +0000

    Bug #10582 scroll the items list automatically to keep the moved item
    visible at the new position
    
    (Raphael Groner <projects.rg{at}smart.ms>)
    
    + some cleanup.

commit 96ba862e3561d6ccc8dcce8424a708a674a29ca0
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Jan 7 02:17:49 2014 +0000

    Preserve the current item selection when rebuilding the item store.

commit fa8b96f63e9f37f43d02af0ab627d66cf36c42e9
Author: Arnout Engelen <xfce@bzzt.net>
Date:   Thu Dec 26 18:31:05 2013 +0100

    Set EWMH client type to WNCK_CLIENT_TYPE_PAGER (bug #10508).
    
    This is for window managers to tell them a pager or tasklist
    requested the action.

commit 6514d86d6fb2b2ee1e262da2012fa3c396c3fba9
Author: Eric Koegel <eric.koegel@gmail.com>
Date:   Mon Dec 23 11:53:02 2013 +0300

    Fix transparency issues with GTK3 plugins
    
    This patch uses some GTK3 CSS magic written by Simon Steinbeiß to
    make the GtkPlug button in the panel transparent. Small changes
    were made to the wrapper_plug_draw code as well, i.e. no need to
    check GTK_WIDGET_IS_DRAWABLE since gtk does this before calling
    the draw signal. It also transforms the draw coordinates from
    widget-relative back to window-relative.

commit 3002aebd9fce0098c951eece05bf32cec8933486
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Oct 25 21:57:27 2016 +0100

    Compilation fix

commit 7c1454adb2a824fa1a2009a6bdd6fd17a51bb1d8
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Oct 25 21:57:13 2016 +0100

    Further pager fixes and cleanup
    
    Included commits:
    pager: fallback for case when pager is not yet set
    pager: recalculate size when panel size changes

commit e9d6b5e41fed6f3db59f7904d303dc1baeb053de
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Oct 25 21:55:47 2016 +0100

    Plugins crash with X-XFCE-API=2.0, reverting to 1.0.
    
    Not sure why.

commit d50965d9f28c157876ad0df0c5501d21e0ffbbbf
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Fri Dec 20 03:38:39 2013 +0000

    pager: fixed wnck pager aspect ratio in deskbar mode
    
    Previously we were relying on new api added in libwnck-2.31.
    Unfortunately, stable version of libwnck was never released and the API
    was not added to libwnck-3.
    
    This commit changes the method of setting the aspect ratio.
    Aspect ratio is now calculated in the plugin using screen dimensions.
    
    One minor limitation of this method is that we are not accounting
    for wnck pager frames, so the aspect ratio may be slightly inaccurate.

commit f576cdc2f485950b80e249271e3e1e1e33818198
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Dec 18 19:55:28 2013 +0000

    Make sure version API is set.
    
    Start-up crashes of external plugins resulted in API being not set properly,
    Then, the panel was trying to use a non-existing "wrapper" binary.
    This prevented normal crash reporting mechanism from working and resulted
    in an "empty" plugin being inserted into the panel.

commit 8e326ded48284d341726490ffc1bbfc99f5f5a83
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Nov 30 17:12:18 2013 +0100

    Fix potfile.

commit aa39ebbedcac16a0eeaa1b742d0a357d269f67fa
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Aug 2 22:00:38 2013 +0200

    Use new GarconGtkMenu.
    
    # Conflicts:
    #       configure.ac.in
    #       plugins/applicationsmenu/applicationsmenu.c

commit c0fa7afe5754b27d258fa1cfa915818b739ef7e1
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Jul 29 19:01:52 2013 +0200

    Bump all glade gtk versions to 2.24.

commit 6860da2be74cab07343a9895fd31b138699d445d
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Jul 29 18:59:38 2013 +0200

    Tasklist: Make middle-click action configurable.
    
    Allow the set different actions to middle-click:
    
    Nothing:
    Nothing happens.
    
    Close Window:
    Do i have to explain?
    
    Minimize Window:
    Only minimize the window, this also means button-1
    events never minimize, only activate. So you never
    get lost in minimized windows anymore.
    
    # Conflicts:
    #       plugins/tasklist/tasklist-widget.c

commit 63c0d3ee5d989fc5131586d88b2c55d9e4d1b376
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Oct 25 00:37:42 2016 +0100

    Directorymenu: Pass path to argument (bug #10270).
    
    # Conflicts:
    #       plugins/directorymenu/directorymenu.c

commit c8f8041f870b8af619a8828be7705afdeb26225c
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Oct 25 00:19:05 2016 +0100

    diff from nick/gtk3 with minor clean up

commit 33d058b0d23c8a0ad1fe29c3cb2d1feedf119822
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Oct 24 23:45:21 2016 +0100

    Bump revision number to 4.13.0git for Gtk3 port

commit 1fc7b285b56ad56b33efebdcc582caa367309aa9
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Oct 24 22:44:54 2016 +0100

    Back to development.

commit 39f4f76b1760cddb49792fee741bc567f9d4c441
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Oct 24 22:43:02 2016 +0100

    Updates for the release and make distcheck fix

commit 732262b7e129bd7fb79786c54b06c24ae108e2ad
Merge: 825844e31 1118b1adb
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Oct 24 22:21:34 2016 +0100

    Merge branch 'xfce-4.12'

commit 825844e31aa4cdf17206dcfbe6d5fcb2b41c2571
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Thu Oct 6 06:30:30 2016 +0200

    I18n: Update translation ko (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 2dacabbf05c6bdf424d8d07525c1faefc8812c2e
Author: Anonymous <noreply@xfce.org>
Date:   Sat Sep 17 00:30:30 2016 +0200

    I18n: Update translation lt (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d76b2521ec04ad11c43e2f77b5977568a7f20d58
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Tue Aug 23 18:30:41 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 8a7c1b6b260a38b9f462a1ab0ffa92f6c30f8953
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date:   Mon Aug 15 12:30:44 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit bfd311601f1eefb4467f98c58c0bbf42614f970d
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 12 18:30:44 2016 +0200

    I18n: Update translation lt (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6d55c203896aa1d3c8c39d8946f229eeb9f581d3
Author: Adam Purkrt <adam@purkrt.net>
Date:   Wed Jul 6 23:59:33 2016 +0200

    Correctly initialize show-button-title setting in applicationsmenu (Bug #11540)

commit 35af8bfa77d07dba0c3a60d4bf539b30378cfa8c
Author: Sergey Alyoshin <alyoshin.s@gmail.com>
Date:   Wed Jul 6 00:30:28 2016 +0200

    I18n: Update translation ru (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 54b19ff5d0c5be5ae9a9d71a0572c6cce389167f
Author: Anonymous <noreply@xfce.org>
Date:   Sat Jul 2 00:30:27 2016 +0200

    I18n: Update translation lt (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 966ee1943d1d08e5321085f9d3367346506fc7d1
Author: Anonymous <noreply@xfce.org>
Date:   Fri Jun 24 18:30:53 2016 +0200

    I18n: Update translation lt (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit ec9f144248a520fb63b3d1506d1269f3ad905ac7
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date:   Mon Jun 20 18:30:37 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5b027d6ff386ceae386ebfb4103b4df2ebd84ac1
Author: Tobias Bannert <tobannert@gmail.com>
Date:   Wed Jun 8 18:30:34 2016 +0200

    I18n: Update translation de (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 752a9781a87f477ce4ff9cbb6db1d1568525916d
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date:   Mon Jun 6 18:30:57 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b738a2d83f41d2c30942245cdd4b0fce6cfec1b6
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date:   Mon Jun 6 06:30:44 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9c4d4795ac9ab49dcfa4675c96b300e681a90278
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date:   Mon Jun 6 00:30:38 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit dc80a63e381b6406e304ff9252e315f61b123118
Author: Tobias Bannert <tobannert@gmail.com>
Date:   Tue May 24 18:30:29 2016 +0200

    I18n: Update translation de (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 28b10b7f6cdfa383158282ef9c92c104f0f4be1d
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date:   Fri May 20 18:30:28 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1f2d853255ce143008ce5da751fc300ac99a492c
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date:   Wed May 4 18:30:36 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit fdd062b7933f7b7046af6b546f4997f383599863
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date:   Wed May 4 12:30:41 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 842528d3eda7b6cd4ed631ffa67dc4bc542d0e7a
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date:   Wed May 4 00:30:28 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit eefc29174605dd921fe8e7feb93b6747a17518ca
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date:   Tue May 3 18:30:38 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1f9d6e81bc82e79ad4edc0dbdd6f51131b7d74c3
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date:   Tue May 3 12:31:03 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 4b6a7f713040fc6a665872f13b435b2512bcd3ef
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date:   Tue May 3 00:30:41 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit ac8fdf28d060d69ba396a6733cd1e56259bb1d15
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date:   Mon May 2 18:31:01 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a74bc20eba595275ade13dee0cd5ef48ecb6b0a9
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date:   Mon May 2 12:30:28 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit ac894f409a893d3af9d390cc13129cc5b4600e86
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date:   Mon May 2 00:31:16 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d01c391faba8c23f1ee4cce4f6e9e54a171df664
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date:   Sun May 1 12:31:13 2016 +0200

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 61608e73094ca3b5c3a0379641911c21509723a3
Author: Panagiotis Tabakis <tabakisp@gmail.com>
Date:   Tue Apr 19 00:30:28 2016 +0200

    I18n: Update translation el (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 4c3aa858d50d0f881c17d63066ba756dfcb11e7e
Author: Panagiotis Tabakis <tabakisp@gmail.com>
Date:   Mon Apr 18 18:30:35 2016 +0200

    I18n: Update translation el (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 15884b18c6d421b56b1d5167f44f41a10788f967
Author: gyeben <gyonkibendeguz@gmail.com>
Date:   Sat Apr 2 00:30:40 2016 +0200

    I18n: Update translation hu (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a40fd07ff99a50aea599783e8dc590b7592f36de
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Mar 29 18:30:59 2016 +0200

    I18n: Update translation hu (99%).
    
    394 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 0350dfba7c34b33e1008b363b56cbfa0138a8f08
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Mon Mar 21 18:31:25 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 55f6f05c9bb514a13f0582827bba4dd3ce597d13
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Sun Mar 20 12:31:10 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6b4185a7ef19785ab049ceac9fc1ff1333ed8312
Author: Cédric Valmary <cvalmary@yahoo.fr>
Date:   Fri Mar 18 18:30:39 2016 +0100

    I18n: Update translation oc (99%).
    
    394 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 89e9c16bad2d4d17860804303e27634bb54dde06
Author: Anonymous <noreply@xfce.org>
Date:   Fri Mar 18 00:31:17 2016 +0100

    I18n: Update translation lt (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3e56986914c6b54be3404bf1c9a7899f6e205356
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Wed Mar 16 18:31:09 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6039750a2760ade9c4d14a994e5e59e8d4e50c7a
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Tue Mar 15 18:31:26 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 7cbf6cf7d336808584e92fefa6a673fb4659452d
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Sun Mar 13 18:30:58 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 571c66343a69f171e1f04b32f6cdef3459e9fcff
Author: Cédric Valmary <cvalmary@yahoo.fr>
Date:   Fri Mar 11 18:31:37 2016 +0100

    I18n: Update translation oc (99%).
    
    394 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 455d7db2a4267a352b58f38b4ff1115dac95ebaf
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Fri Mar 11 18:31:37 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 59436f7d118c1bf425cff955f961d1c604440924
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Fri Mar 11 12:31:29 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 398c6fd0e4e0fc411402c88278aab42081349758
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Thu Mar 10 18:30:39 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 215b743ea57f4d09100f9db8dda2f7a9ad79ec7f
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Thu Mar 10 12:30:50 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 77673dd4d812e88e5a8520590763725c375f4ebb
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Thu Mar 10 00:30:56 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 472ea254eef84629c09b262b289d43fe395c3713
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Wed Mar 9 18:30:43 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c670ddd917e1388e3cc247322f8cfa17d3a6f3f8
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Wed Mar 9 12:30:27 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 410d48e2fd17ce877f23690d451e30a50517b304
Author: Apostolos Papadimitriu <apostolos.papadimitriu@gmail.com>
Date:   Mon Mar 7 12:30:28 2016 +0100

    I18n: Update translation el (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 8ad9a5410d7895b1f35077c570d4ed1bb23f07cb
Author: Michael Findlay <translate@cobber-linux.org>
Date:   Mon Mar 7 06:30:48 2016 +0100

    I18n: Update translation en_AU (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c47a8b2c285846845cbb52393125fa0883cc5bb9
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Sun Mar 6 18:31:07 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f35d86a84e41d5854fc0cabd09603a5bd06bcc2c
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Fri Mar 4 18:31:19 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 2bcf2ef62eceba7eed3c275267664b8016a1c858
Author: Nobuhiro Iwamatsu <iwamatsu@gmail.com>
Date:   Fri Mar 4 06:30:27 2016 +0100

    I18n: Update translation ja (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 20f648dfcb2c381fe14f0344c9013042cfd7eac2
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Fri Mar 4 00:30:40 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 4fbe934d6ddd8f5bb42a6879a92179dd01d6bdd4
Author: Anonymous <noreply@xfce.org>
Date:   Wed Mar 2 00:31:06 2016 +0100

    I18n: Update translation lt (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 685dae921d6621e26e1bc52c4eab14e066e8f314
Author: Anonymous <noreply@xfce.org>
Date:   Wed Mar 2 00:31:06 2016 +0100

    I18n: Update translation ar (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3676c4d77d5d60b6ffd75c9e19a8a28184616d76
Author: Xfce Bot <transifex@xfce.org>
Date:   Tue Feb 23 12:30:49 2016 +0100

    I18n: Update translation oc (98%).
    
    391 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a3b17f51249a1f4710d386986f69d373b40d5311
Author: Anonymous <noreply@xfce.org>
Date:   Thu Feb 18 00:30:28 2016 +0100

    I18n: Update translation lt (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 352471905b2fbc1fcd7113e9556dbb312860368f
Author: Pasi Lallinaho <pasi@shimmerproject.org>
Date:   Wed Feb 17 00:30:27 2016 +0100

    I18n: Update translation fi (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 8096b326e2a63d00bbfd75249192fb14f1737e0f
Author: Påvel Nicklasson <pavelnicklasson@bahnhof.se>
Date:   Tue Feb 9 18:30:34 2016 +0100

    I18n: Update translation sv (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d201ac05f974c975b5367432f7f92f288955a230
Author: Egoitz Rodriguez Obieta <egoitzro@gmail.com>
Date:   Mon Feb 8 18:30:41 2016 +0100

    I18n: Update translation eu (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 90fd19a1010daf9cf1ac44d6c2984731597f456b
Author: Apostolos Papadimitriu <apostolos.papadimitriu@gmail.com>
Date:   Mon Feb 8 18:30:41 2016 +0100

    I18n: Update translation el (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 16d774f668d11584037f25d5ad0c6f39fb6f6dca
Author: Apostolos Papadimitriu <apostolos.papadimitriu@gmail.com>
Date:   Sat Feb 6 18:30:34 2016 +0100

    I18n: Update translation el (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 49268f31003820f91ccaf1ef00f708b53ae07a32
Author: Apostolos Papadimitriu <apostolos.papadimitriu@gmail.com>
Date:   Fri Feb 5 00:30:40 2016 +0100

    I18n: Update translation el (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 19d0d519fc9928b08aff9a4a112c0ef7b337ff71
Author: Apostolos Papadimitriu <apostolos.papadimitriu@gmail.com>
Date:   Thu Feb 4 18:30:32 2016 +0100

    I18n: Update translation el (99%).
    
    394 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c95bba343e041d1dc8a487da02fffbbf8091f334
Author: Apostolos Papadimitriu <apostolos.papadimitriu@gmail.com>
Date:   Thu Feb 4 06:30:33 2016 +0100

    I18n: Update translation el (99%).
    
    393 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 7e814a7fceef686af51158ca33453b8dec7fd9b1
Author: Apostolos Papadimitriu <apostolos.papadimitriu@gmail.com>
Date:   Thu Feb 4 00:30:37 2016 +0100

    I18n: Update translation el (99%).
    
    392 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit faab538f27516279f94f32e36b349315c591a3cd
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Mon Feb 1 00:30:48 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f2944c0714723cff50e99b48405278a8e199497e
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Wed Jan 27 18:30:31 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c6fca4f52d1bbac5f535e228f2eb0be642d93372
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Sat Jan 16 18:31:05 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit beb85188b9840001b17231a731134bb7e830eafc
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Sat Jan 16 00:30:58 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e91fc4c945ff2935a59dbdd620fe74ae5f2d32fd
Author: Elishai Eliyahu <e1907@mm.st>
Date:   Fri Jan 15 00:31:02 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 4cbad4f539b9a82c0ed8dcd06ac1ed580168a664
Author: GenghisKhan <genghiskhan@gmx.ca>
Date:   Thu Jan 14 18:30:55 2016 +0100

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f1dc9811f728457d7d584f318823889fc1d934c9
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jan 13 06:31:05 2016 +0100

    I18n: Update translation lt (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e2d5844c8bd98cde756de698aa9dd4357453660b
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jan 13 00:30:52 2016 +0100

    I18n: Update translation lt (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 38520192ffca51b0fe86bc554a68ba5560c3898e
Author: Manolo Díaz <diaz.manolo@gmail.com>
Date:   Fri Dec 25 18:30:30 2015 +0100

    I18n: Update translation es (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 297a6fc08f19a73d6186762975139320bb206354
Author: Egoitz Rodriguez Obieta <egoitzro@gmail.com>
Date:   Wed Dec 16 00:30:43 2015 +0100

    I18n: Update translation eu (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit ed75c23532be02dd451757b1b2cbc2555309c3e0
Author: Sveinn í Felli <sv1@fellsnet.is>
Date:   Sun Dec 13 12:30:55 2015 +0100

    I18n: Update translation is (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 7fb711c94ce0627aba5ce318c83d558a1f1ae257
Author: Sveinn í Felli <sv1@fellsnet.is>
Date:   Fri Dec 11 18:31:13 2015 +0100

    I18n: Update translation is (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c44a4ce5956e4d7bfb5feffa521292ae2f28eeca
Author: Sveinn í Felli <sv1@fellsnet.is>
Date:   Wed Dec 9 18:30:34 2015 +0100

    I18n: Update translation is (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a51197ab4181a549c3d6b59783974872f73b253f
Author: Davidmp <medipas@gmail.com>
Date:   Wed Dec 9 18:30:34 2015 +0100

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 76fc12af9294853b013d82c258f36597b91cea00
Author: Necdet Yücel <necdetyucel@gmail.com>
Date:   Mon Dec 7 00:30:25 2015 +0100

    I18n: Update translation tr (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 332182f2d9e10a759a0afeb3d7dbcf411dfbb0d9
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Fri Dec 4 12:30:41 2015 +0100

    I18n: Update translation hr (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 10b465f977c4920df36cff4be02d8838cdbab478
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Wed Dec 2 12:30:26 2015 +0100

    I18n: Update translation pl (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a0f90261daac5d74e917f36b613413b43d63ceb9
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Sat Nov 28 12:30:25 2015 +0100

    I18n: Update translation cs (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5eea7c3e73c4b87b87a0cf264e6f71b3c0c3df70
Author: Anonymous <noreply@xfce.org>
Date:   Fri Nov 27 00:30:55 2015 +0100

    I18n: Update translation lt (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1d6bace06ebee591d0d9955b36e5bd2e9e4c42a4
Author: Davidmp <medipas@gmail.com>
Date:   Fri Nov 27 00:30:54 2015 +0100

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 35cc57b0d5fab5c0c4efe82b08874381a1d3219e
Author: Davidmp <medipas@gmail.com>
Date:   Tue Nov 24 00:30:54 2015 +0100

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 4ffd4f6fbc684a818a42a6b7c7a58e2fc7ccfc08
Author: Davidmp <medipas@gmail.com>
Date:   Mon Nov 23 18:30:42 2015 +0100

    I18n: Update translation ca (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 437521465fefd15994e3b8ba5c8911fbc4b4082c
Author: Egoitz Rodriguez Obieta <egoitzro@gmail.com>
Date:   Sun Nov 22 18:30:38 2015 +0100

    I18n: Update translation eu (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e30bf7a8f2c1f558bc9ec252c47ed47ff410980c
Author: Davidmp <medipas@gmail.com>
Date:   Fri Nov 20 12:30:26 2015 +0100

    I18n: Update translation ca (98%).
    
    391 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5defbd7f7ec2ae2d161c01ce2c1e0755347ad78a
Author: Davidmp <medipas@gmail.com>
Date:   Wed Nov 18 18:30:42 2015 +0100

    I18n: Update translation ca (98%).
    
    389 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3daa7d73f293945bd4275329cca2cd7dd65da972
Author: Davidmp <medipas@gmail.com>
Date:   Tue Nov 17 12:30:25 2015 +0100

    I18n: Update translation ca (98%).
    
    389 translated messages, 6 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit fa8edb913eceaaf4cf27a99a04e5e452c3bae49d
Author: gabrieltandil <gabriel.tandil@gmail.com>
Date:   Sun Nov 15 18:30:27 2015 +0100

    I18n: Update translation es (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 960b88d5e0929616a98b40eeb8d5b344d4651e57
Author: enolp <enolp@softastur.org>
Date:   Sun Nov 15 06:31:35 2015 +0100

    I18n: Update translation ast (97%).
    
    384 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 434b90fb2412ff904e79ee067a659fc479132c8d
Author: enolp <enolp@softastur.org>
Date:   Sun Nov 15 00:31:08 2015 +0100

    I18n: Update translation ast (97%).
    
    384 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 46ae1a3b45bf0ad43db9fe28faa6e6364cafea1b
Author: Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>
Date:   Tue Nov 10 00:30:44 2015 +0100

    I18n: Update translation da (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e74ba7358bac900526b4fd119ee42c4800a15769
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Sat Oct 31 18:30:48 2015 +0100

    I18n: Update translation pt (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6512ed427604eb8e40b8633ce198f47ba6f5f14d
Author: Dušan Kazik <prescott66@gmail.com>
Date:   Fri Oct 30 12:30:59 2015 +0100

    I18n: Update translation sk (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 17a015bae09eaa20a53da7a4926599d58f48645c
Author: Petr Šimáček <petr.simacek@gmail.com>
Date:   Thu Oct 29 12:30:26 2015 +0100

    I18n: Update translation cs (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e84573c0f18ea52ceafd0d733961c34ed4f86435
Author: Harald <haarektrans@gmail.com>
Date:   Thu Oct 29 00:30:27 2015 +0100

    I18n: Update translation nb (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1bd2bf8abe1d302894bf1a6800a9549f17db911e
Author: Xfce Bot <transifex@xfce.org>
Date:   Thu Oct 22 18:30:40 2015 +0200

    I18n: Update translation en_GB (98%).
    
    391 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 20337a54088dd114a6eb1b5a93e27eb9c8d09049
Author: Dušan Kazik <prescott66@gmail.com>
Date:   Thu Oct 22 12:30:50 2015 +0200

    I18n: Update translation sk (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1eceef6658cf406840ce589e56b1362fb6a374ef
Author: André Miranda <andreldm1989@gmail.com>
Date:   Thu Oct 22 00:30:26 2015 +0200

    I18n: Update translation pt_BR (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1721085701c6b36b43b779fe8eab6a6da23f44a9
Author: abuyop <abuyop@gmail.com>
Date:   Fri Oct 16 18:30:26 2015 +0200

    I18n: Update translation ms (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit de1e949da6da062474306125763144692a29d4e1
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Wed Oct 14 18:30:25 2015 +0200

    I18n: Update translation it (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f891bd8ef5ede21811831147b82b9c4107b32db4
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Mon Oct 12 18:30:25 2015 +0200

    I18n: Update translation uk (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3b39ed81df1ac3365f385d90f08c72ca42751421
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sun Oct 11 18:30:25 2015 +0200

    I18n: Update translation kk (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 35492c37f6a8b6c68d12c110fff72ea98bab3b8b
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Wed Oct 7 18:30:26 2015 +0200

    I18n: Update translation nl (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 09b68521f00b2439b2cb960dfa0558506a06c48e
Author: Sergey Alyoshin <alyoshin.s@gmail.com>
Date:   Sun Oct 4 00:30:25 2015 +0200

    I18n: Update translation ru (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 529af44a71f4fa4addffa6a1610fe1eb04f5635f
Author: Sungjin Kang <potopro@gmail.com>
Date:   Fri Oct 2 18:30:25 2015 +0200

    I18n: Update translation ko (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 990e70248cdb1755f8bbeef27124d8419ea541c6
Author: Michael Findlay <translate@cobber-linux.org>
Date:   Thu Oct 1 12:30:33 2015 +0200

    I18n: Update translation en_AU (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f8444fea2cd3942873a9ccf551b31a9c83bc021c
Author: Anonymous <noreply@xfce.org>
Date:   Thu Oct 1 00:30:49 2015 +0200

    I18n: Update translation lt (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 18b69ad66086d177c2d0c34b723463e329a15112
Author: Påvel Nicklasson <pavelnicklasson@bahnhof.se>
Date:   Tue Sep 29 12:31:12 2015 +0200

    I18n: Update translation sv (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 7a3fb7ea4de19c04a536268ab62bca69e5ae85d8
Author: gabrieltandil <gabriel.tandil@gmail.com>
Date:   Mon Sep 28 18:30:29 2015 +0200

    I18n: Update translation es (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6fce6dbda37cad92c4b6bd131ca3b40737c99fdc
Author: Tobias Bannert <tobannert@gmail.com>
Date:   Mon Sep 28 18:30:29 2015 +0200

    I18n: Update translation de (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c6de9cbb8b8946497121746d315f0fa82174c075
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date:   Mon Sep 28 12:30:31 2015 +0200

    I18n: Update translation th (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 8d5fa9522114cba86bfc295508904ed575d13da0
Author: Edin Veskovic <edin.veskovic@openmailbox.org>
Date:   Mon Sep 28 12:30:31 2015 +0200

    I18n: Update translation hr (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit cd79af7fac0207f2e0bc6f4d603e6a5ae0723f92
Author: GenghisKhan <genghiskhan@gmx.ca>
Date:   Mon Sep 28 12:30:31 2015 +0200

    I18n: Update translation he (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit efa493b68adcb05ce26455abab5fe9923c33cb1f
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Mon Sep 28 12:30:31 2015 +0200

    I18n: Update translation fr (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 0f724b5e5dcea302feb9d36aab33541b5bce1160
Author: Jeff Huang <s8321414@gmail.com>
Date:   Mon Sep 28 06:30:29 2015 +0200

    I18n: Update translation zh_TW (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 34a1f96c86d39eab6dd67a0aa121e98a029b75d2
Author: Anonymous <noreply@xfce.org>
Date:   Mon Sep 28 06:30:29 2015 +0200

    I18n: Update translation zh_CN (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3a55c5d5eea686966dd97f7f7554fdd1c72aaffe
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Aug 8 15:16:20 2015 +0200

    When it is installed, show launcher for xfpanel-switch in the preferences

commit 1118b1adb339f1ab3a201cf832322318aa44dfa8
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sat Aug 8 15:16:20 2015 +0200

    When it is installed, show launcher for xfpanel-switch in the preferences

commit 80524976f178c9b80cb55ffa3362193d0106203f
Author: Anonymous <noreply@xfce.org>
Date:   Sun Sep 20 06:31:01 2015 +0200

    I18n: Update translation lt (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 97339be19dd19beb576ea1e0322ca3702dca75f7
Author: Xosé <xosecalvo@gmail.com>
Date:   Sat Sep 19 00:31:21 2015 +0200

    I18n: Update translation gl (93%).
    
    369 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e40105066a8d982591217fe2163f12e401c43ad7
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Mon Sep 14 18:30:27 2015 +0200

    I18n: Update translation pt (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 7f6065a0c5392553b0870dffeff849ab5dc87336
Author: Anonymous <noreply@xfce.org>
Date:   Tue Jul 21 18:30:46 2015 +0200

    I18n: Update translation lt (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 43ed14f386512a3d47348ee833d712aefcbe1f11
Author: Påvel Nicklasson <pavelnicklasson@bahnhof.se>
Date:   Mon Jul 20 00:31:38 2015 +0200

    I18n: Update translation sv (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 8dc83f507d7340fa46c5b8927e5b320c5595fb7d
Author: Thaddaeus Tintenfisch <thad.fisch@gmail.com>
Date:   Fri Feb 20 21:26:24 2015 +0100

    Do not use widget snapshot as tasklist draw icon

commit aa96ac3aa49d2b893ba52f03fb3e3f724d0674cb
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jul 1 12:31:00 2015 +0200

    I18n: Update translation lt (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5acc33486622738de11341716612414fb771fe86
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Fri Jun 26 12:30:34 2015 +0200

    I18n: Update translation fr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 29b3f5caabaa49eb85035c417d9449bc268e53cc
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jun 24 18:30:57 2015 +0200

    I18n: Update translation lt (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 954c7e3d59114355744de795b2ef14226bd1d06d
Author: Manolo Díaz <diaz.manolo@gmail.com>
Date:   Sun Jun 21 18:30:48 2015 +0200

    I18n: Update translation es (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 4eacc0aea3627459c9d66b3d01870e42bfea082a
Author: Kevin Brubeck Unhammer <unhammer+dill@mm.st>
Date:   Tue Jun 16 18:31:04 2015 +0200

    I18n: Update translation nn (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b60a503f77f4f989d6acd95eaef03227ae4b1d6d
Author: Anonymous <noreply@xfce.org>
Date:   Mon Jun 15 00:30:33 2015 +0200

    I18n: Update translation lt (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit bc48bae4a3b527faca64c9eba2e95966638382c7
Author: Påvel Nicklasson <pavelnicklasson@bahnhof.se>
Date:   Wed Jun 3 18:31:38 2015 +0200

    I18n: Update translation sv (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5565f4cb4db3088cf0a01b5c807c2f57e92ff981
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Thu May 14 23:56:11 2015 +0100

    DirectoryMenu, Open in terminal doesn't work with terminator. Bug #11742
    
    Related bug: #10270
    
    Pass working-directory as an argument only when requested.
    That is, only when starting FileManager, not TerminalEmulator.

commit de8e8fdbc04e1322d5ab88114cb775f4908d3c7d
Author: Pablo Roberto Francisco Lezaeta Reyes <prflr88@gmail.com>
Date:   Fri May 15 00:30:54 2015 +0200

    I18n: Update translation es (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 361929416c4e9b064085e44ab8a7e2c5d0e315b9
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Thu May 14 23:17:13 2015 +0100

    Directory menu - selected directory not saved, bug #10331
    
    Author: Filipp Andjelo <filipp.andjelo@gmail.com>
    
    Directory Menu's setting panel does not save/show the selected directory and the browsing always starts from the user's home.
    Changing directory name in ..../xfconf/xfce-perchannel-xml/xfce4-panel.xml does nothing with this issue (it's overwritten with the user's home path).
    The only solution (I found) is to change the value in "xfce settings editor".

commit 575b5444637bb0760fafd4e0217fe727ddf07753
Author: Ardjuna <Asyura.x@gmail.com>
Date:   Fri May 8 18:30:33 2015 +0200

    I18n: Update translation id (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6bffb1d2fb2eaa64b83e7bd5ece67e0109e5bcda
Author: Fredrik Nyqvist <fredrik@nyqvist.biz>
Date:   Wed Apr 15 00:30:33 2015 +0200

    I18n: Update translation sv (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d852f09c4b0810872f71cbaa0d86e1f2848b35c8
Author: Anonymous <noreply@xfce.org>
Date:   Fri Apr 10 00:30:37 2015 +0200

    I18n: Update translation lt (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit caa9194383357667ac069b1c851d3e437ed751b6
Author: Anonymous <noreply@xfce.org>
Date:   Thu Apr 9 00:31:04 2015 +0200

    I18n: Update translation lt (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 32dd83349549bd11c58f58320efa832dfd61dea6
Author: Anonymous <noreply@xfce.org>
Date:   Fri Mar 20 18:30:37 2015 +0100

    I18n: Update translation lt (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a59714e8a87951326d759027d5f3efa4a1d4d71c
Author: Efstathios Iosifidis <iefstathios@gmail.com>
Date:   Thu Mar 19 00:30:50 2015 +0100

    I18n: Update translation el (98%).
    
    387 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 0dbe65bac2cf8d3b7754b8525514ed8c9cdf3302
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Tue Mar 17 12:30:37 2015 +0100

    I18n: Update translation hr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 934b0973b122f29b2577d4c92e0fc3618ed4d676
Author: Anonymous <noreply@xfce.org>
Date:   Thu Mar 12 12:31:02 2015 +0100

    I18n: Update translation lt (99%).
    
    393 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5dcf630921a54124da2bf8d098132b7644427912
Author: Anonymous <noreply@xfce.org>
Date:   Thu Mar 12 00:30:52 2015 +0100

    I18n: Update translation lt (98%).
    
    389 translated messages, 5 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 2a8b6a58f98d802f8bb7a68bc9f5113c0602bee3
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Wed Mar 11 12:30:39 2015 +0100

    I18n: Update translation zh_CN (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 714941a4e4ae0097a20ea1543c02fda6e15d48d3
Author: Anonymous <noreply@xfce.org>
Date:   Tue Mar 10 12:30:35 2015 +0100

    I18n: Update translation bg (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e550e163e28503684f7715bcd759c272bd376495
Author: Harald Judt <h.judt@gmx.at>
Date:   Sat Mar 7 00:30:41 2015 +0100

    I18n: Update translation de (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5a9e94ab7bd628f5bf6b46ea7ea91cf40b4aee98
Author: Matt Thirtytwo <matt.59491@gmail.com>
Date:   Mon Mar 2 21:18:41 2015 +0100

    Fix compiler warning in clock plugin about shadowed 'time' variable

commit f61f077bc708aed38a54a2f3b7f2faebd5663d9b
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Mon Mar 2 18:30:45 2015 +0100

    I18n: Update translation zh_CN (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b490be7722ec41314ebaa102699ee61597379b74
Author: Tobias Bannert <tobannert@gmail.com>
Date:   Mon Mar 2 00:30:34 2015 +0100

    I18n: Update translation de (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 0884d16400b841fb24c50051294a6af76f03b75b
Author: Peter de Ridder <peter@xfce.org>
Date:   Sat Feb 28 17:32:51 2015 +0100

    Post release tag bump

commit 5839b3540b00587ebf7e9ac64f638f17a2ea7601
Author: Peter de Ridder <peter@xfce.org>
Date:   Sat Feb 28 17:10:41 2015 +0100

    Updates for the release

commit 66ced2044fbaa158c34bfd323a4a712005b2ca56
Author: Peter de Ridder <peter@xfce.org>
Date:   Sat Feb 28 16:19:11 2015 +0100

    Use display_name as title of the confirmation dialog
    
    Bug: 11494
    Enables localization of dialog titles.

commit e93f54f1ee559700b1310b0ead65f9892604831b
Author: John Lindgren <john.lindgren@aol.com>
Date:   Sat Feb 28 10:27:33 2015 +0100

    Use actual output geometry to place panels
    
    Bug: 11058
    
    The logical screen width/height as reported by X may be larger than
    the outer bounds of all the monitors combined.
    
    Compute the actual outer bounds of the monitors and place the panel
    accordingly.
    
    But keep the struts based on the logical screen width/height as this is
    what the standard expects.

commit 99783bc9789b1c62b94f61009046802f50a129de
Author: Mișu Moldovan <dumol@l10n.ro>
Date:   Fri Feb 27 12:30:36 2015 +0100

    I18n: Update translation ro (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 7474f7ce8c5fcf22037a415276ee2793c23839fe
Author: Mișu Moldovan <dumol@l10n.ro>
Date:   Thu Feb 26 12:31:09 2015 +0100

    I18n: Update translation ro (96%).
    
    382 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit efa0e36b7234e666a221f10bfdfe3e10af38e108
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Wed Feb 25 18:30:34 2015 +0100

    I18n: Update translation fr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 12e3d69a201a7ecf2eaa67c89f2271656f9b5574
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Wed Feb 25 00:30:47 2015 +0100

    I18n: Update translation fr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 7187b54aadcb167e5e89c9b9e64714a6cc85d15b
Author: Anonymous <noreply@xfce.org>
Date:   Mon Feb 23 18:30:34 2015 +0100

    I18n: Update translation bg (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f9829c4d4cb468017fb079cff648436382eb7082
Author: Anonymous <noreply@xfce.org>
Date:   Mon Feb 23 12:31:31 2015 +0100

    I18n: Update translation bg (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 038738068e18b647ae73783d5975b3fe5afe14bc
Author: enolp <enolp@softastur.org>
Date:   Mon Feb 23 06:30:59 2015 +0100

    I18n: Update translation ast (96%).
    
    382 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e85befa1499b2805f583e908ea93fa0148d42c56
Author: Anonymous <noreply@xfce.org>
Date:   Mon Feb 23 00:31:00 2015 +0100

    I18n: Update translation sl (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3caa92e59f0653b2bee14df047f003e2d6ac5a8e
Author: Anonymous <noreply@xfce.org>
Date:   Sun Feb 22 18:30:41 2015 +0100

    I18n: Update translation sl (82%).
    
    327 translated messages, 67 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 4d469e077fab1b2b6e80d13faa0275c6f5ca4563
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Sun Feb 22 12:30:40 2015 +0100

    I18n: Update translation pl (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3c0eeb686127bceca22dca1871dfb65aef56eea4
Author: Pablo Roberto Francisco Lezaeta Reyes <prflr88@gmail.com>
Date:   Sun Feb 22 12:30:40 2015 +0100

    I18n: Update translation es (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 62d6ce7a81e3b7bcccb7f4dcbcefbb795a04baa1
Author: Manolo Díaz <diaz.manolo@gmail.com>
Date:   Sun Feb 22 00:30:56 2015 +0100

    I18n: Update translation es (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 15df9c180de6b5c08adab345ffaaa4880f5baaec
Author: Sergey Alyoshin <alyoshin.s@gmail.com>
Date:   Sat Feb 21 18:30:54 2015 +0100

    I18n: Update translation ru (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3ec3995656a4770ffd61c6857749051085a8909e
Author: enolp <enolp@softastur.org>
Date:   Sat Feb 21 18:30:54 2015 +0100

    I18n: Update translation ast (96%).
    
    382 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a5da4d80f9e451b20f92f3c97a3a5f3872607454
Author: enolp <enolp@softastur.org>
Date:   Sat Feb 21 12:30:47 2015 +0100

    I18n: Update translation ast (96%).
    
    381 translated messages, 13 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit edb3977e3c67a8adeb7929ff8c586f0531fb3b45
Author: Allan Nordhøy <comradekingu@gmail.com>
Date:   Sat Feb 21 00:31:04 2015 +0100

    I18n: Update translation nb (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1289f5dacad39e503bc2f34f858090effb042d3d
Author: Pablo Roberto Francisco Lezaeta Reyes <prflr88@gmail.com>
Date:   Thu Feb 19 18:31:21 2015 +0100

    I18n: Update translation es (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit ba12fb406c63dfa2bd5a3b52ae299adbb6376cab
Author: Landry Breuil <landry@xfce.org>
Date:   Tue Feb 17 22:56:31 2015 +0100

    Add .gitignore file for most common patterns/generated files.

commit c86d6d8856be71f0d7f863738aa9c782bc85145d
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat Feb 14 23:40:18 2015 +0000

    Grouped icons sometimes are wrongly rendered as a mini-icon (bug 10846)
    
    Author: Mauro Giubileo AKA amigamagic <debianmaverick@gmail.com>

commit f41489f8aec3f45338f5c2cdb93c4a5e35ae427e
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Feb 11 23:57:28 2015 +0000

    Renamed icon (bug 11513)

commit 3414b9e2a1a5a756cc3adda238920feaab34543a
Author: Sasa Batistic <sasa.batistic@gmail.com>
Date:   Sun Feb 8 18:31:00 2015 +0100

    I18n: Update translation sl (58%).
    
    230 translated messages, 164 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f1a9b75448bca24aad3f1ca190a2ab53b79f9f0a
Author: Anonymous <noreply@xfce.org>
Date:   Sun Feb 8 06:30:45 2015 +0100

    I18n: Add new translation sl (54%).
    
    215 translated messages, 179 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 7933a467559cbf208c51f6d5ba88b51d59a0e86f
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Thu Feb 5 02:03:06 2015 +0000

    Set window wrapping behavior
    
    Disabled window wrapping when scrolling over the tasklist plugin.
    Window wrapping can be enabled by setting a hidden boolean property:
    /plugins/plugin-#/wrap-windows            true

commit 440d8ea23babe6f6b81a4dceb268b72d8c8e35cf
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Thu Feb 5 01:41:45 2015 +0000

    Set workspace wrapping behavior (bug 6401)
    
    Disabled workspace wrapping when scrolling over the pager plugin.
    Workspace wrapping can be enabled by setting a hidden boolean property:
    /plugins/plugin-#/wrap-workspaces            true

commit 718500b0a840ca5ca018bd4c2b0531f663803bc1
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Jan 25 02:19:26 2015 +0000

    Do not descend to directories that are symlinks.
    
    This avoids possibility of infinite loops during recursion.
    The assumption is that all directories are still in /usr/share/zoneinfo,
    that is, none of the symlinks point outside of it.

commit f74b3b452e9e0273082a44ad45dd7c09736e44b6
Author: Adolfo Jayme Barrientos <fito@libreoffice.org>
Date:   Wed Jan 21 12:30:32 2015 +0100

    I18n: Update translation es (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3ee7337e2901802b48726f76777978f69949f0af
Author: GenghisKhan <genghiskhan@gmx.ca>
Date:   Tue Jan 20 18:30:40 2015 +0100

    I18n: Update translation he (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1cfbcde589ebd4f59296202296d9e9e42252b8c1
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Fri Jan 9 00:09:43 2015 +0100

    Simplify check for shaded windows of e01b5aba182

commit e01b5aba18226b52227549f13f6f74dc447464d3
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Wed Jan 7 21:24:37 2015 +0100

    Make panel hide intelligently with shaded windows (bug #11371)

commit 29cf6fe71b904bb8f80449bd8767e975451aa3c3
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Jan 4 14:19:13 2015 +0000

    Back to development

commit 709b2fdef0e563bb1456d53cc50a356c0ab0e9e1
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Jan 4 14:16:59 2015 +0000

    Updates for the release

commit b0e0492df099608db16de15ae4fc80f5a88e60be
Author: Efstathios Iosifidis <iefstathios@gmail.com>
Date:   Sat Dec 27 00:31:00 2014 +0100

    I18n: Update translation el (97%).
    
    386 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 0abd76c45eb546822712ae09337a6fb2ee54e5d4
Author: Urien Desterres <urien.desterres@gmail.com>
Date:   Fri Dec 26 18:30:33 2014 +0100

    I18n: Update translation fr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 166807cb4cfbc0c46cf7abab23bc14a130254c19
Author: Pablo Roberto Francisco Lezaeta Reyes <prflr88@gmail.com>
Date:   Fri Dec 26 00:31:07 2014 +0100

    I18n: Update translation es (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a26f73f408d98746511d4179740eda945336d225
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Thu Dec 25 18:30:33 2014 +0100

    I18n: Update translation fr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5163992445334035e0e149742ba10de25fd4f794
Author: Benedek Imre <nucleo@indamail.hu>
Date:   Wed Dec 24 00:30:42 2014 +0100

    I18n: Update translation hu (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 53f17e4b64392d7c60f4cffc21bf63ad03839b54
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat Dec 20 00:37:35 2014 +0000

    Revert "Make panel hide intelligently with shaded windows (bug #11371)"
    
    This reverts commit 75ed12ce2e4d5d13781fca9179268bce958f9596.

commit 75ed12ce2e4d5d13781fca9179268bce958f9596
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Mon Dec 15 14:30:14 2014 +0100

    Make panel hide intelligently with shaded windows (bug #11371)

commit 4a436dd163e1fb11765fc78c74a6b5c88683f48c
Author: enolp <enolp@softastur.org>
Date:   Sun Dec 14 18:30:32 2014 +0100

    I18n: Update translation ast (94%).
    
    372 translated messages, 22 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 564705f2188e9c020b105b32d7f12873e8110557
Author: Ḷḷumex03 <tornes@opmbx.org>
Date:   Sat Dec 13 06:30:45 2014 +0100

    I18n: Update translation ast (94%).
    
    372 translated messages, 22 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit db59a6247de48efa579db4f3993fd32093e550b6
Author: Sergey Alyoshin <alyoshin.s@gmail.com>
Date:   Fri Dec 12 18:30:31 2014 +0100

    I18n: Update translation ru (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d121c00e52d088e128c033e236db71b72de927c9
Author: GenghisKhan <genghiskhan@gmx.ca>
Date:   Sun Dec 7 18:30:49 2014 +0100

    I18n: Update translation he (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3648c1c4a80ff202c76491be11b2538a2428c16c
Author: عبدالله رضوان <abbodmar@gmail.com>
Date:   Sun Dec 7 18:30:48 2014 +0100

    I18n: Update translation ar (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3c995cac169657e24409849d33e7adca2ce28cfe
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Sun Dec 7 00:05:50 2014 +0100

    Fix panel hiding (intelligently) with open menus

commit 3cf77c89de49d3ebeeef6fc5b45ddae031b4960b
Author: Ali Polatel <ali.polatel@ozguryazilim.com.tr>
Date:   Wed Dec 3 12:30:32 2014 +0100

    I18n: Update translation tr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d92de74e76ba9a2fcf5d18e693cdbf4abc2a9967
Author: GenghisKhan <genghiskhan@gmx.ca>
Date:   Tue Dec 2 12:31:04 2014 +0100

    I18n: Update translation he (99%).
    
    393 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit dec26ae71ad7b8fece6484566c53d657ba97038c
Author: GenghisKhan <genghiskhan@gmx.ca>
Date:   Mon Dec 1 18:30:32 2014 +0100

    I18n: Update translation he (99%).
    
    392 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d47ae9ec5503636463b4de948a2af639737f2277
Author: Slavko <linux@slavino.sk>
Date:   Fri Nov 28 18:30:38 2014 +0100

    I18n: Update translation sk (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 2c86befe0b891a322dfa0742101a03ca15079484
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date:   Thu Nov 27 01:23:04 2014 +0100

    Fix panel being initially hidden with intelligent autohiding
    
    After closing the panel preferences, the panel was always hidden when
    intelligent autohiding was selected. This patch adds a check whether the
    currently active window actually overlaps with the panel and only hides
    it in case it does.

commit 57502718bfbbc4bc6806bef5f0f675c82d2effa4
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Nov 26 20:18:04 2014 +0000

    Fixing problems with intelligent panel hiding, bug #11331
    
    ochosi:
    "Just to document the findings I made during a quick debug session
    with the panel from git master (4.11.x). Intelligent hiding
    generally works, but the mouse-pointer behavior is buggy.
    Steps to reproduce the bug:
    1) set panel to intelligent hiding
    2) give a window focus that doesn't overlap with the panel
    3) hover the panel with the mouse
    4) upon leaving the panel hides again, even though there
       is no window overlapping
    
    What it should do instead: if intelligent hiding is in use
    it should check (possibly in panel_window_leave_notify_event
    or _enter_ in panel-window.c) whether there are windows
    overlapping with the panel and if not, the panel shouldn't
    hide on leave_notify."

commit 70f8fb891c3afe0721f71f0fe7755e12de45eb4f
Author: Ḷḷumex03 <tornes@opmbx.org>
Date:   Sat Nov 22 06:30:34 2014 +0100

    I18n: Update translation ast (94%).
    
    372 translated messages, 22 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3e5563e28ff7db52e2f5a468a19f9e1059806b8d
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Nov 19 22:19:35 2014 +0000

    Don't save the session during unattended shutdown
    
    Previous commit accidentally removed this feature. Bringing it back.

commit 3848b0c0df4c2d744e4a9db2653c0507f78fbba3
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Nov 19 09:37:54 2014 +0000

    Panel action button Logout always save session (bug #7930)

commit e0738dd643d4efae99b3d2ca4bd48e8ab0e36ee3
Author: Piotr Strębski <strebski@o2.pl>
Date:   Mon Nov 3 18:30:36 2014 +0100

    I18n: Update translation pl (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 18c692693685a2d0bfb9d5e745e879fa422e68d5
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Wed Oct 29 06:30:33 2014 +0100

    I18n: Update translation cs (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 4def8fec7090302e8d4ec3626d25b373df0abacf
Author: Zafer Eren <zaferern@gmail.com>
Date:   Wed Oct 29 00:30:36 2014 +0100

    I18n: Update translation tr (99%).
    
    392 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9f9b93997ae406999782deea0498fa353ff814c6
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Wed Oct 29 00:30:36 2014 +0100

    I18n: Update translation cs (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 2eb625fbe213b970c0142092dc7ea8c0ce9cb2ed
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Sun Oct 26 00:30:49 2014 +0200

    I18n: Update translation cs (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 01c80d3ba530aeb347e03f75fa1d7b175cd7b1a7
Author: Ḷḷumex03 <tornes@opmbx.org>
Date:   Sun Oct 26 00:30:49 2014 +0200

    I18n: Update translation ast (94%).
    
    372 translated messages, 22 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e3f03ee575a49cfd288645f5a9f1c268efeaca77
Author: 周潇波 <zhouxiaobo.500@gmail.com>
Date:   Sat Oct 18 12:30:44 2014 +0200

    I18n: Update translation zh_CN (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b977c88efe1b6248e39bbc00eff8bcfa94e9844d
Author: AlexanderFilev <ifillrok@gmail.com>
Date:   Tue Oct 14 18:30:38 2014 +0200

    I18n: Update translation ru (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit beef627959f01c92751680aa725fa9ed299a9f42
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Mon Oct 6 06:30:32 2014 +0200

    I18n: Update translation kk (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 12bcabb69032515ade87440fbb2d8287aac380a3
Author: Tapio Väisänen <tapio.vaeisaenen@gmail.com>
Date:   Fri Oct 3 00:30:32 2014 +0200

    I18n: Update translation fi (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 07f754efe7221d9b746b60f3a43ed7e6ac5dfa33
Author: Tapio Väisänen <tapio.vaeisaenen@gmail.com>
Date:   Thu Oct 2 18:30:33 2014 +0200

    I18n: Update translation fi (99%).
    
    391 translated messages, 3 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b403a5be93a685c45a28964e92354dfdcfac1128
Author: Michael Findlay <keltoiboy@gmail.com>
Date:   Thu Oct 2 12:30:32 2014 +0200

    I18n: Update translation en_AU (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b49f762998826d5be64d73d1300fed2e2d7d086e
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Wed Oct 1 18:30:32 2014 +0200

    I18n: Update translation pt (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit bd0f1b2278ff371ea9ba7f20c2bc2625c1402ce3
Author: gabrieltandil <gabriel.tandil@gmail.com>
Date:   Tue Sep 30 18:30:32 2014 +0200

    I18n: Update translation es (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 26a8bd630b87ad21cd0b88498a7bc7608252cc86
Author: Aputsiaĸ Niels Janussen <aj@isit.gl>
Date:   Fri Sep 26 12:30:33 2014 +0200

    I18n: Update translation da (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6f672b8074fc97cf1d0211d7a7b73f939d9c1035
Author: Sveinn í Felli <sv1@fellsnet.is>
Date:   Tue Sep 23 00:30:36 2014 +0200

    I18n: Update translation is (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 36d11f74e4aa23daf61b699370f8d7785e40e9ef
Author: Anonymous <noreply@xfce.org>
Date:   Mon Sep 22 18:30:34 2014 +0200

    I18n: Update translation de (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit cf4e88dddc7c364827708fa7093f64ce5b5d0c76
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Sat Sep 20 06:30:32 2014 +0200

    I18n: Update translation cs (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1ba79adac6254718ac690f5b59d07d1313e899c6
Author: Anonymous <noreply@xfce.org>
Date:   Thu Sep 18 06:30:33 2014 +0200

    I18n: Update translation de (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b4927d070123a38c77e3b76b9f9f051839b2d346
Author: Anonymous <noreply@xfce.org>
Date:   Thu Sep 18 00:30:39 2014 +0200

    I18n: Update translation de (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 17948ba701d82f1bbf5dc128446ab367569b1630
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date:   Sat Sep 13 12:30:33 2014 +0200

    I18n: Update translation th (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit ade76f1d57b795c58f2885e7da27768481d1c505
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Sat Sep 13 12:30:33 2014 +0200

    I18n: Update translation it (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b71f35ef7414cc70aea5fbf2ad9a3b4d5557c712
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Thu Sep 11 00:30:33 2014 +0200

    I18n: Update translation ko (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3a7b5e9a41c734bda3ef03a0a3010921ab2f2ae5
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Mon Sep 8 18:30:40 2014 +0200

    I18n: Update translation sr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit de7b6938639961a2f938b36fabe4c33638cddc3d
Author: Pablo Roberto Francisco Lezaeta Reyes <prflr88@gmail.com>
Date:   Mon Sep 8 18:30:40 2014 +0200

    I18n: Update translation es (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d0c0fa5403d318918e819e5a70db3dd9726a5acc
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Sun Sep 7 18:30:33 2014 +0200

    I18n: Update translation uk (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3937080fffa7073971f86f9d5f56ccaea1fa2659
Author: Masato HASHIMOTO <cabezon.hashimoto@gmail.com>
Date:   Sun Sep 7 18:30:33 2014 +0200

    I18n: Update translation ja (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 8de36057b18764e635109a570ef1e6da16df69a3
Author: André Miranda <andreldm1989@gmail.com>
Date:   Sat Sep 6 06:30:32 2014 +0200

    I18n: Update translation pt_BR (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 2d462e99246b60f4a9b5100b455742b5e8aa3f5b
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sat Sep 6 00:30:33 2014 +0200

    I18n: Update translation fr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6f6dadc4ab991567756e38ae6ccf0c9161456182
Author: Pjotr <pjotrvertaalt@gmail.com>
Date:   Fri Sep 5 18:30:35 2014 +0200

    I18n: Update translation nl (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a927b599ee59c353a69b231f281943b5166a00c4
Author: abuyop <abuyop@gmail.com>
Date:   Fri Sep 5 18:30:35 2014 +0200

    I18n: Update translation ms (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 932479fb4219ad940a55880537b61d8357e85236
Author: Edin Veskovic <edin.veskovic@openmailbox.org>
Date:   Fri Sep 5 18:30:35 2014 +0200

    I18n: Update translation hr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 4ab04694c604a5273303ced5a4d33e1c0b7caace
Author: gabrieltandil <gabriel.tandil@gmail.com>
Date:   Fri Sep 5 18:30:35 2014 +0200

    I18n: Update translation es (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 153cf7083a220e29940c594dedbbab396a8439d2
Author: Anonymous <noreply@xfce.org>
Date:   Fri Sep 5 18:30:35 2014 +0200

    I18n: Update translation de (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5866e9521f3e525fb548612d505efc56fef7ed06
Author: Jannis Pohlmann <jannis@xfce.org>
Date:   Tue Jul 29 11:57:53 2014 +0200

    Make "don't reserve space" sensitive only when autohiding is disabled
    
    This configuration option only makes sense when not hiding a panel
    automatically, so whenever one of the two autohide behaviors is enabled,
    the option is now greyed out in the UI.

commit 3380b83f1349d1f6cb911332c26bafa340dd1330
Author: Jannis Pohlmann <jannis@xfce.org>
Date:   Mon Jul 28 19:06:18 2014 +0200

    Update preferences dialog for intelligent autohide
    
    Instead of a single "Show/hide panel automatically" check box, we now
    use a "Automatically hide the panel" combo box with the options "Never",
    "Intelligently" and "Always".

commit c75751bd5de0d2369f8203a5ce582f2cd3f674c1
Author: Jannis Pohlmann <jannis@xfce.org>
Date:   Tue Jul 29 11:33:40 2014 +0200

    Automatically migrate old "autohide" properties to "autohide-behavior"
    
    We could write a migration script for it to avoid additional code being
    added to the panel itself but the solution presented here is simple and
    works: when a panel is created (e.g. during startup), we check whether
    there is an old "autohide" property in the Xfconf channel. If the new
    "autohide-behavior" property is not yet set, we translate "autohide"
    FALSE and TRUE into "autohide-behavior" NEVER and ALWAYS, respectively.
    We then reset the "autohide" property and thereby achieve an automatic,
    transparent migration from old to new.

commit 00c00c1f1994bc9f03bd98097dfb8fa68b16758a
Author: Jannis Pohlmann <jannis@xfce.org>
Date:   Sun Jul 27 18:36:59 2014 +0200

    Implement intelligent autohide behavior
    
    This implementation of intelligent autohiding works as follows:
    
    The current WnckScreen is monitored. Whenever the active window changes
    or whenever the geometry of an already active window changes, the
    algorithm checks whether the active window and the panel overlap. If
    this is the case, the panel is hidden. Otherwise, it is made or remains
    visible.
    
    Desktop windows are treated special. Even though they overlap
    with panels technically, we don't consider this relevant and always make
    the panel visible when a desktop window becomes active.
    
    Internally, there are three autohide behaviors now: never (disables
    autohiding altogether), intelligent (implements the above method) and
    always (the old "hide when not focused/grabbed by mouse or keyboard).

commit 38cc02e4361b85f849c6ee29d7bb1e8c31ebb5d3
Author: Jannis Pohlmann <jannis@xfce.org>
Date:   Mon Jul 28 02:07:46 2014 +0200

    Make panel application depend on libwnck
    
    This will be needed for intelligent autohiding, which is implemented by
    monitoring the current WnckScreen for active window changes and hiding
    the panel whenever the active window geometry overlaps with the panel.

commit b00a4515274fcf914bf259e2f729c5153c117382
Author: Jannis Pohlmann <jannis@xfce.org>
Date:   Sun Jul 27 19:04:45 2014 +0200

    Fix typo in a debug message

commit 84643f92f79eb49517012d319d92c0e39bfe350e
Author: Alois Nešpor <info@aloisnespor.info>
Date:   Mon Sep 1 00:30:33 2014 +0200

    I18n: Update translation cs (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c55d7d9d335da5ec72e1068bf002d0719866f9af
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Sat Aug 30 00:30:37 2014 +0200

    I18n: Update translation pl (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 2faf8ca7a9d0461d645c602b176cab757ffd3106
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Thu Aug 28 00:30:34 2014 +0200

    I18n: Update translation pl (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f65ef2b5b729ce5d2ba93b7dcc9e366ba60d65e3
Author: Anonymous <noreply@xfce.org>
Date:   Tue Aug 26 18:30:38 2014 +0200

    I18n: Update translation de (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 379d339eb19dbb3a1605bbddca3e57056a6ef7f9
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sat Aug 23 12:30:35 2014 +0200

    I18n: Update translation fr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 00175324010e06be782b8ee0892cefaf4b7cb9d1
Author: Pasi Lallinaho <pasi@shimmerproject.org>
Date:   Sat Aug 23 00:30:39 2014 +0200

    I18n: Update translation fi (99%).
    
    393 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit fbc0dc857c4011a4c7424cf8dcba5584212f0ee6
Author: lego37yoon <lego37yoon@outlook.com>
Date:   Fri Jul 25 18:30:35 2014 +0200

    I18n: Update translation ko (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 68ddeaad0d3ecfcd4aa2d80784af01d4016ca5da
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Fri Jul 18 18:30:38 2014 +0200

    I18n: Update translation fr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c116621cd41cf46f7ab7ae71fa24c7b06ae157cd
Author: Urien Desterres <urien.desterres@gmail.com>
Date:   Sat Jul 5 18:30:33 2014 +0200

    I18n: Update translation fr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 53a7ae13ae3fb23e32317ef539154b4d47a13e54
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date:   Sat Jul 5 12:30:32 2014 +0200

    I18n: Update translation fr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5f514d2e70109dae64c082eb6aba137729521c31
Author: Tero Mononen <tero@mononen.eu>
Date:   Thu Jul 3 18:30:35 2014 +0200

    I18n: Update translation fi (73%).
    
    290 translated messages, 104 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1e39a8b9c85b6c63fe59ae4607869e8ad5fb2d3e
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Jun 22 22:48:57 2014 +0100

    Back to development.

commit 8898d93984fda0fe5dd069011cf43e288f48c4a3
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Jun 22 22:48:04 2014 +0100

    Updates for the release

commit 61cba9a0fc5471dff7545eee8e0f81ffaf5ab106
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Jun 22 10:56:23 2014 +0100

    Cleanup

commit 84ed100fee5b4573b768e5b8f130785ab5b3c5bd
Author: Petr Gajdůšek <gajdusek.petr@centrum.cz>
Date:   Sun Oct 14 07:49:28 2012 +0200

    Actions: Fix panel autohide broken by the actions menu (bug #8960)
    
    Check the button toggle status in actions_plugin_menu() and avoid to popup
    the menu if the button is not pressed.
    
    Signed-off-by: Petr Gajdůšek <gajdusek.petr@centrum.cz>

commit 98806305173f7b3a28f139809eaaf4be885a1050
Author: abuyop <abuyop@gmail.com>
Date:   Sat Jun 21 12:30:34 2014 +0200

    I18n: Update translation ms (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5f7d284cb23f6b29ce063da1a391f3a45ec22028
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Thu Jun 19 18:30:34 2014 +0200

    I18n: Update translation sr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit afc0031815215d91eacc12486d9b0fce4604465a
Author: Ḷḷumex03 <l.lumex03.tornes@gmail.com>
Date:   Tue Jun 17 00:30:35 2014 +0200

    I18n: Update translation ast (94%).
    
    373 translated messages, 21 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit ec02fc2b05b39990a95d29054c20032e04c59b37
Author: Michael Ferreira Martins <michaelfm21@gmail.com>
Date:   Wed Jun 11 06:30:32 2014 +0200

    I18n: Update translation pt_BR (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5244702bbecb7ee02796863f7106d397126d8a75
Author: Michael Findlay <keltoiboy@gmail.com>
Date:   Mon Jun 9 12:30:32 2014 +0200

    I18n: Update translation en_AU (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 18d96092af50bf267224ea48188d6f5cf6e7699d
Author: OSWorld <michal.olber@osworld.pl>
Date:   Mon Jun 2 00:31:09 2014 +0200

    I18n: Update translation pl (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 85e08f7a920e5560cab89c3a326edf7be19950fe
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed May 28 23:06:58 2014 +0100

    ApplicationsMenu: fixed wrong initial icon size in some themes

commit 388e1811199261af9e37cdac02712ba21cf446c3
Author: Masato HASHIMOTO <cabezon.hashimoto@gmail.com>
Date:   Wed May 28 18:30:35 2014 +0200

    I18n: Update translation ja (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 775c165a374b3190a3dad49413a2e27154da7d04
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Tue May 27 12:30:37 2014 +0200

    I18n: Update translation he (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 821428bc078740986122b374d6df0d9707d9ec4d
Author: magnos15 <alexandremagnos15@gmail.com>
Date:   Sun May 25 00:30:34 2014 +0200

    I18n: Update translation pt (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit fcf176daaa0db56b7d85bc28f456a4c138d8b268
Author: theppitak <theppitak@gmail.com>
Date:   Sat May 24 18:30:41 2014 +0200

    I18n: Update translation th (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit dc2e447ed10b68ba917b3023bbfd8dc1afad0cdc
Author: theppitak <theppitak@gmail.com>
Date:   Sat May 24 12:30:34 2014 +0200

    I18n: Update translation th (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 99cb01dc656d3224e41765d927b766164d0a41ea
Author: Anonymous <noreply@xfce.org>
Date:   Sat May 24 00:30:34 2014 +0200

    I18n: Update translation id (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5765a18145f7e23e08a0734ec190baa03e49cf31
Author: Anonymous <noreply@xfce.org>
Date:   Fri May 23 00:30:33 2014 +0200

    I18n: Update translation de (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5240e03894223faa5ccb7912a1ce052fe337a712
Author: haarek <haarektrans@gmail.com>
Date:   Thu May 22 18:30:33 2014 +0200

    I18n: Update translation nb (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1f1e92ae91788c57ac12409919bd8ccd6edc43ca
Author: Sveinn í Felli <sv1@fellsnet.is>
Date:   Thu May 22 12:30:33 2014 +0200

    I18n: Update translation is (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 559e0ebdbbbbd50585fd7a9e46b35c52b0b241c3
Author: asvl <alyoshin.s@gmail.com>
Date:   Thu May 22 00:30:35 2014 +0200

    I18n: Update translation ru (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d6442d2111ef045d1bb0d3152be9c5e429693b6a
Author: 柏諺 黃 <s8321414@gmail.com>
Date:   Wed May 21 12:30:32 2014 +0200

    I18n: Update translation zh_TW (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c7d2706d744b59098d9527b670d2f390acb00a91
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Tue May 20 00:30:32 2014 +0200

    I18n: Update translation pl (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 80c8d264160cc570a03311575b00f582c42f0e54
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Mon May 19 18:30:32 2014 +0200

    I18n: Update translation kk (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9545d89413c4e53cb9745021d20271b41c85236e
Author: xiaobo zhou <zhouxiaobo.500@gmail.com>
Date:   Sun May 18 18:30:34 2014 +0200

    I18n: Update translation zh_CN (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit aecded281c03f3c13dc4cc2a4ec24b63c23e1c23
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Sun May 18 18:30:34 2014 +0200

    I18n: Update translation uk (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 0b5f55b900e49e63c633bd330306e4334d339e6c
Author: Pjotr123 <pjotrvertaalt@gmail.com>
Date:   Sun May 18 18:30:34 2014 +0200

    I18n: Update translation nl (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 0a163093fa5878405bde860bc47c02ce96c7640b
Author: SpiKe <leguen.yannick@gmail.com>
Date:   Sun May 18 18:30:34 2014 +0200

    I18n: Update translation fr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e16c9b6918aaf37183875dfe03f8eb92ef3675a3
Author: cybercop <cybercop_montana@abv.bg>
Date:   Sun May 18 18:30:34 2014 +0200

    I18n: Update translation bg (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit ae9e0e628aedb989aea2e73f0b7903b6c2f6e232
Author: Pablo Lezaeta <prflr88@gmail.com>
Date:   Sun May 18 12:30:32 2014 +0200

    I18n: Update translation es (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 04d783c13038a4ded5686d21cb9a1de002ecfe02
Author: cri <cri.penta@gmail.com>
Date:   Sat May 17 18:30:34 2014 +0200

    I18n: Update translation it (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 8142e4ce148f01befff9a27b6c0644b85a2afdd9
Author: schizo <eveskovic@gmail.com>
Date:   Sat May 17 18:30:34 2014 +0200

    I18n: Update translation hr (100%).
    
    394 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 94aca4d8b93c3343091ddcb90dd77ea08b734a0e
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Fri May 16 22:54:30 2014 +0100

    Tasklist, blocking event interfered with button highlight.
    
    Especially visible with minimized windows. The button was stuck
    in "half active" state (normally inactive, but rendered as active when
    mouse cursor was above it).

commit 1e28a13a94d4162c972bf8726c5327817a2e1af7
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Fri May 16 21:43:54 2014 +0100

    Applications Menu: changed default button title to "Applications"

commit 746a710d8e4c6583155d04a2d2b777eaced142be
Author: Tornes Llume <l.lumex03.tornes@gmail.com>
Date:   Fri May 16 12:30:33 2014 +0200

    I18n: Update translation ast (94%).
    
    372 translated messages, 21 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d87b744020d8d360449e285e2fb4ab3d29dc0589
Author: Andre Miranda <andreldm1989@gmail.com>
Date:   Wed May 14 21:46:03 2014 -0300

    Scroll wheel cycling wrap

commit cb2cb9e6123397a7e526dc20aed48039f0d4b13e
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Thu May 15 02:31:07 2014 +0100

    ArrowButton: make sure the button relief is preserved during blinking

commit adfbaa87f572e17c68df0f0cb2f85d70f87ff3b3
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed May 14 20:24:45 2014 +0100

    Tasklist, fixing race condition between desktop and window switching
    
    In some cases clicking on a button switches to another desktop but fails
    to activate the application (another, previously activated window gets
    the focus).
    
    Not sure why gtk_main_iteration works and not e.g. XSync but it fixes
    the problem on affected systems.

commit 5ea531c447a55c8670e0a02adfa5786b04481aa7
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed May 14 20:20:35 2014 +0100

    Tasklist, removed an optimization causing problems on some systems.
    
    This optimization makes little difference to performance but causes
    problems in some situations where more than one button become active
    at once.

commit f4f275e1b268587edf4a1865e147e88417eab29d
Author: kingu <comradekingu@gmail.com>
Date:   Mon May 12 00:30:34 2014 +0200

    I18n: Update translation nb (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 851174d10268d696ace3174473540858b07ea049
Author: kingu <comradekingu@gmail.com>
Date:   Sun May 11 18:30:37 2014 +0200

    I18n: Update translation nb (97%).
    
    382 translated messages, 11 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9851615744179578fdc160cd2a2e225eece5fbf8
Author: haarek <haarektrans@gmail.com>
Date:   Sat May 10 18:30:51 2014 +0200

    I18n: Update translation nb (85%).
    
    337 translated messages, 56 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 08f81bd63432ab8bbe935e8ca7668d3d3cab9524
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat May 10 00:28:55 2014 +0100

    Action buttons: fix compilation warning

commit b72f3182b1c7a6cbe48c4ee1028df318cde35b2f
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat May 10 00:22:26 2014 +0100

    Action buttons: default to a horizontal button layout in the deskbar mode

commit 150018ae8c122009f0bcdef06baa346393034fa9
Author: haarek <haarektrans@gmail.com>
Date:   Sun Apr 27 06:30:36 2014 +0200

    I18n: Update translation nb (85%).
    
    337 translated messages, 56 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 343bf2943f1ba784e4ad4f33358c19038169357d
Author: Tornes Llume <l.lumex03.tornes@gmail.com>
Date:   Wed Apr 23 12:30:32 2014 +0200

    I18n: Update translation ast (94%).
    
    371 translated messages, 22 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5aaa55a075e1e0bceaccc11eca112bd481c7f9da
Author: Tornes Llume <l.lumex03.tornes@gmail.com>
Date:   Mon Apr 21 18:30:32 2014 +0200

    I18n: Update translation ast (93%).
    
    367 translated messages, 26 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 8ba8e0d2a510e2c323fff51f29faf6d6101a9829
Author: Tornes Llume <l.lumex03.tornes@gmail.com>
Date:   Mon Apr 21 12:30:33 2014 +0200

    I18n: Update translation ast (79%).
    
    313 translated messages, 80 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 52650ee51df787a6d73bf30cd25a9bd58f22934d
Author: truongap <truongap.ars@gmail.com>
Date:   Tue Apr 15 06:30:33 2014 +0200

    I18n: Update translation vi (77%).
    
    305 translated messages, 88 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 52eaa97514eb3a1db3925fea63105c1322b04b4b
Author: Anonymous <noreply@xfce.org>
Date:   Wed Apr 9 06:30:46 2014 +0200

    I18n: Update translation de (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b0261a967e3c84401e8e3d23892035c5dd650352
Author: Pablo Lezaeta <prflr88@gmail.com>
Date:   Sat Apr 5 06:30:42 2014 +0200

    I18n: Update translation es (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 42f335ea1cfcfef3d2eccb4de893933a4966369e
Author: Anonymous <noreply@xfce.org>
Date:   Fri Mar 28 18:31:02 2014 +0100

    I18n: Update translation de (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3db567bd41756d3f25c1d11f4a706c1835bb0a41
Author: Pablo Lezaeta <prflr88@gmail.com>
Date:   Thu Mar 27 00:30:36 2014 +0100

    I18n: Update translation es (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 31177654a6343e00cb209e370ce6dafe144bd487
Author: Pablo Lezaeta <prflr88@gmail.com>
Date:   Tue Mar 25 12:30:48 2014 +0100

    I18n: Update translation es (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit ec96973a0925bb422ec99cc2144d1199b3c7f4fc
Author: Pablo Lezaeta <prflr88@gmail.com>
Date:   Mon Mar 24 06:30:35 2014 +0100

    I18n: Update translation es (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 2a7343ff0c1969a77f671175e721b745a2da05a8
Author: edwinpm5 <edwinpm5@gmail.com>
Date:   Mon Mar 24 00:30:44 2014 +0100

    I18n: Update translation es (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 77c5cd257a19a16580ca9fd74908ea7c5b6dc61d
Author: edwinpm5 <edwinpm5@gmail.com>
Date:   Sun Mar 23 18:30:37 2014 +0100

    I18n: Update translation es (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5cffae6dbc04e3e1bcd93083e24e4b563a75ea81
Author: edwinpm5 <edwinpm5@gmail.com>
Date:   Sun Mar 23 06:30:43 2014 +0100

    I18n: Update translation es (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit bd6f31c92c4c12d0bfb72e67e96cc16a5aebbcea
Author: edwinpm5 <edwinpm5@gmail.com>
Date:   Sat Mar 22 18:30:36 2014 +0100

    I18n: Update translation es (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit cb4f476b4810c1025cbeba886424c30858642310
Author: edwinpm5 <edwinpm5@gmail.com>
Date:   Sat Mar 22 00:30:36 2014 +0100

    I18n: Update translation es (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f1cea7d81e4a3be21b80f842914aae21ab6a37f4
Author: edwinpm5 <edwinpm5@gmail.com>
Date:   Fri Mar 21 18:30:40 2014 +0100

    I18n: Update translation es (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 99d0e053671eb87a3bd1413a2d3dee0fb24f0213
Author: edwinpm5 <edwinpm5@gmail.com>
Date:   Fri Mar 21 06:30:41 2014 +0100

    I18n: Update translation es (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e91cd4a1201b04b6b4b7bb01e87eeb9834e076f8
Author: schizo <eveskovic@gmail.com>
Date:   Sat Mar 1 00:30:50 2014 +0100

    I18n: Update translation hr (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 74809af33261acce4119740d96d2d0882c18f97b
Author: PavelNicklasson <pavelnicklasson@bahnhof.se>
Date:   Sun Feb 23 12:30:43 2014 +0100

    I18n: Update translation sv (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5faba4fd671e5fdfc970a2a76cd9d283fd473a71
Author: Masato HASHIMOTO <cabezon.hashimoto@gmail.com>
Date:   Thu Feb 20 18:30:48 2014 +0100

    I18n: Update translation ja (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 65c810c24c4363ef06ccf2ba60ed5aaee0200eb0
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Feb 16 03:20:01 2014 +0000

    Back to development.

commit 885441318beea8e77f7112cc243365e36c3a1db2
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Feb 16 03:16:43 2014 +0000

    Updates for the release

commit 45629db32cf26a3cd10dc5eb69fe07d7634b28c6
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Feb 16 02:49:05 2014 +0000

    NEWS: copy changes from 4.10.1

commit bb48fc0ff694f97cd55c0ea076d84387852f9638
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Feb 16 02:33:41 2014 +0000

    Update dependencies (libxfce4ui >= 4.11)
    
    TODO: bump required version of libxfce4util and xfconf to 4.11
    once they are ready.

commit 1b1749d5cb7421101dcbf43d085e835516d5bb8f
Author: Eric Koegel <eric.koegel@gmail.com>
Date:   Wed Feb 12 19:03:34 2014 +0300

    Fix transparency with alpha being 100 (Bug 10658)
    
    A panel with style set to 'none (use system style)' and alpha to
    100 is still affected by the problem which can be triggered manually
    by launching another indicator after the initial panel start. This
    patch removes an unneeded check that was causing the issue. Thanks
    to Thaddäus Tintenfisch for reporting the issue and finding the
    exact part of the code that needed to be corrected.

commit 86a1b73c0a5ac1760e6978ee2dca9da47adc05c5
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Sun Feb 9 12:30:41 2014 +0100

    I18n: Update translation cs (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 4fe4d9c89eceef9262c727dd1013a3b189c8fa3b
Author: Piotr Strębski <strebski@o2.pl>
Date:   Fri Feb 7 18:30:37 2014 +0100

    I18n: Update translation pl (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e227b2e3c2d2684bdeaf9d3c82193cd542096afc
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Mon Jan 20 00:30:33 2014 +0100

    I18n: Update translation cs (99%).
    
    391 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit cf3e3357641e1b7ee5c94f0c857500e0e6dcda52
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Sun Jan 19 12:30:36 2014 +0100

    I18n: Update translation cs (89%).
    
    353 translated messages, 40 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b3fb89906ee405c0fc980a3b6426abc449b7be0e
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Sun Jan 19 06:30:41 2014 +0100

    I18n: Add new translation cs (71%).
    
    282 translated messages, 111 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5d9fa0b48115e8b989cfc6015205c1aa70a1fd46
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Fri Jan 17 02:13:12 2014 +0000

    tasklist: Indentation and whitespace fixes

commit 0e6c0208130a868f512264375c8e67eddbd5f6c8
Author: Alistair Buxton <a.j.buxton@gmail.com>
Date:   Fri Jan 17 00:21:17 2014 +0000

    Improve the tasklist multimonitor handling.
    
    The tasklist widget has an option to only show windows from the
    current monitor. This previously worked by calculating the centre
    pixel of the window, and then testing that against the monitor.
    However, it is possible to position a window such that the centre
    pixel does not appear on any monitor.
    
    Instead, find the monitor which has the largest intersection with
    the window and display the window button there.

commit de1a2ce457e851d225a40d7e2f14073012bcd988
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Thu Jan 16 12:30:37 2014 +0100

    I18n: Update translation hr (73%).
    
    288 translated messages, 105 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5551513dbb18c73809cc945c1d1649f041d29511
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Jan 7 02:26:50 2014 +0000

    Bug #10582 scroll the items list automatically to keep the moved item
    visible at the new position
    
    (Raphael Groner <projects.rg{at}smart.ms>)
    
    + some cleanup.

commit 71fe77c4c5c433721854c88c1fa1667f880b38f2
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Jan 7 02:17:49 2014 +0000

    Preserve the current item selection when rebuilding the item store.

commit d296ca76507bc5ffdbb8e77745568cf5063e069d
Author: Arnout Engelen <xfce@bzzt.net>
Date:   Thu Dec 26 18:31:05 2013 +0100

    Set EWMH client type to WNCK_CLIENT_TYPE_PAGER (bug #10508).
    
    This is for window managers to tell them a pager or tasklist
    requested the action.

commit cdc3737f971d48d57dae15875f416ba772d0a8bf
Author: Eric Koegel <eric.koegel@gmail.com>
Date:   Mon Dec 23 11:53:02 2013 +0300

    Fix transparency issues with GTK3 plugins
    
    This patch uses some GTK3 CSS magic written by Simon Steinbeiß to
    make the GtkPlug button in the panel transparent. Small changes
    were made to the wrapper_plug_draw code as well, i.e. no need to
    check GTK_WIDGET_IS_DRAWABLE since gtk does this before calling
    the draw signal. It also transforms the draw coordinates from
    widget-relative back to window-relative.

commit 964741f5b67e5f4fa97bab338d980c5eea0fa09b
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Fri Dec 20 10:02:07 2013 +0000

    pager: recalculate size when panel size changes

commit 08643272caef08634773b3074de7b2cadffb0926
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Fri Dec 20 09:35:58 2013 +0000

    pager: fallback for case when pager is not yet set
    
    Just in case. Not needed on my system.

commit c42ab58051aaf30ade4496de05fc27e4540eb961
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Fri Dec 20 03:38:39 2013 +0000

    pager: fixed wnck pager aspect ratio in deskbar mode
    
    Previously we were relying on new api added in libwnck-2.31.
    Unfortunately, stable version of libwnck was never released and the API
    was not added to libwnck-3.
    
    This commit changes the method of setting the aspect ratio.
    Aspect ratio is now calculated in the plugin using screen dimensions.
    
    One minor limitation of this method is that we are not accounting
    for wnck pager frames, so the aspect ratio may be slightly inaccurate.

commit 862db2d44aed25e8a397f5314f9daab374c4e9fa
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Dec 18 19:55:28 2013 +0000

    Make sure version API is set.
    
    Start-up crashes of external plugins resulted in API being not set properly,
    Then, the panel was trying to use a non-existing "wrapper" binary.
    This prevented normal crash reporting mechanism from working and resulted
    in an "empty" plugin being inserted into the panel.

commit b2b8dc7005eeebf2fc4f6d85b66423d73da04648
Author: Sveinn í Felli <sv1@fellsnet.is>
Date:   Thu Dec 12 12:30:33 2013 +0100

    I18n: Update translation is (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit cb9798da8a898e083bbe90765e7c8333e7ea2559
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Nov 30 17:12:18 2013 +0100

    Fix potfile.

commit 1088908c551a7f2b0116b0e702122521cd69dde9
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Nov 30 17:05:29 2013 +0100

    Disable the gtk3 library by default.

commit c88fbb8983af1a853dc444bac536ccc09cfad661
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Aug 26 20:14:36 2013 +0100

    Setting gtk3 StyleContext class in wrapper.
    
    (reworked:
    2820b5bc195adfc49490d9001f8f4e8677140203
        Added panel class for theming.
    3557ce18a3f0dfa88ebaa8c2f69f80e12fa69c5f
        Use both .panel and .xfce4-panel style context classes
    from nick/gtk3 branch)

commit f1299849ddd60c2458a6fde453e5190807541034
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Aug 26 20:01:05 2013 +0100

    Fix to the previous commit

commit 1e9e329c7e4f8a2ed6019bfe980f80c301b4d715
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Aug 26 18:30:06 2013 +0100

    Workaround for a crash in gtk3 version of xfce4-indicator-plugin

commit 4fa3dbe337f29e4029f0c9d0bb7aedd42c691e78
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Aug 26 18:29:17 2013 +0100

    Build fix with gtk3

commit 058544623d9a8c035174972d2a9dc1228dc9e6d8
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Aug 25 23:23:04 2013 +0100

    Quick fix of compilation errors after merge of nick/gtk3 branch.
    
    Gtk3 plugins (e.g. xfce4-indicator-plugin/master) are not recognized
    (treated as gtk2 ones).

commit 6faa922db9eb527415d48e5890e663cf7f3fab66
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Apr 22 23:58:10 2013 +0100

    PanelImage: do not reload fixed-size icons on style-updated.
    
    Style-updated triggered a lot of flickering in the applications menu
    on mouse hover events.
    
    Are there any use cases where reloading the icons is needed?

commit a406ed5311bbe0929b949f28f0f9afeb398b4f4e
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Apr 22 23:41:28 2013 +0100

    xfce4-panel lib: workaround for ctx menus with scroll buttons.

commit ac4c4e70e7312d133ae3a6885412aa41d9fb11cf
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Thu Apr 18 20:43:29 2013 +0100

    PanelPlugin: workaround for transparency issues.
    
    It disables plugin transparency completely (breaking custom background
    colors, bitmaps and alpha settings). But at least it makes the panel
    usable with "system style" background settings.
    
    How to fix it properly?
    External plugins work fine but they have their own API for setting
    the background style.

commit a10342d7d4af2f41204bc036867a619e4cae732e
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Apr 17 21:10:09 2013 +0100

    ArrowButton: better handling of minimum sizes.

commit 38c9dee6624146cac6e4d7596575291d65099a30
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Apr 17 21:09:27 2013 +0100

    PanelImage: better handling of minimum sizes.

commit 334f991cafbbe8d05f5ca9c5dac7ba4bba9a509e
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Apr 17 02:24:58 2013 +0100

    PanelImage: allow scaling the image down (below allocation)
    
    Some containers (GtkBox(?)) refuse to allocate their child items below
    minimum requested size, even if that results in violating their own
    allocation.
    
    Reducing the minimum size allows these containers to iteratively
    reduce the size of the embedded PanelImage.
    
    When priv->size > 0 minimum size must be equal to the natural size.
    Otherwise icons displayed in menus will be too small (menus use
    a minimum size).

commit 25cea7e621eb61327165df6b6146295f74192609
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Apr 17 01:57:34 2013 +0100

    ArrowButton: sizing fixes.

commit abec72e6845aa368cd92ba42f54d3d340c517cc0
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Apr 15 23:31:45 2013 +0100

    PanelImage: fixes to previous commit and cleanup.
    
    Correction has to be done in all cases, not only when the requested
    size is derived from allocation.

commit 69b332fef718c00957c85900fe535c6b0a419dd1
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Apr 15 21:34:04 2013 +0100

    PanelImage: reworked workaround for GtkButton sizing issue.
    
    It should now work in all scenarios (custom buttons, can_focus=FALSE etc.)

commit e98950b9e5309de21f59305151e6f0028d0c8d5e
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Apr 15 00:09:06 2013 +0100

    PanelImage: better support for non-square icons.
    
    I thought this might be the reason for panel buttons growing infinitely.
    It turned out to be something different but this change still improves
    the sizing and makes it consistent with xfce_panel_pixbuf_from_source_at_size.

commit 0c99581be09ea220ffee83cf749780893bf513fc
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Apr 14 01:09:57 2013 +0100

    panel-image: use style-update signal rather than style-set.
    
    Doesn't seem to make any difference here but style-set is deprecated
    since Gtk+ 3.0.

commit 17fabdc1123be9e191b21375a302020608a8320b
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Apr 14 01:08:01 2013 +0100

    Fixed drawing code in panel-image and arrow-button
    
    - top-left coordinate at 0,0, not alloc->x,alloc->y
    - use gdouble instead of gint in _draw
    - use GtkStyleContext
    - fix uninitialized alloc variable

commit a682ae47be0485d20b984fbe4e796b1450c226dc
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Apr 7 22:49:33 2013 +0100

    Loading external gtk2 panel plugins in gtk3 panel.
    
    Addeding X-XFCE-API to the plugin .desktop files to determine which
    wrapper to use. This falls back to 1.0 wrapper for compatibility with
    the current plugins.
    
    Conflicts:
            panel/panel-module.c
            panel/panel-plugin-external-wrapper.c

commit 09bd0164aaadc0e124e1425b69cf68df6fb044a4
Author: Peter de Ridder <peter@xfce.org>
Date:   Sun Apr 7 23:48:36 2013 +0200

    Change WRAPPER_BIN name to match the wrapper.

commit cdb273e29bae7cdfe70d74e9e907e8dde4c4252b
Author: Peter de Ridder <peter@xfce.org>
Date:   Sun Apr 7 23:45:34 2013 +0200

    Wrapper ported for both Gtk+-2 and Gtk+-3

commit 19365cf7735abc3d3ea2d30fba143136d27fc7e1
Author: Peter de Ridder <peter@xfce.org>
Date:   Sun Apr 7 23:40:07 2013 +0200

    Added missing .pc file.

commit 358b2728a46bb556f0c5700aea50aaa027cc7ff3
Author: Peter de Ridder <peter@xfce.org>
Date:   Sun Apr 7 23:30:40 2013 +0200

    Made libxfce4panel more in sync with gtk3 branch.

commit e2a14728d605dda7df21ee439d9efdd3fcfd7b51
Author: Peter de Ridder <peter@xfce.org>
Date:   Sun Apr 7 23:08:37 2013 +0200

    Added GTK+-3 version of libxfce4panel.

commit 69c1239522b65f6fda32924d5d3c933d47494361
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Apr 7 22:49:33 2013 +0100

    Loading external gtk3 panel plugins in gtk2 panel.
    
    Requires a gtk3 version of libxfce4-panel and wrapper to be compiled
    from another branch.
    
    This commit is only a quick hack to make the plugins to load.
    It should be reworked (starting from better naming) for a release
    version.

commit 25ccc0d24eba707b0750640c50693b0ab5b1808f
Author: Sveinn í Felli <sveinki@nett.is>
Date:   Wed Nov 27 18:30:35 2013 +0100

    I18n: Update translation is (98%).
    
    386 translated messages, 7 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a313ceaedf3fa00eae5ce702524281f9f14c1868
Author: Juhani Numminen <juhaninumminen0@gmail.com>
Date:   Fri Nov 22 18:30:31 2013 +0100

    I18n: Add new translation fi (69%).
    
    275 translated messages, 118 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c4ce1763f3171aadd208eb310f8c22e3119b9fd4
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:16 2013 +0100

    I18n: Update translation ug (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a0f1dfc63f1af7d7a541ca5326654033a7746577
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:16 2013 +0100

    I18n: Update translation te (50%).
    
    199 translated messages, 194 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 7b5bc3a9ca9897f218a46ab41fd0d26b209fda3e
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:16 2013 +0100

    I18n: Update translation sv (69%).
    
    273 translated messages, 120 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit db663f655e3a9f6a57dacd6e6fcdb8bca7c7ed87
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:15 2013 +0100

    I18n: Update translation sr (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit dbbfd1fafb16235a18715302da7df0cecde93f96
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:15 2013 +0100

    I18n: Update translation sk (97%).
    
    384 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9ce34b7fb806255e932ae621810013951591b0e3
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:15 2013 +0100

    I18n: Update translation si (71%).
    
    282 translated messages, 111 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6088ab1aade9a032aef696f31e5d5af92785b35f
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:14 2013 +0100

    I18n: Update translation ro (97%).
    
    384 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1e85798c472ede7b1e320a19e197c52f7e57f6aa
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:14 2013 +0100

    I18n: Update translation pt_BR (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9976043a13a04a956e7d1c3c9e6b231250378ea7
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:13 2013 +0100

    I18n: Update translation pa (67%).
    
    267 translated messages, 126 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 614ffb02a50822455c5f3fb545c6f4b43c951a9d
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:13 2013 +0100

    I18n: Update translation nn (98%).
    
    389 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 37e25686c9e247b9c00e7d0ee260d260577f61f1
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:12 2013 +0100

    I18n: Update translation nb (83%).
    
    328 translated messages, 65 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit bff371479b8f50a98d045b88ee42527ebbbe21ed
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:07 2013 +0100

    I18n: Update translation lt (97%).
    
    384 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1e4e5ce94c5073f38090f2aa5ed9a161cd6ff397
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:06 2013 +0100

    I18n: Update translation ko (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 2418bd1b51f3ec3ff2895ada39c154df93501a9d
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:06 2013 +0100

    I18n: Update translation ja (97%).
    
    384 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 218a941e4c41edbd461a5fe56b9dc2753c0f4856
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Tue Nov 19 18:44:06 2013 +0100

    I18n: Update translation hr (72%).
    
    286 translated messages, 107 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f5b67393a3dfee187b67cc59a2bc1fe461baf3d3
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:05 2013 +0100

    I18n: Update translation gl (89%).
    
    350 translated messages, 43 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit fa355a7aa3fd23a745bfe23fa01ae62dced31a96
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:05 2013 +0100

    I18n: Update translation eu (98%).
    
    389 translated messages, 4 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit fac2322b2f8b7059107f50e77779b16771a8513c
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:04 2013 +0100

    I18n: Update translation et (89%).
    
    350 translated messages, 43 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 8176a75a018a6a19019daa53ffe541d87a495322
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:03 2013 +0100

    I18n: Update translation en_AU (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6e2204a2c9f38ecded65bd68606f76105a22b7e6
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:03 2013 +0100

    I18n: Update translation el (97%).
    
    385 translated messages, 8 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1025cfbec0cd46b30a01ae27319f34a71152d43e
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:02 2013 +0100

    I18n: Update translation ca (97%).
    
    384 translated messages, 9 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit ec7842d5ee3c0a81eacf86bd357f23e66054b55a
Author: Xfce <transifex@xfce.org>
Date:   Tue Nov 19 18:44:01 2013 +0100

    I18n: Update translation bn (73%).
    
    288 translated messages, 105 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f164d484549f45b6cedf0835dae1a5aa507048fe
Author: Sveinn í Felli <sveinki@nett.is>
Date:   Sun Nov 17 18:30:33 2013 +0100

    I18n: Update translation is (96%).
    
    381 translated messages, 12 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9bef47bb3da5669caf7c261412cffb938b7cc7bf
Author: Puretech <terjemah.puretech@gmail.com>
Date:   Thu Nov 14 12:30:36 2013 +0100

    I18n: Add new translation ms (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 346a35155133cffde9d5524685384cae66573dd6
Author: Cedric31 <cvalmary@yahoo.fr>
Date:   Mon Nov 11 12:30:41 2013 +0100

    I18n: Add new translation oc (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 813c948cb8387deb7a7c8adae16bf9e65c9d1afd
Author: Aputsiaĸ Niels Janussen <aj@isit.gl>
Date:   Fri Nov 8 18:30:40 2013 +0100

    I18n: Update translation da (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9093d30258a635936a490a0d88ab955aba685fee
Author: Sveinn í Felli <sveinki@nett.is>
Date:   Thu Nov 7 00:30:32 2013 +0100

    I18n: Update translation is (96%).
    
    379 translated messages, 14 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 694073b5e0c66b32db513bfc50236563bf3bd1ee
Author: Sveinn í Felli <sveinki@nett.is>
Date:   Sat Nov 2 12:30:33 2013 +0100

    I18n: Update translation is (95%).
    
    374 translated messages, 19 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d8d64ec98ed117510f0a5e10d5637c2ba2a389ee
Author: Pablo Lezaeta <prflr88@gmail.com>
Date:   Wed Oct 30 12:30:33 2013 +0100

    I18n: Update translation es (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9c03db0d7df5e3903da9a234f4f22e0ff615b9f1
Author: Pablo Lezaeta <prflr88@gmail.com>
Date:   Wed Oct 30 06:30:32 2013 +0100

    I18n: Update translation es (93%).
    
    368 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a32720764e43ca2eb6d068403e73dbfd31df360a
Author: Pablo Lezaeta <prflr88@gmail.com>
Date:   Tue Oct 29 00:30:32 2013 +0100

    I18n: Update translation es (90%).
    
    354 translated messages, 39 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3ea5d210b223f6dbb1c8a2571eabe3120e5e59de
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Sat Oct 26 00:30:35 2013 +0200

    I18n: Update translation hr (71%).
    
    282 translated messages, 111 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit fa2397aa3ecfe523e63eb2e0ea68f84b6c2ba750
Author: Pablo Lezaeta <prflr88@gmail.com>
Date:   Wed Oct 23 12:30:36 2013 +0200

    I18n: Update translation es (89%).
    
    353 translated messages, 40 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit cdc63965f25d1184165b981538babd14bacab3e6
Author: hernan144 <hernan.alvarez.guerra@gmail.com>
Date:   Fri Oct 18 18:30:31 2013 +0200

    I18n: Update translation es (88%).
    
    348 translated messages, 45 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit e85d74e52330bd66ec12dbc9a9c6a7e5a3b6a916
Author: Sveinn í Felli <sveinki@nett.is>
Date:   Wed Oct 16 18:30:34 2013 +0200

    I18n: Update translation is (91%).
    
    358 translated messages, 35 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9ac41611ff735329ff830fc07b9d612840392d7b
Author: hernan144 <hernan.alvarez.guerra@gmail.com>
Date:   Sun Oct 13 18:30:31 2013 +0200

    I18n: Update translation es (86%).
    
    340 translated messages, 53 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 84da883a645454aa0031e3a8f2c6d480bab1d587
Author: hernan144 <hernan.alvarez.guerra@gmail.com>
Date:   Fri Oct 11 18:30:36 2013 +0200

    I18n: Update translation es (86%).
    
    339 translated messages, 54 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 0ad94f87f3fb91850975b19b8ffad52db70fa118
Author: Pablo Lezaeta <prflr88@gmail.com>
Date:   Thu Oct 10 00:30:30 2013 +0200

    I18n: Update translation es (86%).
    
    338 translated messages, 55 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9a79533425f38967283af5778e4ceecf4bfde39e
Author: Sveinn í Felli <sveinki@nett.is>
Date:   Wed Oct 9 18:30:31 2013 +0200

    I18n: Update translation is (86%).
    
    340 translated messages, 53 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d6ea49e487d22bf4b9e938c3fe39e06b1165f19a
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Tue Oct 8 18:30:33 2013 +0200

    I18n: Update translation zh_TW (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 8baa7e316ab13478b42475550e71af932a99be31
Author: Walter Cheuk <wwycheuk@gmail.com>
Date:   Tue Oct 8 12:30:34 2013 +0200

    I18n: Add new translation zh_HK (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit bf00cec33fbd6f470fb7e4d6207964046e8d40de
Author: cri <cri.penta@gmail.com>
Date:   Sun Oct 6 12:30:30 2013 +0200

    I18n: Update translation it (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 0f971787a0df5234f953651f57b0eafa0361c78a
Author: hjudt <h.judt@gmx.at>
Date:   Wed Oct 2 00:30:35 2013 +0200

    I18n: Update translation de (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d0c405f2e57dd1cf0e9eb921b15f716cd3fbba4b
Author: cybercop <cybercop_montana@abv.bg>
Date:   Sun Sep 29 18:30:31 2013 +0200

    I18n: Update translation bg (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d16bc78412adac1285a6ebf6a59e91fb9975733c
Author: Sveinn í Felli <sveinki@nett.is>
Date:   Wed Sep 25 06:30:30 2013 +0200

    I18n: Update translation is (83%).
    
    328 translated messages, 65 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 73aeeca578c11e137db63a56dc09fd98e9205999
Author: Pablo Lezaeta <prflr88@gmail.com>
Date:   Tue Sep 24 06:30:31 2013 +0200

    I18n: Update translation es (83%).
    
    327 translated messages, 66 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 12bdfc6899718466b107c4c2f21f20542fcef560
Author: Pjotr123 <pjotrvertaalt@gmail.com>
Date:   Thu Sep 19 18:30:42 2013 +0200

    I18n: Update translation nl (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b322851bcbac5b607d03bf4ebd56f20367b037b3
Author: farukuzun <farukuzun@mail.com>
Date:   Thu Sep 12 12:30:30 2013 +0200

    I18n: Update translation tr (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit bc8b80c3bf1d396f5edab279a8a8ff8300daa9b1
Author: Pablo Lezaeta <prflr88@gmail.com>
Date:   Wed Sep 11 06:30:30 2013 +0200

    I18n: Update translation es (76%).
    
    302 translated messages, 91 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 4d06c74f7542073f1db1188660d765cc8df53500
Author: Necdet Yücel <necdetyucel@gmail.com>
Date:   Tue Sep 10 18:30:30 2013 +0200

    I18n: Update translation tr (93%).
    
    369 translated messages, 24 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 5f77597d788de812c3893f1dbeaa61a7a4a640f3
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Tue Sep 10 06:30:39 2013 +0200

    I18n: Add new translation hr (58%).
    
    229 translated messages, 164 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit ea7d3f39be4c6e42052517fb3a51858d7ac890fb
Author: 玉堂白鹤 <yjwork@qq.com>
Date:   Mon Sep 9 12:30:40 2013 +0200

    I18n: Update translation zh_CN (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1cd0223901a031829db27e9343d3af85b2c15ea5
Author: Karim Oulad Chalha <herr.linux88@gmail.com>
Date:   Sun Sep 8 18:30:41 2013 +0200

    I18n: Update translation ar (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a5f2adec0ddfd625bf2aa69113b145eedaf28caf
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Mon Sep 2 06:30:40 2013 +0200

    I18n: Add new translation uk (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1304a095fe063626ce0d7a78b835d48974f2ec2e
Author: Nucleo <nucleo@indamail.hu>
Date:   Sat Aug 31 06:30:38 2013 +0200

    I18n: Update translation hu (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d0df18e551350009a61c1ecc45718e7284a0c71f
Author: Sérgio Marques <smarquespt@gmail.com>
Date:   Fri Aug 30 00:30:44 2013 +0200

    I18n: Update translation pt (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 0f188e7334ffa9bec4340ddbe01d4840a0d3b69a
Author: Noskcaj <noskcaj@ubuntu.com>
Date:   Mon Aug 26 00:30:39 2013 +0200

    I18n: Update translation en_GB (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit ed3f7e8834b63fd9e32931133da9000c04ed94e8
Author: theppitak <theppitak@gmail.com>
Date:   Wed Aug 21 06:30:38 2013 +0200

    I18n: Update translation th (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 74a715e86beed508cd3149b97fd5d30e9d333471
Author: Piotr Strębski <strebski@o2.pl>
Date:   Mon Aug 19 18:30:41 2013 +0200

    I18n: Update translation pl (99%).
    
    392 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 4f4f531e098a6c0100be7720bda4a614745bbfb9
Author: asvl <alyoshin.s@gmail.com>
Date:   Sat Aug 17 18:30:40 2013 +0200

    I18n: Update translation ru (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1f388baf197da976a6a7d37585c4980a4a0fb4d3
Author: theppitak <theppitak@gmail.com>
Date:   Sat Aug 17 12:30:39 2013 +0200

    I18n: Add new translation th (51%).
    
    204 translated messages, 189 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit c63b91937b06a40257b5ee091bd3bd4050d97daa
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Thu Aug 15 12:30:44 2013 +0200

    I18n: Update translation kk (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 7660e1f36ca17ee20d2612a1ac00fc8f3f65640b
Author: The Idiot <brian.peraza@gmail.com>
Date:   Mon Aug 12 12:30:45 2013 +0200

    I18n: Update translation es (73%).
    
    287 translated messages, 106 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 659a5769c2153d66be831419d5d8de82067fcfec
Author: Milozzy <marco.sting@gmail.com>
Date:   Sat Aug 10 06:30:39 2013 +0200

    I18n: Update translation it (99%).
    
    392 translated messages, 1 untranslated message.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit cdd293ae733679217ad0e3b68f3064bf4b42d5d0
Author: pharamir <pamirmatos@gmail.com>
Date:   Wed Aug 7 18:30:40 2013 +0200

    I18n: Update translation es (69%).
    
    272 translated messages, 121 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 93e047695c79ed74a69078ea7b4612712583ce8d
Author: Anonymous <noreply@xfce.org>
Date:   Mon Aug 5 18:30:44 2013 +0200

    I18n: Update translation id (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d47d9cd390a26f67dd2e9a653c4caf21bec0733d
Author: MC <correomc2000-ing@yahoo.es>
Date:   Mon Aug 5 18:30:44 2013 +0200

    I18n: Update translation es (65%).
    
    257 translated messages, 136 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit cf9a87f4cd3699425661acd4c2112808fc453c09
Author: Anonymous <noreply@xfce.org>
Date:   Mon Aug 5 12:30:40 2013 +0200

    I18n: Update translation tr (93%).
    
    368 translated messages, 25 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 4a08b080011710d9d55789af3ef98457437c237e
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Aug 3 12:30:47 2013 +0200

    I18n: Update translation he (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit d89b3c56e4b83f9528c3cf2261356af30934ccfe
Author: jc1 <jc1.quebecos@gmail.com>
Date:   Sat Aug 3 12:30:47 2013 +0200

    I18n: Update translation fr (100%).
    
    393 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit eb2098a7d18df0a2ecd995f781cc7c861337e1f6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Aug 2 22:00:38 2013 +0200

    Use new GarconGtkMenu.

commit 2d8c0c5a1952e3214d8a27c13b308dcb2a4656d2
Author: Pjotr123 <pjotrvertaalt@gmail.com>
Date:   Wed Jul 31 18:30:48 2013 +0200

    I18n: Update translation nl (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6147a9285ecf9b7f7568a60a1fe51097e46198b2
Author: Sungjin Gang <potopro@gmail.com>
Date:   Wed Jul 31 18:30:48 2013 +0200

    I18n: Update translation ko (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 155fef995e303d05c25af39791d23fbe07be81f3
Author: MC <correomc2000-ing@yahoo.es>
Date:   Wed Jul 31 18:30:48 2013 +0200

    I18n: Update translation es (65%).
    
    257 translated messages, 138 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 52a96b881c28bf863201833d82f94cd2df4949e7
Author: Anonymous <noreply@xfce.org>
Date:   Wed Jul 31 12:30:41 2013 +0200

    I18n: Update translation ug (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 1b9213b3a8039c65fd926f8abaf233f536f41b80
Author: AK <ak099@mail.ru>
Date:   Wed Jul 31 12:30:41 2013 +0200

    I18n: Update translation ru (99%).
    
    393 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 59cc2a7a8fd234776f39c34a183f35a20ce0a742
Author: Rafael Ferreira <rafael.f.f1@gmail.com>
Date:   Tue Jul 30 18:30:45 2013 +0200

    I18n: Update translation pt_BR (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 538614ec6a906d9d8b0ff181e9e22afdba04a92d
Author: jc1 <jc1.quebecos@gmail.com>
Date:   Tue Jul 30 18:30:45 2013 +0200

    I18n: Update translation fr (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 27a5dfcb89b7ac0bce769b91d4dbf5b998b76bc0
Author: MC <correomc2000-ing@yahoo.es>
Date:   Tue Jul 30 18:30:45 2013 +0200

    I18n: Update translation es (60%).
    
    239 translated messages, 156 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 926ea045f813973924fbb33d9fc74a5f18357720
Author: k3lt01 <keltoiboy@gmail.com>
Date:   Tue Jul 30 12:30:45 2013 +0200

    I18n: Update translation en_AU (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 8af162b77612ca784dc10e32fd0077ec26993d06
Author: cybercop <cybercop_montana@abv.bg>
Date:   Tue Jul 30 12:30:45 2013 +0200

    I18n: Update translation bg (100%).
    
    395 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit b28eef61923e1fcd0750a1dafbb232905a9284c4
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Jul 29 19:01:52 2013 +0200

    Bump all glade gtk versions to 2.24.

commit 1bb2209b1fba3c128d9596fa9d29b17649f3fca0
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Jul 29 18:59:38 2013 +0200

    Tasklist: Make middle-click action configurable.
    
    Allow the set different actions to middle-click:
    
    Nothing:
    Nothing happens.
    
    Close Window:
    Do i have to explain?
    
    Minimize Window:
    Only minimize the window, this also means button-1
    events never minimize, only activate. So you never
    get lost in minimized windows anymore.

commit d2a8baaf7b972ae5ea5ead7801736fee80237678
Author: MC <correomc2000-ing@yahoo.es>
Date:   Mon Jul 29 18:30:43 2013 +0200

    I18n: Update translation es (59%).
    
    233 translated messages, 159 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 76fdd30d90ba1b48d6bd7d154d7c19140774ca1a
Author: k3lt01 <keltoiboy@gmail.com>
Date:   Mon Jul 29 12:30:56 2013 +0200

    I18n: Add new translation en_AU (100%).
    
    392 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit db012e9468c61f60cb4e0f2a9a48d3d62f36560c
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Jul 29 10:20:12 2013 +0200

    Directorymenu: Pass path to argument (bug #10270).

commit efac2544c34c69bcb752e403837f623cb8540b49
Author: 潇波 周 <zhouxiaobo.500@gmail.com>
Date:   Sat Jul 27 18:30:39 2013 +0200

    I18n: Update translation zh_CN (100%).
    
    392 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 6c455f70929fdcfdc967bb6765fb5a8c03acdd2e
Author: MC <correomc2000-ing@yahoo.es>
Date:   Fri Jul 26 18:30:41 2013 +0200

    I18n: Add new translation es (56%).
    
    222 translated messages, 170 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit bfc51c8a321b48fdc45180cbd4e83e55ce259130
Author: Kris Thomsen <lakristho@gmail.com>
Date:   Thu Jul 25 00:30:38 2013 +0200

    I18n: Update translation da (99%).
    
    390 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit a96d3c83f4e5e606ed1da35e4a08f546c838958a
Author: Noskcaj <noskcaj@ubuntu.com>
Date:   Wed Jul 24 00:30:37 2013 +0200

    I18n: Update translation en_GB (100%).
    
    392 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit fc04624681a68a0ac6306f1e6ec1ea4daf865c97
Author: Anonymous <noreply@xfce.org>
Date:   Thu Jul 11 12:30:51 2013 +0200

    I18n: Update translation ug (100%).
    
    392 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 3991eeffc2db9fce59d1aa9f86a174f3eb842a7e
Author: 潇波 周 <zhouxiaobo.500@gmail.com>
Date:   Wed Jul 10 12:30:41 2013 +0200

    I18n: Update translation zh_CN (99%).
    
    390 translated messages, 2 untranslated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f178771a3fe79b77f843a33d174e786b2853a6d0
Author: cybercop <cybercop_montana@abv.bg>
Date:   Tue Jul 9 18:30:40 2013 +0200

    I18n: Update translation bg (100%).
    
    392 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit f7cfb569c1af0813a6adb4db9f982eb2bbd9fdc3
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Sun Jul 7 12:12:49 2013 +0200

    I18n: Update translation zh_TW (100%).
    
    392 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 33192323a1ce95930ae3e1b48df3391f0403b7d2
Author: unhammer <unhammer+dill@mm.st>
Date:   Fri Jul 5 23:01:51 2013 +0200

    I18n: Add new translation nn (99%).
    
    392 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 9d75e9597fb0549aa6f736264922dd67ab97df2a
Author: cri <cri.penta@gmail.com>
Date:   Fri Jul 5 23:01:51 2013 +0200

    I18n: Add new translation it (99%).
    
    392 translated messages.
    
    Transifex (https://www.transifex.com/projects/p/xfce/).

commit 82e448803f997474f03a18173c5cecaf6141dcbc
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jul 2 22:26:24 2013 +0200

    I18n: Remove broken / unsupported translations.
    
    See http://users.xfce.org/~nick/broken-i18n/ for files and logs.
    
    Use https://www.transifex.com/projects/p/xfce/ to upload fixed versions or request a translation team.

commit 459529cf560f722a83e99393f011b70b0f8a9fa7
Author: Imre Benedek <nucleo@indamail.hu>
Date:   Fri Jun 21 02:29:52 2013 +0200

    l10n: Updated Hungarian (hu) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4d27000e61016ac0389ed70df27dc8709d7e4ff1
Author: Piotr Strębski <strebski@o2.pl>
Date:   Tue Jun 11 14:54:14 2013 +0200

    l10n: Updated Polish (pl) translation to 96%
    
    New status: 379 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c6824279086138349ee30d4e426fa82ec55a421c
Author: Piotr Strębski <strebski@o2.pl>
Date:   Tue Jun 11 14:53:19 2013 +0200

    l10n: Updated Polish (pl) translation to 94%
    
    New status: 370 messages complete with 9 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c62f43c4eb17c3caad8b1b3e3b97e8123246f7bb
Author: Neliton Pereira Junior <nelitonpjr@gmail.com>
Date:   Mon Jun 10 00:13:22 2013 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a9d00a619c35f7b129105db4a77ea14f16f42548
Author: Neliton Pereira Junior <nelitonpjr@gmail.com>
Date:   Sun Jun 9 23:41:11 2013 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 905aa9d67e5f89f252fbe9d63164e1970c2ce95e
Author: Neliton Pereira Junior <nelitonpjr@gmail.com>
Date:   Sun Jun 9 23:15:45 2013 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 503b2da5789cd070d577c7f1d1b9f217903b5a31
Author: Neliton Pereira Junior <nelitonpjr@gmail.com>
Date:   Sun Jun 9 22:51:06 2013 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 29add6c83ca246553b1bc1d9230b206daa30adab
Author: Michał Olber <michal.olber@osworld.pl>
Date:   Fri Jun 7 08:54:40 2013 +0200

    l10n: Updated Polish (pl) translation to 93%
    
    New status: 366 messages complete with 13 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 082927e52650e098fe797b2fbe4d1375c1219d02
Author: Michał Olber <michal.olber@osworld.pl>
Date:   Fri Jun 7 08:51:44 2013 +0200

    l10n: Updated Polish (pl) translation to 96%
    
    New status: 378 messages complete with 1 fuzzy and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 34e7544805d09a986ec6af724af07be85c7b151f
Author: Michał Olber <michal.olber@osworld.pl>
Date:   Fri Jun 7 08:50:28 2013 +0200

    l10n: Updated Polish (pl) translation to 96%
    
    New status: 379 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c4a8f7bd3725c7d89e86d91e092a2f062b92ff92
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Wed Jun 5 08:19:52 2013 +0200

    l10n: Updated Uyghur (ug) translation to 99%
    
    New status: 390 messages complete with 1 fuzzy and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 526a8e7d7801c3dc809fb869f6e8dea55506efa9
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Mon May 27 13:28:40 2013 +0200

    l10n: Updated Bulgarian (bg) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 22fc7ef4ff133954dfbd766776ede6206cf16c2c
Author: Urmas D <davian818@gmail.com>
Date:   Mon May 20 22:00:14 2013 +0200

    l10n: Updated Russian (ru) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 797b94cfbb35074ab72481d588b2465734fc1cb8
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sun May 12 08:51:25 2013 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 93cd40444336c1b077a9a0a31e3f216384effbfe
Author: Ardjuna <asyura.x@gmail.com>
Date:   Thu May 9 05:31:04 2013 +0200

    l10n: Updated Indonesian (id) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c2926830948705245492674eb8aedcb3bc9cae77
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Tue May 7 17:05:06 2013 +0200

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e50d250caa9348de533e89d45d58ccd27566aace
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Mon May 6 10:34:31 2013 +0200

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2aff382f9b0cf39faba41ac4dc88b7ff2476f420
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Fri May 3 12:36:41 2013 +0200

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f82a0b06a0e1b1d1bd156bbbcf03d9233132de60
Author: Pjotr vertaalt <pjotrvertaalt@gmail.com>
Date:   Thu May 2 18:46:13 2013 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 00484a932da4535b228fb76f9739a007f680f2d4
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Thu May 2 18:36:25 2013 +0200

    l10n: Updated Croatian (hr) translation to 87%
    
    New status: 342 messages complete with 0 fuzzies and 50 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b91a9fe5c6c774da233001df7b3fe5545e8ea387
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Wed May 1 19:38:10 2013 +0200

    l10n: Updated Italian (it) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e2e1b15927753df5e05bbc28f672ffa1d871c682
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Wed May 1 04:50:36 2013 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit df5914cddede5c82c9592a6c345c324584bedf9b
Author: jc jc1 <jc1.quebecos@gmail.com>
Date:   Tue Apr 30 10:07:50 2013 +0200

    l10n: Updated French (fr) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 272d6cd2b88e4d774044bf8274f64d90149ce3a4
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Tue Apr 30 06:57:38 2013 +0200

    l10n: Updated Bulgarian (bg) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3906abd30474520649c979ad2993c5287cf2b098
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Mon Apr 29 15:28:52 2013 +0200

    l10n: Updated Serbian (sr) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5e8cebcbfafc50393954475c447da9dded603480
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Mon Apr 29 12:10:47 2013 +0200

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5db56027a6cb60991ea436ea76dfc615bb9942b3
Author: André Miranda <andreldm1989@gmail.com>
Date:   Sun Apr 28 23:55:49 2013 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b3c92349f9dd7c973996b306e117fc66e5100100
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Apr 28 14:35:30 2013 +0100

    Tasklist: Pushed a patch for #8096 (close a window on middle click)
    
    A patch submitted by André Miranda (thanks!) with minor corrections.

commit 74df6cab0ec6d783ba7ab7ae45fcc6aef168c0df
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Sat Apr 27 13:58:25 2013 +0200

    l10n: Updated Bulgarian (bg) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2cc7c43d034c7edfd4bd7d1cbb0583f642c092d2
Author: Pjotr vertaalt <pjotrvertaalt@gmail.com>
Date:   Thu Apr 25 19:06:53 2013 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c047fff7997d91943f8efcaade1ebc517367a71a
Author: Evaggelos Balaskas <ebalaskas@ebalaskas.gr>
Date:   Mon Apr 22 19:39:01 2013 +0200

    l10n: Updated Greek (el) translation to 98%
    
    New status: 387 messages complete with 1 fuzzy and 3 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 41611a67c3e151eaee0ffaed9390fcc9061fb74b
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Thu Apr 18 19:37:02 2013 +0200

    l10n: Updated Czech (cs) translation to 98%
    
    New status: 386 messages complete with 2 fuzzies and 3 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f730ac73b73748314f3624a14b389f126daa5972
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Thu Apr 18 16:47:38 2013 +0200

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c266a0a7dd7807500b7199df6f8fe78c49e79b78
Author: Imre Benedek <nucleo@indamail.hu>
Date:   Sun Apr 14 03:35:23 2013 +0200

    l10n: Updated Hungarian (hu) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0843a731065aecf3eb0039870f9c3b3f0b5a2124
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Fri Apr 12 19:16:27 2013 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 27dc5ba4025e9888ffd68113211ddc9693ecbe01
Author: محمد الحرقان <malham1@gmail.com>
Date:   Wed Apr 10 18:29:21 2013 +0200

    l10n: Updated Arabic (ar) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0c1006f024404f69790b63965d8073660faadf50
Author: Rafael Ferreira <rafael.f.f1@gmail.com>
Date:   Sun Apr 7 17:37:50 2013 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ec508823542a9317e60b8b029782f018eb43c10b
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Fri Apr 5 14:33:10 2013 +0200

    l10n: Updated Serbian (sr) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c71954bd92a9db9046b51c422c86f6061727cb6c
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Thu Apr 4 11:30:11 2013 +0200

    l10n: Updated Polish (pl) translation to 96%
    
    New status: 378 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d243dceef146ab61cf82066b548cad7b981d7b6e
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Thu Apr 4 05:24:34 2013 +0200

    l10n: Updated Croatian (hr) translation to 87%
    
    New status: 341 messages complete with 0 fuzzies and 50 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 24d5634f2d13d1ff44dbbdf6dbf34d2ea27dd1ea
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Apr 3 23:58:19 2013 +0100

    ApplicationsMenu: support for non-square icons and layout fixes
    
    Switched to GtkImage for the button icon. It works better with non-square
    icons. Slightly adjusted the button layout (spacing) to match other
    plugins&HIG.
    
    It might be a good idea to move contents of the _size_changed method to
    a timeout event (loading icon etc.).

commit fb747e80da2bdc568354c8090ca0c9d05acace2c
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Apr 3 23:49:02 2013 +0100

    ApplicationsMenu: Update the icon in the config dialog
    
    ...after closing the icon chooser.

commit 65e9712bdd3f1f7013856ff8af0e311a57fa8d34
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Apr 3 22:33:51 2013 +0100

    Bugfix in icon/pixbuf resizing code.
    
    Icons were occasionally stretched to unnatural aspect ratio.
    This could be observed e.g. in applications menu plugin in multi-row
    panels and/or non-square icons.

commit 791ab4d9f75fe2916cfffeca225a7c52ef5290c6
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Mar 23 13:34:44 2013 +0100

    Install XfcePanelPlugin properties at once.
    
    Also use direct pspec notify to avoid lookup.

commit 157e3165ec1b72d9773d476351f15c6a4583fd92
Author: Sergey Alyoshin <alyoshin.s@gmail.com>
Date:   Fri Mar 29 19:00:37 2013 +0100

    l10n: Updated Russian (ru) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c91a4f1b8ca4f34c43685da902221f120745d979
Author: Roman K <mrdoctorwho@gmail.com>
Date:   Thu Mar 28 12:07:34 2013 +0100

    l10n: Updated Russian (ru) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b1c82eefd10c132b952252782db4fcaa8edeb6fe
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sun Mar 24 16:06:28 2013 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4c7b8710f8328f33febc9125b8dabaa648131748
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Sat Mar 23 20:48:33 2013 +0100

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 23a47644c37178e65c1abca115a8d3a488ec72c2
Author: Ardjuna <asyura.x@gmail.com>
Date:   Sat Mar 23 16:29:03 2013 +0100

    l10n: Updated Indonesian (id) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit dca7371e96c70f46f15db3addfca487f703532f4
Author: Pablo Roberto Francisco Lezaeta Reyes <prflr88@gmail.com>
Date:   Fri Mar 22 23:52:57 2013 +0100

    l10n: Updated Spanish (Castilian) (es) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 43e142830cb10a7cd056df72a84e567e69ce7441
Author: Edoardo Maria Elidoro <edoardo.elidoro@gmail.com>
Date:   Thu Mar 21 15:24:17 2013 +0100

    l10n: Updated Italian (it) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 15366b7d4909fefb796264e1c7747867897d79b5
Author: Kamil Polczak <elderlinx@gmail.com>
Date:   Wed Mar 20 20:41:55 2013 +0100

    l10n: Updated Polish (pl) translation to 93%
    
    New status: 364 messages complete with 1 fuzzy and 26 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 95f4ea8b3339f6b485a5c1b7216d29a8d1264354
Author: Kamil Polczak <elderlinx@gmail.com>
Date:   Wed Mar 20 20:40:41 2013 +0100

    l10n: Updated Polish (pl) translation to 93%
    
    New status: 364 messages complete with 14 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2de6386ad6f428f49775735e0c717f9a29f1d357
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Wed Mar 20 17:40:54 2013 +0100

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0ec67de008acd78943fc0b436b33b24e120ecc02
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Wed Mar 20 13:25:03 2013 +0100

    l10n: Updated Serbian (sr) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 005684459638da0354426867cb1b0d6379902954
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Mar 19 20:54:57 2013 +0100

    Only use names from the /posix directory.
    
    This does not mean we also enforce posix timezones,
    users can prepend that them selfs if they want, its
    just about avoiding duplicate names.

commit 45f8b8fbd93ac3ca5b0d150e23b87846e7599c6a
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Mar 19 20:30:50 2013 +0100

    Add completion for zoneinfo names.
    
    Unser the assumption this is located in /usr/share/zoneinfo.

commit 77f629dfc33cc5cc2a6c7075d797e7fd04e9c8e5
Author: jc jc1 <jc1.quebecos@gmail.com>
Date:   Tue Mar 19 10:21:56 2013 +0100

    l10n: Updated French (fr) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0f5e89edfb5e8ee7ab9c54328162cde024a64289
Author: jc jc1 <jc1.quebecos@gmail.com>
Date:   Tue Mar 19 10:20:33 2013 +0100

    l10n: Updated French (fr) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c8b2ad17b3cc84cb99384d64ff9caf6565e3593f
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Mon Mar 18 18:13:33 2013 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b92c132eb32c2326d4d97b58e7132ee377846802
Author: Pjotr vertaalt <pjotrvertaalt@gmail.com>
Date:   Mon Mar 18 14:07:54 2013 +0100

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 46ab7590e27b03c8587e88ad6c5181366b1679d7
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Mon Mar 18 11:56:29 2013 +0100

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fcef0e1a27773d0e5c3d6f0b5a75bb6db1a1990f
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Sun Mar 17 18:45:34 2013 +0100

    l10n: Updated Croatian (hr) translation to 86%
    
    New status: 339 messages complete with 0 fuzzies and 52 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 98e19133acf63807e4f9408339fc2b4a6ce8d9a1
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sun Mar 17 16:32:43 2013 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit df13f26e5442134ab3c4c2a9ed8e9e41bdf3148e
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 17 14:22:53 2013 +0100

    Clock: Improve tooltips, plug leaks and fix glade layout.

commit b513b93b7b047a9f46074b79fd1d85f743178751
Author: Imre Benedek <nucleo@indamail.hu>
Date:   Wed Mar 13 23:59:08 2013 +0100

    l10n: Updated Hungarian (hu) translation to 100%
    
    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 366d895b6e357c38adda03f499fc8ada3a604bfc
Author: Imre Benedek <nucleo@indamail.hu>
Date:   Wed Mar 13 01:52:49 2013 +0100

    l10n: Updated Hungarian (hu) translation to 99%
    
    New status: 392 messages complete with 0 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a539012febeb770711c410695a6fa43a2a779740
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Mon Mar 11 14:42:56 2013 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4204959fab4e6abf523150b7c0697e23177c9bc0
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Mon Mar 11 14:37:49 2013 +0100

    l10n: Updated Portuguese (pt) translation to 98%
    
    New status: 386 messages complete with 1 fuzzy and 6 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e2390ca46fac453f52b0f21b575dd9be5798d7ee
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Sun Mar 10 14:13:44 2013 +0100

    l10n: Updated Polish (pl) translation to 96%
    
    New status: 380 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9fcdac310197360c5c609c1e70d7c889f35c0504
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Sat Mar 9 16:36:05 2013 +0100

    l10n: Updated Polish (pl) translation to 96%
    
    New status: 380 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a82b41a9638162c3427bdf929c4043561265ee7b
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Fri Mar 8 15:46:08 2013 +0100

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3f99785af76075bb2c6d8488a1043d9d5464290d
Author: Rafael Ferreira <rafael.f.f1@gmail.com>
Date:   Fri Mar 8 13:32:29 2013 +0100

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 29c28afcd3b2ba793cd8c5b377210570891fde89
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Fri Mar 8 00:39:48 2013 +0000

    Clock plugin: removed a warning message.

commit 4df52ad7e4a4ac36515e9ed366902109f447282d
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Wed Mar 6 12:23:59 2013 +0100

    l10n: Updated Italian (it) translation to 100%
    
    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ad0357cdd019c547ca5b7a223c1cef8f99164afd
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Tue Mar 5 19:41:30 2013 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c95b7e15d890e005c4338eb5a330fbc94f5bab67
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Tue Mar 5 15:10:00 2013 +0100

    l10n: Updated Serbian (sr) translation to 100%
    
    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 721d7767b84da74703b52dba0a2fa096817ef192
Author: jc jc1 <jc1.quebecos@gmail.com>
Date:   Tue Mar 5 08:14:43 2013 +0100

    l10n: Updated French (fr) translation to 100%
    
    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 82516c7cbe62fade01c1616062ba49225b576636
Author: jc jc1 <jc1.quebecos@gmail.com>
Date:   Tue Mar 5 08:11:57 2013 +0100

    l10n: Updated French (fr) translation to 99%
    
    New status: 391 messages complete with 0 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5a2a8ee0713cfaf09ba8a16c4d4b9a1a6546c93e
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Tue Mar 5 07:07:30 2013 +0100

    l10n: Updated Croatian (hr) translation to 86%
    
    New status: 338 messages complete with 0 fuzzies and 55 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8a1626dde31166dbca651fbda20cc0250fa20937
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Mon Mar 4 17:14:00 2013 +0100

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ebe0af48f83e2ebe3970bf8e0b347993cdabd0e3
Author: Pjotr vertaalt <pjotrvertaalt@gmail.com>
Date:   Sun Mar 3 15:18:00 2013 +0100

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0ed19c84ecd2209b72dbef3e9b0a96d5c08d6e89
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Sun Mar 3 14:51:42 2013 +0100

    l10n: Updated Serbian (sr) translation to 100%
    
    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 26436355562e7df6cef1364917e242fd26b5222f
Author: Саша Петровић <salepetronije@gmail.com>
Date:   Sun Mar 3 14:49:43 2013 +0100

    l10n: Updated Serbian (sr) translation to 99%
    
    New status: 392 messages complete with 0 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 68825fb99cade800a90cdf28cb76ad9a1d377336
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Feb 27 21:57:56 2013 +0000

    Clock plugin: make the calendar popup modal again.
    
    To force a non-modal popup behavior, use a middle mouse button
    or Ctrl+Btn1.

commit 1438d76490266786b0524615e283779b7511cb42
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Feb 27 21:55:20 2013 +0000

    Clock plugin: fix double-click behavior when a command is set.

commit d05695e54ee7048d233bf858ecb1ba5abf6f30dc
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Feb 27 00:14:52 2013 +0000

    Clock plugin, updated information in tooltips.

commit 7ae9b8817a10b151665a9d0e69de7058eb29c4d1
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Feb 26 23:42:43 2013 +0000

    Clock plugin: removed frame widget from calendar popup.
    
    (Three devs considered the popup looking better without the frame.)

commit c09730c9ccafacdd916b7ec1514d7159eb672e04
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Feb 26 22:38:33 2013 +0000

    Clock plugin, an attempt to fix random crashes.
    
    Reports of random segfaults when adding/removing the plugin.
    Can't be reproduced here.

commit 9eb22de2489a039b50e7227a0e41aaa62fd9696f
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Feb 26 22:34:59 2013 +0000

    Clock plugin: changed the tooltip text.

commit 769e1a41581c5e8bf99d8da34c20565b719d4892
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Feb 25 23:38:04 2013 +0000

    Clock plugin: adjusted defaults.
    
    - A simpler label for the configuration button.
    - An empty string for the time configuration command
      - the button is grayed out when the config command is empty

commit 592668fb4cdfb57ab92a3aa68b42ece502c0c4fe
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Feb 25 01:58:06 2013 +0000

    Clock plugin: a fix to the previous commit
    
    The new property was not bound properly.

commit 7d6203b69bd776304825afcdc859f115c911d7cf
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Feb 25 01:40:30 2013 +0000

    Clock plugin: added a function to call a system clock config tool

commit 27ce25acc51153f3f8d3c70fb1018b9b1ad14e8a
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Feb 24 00:35:47 2013 +0000

    Clock: fixed the month in the calendar popup.

commit d9c3b0763fe46f164acd9f445c18a3eae262a91a
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat Feb 23 23:13:29 2013 +0000

    Clock plugin: added a simple timezone selection UI.

commit 1e4d05c8ad33e2a03d95d9215df576bcf5b2cb06
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat Feb 23 02:07:59 2013 +0000

    Clock plugin: proper timezone support and refactoring.
    
    Regression testing appreciated.
    
    Switched to GDateTime and GTimeZone API - they do not use global
    variables, so it is possible to have several clock plugins set to
    different time zones.
    
    Bonus: utf-8 support and localization.
    
    The change required a rather deep refactoring. Added a new class
    abstracting time operations, which can be accessed from either the plugin
    or clock widgets. Previous design worked only because the time functions
    did not need a local state (e.g. a timezone).

commit 6a34f8151ea55dc732ddb857d5c708cd96de2a10
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Feb 12 02:00:20 2013 +0000

    Added a timezone property to the clock plugin.
    
    At the moment it can only be set via xfconf-query, e.g.:
    
    xfconf-query -c xfce4-panel -p /plugins/plugin-38/timezone -n -t string -s "Asia/Tokyo"
    
    If timezone is unset or set to "", the plugin defaults to a system's
    local time.

commit a5ff28b467a93a263b7459d894c3f81584d45657
Author: Masato Hashimoto <hashimo@xfce.org>
Date:   Sat Mar 2 11:41:27 2013 +0100

    l10n: Updated Japanese (ja) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f889d7f913731f675b1503a94b6d79b298802f11
Author: كريم أولاد الشلحة <herr.linux88@gmail.com>
Date:   Tue Feb 5 20:46:57 2013 +0100

    l10n: Updated Arabic (ar) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e7f45f49ec551538bd9cdf2011719d90365586f2
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Tue Jan 29 10:16:02 2013 +0100

    l10n: Updated Polish (pl) translation to 96%
    
    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6ae92167e2d971e841eba9724c159c554849a822
Merge: 4a04a2f8c 3d9656071
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Fri Jan 25 21:38:04 2013 +0000

    Merge branch 'andrzejr/clock'

commit 4a04a2f8cbf166147d632126408288fc58979c7b
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date:   Fri Jan 25 21:17:33 2013 +0100

    l10n: Updated Bulgarian (bg) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3d96560710786462f56f0c0d6a888922794d5a6a
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Jan 21 00:38:55 2013 +0000

    Removed "show-frame" property.

commit 422239beb277a6e534e25bcf627470ce552a4918
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Jan 21 00:27:47 2013 +0000

    Removed frame object and all references to it.
    
    A frame looks bad inside a button and adds unnecessary padding
    (on top of what the button has added).
    
    The "show-frame" property is left unchanged but is nonfunctional.

commit a672491a6d2d12264c7e2f823cdf271b7e3acf82
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Jan 21 00:12:07 2013 +0000

    Adding a possibility to close the calendar popup with "Esc"
    
    Calendar popup can be closed with an Escape key, provided it
    has a keyboard focus.

commit eb7f419731ce953836def8d36650c967cc223298
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Jan 21 00:10:24 2013 +0000

    Placing a clock widget (with frame) in a toggle button.
    
    A toggle button is used to trigger opening/closing of a calendar popup.
    This is consistent with what other plugins do (e.g. app menu etc.).
    
    This seems to work well with all clock widgets (digital, analog, etc.).
    
    Had to rewire all events to the button, otherwise button's event handlers
    were blocking them.

commit 2db0667c9c6bddb5b3b78b5a2c00a783b2330986
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Jan 20 22:41:23 2013 +0000

    Revert "Hide calendar window on <Esc> or mouse press outside the popup."
    
    Discussion on why this solution may not be a good idea is in:
    https://bugzilla.xfce.org/show_bug.cgi?id=9034
    
    This reverts commit 8e4e5be299c09595a6ba19ab0216c29db69edb47.

commit 48e1016394fa6bdb1d708823a23a12641482a561
Author: Carlos Silva <r3pek@r3pek.org>
Date:   Fri Dec 14 00:14:36 2012 -0100

    Fix icons not probably resizing when requested.
    
    Looks like gdk_pixbuf_new_from_file_at_scale and gdk_pixbuf_new_from_file_at_size really don't scale the image leaving the image loaded with its original size. So, just load the file without any scale and let the scale be done later on the function.
    
    Signed-off-by: Carlos Silva <r3pek@r3pek.org>

commit 8e4e5be299c09595a6ba19ab0216c29db69edb47
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat Jan 12 00:23:34 2013 +0000

    Hide calendar window on <Esc> or mouse press outside the popup.

commit a786acf194436b79c4c01417e996c9f231b26760
Author: Piotr Strębski <strebski@o2.pl>
Date:   Tue Jan 8 19:23:14 2013 +0100

    l10n: Updated Polish (pl) translation to 96%
    
    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d4c4c5a745db93acb341879ec18adcc795df8507
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 6 12:20:16 2013 +0100

    Autotools updates.

commit d0d72484a74ae4a5f9a246694711ef9ea6c2fe59
Author: Walter cheuk <wwycheuk@gmail.com>
Date:   Sat Jan 5 04:15:52 2013 +0100

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 81cdcc082542605877a94fde9421752ac2d8daea
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 27 11:21:48 2012 +0100

    Remove unmaintained translations.

commit c12b14f5cf553b00e84a4a07e4df62e37e412d26
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Dec 16 18:14:39 2012 +0100

    Put each window in a new window group.
    
    Better wrt grab and stuff.

commit 078ef77ff384a6a3c0035d4c8101769627767ea8
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Dec 2 13:20:45 2012 +0100

    Ignore GVarueArray compiler warning.

commit ce0e8e5dc6d034484b3cb72c5e7a7971a8883aeb
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Tue Dec 4 14:28:08 2012 +0100

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 20cf9e8256bf41814aee2e6662c6c3d2527c3f80
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Dec 2 22:30:08 2012 +0100

    Use G_ENABLE_DEBUG to set fatal messages.

commit 2accbc41cfc21b834710f644da0ff27fac01d909
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sun Nov 18 06:43:45 2012 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 453876c62db12098ca3c34a5abc4ef49604bba13
Author: محمد الحرقان <malham1@gmail.com>
Date:   Sun Nov 18 04:10:14 2012 +0100

    l10n: Updated Arabic (ar) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a174136cea68c8eedec86df8a966e864feb34947
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Tue Nov 6 16:25:24 2012 +0100

    l10n: Updated Croatian (hr) translation to 87%
    
    New status: 338 messages complete with 0 fuzzies and 49 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fde6588b0d453ef965c276b12afd23ecccabb52a
Author: Mario Blättermann <mario.blaettermann@gmail.com>
Date:   Wed Oct 31 13:35:27 2012 +0100

    l10n: Updated German (de) translation to 99%
    
    New status: 385 messages complete with 2 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 08430848a8fc38a8090b88ea1b6f6e124e48a205
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Wed Oct 24 05:44:50 2012 +0200

    l10n: Updated Uyghur (ug) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 478c43e89b291e89f726d43a861e1266e0fa5905
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Thu Oct 11 00:20:44 2012 +0100

    Fixed DnD markers with non-square small items.

commit 35086017fa0e7b87f2b51755c3e61a89a31f5527
Author: Marcin Romańczuk <abjsyn@gmail.com>
Date:   Sat Oct 6 19:42:25 2012 +0200

    l10n: Updated Polish (pl) translation to 96%
    
    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3289b3b6f4bdce4947ababddeab2386b785c7a84
Author: Marcin Romańczuk <abjsyn@gmail.com>
Date:   Thu Oct 4 22:34:12 2012 +0200

    l10n: Updated Polish (pl) translation to 96%
    
    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2bee3ff002f7aedecffcf17b14b2302e7c043505
Author: Piotr Strębski <strebski@o2.pl>
Date:   Mon Sep 24 21:19:49 2012 +0200

    l10n: Updated Polish (pl) translation to 96%
    
    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 71d2c25d58dfef82b658eaa3d7ec9f9d4f6e18f2
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Sat Sep 15 15:43:57 2012 +0200

    l10n: Updated Polish (pl) translation to 96%
    
    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2803b05f5a58d334c6ddab03fef2821cb7c7ccc7
Author: Efstathios Iosifidis <iefstathios@gmail.com>
Date:   Wed Aug 22 18:55:37 2012 +0200

    l10n: Updated Greek (el) translation to 99%
    
    New status: 385 messages complete with 0 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5cd21c4584c69e086451b71de8e9dc2b4b872002
Author: Kris Thomsen <mail@kristhomsen.dk>
Date:   Mon Aug 6 23:54:24 2012 +0200

    l10n: Updated Danish (da) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3a6ba13202bca29ca77d8ad8364e5181c43fa524
Author: Kris Thomsen <mail@kristhomsen.dk>
Date:   Mon Aug 6 23:52:53 2012 +0200

    l10n: Updated Danish (da) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f5d9614de99e2d024782cc1a794d2717c1a168ce
Author: Kris Thomsen <mail@kristhomsen.dk>
Date:   Mon Aug 6 23:21:01 2012 +0200

    l10n: Updated Danish (da) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 18f5785b81c60ce19686c079fcf7a15afc3dbb30
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sun Aug 5 21:22:23 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit cc675bed70bccf0ae364008814faa44ef81bc867
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sun Aug 5 19:48:50 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 46042c481a9b43efcfc38e65dc9647ae818ebc52
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Aug 5 13:16:24 2012 +0200

    Tasklist: Remove binding for blinking buttons, no UI for this.

commit cccd7a5a0044dfb32df19333f1b7325d836670e6
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Sat Aug 4 01:50:25 2012 +0200

    l10n: Updated Uyghur (ug) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e3e50718f3b890a79c7b13f7c993248fa0e5fc7b
Author: Mathieu Chouquet-Stringer <mchouque@online.fr>
Date:   Thu Jul 26 20:01:58 2012 +0200

    Tasklist: Show urgent windows from other workspaces (bug #5167).

commit 0456c33cceb85e64c609beecddee942624b51a72
Author: Guido Berhoerster <gber@opensuse.org>
Date:   Mon Jul 23 17:58:50 2012 +0200

    Clock: Add calendar popup to clock plugin (bug #9034).

commit 17643fd28f499691ae97503eb58755b4b9fabb53
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jul 22 11:43:51 2012 +0200

    Actions: Fix logic of session saving (bug #8857).

commit eae14b0fc9587bb2064efd59170a602844f1cd15
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Mon Jul 16 08:17:20 2012 +0200

    l10n: Updated Uyghur (ug) translation to 92%
    
    New status: 359 messages complete with 0 fuzzies and 28 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2dae95a8906b08178b556c72aead22d6fc3043ec
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Mon Jul 16 06:10:52 2012 +0200

    l10n: Updated Uyghur (ug) translation to 92%
    
    New status: 359 messages complete with 0 fuzzies and 28 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9c0c7a94cb558f29baaae4924c35b7f7f572a0ca
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Fri Jul 13 06:49:01 2012 +0200

    l10n: Updated Uyghur (ug) translation to 91%
    
    New status: 356 messages complete with 0 fuzzies and 31 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit cad88939ab39d43182954cd4125078b6dae9cfcb
Author: Sveinn í Felli <sveinki@nett.is>
Date:   Mon Jul 2 18:16:55 2012 +0200

    l10n: Updated Icelandic (is) translation to 70%
    
    New status: 244 messages complete with 44 fuzzies and 56 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 074b43aae71b224b827b6f195745bccd04db3f0a
Author: Johannes Lips <johannes.lips@googlemail.com>
Date:   Sun Jul 1 22:28:50 2012 +0200

    l10n: Updated German (de) translation to 96%
    
    New status: 373 messages complete with 14 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f69266edafa04bd6e1c7b06791f1ab0a39f5020c
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Wed Jun 20 12:04:04 2012 +0200

    l10n: New Serbian translation, author salepetronije
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 35d929520272b8356e095de1b579daf46cf69b15
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Thu May 31 07:40:45 2012 +0200

    l10n: Updated Uyghur (ug) translation to 75%
    
    New status: 259 messages complete with 0 fuzzies and 85 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 41077b998bddbac52e3eb374275356be8e2df8d9
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Fri May 25 10:02:04 2012 +0200

    l10n: Updated Polish (pl) translation to 96%
    
    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b399b5eb4b8338bb3715ebaa1baea6e4a6917f70
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Fri May 11 21:01:47 2012 +0200

    l10n: Updates to Croatian (hr) translation
    
    New status: 332 messages complete with 0 fuzzies and 55 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9a20b60b33681df2dfd791e5a927263e56f8bb2e
Author: Utku Berberoğlu <utku.berber@gmail.com>
Date:   Wed May 9 19:25:54 2012 +0200

    l10n: Updated Turkish (tr) translation to 93%
    
    New status: 362 messages complete with 25 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 89cfd5293f0306721f19fe6216637f3aca90372f
Author: Nick Schermer <nick@xfce.org>
Date:   Mon May 7 18:27:08 2012 +0200

    Panel: Emit save signal for plugins.
    
    Save every 10 minutes and on shutdown.

commit 1ef673146308188207606724e5aa0f79e9e1e1b2
Author: Alper Tekinalp <alper.tekinalp@gmail.com>
Date:   Sun May 6 13:12:45 2012 +0200

    l10n: Updated Turkish (tr) translation to 93%
    
    New status: 362 messages complete with 25 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 61fb804a6bac1c6d0c76933971a1fd2dcdcd0761
Author: Utku Berberoğlu <utku.berber@gmail.com>
Date:   Sat May 5 11:42:23 2012 +0200

    l10n: Updated Turkish (tr) translation to 86%
    
    New status: 336 messages complete with 51 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 64c273bc5323f55ec89db58351ffc5c8455f6b7b
Author: Andrei Zakharevich <andrej@zahar.ws>
Date:   Fri May 4 21:02:28 2012 +0200

    l10n: Updated Belarusian (be) translation to 15%
    
    New status: 60 messages complete with 123 fuzzies and 204 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 53463ae88ddcb7a35865271ff05c053cae6453a9
Author: Andrei Zakharevich <andrej@zahar.ws>
Date:   Fri May 4 20:58:51 2012 +0200

    l10n: Updated Belarusian (be) translation to 12%
    
    New status: 49 messages complete with 132 fuzzies and 206 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8cac8de7da95a0e0fc1f1eb6a23c9a341f68c77a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri May 4 17:36:03 2012 +0200

    Libxfce4-panel: Fix typo in the API docs.

commit 694dd69feecdd485e24ebd8ca9adf501d1e70755
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Fri May 4 09:07:14 2012 +0200

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8b29afa4caec5c5941c49bbf85d8238242dfb8d2
Author: كريم أولاد الشلحة <herr.linux88@gmail.com>
Date:   Tue May 1 23:11:59 2012 +0200

    l10n: Updated Arabic (ar) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit bac9f333183097a13f7fbfd081dc0d9fdbcf88c8
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Apr 28 22:33:31 2012 +0200

    Post release tag bump.

commit 40e368035e0814d7401eee0d01aaa18cbe3cc597
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Apr 28 22:31:33 2012 +0200

    Updates for release.

commit 4d9f193f5195f4c62f9abf5a49a55488f9d6c1b3
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Apr 28 21:35:14 2012 +0200

    Migrate: Don't try to migrate already migrated plugin (bug #8778).
    
    If the migration fails, don't reset the action type but
    abort instead.

commit 4d4972b533409b5ea43658e05d31ec8066728e57
Author: Mișu Moldovan <dumol@xfce.org>
Date:   Fri Apr 27 23:55:04 2012 +0200

    l10n: Updated Romanian (ro) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit dee6b780228459c45a736b38589fe2cd0e793880
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Fri Apr 27 21:11:06 2012 +0200

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 25d6c24ddffed2e894cebbf4262c5aa9bcf4aae6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Apr 27 17:52:01 2012 +0200

    Migrate: Use correct pointer for action migrate (bug #8781).

commit 7d23872d60646d0283cb0ff2599426d55b9b5844
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Fri Apr 27 00:25:28 2012 +0200

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit cef93583e2d9e1140255dbdf98c20c63e9e7f586
Author: Masato Hashimoto <hashimo@xfce.org>
Date:   Wed Apr 25 13:36:18 2012 +0200

    l10n: Updated Japanese (ja) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e853a05d03eb83786ef5f103e0ca7fa0fc6714a8
Author: Andres Sanchez <afsanchez93@gmail.com>
Date:   Tue Apr 24 21:23:55 2012 +0200

    l10n: Updated Spanish (Castilian) (es) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 869b490f9334a721c91e04b393409e7f3f03a443
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Tue Apr 24 12:17:32 2012 +0200

    l10n: Updated Polish (pl) translation to 96%
    
    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a01ba63de9b25af7435d7d6e3fa30fe4fc2a36ff
Author: Chipong Luo <chipong.luo@yahoo.com>
Date:   Mon Apr 23 16:55:15 2012 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1f703f64b4de98233825eb0b68bc421fb179db87
Author: Chipong Luo <chipong.luo@yahoo.com>
Date:   Mon Apr 23 16:41:55 2012 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3399ce4677a2acbe3bccb4442ff8aa2c9a8be908
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Mon Apr 23 14:00:14 2012 +0200

    l10n: Updated Galician (gl) translation to 90%
    
    New status: 352 messages complete with 13 fuzzies and 22 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 888a0395ec9e4d5516dcd5f571c8e04880fb5b25
Author: Masato Hashimoto <hashimo@xfce.org>
Date:   Mon Apr 23 13:59:01 2012 +0200

    l10n: Updated Japanese (ja) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5a272c4f9d90b5037612ebe4591b535b866715d5
Author: Kamil Polczak <elderlinx@gmail.com>
Date:   Sun Apr 22 22:36:58 2012 +0200

    l10n: Updated Polish (pl) translation to 4%
    
    New status: 17 messages complete with 121 fuzzies and 249 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 50ec2111647986133140b4de4e45241e38dfc1e2
Author: Christoph Wickert <christoph.wickert@googlemail.com>
Date:   Sun Apr 22 22:22:54 2012 +0200

    l10n: Updated German (de) translation to 96%
    
    New status: 373 messages complete with 14 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 61456edb54e009d634ad0a36f577d1851961024b
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sun Apr 22 22:22:43 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 034e933fc1a4f8445cd00db70a3d750b19645ffd
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sun Apr 22 21:46:52 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ce1177102e5a8299dc075616607e6332b0464720
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Apr 22 21:41:56 2012 +0200

    Restore child properties when moving a plugin.

commit c8d153ec547f3d585ff44f96b9266f30a5bff506
Author: Jakob Kramer <jakob.kramer@gmx.de>
Date:   Sun Apr 22 21:32:55 2012 +0200

    l10n: Updated German (de) translation to 96%
    
    New status: 374 messages complete with 13 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1ef4b83254b3caca3a0a288bcd018636c3d48235
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sun Apr 22 20:29:17 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit bb28ae7248a56b0e34b5a2902d600b769ead18ae
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Apr 20 20:19:30 2012 +0200

    Use correct LGPL licenses in the libs.

commit c44587b15e5869a95d353b58e30dd6581fc26a69
Author: Chipong Luo <chipong.luo@yahoo.com>
Date:   Fri Apr 20 17:59:23 2012 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c8de5537ce0b7963bccbc15c47df3d1dfccce726
Author: Chipong Luo <chipong.luo@yahoo.com>
Date:   Fri Apr 20 14:57:37 2012 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f244c37bbb1cea5c81be7c68fb2b1cd9422cf1cb
Author: Michał Olber <michal.olber@osworld.pl>
Date:   Thu Apr 19 20:26:47 2012 +0200

    l10n: Updated Polish (pl) translation to 100%
    
    New status: 681 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 89d015f964075f913b2349db7c5780bdbf34bfb8
Author: Jeff Bailes <thepizzaking@gmail.com>
Date:   Thu Apr 19 08:27:51 2012 +0200

    l10n: Updated English (United Kingdom) (en_GB) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 59be88310c0075c19ff7dfcc776f229b321f1755
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Wed Apr 18 16:14:07 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 48bb508420e6585e8c7d5bd84e911c11a917d9db
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Tue Apr 17 16:04:29 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9d690c032f51210c0d5cda562fe25f090b72d9c3
Author: Sergio García <oigres200@gmail.com>
Date:   Tue Apr 17 07:22:40 2012 +0200

    l10n: Updated Spanish (Castilian) (es) translation to 99%
    
    New status: 384 messages complete with 3 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 75faba5f1734800a405a19500e597b5ae3992728
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Tue Apr 17 00:20:43 2012 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9314d33db8ecd04c8df6465c55c17c0d3628898f
Author: Henrique P. Machado <zehrique@xfce.org>
Date:   Sun Apr 15 21:46:05 2012 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f72437dff5508d4a684bd729ee76dd7d06827964
Author: Mike Massonnet <mmassonnet@gmail.com>
Date:   Sun Apr 15 14:09:49 2012 +0200

    l10n: Updated French (fr) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1b2f021610f986b511d7e33b3bd9885d2afab312
Author: Mike Massonnet <mmassonnet@gmail.com>
Date:   Sun Apr 15 14:08:25 2012 +0200

    l10n: Updated French (fr) translation to 99%
    
    New status: 386 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 20bb6fc650af1c1c3657cea021b730fd62a82d25
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Sun Apr 15 12:10:45 2012 +0200

    l10n: Updated Polish (pl) translation to 96%
    
    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 58b5c955384d094eb7fef162679df8ff76fa88b4
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Apr 14 20:51:32 2012 +0200

    l10n: Updated Hungarian (hu) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 84c4d12e2a3758f9c9a94300628bc640cc2e7dfd
Author: Masato Hashimoto <hashimo@xfce.org>
Date:   Sat Apr 14 15:06:39 2012 +0200

    l10n: Updated Japanese (ja) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fa06d2a73c84b9ed7c7c6eda4019ed1d8be7c9ae
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Apr 14 00:49:37 2012 +0200

    Post release tag bump.

commit 41f37060ca4b89f1ae050e7f8f972db0a7ee521c
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Apr 14 00:46:26 2012 +0200

    Updates for release.

commit 9c0fee2cd46a5083b086e5d68c82cc9726cae3c1
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Apr 13 22:42:50 2012 +0200

    Bump version-info of libxfce4panel.
    
    Some API was removed or changed, so packagers need to
    rebuild every plugin against the new panel.
    Enforce this by bumping the library version.

commit 58769ecd756d2fab5537e113e786b788eb26f998
Author: Iliyas Jorio <inv.jorio@gmail.com>
Date:   Sat Apr 14 00:03:30 2012 +0200

    l10n: Updated French (fr) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit dd26b81388cadd7e67db8302b36b068e60a297a6
Author: martinamca <martinamca@gmail.com>
Date:   Fri Apr 13 23:53:07 2012 +0200

    l10n: Updated Turkish (tr) translation to 86%
    
    New status: 333 messages complete with 54 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6589f0aee8be8e021eff28f051cf41bc9597e692
Author: martinamca <martinamca@gmail.com>
Date:   Fri Apr 13 23:52:14 2012 +0200

    l10n: Updated Turkish (tr) translation to 85%
    
    New status: 331 messages complete with 54 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ee96a179c84eaea3e87b00c1034832682f563b0b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Apr 13 18:59:50 2012 +0200

    Clock: Fix compiler warning (bug #8648).

commit 817439ea720ae5ca2d6fea0e547f237dd4c6af73
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Apr 13 18:53:41 2012 +0200

    Actions: Fix mnemonics conflict (bug #8657).

commit 2025534504277c2d79e8278f877fa8d6140c5b70
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Apr 13 18:07:57 2012 +0200

    Check for sed using a macro.

commit 83fecb1e4296fdc798d9825c58464cf60058c925
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Fri Apr 13 17:54:39 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ad918d6352b6c0b21f97bbf76b37fb498bfb967a
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Fri Apr 13 17:38:40 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 45f837cb149a64e49fe32ab8d51be85684fcf3db
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Fri Apr 13 15:49:39 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4266cd6db4af5b0dbb831c4a26cd2d702411fbb4
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Fri Apr 13 13:28:54 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b2a1c20ae86176870aa2f72a73506c267895250a
Author: Jakob Kramer <jakob.kramer@gmx.de>
Date:   Thu Apr 12 21:25:55 2012 +0200

    l10n: Updated German (de) translation to 96%
    
    New status: 373 messages complete with 14 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b7d773000c41c4ab61a8169369dc8fe38938a6c9
Author: Efstathios Iosifidis <iefstathios@gmail.com>
Date:   Wed Apr 11 20:39:26 2012 +0200

    l10n: Updated Greek (el) translation to 95%
    
    New status: 368 messages complete with 7 fuzzies and 12 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 09d510cd0f1e5adc8275f5b82faebd29f4ba8963
Author: Raphael Groner <raphgro@web.de>
Date:   Wed Apr 11 20:14:15 2012 +0200

    l10n: Updated German (de) translation to 96%
    
    New status: 373 messages complete with 14 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit cc9eed029a3775224f6513d9bef75d5686f3ed51
Author: Masato Hashimoto <hashimo@xfce.org>
Date:   Wed Apr 11 15:13:08 2012 +0200

    l10n: Updated Japanese (ja) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f7535a847f6da6844da1979fe306f708fce61389
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Tue Apr 10 22:30:11 2012 +0200

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3e457b5c2968eb54cfd90061daaf4a8877e71f11
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Tue Apr 10 19:44:34 2012 +0200

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit bd29276a8305025e71b09b1940c025cacc31359f
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Tue Apr 10 13:17:38 2012 +0200

    l10n: Updated Galician (gl) translation to 90%
    
    New status: 350 messages complete with 14 fuzzies and 23 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 35aa6f889c3b7ad963dd1d5b21fb1ce5da215598
Author: Eivind Ødegård <gingermig@yahoo.no>
Date:   Tue Apr 10 12:48:57 2012 +0200

    l10n: Updated Norwegian Nynorsk (nn) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0e2d97b0745f78b88b7453d04aba69edd5ae8a5c
Author: Chipong Luo <chipong.luo@yahoo.com>
Date:   Tue Apr 10 03:05:05 2012 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4216cae17128346add6ee17ef12a1f837518b7ac
Author: Alper Tekinalp <alper.tekinalp@gmail.com>
Date:   Mon Apr 9 22:07:38 2012 +0200

    l10n: Updated Turkish (tr) translation to 85%
    
    New status: 331 messages complete with 50 fuzzies and 6 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f8d20cefd1b089c628eb0443636e4ed27b583357
Author: Alper Tekinalp <alper.tekinalp@gmail.com>
Date:   Mon Apr 9 21:31:00 2012 +0200

    l10n: Updated Turkish (tr) translation to 74%
    
    New status: 290 messages complete with 92 fuzzies and 5 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 43ff6e135fd2878859d3b393b4276b537f3d0a84
Author: Jakob Kramer <jakob.kramer@gmx.de>
Date:   Mon Apr 9 19:11:03 2012 +0200

    l10n: Updated German (de) translation to 96%
    
    New status: 373 messages complete with 12 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 13dd762404fc7df1813ec371114a9717c2e932bc
Author: Jakob Kramer <jakob.kramer@gmx.de>
Date:   Mon Apr 9 19:08:18 2012 +0200

    l10n: Updated German (de) translation to 96%
    
    New status: 374 messages complete with 11 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 72083ca030edd6edade47ee1bc267ac3f9612381
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Apr 9 18:22:25 2012 +0200

    Actions: Show translated strings (bug #8660).

commit ba3869b26ac801b13856df3ecdb24ceb66fb4259
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Mon Apr 9 16:32:23 2012 +0200

    l10n: Updated Polish (pl) translation to 96%
    
    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e03c54bd72d26cdce3b0d586f12a184379b6c360
Author: Jakob Kramer <jakob.kramer@gmx.de>
Date:   Mon Apr 9 12:09:29 2012 +0200

    l10n: Updated German (de) translation to 96%
    
    New status: 374 messages complete with 11 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 62d57a259c0976fbbddd0cc080a05ac6e60e485e
Author: Michał Olber <michal.olber@osworld.pl>
Date:   Mon Apr 9 00:37:10 2012 +0200

    l10n: Updated Polish (pl) translation to 95%
    
    New status: 369 messages complete with 4 fuzzies and 14 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 83594b2e4c075bd44a3e7a2e328f2deac1b5c5be
Author: Michał Olber <michal.olber@osworld.pl>
Date:   Mon Apr 9 00:33:51 2012 +0200

    l10n: Updated Polish (pl) translation to 94%
    
    New status: 366 messages complete with 4 fuzzies and 17 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9db00b420df278ee9afb072f427d56e42853dbe0
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sun Apr 8 15:51:52 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6e602c865752bcdb839b68dbc786939fa34cfd44
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sun Apr 8 15:22:11 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 43000776ffda70f06a8f1debaaf4a7d2666710c7
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sun Apr 8 14:07:15 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit eb08fcf15dc2c591407ebce9c655c1003097d868
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sun Apr 8 13:38:04 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6fd340b8a039950d1868c6783337be26181e211d
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sun Apr 8 13:37:02 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit be1285da99168aca64e7ae3811df5520940094e9
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Sun Apr 8 10:46:43 2012 +0200

    l10n: Updated Czech (cs) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3b4857194203f628d0363f15fbefd4b4403e9bbd
Author: Mario Blättermann <mario.blaettermann@gmail.com>
Date:   Sat Apr 7 20:15:00 2012 +0200

    l10n: Updated German (de) translation to 96%
    
    New status: 374 messages complete with 11 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 81f2ae40e068aa9aa92b4fd2b766553c6691544e
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Apr 7 18:25:08 2012 +0200

    Bump gtk, glib, wnck and xfce dependencies.

commit d2e7c17cf516faa630f12441f6f76b93a330510d
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Thu Apr 5 12:48:26 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7fea2e20522c971ca773ba68f4b289163c102a4b
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Thu Apr 5 12:23:48 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit cd5315183bf2532b1b83806974baacf857e21c17
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Thu Apr 5 12:14:40 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1f620976797794fd83e6b7490aa6d91664e35717
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Thu Apr 5 11:03:36 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 27f1afd2f6eb4b378f606b0fb7092f2fef889363
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Wed Apr 4 23:48:10 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9d5f8092a061371e5c3665a46e180567e75409de
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Wed Apr 4 22:41:08 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit dd213b584606ff5f3367c35968dd4c1956e42e49
Author: martinamca <martinamca@gmail.com>
Date:   Wed Apr 4 22:30:54 2012 +0200

    l10n: Updated Turkish (tr) translation to 73%
    
    New status: 284 messages complete with 98 fuzzies and 5 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 484533ebef346b27c3fe5da58812de8c58cd5d5b
Author: Piarres Beobide <pi@beobide.net>
Date:   Tue Apr 3 13:33:41 2012 +0200

    l10n: Updated Basque (eu) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b37adc2b0c535d2de3c46629dc6cafd503d9f702
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Tue Apr 3 12:40:44 2012 +0200

    l10n: Updated Polish (pl) translation to 90%
    
    New status: 352 messages complete with 4 fuzzies and 31 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c90179b3201d938ea71ef59c7e9c0888bf7c94a4
Author: Alper Tekinalp <alper.tekinalp@gmail.com>
Date:   Tue Apr 3 11:36:13 2012 +0200

    l10n: Updated Turkish (tr) translation to 73%
    
    New status: 284 messages complete with 95 fuzzies and 8 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 04e2868497784593b02be5f6bd18b61447d6ede8
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Tue Apr 3 00:22:42 2012 +0200

    l10n: Updated Croatian (hr) translation to 82%
    
    New status: 319 messages complete with 0 fuzzies and 68 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 41a625f892ab9b0e49cbb0628cf156a64e77fd3b
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Apr 2 22:14:08 2012 +0200

    Panel: Remove duplicated function.
    
    Give it a better name too, since insensitive panels are long
    gone.

commit 6bc083dd44973b1f7d02c451d61a837feb8c019c
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Apr 2 22:08:17 2012 +0200

    Panel: Fix invalid autohide with socket dialog (bug #8617).

commit 26e104edc137b0572ce93c84cbd66ac4d5cb0db6
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Apr 3 03:49:36 2012 +0900

    Panel: Improved DnD markers.
    
    (cherry picked from commit 0f546d7384ad0fde00f496df087efe0826a09bc7)

commit f6e69cf06a6e8cb31482cc66c04701c2b7ec2215
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Mon Apr 2 11:12:00 2012 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 749aebfd23b2d77f633c5304f6aef72027c7a80d
Author: Henrique P. Machado <zehrique@xfce.org>
Date:   Mon Apr 2 02:45:23 2012 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d4eaabf542b0338b9fbae60636c52852083f2826
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Apr 1 16:20:58 2012 +0200

    Launcher: Fix desktop file monitoring on some systems.

commit 168c337b43cdadf41a2f2bc53ef2b40693666b92
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sun Apr 1 12:41:29 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit dcd33a02e49fb80b584b425aeab9f8890749d0f6
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sun Apr 1 12:18:17 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c1190d5599852e24b57e91e505b15e9e298c3a27
Author: Algimantas Margevičius <margevicius.algimantas@gmail.com>
Date:   Sun Apr 1 11:38:37 2012 +0200

    l10n: Updated Lithuanian (lt) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 47f968e66ab38c29f2ae0869951a627d1590fbd1
Author: Jakob Kramer <jakob.kramer@gmx.de>
Date:   Sat Mar 31 22:52:32 2012 +0200

    l10n: Updated German (de) translation to 97%
    
    New status: 377 messages complete with 8 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit eca7632de5199cf46b4f417d80c633c6d7ff8cc9
Author: Carles Muñoz Gorriz <carlesmu@internautas.org>
Date:   Sat Mar 31 17:58:15 2012 +0200

    l10n: Updated Catalan (Valencian) (ca) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6168e7c44dd9184590e8ca5f3b6a518bce59da15
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Sat Mar 31 08:39:19 2012 +0200

    l10n: Updated Italian (it) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9d97afcc71e55e5c1363a3ca126eab96aac4da24
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Mar 30 21:36:47 2012 +0200

    Post release tag bump.

commit 03e0755055ee548020734c22d494087ee080fbce
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Mar 30 21:34:35 2012 +0200

    Updates for release.

commit 1d01534d8e6e3964a589286ae900eb3e713cc44e
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 3 11:49:58 2011 +0100

    Actions: Query visibility and save as strings.
    
    We query the commands and dbus to check if the users is allowed
    to preform an action. If not the menu item or button is insensitive.
    
    Also store the actions as strings in xfconf, bit nicer.

commit 8c9397b0a3638d4f7dd3d0eb858faca240c5777e
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Mar 6 02:08:00 2012 +0900

    Tasklist: Reverting "ceil" to "floor" (as in 4.8).

commit e733f80b11c61199f7c7ae63d83987706ec734f4
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Mar 6 01:29:12 2012 +0900

    Tasklist: Capping buttons height when button labels are visible.

commit 42f1ea5f0fb3c64376328cd172e33019511bc1b3
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Mar 6 00:42:19 2012 +0900

    Tasklist: Bringing back 4.8 max-button-size property.

commit df719a5472c7ce2a9fc42aa970b68b7218a03896
Author: Tomáš Vadina <kyberdev@gmail.com>
Date:   Fri Mar 30 08:10:03 2012 +0200

    l10n: Updated Slovak (sk) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1f050b6702c33f71543643d2437629dcd99141a4
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Fri Mar 30 07:07:02 2012 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1b7b5ed0a9ba74a35b1b7182b8e610512b0a6f52
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Thu Mar 29 12:45:45 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9c5662eedb2d7a5e53d9aedf9b839227c06dc256
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Thu Mar 29 12:28:09 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a4e14ba220efe20d40217ce49981ae209583f702
Author: Johannes Lips <johannes.lips@googlemail.com>
Date:   Wed Mar 28 22:57:21 2012 +0200

    l10n: Updated German (de) translation to 97%
    
    New status: 377 messages complete with 8 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 08c9fbee7e280a06dc6d79679adb5e3f6e82fb48
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Mar 28 19:29:51 2012 +0200

    Improve NEWS a bit.

commit d6c14f50d895059c979061f030422a1dbd80a314
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Mar 28 19:28:41 2012 +0200

    Prepare NEWS for release.

commit 1ae52471e5aa553142c8019c7e308e2bf36ceec1
Author: Christoph Wickert <christoph.wickert@googlemail.com>
Date:   Wed Mar 28 18:31:47 2012 +0200

    l10n: Updated German (de) translation to 97%
    
    New status: 377 messages complete with 8 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f269564f1f959bf1781c4532780f19002ab9dfdb
Author: Raphael Groner <raphgro@web.de>
Date:   Wed Mar 28 17:53:33 2012 +0200

    l10n: Updated German (de) translation to 94%
    
    New status: 364 messages complete with 21 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 08bdb603d5e3f1236548527137ef8dfeebed0726
Author: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
Date:   Wed Mar 28 16:54:27 2012 +0200

    l10n: Updated Finnish (fi) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 29e84de7e07b5c15de7ac18b88b5de1c511a2dc4
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Mar 26 19:45:39 2012 +0200

    Panel: Save plugin-ids when removing and moving items.

commit ea4b8412d3733b1e47309820679c236e8da1e037
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Mon Mar 26 19:24:47 2012 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5a3e97fc7f42b100b618e0b0f4a999358a43e968
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Mon Mar 26 14:15:58 2012 +0200

    l10n: Updated Hebrew (he) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 26890112c8494168c50d9c34b21c1b11d17df616
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Mon Mar 26 14:11:43 2012 +0200

    l10n: Updated Hebrew (he) translation to 97%
    
    New status: 379 messages complete with 5 fuzzies and 3 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0ea852b62b918c52d19c54474b9e416b85dd9084
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Mon Mar 26 14:07:00 2012 +0200

    l10n: Updated Hebrew (he) translation to 91%
    
    New status: 355 messages complete with 17 fuzzies and 15 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b259944d1683c394d7bee4db74075c93f7ccbc7b
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Mar 24 18:30:59 2012 +0100

    Drop debug message.

commit 330881622ea53f33c84f7c2ac2e6e6cad39c3b1d
Author: Chipong Luo <chipong.luo@yahoo.com>
Date:   Sat Mar 24 14:00:28 2012 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 936d5ab8041bdadb84b2cb52dd675d082a74767d
Author: Algimantas Margevičius <gymka@mail.ru>
Date:   Sat Mar 24 12:42:28 2012 +0100

    l10n: Updated Lithuanian (lt) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 514462c5d694017ce6fa6c5ccf1b55c7912e4281
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Wed Mar 21 15:02:35 2012 +0100

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1003b9ac594d87418306d368aa64e129e433d59f
Author: Kamil Polczak <elderlinx@gmail.com>
Date:   Tue Mar 20 17:11:50 2012 +0100

    l10n: Updated Polish (pl) translation to 87%
    
    New status: 340 messages complete with 10 fuzzies and 37 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 57b3f331026210a42d6f26a1c81755bfa38d2450
Author: Kamil Polczak <elderlinx@gmail.com>
Date:   Tue Mar 20 13:02:14 2012 +0100

    l10n: Updated Polish (pl) translation to 85%
    
    New status: 332 messages complete with 16 fuzzies and 39 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e8004d14708d38303d55256540be5954bd925083
Author: Jakob Kramer <jakob.kramer@gmx.de>
Date:   Tue Mar 20 12:58:03 2012 +0100

    l10n: Updated German (de) translation to 93%
    
    New status: 361 messages complete with 20 fuzzies and 6 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit eb6e3a949e6cd4a50da9bd5138c371314928778c
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Sun Mar 18 21:03:28 2012 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 177456f1ae1f4ab96862627e9523b92c60264085
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Sun Mar 18 21:00:24 2012 +0100

    l10n: Updated Danish (da) translation to 99%
    
    New status: 384 messages complete with 2 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 02ccd8e28a328002c96a7e64dfd950914ec8d423
Author: Sergey Shlyapugin <shlyapugin@gmail.com>
Date:   Sun Mar 18 12:38:04 2012 +0100

    l10n: Updated Russian (ru) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8a97df0eeacd3785a4c57f54b04710fb602005ed
Author: Andhika Padmawan <andhika.padmawan@gmail.com>
Date:   Sun Mar 18 04:02:16 2012 +0100

    l10n: Updated Indonesian (id) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d29e5fb8c45e9e19c746cf553a28c773d02fb7ef
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Wed Mar 14 23:59:06 2012 +0100

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 77c0d1b8757599ad40efb0053774d73ae9d8dc95
Author: Andres Sanchez <afsanchez93@gmail.com>
Date:   Wed Mar 14 17:48:17 2012 +0100

    l10n: Updated Spanish (Castilian) (es) translation to 98%
    
    New status: 382 messages complete with 5 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 913fbeec9513496af82db64c64431b470ee74637
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Tue Mar 13 17:14:18 2012 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8cbf0fe28ebcdd3d63b5245cd2fd0043d52aed18
Author: Praveen Illa <mail2ipn@gmail.com>
Date:   Sun Mar 11 19:13:48 2012 +0100

    l10n: Updated Telugu (te) translation to 51%
    
    New status: 200 messages complete with 0 fuzzies and 187 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f30c1d8e5153c50467cef3e7e5d40629ddf0f806
Author: Praveen Illa <mail2ipn@gmail.com>
Date:   Sun Mar 11 19:13:12 2012 +0100

    l10n: Updated Telugu (te) translation to 51%
    
    New status: 199 messages complete with 0 fuzzies and 188 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b33793270464ad0f5c243ae4576ec0d7d4a5e03d
Author: Praveen Illa <mail2ipn@gmail.com>
Date:   Sun Mar 11 19:02:16 2012 +0100

    l10n: Updated Telugu (te) translation to 42%
    
    New status: 164 messages complete with 0 fuzzies and 223 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b70d918454fe7c5cb50662787ec658c0848b327e
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Sun Mar 11 11:48:04 2012 +0100

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2a7bb0391e5f28652f2b9b77e0274f17246627a8
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Sun Mar 11 09:21:00 2012 +0100

    l10n: Updated Ukrainian (uk) translation to 98%
    
    New status: 381 messages complete with 3 fuzzies and 3 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ae7387c3a1d763d57a470ec5e80a4944c21fd4e0
Author: Algimantas Margevičius <gymka@mail.ru>
Date:   Sun Mar 11 07:06:11 2012 +0100

    l10n: Updated Lithuanian (lt) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d917d7fbdb02ad763093cb0a7c9756375cf5dfe4
Author: Chipong Luo <chipong.luo@yahoo.com>
Date:   Sun Mar 11 05:00:32 2012 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d4c989369d06c667337512955c65948a8ed0e166
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Sun Mar 11 00:26:37 2012 +0100

    l10n: Updated Czech (cs) translation to 100%
    
    New status: 384 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit de5e70dc00d5a1b7675b34ef516facabe6bc965c
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Mar 10 22:08:05 2012 +0100

    Allow non-squared icons in applications button (bug #7381).

commit 6adb2bba21a3edc286afbc3beca2f6ecaf50b190
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Mar 10 21:49:57 2012 +0100

    Allow none-squary icons in XfcePanelImage.
    
    Does not change for normal plugins, sinze it always
    adhired the reuested size, but this makes it a bit
    more flexible.

commit 8c89c08518460fb1d14b03d468c68b84ef1db1af
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Mar 10 21:46:57 2012 +0100

    Add function to load source at a size.
    
    Like xfce_panel_pixbuf_from_source, but with a
    dest width and height.

commit fcf318f4598e23645a0d245843fe3570e60f0151
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Mar 10 21:10:34 2012 +0100

    Add confirmation before creating launchers from dnd (bug #6926).

commit dcc851a3ff625af9617cc23027099bd1ae513354
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Mar 10 20:44:03 2012 +0100

    Add (un)lock option to panel menu (bug #6980).
    
    This add a difference to the panel and plugin submenu,
    but it is better then nothing.

commit be76d74bf68d66880a302c68dcea301e0a72b8ea
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Mar 10 20:20:23 2012 +0100

    Recurse application menu selection-done signal (bug #8541).
    
    selection-done is not send to the parent menu, do add this
    signal to all submenus as well.

commit 56b2c90a9df572f968fb5a50b6337cc5a6f4a62c
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Mar 10 19:25:11 2012 +0100

    Fallback to xfdesktop for xfce4-popup-applicationsmenu (bug #7365).

commit 628154e59e09b3dd16129304a1d450ac4824268b
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Mar 10 19:22:34 2012 +0100

    Reply the the caller for plugin events.
    
    Return to the client if a plugin event was handled.

commit 4447f270fdd14f3782ad524e57543670ded52edf
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Sat Mar 10 19:52:57 2012 +0100

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 383 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c44b85a4b3fcfe1363d4326b6ffb779766678764
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Mar 10 15:38:46 2012 +0100

    Don't ask for panel when inserting items (bug #8544).

commit 882b4bb1a76d39fd82562bcb1fa4846c51cdb78b
Author: Algimantas Margevičius <gymka@mail.ru>
Date:   Sat Mar 10 15:28:03 2012 +0100

    l10n: Updated Lithuanian (lt) translation to 100%
    
    New status: 383 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3ba19d957205a7ce8a333c095a33c539c48829c3
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Mar 10 15:20:25 2012 +0100

    Make string in about translatable (bug #8545).

commit bbc68f68cee387e2e05cf3f305434057e734f407
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Mar 10 15:10:33 2012 +0100

    Show the desktop file in the tooltip (bug #8536).

commit bb5a8410815fd7aa8cff1213bfe2fb3710631cd9
Author: Algimantas Margevičius <gymka@mail.ru>
Date:   Sat Mar 10 14:08:23 2012 +0100

    l10n: Updated Lithuanian (lt) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b336bb77353cec84e441086bbcf9f757c41c1e0c
Author: Nuno Miguel <nunomgue@gmail.com>
Date:   Fri Mar 9 17:03:18 2012 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4263da8687d077468563c919417361a5bf30d58f
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Thu Mar 8 22:50:18 2012 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b8b61f2f8eb2735ba7ee742840c6a342e82d0ca5
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Thu Mar 8 22:48:05 2012 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 178147a8904bd66fa54e950ed724fd39b7a7ac53
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Thu Mar 8 22:18:48 2012 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 441b3cfc8225c841dd5e98cac36ecdc4695b6149
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Thu Mar 8 21:58:55 2012 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 73c042ebb799a882684b8fe8892346265f225b2c
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Thu Mar 8 19:20:12 2012 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2e387005dd37b9bd433465b05e4b5512790bdc09
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Mon Mar 5 20:32:27 2012 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit dd65736ef37a5ba82ce4dc5180ca8269f1203dc7
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat Mar 3 04:44:18 2012 +0900

    Pager: Fixed preprocessor macro.
    
    (cherry picked from commit 02520a3af9ade1afe1a28b7a1e73f76a680e037e)

commit a4283dd61e894e897ba724f249066bf66c4cd0b1
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat Mar 3 03:16:11 2012 +0900

    Pager: Removing broken workaround for aspect ratio in deskbar mode.
    
    The workaround for wrong pager aspect ratio in the deskbar mode breaks D&D
    in the pager and may produce infinite looping (currently it is stable
    but that may change with even small changes to the pager requisition/allocation
    mechanism).
    
    This commit removes the workaround, which means that:
    - the pager aspect ratio in the deskbar mode is only correct when
      libwnck >=2.31.0 is used
    - D&D in the pager works again as in panel 4.8.
    (cherry picked from commit 67b419fb91e8ffa25d6af25488e75f0d610a54b9)

commit 62a3aa8f24df8133a04f4b88836e8f31ced990ba
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sat Mar 3 02:59:37 2012 +0900

    Pager: Making use of a fixed libwnck version (>=2.31.0)
    
    libwnck pager (2.31.0) has been extended with a versioning api and
    a layout policy mechanism. This makes our aspect ratio hack for
    pager in a deskbar mode unnecessary.
    
    The modified libwnck version is currently available at:
    http://git.gnome.org/browse/libwnck/log/?h=wip/xfce-4.10-fixes
    (cherry picked from commit 77c3ac772ec79f3a8020d86db26b7583fd2a9223)

commit 0c3b236daacd12795f8598b7861fdf068c0a4199
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 4 14:39:27 2012 +0100

    Revert "Use realtime POSIX timers for the clock."
    
    This reverts commit 07fe0a629b7b6092f2dfcaf4ef2dd2910f161a7c.

commit b78da9cf1c7824739dff4c24b119e4a7c34e8553
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 4 14:39:20 2012 +0100

    Revert "Clock: Don't use sigval_t (bug #8297)."
    
    This reverts commit 9430906f6d82f5d66e835b8e924ff8beed58d109.

commit 40b99e004aeaa57562cc2f465cec526e504b2ec5
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Tue Feb 28 18:34:50 2012 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 327c562aed4ea919703fc04aa5914f8f5e4d93e3
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Tue Feb 28 12:19:04 2012 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 980eafef4f72f93fcd96c0b6be6d8cf8691b007b
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Tue Feb 28 12:17:48 2012 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 134455fb525c388d9c3b5240fe7edde00e695a13
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Tue Feb 28 09:05:51 2012 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c592888f0e15fef26dba642f2bc3861a8e87db08
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Tue Feb 28 07:13:41 2012 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c7c6db32fbf7058e5831c698a693ae7c05edb75a
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Mon Feb 27 14:13:39 2012 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f1fb2ea7b44b3622a01c01f57670fa803122be85
Author: كريم أولاد الشلحة <herr.linux88@gmail.com>
Date:   Fri Feb 24 22:14:19 2012 +0100

    l10n: Updated Arabic (ar) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d971fe2bb35742e0ff9b9bccb0945b263e963877
Author: كريم أولاد الشلحة <herr.linux88@gmail.com>
Date:   Fri Feb 24 22:03:35 2012 +0100

    l10n: Updated Arabic (ar) translation to 99%
    
    New status: 378 messages complete with 0 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c8f8ea33dd618f4a5477835b77e23f13ee51a365
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Jan 23 15:53:12 2012 +0900

    Pager: Fixing infinite loopin in the WNCK pager aspect ratio workaround.
    
    Previous workaround wasn't sufficiently stable. Infinite looping could be
    triggered if the user set:
    
    panel size = 16
    panel rows = 1
    workspace rows = 1
    no of workspaces = 100
    
    and then started increasing/decreasing panel size by 1.
    
    This fix rearranges the code (storing last pager height instead
    of its aspect ratio) and introduces a minimum WNCK panel height of 10px.
    Tbis makes it stable in the above scenario.
    
    Still, we should push for a real fix in the WNCK pager:
    https://bugzilla.gnome.org/show_bug.cgi?id=664779

commit 93e0a36c3cc9e1495ff8204081dec1f3f6a624e7
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Jan 22 23:45:37 2012 +0900

    Pager: Fixing plugin->size updates.
    
    Error introduced in the commit with aspect ratio workaround.
    plugin->size was only updated in the deskbar-mode with WNCK pager.

commit 7fdf98c87f22f6e1b55e89537d8be6b206e42df1
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Jan 22 23:28:13 2012 +0900

    Pager: Fixed workspace ordering in the vertical mode.
    
    This is to match the workspace ordering in WNCK and button pagers.

commit 759b70b9e1f5c4686647722605f98ea338652cea
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Jan 22 23:09:06 2012 +0900

    Pager: Workaround for aspect ratio error in WNCK pager in deskbar mode.
    
    This is caused by current limitation of WNCK pager. We can remove
    or disable this hack once WNCK pager supports different orientation
    of the pager and panel.

commit 206af044ced329aaca338abe14b87bc71362ed82
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Jan 22 16:04:23 2012 +0900

    Pager: Changing orientation depending on the panel mode.

commit 8e15559b57e09d84e06312e54a1cb0a1eb8431fa
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Jan 16 17:47:29 2012 +0900

    Clock: Changing default value of rotate-vertically to TRUE.
    
    Reasons for doing that:
    1. it's consistent with other plugins.
    2. it isn't exposed in the gui (user has to use xfconf-query tool
       to set it).
    3. previous behavior was likely a workaround for lack of desbar mode
       (users which preferred to have the clock horizontal in a vertical
       panel by default are likely to use deskbar mode now).
    4. horizontal labels don't fit in narrow vertical panels.
    
    We could perhaps remove this property instead.

commit 93ce1309569372ad02a56caf3b998671675874b9
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Jan 16 17:38:10 2012 +0900

    Clocl: Fixing clock orientation in vertical/deskbar mode.
    
    Updated to use mode_changed instead of orientation_changed.
    
    The implementation still uses a rotate-vertically property, which isn't
    exposed in the gui.
    
    Initialization order in clock_plugin_set_mode has been changed to fix
    aspect ratio of binary clock just after changing the clock mode.

commit 3eb8ce0e0903d64fbe4ec0e9f0a79c1a955ae6df
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Wed Jan 25 14:35:21 2012 +0900

    Panel: Removed item size checks.
    
    Problem:
    
    get_requisition on external plugins returns an old size_request
    value when the size of the panel is changed quickly (e.g. when
    user controls the "size" slider using cursor keys).
    
    In case of "small" external plugins this means that they are
    "losing" their "small" status when the user quickly decreases
    the panel size. This is because their get_requisition size
    is temporarily larger than the row size. This in turn causes
    a lot of flicker when the user changes (decreases) the panel size.
    
    (the above was tested using an xfce4-mixer plugin with a patch from:
    https://bugzilla.xfce.org/show_bug.cgi?id=8350 )
    
    Arguably, the itembar doesn't have to check the plugin size, only
    the "small" flag. It's then the plugins responsibility to render itself
    in such a way it fits in a single row.
    
    The itembar is still using the plugin size to decide the row height.
    It may temporarily be incorrect when the panel size changes quickly
    but that doesn't cause flicker.

commit 0bd4a57aff4bd07611245040df2426b58d7521ac
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Fri Feb 24 16:30:29 2012 +0100

    Actions: Limit size of action buttons to row size.
    
    Action buttons size is set to max panel_size / nrows.
    Previously buttons were scaled up to the whole panel size,
    which was inconsistent with other plugins (app menu, launchers etc).

commit 6df7c6339ee5aba39a075dc8cf0a1ef21f689a87
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Feb 6 11:57:04 2012 +0900

    Launcher: small=FALSE in deskbar mode with label visible.
    
    Regression fix. This error has been triggered by commit:
    f362692 panel-itembar: Removed item size checks.
    
    This commit should be harmless. It can be used without commit f362692
    and may speed up itembar layout a bit.

commit cfd0a3ba28a537746e6aa683d98d8b4062811f77
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Fri Feb 24 14:29:36 2012 +0100

    l10n: Updated Czech (cs) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c44f2e1bb18c611c681bf93de183b8a119afdbc2
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Fri Feb 24 14:20:58 2012 +0100

    l10n: Updated Czech (cs) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5b598299fc51b1fe5e10796443e133170b0abf02
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Tue Feb 21 19:17:27 2012 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fec48bbc9a3a8ba5f583a274a6aa871af19e0cbc
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Tue Feb 21 18:00:11 2012 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 300dfb6a231a93e70fc7f206946def2a3724e0dc
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Mon Feb 20 18:45:53 2012 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 68588cf43345f0c8a82717d1b08b97d4849c772a
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Mon Feb 20 18:30:55 2012 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fb0e6302452f2ae4d678c5d0efd5f2fae08481a7
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 18 18:23:07 2012 +0100

    Fix possible compiler warnings.

commit a007b2e7209ddff3133bf1b57dc8f6e851cb243d
Author: Thomas Schütz <xfce@thschuetz.de>
Date:   Fri Feb 17 10:51:16 2012 +0100

    l10n: Updated German (de) translation to 95%
    
    New status: 361 messages complete with 13 fuzzies and 6 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7e70fd12579df33db80159a98ad9996c6247915f
Author: Tomáš Vadina <kyberdev@gmail.com>
Date:   Mon Feb 13 14:40:18 2012 +0100

    l10n: Updated Slovak (sk) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 84222f586bf004343cec20687c18267ac642c0d6
Author: Chipong Luo <chipong.luo@yahoo.com>
Date:   Wed Feb 8 10:23:37 2012 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ab685757666c62e2a41ba979ec5e157e63466f69
Author: Chipong Luo <chipong.luo@yahoo.com>
Date:   Wed Feb 8 07:39:33 2012 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0462dc2840ac56f45a7ab2482488e1993dda86fa
Author: Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>
Date:   Tue Feb 7 19:13:34 2012 +0100

    l10n: Updated German (de) translation to 91%
    
    New status: 349 messages complete with 25 fuzzies and 6 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4153f92d0cfe0a7548cae35a0faa89e9bcec6d2a
Author: Chipong Luo <chipong_l@yahoo.com>
Date:   Tue Feb 7 08:26:33 2012 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2fdaea635a5be297bb694c22b82b860469c2146a
Author: Chipong Luo <chipong_l@yahoo.com>
Date:   Tue Feb 7 08:14:11 2012 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e22bf749da6dd4ffccfdd2d29fd5871a9043233d
Author: Chipong Luo <chipong_l@yahoo.com>
Date:   Tue Feb 7 08:03:41 2012 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c8273490dd1b15fe04b481ffc3cd2d03086d7a71
Author: Chipong Luo <chipong_l@yahoo.com>
Date:   Tue Feb 7 07:36:17 2012 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ae95920177e61d7dbe966c526b2c016679c35571
Author: Aleksandr Ponomarenko <davian818@gmail.com>
Date:   Sun Feb 5 08:11:14 2012 +0100

    l10n: Updated Esperanto (eo) translation to 11%
    
    New status: 45 messages complete with 117 fuzzies and 218 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2ceede9c77c511b9a4a6ae34fcec07b3459aa53b
Author: Aleksandr Ponomarenko <davian818@gmail.com>
Date:   Sun Feb 5 08:05:10 2012 +0100

    l10n: Updated Russian (ru) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4cf9b0e4d3c26274cb7e25f4b1554ec7290e24b5
Author: Aleksandr Ponomarenko <davian818@gmail.com>
Date:   Sun Feb 5 07:42:10 2012 +0100

    l10n: Updated Russian (ru) translation to 99%
    
    New status: 379 messages complete with 0 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 86448fd6daea5c0dd1f8f40bc34453b589dee19d
Author: Benoit THIBAUD <frombenny@gmail.com>
Date:   Sat Feb 4 17:49:33 2012 +0100

    l10n: Updated French (fr) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b3d651bc93a96464a15aaee192f3535c2c9ce3b5
Author: Mike Massonnet <mmassonnet@gmail.com>
Date:   Sat Feb 4 16:51:46 2012 +0100

    l10n: Updated French (fr) translation to 99%
    
    New status: 379 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5788475126b9fb7216218e8c0f784603a2649520
Author: Andhika Padmawan <andhika.padmawan@gmail.com>
Date:   Fri Feb 3 13:29:42 2012 +0100

    l10n: Updated Indonesian (id) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7252d9a6763bee175f28be8568594c0a7633acd9
Author: Mike Massonnet <mmassonnet@gmail.com>
Date:   Thu Feb 2 23:42:51 2012 +0100

    l10n: Updated French (fr) translation to 97%
    
    New status: 369 messages complete with 7 fuzzies and 4 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 25acf20d1270ed1fb76ae1318457ee1ae8b214dc
Author: Benoit THIBAUD <frombenny@gmail.com>
Date:   Thu Feb 2 21:22:37 2012 +0100

    l10n: Updated French (fr) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 16b7213250e04ec8a403f39aff64a49da97daf1e
Author: Mike Massonnet <mmassonnet@gmail.com>
Date:   Thu Feb 2 11:17:28 2012 +0100

    l10n: Updated French (fr) translation to 97%
    
    New status: 369 messages complete with 7 fuzzies and 4 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5df1e21e97800ad9ad9455620ac72235d8c1e2e8
Author: Alper Tekinalp <alper.tekinalp@gmail.com>
Date:   Mon Jan 30 22:09:30 2012 +0100

    l10n: Updated Turkish (tr) translation to 74%
    
    New status: 284 messages complete with 90 fuzzies and 6 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit dcb1a18078b5d452b7324ca837059be495465ab4
Author: محمد الحرقان <malham1@gmail.com>
Date:   Mon Jan 30 09:10:25 2012 +0100

    l10n: Updated Arabic (ar) translation to 99%
    
    New status: 378 messages complete with 0 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit bf00f797ac67bbbb9eab971b734a61ee728b8e5c
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 29 12:18:24 2012 +0100

    Save changed plugin ids if a plugin failed to load.

commit 95fdcccae23bf0ebd5b46cdc8d830f357006c4ab
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 29 12:12:23 2012 +0100

    Add support for pluggable dialogs.

commit 988e604d205c6f76df998ebf16aa9d598a44a3bc
Author: Algimantas Margevičius <gymka@mail.ru>
Date:   Sat Jan 28 09:32:13 2012 +0100

    l10n: Updated Lithuanian (lt) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0f417042e59b7862c67b94f72ea88ca3a79e646e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Jan 27 21:32:18 2012 +0100

    Show dialog in settings category.

commit ed85d9205f258e1ac3fcabf9ab33f848ba43adc1
Author: Andres Sanchez <afsanchez93@gmail.com>
Date:   Tue Jan 24 20:37:49 2012 +0100

    l10n: Updated Spanish (Castilian) (es) translation to 99%
    
    New status: 378 messages complete with 2 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 215fc5061bd7ccb07434a7ba80e6d734be320860
Author: Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>
Date:   Sat Jan 21 15:46:45 2012 +0100

    l10n: Updated German (de) translation to 91%
    
    New status: 349 messages complete with 24 fuzzies and 7 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e36088ecd2be250d04dd7aa556c57ef30f390143
Author: Andres Sanchez <afsanchez93@gmail.com>
Date:   Sat Jan 21 14:30:58 2012 +0100

    l10n: Updated Spanish (Castilian) (es) translation to 98%
    
    New status: 374 messages complete with 3 fuzzies and 3 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9faf8f3bd41a2e27d2b8bd016d91cb3ec8cab009
Author: Gökhan Kılınç <kilincgokhan@gmail.com>
Date:   Sat Jan 21 12:52:43 2012 +0100

    l10n: Updated Turkish (tr) translation to 72%
    
    New status: 274 messages complete with 100 fuzzies and 6 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c189a35a779c54e3b21693231f4b9dbecc69947b
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Jan 19 18:16:24 2012 +0100

    Directorymenu: Fix prefered app not working without snotify (bug #8298).

commit c18d08fb1e5f67441e4d35cb5d68fb8c9e98ed0d
Author: كريم أولاد الشلحة <herr.linux88@gmail.com>
Date:   Wed Jan 18 20:31:07 2012 +0100

    l10n: Updated Arabic (ar) translation to 23%
    
    New status: 89 messages complete with 207 fuzzies and 84 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a457be8edf24efc084c54f3ca34722cb85d77807
Author: Gökhan Kılınç <kilincgokhan@gmail.com>
Date:   Wed Jan 18 11:01:51 2012 +0100

    l10n: Updated Turkish (tr) translation to 71%
    
    New status: 273 messages complete with 100 fuzzies and 7 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b7950318fce4c46c8fb53ab77d64ee79b958c5c6
Author: Gökhan Kılınç <kilincgokhan@gmail.com>
Date:   Wed Jan 18 10:59:22 2012 +0100

    l10n: Updated Turkish (tr) translation to 71%
    
    New status: 273 messages complete with 99 fuzzies and 8 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4515089947782b42e079e896d18b99bea56df16e
Author: Gökhan Kılınç <kilincgokhan@gmail.com>
Date:   Wed Jan 18 10:43:35 2012 +0100

    l10n: Updated Turkish (tr) translation to 71%
    
    New status: 271 messages complete with 99 fuzzies and 10 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 68a629404c20785a0e1eb27ba2deb49ffa51deab
Author: Piarres Beobide <pi@beobide.net>
Date:   Mon Jan 16 10:40:47 2012 +0100

    l10n: Updated Basque (eu) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7a250e554eff59fded0110bc32e6612513b5db77
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Jan 16 02:16:52 2012 +0100

    l10n: Updated Hungarian (hu) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e16ac4bffd46328f820c968b8cfd2d9eb6f26da9
Author: Carles Muñoz Gorriz <carlesmu@internautas.org>
Date:   Sun Jan 15 20:28:34 2012 +0100

    l10n: Updated Catalan (Valencian) (ca) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9430906f6d82f5d66e835b8e924ff8beed58d109
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 15 20:10:58 2012 +0100

    Clock: Don't use sigval_t (bug #8297).

commit 3bb90fcac94ed5fa4e50a2a629923ff94c374b31
Author: كريم أولاد الشلحة <herr.linux88@gmail.com>
Date:   Sun Jan 15 16:31:41 2012 +0100

    l10n: Updated Arabic (ar) translation to 21%
    
    New status: 81 messages complete with 212 fuzzies and 87 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a79edfe155dc4ab2ca579a2def70448ca5472a55
Author: كريم أولاد الشلحة <herr.linux88@gmail.com>
Date:   Sun Jan 15 16:21:28 2012 +0100

    l10n: Updated Arabic (ar) translation to None%
    
    New status: 0 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a39b000b2fbe5ed84feea09ac5d0344c1f6006d7
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Sun Jan 15 03:38:32 2012 +0100

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e3ed781113c2b6558f21cb18e2b6c59fe96733dc
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Jan 12 18:38:49 2012 +0100

    Docs: Don't install the gtkrc README.

commit 8095e5ff7e7887147f22cdd7f659432b085a6f11
Author: Algimantas Margevičius <gymka@mail.ru>
Date:   Thu Jan 12 07:36:30 2012 +0100

    l10n: Updated Lithuanian (lt) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 05fa257571964ce429edf9052671a2bc5d4da2d1
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Wed Jan 11 01:07:23 2012 +0100

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3e236d8238e3c5f87d44a2e2795a855112147ffa
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Sun Jan 8 16:28:01 2012 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 31a78a3b91db780cbc947ebb4d147ec05b069f63
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Sun Jan 8 16:27:22 2012 +0100

    l10n: Updated Portuguese (pt) translation to 99%
    
    New status: 379 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c92a2a1996f412b3915b1ff3c8b487a5efc8f907
Author: Algimantas Margevičius <gymka@mail.ru>
Date:   Sun Jan 8 12:09:44 2012 +0100

    l10n: Updated Lithuanian (lt) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e42136e2e414bc4f56d5111dc924cebaa542b582
Author: André Luiz Dias de Miranda <andreldm1989@gmail.com>
Date:   Sun Jan 8 00:30:26 2012 +0100

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e4b63bc65810d66df02079e2e8f568c0c2179c53
Author: Eivind Ødegård <gingermig@yahoo.no>
Date:   Sat Jan 7 21:57:12 2012 +0100

    l10n: Added Norwegian nynorsk translation
    
    New status: 380 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8f8b3357bcdcfd65518fb15b12b49ed63c249c0d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Jan 6 22:25:02 2012 +0100

    Remove package documentation.
    
    Everything is redirected to docs.xfce.org now.

commit 3047ee12ab2d3c232227ab7dc0c35d7153bb37a1
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Jan 6 22:13:12 2012 +0100

    Use new help function to redirect to docs.xfce.org.

commit e6d2321f1a4a51f640592048651a0493002ae9b0
Author: Tomáš Vadina <kyberdev@gmail.com>
Date:   Fri Jan 6 10:04:07 2012 +0100

    l10n: Updated Slovak (sk) translation to 100%
    
    New status: 384 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5d15b8be24aabc04c0dcbedcd3a117c3b13bb925
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Jan 5 21:48:24 2012 +0100

    Don't destroy window when focussed and Alt+F4 is pressed (bug #7378).

commit ebc59cd34977ba6000175d0f52220bda3b0a1f34
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Thu Jan 5 18:19:33 2012 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 384 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 47193427a25676fd1498a74a974f46bef00578f1
Author: Andres Sanchez <afsanchez93@gmail.com>
Date:   Tue Jan 3 14:56:10 2012 +0100

    l10n: Updated Spanish (Castilian) (es) translation to 96%
    
    New status: 370 messages complete with 6 fuzzies and 8 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a27b173bfe024c2db256263975a9bd47d42d28fc
Author: Christoph Mende <angelos@gentoo.org>
Date:   Mon Jan 2 19:20:27 2012 +0100

    l10n: Updated German (de) translation to 89%
    
    New status: 342 messages complete with 27 fuzzies and 15 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7e30d9476864eb564f064cf14679ab73e6ffb414
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Mon Jan 2 02:13:36 2012 +0100

    l10n: Updated Czech (cs) translation to 100%
    
    New status: 384 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5597a1d8d29b589a821e757ac530493a85e84130
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Sun Jan 1 14:36:05 2012 +0100

    l10n: Updated Italian (it) translation to 100%
    
    New status: 384 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 835ad88257b32ecdfafbd57ad2207e0a03a53d5d
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Sun Jan 1 14:22:12 2012 +0100

    l10n: Updated Italian (it) translation to 100%
    
    New status: 384 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e32c6bc197e1a29a00a3b6f652a2a3cd740c0c5f
Author: Alper Tekinalp <alper.tekinalp@gmail.com>
Date:   Sat Dec 31 13:51:16 2011 +0100

    l10n: Updated Turkish (tr) translation to 70%
    
    New status: 271 messages complete with 100 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d7cd528c58f2d210238edb5b75feab5390d23c01
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Dec 30 21:19:06 2011 +0100

    Post release tag bump.

commit 66df2a1dd8e986016f13b131388bb9f982edaff1
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Dec 30 21:13:14 2011 +0100

    Updates for release.

commit 51e53829d089a998802ac82ae4db312afec43eba
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Dec 30 20:56:56 2011 +0100

    Fix distcheck.

commit 89dca4329ab7ea77ef72f3ed8538a0fe1d7f4e1b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Dec 30 20:55:50 2011 +0100

    News: Pull changes from 4.8 branch.

commit 83c9dd8a12e73bf4ba1e284fab41cf9db58eb544
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Dec 30 20:54:14 2011 +0100

    Libxfce4panel: Fix symbol visibility.

commit bceefd96683155e544dd0384b807a7291ddfa13d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Dec 30 20:48:48 2011 +0100

    Docs: Pull latest changes.

commit a56f1d0b5f2ef79b2aa60c7894274117b2a6cebc
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Dec 27 07:47:35 2011 +0900

    Panel: Fixed a bug in handling shrinkable plugins.
    
    When a shrinkable plugin was shrunk too much it was
    given an allocation area equal to the requested area.
    In such case we'd rather want it to stay at a minimum
    size (child_len=1px, which is set immediately below).
    
    (cherry picked from commit 4f0b035f64a06dbb1f410ca38390c7146df39c99)

commit f81977772cf34abcfc3fb2e78238e83ebdf60923
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Dec 27 07:22:32 2011 +0900

    Panel: Fixed minimum size of expandable items.
    
    (cherry picked from commit 4c86ea04a09c2c6770059f3a3f4ac720673ca7d8)

commit c84590a2bfb8c2b6752785ee5d47c176e85a7a94
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Dec 30 20:44:26 2011 +0100

    Panel: Fix incorrect 1px offset in dnd highlight.

commit 3b45e57d8c51b67b588f6a8f66863b23bcf19536
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Fri Dec 30 20:30:29 2011 +0100

    Tasklist: Reverting button allocation order to the LTR direction.
    
    This is to match the (IMHO broken) allocation order of the
    panel in the vertical mode. ATM the consensus is that the
    allocation order should not be changed so that the users
    are not exposed to any visible UI changes.

commit f867ceb4b54d411d3a6c926c0db0f3f506905605
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Fri Dec 30 20:28:15 2011 +0100

    Tasklist: Fixed a bug in resetting the child->type field.
    
    In the previous version the field wasn't always reset
    (for example after shrinking and growing the panel several
    times), which resulted in missing buttons.

commit bbf484ea71dfd1b97a8716739c698ed2bb9348ac
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Dec 30 20:07:59 2011 +0100

    Panel: Don't remove windows using the destroy signal.
    
    This can lead to problems if the window is destroyed
    when the signal still connected: the configuration is
    lost. Do this explicitly in a function, so this problem
    never occurs.

commit c9fed3f4a8f15324b0d08cbb5a13dfa5234f5dfa
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 29 21:00:19 2011 +0100

    Panel: Show the dialog late to give it a small size.
    
    The dialog was realize too soon, so the hidden widgets
    make it grow for no reason.

commit 69e702c69ed401f64d7c509efdc7ac4c4d9e96b8
Author: Alper Tekinalp <alper.tekinalp@gmail.com>
Date:   Fri Dec 30 17:03:43 2011 +0100

    l10n: Updated Turkish (tr) translation to 48%
    
    New status: 188 messages complete with 181 fuzzies and 15 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b3372d67c8d451949bf276640a65417fe4efce48
Author: Alper Tekinalp <alper.tekinalp@gmail.com>
Date:   Fri Dec 30 16:58:10 2011 +0100

    l10n: Updated Turkish (tr) translation to 48%
    
    New status: 188 messages complete with 166 fuzzies and 30 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ae1982e11d8ae51d76d357be93cfb617429f3d28
Author: Joan Montané <joan@montane.cat>
Date:   Fri Dec 30 14:43:00 2011 +0100

    l10n: Updated Catalan (Valencian) (ca) translation to 98%
    
    New status: 377 messages complete with 6 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0ce9ef4a15aa5d266cab84830da96d549c08fc4f
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 29 19:06:59 2011 +0100

    Migration: Use new id array and update config a bit.

commit 60c9ae45170bcd56e29126793f9b85c73350ce2f
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 29 19:03:43 2011 +0100

    Migrate: Make code work with inlined array values.

commit f0b084486e981518b19eaa978df3615e3c250738
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 29 17:32:45 2011 +0100

    Panel: Only save what is required.
    
    Also remove auto save from the session mananger and
    improve what is saved.

commit 6196070242a05a7f208f2b59fb7b5b5b3e4441ae
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 29 16:34:44 2011 +0100

    Panel: Remove autosaving on exit and with timeout.
    
    The panel is saving everything when the configuration
    changes, so no need to do that in an interval and during
    exit. It can only lead to data loss.

commit e117160f30fc45d4ca0d0eee722921ce74d34e2c
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 29 16:32:08 2011 +0100

    Panel: Improve default position.

commit 1473206aa9771e110d5b5e80fd8f1b370f986638
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 29 16:16:15 2011 +0100

    Panel: Work with a unique id for each panel.
    
    Give each panel a unique id that does not change over
    its lifetime. This should prevent most of the problems
    where panel configuration is lost or strange resets when
    a panel is removed from the preferences dialog.

commit e835c3b533d7c15e4329d83a767660b6079f147d
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 29 12:45:15 2011 +0100

    Common: Improve Xfconf property mismatch warning.

commit 8139a4c5532a50b1f73893bd7842e309e6022ffc
Author: Chipong Luo <chipong_l@yahoo.com>
Date:   Thu Dec 29 15:23:44 2011 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 384 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0e0aaf5bc07985f8512b1408c9e4bd1942f400c6
Author: Chipong Luo <chipong_l@yahoo.com>
Date:   Thu Dec 29 14:52:24 2011 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 99%
    
    New status: 383 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit cbd8b3e68f47f3bac12195774383d26281a1ba34
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 29 12:31:29 2011 +0100

    Panel: Make sure the panel has a position on startup (bug #8287).
    
    If it happens the panel looses some settings and the position
    string is also lost, it won't be visible on the next restart.
    Make sure the position is set, if it is not restored, set something
    new. Although this is not the position the user defined, it is
    better then no panel at all.

commit a8ff8f775c3c07ba35ee4bfbeca5e5ffc4920791
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Dec 28 13:37:36 2011 +0100

    Launcher: Use hexadecimal number for xid.

commit fde4594321e071ce6058a21eef229c978bc4f74c
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 27 19:07:05 2011 +0100

    Applicationmenu: Reload menu on directory changes.

commit 6c829cb40425e949c50e55ab8086fa2c6db9c477
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Tue Dec 27 08:49:47 2011 +0100

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 384 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 63ae00ca4ddf21ce48f8887babb5edd0d63c2097
Author: Mike Massonnet <mmassonnet@gmail.com>
Date:   Sun Dec 25 13:11:21 2011 +0100

    l10n: Updated French (fr) translation to 97%
    
    New status: 373 messages complete with 7 fuzzies and 4 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2cee851ace3dd4f10b5f187e5ef64722911da74d
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Sun Dec 25 11:36:33 2011 +0100

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 384 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit eff7fbf13fd5dd65eaa4fb5bb7a48a77f40ae10b
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Dec 12 23:42:51 2011 +0900

    Actions: Make the plugin work in deskbar mode.

commit f622d4e61f0a681b1a9968659ef57a436c70d921
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 13 19:51:48 2011 +0100

    Tasklist: Remove the max-button-size style property.
    
    This is not used anymore, the tasklist adopts the nrows
    setting of the panel.

commit 534a173474851f440879d7dd24e207ddd96b4317
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Dec 13 19:49:39 2011 +0100

    Tasklist: Add support for deskbar mode and use nrows.

commit 3fcff86791a2324be77000520e720f7d0e3b2732
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Tue Dec 13 14:34:34 2011 +0900

    Launcher: Changing label orientation in a vertical mode.
    
    (cherry picked from commit 3fb6dbf32f8b7c708f3515a1ebc968adb70635e1)

commit 644b407a34265845b8ea35f18a3a71c561e81627
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 13 18:49:13 2011 +0100

    Panel: Update authors.

commit 9a10190ffbe3d219648c0ed47472dee33d47766e
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Dec 12 20:28:59 2011 +0100

    Launcher: Set the small property.

commit d4210bb2a179f8178ca0c4e6862c86a207ee7586
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Dec 12 19:58:29 2011 +0100

    Libxfce4panel: Fix size-changed signal/prop emit.

commit 66faf4adb5817b06fa25dd213bcddaddf09d4198
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Dec 12 23:12:03 2011 +0900

    Libxfce4panel: Add missing constant in property access.
    
    (cherry picked from commit 10c5fc4ef7a8ae553b4eaad8dc87499d3244d949)

commit d8ff795beb64febb59d7952f05a3f9d68aabfbda
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Dec 12 22:51:34 2011 +0900

    Libxfce4panel: Fix comment.
    
    (cherry picked from commit 6bb30c94b95d70763374c3be3fb5cc6afecd3365)

commit cc701714aa73dc841c4f9056f9bc22a24e9b2930
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Dec 12 19:52:37 2011 +0100

    Applicationmenu: Properly allocate the menu button in all modes.

commit cefedfe485fa9308a4de66be65d9a723f4c8213b
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Mon Dec 12 01:54:26 2011 +0900

    Panel: Changed page step for nrows slider to 1.
    
    (cherry picked from commit 22b63ca5d140a1210a74079b42ef164891e19d8d)

commit ca464ed6910764a38c290247eb77c1f681e6f22a
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Dec 12 19:50:53 2011 +0100

    Panel: Allocate panel size for all plugins.

commit 500b5a06c74e37026d656bc6f0f59851a4edebab
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Dec 11 21:47:58 2011 +0100

    Libxfce4panel: Increase the maximum size to 128 * 6 for rows.
    
    Thw maximum row size is 128, maximum number of rows 6.

commit 802aed3c863b9257510cb7c7b28b8ded98892947
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Dec 11 21:40:15 2011 +0100

    Panel: Change drop highlighting to a red line.
    
    Based on a patch of Andrzej.

commit 664f9473f847b11edb2d8be3d008141d8289a4a6
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Dec 11 16:57:39 2011 +0100

    Windowmenu: Set the small property.

commit 0bbdda534d4f3343788dbb583bea87b75929a730
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Dec 11 16:49:53 2011 +0100

    Showdesktop: Set the small property.

commit d542b93d0504c869460d85f186175f1d730c5be1
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Dec 11 16:46:02 2011 +0100

    Directorymenu: Set the small property.

commit f6034625935536a15c18461c5bf32a92ca180767
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Dec 11 21:07:26 2011 +0100

    Panel: Add row and small plugin handling in the itembar.

commit 5b1bf346de754c46f610828d38b4e9c9df1ea5fd
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Dec 11 21:04:01 2011 +0100

    Libxfce4panel: The returned size to plugins is row_size * nrows.
    
    This way plugins get the same height as they got before. If plugins
    want to implement a small plugin, they need to do the following:
    
    static gboolean
    plugin_size_changed (XfcePanelPlugin *panel_plugin,
                         gint             size)
    {
      size /= xfce_panel_plugin_get_nrows (panel_plugin);
      gtk_widget_set_size_request (GTK_WIDGET (panel_plugin), size, size);
    
      return TRUE;
    }
    
    and set xfce_panel_plugin_set_small (panel_plugin, TRUE); somewhere
    during initialization.

commit 142b8603d840a6c9418516b0fa5d03c7074a0955
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Dec 11 18:15:49 2011 +0100

    Panel: Add a single option for the itembar child types.
    
    This makes it easier to understand in the code, only
    a single option of expand/shrink/small works property.
    
    Also warn if a plugin tries to enable 2 of them.

commit ace05f97355535c29d2f28fa0d315c236292a63f
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 10 17:53:41 2011 +0100

    Squashme 53544a44: Rename HORIZONTAL to IS_HORIZONTAL.

commit be1e8c849a68e16c88ffbe667180f8a14de71bd5
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Dec 11 16:42:12 2011 +0100

    Squashme 53544a44: Add missing prover info.

commit 0c15ac55ad681e37c998c0169693f87070423c26
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Dec 11 16:34:52 2011 +0100

    Separator: Remove new line option.
    
    This will be replaced by the nrows property.

commit a2a8232e2f894381f5b4c1e451a956bac1c1b8ba
Author: Andrzej <ndrwrdck@gmail.com>
Date:   Sun Dec 11 15:38:36 2011 +0100

    Add small property for plugins.
    
    This properly will be used to pack a plugin only on a single row instead
    of the whole panel height.

commit 96baf38570437374795eb2d7e3983adf54df02bd
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 10 15:24:33 2011 +0100

    Add deskbar mode and nrows property to plugins.
    
    Instead of the horizontal property, there is now a mode property
    with 3 values. The orientation communication has been completely
    removed, only the properties exist.
    
    Properly migrate the orientation property.
    
    Plugins and the panel should not act any different with this commit.

commit be15b49f892c7799091b7996d484fbf6f9acc048
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 24 12:41:29 2011 +0100

    Clock: Fix typo in tooltip (bug #8137).

commit 8f128968880de6b829f3b3c96e104b8c7bd8d322
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 24 12:30:35 2011 +0100

    Launcher: Fix typo in previous commit.

commit 97f29f9ff20fa84265df9e3578e32ce55cc3c521
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Dec 23 22:56:47 2011 +0100

    Launcher: Add menu to item treeview.
    
    This makes it easier to add items by keyboard and also
    gives to possibility for actions that are not common used,
    like adding Link launchers (bug #7266).

commit f78098709a793866dec1b2db410ba7bdd7e04360
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Fri Dec 23 19:50:17 2011 +0100

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9a0abbc30356afb0d3b749929909d21f19453cd6
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 22 15:50:55 2011 +0100

    Migrate: Fix typo in default xml.

commit fa83856794c82204ab2d9a513e1ddcf08ba02415
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Tue Dec 20 19:46:54 2011 +0100

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 07035b7a9130c8a0e1da0afdc9069e4a878c9770
Author: Andres Sanchez <afsanchez93@gmail.com>
Date:   Tue Dec 20 16:05:55 2011 +0100

    l10n: Updated Spanish (Castilian) (es) translation to 94%
    
    New status: 358 messages complete with 8 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 40ecc79706da0c25a26c69a65e17ef817d018b04
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 20 13:21:06 2011 +0100

    Actions: Fix John Doe typo.

commit 7cea5272c7b4276dd4bcf2c377bbfb4041aa7a06
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Mon Dec 19 00:42:45 2011 +0100

    l10n: Updated Czech (cs) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 50e20a11036a99f39d47d76087386fb7f75558aa
Author: Olexandr <olexn@ukr.net>
Date:   Sun Dec 18 23:51:55 2011 +0100

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0299c45af834ab07cbe3e43602bb86c7ef021198
Author: Olexandr <olexn@ukr.net>
Date:   Sun Dec 18 23:26:02 2011 +0100

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 92b991feba570b59b9aa0306b55ab98e9339a73e
Author: Carles Muñoz Gorriz <carlesmu@internautas.org>
Date:   Sun Dec 18 13:47:47 2011 +0100

    l10n: Updated Catalan (Valencian) (ca) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7ddb8ecb2467a92adeb95d9adf21d4f43cabf6a5
Author: André Luiz Dias de Miranda <andreldm1989@gmail.com>
Date:   Sat Dec 17 20:56:45 2011 +0100

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit dcd2aaafc66203db18f2758c4f24cff6ce13f06f
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sat Dec 17 18:06:26 2011 +0100

    l10n: Updated Kazakh (kk) translation to 99%
    
    New status: 378 messages complete with 0 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 07fe0a629b7b6092f2dfcaf4ef2dd2910f161a7c
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 3 18:13:20 2011 +0100

    Use realtime POSIX timers for the clock.
    
    Use timer functions that work properly after
    suspending the system.

commit dfda220bd03d4c67a8e0bc94395d1eb79dc6338e
Author: Chipong Luo <chipong_l@yahoo.com>
Date:   Fri Dec 9 15:20:48 2011 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1eefc199be3175ebfd6f54ac60cc6682ee7110d2
Author: Carles Muñoz Gorriz <carlesmu@internautas.org>
Date:   Tue Dec 6 21:32:02 2011 +0100

    l10n: Updated Catalan (Valencian) (ca) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4ee874d689068a59304ad1ebb4bb4a920c2f9896
Author: Chipong Luo <chipong_l@yahoo.com>
Date:   Sun Dec 4 15:03:20 2011 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 787a3c115df8a6d2a354b5600df115eead6802f4
Author: Chipong Luo <chipong_l@yahoo.com>
Date:   Sun Dec 4 12:57:17 2011 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d6b3f4b0f6dfe4870b764fe48423c50a28ef4f97
Author: Chipong Luo <chipong_l@yahoo.com>
Date:   Sat Dec 3 03:14:45 2011 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 84ace4e03cdc63079843d43863aed639219d8bdb
Author: Chipong Luo <chipong_l@yahoo.com>
Date:   Sat Dec 3 02:44:06 2011 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f5ed4bd468cdc09f9a5f9b2b94d32ac239dc6387
Author: كريم أولاد الشلحة <herr.linux88@gmail.com>
Date:   Thu Dec 1 23:05:06 2011 +0100

    l10n: Updated Arabic (ar) translation to 10%
    
    New status: 38 messages complete with 247 fuzzies and 94 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8017f4b5f1f0b55cf86487a9e26a7e6704c0f7ee
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Nov 28 17:41:48 2011 +0100

    l10n: Updated Persian (fa) translation to 1%
    
    New status: 7 messages complete with 94 fuzzies and 278 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2bf8f30ec3fe993db6e98ae37f5cfb900ff57ecb
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Nov 28 17:41:19 2011 +0100

    l10n: Updated Persian (fa) translation to 2%
    
    New status: 8 messages complete with 94 fuzzies and 277 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d8932da32d45233dee39525c45a0ab50daefdaff
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Nov 23 21:25:17 2011 +0100

    Remove module.xml.

commit 3cb5f3823661bd62f6f4683eb01bdacb9a9b04ac
Author: Jannis Pohlmann <jannis@xfce.org>
Date:   Wed Nov 16 10:36:25 2011 +0000

    Drop AC_PROG_LIBTOOL and AC_DISABLE_STATIC for LT_PREREQ and LT_INIT.

commit 3f61fa2653c511b2044353635497bf58365822c8
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Tue Nov 15 12:29:19 2011 +0100

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4f57452b041c16ae4a399e538f05ace4b68ac48f
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Sun Nov 13 03:31:45 2011 +0100

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0a341b5576ccca372e8bf1805b24644ed98bdb4c
Author: Mike Massonnet <mmassonnet@gmail.com>
Date:   Sat Nov 12 15:43:51 2011 +0100

    l10n: Updated French (fr) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit cd458414991b82bbfd0a5a834f98048a64c108df
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Fri Nov 11 11:36:09 2011 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 65b40fd26f61c500de94052cef6f081dfe850030
Author: Jean-Philippe Fleury <contact@jpfleury.net>
Date:   Wed Nov 9 22:16:56 2011 +0100

    l10n: Updated French (fr) translation to 91%
    
    New status: 346 messages complete with 30 fuzzies and 3 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4b6b461be12dae032d0b4f7c81f3016ce299dc5b
Author: Piarres Beobide <pi@beobide.net>
Date:   Sun Nov 6 00:35:41 2011 +0100

    l10n: Updated Basque (eu) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 39428fa06888ade1c1f9df8e4ce7f7f96520d680
Author: Aleksandr Ponomarenko <davian818@gmail.com>
Date:   Sat Nov 5 15:09:52 2011 +0100

    l10n: Updated Russian (ru) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 496be754a536987259ee80b6f8548c6a0a9f7ef1
Author: Aleksandr Ponomarenko <davian818@gmail.com>
Date:   Sat Nov 5 15:04:59 2011 +0100

    l10n: Updated Russian (ru) translation to 96%
    
    New status: 364 messages complete with 8 fuzzies and 7 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit adf25612de1c3c727bddbf35bd8d0cf5f0d329b6
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Sat Nov 5 09:21:21 2011 +0100

    l10n: Updated Italian (it) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d09b1326bdc403fbdd2b7817ab489ee990ba827d
Author: Piarres Beobide <pi@beobide.net>
Date:   Sat Nov 5 01:11:54 2011 +0100

    l10n: Updated Basque (eu) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit bf405115b2da77774b2fc78781901e1da47e9ba6
Author: Piarres Beobide <pi@beobide.net>
Date:   Sat Nov 5 00:57:25 2011 +0100

    l10n: Updated Basque (eu) translation to 99%
    
    New status: 378 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 58b4af7126e78adcbe5a7c5e467e38d11bdb4cea
Author: Piarres Beobide <pi@beobide.net>
Date:   Sat Nov 5 00:55:38 2011 +0100

    l10n: Updated Basque (eu) translation to 98%
    
    New status: 372 messages complete with 4 fuzzies and 3 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit afb66b7da40015de730ae331155cc481c48c3157
Author: Tomáš Vadina <kyberdev@gmail.com>
Date:   Wed Nov 2 13:40:18 2011 +0100

    l10n: Updated Slovak (sk) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 55679dfd8de7d70fc81dc2072c1263e428861f94
Author: Tomáš Vadina <kyberdev@gmail.com>
Date:   Wed Nov 2 13:38:05 2011 +0100

    l10n: Updated Slovak (sk) translation to 99%
    
    New status: 378 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7bda53168e5ac891a2c33d28ed359982401f56c9
Author: Tomáš Vadina <kyberdev@gmail.com>
Date:   Wed Nov 2 13:35:59 2011 +0100

    l10n: Updated Slovak (sk) translation to 98%
    
    New status: 372 messages complete with 4 fuzzies and 3 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 39db83bfd2f5739b5e07947626db575f3fb7a345
Author: Mike Massonnet <mmassonnet@gmail.com>
Date:   Mon Oct 31 16:18:05 2011 +0100

    l10n: Updated French (fr) translation to 91%
    
    New status: 346 messages complete with 30 fuzzies and 3 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6cb350832c04f95474af646720747b3dc82779a6
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Oct 30 19:41:45 2011 +0100

    Panel: Use long option, looks better in appfinder.

commit 52bbc3859876c1c1c50e6c736f91b32e8930b1aa
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Sun Oct 30 08:51:32 2011 +0100

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 347 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 584a5eb9916e26501b88c0bd4ab74f29215ba3f2
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Fri Oct 28 03:36:52 2011 +0200

    l10n: Updated Croatian (hr) translation to 84%
    
    New status: 319 messages complete with 0 fuzzies and 60 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b59c82771c0f2c297cc7d53f37843087d675cb30
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Thu Oct 27 22:40:06 2011 +0200

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ac15660af4dde93111f961af0c1669c1e64c0a28
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Oct 27 19:59:38 2011 +0200

    Migrate: Some improvements for distros (bug #8060).

commit de2c764f848e8ab950485321da686bc65ee64607
Author: 玉堂 白鹤 <yjwork.xfce@gmail.com>
Date:   Thu Oct 27 14:38:54 2011 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 38ba035bd7bcef0ed401704451ccab5e19c3f179
Author: 玉堂 白鹤 <yjwork.xfce@gmail.com>
Date:   Thu Oct 27 14:38:23 2011 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 99%
    
    New status: 378 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 07fc49368cd209ed37dd174b59f1a1c908b63a9e
Author: 玉堂 白鹤 <yjwork.xfce@gmail.com>
Date:   Thu Oct 27 14:37:03 2011 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 99%
    
    New status: 378 messages complete with 0 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2b5517e61ff088657a0ee67985512afcccec88c8
Author: 玉堂 白鹤 <yjwork.xfce@gmail.com>
Date:   Thu Oct 27 13:43:22 2011 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 99%
    
    New status: 378 messages complete with 0 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c690059d473a1dd4bba09c0e1c088e027ff921d5
Author: 玉堂 白鹤 <yjwork.xfce@gmail.com>
Date:   Thu Oct 27 13:31:22 2011 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 99%
    
    New status: 378 messages complete with 0 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 33b7de055b8702611dff0603e23eee015a82a684
Author: 玉堂 白鹤 <yjwork.xfce@gmail.com>
Date:   Thu Oct 27 13:07:07 2011 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 99%
    
    New status: 378 messages complete with 0 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1f3be1436374a632455c0f108cdfb2720952e6fd
Author: 玉堂 白鹤 <yjwork.xfce@gmail.com>
Date:   Thu Oct 27 13:03:54 2011 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 98%
    
    New status: 372 messages complete with 4 fuzzies and 3 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5512e358d42b62f7bc7cd70b0073eaea832aa9d5
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Wed Oct 26 23:03:27 2011 +0200

    l10n: Updated Ukrainian (uk) translation to 99%
    
    New status: 377 messages complete with 0 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f57fecb22370044a6fa75bdb9c448afb6c606fff
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Wed Oct 26 23:00:15 2011 +0200

    l10n: Updated Ukrainian (uk) translation to 97%
    
    New status: 371 messages complete with 4 fuzzies and 4 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit dd9361d9ded4829e3c004ed4f122dcfa28e8bf1e
Author: Allar Kiristaja <aquastus@gmail.com>
Date:   Wed Oct 26 22:57:35 2011 +0200

    l10n: Updated Estonian (et) translation to 95%
    
    New status: 361 messages complete with 2 fuzzies and 16 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit edb85fa33448a01f132922e47b8c8a87f4eb6fd4
Author: Allar Kiristaja <aquastus@gmail.com>
Date:   Wed Oct 26 18:25:09 2011 +0200

    l10n: Updated Estonian (et) translation to 88%
    
    New status: 337 messages complete with 2 fuzzies and 40 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fffbc69ab768dfe4279ff48dfe642953e2f76793
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Mon Oct 24 17:56:20 2011 +0200

    l10n: Updated Danish (da) translation to 98%
    
    New status: 373 messages complete with 1 fuzzy and 5 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 86a31469313780b364f450703c4c123393360acb
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Mon Oct 24 17:45:32 2011 +0200

    l10n: Updated Danish (da) translation to 95%
    
    New status: 363 messages complete with 6 fuzzies and 10 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9477e91d1af3805d3e050bdcec901a4693b22ed8
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Mon Oct 24 12:30:43 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 379 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 82c01dba81cd53c2da3914d58d020194dde616c9
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Mon Oct 24 12:27:35 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 97%
    
    New status: 368 messages complete with 8 fuzzies and 3 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7aa32d384c375e79f96213007ba1aa32b9525040
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Oct 23 20:15:22 2011 +0200

    Applicationmenu: Show menu on button-press-event (bug #8047).
    
    This allows to select a menuitem without releasing the
    mouse button and also feel a bit faster.

commit 5385d9914b43ee74c0b1da093b44515777a81409
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Sep 9 21:33:09 2011 +0200

    Migrate: Add version based config migration.
    
    This allows to update the configuration for new plugins.

commit 81a2d7523b779e2fbe93d632917074ff4d5613aa
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jul 12 17:56:14 2011 +0200

    Actions: Merge functionality of xfce4-session plugin.
    
    Add support of the functionality of xfswitch and xfce4-session
    plugin in a single plugin.

commit ea0b61ae58fe484ebd1a5a5751998eadde92c12d
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Oct 23 18:23:27 2011 +0200

    Directorymenu: Properly fix previous commit.
    
    The second argument was specifically for file managers,
    so make this optional.

commit fad7e1e6ec57cc9a2b5719e4ef4f09514505b894
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Oct 23 18:20:37 2011 +0200

    Directorymenu: Don't pass working dir as argument (bug #8018).

commit d29f9ef5f49d7d0a589368a5cbeac036a6c8fe96
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Fri Oct 7 19:32:37 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ee07231fdcdcc5ca469612683be448f11ea5e146
Author: Xavier Devlamynck <magicrhesus@ouranos.be>
Date:   Wed Oct 5 17:50:25 2011 +0200

    l10n: Updated French (fr) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3fcf6626d58e166bf6759d9206af4a6ef0acf5b2
Author: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
Date:   Mon Oct 3 13:31:32 2011 +0200

    l10n: Updated Finnish (fi) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 98a902039abfd79feb67e317152470e93b1a8532
Author: Henrique P. Machado <zehrique@gmail.com>
Date:   Tue Sep 27 07:17:35 2011 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6123a79fccbbcb7bfbb373db7db106dfe7f5c4e7
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Sat Sep 24 17:33:50 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8c2e529e8ab79aeacec669545dcf4e84dbe00bfa
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Mon Sep 19 17:58:46 2011 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6c95ad51d0e27ba7abd3ef29ee963c6a987adb42
Author: Alper Tekinalp <alper.tekinalp@gmail.com>
Date:   Thu Sep 15 22:22:47 2011 +0200

    l10n: Updated Turkish (tr) translation to 53%
    
    New status: 189 messages complete with 75 fuzzies and 87 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f75c7b73269cae9591332c64d75a7524ea690349
Author: Alper Tekinalp <alper.tekinalp@gmail.com>
Date:   Thu Sep 15 22:07:55 2011 +0200

    l10n: Updated Turkish (tr) translation to 41%
    
    New status: 146 messages complete with 97 fuzzies and 108 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit cd269bd95d8e96a438e4355dc0bbc987cad1538d
Author: Alper Tekinalp <alper.tekinalp@gmail.com>
Date:   Wed Sep 14 14:59:48 2011 +0200

    l10n: Updated Turkish (tr) translation to 37%
    
    New status: 133 messages complete with 101 fuzzies and 117 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2930b5d5bbaede893e1c5a5afdb6522b245e4936
Author: Alper Tekinalp <alper.tekinalp@gmail.com>
Date:   Wed Sep 14 14:51:36 2011 +0200

    l10n: Updated Turkish (tr) translation to 35%
    
    New status: 124 messages complete with 98 fuzzies and 129 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 90e31739a47301b06b97cf6a13e69b946a89f8ff
Author: Alper Tekinalp <alper.tekinalp@gmail.com>
Date:   Wed Sep 14 14:44:36 2011 +0200

    l10n: Updated Turkish (tr) translation to 33%
    
    New status: 119 messages complete with 100 fuzzies and 132 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 45553ad7947fa2f608342d6b5b233494774bcb87
Author: Alper Tekinalp <alper.tekinalp@gmail.com>
Date:   Wed Sep 14 14:42:24 2011 +0200

    l10n: Updated Turkish (tr) translation to 32%
    
    New status: 115 messages complete with 103 fuzzies and 133 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8b42afc2217ae1550dcb89a1200c676f3a91c09f
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Tue Sep 13 00:37:03 2011 +0200

    l10n: Updated Korean (ko) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e40853d8d39c304dfbca138b8484a4968f2f09ff
Author: Piarres Beobide <pi@beobide.net>
Date:   Mon Sep 12 01:13:07 2011 +0200

    l10n: Updated Basque (eu) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 00aea5208c00deb7e1f982815971b8cb15679f6e
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Sep 11 19:54:31 2011 +0200

    Systray: Control the thinkness of the frame (bug #7593).
    
    Instead of the previous commits, control the brightness in
    a better way.

commit 3bb8fea830be758a8af556427ef81f41782ef39c
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Sep 11 14:33:47 2011 +0200

    Systray: Leave the frame thickness out when hidden.

commit 70d376e5485c7208012adb2aa2bc1b3f74f274d2
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Sep 11 14:19:42 2011 +0200

    Systray: Fix problem in border allocation.

commit 6290f09b669067378c0538ed0d43775104225b75
Author: 玉堂 白鹤 <yjwork.xfce@gmail.com>
Date:   Sun Sep 11 08:26:39 2011 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 55f1437e28c32f7c393117027c679f33bcd26718
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Sep 11 08:01:34 2011 +0200

    Launcher: Fix broken compilation (bug #7966).

commit 55783f562a0645eb9032f53b1db039761a1d49b1
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Sep 10 10:45:32 2011 +0200

    Launcher: Don't reconstruct the items on save (bug #7952).
    
    During save we notified the items entirely, but this
    is wrong because it also constructs the items again,
    makeing the icons flicker for a moment.

commit a9b1ea487e7901e0a6e7cb18ccad9b806b685eaa
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Sep 9 20:03:26 2011 +0200

    Applicationsmenu: Fix segfault with not-existing menu (bug #7895).

commit bd4964379eddb689b32dcc7cb32054714bf306b2
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Sep 9 19:40:25 2011 +0200

    Libxfce4panel: Avoid problem if panel is not yet realized.

commit 5485525958b3006df3bb974974250cfd860d5b98
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Fri Sep 9 00:01:50 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 48382773474583719b59753c3d4e3e74a346f449
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Sep 8 11:11:25 2011 +0200

    Panel: Print string in case of an invalid position.

commit 0f7f361c757f6b1623bd7e4f8b389b0e77a8a246
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Mon Sep 5 05:39:35 2011 +0200

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 628b281cbd1c06d3a43b89f1db5c47eea1f0139d
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Thu Sep 1 12:23:08 2011 +0200

    l10n: Updated Croatian (hr) translation to 88%
    
    New status: 309 messages complete with 0 fuzzies and 42 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4933d77bc7820d59827f47f8f0ec0821e68a5070
Author: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
Date:   Wed Aug 31 15:26:48 2011 +0200

    l10n: Updated Finnish (fi) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit eb806707284f65913e9b56b6650f381221d3087d
Author: Ardjuna <ard_h_r@yahoo.com>
Date:   Sun Aug 28 04:00:33 2011 +0200

    l10n: Updated Indonesian (id) translation to 99%
    
    New status: 350 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 320dfdb7ddac016dfb4745b68bb97b5f61579b12
Author: Alexandr Boltris <ua2fgb@gmail.com>
Date:   Fri Aug 26 08:28:04 2011 +0200

    l10n: Updated Russian (ru) translation to 99%
    
    New status: 349 messages complete with 1 fuzzy and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 875989a0cace9c0a028cea088a3d5de405d5389f
Author: Tomáš Vadina <kyberdev@gmail.com>
Date:   Thu Aug 25 14:45:51 2011 +0200

    l10n: Updated Slovak (sk) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7cbfb5bb24abd0428758ba6288a75fae46085800
Author: Fabian Nowak <timystery@arcor.de>
Date:   Tue Aug 23 22:33:15 2011 +0200

    l10n: Updated German (de) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 755d89723ea73553fc3bac3fc0a5c49ebe2b180c
Author: Fabian Nowak <timystery@arcor.de>
Date:   Mon Aug 22 19:40:12 2011 +0200

    l10n: Updated German (de) translation to 100%
    
    New status: 228 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 135e43138d2f375725849a0785dfb7346436eeb0
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Fri Aug 19 08:47:24 2011 +0200

    l10n: Updated Italian (it) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fa264abeb2945034097d5b5a27e0be9703c86b06
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Thu Aug 18 21:37:33 2011 +0200

    l10n: Updated Danish (da) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7bf50f78eb07e1a165f09896de1d6add5427dd82
Author: Andres Sanchez <afsanchez93@gmail.com>
Date:   Thu Aug 18 13:45:39 2011 +0200

    l10n: Updated Spanish (Castilian) (es) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit bd4610cffc55efa6ecefd610e9fbacae49b2a0ca
Author: 玉堂 白鹤 <yjwork.xfce@gmail.com>
Date:   Wed Aug 17 17:31:01 2011 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 99%
    
    New status: 348 messages complete with 0 fuzzies and 3 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 262023029d997388aad5e41713224e98db259852
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Sat Aug 13 15:21:58 2011 +0200

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7f72b5d986286f94fa89fa4c04824c008f8ec8ee
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Sat Aug 13 12:15:17 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 351 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 93f436db38d243df30a42272fc6a03326801add2
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Aug 12 21:50:06 2011 +0200

    Tasklist: Add option to disable mouse scrolling (bug #6996).

commit 9a7ca5adc8f6a1f1ab65bfd6cba2bd78235a1854
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Aug 12 21:35:03 2011 +0200

    Migrate: Add separator to default config (bug #7875).

commit da7b8e61462d649b70117489cc3dbe1e50e3f855
Author: Tomáš Vadina <kyberdev@gmail.com>
Date:   Tue Aug 9 19:48:31 2011 +0200

    l10n: Updated Slovak (sk) translation to 99%
    
    New status: 349 messages complete with 0 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7d2eac2d3f654bb89ee76f55b878bdedcc693f78
Author: Andres Sanchez <afsanchez93@gmail.com>
Date:   Sun Aug 7 22:43:45 2011 +0200

    l10n: Updated Spanish (Castilian) (es) translation to 100%
    
    New status: 350 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4b8785eb86e18c86d32a8496bd25854aaa2c9e78
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Sun Aug 7 11:48:00 2011 +0200

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 350 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8d67f4b1342568040bf5568285599e2c42cc2406
Author: Mike Massonnet <mmassonnet@gmail.com>
Date:   Sat Aug 6 19:02:31 2011 +0200

    l10n: Updated French (fr) translation to 95%
    
    New status: 335 messages complete with 12 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3825403293dc25dfbf0daea8eea713e7de1a04e3
Author: Mike Massonnet <mmassonnet@gmail.com>
Date:   Sat Aug 6 18:46:13 2011 +0200

    l10n: Updated French (fr) translation to 95%
    
    New status: 335 messages complete with 12 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 00a099eba01ea6fd682b9ac4749a58f39d1c0d93
Author: Mike Massonnet <mmassonnet@gmail.com>
Date:   Sat Aug 6 18:33:06 2011 +0200

    l10n: Updated French (fr) translation to 95%
    
    New status: 335 messages complete with 12 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 23e57f13147fae44f67e448c87978ac7515f12be
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date:   Fri Aug 5 20:51:44 2011 +0200

    Fix a typo in French translation.

commit 7332b278da04628546dc7dcea58895ee9f58515c
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Fri Aug 5 08:53:40 2011 +0200

    l10n: Updated Italian (it) translation to 100%
    
    New status: 350 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 90e1508fbef7673640230a8c486a79ef7a8134bd
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Thu Aug 4 18:19:09 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 350 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4cce36dc00a726154794d3b8448347e2914c360f
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Aug 3 21:35:52 2011 +0200

    Panel: Make compositing settings insensitive (bug #7862).
    
    Instead of hiding the compositing settings, make them
    insensitive and show an info bubble how to enable
    the settings.

commit 3017e5c70f4cc8dec9801e426f447b861627b42b
Author: Mișu Moldovan <dumol@xfce.org>
Date:   Sun Jul 31 12:19:43 2011 +0200

    l10n: Updated Romanian (ro) translation to 100%
    
    New status: 167 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 48df5f5126156a5c687d6acdeff708187944cb13
Author: Artem Zolochevskiy <artem.zolochevskiy@gmail.com>
Date:   Tue Jul 26 19:41:54 2011 +0200

    l10n: Updated Russian (ru) translation to 100%
    
    New status: 349 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 15e93ebfbece83336919f835651045d91d40cee8
Author: Artem Zolochevskiy <artem.zolochevskiy@gmail.com>
Date:   Tue Jul 26 16:21:39 2011 +0200

    l10n: Updated Russian (ru) translation to 100%
    
    New status: 349 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5063f96e00204611deaa4f85209b3b1d971d9eee
Author: Mike Massonnet <mmassonnet@gmail.com>
Date:   Mon Jul 25 22:01:43 2011 +0200

    l10n: Updated French (fr) translation to 95%
    
    New status: 335 messages complete with 12 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2ea86918148ce55e2faf164ca5c9ccdedcd51fa2
Author: Piarres Beobide <pi@beobide.net>
Date:   Mon Jul 25 16:04:14 2011 +0200

    l10n: Updated Basque (eu) translation to 100%
    
    New status: 349 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b02c4e435648e583a52c2ccfea490be8bd49d72a
Author: Tomáš Vadina <kyberdev@gmail.com>
Date:   Mon Jul 25 09:27:46 2011 +0200

    l10n: Updated Slovak (sk) translation to 100%
    
    New status: 349 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 389ff734e4cc54c68dd87b884b9b5aa8562e6dae
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jul 24 20:47:59 2011 +0200

    Libxfce4panel: Always try to return an icon.
    
    Better in most cases then no icon.

commit cc0398cd88c4f0857acf893968a499d1618980d5
Author: Andres Sanchez <afsanchez93@gmail.com>
Date:   Tue Jul 19 19:25:22 2011 +0200

    l10n: Updated Spanish (Castilian) (es) translation to 100%
    
    New status: 349 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 472681275a43ca551d6534364b79b4bccbdeb2a2
Author: Tomáš Vadina <kyberdev@gmail.com>
Date:   Mon Jul 18 08:38:15 2011 +0200

    l10n: Updated Slovak (sk) translation to 100%
    
    New status: 349 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 09ea86a432a0af096d2868c7baa6419f7a52316c
Author: Praveen Illa <mail2ipn@gmail.com>
Date:   Wed Jul 13 18:39:02 2011 +0200

    l10n: First update to Indian Telugu translation
    
    New status: 151 messages complete with 0 fuzzies and 194 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5f823bd48b21a24a4516abac01084bd85d523cf2
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jul 10 10:31:48 2011 +0200

    Directorymenu: Also send the target directory as arg (bug #7745).
    
    Not all filemanagers support the working directory as the
    new target, but open the home directory instead.
    To avoid this also send the target directory as first argument
    in the command, basically all file managers support this.

commit 73af87e8d9d348d6d120c41c0d783b19fd9fd5f2
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Sun Jun 26 12:09:25 2011 +0200

    l10n: Updated Danish (da) translation to 100%
    
    New status: 349 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9a2407b90828a8716d4972433d1fe2169cbff08c
Author: John Feuerstein <john@feurix.com>
Date:   Sat Jun 25 14:06:35 2011 +0200

    Panel: Wait until the wm is ready on all screens (bug #7161).

commit c7f81b81005859fae75417d5b3f03bede17b56c5
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sat Jun 25 13:54:17 2011 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 349 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8e362145a34393372e62081877f267b17088574b
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Thu Jun 23 14:03:59 2011 +0200

    l10n: Updated Italian (it) translation to 100%
    
    New status: 349 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fcbe97693bb7de714a4dbb52500c7ffa045b5186
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Wed Jun 22 10:36:52 2011 +0200

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 349 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 758808cc4ea9699593c8b0650d6caaaf04a6d090
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jun 21 22:06:54 2011 +0200

    Tasklist: Drop Gtk 2.22 API.

commit faab6b6f15eb17226e37402fbc9b09d17f20a0c1
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jun 21 19:47:41 2011 +0200

    Tasklist: Avoid unneeded dnd actions.

commit b4a9628fc510db15532d748b7e30cd7e29e6ac9e
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jun 21 19:01:46 2011 +0200

    Launcher: Fix plugin size with arrow button (bug #7747).

commit 98d8f4b2386bacd5f2fe90a511d7d2817d0c13d3
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jun 21 18:19:47 2011 +0200

    Tasklist: Allow both motion activation and dnd (bug #7755).

commit dbc73e9c47b381b87c7a5c60ab633fbc370e21f1
Author: Dan Callaghan <djc@djc.id.au>
Date:   Sun Jun 19 10:48:52 2011 +1000

    Panel: Fix off-by-one error in strut sizes (bug #7739).

commit 2304a2ea9c3533094c4a1a1f43fa48d4044869cf
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jun 21 18:03:01 2011 +0200

    Tasklist: Fix assert in button dnd (bug #7741).

commit eb3e5283fcb07723f07bbd5c9c017e08ad766355
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jun 21 07:36:30 2011 +0200

    Panel: Make preferences dialog work in Gtk+ 2.24.5.
    
    See https://bugzilla.gnome.org/show_bug.cgi?id=576492.

commit 042609e9c5a06085eece9803cac6ae96803cfba5
Author: Christoph Wickert <christoph.wickert@googlemail.com>
Date:   Mon Jun 20 20:24:52 2011 +0200

    l10n: Updated German (de) translation to 99%
    
    New status: 347 messages complete with 2 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 604f529e9ff37718254a665803e41616b59de548
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Mon Jun 20 10:46:10 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 349 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ab609379faa0ca7af58a96fc8c46868f520b2c48
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jun 19 22:52:07 2011 +0200

    Systray: Add xfpm to known apps for a decent icon.

commit ccd848851c5a207c999f83107a5365c5de8edd22
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jun 19 20:29:52 2011 +0200

    Libxfce4panel: Keep blinking forever (bug #7583).

commit a92bfbd156a74b8be447ee2ea2466aa4a29785ea
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jun 19 20:26:56 2011 +0200

    Fix minimizing of active transient windows (bug #7674).

commit e316c7f40bb43373629c8e4bd4a19b2960c9f486
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jun 19 20:15:04 2011 +0200

    Add a sorting mode for tasklist reordering with dnd (bug #7058).

commit e3e6be1c591c8e9cce625722866a1c7b129ecdfd
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jun 19 13:47:19 2011 +0200

    Wait for the wm selection not the compositing (bug #7727).

commit 6c5777f78ba8b3e5f309fb22d034e188d7a21f00
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sat Jun 18 20:06:51 2011 +0200

    l10n: Updated Kazakh (kk) translation to 99%
    
    New status: 347 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 293b242732a9a2c5df8879949f579eb67ab62f41
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jun 18 12:32:19 2011 +0200

    Windowmenu: Do not update if screen is not initilized (bug #7728).

commit 4c1c3ce9716c74751cd37486d8b2fbb7530f0373
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jun 18 12:27:44 2011 +0200

    Make the pager message less scary.

commit d8bd765f60a10f28131f5013b00030f7e42ba0c9
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jun 18 12:11:41 2011 +0200

    Small fix in idle image loading.

commit afb54ab8fdb5bfb6493e5be291eb2901773cc7fc
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Jun 13 20:39:17 2011 +0200

    Drop G_CONST_RETURN macro.

commit 81bba772780ae8c2faac733f81b23f4b9a381b22
Author: Tomáš Vadina <kyberdev@gmail.com>
Date:   Fri Jun 17 21:35:51 2011 +0200

    l10n: Updated Slovak (sk) translation to 100%
    
    New status: 348 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8bcbf872907ae2982713ab6a033d5916284b5e62
Author: Tomáš Vadina <kyberdev@gmail.com>
Date:   Fri Jun 17 21:28:02 2011 +0200

    l10n: Updated Slovak (sk) translation to 100%
    
    New status: 348 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 804a09ee12f463ed18e7c7140be47fc976f8f86e
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Thu Jun 16 17:21:55 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 348 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 81867b63454b406c490cfa98ca710d18343eca98
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Thu Jun 16 17:20:16 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 348 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 40ce7589b27f0a92688c8e516cdc9eed3250ec74
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Mon Jun 13 01:33:09 2011 +0200

    l10n: Updated Croatian (hr) translation to 88%
    
    New status: 308 messages complete with 0 fuzzies and 40 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0fcce195482cfd1a3e925014d9a81a4b5e7676b8
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jun 11 22:13:17 2011 +0200

    Idle XfcePanelImage loading.
    
    Delay loading of images in the panel. This will improve
    the overall response of the panel and menus.

commit ffe82c0187a2b1e0c11c9025f381e1e8c5b20579
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Fri Jun 10 11:44:29 2011 +0200

    l10n: Updated Croatian (hr) translation to 86%
    
    New status: 300 messages complete with 0 fuzzies and 48 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1e6d84db5148d4e0c6df36e3eb90e32e31b02e03
Author: Morten Juhl-Johansen Zölde-Fejér <mjjzf@syntaktisk.dk>
Date:   Sun Jun 5 23:25:53 2011 +0200

    l10n: Updated Danish (da) translation to 100%
    
    New status: 348 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3d1d2f0b2899bfff2180dca10fec28ac6b94863d
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date:   Fri Jun 3 14:04:33 2011 +0200

    Fix typos in function description.

commit e11d11714b21ad3a4aebf3a2e4acc2ff5e0be111
Author: Piarres Beobide <pi@beobide.net>
Date:   Thu Jun 2 22:59:06 2011 +0200

    l10n: Updated Basque (eu) translation to 100%
    
    New status: 348 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8944dfee078b894c5345ccab4b2820100fe681f9
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Mon May 30 12:52:38 2011 +0200

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 348 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 203bc94a11697f855728a2d3c938ea200cdc40ae
Author: zaenal <zaenal1234@gmail.com>
Date:   Sun May 29 21:08:07 2011 +0200

    l10n: Updated Indonesian (id) translation to 100%
    
    New status: 348 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fdc0b5417d58f9abb3e5ab4d7a2a8c3a689cc063
Author: zaenal <zaenal1234@gmail.com>
Date:   Sun May 29 20:54:35 2011 +0200

    l10n: Updated Indonesian (id) translation to 99%
    
    New status: 347 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1d8d454eb6a3ae6f0e2f8ab7bdaab626fb2850a9
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Sun May 29 17:54:42 2011 +0200

    l10n: Updated Italian (it) translation to 100%
    
    New status: 348 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b5f8dc9c649dfc081717a9879809797b2655ecec
Author: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
Date:   Sun May 29 12:21:39 2011 +0200

    l10n: Updated Finnish (fi) translation to 100%
    
    New status: 348 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit eddde05ad6b3920400b7b393a96b9dde73a1bbdd
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Sun May 29 00:21:30 2011 +0200

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 348 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fafc85cb9663894580917e5c72407fb6106e5638
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Sun May 29 00:02:04 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 348 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d208ced73d6e839e4ac4c9321ae53c3c2ffa7e8f
Author: Nick Schermer <nick@xfce.org>
Date:   Sat May 28 18:10:06 2011 +0200

    Improve thread-safety.

commit 176a68b8f347f84e4dc8fdf7f8e81d1e8e6034b0
Author: Nick Schermer <nick@xfce.org>
Date:   Sat May 28 17:45:56 2011 +0200

    Fix menu positioning for moved external plugins (bug #7529).
    
    For some reason the window position cache in gdk is not updated
    so work around this.

commit 4e14f278ea242dae6b7f4a3e0ebc1a98f79a1c55
Author: Nick Schermer <nick@xfce.org>
Date:   Sat May 28 15:02:20 2011 +0200

    Sleep on startup until a window manager is detected.

commit 6bf9caa72a16240c54b1d7b91c36798a151de483
Author: Nick Schermer <nick@xfce.org>
Date:   Sat May 28 14:09:45 2011 +0200

    Fix 4.6 migration of action buttons (bug #7543).

commit 27dfa9b5bf3216ba725df55172ba861281d71aa8
Author: Nick Schermer <nick@xfce.org>
Date:   Sat May 28 13:39:15 2011 +0200

    Set window colormap and change autohide window type (bug #7435)
    
    The colormap was not properly applied to the autohide window
    and therefore the alpha value was not rendered.
    
    Also set the GTK_WINDOW_TOPLEVEL type on the popup windows so
    the autohide window is not visible in fullscreen applications.

commit 2d84329885b5754122f1a2613be8c4ab9d7925e8
Author: Nick Schermer <nick@xfce.org>
Date:   Sat May 28 12:57:48 2011 +0200

    Add style property to control size of autohide window.

commit 98f1c5f11b3a6d573d96841b65c3f67898e0093e
Author: Nick Schermer <nick@xfce.org>
Date:   Sat May 28 12:52:23 2011 +0200

    Revert "Increase size of the autohide window by 1 in each direction."
    
    This reverts commit 13dc58dac41d744108765a3a754ddf272358714b.
    
    Something else is going on here.

commit d38eef8a21e105807ee0d3fe60167cfd5e368867
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Sat May 28 10:55:35 2011 +0200

    l10n: Updated Italian (it) translation to 100%
    
    New status: 347 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f7c1f3cd5d4078efcb2dffe8800b3314a2ad6618
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Fri May 27 20:52:59 2011 +0200

    l10n: Updated Italian (it) translation to 100%
    
    New status: 347 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 867cb741fd561278590d33b45af87499665a2d49
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Fri May 27 15:03:01 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 347 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6e41b6e30fe03997edce7b26f9ff08d388138267
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Thu May 26 17:52:26 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 347 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 260fae786644750678ab87ce58d356f44b45b088
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Thu May 26 17:38:06 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 347 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 13dc58dac41d744108765a3a754ddf272358714b
Author: Jannis Pohlmann <jannis@xfce.org>
Date:   Thu May 26 02:13:02 2011 +0200

    Increase size of the autohide window by 1 in each direction.
    
    For some reason the autohide window would not pop up if I moved the
    mouse to the very edge of the screen (last pixel in any direction). So
    this commit increases the window size by 1 in each direction
    independently of whether it is located at the top/bottom/right/left of
    the screen.
    
    I wouldn't be surprised if there is a better solution. Nick?

commit 815a2da117235e6e8c1c6524287161cdc3cb1e6c
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Sat May 21 02:01:20 2011 +0200

    l10n: Updated Croatian (hr) translation to 85%
    
    New status: 296 messages complete with 0 fuzzies and 51 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 52c9a45aa3a83e864c5ad5b35bcb9f7ab0487346
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Tue May 17 22:31:22 2011 +0200

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 347 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fa79aec85251c236a3c9167b0d3f0ec33a176713
Author: Piarres Beobide <pi@beobide.net>
Date:   Sun May 15 01:52:06 2011 +0200

    l10n: Updated Basque (eu) translation to 100%
    
    New status: 347 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ceb134c037dc52fafd2fd6ace0a2e3db16ee888a
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Thu May 12 18:05:00 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 347 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8aae09a1c52c2ae429fe51db068b63a34e3182d3
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Wed May 11 18:37:27 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 347 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a15b157d19b08319da465dd3894d4dfdc137fa41
Author: Pjotr Anon <pliniusminor@gmail.com>
Date:   Wed May 11 17:23:34 2011 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 99%
    
    New status: 345 messages complete with 1 fuzzy and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 027603aede87b74519eb23a57ff51604f4dc909d
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Wed May 11 15:03:45 2011 +0200

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 347 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 001db22cde468e6aa7f85e2170f934691548ad51
Author: Chipong Luo <chipong_l@yahoo.com>
Date:   Tue May 10 00:13:56 2011 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 347 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 962c1d7d22d7d17d92a794c85a3519cfa8923ba1
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Mon May 9 17:33:57 2011 +0200

    l10n: Updated Danish (da) translation to 100%
    
    New status: 347 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1c8aeff5b3fa0d29c80d34171b37481662b40b17
Author: Chipong Luo <chipong_l@yahoo.com>
Date:   Mon May 9 06:53:48 2011 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 99%
    
    New status: 346 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e30cc60ed614c73647308c7c3d912927da8d7a93
Author: Nick Schermer <nick@xfce.org>
Date:   Sun May 8 19:49:46 2011 +0200

    Panel: Add option to disable struts in the dialog (bug#7202).

commit be44541780ba7c4fd32cf430e70b5aa3b4d9c328
Author: Yves-Alexis Perez <corsac@debian.org>
Date:   Sat May 7 23:59:39 2011 +0200

    Fix spacing in vertical panel with arrow on the side (bug #7584).

commit 0d7587ec2cb43d6538ecef754460c09ebf16aeb0
Author: Sérgio Cipolla <secipolla@gmail.com>
Date:   Tue Apr 26 21:58:31 2011 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4e27c313d5885c5a918e68d9c20a4fb5e6121705
Author: Sérgio Cipolla <secipolla@gmail.com>
Date:   Tue Apr 26 21:52:57 2011 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0f8f55c3d1bc0a8aef17e840efcadae95af97908
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Apr 25 20:54:25 2011 +0200

    Common: Update online documentation help location.

commit c76299859a51bdb1fa364b012083f8e24b412a3e
Merge: d5cd2a304 8d6be48fd
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date:   Mon Apr 25 10:29:38 2011 +0200

    Merge branch 'master' of ssh://git.xfce.org/git/xfce/xfce4-panel

commit d5cd2a30472568b6ea5527c7edf9aafacf1e4405
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date:   Mon Apr 25 10:29:28 2011 +0200

    Fix typo in function description.

commit 8d6be48fd668039768d40e3ee5ba5e9e7e59f805
Author: Piarres Beobide <pi@beobide.net>
Date:   Mon Apr 25 09:07:33 2011 +0200

    l10n: Updated Basque (eu) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4315e0835ef23a6cc0cd1bce7c864ca98f11af57
Author: Sérgio Cipolla <secipolla@gmail.com>
Date:   Mon Apr 25 03:21:39 2011 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9a341b06c17348d6aae5197d20630ae5791bbe26
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Apr 22 23:05:27 2011 +0200

    Showdesktop: Allow middle-click to shade windows (bug #7177).
    
    This will toggle the window's shade state on the active workspace.
    Seems like an effective way to quickly switch between visible
    windows on the workspace.

commit b84c22ebdd7ad150f6887ea07201c1296ba8b82f
Author: Sérgio Cipolla <secipolla@gmail.com>
Date:   Fri Apr 22 23:03:43 2011 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3b2ee76cf96c15c106ab8ca9a213da859bb53982
Author: Sérgio Cipolla <secipolla@gmail.com>
Date:   Fri Apr 22 18:46:00 2011 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit de78df1078dd433408b9538ee58ea5e023680519
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Apr 22 12:40:44 2011 +0200

    Panel: Cleanup itembar size allocation code.

commit 080db5582e9f522206bf865a19407499e3682d21
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Apr 22 12:01:18 2011 +0200

    Tasklist: Make the plugin shrink instead of expand (bug #7389, #7129).
    
    Not the same as the fixed length option, but it improves the
    tasklist allocation with other plugins. With this the tasklist
    can be aligned with separators.

commit 9703cf78e25e0641b8ea1307b77e639279f55718
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Apr 22 11:48:23 2011 +0200

    Panel: Implement shrink plugin size allocation.

commit 173fc38553940f4c6807aa5d7a2823882fe780e1
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Apr 22 11:47:04 2011 +0200

    Libxfce4panel: Add new API to allow plugins to shrink.
    
    This is an alternative to expanding plugins, if there is not
    enough room on the panel, shrink plugins who can.

commit 85268551b1358c3d4412f4699c2e35f494d8b222
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Apr 22 10:34:52 2011 +0200

    Applicationmenu: Support XDG_CURRENT_DESKTOP (bug #7444).
    
    Not really a spec, but a nice addition for people to use
    the Xfce Panel in other desktop's. You can show all menu
    applications with XDG_CURRENT_DESKTOP="" or for example
    every Gnome app with XDG_CURRENT_DESKTOP="GNOME". If the
    value is unset, it defaults to XFCE.

commit a8a298adf45940a3f1c1da081be4264f799fb3c1
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Apr 21 19:40:00 2011 +0200

    Migrate: Add support for auto-migrate default setup (bug #7478).
    
    If XFCE_PANEL_MIGRATE_DEFAULT is defined in the environment
    and no old 4.6 config is found; the panel will skip the
    migration dialog and try to migrate the default setup.
    
    Also skip the dialog if neither an old or default config is found.

commit c5c07ae841726a46008ff34c09ad86e91f27913d
Author: Sérgio Cipolla <secipolla@gmail.com>
Date:   Thu Apr 21 18:00:12 2011 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3603b4f159e3b2ef8f9c31efd8eb5bd3e895991f
Author: Yves-Alexis Perez <corsac@debian.org>
Date:   Thu Apr 21 16:50:16 2011 +0200

    Migrate: Fix 4.6 transparency migration (bug #7523).

commit b35df1d313cc593f5b1acb63670bc6e9a9d4802a
Author: Sérgio Cipolla <secipolla@gmail.com>
Date:   Thu Apr 21 16:17:37 2011 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b3cf01c88a1eb9865bf5c2b8f2e419603f9a46d1
Author: Sérgio Cipolla <secipolla@gmail.com>
Date:   Thu Apr 21 13:56:14 2011 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e2d028348862ed91c2aa22495d79ef479b46101d
Author: Sérgio Cipolla <secipolla@gmail.com>
Date:   Thu Apr 21 01:59:14 2011 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 072010ed80fb21bb9ad03830d1f2c6fd47d347b6
Author: Sérgio Cipolla <secipolla@gmail.com>
Date:   Thu Apr 21 00:41:55 2011 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c73ee1552f05be85a636d5f3b330425c97292aec
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Apr 16 18:48:50 2011 +0200

    Panel: Fix panel loading in kiosk mode.

commit 64243bb8388429a284bf74653fa1f2f1c1f03d70
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Apr 16 14:06:35 2011 +0200

    Systray: Fix disappearing icons when drawing at 0,0 (bug #7057).

commit e75f14db701b284516d3a995b9eb0a19dced1b08
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Apr 16 11:55:46 2011 +0200

    Panel: Make the item window a normal window (bug #7492).
    
    Don't make the window modal, which comes with dialogs, but
    act like a normal window.

commit 3fb2ce0cb430a12c95f43055ec142e21ecac54f5
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Apr 6 19:00:44 2011 +0200

    Tasklist: Work around segfaulting of group buttons.
    
    Some counting goes wrong. This is not a definitive fix, but it
    prevents the crashes when the tasklist runs in group-button mode.

commit fb48ad974dfca6a2bc00abf4d065b39b12828be6
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Mar 31 16:14:31 2011 +0200

    Tasklist: Properly initialize the monitor geometry on startup (bug #7340).
    
    The geometry was not loaded from the correct screen and when the panel was
    moved to another screen, so idle (to give the plugin time to move to
    the correct screen) the geometry load during login.

commit e9e68f51386ef6dd063b922437db79a1bde69546
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 27 14:10:08 2011 +0200

    Use portable abicheck.sh from xfconf.

commit 8af0d7e284670e24da47d8f1e96e5f35a7e445d8
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 27 12:17:21 2011 +0200

    Panel: Avoid recursing gtk_main_quit() on signal.

commit 9081940f4049d9884a6af417f471240922a125cf
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 27 12:05:02 2011 +0200

    Tasklist: Hide wireframe when window is destroyed (bug #7377).

commit c7707fa076c720d3157f0eb052fb6421f32d01f1
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 27 11:43:43 2011 +0200

    Stop using gdk_spawn functions.
    
    They will be removed in Gtk3 and it is easy to work
    around them with the 4ui function.

commit ee39a027284070a467961439a5862509171828d9
Author: Sean Middleditch <sean@middleditch.us>
Date:   Sun Mar 27 11:29:00 2011 +0200

    Directorymenu: Remove unused varaible.

commit 093eeba9369baf653bd1da0d48c63eff1c4cef86
Author: Sean Middleditch <sean@middleditch.us>
Date:   Sun Mar 27 11:26:21 2011 +0200

    Libxfce4panel: Draw panel images with cairo.

commit f5b40d91f163d84b4a6d28adee7810433269cd78
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 27 11:22:52 2011 +0200

    Bump manual revision.

commit 81102a9fb954d95935f3a5461503bfcc051b1822
Author: Sean Middleditch <sean@middleditch.us>
Date:   Fri Mar 4 20:00:52 2011 -0800

    Pager: Fix typo in row warning.

commit 072a4a367473a2cd43721138dd358eb411d7ee96
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Thu Mar 24 22:42:24 2011 +0100

    l10n: Updated Polish (pl) translation to 92%
    
    New status: 320 messages complete with 3 fuzzies and 22 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fe468e53d1ec5b9733107b4352c494e4637715ff
Author: Christoph Wickert <christoph.wickert@googlemail.com>
Date:   Sat Mar 19 16:19:26 2011 +0100

    l10n: Updated German (de) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1646e2235045428f36277a6394f232138b5a2114
Author: Harald Servat <redcrash@gmail.com>
Date:   Tue Mar 15 13:01:42 2011 +0100

    l10n: Updated Catalan (Valencian) (ca) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0d50e1abebf87db8494545d31accd8d3fcdde8ed
Author: Server Acim <serveracim@gmail.com>
Date:   Sun Mar 13 19:19:02 2011 +0100

    l10n: Updated Turkish (tr) translation to 31%
    
    New status: 107 messages complete with 108 fuzzies and 130 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3f0e31544377e31b0cee78e24e3a139711b7eda2
Author: 微 尘 <yjwork.xfce@gmail.com>
Date:   Sun Mar 13 06:37:12 2011 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 431d5269c43a052ca5eb2e9a3a0fb934b36a5a71
Author: Gonzalo Lagos <xalo.em@gmail.com>
Date:   Fri Mar 11 00:23:51 2011 +0100

    l10n: Updated Spanish (Castilian) (es) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit adb703fb70e7e88af56f99bfe3c1135205f26c1e
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Mar 7 18:44:52 2011 +0100

    Fix function prototype.

commit 346aa07234528438c7b20e4e7b3d2212a121992a
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Mar 7 18:18:00 2011 +0100

    Do no inline function.

commit 481db50db59609f4d835e02c09b2750d1fbbe016
Author: Christoph Wickert <christoph.wickert@googlemail.com>
Date:   Mon Feb 28 19:01:22 2011 +0100

    l10n: Updated German (de) translation to 99%
    
    New status: 344 messages complete with 0 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a55e08ed9c4d0dd8bb3c001d92d5dba5d2d4e37a
Author: Dmitrij Smirnov <arch@cnc-parts.info>
Date:   Sun Feb 27 23:24:53 2011 +0100

    l10n: Updated Russian (ru) translation to 98%
    
    New status: 341 messages complete with 0 fuzzies and 4 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6fc16c3ac3da1b2b05007d650948e2d04c486ef3
Author: Dmitrij Smirnov <arch@cnc-parts.info>
Date:   Sun Feb 27 23:21:05 2011 +0100

    l10n: Updated Russian (ru) translation to 96%
    
    New status: 332 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2d75b897d39a8acb80bcd2091ee4642854f89363
Author: Dmitrij Smirnov <arch@cnc-parts.info>
Date:   Sun Feb 27 23:19:38 2011 +0100

    l10n: Updated Russian (ru) translation to 96%
    
    New status: 332 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1694b19f01fea9c5fde88e9682da9a65788d3f81
Author: Dmitrij Smirnov <arch@cnc-parts.info>
Date:   Sun Feb 27 23:18:39 2011 +0100

    l10n: Updated Russian (ru) translation to 96%
    
    New status: 332 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5dc8e034e0e9bb32f06345c2e6c1b68c64ac52b1
Author: Dmitrij Smirnov <arch@cnc-parts.info>
Date:   Sun Feb 27 23:15:56 2011 +0100

    l10n: Updated Russian (ru) translation to 96%
    
    New status: 332 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9c22700d2dab3ff57342c1cef31c2ea79969bcac
Author: Dmitrij Smirnov <arch@cnc-parts.info>
Date:   Sun Feb 27 22:59:32 2011 +0100

    l10n: Updated Russian (ru) translation to 96%
    
    New status: 332 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8bb6d5f273053bc75d3a17cfdae26f7798e714d6
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Feb 27 22:25:14 2011 +0100

    Tasklist: add button release event to proxy item (bug #7362).

commit a0510446da6550c879de1a0dd828674804aaa5e0
Author: Dmitrij Smirnov <arch@cnc-parts.info>
Date:   Sun Feb 27 17:01:42 2011 +0100

    l10n: Updated Russian (ru) translation to 95%
    
    New status: 329 messages complete with 3 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 237abd387957131861f8a01d2326b995d13f1474
Author: Dmitrij Smirnov <arch@cnc-parts.info>
Date:   Sun Feb 27 16:44:54 2011 +0100

    l10n: Updated Russian (ru) translation to 95%
    
    New status: 328 messages complete with 3 fuzzies and 14 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0e50396eb01bb320089d0bf8d321a3fed1920f2b
Author: Dmitrij Smirnov <arch@cnc-parts.info>
Date:   Thu Feb 24 13:24:33 2011 +0100

    l10n: Updated Russian (ru) translation to 95%
    
    New status: 328 messages complete with 3 fuzzies and 14 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7db2f212d4b8ccf46f8d484dfa850914e37c327b
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Feb 22 23:28:11 2011 +0100

    Allow one zero value in the tasklist button event.

commit 896733159ad8731cbac973971c58977116b758e1
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Feb 20 11:28:47 2011 +0100

    Fix another typo in a0c69aa.

commit 27148e65bf7d77bd888cd7c8d09e0faeb50fa9eb
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Sun Feb 20 11:01:20 2011 +0100

    l10n: Updated Polish (pl) translation to 92%
    
    New status: 320 messages complete with 3 fuzzies and 22 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4b2c3cc8411fd0e989e0395ca458f16952f46686
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 19 20:25:30 2011 +0100

    Use the widget snapshot as tasklist draw icon.

commit 7f74a499802c9d54d3ab87d1fd363bb3d00706bc
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 19 19:03:52 2011 +0100

    Fix commit a0c69aa.

commit cec9059b9568a007535db3688fb7f488003767ba
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 19 17:43:21 2011 +0100

    Bump version in master to 4.9.0.

commit aa928ba50e9e7a7387b7bf14a4bfda3ce1735d58
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 19 17:39:57 2011 +0100

    Keep reference on window to avoid crash (bug #7193).

commit a0c69aa93bcaa82790a8aa3c1b6c7b9285a4fe08
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 19 17:00:08 2011 +0100

    Activate windows on button release events (bug #7296).

commit c73fec644730c078bee2e0893839fb89ba89c7a6
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 19 16:16:12 2011 +0100

    Don't activate windows in tasklist when dnd a button or plugin.

commit 7bd1028804d7f5ffa7dc7994d7104a02375a0bc2
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 19 15:45:08 2011 +0100

    Don't crash on a wrong colormap when changing screens.

commit 2303c7b94aac05d53f8b3f5f23fcbf8808a0d129
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 19 15:42:58 2011 +0100

    Respawn a child if the widget was realized with a pid.
    
    In some cases the plugin is unrealized, for example when
    moving the panel to another screen. In this case there is still
    a pid when realizing, while the process was asked to quit in
    unrealize. In this case wait for the pid to quit and then
    respawn the plugin again.

commit 0a5af2398d47c46f473cb97dbc102b1d4323e715
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 19 15:41:33 2011 +0100

    Rename plugin property change functions.

commit 8f1f6d76103cdc1235e5620bcfb28ca30caf84a3
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 19 13:57:31 2011 +0100

    Ask to start the panel if 'xfce4-panel -r' is called without instance.

commit 23da405af99391a765dedb54445008460d03894e
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Sat Feb 19 16:46:03 2011 +0100

    l10n: Updated Polish (pl) translation to 92%
    
    New status: 319 messages complete with 4 fuzzies and 22 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e1aa36e3cabb3e22d1727d4c335a9115b6bf56b9
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Mon Feb 14 21:05:12 2011 +0100

    l10n: Updated Italian (it) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 167880f69199e38756b2260dc5f8c5c46bb5f7c0
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Feb 13 14:38:53 2011 +0100

    Print colormap debugging with PANEL_DEBUG=display-layout.

commit 8de36e48d69c9ba7c4b99f10624e498494910afa
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Feb 13 14:16:05 2011 +0100

    Set a static role for the panels.

commit 9b2b3c1463f46d6fa8e555f9a558f957f5f266e0
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Feb 13 14:14:22 2011 +0100

    Revert "Set and restore a unique role name for windows (bug #7094)."
    
    This reverts commit 4a3230b22f6cec2549b3ee2ee696b5d8a65ba155.
    
    Conflicts:
    
            panel/panel-window.c

commit 1542be0dc85034ecf93f311851e6ace165705700
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Feb 13 12:06:40 2011 +0100

    Fix helper locations.

commit a0530d515bee64b2c1014093aecdcd0a5f26d323
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 12 20:34:37 2011 +0100

    Small comment fixes.

commit 24bb3344e8e57e1772ae1e580f34305fe7c5520a
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 12 20:15:54 2011 +0100

    Update old FSF addresses.

commit d1f6839cef7b601445da981de6f7c28f9dbda6e3
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 12 19:52:14 2011 +0100

    Bump manual revision.

commit eb652080222e4a6184b60efb9f6a2cb9edca906c
Author: Guido Berhoerster <gber@opensuse.org>
Date:   Sat Feb 12 17:29:49 2011 +0100

    Allow installation of the helpers in a custom location.

commit e632fe399491128e85b3b68d83e8e56ed28ad60e
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Feb 9 18:52:11 2011 +0100

    Cleanup atk set function handling a bit.

commit e020399f0484e03dabca0a0409bc3a1d26a8ba69
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Sat Feb 12 08:02:41 2011 +0100

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1feaeaf42747a423b8d445caea1499ec752e3df8
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Fri Feb 11 23:01:24 2011 +0100

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 91b2656b30d6ded9fef919dc194f105081e3d41c
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Fri Feb 11 15:21:45 2011 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c14f54089433ede2d500e569d9821fcd0b25e1e0
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Wed Feb 9 12:45:06 2011 +0100

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 484b63b8a486a015af8638dea92f7b6bbb952a63
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Tue Feb 8 19:50:23 2011 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6ade6385d1b672c86254cefbef5bf5780a6dffc4
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Feb 8 17:55:23 2011 +0100

    Set some atk object names on widgets.

commit b625c6b66b82d1830f7d4c12a81f7087f3266ae6
Author: Pim Vullers <pim@vullersmail.nl>
Date:   Tue Feb 8 17:53:41 2011 +0100

    Initialize viewport if screen is connected (bug #7255).
    
    Because the viewport was not properly initialized, the
    'Show windows from all monitors' setting was not working
    when the panel started.

commit 8a26911ce913321e9d72afc8e2d17c9fc58e836f
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Feb 3 17:35:21 2011 +0100

    Change packing order of buttons in pager to match wnck.

commit d86f28de66a2a34f443d3cafe65002f38ae0a202
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Tue Feb 1 21:50:52 2011 +0100

    l10n: Updated Hebrew (he) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 18dfe9ebea582a3bfbe2ae227705dd97ef07305f
Author: Daniel Nylander <po@danielnylander.se>
Date:   Tue Feb 1 15:01:17 2011 +0100

    l10n: Updated Swedish (sv) translation to 83%
    
    New status: 288 messages complete with 12 fuzzies and 44 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f6cb6ddd6b9c2a5271c90a5ba381b65cc3d6889e
Author: Hezy Amiel <open@hezyamiel.com>
Date:   Tue Feb 1 02:15:47 2011 +0100

    l10n: Updated Hebrew (he) translation to 91%
    
    New status: 314 messages complete with 16 fuzzies and 14 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ffb8c175e9795d0d25d0ce38d8f513285c26e46f
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jan 29 21:12:19 2011 +0100

    Unset visible event window in 4.6 plugins.
    
    A lot 4.6 plugins have an event window as plugin child,
    but most of them do not disable the visible event window,
    resulting in an ugly looking plugin with composited panels.
    
    So detect if the plugin has an event window as child and
    hide the visible window.
    
    For this change, plugins need to recompile.

commit 32bc2ef58f0f78d6da4fc498825008f4eba6d9f2
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jan 29 20:40:43 2011 +0100

    Properly update the plugin background when moving to other panel.
    
    The background alpha was not send when the other panel was opaque,
    leaving a transparent item in opaque panel.
    The background was also not unset, so for example the image or
    color was not unset.

commit 16ca0888abb9e92ed8a38d1e53128da01c712c4f
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jan 29 18:18:37 2011 +0100

    Don't disappear when wm restarts with compositing (bug #7194).
    
    Because of a quick widget hide/show to make sure the
    window was redrawn, the window became invisible when quickly
    restarting the wm. Remove this unneeded trick.
    
    Also cleanup the colormap handling, we now only set the rgba
    colormap in the init function, since it depends on the screen
    and won't change during runtime, this makes things a lot easier.

commit f76161d04c3d5e70abb3daf0b4295ed6f219da00
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jan 29 18:08:02 2011 +0100

    Remove unneeded check (bug #7149).

commit e3a4cde2b689f7d0bc7abef0024562a78ac9cbaf
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Jan 24 20:14:55 2011 +0100

    Improve window debug messages.

commit 23fa1aee1651f36c435c4867f09a718948d5c8fe
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 22:26:29 2011 +0100

    Don't double expose the panel's child widget (bug #6872).
    
    We chain the expose event to GtkWindow wich on his turn exposes
    the container child in GtkContainer. Because we draw (alpha background
    and background color) on the window, the child needs to be exposed after
    this, so drop the first expose event and only expose the child
    in PanelWindow.

commit f3063104180157e7dd029faeccb513ba34c737a4
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 20:37:24 2011 +0100

    Deactivate menu button if loading menu failed.

commit 15a5fa2fb459aa175e4b6f98e341bdff0395eccd
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 20:21:52 2011 +0100

    Fix autohide direction based on orientation and edge.
    
    When the panel is horizontal and snapped to the left or right
    border (not in a corner) is should hide sideways. Same when
    a vertical panel is snapped to the top or bottom of the screen.

commit 5f703756fce60eb42396d6e6870abb82172d7e2f
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 18:27:57 2011 +0100

    Show launcher add dialog on the same screen as parent.

commit 15e3162d25c26555e23c533848c8c19c50de1bb5
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 18:25:27 2011 +0100

    Sync hidden window and panel screen.

commit 4c61574cca5b01984e25c24ab21c8dab9cce7276
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 18:18:00 2011 +0100

    Open plugin dialogs on same screen as plugin.

commit c3eac787dc0b962ebde6bf92e304a5e53418082f
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 18:03:58 2011 +0100

    Fix dragging a window to another screen.
    
    Only downside it that we have to abort the drag, because the
    button is event is gone too.

commit 5d81fb2945bc05e02e413f7f4cbdd39c11cf7133
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 17:33:36 2011 +0100

    Remove screen var from panel_application_plugin_insert.
    
    We can get it from the window when we need it.

commit f411e79df2f9255924cd85ff47ad21c1a354cb46
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 17:29:29 2011 +0100

    Move the panel menu to the correct screen.

commit 87f60627fdc292007041ee3833ae3c324ab2b1f4
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 17:27:17 2011 +0100

    Directly start the panel on the correct screen (bug #7161).
    
    The panel sometimes never made it to the correct screen and
    it could even crash on startup, so don't try on the binding
    to position the screen, but pass it along when creating the
    panel window.

commit 83eed7240c8cb8b4afbc813141b5337fbd3390c5
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 16:20:58 2011 +0100

    Remove too new Gtk+ functions.

commit 25f101ce32aaf8eefb06b79bf841ee74375f7d7d
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 14:53:02 2011 +0100

    Popup window menu under cursor when on a popup menu.

commit db9f6f5416ada71b070e73347d839aecba925ef0
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 13:39:11 2011 +0100

    Again allocate 1x1 requests offscreen in the systray (bug #7143 and #7057).
    
    But with 1 difference; it seems some implementations wait
    (like nm-applet) on the size-changed signal. Although this
    is a stupid trick, we can easily work around it by allocating
    a normal size offscreen; this will trigger the signal and a new
    allocation on the tray when the app completed the status icon
    setup.
    
    For dead tray icons that are still in the panel, the 1x1 hack
    will continue to work since they have no window.

commit 49bc149b475fc5ba6e6e7224437d7b9f0b712337
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 13:07:32 2011 +0100

    Don't return a critical on a NULL dbus session.
    
    This way the users gets a normal warning, instead of an abort
    when debugging is enabled.

commit 4a3230b22f6cec2549b3ee2ee696b5d8a65ba155
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 12:55:59 2011 +0100

    Set and restore a unique role name for windows (bug #7094).
    
    This way each panel window can be identified by window managers
    and other tools.

commit 39c02586f4ceefc99c83afdafd15aae0802c847f
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 12:46:23 2011 +0100

    Reverse menu item insert order (bug #7102).
    
    The insert order was reversed in 4.8, compared to 4.6.

commit cfad253bd5d09e0fc1e5493e3e621120c9250b9d
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 23 12:41:39 2011 +0100

    Cache launcher menu tooltip pixbuf (bug #7146).
    
    Because the query-tooltip query in Gtk is not implemented correctly
    (although the gtk docs say otherwise), see https://bugzilla.gnome.org/show_bug.cgi?id=516130
    we cache the pixbuf, so setting the tooltip will be faster.

commit 09922fc9951c107d915297d3d3874d2293d9cbf4
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jan 22 18:01:32 2011 +0100

    Improve systray debugging messages.
    
    Add the pointer location to the icon name, so it is easier
    to spot 2 different icons with the same name.

commit ccf4636bb379b8a0d49032fd032b3b29dd1e7528
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jan 22 13:13:59 2011 +0100

    Move some systray code around without functionality changes.
    
    - Remove from socket hashtable before telling others the
      icon will be removed, this to make sure the window
      still exists.
    - Move composited detection to socket init, no need to do this
      during realize, since we restart the tray on compositing
      changes anyway.

commit 2a004cc07a36f9a738b04ff3ca03730f8900e13e
Author: Masato Hashimoto <hashimo@xfce.org>
Date:   Sat Jan 22 15:13:49 2011 +0100

    l10n: Updated Japanese (ja) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6485131ab512ab133c9a97411ba83e4ff16aa792
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Jan 20 11:09:06 2011 +0100

    Migrate monitor information (bug #7135).

commit 8b0c024c435b2cab825ceb2661e2589145e3b5ee
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jan 18 13:10:03 2011 +0100

    Fix assert when storing property values in xfconf (bug #7117).

commit e43a35fe1422572a300c7c06e3867a913605ea30
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jan 18 11:31:52 2011 +0100

    Make the panels sticky for some window managers (bug #7130).

commit 95b0153375a3e898adb369d3f266135cb90cc982
Author: Daniel Nylander <po@danielnylander.se>
Date:   Mon Jan 17 03:20:04 2011 +0100

    l10n: Updated Swedish (sv) translation to 82%
    
    New status: 285 messages complete with 14 fuzzies and 45 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 968f45acef5c00cd1c8885e52fba97b17c4d925a
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 16 17:08:32 2011 +0100

    Post release tag bump.

commit e10cd4d243b5b6b4db71850959cd76c1987e2e7c
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 16 17:02:30 2011 +0100

    Updates for release.

commit 35f0651e31de714b1fdc5fedb539db4d8f567d81
Author: Mike Massonnet <mmassonnet@gmail.com>
Date:   Sun Jan 16 12:48:09 2011 +0100

    l10n: Updated French (fr) translation to 97%
    
    New status: 335 messages complete with 5 fuzzies and 4 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 710c3602027813354dc9034f0153f60307d8cebe
Author: Mike Massonnet <mmassonnet@gmail.com>
Date:   Sun Jan 16 12:37:04 2011 +0100

    l10n: Updated French (fr) translation to 97%
    
    New status: 335 messages complete with 5 fuzzies and 4 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 309fadadaa9e94dd81eedf48179b1c8cc5345d01
Author: Mike Massonnet <mmassonnet@gmail.com>
Date:   Sun Jan 16 12:30:59 2011 +0100

    l10n: Updated French (fr) translation to 97%
    
    New status: 334 messages complete with 5 fuzzies and 5 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f26ddc5c6078c85b126cb61e802a3ad531309556
Author: Mike Massonnet <mmassonnet@gmail.com>
Date:   Sun Jan 16 10:26:38 2011 +0100

    l10n: Updated French (fr) translation to 50%
    
    New status: 175 messages complete with 94 fuzzies and 75 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ff4055fcf52ae9dd8581a5324dd61f19ccb1fd69
Author: Mișu Moldovan <dumol@xfce.org>
Date:   Sun Jan 16 00:36:58 2011 +0100

    l10n: Updated Romanian (ro) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8059e4259cb1073e184b9a06bbd6a3e975416d80
Author: Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>
Date:   Sat Jan 15 22:37:35 2011 +0100

    l10n: Updated German (de) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a9171e97b9b97384369e2f2e9807b251135be42c
Author: كريم أولاد الشلحة <herr.linux88@gmail.com>
Date:   Sat Jan 15 21:05:33 2011 +0100

    l10n: Updated Arabic (ar) translation to 9%
    
    New status: 31 messages complete with 235 fuzzies and 74 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d3825438485a79d4d43fbb7b7f0f1cacae59aea9
Author: Ričardas Vasiulis <ricardas.v@inbox.lt>
Date:   Sat Jan 15 14:42:57 2011 +0100

    l10n: Updated Lithuanian (lt) translation to 34%
    
    New status: 117 messages complete with 97 fuzzies and 130 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 861e951bd13992f0e0c11a5b023209bfcb797540
Author: Ričardas Vasiulis <ricardas.v@inbox.lt>
Date:   Sat Jan 15 13:18:46 2011 +0100

    l10n: Updated Lithuanian (lt) translation to 27%
    
    New status: 93 messages complete with 101 fuzzies and 150 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d5e1b2d72f7a2509ba0cbb39f6b92433a57d7ac6
Author: Dmitrij Smirnov <arch@cnc-parts.info>
Date:   Fri Jan 14 18:16:46 2011 +0100

    l10n: Updated Russian (ru) translation to 93%
    
    New status: 322 messages complete with 9 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e303d47a044f6bdb1a82862f5d1df8e50438a251
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Fri Jan 14 14:00:18 2011 +0100

    l10n: Updated Croatian (hr) translation to 82%
    
    New status: 285 messages complete with 0 fuzzies and 59 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8b2ab70b37f88f58e99c2309d5cce34bb832e75b
Author: Nuno Miguel <nunis@netcabo.pt>
Date:   Fri Jan 14 00:57:24 2011 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 220663695a59a219a197df2375451e6849962e46
Author: Mișu Moldovan <dumol@xfce.org>
Date:   Wed Jan 12 23:06:27 2011 +0100

    l10n: Updated Romanian (ro) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 21420bc27a72f1d41ed8105cd94d1858abd5a352
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jan 11 15:41:04 2011 +0100

    Make previous commit easier on the eyes.

commit 90d3a522e74dc039e5952ea911a06495a32f5b7e
Author: Olivier Fourdan <fourdan@xfce.org>
Date:   Tue Jan 11 15:22:47 2011 +0100

    Fix tasklist craches on window unamp (bug #7076).
    
    The code compared NULL in strcasecmp and thus crashed.

commit 7a34f66f0b89ba4bc82afe11387336fb2ac2cd52
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Tue Jan 11 11:24:13 2011 +0100

    l10n: Updated Croatian (hr) translation to 81%
    
    New status: 282 messages complete with 0 fuzzies and 62 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit cad0fac14f1678c0d2490b7871092c97107151aa
Author: Ričardas Vasiulis <ricardas.v@inbox.lt>
Date:   Mon Jan 10 21:09:02 2011 +0100

    l10n: Updated Lithuanian (lt) translation to 10%
    
    New status: 35 messages complete with 94 fuzzies and 215 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1a07277479108e051fda28d2b2f44d79a4d9caa9
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sat Jan 8 16:41:35 2011 +0100

    l10n: Updated Swedish (sv) translation to 76%
    
    New status: 262 messages complete with 27 fuzzies and 55 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 10e2ab185a5b4eca35ba4f8b650ecfdb5324ba7a
Author: Spiros Georgaras <sng@hellug.gr>
Date:   Fri Jan 7 17:02:51 2011 +0100

    l10n: Updated Greek (el) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6bfcb541b62b7a51bfc6775be909d477efdd15ca
Author: Spiros Georgaras <sng@hellug.gr>
Date:   Fri Jan 7 16:29:49 2011 +0100

    l10n: Updated Greek (el) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 17265c43528bdd80d76cbe6ea4a94af080a68840
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Fri Jan 7 09:24:32 2011 +0100

    l10n: Updated Croatian (hr) translation to 79%
    
    New status: 272 messages complete with 0 fuzzies and 72 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit bef973edc48ce2b4d2a2c84bb4aa1104b23659cf
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Jan 6 22:09:27 2011 +0100

    Sort debugging keys and fix PANEL_DEBUG=all.

commit 2caf8648c6519b67a5380d87380009d727332270
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Jan 6 20:47:22 2011 +0100

    Add some more module debug information.

commit d2a239054f3b1eba1c87197b47ce13ee91bbf27d
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Jan 6 20:27:12 2011 +0100

    Move gdb/valgrind debug messages to main.

commit 3a10aa15c92404cb688d76e417b6ae847e35a886
Author: Stavros Giannouris <stavrosg@gmail.com>
Date:   Thu Jan 6 16:33:43 2011 +0100

    l10n: Updated Greek (el) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 646ded5f1c3f7fafedb8183158f11a9dad374fad
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Wed Jan 5 08:58:26 2011 +0100

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 43a9ee405dd4c5a0abcdb0d18400b8bc65fbb390
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jan 4 22:07:53 2011 +0100

    Add debug info about created items.

commit 1d17c4d20ae31426787621746008dce9179ea6f6
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jan 4 21:58:12 2011 +0100

    Add debugging info to systray.

commit b6d6a0d34144906a8f77d7596eba28efb12bea43
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jan 4 21:47:21 2011 +0100

    Only inform user about gdb/valgrind in main.

commit cad0a5c268ca9f6051ec0b33445e7f05b97f7ce8
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jan 4 20:05:16 2011 +0100

    Fix typo in applicationSmenu debugging.

commit 98795060c0edbf9e0bf066e3b65ca0fb4fea1c89
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jan 4 20:03:12 2011 +0100

    Don't export the debug variable use function.

commit b001378a46dde10bc405e34f755fba5c067168cf
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jan 4 19:56:05 2011 +0100

    Add panel_debug_filtered.
    
    New function to debugging output that might be a bit
    too much for normal debugging, so it is only shown
    along with the other debuggin output if PANEL_DEBUG
    contains the name of the key.

commit df0deff57e9a27cb30522fe0bb5b4834e10b6ab2
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jan 4 19:45:25 2011 +0100

    Prepare for filtered debugging.

commit 6a2b1033cffb2ff7bc9a13445b437afab5cd15a4
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jan 4 18:21:54 2011 +0100

    Restart systray manager on compositing changes.

commit edcb230dc138feae2e99899ca28b96878174db33
Author: Stavros Giannouris <stavrosg@gmail.com>
Date:   Mon Jan 3 19:49:11 2011 +0100

    l10n: Updated Greek (el) translation to 99%
    
    New status: 341 messages complete with 2 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 04a32d644037116c25b03a7aefd45ed1178de5d8
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Mon Jan 3 18:15:09 2011 +0100

    l10n: Updated Polish (pl) translation to 90%
    
    New status: 310 messages complete with 8 fuzzies and 26 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7659c5bf972ba6b1671f380342c77d8f454b04d4
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Jan 3 18:04:39 2011 +0100

    Restart tray allocation if number of rows overflows (bug #7055).

commit dd56e06c5e3068821bf286937bb8752d70c6d018
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Mon Jan 3 12:28:02 2011 +0100

    l10n: Updated Croatian (hr) translation to 78%
    
    New status: 270 messages complete with 1 fuzzy and 73 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 763c9b6d23e883ea633c1efb8e62b45f27ce714d
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Jan 3 09:39:07 2011 +0100

    l10n: Updated Hungarian (hu) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e06ea9e77756a104489569850a0f769dfb4b98ae
Author: Harald Servat <redcrash@gmail.com>
Date:   Sun Jan 2 20:24:31 2011 +0100

    l10n: Updated Catalan (Valencian) (ca) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 755d98a9ee9bffe72ddbfdf32c4ee6b8b0cd2dd5
Author: Terje Uriansrud <terje@uriansrud.net>
Date:   Sun Jan 2 19:33:32 2011 +0100

    l10n: Updated Norwegian Bokmal (nb) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 11cff62914584dc184f4df471422bd31f1044b58
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 2 15:06:16 2011 +0100

    Post release tag bump.

commit aeb61ed3ca5ada1952f57bb16890a2d8ee4a4f34
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jan 2 15:01:58 2011 +0100

    Updates for release.

commit 1273381f3ff8794ecaf84f2f91d5468354c83d22
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jan 1 19:36:07 2011 +0100

    Bump copyrights to 2011.

commit 5c6a9e2dd53df032a32e2eb07a4c2a3faed1531f
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Sat Jan 1 13:37:01 2011 +0100

    l10n: Updated Czech (cs) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ead61e7928802fee300e9167cb691ae96ab42e4f
Author: Nuno Miguel <nunis@netcabo.pt>
Date:   Fri Dec 31 01:00:04 2010 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d915c7bf95d4a7209ccda0f96e3e1864ff550956
Author: Piotr Sokół <psokol@jabster.pl>
Date:   Thu Dec 30 12:00:10 2010 +0100

    l10n: Updated Polish (pl) translation to 85%
    
    New status: 295 messages complete with 18 fuzzies and 31 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c37dd162bd3b506c1683c5c6d47c8e0abb34a71e
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Dec 29 20:31:51 2010 +0100

    Whoops, previous commit should be FALSE.

commit 0f3bf94db53801d180c90315c9ab2668c507130d
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Dec 29 20:24:02 2010 +0100

    1x1 invisible icons doesn't seem to be true (bug #7044).

commit a2c54611351de29a203ecc8d2ce86f4e807ab2a0
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Dec 29 19:52:41 2010 +0100

    Bump submodule version.

commit 505c2f8ffe5d0eff6ccb1353cfaee3c0e8452796
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Wed Dec 29 19:05:19 2010 +0100

    l10n: Updated Italian (it) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7dd76e28d1e33f6353b2e4f36d7dc1ace927af64
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Wed Dec 29 16:58:44 2010 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7c7b15fdddcd976cb2966e3740266a6ef481f3c7
Author: Masato Hashimoto <hashimo@xfce.org>
Date:   Wed Dec 29 10:59:03 2010 +0100

    l10n: Updated Japanese (ja) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e7427628c1af3f2343cb5377e9ac20d3da537919
Author: Dmitry Nikitin <luckas_fb@mail.ru>
Date:   Wed Dec 29 08:57:40 2010 +0100

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b7b2e938fbb4926a0a01117dcd0e8318aa54b6b0
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Wed Dec 29 04:45:15 2010 +0100

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f6fd4ec8f040d21e61adf3390398a02fadc0ad57
Author: Aleksandr Ponomarenko <davian818@gmail.com>
Date:   Wed Dec 29 02:44:51 2010 +0100

    l10n: Updated Russian (ru) translation to 95%
    
    New status: 330 messages complete with 1 fuzzy and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9829095db91e780e0956428bd0419bb5bb38f1cc
Author: Jeff Bailes <thepizzaking@gmail.com>
Date:   Wed Dec 29 00:15:40 2010 +0100

    l10n: Updated English (United Kingdom) (en_GB) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3c1f6fb9867291d946c16b922305bf1dbd67e33c
Author: Jeff Bailes <thepizzaking@gmail.com>
Date:   Wed Dec 29 00:15:05 2010 +0100

    l10n: Updated English (United Kingdom) (en_GB) translation to 99%
    
    New status: 343 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d802a5bfa4bde5204cdc455c1aa706e0d5c58fe0
Author: Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>
Date:   Tue Dec 28 22:33:32 2010 +0100

    l10n: Updated German (de) translation to 99%
    
    New status: 342 messages complete with 2 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a2b5a93be6807a3182655f587fe7bb317c98cd3c
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 28 21:43:42 2010 +0100

    Block grabs from outside the panel.
    
    The panel was unhiding when starting a grab in a dialog
    that was part of the panel process; for example a dnd or
    scroll in the launcher dialogs.
    Prevent this by checking if the pointer is shading the panel.

commit f044801982f197ab58a2c016949bb13aec39e0c6
Author: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
Date:   Tue Dec 28 21:25:23 2010 +0100

    l10n: Updated Finnish (fi) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 74f14deba1a726d0fe42d16eb872ceacbbfd4ea5
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Tue Dec 28 21:20:41 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 38c03b442353041f6d8c1aaec89625caf108eec0
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 28 20:29:43 2010 +0100

    Drop some unused systray code.

commit ad5a85c8e1e89bf8178575ff35a485c43832cc81
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Dec 27 20:28:49 2010 +0100

    Redo icon positioning (bug #5565, #9650 and more).
    
    Fix a string break to set the maximum icon size, instead of
    the number of rows (bug #5565). This makes allocation easier
    and better to understand for users.
    
    Then some new allocation code, this should fix a whole pile
    of bugs: #4871, #5200, #6892, #6950, #6984, #7001 and #7017.
    
    Also non-squared icons are now supported (bug #5874).

commit 594216a874de159089743024fbeef9fc83bea7cb
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 28 19:47:03 2010 +0100

    Try WM_NAME(STRING) too for tray application name.
    
    Qt applications don't set _NET_WM_NAME, so fallback to
    WM_NAME(STRING).

commit c9baeaac5678b846ddf0a7a4ed38a5699b0b3ea7
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 28 16:21:03 2010 +0100

    Add some known tray application names.

commit 750acf1cdabe2eed13c346a713adb5d46c47a4f1
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 28 16:20:21 2010 +0100

    Use xfce_panel_pixbuf_from_source() to load known apps.

commit c8bdf2b20efc0447ca7074e969ea1bc11582e72e
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 25 12:13:06 2010 +0100

    Move composited child function to plugin.
    
    This makes it more obvious this is something special
    we need to do after Gtk's expose event to draw composited
    icons.

commit bdc17ee8fc838690a408054c2a48a4cb9e1d67eb
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 25 11:53:44 2010 +0100

    Improve sort function a bit + other tiny changes.

commit f3efda29fa46b470b9a132477c8b82e40f5ea375
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Dec 24 21:07:43 2010 +0100

    Drop child structure from box and only use widgets.
    
    This makes the entire code easier to understand and
    we don't need the additional child information anyways.
    
    Also make the hidden property emit code smaller and
    handle all of it in size_request.

commit e5aeb586a1c9b102178af98049e1e00bfab78d36
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Dec 24 20:36:55 2010 +0100

    Remove unused variables in box structures.

commit cf7bf8d019247388488fbe442624f75dd1bdcc51
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Dec 24 20:32:20 2010 +0100

    Only use orientation in systray box.
    
    Swapping the tray order if it is positioned on the
    other side of the screen is hardly of any use, so
    ditch is to make the allocation code simpler.

commit 4ea533ef90968e58a0aafd76a9055ac974a92e12
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 23 21:28:04 2010 +0100

    Move arrow button to plugin widget (bug #6694).
    
    Also set the relief of the button to none, so it looks better
    on transparent panels. Needs some tweaks but those will land
    with the upcomming commits.

commit f04ce15341eb50b8dc739edb761dac7732325ae5
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 23 20:50:42 2010 +0100

    Use foreach to add application to store.

commit ed53fc21ce8fa4917b0243bd6dc9ca1d617b1867
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 23 20:15:20 2010 +0100

    Move hidden name handling to plugin.
    
    Improve readability of the box widget by moving names
    handling to the panel plugin. Use _(s,g)et_hidden in the
    socket as a proxy item to store the hidden state of the icon.
    
    Also make the socket store its name, so we don't need to
    duplicate it in other widgets.

commit a2b94844ad4132af5e883f93c74c6ad242e2f9b0
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 28 17:01:17 2010 +0100

    Fix some compiler warnings.

commit 82bbb2b7ca6348d6e3b5ef14cd653f9383f7f298
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 28 13:16:20 2010 +0100

    Optimize loading icons from absolute paths.

commit 32fcc728f3c902c686c4439d404cafd5241fdd9c
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 28 13:06:31 2010 +0100

    Use xfce_panel_pixbuf_from_source in launcher dialogs.

commit 8cc6d8cc0c23798c60f00207602446e22b5aa259
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 28 12:56:06 2010 +0100

    Use XfcePanelImage in the launcher menu.

commit 7d9ab39f7ccd643ef8a03949590835bd2ac8b1ce
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 28 12:55:09 2010 +0100

    Use xfce_panel_pixbuf_from_source() in XfcePanelImage.

commit 72c7bf9eefa179509b8c62d70db8a9b16a7d5fa4
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 28 12:53:39 2010 +0100

    Add xfce_panel_pixbuf_from_source().
    
    Convenience function to load pixbuf from icon names
    the the ones used in desktop files.
    Code is the same as that from XfcePanelImage.

commit 61c91e8365add52992e3015ff88e9beebdd7f64a
Author: Terje Uriansrud <terje@uriansrud.net>
Date:   Sat Dec 25 19:54:34 2010 +0100

    l10n: Updated Norwegian Bokmal (nb) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0ab25aa09472d6de0c751e1527c73e3e8fb5c2d8
Author: Terje Uriansrud <terje@uriansrud.net>
Date:   Sat Dec 25 19:52:49 2010 +0100

    l10n: Updated Norwegian Bokmal (nb) translation to 99%
    
    New status: 343 messages complete with 0 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5b066a2920d575f24105323dc53134ed922e4c99
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 23 22:23:23 2010 +0100

    Workaround un nusable plugin when moving to other window.

commit ce97a463d9bf9716169eac35ec83c1b4adc09909
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 23 20:15:47 2010 +0100

    Fix thinko in screen handling (bug #6830).

commit 88abb90d201f32f7eaa47a6dcb7e965d67c1b80f
Author: Nuno Miguel <nunis@netcabo.pt>
Date:   Thu Dec 23 18:24:27 2010 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8bc0052b7d03d2cbf34e0e045bab52ad245f4848
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 23 14:56:19 2010 +0100

    Fix vertical tasklist buttons in non-vertical mode.

commit 76917b461415768b271ce0b9640c8e02dad37d00
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 23 13:17:18 2010 +0100

    Make sure launchers are properly removed and saved.
    
    There were some corner cases when we left old config files
    in the launcher config directory and the new file locations
    were not saved (due to file copying to config dir).
    
    Most of this occured when loading the default layout.

commit e1187e45dc53505765c5fa53c5c39e9b7d145f92
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 23 11:45:16 2010 +0100

    Fix invalid unref.

commit a80fea405502e750e33eea04b5c661b4b952eff4
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 23 11:43:08 2010 +0100

    Add application menu in default layout.

commit fa397ef9680f1e5b98a45dfdce8b02893051a0eb
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 23 11:42:46 2010 +0100

    Fix typo in function name.

commit 7dc4df23c5b8f6c13e5c1b6d12f04c078d29d045
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Wed Dec 22 23:36:25 2010 +0100

    l10n: Updated Croatian (hr) translation to 73%
    
    New status: 254 messages complete with 10 fuzzies and 81 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e2f40fa462202675cf6efa951802bdb532e9075f
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 21 21:48:34 2010 +0100

    Fix ABI check on ppc (bug #7009).

commit 642a43dbe82a81ed02dbddc37584b9eec40fa3af
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 21 21:48:19 2010 +0100

    Add missing function to libxfce4panel.symbols.

commit 7d714ceef550fb703c066210a3f3f6a36003d7e9
Merge: 0f4795a72 de21c4eeb
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 21 21:25:23 2010 +0100

    Merge branch 'nick/wip-4.10'

commit 0f4795a72eed99d77cd927fb79c387c3c2623a20
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 21 21:20:34 2010 +0100

    Fix plugin dnd with locked panel and outside itembar.

commit f24985be06d4e5f78dac7cf3f607acf6215478c6
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 21 21:05:29 2010 +0100

    Fix various size allocation issues in clock (bug #5219, #3960).
    
    Also change the way the lcd clock draws it's segments, so the spacing
    between the segments looks better in different panel sizes.

commit 5056f2d6c85aaad73f588ddc7b87a058b158bc72
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 21 15:43:30 2010 +0100

    Make vertical clock rotation optional (bug #7002).
    
    Not always nice to rotate the clock in some panel situations,
    so make this optional in a hidden property "rotate-vertically".
    
    In 4.10 this will be configurable in the interface (bug #7027).

commit 295841f8050728a3c0644dd66fe2ca5abe3f8e9a
Author: Dmitry Nikitin <luckas_fb@mail.ru>
Date:   Tue Dec 21 11:30:10 2010 +0100

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2f363bed9e32a1cfce46ce6b97648c7c8394f58d
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Mon Dec 20 16:25:23 2010 +0100

    l10n: Updated Galician (gl) translation to 96%
    
    New status: 333 messages complete with 4 fuzzies and 8 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5db059e43a70b4798b73c8f610e6ecffdb1aad35
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Mon Dec 20 16:22:42 2010 +0100

    l10n: Updated Galician (gl) translation to 95%
    
    New status: 329 messages complete with 8 fuzzies and 8 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9dcea09f3eaea42ce9e89a034419a0d5df89e900
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Mon Dec 20 04:48:05 2010 +0100

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d2b0cf068cd01762ec812b04fd839b83e6008889
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Dec 19 20:27:06 2010 +0100

    Install desktop files in xfce4/plugins/actions (bug #7013).

commit d304b5357f44c33f218c5bfe4bf61d0932d9f385
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Dec 19 20:21:42 2010 +0100

    Also load desktop files from xfce4/panel/plugins (bug #7013).
    
    The new library location is $libdir/xfce4/panel/plugins, so
    for consistency we now also load desktop files from
    $datadir/xfce4/panel/plugins.
    The old location ($datadir/xfce4/panel-plugins) is still supported
    so we don't break 4.6 plugins.

commit 15ab32f5d39586ae214ceb9d20c31762ecb85dc2
Author: Harald Servat <redcrash@gmail.com>
Date:   Sun Dec 19 16:50:45 2010 +0100

    l10n: Updated Catalan (Valencian) (ca) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit da7271f9077282c48edbbb02e639f50bf801c50e
Author: Andhika Padmawan <andhika.padmawan@gmail.com>
Date:   Sun Dec 19 12:43:55 2010 +0100

    l10n: Updated Indonesian (id) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e96fee10f405eac7981b8356f3c3831059fa4544
Author: Jeff Bailes <thepizzaking@gmail.com>
Date:   Sun Dec 19 08:46:30 2010 +0100

    l10n: Updated English (United Kingdom) (en_GB) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c1533edc0e94f9c04b3ed55fbdc84f2f1f262633
Author: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
Date:   Sat Dec 18 23:46:52 2010 +0100

    l10n: Updated Finnish (fi) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fa47bb2a52b1349464f8425678d183103a38e1e4
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sat Dec 18 18:26:21 2010 +0100

    l10n: Updated Swedish (sv) translation to 70%
    
    New status: 243 messages complete with 34 fuzzies and 68 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f8c5a2932253af4cc36d52f0a765e047cb74552f
Author: Nuno Miguel <nunis@netcabo.pt>
Date:   Sat Dec 18 18:22:13 2010 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2aa7a4c03f2f706a2637762e3e0718158052658b
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 18 14:27:55 2010 +0100

    Align prototypes in tasklist.

commit 3097df2625452270e507678843cab875afb40b34
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 18 14:16:07 2010 +0100

    Bump copyright to 2010 and fix licenses.

commit fc6318e7831d1763019f17cda445239827081ac2
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 18 13:59:18 2010 +0100

    Small code cleanups.

commit de21c4eeb536a82ce7473a05f358373745f75330
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 18 13:26:33 2010 +0100

    Remove plugin when dropping in items dialog (bug #6976).

commit 79310a0c941bb29791ea97b47724bc7dbf04c974
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Sat Dec 18 10:49:27 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3ee6272f8af591180b271caf280cfbc8c72e58ff
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Sat Dec 18 10:47:53 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0ca81d0e95179d21b24c243bb74dbd5abb380752
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Sat Dec 18 09:11:31 2010 +0100

    l10n: Updated Italian (it) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1dfe61e9ffe4c759d73cd1072eb6803b04e37e0e
Author: Johannes Lips <johannes.lips@googlemail.com>
Date:   Sat Dec 18 08:14:20 2010 +0100

    l10n: Updated German (de) translation to 99%
    
    New status: 343 messages complete with 2 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 56ff44504948b5d97c1bdbfb0ef451377f4429dc
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Sat Dec 18 07:38:13 2010 +0100

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 10dde81ca2e674b10d913a73d3f021b2f6858125
Author: Masato Hashimoto <hashimo@xfce.org>
Date:   Sat Dec 18 07:30:00 2010 +0100

    l10n: Updated Japanese (ja) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 30387e9d0911e67a854ba1cfc72e83456473078c
Author: Aleksandr Ponomarenko <davian818@gmail.com>
Date:   Sat Dec 18 02:18:32 2010 +0100

    l10n: Updated Russian (ru) translation to 95%
    
    New status: 330 messages complete with 1 fuzzy and 14 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit cc2d372771824bbcab9d5fde19b1ccb3f2e27a1b
Author: Aleksandr Ponomarenko <davian818@gmail.com>
Date:   Sat Dec 18 02:17:22 2010 +0100

    l10n: Updated Russian (ru) translation to 95%
    
    New status: 330 messages complete with 1 fuzzy and 14 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3335f1169ac31391224c07eb1f4f5838765afcc5
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Dec 18 01:45:20 2010 +0100

    l10n: Updated Hungarian (hu) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1e6f943954f6e96a65b99e7c593385b80aad04f9
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Sat Dec 18 01:33:44 2010 +0100

    l10n: Updated Czech (cs) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7eb8d06e42bf0dcb9a0ce45b9457569397b712ba
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Dec 17 23:06:25 2010 +0100

    Add option to filter tasklist window by monitor (bug #5199).

commit be632df549abec6630a25c024e83d4b3440b2b96
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Dec 17 14:13:55 2010 +0100

    Don't use the session manager in action plugin.
    
    The reboot/shutdown and logout functions are not implemented
    in XfceSmClient; so use xfce4-session-logout.

commit 489d47a2aca97d6c0ed8eeeaeab6e9305df36b4c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Dec 17 13:25:13 2010 +0100

    Drop unneeded code.
    
    This is handled in the common code.

commit d99751094c58330f5671822f03c2e1a90e569785
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Dec 16 20:51:33 2010 +0100

    Various improvements in the launcher dialog.
    
    Restore the item dnd we has in 4.6 and reduce the amount
    of reloads and saving item moves triggered.

commit c1a5fbf2d3652cf5bfd0ce015c3886a7a462437d
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Dec 15 22:27:36 2010 +0100

    Drop too-new Gtk API.

commit c484579aa10e2e2fe2ccde0b8ca2a20c288e646f
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Dec 15 16:42:49 2010 +0100

    Fix order of menu items based on screen position (bug #6978).

commit 739c225bfbc8f3e909be51760e5150797848311b
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 14 22:00:16 2010 +0100

    Fix warning when removing a panel with a 4.6 plugin.

commit 524e025aac4fca5d0e6a1388104a66b3a406d06b
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 14 21:53:38 2010 +0100

    Fix some prototype variable names.

commit 8504102c3637e4a2127f3c72b52c3138405740cc
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 14 21:50:40 2010 +0100

    Do not make the itembar insensitive (bug #6818).
    
    I'm not really satisfied with the result, because an insensitive
    panel would be a lot nices, but it makes moving/adding plugins
    work again.

commit c23eba4c6da055be2f52582ebe28d427dcaa66fe
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 14 21:50:06 2010 +0100

    Send drag motion event to parent widgets.

commit 11512193ee0ac31fa82b5d2264eebc097b7c81f4
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Dec 14 21:48:26 2010 +0100

    Change launcher dnd code for plugin moving.
    
    Improve the code so new plugin drops are properly passed
    to the parent widget. Also ignore drops if Control is pressed,
    this way desktop files can be dropped between 2 launchers.

commit 26f2a2d772442a2f59d5d97b7a4a1615f4b590b6
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Dec 13 20:17:50 2010 +0100

    Open plugin preferences on double-click (bug #6975).

commit d16c50765b4d14c40a9864ec0271595090bbc27f
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Dec 13 19:56:32 2010 +0100

    Allow reordering plugins in preferences with dnd.

commit c0a856164936e7a7f8a7dcd3ee35f4eacd9e6338
Author: Jeff Bailes <thepizzaking@gmail.com>
Date:   Mon Dec 13 08:41:34 2010 +0100

    l10n: Updated English (United Kingdom) (en_GB) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 75e2bb005514fa64acaaedfca836d5b37fe5849f
Author: Fabian Nowak <timystery@arcor.de>
Date:   Sun Dec 12 19:57:24 2010 +0100

    l10n: Updated German (de) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 312929e0ffedd8ea48087a7377a479b4cb6429ac
Author: Masato Hashimoto <hashimo@xfce.org>
Date:   Sat Dec 11 15:57:32 2010 +0100

    l10n: Updated Japanese (ja) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0879ad66d690e7bb81206614cbf2aa1c352d859b
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 11 13:43:12 2010 +0100

    Bind panel translation domain for external plugins (bug #6932).

commit f593d16351743a9f8918d7c02ee279a15fa9a04c
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Sat Dec 11 01:45:52 2010 +0100

    l10n: Updated Czech (cs) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9e61e6c1aae037ae796a694c53cd72ca950fab97
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Fri Dec 10 17:15:54 2010 +0100

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1d30f1f0887df94bb4ca2fbb6d93068619fe4547
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Fri Dec 10 17:13:10 2010 +0100

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 99%
    
    New status: 343 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3c1ca19a6d7b869a7bd72f9cd313f3a5faf44f27
Author: Aleksandr Ponomarenko <davian818@gmail.com>
Date:   Fri Dec 10 00:00:39 2010 +0100

    l10n: Updated Russian (ru) translation to 92%
    
    New status: 319 messages complete with 11 fuzzies and 14 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4808e3601926aabfeb66f23e689f69eb3928318f
Author: Michal Várady <miko.vaji@gmail.com>
Date:   Wed Dec 8 22:43:27 2010 +0100

    l10n: Updated Czech (cs) translation to 86%
    
    New status: 296 messages complete with 3 fuzzies and 45 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4ab666a32cf3541b4663443d67f54df37e96f7dc
Author: Harald Servat <redcrash@gmail.com>
Date:   Wed Dec 8 21:46:25 2010 +0100

    l10n: Updated Catalan (Valencian) (ca) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b3fa94719a8daeef1e28c9db0e47997b7bbb9014
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Tue Dec 7 22:06:10 2010 +0100

    l10n: Updated Ukrainian (uk) translation to 99%
    
    New status: 342 messages complete with 0 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7afe37c0ce8976a8181c2cb8d0f72efda0d59b23
Author: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
Date:   Tue Dec 7 15:33:00 2010 +0100

    l10n: Updated Finnish (fi) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1495150a227dedc58b49abe1d9f27e1becfcf343
Author: Robert Hartl <hartl.robert@gmail.com>
Date:   Mon Dec 6 19:05:17 2010 +0100

    l10n: Updated Slovak (sk) translation to 76%
    
    New status: 264 messages complete with 14 fuzzies and 66 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4cc7be3471ab946974598946ffdef2dab07bed84
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Mon Dec 6 18:43:11 2010 +0100

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 99%
    
    New status: 341 messages complete with 2 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 54344b4eb88ea3744af2744d243b8113e4dfafc0
Author: Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>
Date:   Mon Dec 6 16:09:46 2010 +0100

    l10n: Updated German (de) translation to 98%
    
    New status: 338 messages complete with 5 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b4967b176ec17216780951b1d22e07cc4404ea01
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Mon Dec 6 09:15:21 2010 +0100

    l10n: Updated Hebrew (he) translation to 97%
    
    New status: 334 messages complete with 0 fuzzies and 9 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a933b522e4176578b5f886698d7091dfd17ba647
Author: Henrique P. Machado <zehrique@gmail.com>
Date:   Mon Dec 6 03:11:04 2010 +0100

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8f7ce20e960fa7f4b675037536a9c25405e4e9a0
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Sun Dec 5 21:27:07 2010 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 10c1af5fa377a985f1bf98489c784fa1c586830e
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Dec 5 15:29:52 2010 +0100

    Post release tag bump.

commit 0c012ca498139a0bbe7f5cf00b319d8568cc797c
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Dec 5 15:29:04 2010 +0100

    Updates for release.

commit aa3b4cd6620f3fdc4fbe1f781d480808dbd324a5
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Dec 5 15:28:35 2010 +0100

    Depend on garcon 0.1.4.

commit 834d2e8034834e1d57c76293021d642faed877e7
Author: Jannis Pohlmann <jannis@xfce.org>
Date:   Sun Dec 5 15:19:04 2010 +0100

    Fix if statement in xfce_tasklist_button_visible().
    
    && binds stronger than ? and :, so if you have
    
      foo && bar ? x : y
    
    "foo && bar" will be evaluated first and if that's FALSE, y will
    be executed. In this case we want
    
      foo && (bar ? x : y)

commit d4d0cb7d7fd2dfbc1bf7ce95e2011d9f6dc46383
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 4 22:33:02 2010 +0100

    Fix Exec key in desktop file handler (bug #6912).

commit 148ed036003bc5fef18e5c2f7090549e915f0476
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 4 15:37:34 2010 +0100

    Always use applications menu for default menu.
    
    Garcon respects the XDG_MENU_PREFIX variable, which is set
    the "xfce-" in xinitrc and used by alacarte too.

commit 85fa958a61c2320bd732ed1281cedf35de1a034f
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 4 11:52:38 2010 +0100

    Post release tag bump.

commit 24f215db42d5190a127c598f03f19f3195fc63bc
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Dec 4 11:45:49 2010 +0100

    Updates for release.

commit a67084dcbdf4326c69f7536cef32ec791022173f
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Fri Dec 3 14:18:01 2010 +0100

    l10n: Updated Italian (it) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 951ca005748909c09d00a0df9eefa7c171633e27
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Wed Dec 1 21:47:03 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4eb541db81200a78c79a7f9da4ed4451e36d22f7
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Dec 1 21:43:50 2010 +0100

    Support viewports in pager.

commit 21251bb6df9d12e2ee421305c077900eb3a796dd
Author: Robert Hartl <hartl.robert@gmail.com>
Date:   Wed Dec 1 19:16:21 2010 +0100

    l10n: Updated Slovak (sk) translation to 66%
    
    New status: 229 messages complete with 24 fuzzies and 92 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c4f844514162b085512a1f018bfdcc970ba0971a
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Wed Dec 1 06:00:04 2010 +0100

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 181843d1282ff58ed444b389a083aa340375a2ea
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Wed Dec 1 03:12:38 2010 +0100

    l10n: Updated Hungarian (hu) translation to 100%
    
    New status: 345 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0a3edc5b7c2724f827556457ae596ecf64a8b60e
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Nov 30 22:00:24 2010 +0100

    Remove debug line in previous commit.

commit fad961054f9f3554c9f7070c9ee78dacdbecfe74
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Nov 30 21:44:13 2010 +0100

    Make viewports work like workspaces in tasklist (bug #6665).
    
    We will switch to the other viewport with window managers like
    Compiz. We also try to move windows to the current viewport if
    minimized, when this option is enabled.

commit 8af236af7d57e8fb4916d2bce9339a29097f6dad
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Nov 30 19:16:16 2010 +0100

    Make viewports work in the tasklist (bug #6898).

commit c0cbe8aae6cefd127b043e7b5906104ac3af1033
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Mon Nov 29 23:59:52 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ceccb5b4243e7ed388fac1b5a19a8310471b9bf3
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Mon Nov 29 11:11:42 2010 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 94b85e0a8eee985dbe8b2b6fcf5f135bc3116a0a
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Nov 28 21:21:31 2010 +0100

    Revert "Do not double-expose the window child (bug #6872)."
    
    We don't chin up because the function is not a signal, this should
    fix bug #6889.

commit d055d221836c4b5425d37cc8a98992068059d200
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sun Nov 28 13:40:11 2010 +0100

    l10n: Updated Hungarian (hu) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a396f6a6d76478735868717816af569703c8eba7
Author: Xu Meihong <mhuntxu@gmail.com>
Date:   Sat Nov 27 14:04:44 2010 +0100

    l10n: Updated Chinese (China) (zh_CN) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e99bfb044b81ac19db73298d204c20183752f6c4
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sat Nov 27 07:18:01 2010 +0100

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 344 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f9edb1d55f62e00b7dd24502cc6d059af6f3be11
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Nov 26 23:24:13 2010 +0100

    Improve session management signals a bit.
    
    We now save on the save-state signal if emitted, not when quiting
    the main loop during session quit.

commit 1caf1aaa65f8f0c057ab50544550097eeea201f9
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Nov 26 23:08:20 2010 +0100

    Rename some functions.

commit 5bd37a080c282d87626e206b5214242a1a97dd6e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Nov 26 23:04:59 2010 +0100

    Debugging info if window is hidden/shown on output change.

commit b910f14e0d3e4c3f158dc3fb0b663bf081d00ed8
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Nov 26 21:01:36 2010 +0100

    Add window DND to the pager.

commit bc18274854ae80e41615108db31eb58dc6b69c39
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Nov 26 20:36:44 2010 +0100

    Don't destroy the menu under the users' cursor.
    
    Add a signal to destroy the menu when the user closed it
    if the menu is popped up.

commit e9ed7f813e3b620676b656e617e32a9627ae247b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Nov 26 20:32:49 2010 +0100

    Improve support for a menu editor in the applications menu.
    
    Add support for alacarte in the applications
    menu by supporting the applications.menu file and adding
    an "Edit Menu" button when alacarte is installed.
    
    Technically this is a new feature, but this is broken since 4.6
    and I don't want it to be that worse in 4.8 since it is one
    of the most requested features in Xfce.

commit bcbf1b1ad560f6e4b90bbfe5be7e53fefc15db6e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Nov 26 17:30:44 2010 +0100

    Set session priority.
    
    The panel changes struts, so start right after the window
    manager.

commit 5db5434fe4bdf0e849238044bb29a3bf24d8c1f4
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Nov 25 18:14:27 2010 +0100

    Do not double-expose the window child (bug #6872).

commit 4944e43d70e8e3724d2a1490d757845ac70108ff
Author: Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>
Date:   Wed Nov 24 01:31:22 2010 +0100

    l10n: Updated German (de) translation to 99%
    
    New status: 341 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e8b33b251373c94132d893fe0b67bea3e9bf4a0c
Author: Johannes Lips <johannes.lips@googlemail.com>
Date:   Tue Nov 23 13:36:20 2010 +0100

    l10n: Updated German (de) translation to 95%
    
    New status: 327 messages complete with 14 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8b17269a4af221a04cc71c49b90595109ccaa124
Author: Harald Servat <redcrash@gmail.com>
Date:   Mon Nov 22 22:56:43 2010 +0100

    l10n: Updated Catalan (Valencian) (ca) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7bf7128375ea83a1a87a44442f78921b5af17857
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Mon Nov 22 11:50:33 2010 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1417178cc4b56b1183d3707667c5c6b7f02c4985
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Mon Nov 22 06:27:12 2010 +0100

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit cc3815b9555040dc820ca150f3d335fbdbadfe5c
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Sun Nov 21 14:42:13 2010 +0100

    l10n: Updated Italian (it) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8d5569ef9d10a7c2f5b39d3213652e8b2be6cde3
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Sun Nov 21 10:09:27 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e0f7fd32541eeee71ee4efee1c0669564eea2391
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Nov 20 22:48:56 2010 +0100

    Propertly handle the insensitive clock colors.

commit 3edffa8dd6e622376546d0a950f1f7ccf068befd
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Nov 20 22:01:39 2010 +0100

    Do not start a motion timeout if button is insensitive.
    
    This way the  tasklist will not switch windows when moving
    a panel plugin.

commit ae894f000b170b0f28eeb2c721de289dbfbbd785
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Nov 20 20:45:58 2010 +0100

    Add option to not rotate buttons in vertical panel (bug #6687).
    
    Although this is more or less a feature; the rotate buttons
    might be considered a regression compared to the old panel.

commit 460903c30842e5112f0ce3362bb2c34aa0a5c37c
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Nov 20 14:47:38 2010 +0100

    Add TODO in tasklist.

commit eb73d6e5ab3503e7f3e8c1b4e3a422d34962e555
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Nov 20 14:01:34 2010 +0100

    Fix format of 12-hour clock.

commit da1215c3774b27186b13e48d13b276902a9086b4
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Nov 20 13:04:11 2010 +0100

    Restart the panel if we receive SIGUSR1.

commit 922efd8cb1e6f75034bb2b1260ec7d6839dd4670
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Nov 20 12:59:25 2010 +0100

    No need to handle SIGHUP.

commit 3f093188dddf4a8643e20de10a23be26a66b8581
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Nov 20 12:40:42 2010 +0100

    Gracefully handle abort signal (bug #6563).
    
    Also print a log line about the signal we receive.

commit 61f636af4e66d271f5fd10aec6756c067e39333c
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Nov 20 12:33:00 2010 +0100

    Warning why # pager rows does not apply (bug #6555).

commit ae208594589c0ad80f05f6cf5e5ddbf36f2c903d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Nov 19 21:05:11 2010 +0100

    Add function to return the Xfconf panel name.
    
    This will be easier to maintain then the macro if we want to
    extend it in the feature. Also cache the value, since it
    will not change during runtime of the panel.

commit 5253474958a85198e2f7d85faef65f41cfeae7f2
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Nov 18 20:02:57 2010 +0100

    Print Gtk and Glib version in start of log.

commit 1e08f89b1cf5adb22bc021c0568c34b4b445b3fb
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Thu Nov 18 19:56:49 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 341 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0008a682263e68a964eded423c5eced9671ff110
Author: Piarres Beobide <pi@beobide.net>
Date:   Wed Nov 17 22:35:41 2010 +0100

    l10n: Updated Basque (eu) translation to 100%
    
    New status: 341 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c0f9a86fd501e156f6df0e810fa88e0aa53c8862
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Wed Nov 17 07:09:06 2010 +0100

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 341 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f7a963e748aea500f505109576651ec32fd6050d
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Tue Nov 16 20:26:46 2010 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 341 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 13f15c6eb0312b494f798b535a5845db7ebf43da
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Nov 16 20:08:49 2010 +0100

    Restore shadow of spin button in systrau dialog.

commit 9d2fee8f33bf96fcd8d569f72f0205ac33c99eef
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Nov 16 19:52:26 2010 +0100

    Fix crash in systray with no children.

commit ce81b1199a9038c05586be7fee6c67ce1b1017e3
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Nov 16 19:35:49 2010 +0100

    Print complete display layout when debugging is enabled.

commit 24da1546d10d1df72bb123ebe85878861cf39098
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Nov 16 18:07:15 2010 +0100

    Fix some string and drop Xfce in most of them.
    
    In 4.6 we agreed to remove Xfce from most of the visible
    strings, I kinda forgot about that.

commit 33b6a47ce59762cb6bc7cc65c4ca26c45150df94
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Nov 16 17:59:35 2010 +0100

    Fix add launcher desktop file.

commit d665fa2e7187b47e3c056dfd99aece9cf0dce20e
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Nov 16 17:33:45 2010 +0100

    Fix the previous commit with hidden icons.

commit 021bb3d5a31fefeb69f180ff479a2001cdf30412
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Nov 16 17:29:17 2010 +0100

    Fix issue in systray size allocation with 1 row (bug #6809).

commit d023b4afdaa4c6916d8c57e2dec67dd115f1a47b
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Nov 16 11:31:21 2010 +0100

    Fix wrong capitalization of Xfce.

commit e5f07a36f1fb9e21d153b16c847bc051e6778f28
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Tue Nov 16 13:37:56 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ef90f27d1dd7b92bca4d4151458ee5d5080106cf
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Tue Nov 16 00:23:35 2010 +0100

    l10n: Updated Danish (da) translation to 99%
    
    New status: 342 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c67e4782ef4feb213760a6fa80adc17d0eaed94f
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Nov 15 19:44:36 2010 +0100

    Make miniature view the default in the pager (bug #6825).
    
    The other pages consumes too much space with the default workspace names.

commit 138751842ad6a9803fc0d40067548059c4acc6ad
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Nov 15 19:31:14 2010 +0100

    Fix confustion with panel opacity (bug #6827).

commit 692c1304c347637df039ce8e4ad313b841a25623
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Nov 13 17:10:34 2010 +0100

    Clear the error, so it is usable again.

commit bca7ec57974beab5ed00c192bb7b2bfe4a67a780
Author: Enrico Tröger <enrico.troeger@uvena.de>
Date:   Fri Nov 12 10:00:29 2010 +0100

    Fix Gdk key macro names.

commit 1149b44869b492105b9f03886306e0b3a432c971
Author: Nuno Miguel <nunis@netcabo.pt>
Date:   Tue Nov 9 18:52:27 2010 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4adb4c97f8cddf476d8ad5fd2d84d9ba9b2f42b5
Author: Dmitry Nikitin <luckas_fb@mail.ru>
Date:   Tue Nov 9 14:21:01 2010 +0100

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 308534864047b8f96a466cb021577206e842066e
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Nov 8 23:56:31 2010 +0100

    l10n: Updated Dutch (Flemish) (nl) translation to 93%
    
    New status: 319 messages complete with 2 fuzzies and 22 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 50c4281e5b8c36107732d0d48dd55e5ee7b9b549
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Nov 8 22:10:16 2010 +0100

    Drop the automatics grouping option from tasklist.
    
    Not implemented yet, so avoid the confusion.

commit bb6b1ef03c05dfd7f8209e923c2e8ec5365ccaac
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Nov 8 21:53:56 2010 +0100

    Fix crash in always group mode (bug #6792).

commit 0af8fc6e38a9641212035e9a08b1f0e5b2aa5746
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Mon Nov 8 15:19:04 2010 +0100

    l10n: Updated Galician (gl) translation to 97%
    
    New status: 336 messages complete with 0 fuzzies and 7 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 10da325fac243a0b8d6766508b3fc892d605531a
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Nov 7 20:49:09 2010 +0100

    Allow using enter in the launcher treeviews.

commit de2ebcb59c77eeb30918d40271cb8ab0393d6fc0
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Nov 7 13:07:19 2010 +0100

    Don't destroy the about dialog.

commit 7f579e63184e950a437069518f0db62326d0ab9c
Author: Andhika Padmawan <andhika.padmawan@gmail.com>
Date:   Sun Nov 7 09:45:22 2010 +0100

    l10n: Updated Indonesian (id) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fe7f3266c37e501995f46476351c485ce25b0eaa
Author: Masato Hashimoto <cabezon.hashimoto@gmail.com>
Date:   Sat Nov 6 15:17:47 2010 +0100

    l10n: Updated Japanese (ja) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 80ce5f3898b5b8a0226d7ce47687bb2f1fac59b1
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Fri Nov 5 19:29:56 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3d9f369db523259a228f17a3072f7df0bd0aa5ab
Author: Harald Servat <redcrash@gmail.com>
Date:   Fri Nov 5 17:00:54 2010 +0100

    l10n: Updated Catalan (Valencian) (ca) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit af7cdc9f0918bb9db1a28a65872c39fe6be4691a
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Fri Nov 5 16:50:51 2010 +0100

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 14d2945bd042401b2f71551a7febd8c55dc60281
Author: Masato Hashimoto <cabezon.hashimoto@gmail.com>
Date:   Fri Nov 5 15:58:11 2010 +0100

    l10n: Updated Japanese (ja) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit dde8eb178f9146c14613e60021fb06d9092b2861
Author: Masato Hashimoto <cabezon.hashimoto@gmail.com>
Date:   Fri Nov 5 07:13:46 2010 +0100

    l10n: Updated Japanese (ja) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6f758c3d5dd118bddd18184ce89484893f07494c
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Thu Nov 4 17:02:52 2010 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c13f79dd8e6c392ef8b6ec37ee57aa735183ea77
Author: Masato Hashimoto <cabezon.hashimoto@gmail.com>
Date:   Thu Nov 4 12:02:02 2010 +0100

    l10n: Updated Japanese (ja) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d216ab9484f385affa96965507c235576440790e
Author: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
Date:   Thu Nov 4 11:20:05 2010 +0100

    l10n: Updated Finnish (fi) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2746d0498510aabac2724ed2a34ddd7d63474d15
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Thu Nov 4 08:26:15 2010 +0100

    l10n: Updated Italian (it) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4f4b848ea90c15852b0404da7ad3a412f033e2b7
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Thu Nov 4 03:32:36 2010 +0100

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit eb353527042e5cb5fde8002174d8fc9359b71de4
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Thu Nov 4 02:18:45 2010 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f313caccd2ca5e5bec973de53221c53907ca88b8
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Nov 3 20:47:36 2010 +0100

    Post release tag bump.

commit 4d834ab155ef7d680f2b8711da6924beaa3a0878
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Nov 3 20:41:25 2010 +0100

    Updates for release.

commit fd7b4a9408effcf6ed995fc5e4d5d2b7ff5d6505
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Nov 3 19:04:23 2010 +0100

    Fix accelerator key conflict (bug #6765).

commit ed3678c1d82f8a4827e7bad3879e66392ce7826e
Author: Masato Hashimoto <cabezon.hashimoto@gmail.com>
Date:   Wed Nov 3 15:33:25 2010 +0100

    l10n: Updated Japanese (ja) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 985d12b177c99eaec845cbf8b77aaafa8ada7d9a
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Wed Nov 3 14:11:44 2010 +0100

    l10n: Updated Hungarian (hu) translation to 99%
    
    New status: 341 messages complete with 2 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 53b5cfb7a0a7e602b763e8c7b88396accaff3779
Author: Piarres Beobide <pi@beobide.net>
Date:   Wed Nov 3 09:24:19 2010 +0100

    l10n: Updated Basque (eu) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 90485890adcfe6eb570a7570eb06009b815d8da0
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Oct 31 12:47:57 2010 +0100

    Add test for docs module and depends on xdt 4.7.3.

commit d77a1937197a44633c052d18998a102daf21adee
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Oct 26 21:18:18 2010 +0200

    Better point to the read-only repository.

commit 32165185fbd15b9ec67fe9c4812d6d162df64ac7
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Oct 26 20:57:46 2010 +0200

    Add submodule to xfce4-docs/xfce4-panel-master.

commit 68b190cff460a5c0441ee382cfe773f428f0cd86
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Mon Oct 25 13:19:12 2010 +0200

    l10n: Updated Galician (gl) translation to 97%
    
    New status: 333 messages complete with 0 fuzzies and 10 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5596f9a0c21d5353dd3eab2eb3eebb6b0ba48968
Author: Harald Servat <redcrash@gmail.com>
Date:   Sat Oct 23 13:18:07 2010 +0200

    l10n: Updated Catalan (Valencian) (ca) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3212e9b074c23916fae0ae80f465f16d2c914fc3
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Tue Oct 19 18:29:55 2010 +0200

    l10n: Updated Galician (gl) translation to 92%
    
    New status: 49 messages complete with 0 fuzzies and 4 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2f3957242dc1b6ef5655d2ef9dab2a4258d1ed77
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Tue Oct 19 18:29:13 2010 +0200

    l10n: Updated Galician (gl) translation to 97%
    
    New status: 332 messages complete with 0 fuzzies and 10 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 44a3b5fb00aac38490c07f412dffe3d33da9d019
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sun Oct 17 18:24:33 2010 +0200

    l10n: Added Swedish translation
    
    New status: 36 messages complete with 0 fuzzies and 17 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 78e950db84e02162e32c3343e1f29df4bea411b2
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sun Oct 17 17:45:50 2010 +0200

    l10n: Updated Swedish (sv) translation to 71%
    
    New status: 245 messages complete with 30 fuzzies and 68 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 00fff6368b5101f51ccee21e241ed9fa9c7ebac5
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Oct 16 18:01:44 2010 +0200

    Test commit.

commit 53c97f45069847e3430db80ba17a165573b4bcc7
Author: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
Date:   Sat Oct 16 15:11:33 2010 +0200

    l10n: Updated Finnish (fi) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2a44c1f6938241d2bddda3abd79874a145d88e06
Author: Stavros Giannouris <stavrosg@gmail.com>
Date:   Sat Oct 9 23:49:57 2010 +0200

    l10n: Updated Greek (el) translation to 97%
    
    New status: 336 messages complete with 7 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d79b446002e830673ada90dff4a1b659dec4ec73
Author: Masato Hashimoto <cabezon.hashimoto@gmail.com>
Date:   Sat Oct 2 18:27:44 2010 +0200

    l10n: Updated Japanese (ja) translation to 86%
    
    New status: 293 messages complete with 22 fuzzies and 25 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1d74d7066607a5931e7ecc37119aa9cad7822f5c
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Fri Oct 1 08:13:11 2010 +0200

    l10n: Updated Italian (it) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit cd562e0574653f40b09683f4bdf41c130482debe
Author: Fabian Nowak <timystery@arcor.de>
Date:   Thu Sep 30 22:44:10 2010 +0200

    l10n: Updated German (de) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9487eb9d7922adfb3b8dfb1c6b85351f076487b7
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Thu Sep 30 13:33:43 2010 +0200

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 55493e46abdeb58175f0909602eb18f005f3c955
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Mon Sep 27 00:11:27 2010 +0200

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f665e5e602973da05d7df39df95401a09b3dfc91
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Sat Sep 25 11:15:28 2010 +0200

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6a51685be1ca5fb3c35fcc2116e482281cbc59d6
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sat Sep 25 07:38:53 2010 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit aa658252162cc2092bd0e543aa44390d7cf13980
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Fri Sep 24 22:12:48 2010 +0200

    l10n: Updated Danish (da) translation to 100%
    
    New status: 343 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 74ac38c15394af57a1785b99bf4eb8066c5a9cfa
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Sep 24 21:25:34 2010 +0200

    Allow translations of the "Xfce Panel" string.

commit 2f1559d5e3fb992cdd5a15ab52ac99cce1d3b5b1
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Sep 19 07:23:09 2010 +0200

    l10n: Updated Dutch (Flemish) (nl) translation to 92%
    
    New status: 318 messages complete with 2 fuzzies and 22 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e15c5afea167239f27c3faa34816758754c066ee
Author: Robert Hartl <hartl.robert@gmail.com>
Date:   Wed Sep 15 21:35:46 2010 +0200

    l10n: Updated Slovak (sk) translation to 64%
    
    New status: 221 messages complete with 22 fuzzies and 99 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 57650c77052f7afb52c234fd2f3975f8381618d5
Author: Fabian Nowak <timystery@arcor.de>
Date:   Tue Sep 14 19:29:50 2010 +0200

    l10n: Updated German (de) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6460900d78575f335339a38d0a4f21e78d28e739
Author: Fabian Nowak <timystery@arcor.de>
Date:   Tue Sep 14 19:28:53 2010 +0200

    l10n: Updated German (de) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d1fbdd438839caaaa8d1ead288cc40eea9437057
Author: Fabian Nowak <timystery@arcor.de>
Date:   Tue Sep 14 19:24:26 2010 +0200

    l10n: Updated German (de) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8f9c89482441d5b73a5866170a35dd18f7c2f6db
Author: Fabian Nowak <timystery@arcor.de>
Date:   Tue Sep 14 19:21:34 2010 +0200

    l10n: Updated German (de) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b9f835ce6dd645d17dc81ffd199106ab1707cceb
Author: Fabian Nowak <timystery@arcor.de>
Date:   Tue Sep 14 19:20:59 2010 +0200

    l10n: Updated German (de) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8b0105b13e504082de56bff057d046d6bea46cf0
Author: Fabian Nowak <timystery@arcor.de>
Date:   Tue Sep 14 10:13:06 2010 +0200

    l10n: Updated German (de) translation to 99%
    
    New status: 340 messages complete with 2 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 79afd14c46545ff2576f0bb8942a85c6ef56c127
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Sep 12 14:13:13 2010 +0200

    Add support for menu monitoring.
    
    Watch menu changes. We always reload the menu, also
    if an item is changed, because we don't know the new
    sort order of the menu item in case the name changed.

commit 452fed46fdb7ddb0ebe4c577062f6b58eb524677
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Sep 11 11:39:52 2010 +0200

    Fix API break in garcon.

commit c1e5cfabd663ee9952e284e045a0eaa7f90a8bca
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Fri Sep 10 07:02:46 2010 +0200

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f3401ae29db5de4c8eb729e64cee69dcd76abe10
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Fri Sep 10 06:56:21 2010 +0200

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ebbd54c1922a6e4d5a8c8dc13cd522e819225b58
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Fri Sep 10 06:45:17 2010 +0200

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 64d15f78f1fd31d42acb8bae81eca77f58af71b8
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Fri Sep 10 06:44:03 2010 +0200

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5d5623f2e874b536f8408ba0e20b75f9909d1cfc
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Thu Sep 9 16:56:41 2010 +0200

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 85%
    
    New status: 294 messages complete with 9 fuzzies and 39 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a6ab328eaa4af7a15c3fe15cb031d5984aaf7ac9
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Thu Sep 9 13:31:25 2010 +0200

    l10n: Updated Galician (gl) translation to 92%
    
    New status: 49 messages complete with 0 fuzzies and 4 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0c1f6735bd94c3d9d05809b1faa622dca6ac4ea4
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Thu Sep 9 13:19:54 2010 +0200

    l10n: Updated Galician (gl) translation to 97%
    
    New status: 332 messages complete with 0 fuzzies and 10 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d3df7e0348d73f073de5269ce0cbb551c1206ca0
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Tue Sep 7 06:42:47 2010 +0200

    l10n: Updated Uyghur (ug) translation to 92%
    
    New status: 49 messages complete with 0 fuzzies and 4 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d76edd3b36c6bf9896c0ac5b359d27098eeea497
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Sep 5 18:02:11 2010 +0200

    Fix distributing the manual in the dist tarball.

commit 31fd8ac66dc2ac2e542a31794bf65b2e23a0f50d
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Sep 5 12:16:24 2010 +0200

    Post release tag bump.

commit 3dd578204a0172cfc00add4417ca3212398b1a99
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Sep 5 12:13:12 2010 +0200

    Updates for release.

commit 9caf913d26b96ca657df8c43ef401a3db5ef588f
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Sep 4 21:12:52 2010 +0200

    Fix activating the panel when a plugin asks for focus.
    
    This should fix focusing of entries in the panel like the
    ones provided by the dict and verve plugins.

commit b72a2ad68a8303c9d8c0efa25177412ac055e47b
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Sat Sep 4 15:52:48 2010 +0200

    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 72%
    
    New status: 249 messages complete with 15 fuzzies and 78 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5d28d6f0337fa56d761f6e5e945a361725dd1877
Author: Jannis Pohlmann <jannis@xfce.org>
Date:   Wed Sep 1 14:06:03 2010 +0200

    Add cast to fix a compile error in external 4.6 plugins.

commit f65a606fbbb8efc714ace78b61a09cf68fe9dc98
Author: Carles Muñoz Gorriz <carlesmu@internautas.org>
Date:   Tue Aug 31 17:14:25 2010 +0200

    l10n: Updated Catalan (Valencian) (ca) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4d15eb7ed529e4449741cb459d0b49b195c9838a
Author: Fabian Nowak <timystery@arcor.de>
Date:   Fri Aug 27 13:09:41 2010 +0200

    l10n: Updated German (de) translation to 99%
    
    New status: 340 messages complete with 2 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6c653999bc3bc8efb3cd3da95c8a3a373d31c5a9
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Aug 26 21:20:46 2010 +0200

    Move module panel plugins in $libdir/xfce4/panel/plugins.
    
    We still support the old location, but this one is nicer.

commit fa611018403071097cdbfad05bc741e34e31086f
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Aug 26 18:18:21 2010 +0200

    Move helpers applications to $libdir.
    
    FHS 2.3 forbids files in $libexecdir, so move those files to $libdir.

commit 417a3ad4f69a6edff013b4ffb5298fe9e1a93b3b
Author: Fabian Nowak <timystery@arcor.de>
Date:   Mon Aug 23 20:55:02 2010 +0200

    l10n: Updated German (de) translation to 99%
    
    New status: 340 messages complete with 2 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2f3a1f29c015c4c9e998df5a91e8ece3fad1f817
Author: Fabian Nowak <timystery@arcor.de>
Date:   Mon Aug 23 20:45:28 2010 +0200

    l10n: Updated German (de) translation to 85%
    
    New status: 294 messages complete with 42 fuzzies and 6 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7d2c27ea6577d14967d1fb16831f606a3f7ee2dd
Author: Fabian Nowak <timystery@arcor.de>
Date:   Mon Aug 23 20:41:03 2010 +0200

    l10n: Updated German (de) translation to 79%
    
    New status: 271 messages complete with 57 fuzzies and 14 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 99ae3865ef570bf5394ba95ff481bc8e370443ee
Author: Fabian Nowak <timystery@arcor.de>
Date:   Mon Aug 23 20:13:34 2010 +0200

    l10n: Updated German (de) translation to 57%
    
    New status: 197 messages complete with 109 fuzzies and 36 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1918973e554b39950f2223006af1cbde9d2c90ea
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Aug 22 13:00:18 2010 +0200

    Remove deprecated encoding key from desktop files.

commit 9769ec5a775e868b0dbb8166c9e59b9461ddf03b
Author: Johannes Lips <johannes.lips@googlemail.com>
Date:   Fri Aug 20 08:02:47 2010 +0200

    l10n: Updated German (de) translation to 50%
    
    New status: 172 messages complete with 132 fuzzies and 38 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c97793c02e999b781dd1507fde1f1cf13e323548
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Fri Aug 13 15:04:25 2010 +0200

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7f344b89269c3f6a7829d4f41221aeab65183305
Author: Samuli Suominen <ssuominen@gentoo.org>
Date:   Wed Aug 11 13:22:05 2010 +0200

    Libxfce4panel-1.0.pc is missing variable localedir (bug #6629).
    
    This variable is required by xfce4-xfapplet-plugin.

commit 98675cb9b6bde4147deedc9405ffd8452cd8c296
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Tue Aug 10 11:29:57 2010 +0200

    l10n: Updated Italian (it) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0e0691fec718fa9046f13e551b59e121d8935175
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Fri Aug 6 06:13:04 2010 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fd480c9d4d3dd271862cdf9425aa9f5946f4ca4d
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Wed Aug 4 11:15:11 2010 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6c2161d89972a400e782d6dac96c0f5bbdfa920e
Author: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
Date:   Tue Aug 3 10:13:03 2010 +0200

    l10n: Updated Finnish (fi) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4b3c342a3306b8c0f3c5e1a4c74ff87ed2619a13
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Tue Aug 3 06:42:02 2010 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 29dde6440ce40fcc0bc89a2dfa0952977794afe8
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Aug 1 21:47:23 2010 +0200

    Add workspace settings option to pager submenu.
    
    Also drop the find in path check, we don't really care about that.

commit f72fb6c9f3335dae80a8c660fa066f229d5dc45f
Author: Durand-Favreau Arnaud <biginoz@free.fr>
Date:   Wed Jul 28 10:02:46 2010 +0200

    l10n: Updated French (fr) translation to 64%
    
    New status: 34 messages complete with 9 fuzzies and 10 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3107187db4de778a0d5ef536dc33cccb9d0a0e53
Author: Durand-Favreau Arnaud <biginoz@free.fr>
Date:   Wed Jul 28 09:26:19 2010 +0200

    l10n: Updated French (fr) translation to 11%
    
    New status: 6 messages complete with 38 fuzzies and 9 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e5030c2c8c90afcb7ff419673796dffd78d152a0
Author: Durand-Favreau Arnaud <biginoz@free.fr>
Date:   Wed Jul 28 09:22:47 2010 +0200

    l10n: Commit new French translation
    
    New status: 6 messages complete with 38 fuzzies and 9 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f12911a22d5ec2c3c75c3cdfb623232244383ce3
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Wed Jul 28 05:21:36 2010 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 920a5ad1c9223c21542adbcf685ae7798b2db9db
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Wed Jul 28 01:03:41 2010 +0200

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0faaec999e6c45e90737165dcd038cdb1cf92544
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Tue Jul 27 22:49:10 2010 +0200

    l10n: Updated Danish (da) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2bb462541903bfc1ecbe32d6410b6a619d2cdbf3
Author: Durand-Favreau Arnaud <biginoz@free.fr>
Date:   Tue Jul 27 22:20:45 2010 +0200

    l10n: Updated French (fr) translation to 26%
    
    New status: 91 messages complete with 123 fuzzies and 126 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2dfd555df523a80328b03fe66bd7b741c0393d89
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jul 27 20:21:41 2010 +0200

    Delay allocation of event table until we use it.

commit 211d94da3dce2bd1d23329502de21c899cb8a95c
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jul 27 20:18:03 2010 +0200

    Improve checking if we own the dbus name.

commit c53c83a8a3d0c34e00c2b7aba3cc5a6edffa28bf
Author: Harald Servat <redcrash@gmail.com>
Date:   Tue Jul 27 15:26:19 2010 +0200

    l10n: Updated Catalan (Valencian) (ca) translation to 100%
    
    New status: 342 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4af96ff4667c143cd2d8d4b1c2a8921a02ca4654
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Jul 26 21:05:39 2010 +0200

    Allow to quit the panel if no session manager is running.
    
    This way users without xfce4-panel can quit they X server because
    startxfce4 relies on a running panel for that.

commit e2d4d108db54af970a8c3911d6847680e5da24b5
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Jul 26 20:41:29 2010 +0200

    Make this warning a non-abrting error for startxfce4.
    
    If the panel aborts here startxfce4 doesn't work if Xfce is
    started without xfce4-session installed.

commit 8ad45c48b1cb8840dec926adbe945c9dab6dc35a
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Mon Jul 26 20:15:16 2010 +0200

    l10n: Updated Portuguese (pt) translation to 99%
    
    New status: 338 messages complete with 0 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 90d8774fd1152f7c14163aef29a8d16de4b6a8b3
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jul 25 15:30:46 2010 +0200

    Register the plugin menu to block autohide.

commit 3ef0c0c04c609d9ca55279a7b74a96a848ed710c
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jul 25 15:27:17 2010 +0200

    Don't handle grabs on the window from menu's.

commit 62e842ad4fff5fa64d3ab224e3a8845a64133b44
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jul 25 14:20:59 2010 +0200

    Always wait for a grab if we popup menus from events.

commit 7b9a047f9417140659df7dd35e864a5daaf1a9cb
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jul 25 14:20:38 2010 +0200

    Fix menu positioning with autohide panels.

commit bf74984f4b5605331a69cbedba9fb4aa8a5e5baa
Author: Johannes Lips <johannes.lips@googlemail.com>
Date:   Wed Jul 21 21:06:32 2010 +0200

    l10n: Updated German (de) translation to 50%
    
    New status: 171 messages complete with 131 fuzzies and 38 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 731af1104687225511a4c6fbd2528ee308f9a1bc
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Jul 21 18:20:46 2010 +0200

    Update POTFILES.in.

commit 718193328c71b3ceb6e2ed2353595f75cfae0222
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Wed Jul 21 15:43:00 2010 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 340 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5af9dba5081bfe3456a32dd00ce5f0ce9887032c
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Wed Jul 21 12:39:19 2010 +0200

    l10n: Updated Danish (da) translation to 100%
    
    New status: 340 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5b595f7ed13956b2d894689ea72d9d52ae024f5e
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jul 20 22:23:34 2010 +0200

    Rebuild translations.

commit 1ae6753c76635f62367e0bf16d3657ff805c9942
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jul 20 22:21:37 2010 +0200

    Add a pager mode with normal buttons.
    
    This removes the old 'Show workspace names' option and adds a
    pager with normal buttons and workspace names instead. This
    looks much more like the old pager known in pre-4.0 Xfce versions.

commit 93d9e97bd0f3109fbc6978abc5ca089c7db7f1cd
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Tue Jul 20 14:42:19 2010 +0200

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 338 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8b01f689a9c5194831f0e9d413a5422a238b769e
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Mon Jul 19 01:47:18 2010 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 99%
    
    New status: 337 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ff015accc9ae1548757da6eb135e8ff469bd3339
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Mon Jul 19 01:39:48 2010 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 95%
    
    New status: 324 messages complete with 1 fuzzy and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c6b18eae4325c194ad640a24b1fb168639a9f6c2
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sun Jul 18 23:08:00 2010 +0200

    l10n: Updated Hungarian (hu) translation to 99%
    
    New status: 334 messages complete with 2 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f92ba56cd6ef4d2d3274e6401afab508cde3ad79
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jul 18 13:23:18 2010 +0200

    Add lXext to tasklist libraries (bug #6471).

commit db828d942949a488f29008b295807726743406ab
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Sun Jul 18 12:24:55 2010 +0200

    l10n: Updated Danish (da) translation to 99%
    
    New status: 337 messages complete with 0 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 860d87d07b2b39bc96c86331710df961b7d7fdab
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Sun Jul 18 03:13:00 2010 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 95%
    
    New status: 324 messages complete with 1 fuzzy and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit bd5700c00533d6d25ca1c6651a538867525064bb
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Sat Jul 17 19:26:31 2010 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 94%
    
    New status: 320 messages complete with 5 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ce1960aec559a1e6c3dc97dd1919234e79d0e279
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jul 17 15:29:44 2010 +0200

    Add support to run plugins in valgrind.
    
    Also set the environment variables G_SLICE and G_DEBUG for
    better debugging or checking for memory leaks.

commit f10c0061e6cc72d7af8b1ff0dd5174aa92b414ed
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jul 17 12:28:15 2010 +0200

    Post release tag bump.

commit eceafd4a9285e8907b6cfd7c3d292f345a872425
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jul 17 12:03:52 2010 +0200

    Tag release.

commit bd6cfdff7cbf7c4a3855bcb2cea50944416ddca1
Author: Michael Martins <michaelfm21@gmail.com>
Date:   Fri Jul 16 05:58:47 2010 +0200

    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 21%
    
    New status: 73 messages complete with 106 fuzzies and 159 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d1706ff3903a915ab5029aae0622892df4416bfc
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Jul 15 20:46:16 2010 +0200

    Cleanup code a bit.

commit dc8625abcd28f218694b736e7c560652bbab5117
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Jul 14 22:40:48 2010 +0200

    Add debug mode to run plugins in gdb.
    
    With PANEL_DEBUG=gdb plugin will be started in gdb
    and log files (with backtrace and register dump) are
    automatically stored in /tmp.
    Some functionality will not be available, like
    automatically restart the plugins.
    
    Also cleanup the debug level handling a bit, so it is
    easier to extend and make struts debugging work again.

commit b09727368607c0e943ff24f977eff67bd842f9a5
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Jul 14 20:38:39 2010 +0200

    Fix typo in debug line.

commit b6ece156ffa899d2d1607270cfc097162669801c
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Tue Jul 13 15:15:26 2010 +0200

    l10n: Updated Portuguese (pt) translation to 99%
    
    New status: 337 messages complete with 0 fuzzies and 1 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 93e27d9094ed14754f735d2de58c635b4c7316ca
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Tue Jul 13 05:26:53 2010 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 338 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6262c421c4bd8b1314394cdccf88850351a9c6bb
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jul 11 19:56:22 2010 +0200

    Add debug line to detect endless loops.

commit d3a8b2c3a21734b599830f3e0961c66dabb8eeb1
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jul 11 16:55:05 2010 +0200

    Rebuild translations.

commit e6c42caef3e76f0446e4dba87342af26f683e778
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jul 11 16:51:43 2010 +0200

    Change colormap handling.
    
    Always try to set the rgba colormap so we don't need to
    restart plugins when compositing changes.

commit 13f5459a4a1a75746a5adf19fa9dedd3bd956477
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Jun 17 19:08:44 2010 +0200

    Improve code for external plugins.
    
    Split the base of the external plugin code in three pieces:
    PanelPluginExternal as abstract object to handle the child
    monitoring and access-point for the panel and
    PanelPluginExternal{46,Wrapper} to handle the dbus or socket
    communication. This drop a lot of duplicated code.
    
    Also improve handling of external plugins during a child
    crash; we now wait until the child is terminated before
    we launch the new proccess and also handle restarts of a
    child (requested by the panel) without bothering the
    user.

commit 779963eda47275f740fc6e97e0741348ef612788
Author: Denis Koryavov <dkoryavov@yandex.ru>
Date:   Tue Jul 6 21:16:23 2010 +0200

    l10n: Updated Russian (ru) translation to 100%
    
    New status: 53 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6499749f47905e3ae7e31db7c518ee71986c206d
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Sat Jul 3 11:12:51 2010 +0200

    l10n: Updated Italian (it) translation to 100%
    
    New status: 336 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a2ac43bca607b80ffec02daad981dd45773c4244
Author: Harald Servat <redcrash@gmail.com>
Date:   Fri Jul 2 18:35:13 2010 +0200

    l10n: Updated Catalan (Valencian) (ca) translation to 100%
    
    New status: 336 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 29bd3e10a164dc9d70e7601f91d57e59ba1cb5a7
Author: Andhika Padmawan <andhika.padmawan@gmail.com>
Date:   Fri Jul 2 17:45:49 2010 +0200

    l10n: Updated Indonesian (id) translation to 100%
    
    New status: 336 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 70044879ce0c2155f11086a24ed8088a71d6ab25
Author: Andhika Padmawan <andhika.padmawan@gmail.com>
Date:   Fri Jul 2 17:31:22 2010 +0200

    l10n: Initial Indonesian translation.
    
    New status: 53 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 05071dbcd5237de5fbe34a0c9baa978146118c76
Author: Andhika Padmawan <andhika.padmawan@gmail.com>
Date:   Thu Jul 1 18:16:12 2010 +0200

    l10n: Updated Indonesian (id) translation to 100%
    
    New status: 334 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8cb468670a9f05a3fb5e4f10465cb1b9fbb96f29
Author: Xu Meihong <mhuntxu@gmail.com>
Date:   Tue Jun 29 06:06:45 2010 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 99%
    
    New status: 333 messages complete with 0 fuzzies and 3 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 131e3a6527ba201ee16ef615390a95b2d24bc5fa
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Tue Jun 22 16:24:21 2010 +0200

    l10n: Updated Galician (gl) translation to 96%
    
    New status: 324 messages complete with 0 fuzzies and 12 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1e6c1b48725129e66e2e25a5c6d87f517e1fb108
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Tue Jun 22 16:21:38 2010 +0200

    l10n: Updated Galician (gl) translation to 94%
    
    New status: 319 messages complete with 0 fuzzies and 17 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e2a563b5cefffd47bda659585176d61ad0a2063d
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Mon Jun 21 07:07:01 2010 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 336 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6d3dc4208d808ab4601fc90911148a1c738fb9f2
Author: Spiros Georgaras <sng@hellug.gr>
Date:   Fri Jun 18 13:23:44 2010 +0200

    l10n: Updated Greek (el) translation to 96%
    
    New status: 323 messages complete with 13 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 361f6c3741e7c5689ef0827ace3bc260cbc58c5a
Author: Stavros Giannouris <stavrosg@gmail.com>
Date:   Thu Jun 17 20:57:24 2010 +0200

    l10n: Updated Greek (el) translation to 90%
    
    New status: 296 messages complete with 31 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 43366d0eb3e90baf862c7e7c5fd9d02d9e97cdac
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Thu Jun 17 15:34:37 2010 +0200

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 336 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 76e8066c837e35ad41fc2d7263c9b27fe3627ec5
Author: Abel Martín <abel.martin.ruiz@gmail.com>
Date:   Tue Jun 15 17:03:08 2010 +0200

    l10n: Updated Spanish (Castilian) (es) translation to 9%
    
    New status: 5 messages complete with 1 fuzzy and 47 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fd8cce4ff8760e05cd4d3a8fa81e385c3261fbd9
Author: Abel Martín <abel.martin.ruiz@gmail.com>
Date:   Tue Jun 15 17:01:26 2010 +0200

    l10n: New Spanish translation for xfce4-panel master-docs
    
    New status: 0 messages complete with 0 fuzzies and 53 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a18a9887d9af8cfbfd20d1c3ceffd4d40d607558
Author: Abel Martín <abel.martin.ruiz@gmail.com>
Date:   Tue Jun 15 16:51:42 2010 +0200

    l10n: Updated Spanish (Castilian) (es) translation to 100%
    
    New status: 336 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 14dd056a03a6a05ca12c49f4136ee6cb3b5cd110
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Mon Jun 14 11:44:37 2010 +0200

    l10n: Updated Danish (da) translation to 100%
    
    New status: 336 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8d85235930cdb9cac9dd5ce8e902991f52c751a9
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jun 13 21:18:07 2010 +0200

    Fix crash when disconnecting a signal from the wrong object.

commit 339a1e30c038c06cadd457b142622878c9a2ce3f
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jun 13 21:10:29 2010 +0200

    Fix crash with panels without background color.

commit 0ea9a2db5bf11a50b08db6f1857272e52caf973a
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jun 13 21:08:58 2010 +0200

    Improve showing a window a bit.
    
    Still not there yet, but this makes things a bit easier
    to understand.

commit 5f5f0eec1aa67463fe71e4e04d6f68e5ec1ce0d9
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jun 13 19:50:30 2010 +0200

    Set the constructed flag in the constructor.

commit 5a992c1a2f14b78a9c566d18385ad5634a6b317d
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jun 13 18:15:50 2010 +0200

    Start debugging on any other value then NULL.

commit 949b9cbcda6febc8b6f7b9c5ed98dd3bd664267c
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Sun Jun 13 20:24:18 2010 +0200

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 336 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5f1b4248e3b8e0af4eabf6a46fa569c027bbf916
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jun 13 17:00:40 2010 +0200

    Make tray registration idle.
    
    This avoids stealing our own selection on startup sometimes.

commit 937a23baf63a718af1fe41d714d8e7e6bd7136b3
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jun 13 14:14:21 2010 +0200

    Add separator between help and logout in window menu.

commit c6d5ba57471e9b092111eb1499569b871b92dfaf
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jun 13 14:08:41 2010 +0200

    Add logout to plugin menu and drop quit and restart.
    
    In 4.6 the quit action also showed the logout dialog, instead of
    quiting the panel. Also drop the restart option since it is not
    suitable for normal users (xfce4-panel -r still exists).
    This makes it harder to accidentally remove the panel from the
    session, if you want that, run xfce4-panel -q (normal quit).

commit 3682854d3ffc23fbc19f9deda2e58a676227230b
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jun 12 19:35:43 2010 +0200

    Drop the . in the message.

commit f739eb1461cc1b5276c4163366cb940c25775fdc
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jun 12 19:05:09 2010 +0200

    Ask to start panel when opening preferences without instance.
    
    This makes it a lot easier for users to start the panel
    after it is somehow lost from the session, just click the
    panel preferences button in the settings manager.

commit d139268f6404ef58a1d3138d2510e45e34ad9b9b
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Fri Jun 11 23:35:47 2010 +0200

    l10n: Updated Croatian (hr) translation to 78%
    
    New status: 264 messages complete with 1 fuzzy and 70 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 655e11d8cadda8357e5315ab10e2bc5a8cab64f3
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Jun 10 19:06:03 2010 +0200

    Remove a useless warning from the systray.

commit 9b964cf8528b74ab0d5b8e27c8bc3787001c2e9f
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Mon Jun 7 18:48:31 2010 +0200

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 335 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ddcb415ffcc18c35608027f59d8ca31887c3479e
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Mon Jun 7 05:15:31 2010 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 335 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 471433224149a995f0dc79e51333c6278399a1c5
Author: Xu Meihong <mhuntxu@gmail.com>
Date:   Mon Jun 7 02:34:40 2010 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 99%
    
    New status: 333 messages complete with 0 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6e401c1e7701a7545f74c57752ea5a892e3c57d4
Author: Abel Martín <abel.martin.ruiz@gmail.com>
Date:   Sun Jun 6 23:58:24 2010 +0200

    l10n: Updated Spanish (Castilian) (es) translation to 100%
    
    New status: 335 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ff8b8da31606c143cad51f6df32933372c9ea479
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Sun Jun 6 16:36:42 2010 +0200

    l10n: Updated Danish (da) translation to 100%
    
    New status: 335 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit eced3e05f735bc343bc0ac84b433775cc6ffc71b
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Jun 6 11:49:00 2010 +0200

    Fix typo in notification area plugin.

commit 5193bf294ca014555319d95b214c391a1cddb204
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Jun 5 18:27:40 2010 +0200

    Add module.xml and drop .indent.pro.

commit 5a23bb73e8ab673483ee4909fa1cfffda7887629
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Sat Jun 5 01:23:17 2010 +0200

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 335 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 88ee20d40caeb33c34c206aa868c9ab64c50f709
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Fri Jun 4 20:34:40 2010 +0200

    l10n: Updated Danish (da) translation to 99%
    
    New status: 334 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 231f77832adfb340f12b4119918760ee48b9d7b8
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Fri Jun 4 12:20:30 2010 +0200

    l10n: Updated Croatian (hr) translation to 78%
    
    New status: 263 messages complete with 0 fuzzies and 72 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 165e4fe2eb3b5e2df320c61693670a47dd784807
Author: Abel Martín <abel.martin.ruiz@gmail.com>
Date:   Fri Jun 4 10:00:34 2010 +0200

    l10n: Updated Spanish (Castilian) (es) translation to 100%
    
    New status: 335 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 52a008791b654dab104ca88ea10b771c86dbf23e
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Jun 3 20:47:49 2010 +0200

    Make the systray takeover selection.
    
    This instead of ignoring the startup. Since your plugin
    is unique now, it won't give problems when one panel is
    running. It also makes the systray restart after a crash
    work better, since most of the time is takes a while (in
    cpu cycles) before the selection is released of the crashing
    plugin.

commit 1a74095b4985b02d79b449a8b5034395a5687dea
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Jun 3 20:46:37 2010 +0200

    Add support for X-XFCE-Unique=SCREEN.
    
    This allows to make a plugin unique for a screen. Also
    improve (and fix) the handling of unique plugins in the
    module code and items dialog.

commit 7fb06f700bc8f332166adf581ae8ffcacaf068a9
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Thu Jun 3 11:03:33 2010 +0200

    l10n: Updates to Croatian (hr) translation
    
    New status: 261 messages complete with 0 fuzzies and 73 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1cef5f145cf768c2028f0577f78dce28a883e559
Author: Stefan Stuhr <xfce-bug@sstuhr.dk>
Date:   Wed Jun 2 19:50:12 2010 +0200

    Fix launching from primary clipboard (bug #6488).

commit 0a6065f73f2f221c93f9903316cc56f795889a2b
Author: Ivica  Kolić <ikoli@yahoo.com>
Date:   Wed Jun 2 18:39:37 2010 +0200

    l10n: Initial Croatian (hr) translation
    
    New status: 221 messages complete with 0 fuzzies and 113 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e2f6f79050cb29b54fbeca7fab9954908b3193a8
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jun 1 18:57:24 2010 +0200

    Make sure there are not 2 active windows on ws-changes (bug #6474).

commit 237e89d8f693f1089f25fddf247ebc8b4a3e5353
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Jun 1 18:44:36 2010 +0200

    Small cleanup since gdk_event_get_time() accepts NULL.

commit 320b58d9c52f0c3beeea4883d7e1c5c3dd33a74a
Author: Stefan Stuhr <xfce-bug@sstuhr.dk>
Date:   Tue Jun 1 18:08:07 2010 +0200

    Use activate signal for launcher menu items (bug #6485).

commit f6835b80d715440abcd0c7af666e7dc5d579c932
Author: Ardjuna <ard_h_r@yahoo.com>
Date:   Tue Jun 1 11:52:17 2010 +0200

    l10n: Updated Indonesian (id) translation to 52%
    
    New status: 177 messages complete with 60 fuzzies and 97 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c5d9c8aac7427fa06e23d1c36b7b037f8337cb0d
Author: Ardjuna <ard_h_r@yahoo.com>
Date:   Tue Jun 1 11:52:03 2010 +0200

    l10n: Updated Indonesian (id) translation to 52%
    
    New status: 177 messages complete with 60 fuzzies and 97 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6c2ef128f4bf1e79573a934735e39fdf2bdc8823
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Sun May 30 12:22:06 2010 +0200

    l10n: Updated Ukrainian (uk) translation to 100%
    
    New status: 334 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6e7a84c6b9d59bd2a0519271ca730fc7a1cd7e3b
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Sun May 30 00:39:28 2010 +0200

    l10n: Updated Ukrainian (uk) translation to 96%
    
    New status: 321 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1f2b0e348bd203947a099c653292aea58ec19b52
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Sun May 30 00:37:13 2010 +0200

    l10n: Updated Ukrainian (uk) translation to 96%
    
    New status: 321 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 78d25fd197c49b217c0eebf3b6edcb6b1a82b22f
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date:   Sun May 30 00:34:34 2010 +0200

    l10n: Updated Ukrainian (uk) translation to 96%
    
    New status: 321 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit df918bf5f5b45e878e30f866ca50c44125e8d8b7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri May 28 17:56:14 2010 +0200

    Point gnome-doc-tool to the index.page file for css.

commit 69404031ba009125220ce6a60fa1ae3e42f2b2b8
Author: Nick Schermer <nick@xfce.org>
Date:   Fri May 28 17:52:08 2010 +0200

    Fix missing include.

commit 4ddcc80664845b32af0144e615a5cd8e92277336
Author: Nick Schermer <nick@xfce.org>
Date:   Fri May 28 17:51:03 2010 +0200

    Fix another place where we should test the file.

commit 9cadeb3d9bdc3f251c22e51fe79096fc5a932f90
Author: Nick Schermer <nick@xfce.org>
Date:   Fri May 28 17:49:36 2010 +0200

    Fix possible uninitialized variable.

commit 64bc798f4e29f2d6d6641d017df4bdf63cbff80a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri May 28 17:45:11 2010 +0200

    Check for file when building docs.

commit e9b459c54e252bf07637d75ad15a9f51d7632ad8
Author: Dmitry Nikitin <luckas_fb@mail.ru>
Date:   Fri May 28 15:37:58 2010 +0200

    l10n: Updated Ukrainian (uk) translation to 96%
    
    New status: 321 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 61c8d21e60abc894fad18a7b4beb0e9bea754257
Author: Abel Martín <abel.martin.ruiz@gmail.com>
Date:   Tue May 25 14:41:39 2010 +0200

    l10n: Updated Spanish (Castilian) (es) translation to 100%
    
    New status: 334 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5693d10783c92ab76a3c46bf7375f72bca51292b
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Tue May 25 08:08:12 2010 +0200

    l10n: Updated Uyghur (ug) translation to 79%
    
    New status: 265 messages complete with 0 fuzzies and 69 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5fc5e379f19d63d6993437a68d2b65c432d111ac
Author: Xu Meihong <mhuntxu@gmail.com>
Date:   Tue May 25 03:52:30 2010 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 98%
    
    New status: 328 messages complete with 0 fuzzies and 6 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1d95e8702bc0a95f8803822558ceaf907d67928c
Author: Nick Schermer <nick@xfce.org>
Date:   Mon May 24 12:06:36 2010 +0200

    Link to tasklist plugin to x11 (bug #6471).

commit 707b38d693dbfb25b8661fef5b85ce609df70db7
Author: Nick Schermer <nick@xfce.org>
Date:   Mon May 24 11:58:42 2010 +0200

    Add newline to 4.6 plugin debug version.

commit 89e52d284340fb0f300de5928dac0f1059962b8a
Author: Nick Schermer <nick@xfce.org>
Date:   Mon May 24 11:33:23 2010 +0200

    Print version numbers of panel and 4.6 plugins in debug mode.

commit 53810134a132de3764374130e2df131c7521975e
Author: Nick Schermer <nick@xfce.org>
Date:   Mon May 24 11:32:11 2010 +0200

    Add LIBXFCE4PANEL_VERSION.
    
    String with compile version of the panel. This will be used
    for external plugin debugging to print the full version
    of the panel the plugin is compiled against.

commit 2dcc38ba30e1b0e82506884b069ab42a44e58346
Author: Nick Schermer <nick@xfce.org>
Date:   Mon May 24 11:19:20 2010 +0200

    Drop filtering debug domains.
    
    But too much, since we basically want all the debug
    information for most of the bugs.

commit da81a2fc7455dadcd91d2f5e163cf485b928498e
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Wed May 19 06:15:58 2010 +0200

    l10n: Uyghur Translation
    
    New status: 41 messages complete with 0 fuzzies and 12 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 85b594b98dba9544807b936184acf4dedae66291
Author: Gheyret Kenji <gheyret@yahoo.com>
Date:   Wed May 19 04:50:12 2010 +0200

    l10n: Uyghur translation
    
    New status: 70 messages complete with 0 fuzzies and 264 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d20c679dccbfe929827d65796c40cb835c24c271
Author: Dmitrij Smirnov <arch@cnc-parts.info>
Date:   Sun May 16 11:54:47 2010 +0200

    l10n: Updated Russian (ru) translation to 93%
    
    New status: 313 messages complete with 8 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5a520e43ccb46b15e99335fa350402ee7d5bde91
Author: Dmitrij Smirnov <arch@cnc-parts.info>
Date:   Sun May 16 11:52:36 2010 +0200

    l10n: Updated Russian (ru) translation to 93%
    
    New status: 312 messages complete with 9 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 55989e974f9b654e1d79721fadd93fd3dd513dcf
Author: Andres Kovtunos <kovtunos@yandex.ru>
Date:   Sat May 15 14:28:54 2010 +0200

    l10n: Updated Russian (ru) translation to 95%
    
    New status: 320 messages complete with 1 fuzzy and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e9c65ca09ec6cd913b3d60b55a8dac4a283f3da6
Author: Ayhan YALÇINSOY <ayhanyalcinsoy@gmail.com>
Date:   Fri May 14 23:16:35 2010 +0200

    l10n: Updated Turkish (tr) translation to 32%
    
    New status: 107 messages complete with 103 fuzzies and 124 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 41db390a0ebfd02c25b54ab7a8983195191f5fb8
Author: Piarres Beobide <pi@beobide.net>
Date:   Tue May 11 11:49:12 2010 +0200

    l10n: Updated Basque (eu) translation to 100%
    
    New status: 334 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 951c916db05a7e2ef19c132019246e26a08225d0
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Tue May 11 09:17:47 2010 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 334 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ce7659a4712eeb941c9cd16c050bf0a2b4a0a704
Author: Nick Schermer <nick@xfce.org>
Date:   Mon May 10 23:22:07 2010 +0200

    Add some debugging support for 4.6 plugins.

commit 5714d3af6c0281917462f36494edf8c18bb8d18e
Author: Nick Schermer <nick@xfce.org>
Date:   Mon May 10 22:51:18 2010 +0200

    Delay connecting the provider-signal in 4.6 plugins.

commit fef3e03524e957851643160017eab75728aef516
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Mon May 10 20:15:58 2010 +0200

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 334 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 61119307bdd4d64e1c1c28ee76a0daab6cbe2071
Author: Robert Hartl <hartl.robert@gmail.com>
Date:   Mon May 10 12:12:58 2010 +0200

    l10n: Updated Slovak (sk) translation to 65%
    
    New status: 220 messages complete with 20 fuzzies and 94 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 45f57880b3a50caf658776323de2fdc2f3fce569
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Mon May 10 09:56:39 2010 +0200

    l10n: Updated Danish (da) translation to 100%
    
    New status: 334 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4e73a66b1980e781fe37dd1bbe1cecc063930ffa
Author: Nick Schermer <nick@xfce.org>
Date:   Sun May 9 22:28:38 2010 +0200

    Rebuild translations.

commit 8c9fcef677f360e82f5a8de7d3bbf7a2e206d55e
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Apr 25 11:34:05 2010 +0200

    Add support for more background options (bug #1731).
    
    Add support for colored and image backgrounds. This makes theming the
    panel a lot easier and allows us to handle the colors and image
    positioning in the external plugins.
    
    The background image does not apply to the autohide window.

commit 5db31ffd871d39cbe4fb51862405aafac5cf1d0d
Author: Andres Kovtunos <kovtunos@yandex.ru>
Date:   Fri May 7 18:19:15 2010 +0200

    l10n: Updated Russian (ru) translation to 77%
    
    New status: 41 messages complete with 1 fuzzy and 11 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0dc2f6e137ccce4926c1764a27fc2c1fe4bfa330
Author: Andres Kovtunos <kovtunos@yandex.ru>
Date:   Fri May 7 18:06:41 2010 +0200

    l10n: Updated Russian (ru) translation to 94%
    
    New status: 308 messages complete with 6 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 39e03a37ba60e4884982203a00eba28695442bcc
Author: Andres Kovtunos <kovtunos@yandex.ru>
Date:   Fri May 7 17:58:36 2010 +0200

    l10n: Updated Russian (ru) translation to 94%
    
    New status: 308 messages complete with 2 fuzzies and 17 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6b88b2046b6beff244ac070943ce8d7b9e5408d3
Author: Andres Kovtunos <kovtunos@yandex.ru>
Date:   Fri May 7 17:49:13 2010 +0200

    l10n: Updated Russian (ru) translation to 93%
    
    New status: 305 messages complete with 2 fuzzies and 20 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 43352a928cb731512721a9af9f0de552bd9c5d7b
Author: Andres Kovtunos <kovtunos@yandex.ru>
Date:   Fri May 7 14:50:03 2010 +0200

    l10n: Updated Russian (ru) translation to 91%
    
    New status: 299 messages complete with 6 fuzzies and 22 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0b177360d63cb0c8233f03bf8ab807a88d38fd7d
Author: Piarres Beobide <pi@beobide.net>
Date:   Fri May 7 10:59:23 2010 +0200

    l10n: Updated Basque (eu) translation to 99%
    
    New status: 324 messages complete with 0 fuzzies and 3 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 50c9adc1523c5f00ae50e0c5d4f1922a6ac28289
Author: Piarres Beobide <pi@beobide.net>
Date:   Fri May 7 10:44:49 2010 +0200

    l10n: Updated Basque (eu) translation to 92%
    
    New status: 304 messages complete with 0 fuzzies and 23 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7846cd56b0950f6dbf9a421b2a6b94c411c9cd7d
Author: Piarres Beobide <pi@beobide.net>
Date:   Thu May 6 10:48:17 2010 +0200

    l10n: Updated Basque (eu) translation to 92%
    
    New status: 304 messages complete with 0 fuzzies and 23 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 840aa5d5b7592cdaa6bd964b225c4829ebfb61da
Author: Piarres Beobide <pi@beobide.net>
Date:   Thu May 6 10:41:12 2010 +0200

    l10n: Updated Basque (eu) translation to 92%
    
    New status: 304 messages complete with 0 fuzzies and 23 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c6754ad013983396c1399d137c812275fc160f78
Author: Piarres Beobide <pi@beobide.net>
Date:   Thu May 6 10:36:35 2010 +0200

    l10n: Updated Basque (eu) translation to 90%
    
    New status: 296 messages complete with 3 fuzzies and 28 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 77dc2fcb7b0c543c5cf83384b0c631b5ced48db3
Author: Piarres Beobide <pi@beobide.net>
Date:   Thu May 6 10:31:01 2010 +0200

    l10n: Updated Basque (eu) translation to 83%
    
    New status: 272 messages complete with 13 fuzzies and 42 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b8b078883e9dbb51d96e0736f23f8a9a164a20a5
Author: Piarres Beobide <pi@beobide.net>
Date:   Thu May 6 10:25:39 2010 +0200

    l10n: Updated Basque (eu) translation to 75%
    
    New status: 248 messages complete with 29 fuzzies and 50 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e020a231b073b1d39596dc5bd2238034035b3470
Author: Piarres Beobide <pi@beobide.net>
Date:   Thu May 6 10:20:42 2010 +0200

    l10n: Updated Basque (eu) translation to 69%
    
    New status: 227 messages complete with 37 fuzzies and 63 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit bb6c38a2b6d2087ba5e8f688b551e5ca7dec8f0e
Author: Piarres Beobide <pi@beobide.net>
Date:   Wed May 5 12:02:35 2010 +0200

    l10n: Updated Basque (eu) translation to 67%
    
    New status: 221 messages complete with 42 fuzzies and 64 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 9ddfa3aee81b26edecc3c9cc92c74f340f1b7b88
Author: Piarres Beobide <pi@beobide.net>
Date:   Wed May 5 11:59:29 2010 +0200

    l10n: Updated Basque (eu) translation to 65%
    
    New status: 213 messages complete with 44 fuzzies and 70 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8de92dbecc33fbe4a4a73e5bc58e84b4e11d1b10
Author: Piarres Beobide <pi@beobide.net>
Date:   Wed May 5 11:59:05 2010 +0200

    l10n: Updated Basque (eu) translation to 65%
    
    New status: 213 messages complete with 44 fuzzies and 70 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ee6cec1568d0874e7ca9c6cc4de652b238fa1fac
Author: Piarres Beobide <pi@beobide.net>
Date:   Wed May 5 11:47:04 2010 +0200

    l10n: Updated Basque (eu) translation to 62%
    
    New status: 205 messages complete with 44 fuzzies and 78 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a8c38ea8ab64da33842ca157f0824e54a2655142
Author: Piarres Beobide <pi@beobide.net>
Date:   Wed May 5 11:42:12 2010 +0200

    l10n: Updated Basque (eu) translation to 56%
    
    New status: 184 messages complete with 51 fuzzies and 92 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4b9dc17ce1220a5c689edd4d659bbcfb6f16b5c9
Author: Carles Muñoz Gorriz <carlesmu@internautas.org>
Date:   Tue May 4 21:08:45 2010 +0200

    l10n: Initial Catalan (ca) translation.
    
    New status: 53 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3708951cd9b24f661ec1fe1231a7711b4bd4b215
Author: Carles Muñoz Gorriz <carlesmu@internautas.org>
Date:   Tue May 4 20:26:42 2010 +0200

    l10n: Updated Catalan (Valencian) (ca) translation to 100%
    
    New status: 327 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c794816174357051345a66f425971d720fb171a1
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Tue May 4 18:35:11 2010 +0200

    l10n: Updated Galician (gl) translation to 84%
    
    New status: 45 messages complete with 1 fuzzy and 7 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 50ff2770d866f3e0e195186422e509a85368815f
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Tue May 4 18:30:28 2010 +0200

    l10n: Galician translation created
    
    New status: 26 messages complete with 1 fuzzy and 26 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c1f55cf645f4b80d10d04b29b97e6d85ce5a304e
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Tue May 4 18:18:59 2010 +0200

    l10n: Updated Galician (gl) translation to 94%
    
    New status: 309 messages complete with 0 fuzzies and 18 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d28a132bd0bfd6340fdfdb9d95113080ac1e44d0
Author: 微 尘 <yjwork@189.cn>
Date:   Tue May 4 04:28:53 2010 +0200

    l10n: Updated Chinese (China) (zh_CN) translation to 90%
    
    New status: 295 messages complete with 10 fuzzies and 22 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7474839f2ef795a4fa1668d520782f310e8d4018
Author: Sveinn í Felli <sveinki@nett.is>
Date:   Mon May 3 14:39:59 2010 +0200

    l10n: fyrsta keyrsla
    
    New status: 9 messages complete with 118 fuzzies and 200 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 698a429274f2a2eda91c2af1a3c4f1ba2786fd83
Author: Denis Koryavov <dkoryavov@yandex.ru>
Date:   Fri Apr 30 22:53:22 2010 +0200

    l10n: Updated Russian (ru) translation to 43%
    
    New status: 23 messages complete with 0 fuzzies and 30 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a5361c262a189af761c5de93888f8a771c60c0a6
Author: Denis Koryavov <dkoryavov@yandex.ru>
Date:   Fri Apr 30 22:30:17 2010 +0200

    l10n: Updated Russian (ru) translation to 90%
    
    New status: 295 messages complete with 10 fuzzies and 22 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7020e40bd95aea21f0e5e93046262df1647b4856
Author: Andres Kovtunos <kovtunos@yandex.ru>
Date:   Thu Apr 29 21:06:43 2010 +0200

    l10n: Initial Russian
    
    New status: 0 messages complete with 0 fuzzies and 53 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6f3f0cf929a35cb07f72c097f92354fa1ed75c4e
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Apr 29 16:04:48 2010 +0200

    Load the xfce-applications.menu as default.

commit 62b86c08dcf3bb104376a71843c092806caf6e6d
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Apr 18 20:43:52 2010 +0200

    Improve handing when plugins are unrealized.
    
    Force a quit of an unrealized plugin, so it can be properly
    restarted when realized again. Also add some debugging
    information for this.

commit 1cb46cb53d06ff42624e70c6d76253ea57e58364
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Apr 18 18:11:55 2010 +0200

    Empty channel if 4.6 migration failed.

commit ae14d9374189bb73dc05e9623877de4cfb757744
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Apr 15 18:09:17 2010 +0200

    Another try to fix the border positions.

commit ee2e2534ac0f9948a4b4d6bbcc1f579c9904a688
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Apr 15 18:03:10 2010 +0200

    Fix rounding issues in panel borders.

commit 661b6d299356eb8ff6688bbaf86eb61b4211960d
Author: Denis Koryavov <dkoryavov@yandex.ru>
Date:   Tue Apr 13 10:44:37 2010 +0200

    l10n: Updated Russian (ru) translation to 88%
    
    New status: 291 messages complete with 10 fuzzies and 26 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0ffcc0236efcc90131e715b0fc38ffe834e891ff
Author: Abel Martín <abel.martin.ruiz@gmail.com>
Date:   Mon Apr 12 09:21:10 2010 +0200

    l10n: Updated Spanish (Castilian) (es) translation to 100%
    
    New status: 327 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2296e82eebf276c0697d27c0405245d42ab4c341
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Fri Apr 9 11:20:46 2010 +0200

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 327 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6f46c2b49f6ca99236ac128bd9e1346961bf4514
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Thu Apr 8 15:36:21 2010 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 327 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit be5fb06da4eeb37c1c75cf5f357f814b8e9a0b91
Author: Xu Meihong <mhuntxu@gmail.com>
Date:   Thu Apr 8 00:01:32 2010 +0200

    l10n: Add Simplified Chinese translation
    
    New status: 53 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c6f9d1d8b5acdab2297d0b18e4069b2c2d2899fb
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Wed Apr 7 23:19:18 2010 +0200

    l10n: Updated Portuguese (pt) translation to 99%
    
    New status: 326 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 1f3794aa0d298ec1baba579ed212ba5a13ca2778
Author: Denis Koryavov <dkoryavov@yandex.ru>
Date:   Wed Apr 7 08:45:57 2010 +0200

    l10n: Updated Russian (ru) translation to 86%
    
    New status: 283 messages complete with 14 fuzzies and 30 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 31ef9af950f6141c1ef7e2f9784550521ae78dd3
Author: Denis Koryavov <dkoryavov@yandex.ru>
Date:   Wed Apr 7 08:41:50 2010 +0200

    l10n: Updated Russian (ru) translation to 85%
    
    New status: 280 messages complete with 14 fuzzies and 33 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 241d62dca11e12477a0b81d313a9b3b5d4779785
Author: A S  Alam <apreet.alam@gmail.com>
Date:   Mon Apr 5 04:16:08 2010 +0200

    l10n: Updated Panjabi (Punjabi) (pa) translation to 91%
    
    New status: 298 messages complete with 0 fuzzies and 29 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 981257cadac97cac740905ebc4db131850109ec1
Author: Jamil Ahmed <itsjamil@gmail.com>
Date:   Fri Apr 2 19:52:16 2010 +0200

    l10n: Bengali Translation.
    
    New status: 53 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8b97bca3ba26c81be31c4a4ebe44d056abe416df
Author: gapan <vlahavas@gmail.com>
Date:   Thu Apr 1 21:52:45 2010 +0200

    l10n: Updated Greek (el) translation to 46%
    
    New status: 151 messages complete with 174 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 15760f78e169f08631bf081ff7b52fca6a72da2d
Author: Jamil Ahmed <itsjamil@gmail.com>
Date:   Thu Apr 1 11:47:43 2010 +0200

    l10n: Updated Bengali (bn) translation to 100%
    
    New status: 327 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c513e9d0107ecbb7d0b880a707527f39ebedf964
Author: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
Date:   Wed Mar 31 09:51:32 2010 +0200

    l10n: Updated Finnish (fi) translation to 100%
    
    New status: 327 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 7fb43abdd5ebcb0aedb860940d3f411e8ae4f55f
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Wed Mar 31 05:50:06 2010 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 327 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0410a8a8ac780784e6573a0f141196c33ae43aa8
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Wed Mar 31 00:21:17 2010 +0200

    l10n: Updated Danish (da) translation to 100%
    
    New status: 327 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5c4c9f52ac2e9e4507eca803995fdb3d38824c77
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Mar 30 19:50:39 2010 +0200

    Fix typos mentioned in bug #6350.

commit 15b829a4bdd15cde8bfe64af2cd608bcabdbe2ae
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Mon Mar 29 16:25:51 2010 +0200

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 327 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a9cb9616fd9f13437a662f7efff572c12f959ef7
Author: Abel Martín <abel.martin.ruiz@gmail.com>
Date:   Mon Mar 29 12:44:27 2010 +0200

    l10n: Updated Spanish (Castilian) (es) translation to 100%
    
    New status: 327 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a449f46192a7b829faacb580a71f213f6f041fcc
Author: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
Date:   Mon Mar 29 10:56:42 2010 +0200

    l10n: Updated Finnish (fi) translation to 100%
    
    New status: 327 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4c18e04226c45a6979496f99ca62a2f1d8e1db41
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Mon Mar 29 04:31:03 2010 +0200

    l10n: Updated Danish (da) translation to 100%
    
    New status: 327 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8702f701cfab627968a89fa85bb603eb80fc5d3a
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Mon Mar 29 04:27:33 2010 +0200

    l10n: Updated Danish (da) translation to 98%
    
    New status: 323 messages complete with 1 fuzzy and 3 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b59955b811ea2568706c65d72a5b2119f04b6e47
Author: Abel Martín <abel.martin.ruiz@gmail.com>
Date:   Sun Mar 28 22:28:29 2010 +0200

    l10n: Updated Spanish (Castilian) (es) translation to 100%
    
    New status: 325 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e2e245bc2d7217a2dde556c2b81f84708ca2ab25
Author: Abel Martín <abel.martin.ruiz@gmail.com>
Date:   Sun Mar 28 22:26:24 2010 +0200

    l10n: Updated Spanish (Castilian) (es) translation to 99%
    
    New status: 324 messages complete with 1 fuzzy and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e89e8a2930e162582e57e9dace0a4364ccd361b0
Author: Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>
Date:   Sun Mar 28 19:42:00 2010 +0200

    l10n: Updated German (de) translation to 52%
    
    New status: 172 messages complete with 120 fuzzies and 35 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 391f65045dd583fcd63213fc23e9ea7d8c8b1b88
Author: Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>
Date:   Sun Mar 28 19:39:30 2010 +0200

    l10n: Updated German (de) translation to 48%
    
    New status: 159 messages complete with 133 fuzzies and 35 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 23ce2805d54df0ae3319af6aaa884ed601332df3
Author: Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>
Date:   Sun Mar 28 19:31:21 2010 +0200

    l10n: Updated German (de) translation to 48%
    
    New status: 159 messages complete with 133 fuzzies and 35 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 40d19466e721b2c45d0357664fb129dcdd75da21
Author: Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>
Date:   Sun Mar 28 19:29:58 2010 +0200

    l10n: Updated German (de) translation to 48%
    
    New status: 157 messages complete with 133 fuzzies and 37 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ac2620cda146e720cebf15f0d84096ca2e8a2531
Author: Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>
Date:   Sun Mar 28 19:28:31 2010 +0200

    l10n: Updated German (de) translation to 48%
    
    New status: 157 messages complete with 133 fuzzies and 37 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0f67119a01bc5e973b4a89c05ff45b00c6cbe233
Author: Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>
Date:   Sun Mar 28 19:25:22 2010 +0200

    l10n: Updated German (de) translation to 48%
    
    New status: 157 messages complete with 133 fuzzies and 37 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit c1e63cbe1144659191be7d8ae4c9258568a158df
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 28 18:36:17 2010 +0200

    Post release tag bump.

commit 313539506cfa67f9ca735e9fed86c20042438421
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 28 18:33:07 2010 +0200

    Updates for release.

commit d3f0e1e91077ee298dd387ce388c6597f48ca6f8
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 28 18:20:21 2010 +0200

    Use gtk_widget_get_ancestor() instead of custom function.

commit f6bda093df202543d93c2097ec74e22e361f8749
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 28 18:10:55 2010 +0200

    Set icon geometries for the tasklist buttons.

commit 66fa916a615e39d4c289a8a75a8086aa74bf116d
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 28 17:43:15 2010 +0200

    Rename variable in tasklist.

commit 85613f8e5d531a241abba05fe2df9d72bc1e14a8
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 28 17:33:36 2010 +0200

    Add option to fix the length of the panel.
    
    The allows a fixed length of the panel, which if the new
    alternative of the fixed size in the tasklist plugin.
    It can be misused if you set the length of the panel to something
    smaller then the size the plugins minimally need.

commit 2e9c4c4edf1fd2967288a451bfc95bb8b99fd877
Author: Dmitrij Smirnov <arch@cnc-parts.info>
Date:   Sun Mar 28 16:46:56 2010 +0200

    l10n: Updated Russian (ru) translation to 80%
    
    New status: 263 messages complete with 29 fuzzies and 33 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 32eb23e0489125fc40939156846b82e518558a8f
Author: Piarres Beobide <pi@beobide.net>
Date:   Fri Mar 26 13:50:34 2010 +0100

    l10n: Updated Basque (eu) translation to 49%
    
    New status: 161 messages complete with 60 fuzzies and 104 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 16d9d9d41ebbc07808e5b9f0d8d0fb3e2f945c95
Author: Piarres Beobide <pi@beobide.net>
Date:   Fri Mar 26 13:38:15 2010 +0100

    l10n: Updated Basque (eu) translation to 44%
    
    New status: 145 messages complete with 68 fuzzies and 112 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4ddc17b711030000d995a601ed312dc6153160f9
Author: Piarres Beobide <pi@beobide.net>
Date:   Fri Mar 26 13:31:12 2010 +0100

    l10n: Updated Basque (eu) translation to 38%
    
    New status: 126 messages complete with 75 fuzzies and 124 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ad6730e5c98e2c753ebb05275e76f733ed32134f
Author: Piarres Beobide <pi@beobide.net>
Date:   Fri Mar 26 13:15:48 2010 +0100

    l10n: Updated Basque (eu) translation to 32%
    
    New status: 107 messages complete with 82 fuzzies and 136 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 56e3b2826e79413e4686b0a5bee44462858af74e
Author: Piarres Beobide <pi@beobide.net>
Date:   Fri Mar 26 13:07:56 2010 +0100

    l10n: Updated Basque (eu) translation to 26%
    
    New status: 87 messages complete with 90 fuzzies and 148 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d5515ee7855e1b10f1d91e4b77321a60899316b5
Author: Piarres Beobide <pi@beobide.net>
Date:   Fri Mar 26 12:59:43 2010 +0100

    l10n: Updated Basque (eu) translation to 20%
    
    New status: 67 messages complete with 98 fuzzies and 160 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5a300eb7da364154cf66fd156ad178e25e355c5f
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Fri Mar 26 08:24:02 2010 +0100

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 325 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5b6fad67c82efa3a51f114498a30e5315267b7a2
Author: Evaggelos Balaskas <ebalaskas@ebalaskas.gr>
Date:   Thu Mar 25 22:53:59 2010 +0100

    l10n: Updated Greek (el) translation to 44%
    
    New status: 143 messages complete with 180 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6470295056708825b585c1b108271269275f29dc
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Thu Mar 25 05:01:46 2010 +0100

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 325 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5b1143b21df6d8b1082e8ca59db604e44a44a9a7
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Mar 24 19:17:50 2010 +0100

    Don't use Gtk 2.18 API.

commit 283d8fc7c7a728ac8af66bafdf854d97143e17af
Author: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
Date:   Wed Mar 24 11:42:34 2010 +0100

    l10n: Updated Finnish (fi) translation to 100%
    
    New status: 325 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit dbda8ee64f602a415ed1d8df6322de08dcbdb344
Author: Nick Schermer <nick@xfce.org>
Date:   Tue Mar 23 20:38:25 2010 +0100

    Add hidden game.

commit 6268b05c44ffffa1dd3f2366b7e7af9972b79fe8
Author: Matthew Turnbull <sparkybluefang@gmail.com>
Date:   Mon Mar 22 18:14:03 2010 +0100

    Fix segfault when directory is NULL (bug #6336).

commit a029a86ccb4c06bd6e29fb3b0f34cca5f6155212
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 21 16:23:46 2010 +0100

    Change order of plugin signals on startup.
    
    Most plugins do most of the work in the size-changed signal,
    so make that the last property that is set on a plugin startup.

commit 7cbf8ebfe94b89582f2263e54ae7f7dade8ec6ec
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Mar 20 22:33:40 2010 +0100

    Handle window autohide blocking in application.

commit 52d781745d80b342fcbf5b6af9d0854c13635d2d
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Sat Mar 20 14:12:02 2010 +0100

    l10n: New po file for Italian translation
    
    New status: 53 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 32e0036f856612fdfc3e744c54cb3d1a49e06ef4
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date:   Sat Mar 20 12:59:43 2010 +0100

    Add support for dragging menu items to create launchers (bug #2896).

commit 404bc966e232421c6613d78cae6aae280b3c4812
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Mar 17 19:25:19 2010 +0100

    Add scroll support to switch between windows in tasklist.

commit 26c9d2662ceb281bb8576ac10e6b856f324cd25e
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Mar 17 17:41:41 2010 +0100

    Add drag activate for window buttons in the tasklist.

commit 84c7d9fff442cefcca19089c672a9dd842560347
Author: kpgtharaka <kpgtharaka@gmail.com>
Date:   Tue Mar 16 07:14:02 2010 +0100

    l10n: Updated Sinhala (si) translation to 100%
    
    New status: 319 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 379febd9df538a2707963f34ec1ff4beab29182d
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 14 20:54:31 2010 +0100

    Fix expand overflow (bug #6312).

commit 35e82f15d72109ec0c39d72035b7eab3134a29fc
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 14 19:52:49 2010 +0100

    Add some more checks in the 4.6 macro.

commit 097baaf3c366822485774e9fa87289f0ce288719
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 14 18:20:04 2010 +0100

    Improve debugging in external plugins.

commit 1f920bb698455a7d504003c00fba2727b31a010e
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 14 17:45:26 2010 +0100

    Handle pager orientation.

commit 3de49f5f5d99e7b590cd96fc86b25b3e01606079
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 14 17:34:56 2010 +0100

    Restore old workspace scroll behaviour (bug #6271).
    
    We use the neighbor functiononality in wnck for scrolling,
    but this does not work for most people and is not the
    way xfwm4 handles root scroll event.
    Restore old behaviour like in the 4.6 panel.

commit 7bf7d77f53c45629a57f0466ae470d7314eaa643
Author: Kalpa Pathum Welivitigoda <callkalpa@gmail.com>
Date:   Sun Mar 14 16:57:14 2010 +0100

    l10n: Updated Sinhala (si) translation to 99%
    
    New status: 317 messages complete with 0 fuzzies and 2 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 28119481f5942aa5b20ab8526699036059f7f173
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 14 11:44:26 2010 +0100

    Improve manual Makefile.
    
    Add some better checks and quote all filenames.

commit 2791f72621e082b515f7a49a09cfec56ff599c00
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 14 10:45:18 2010 +0100

    Use GTK_WIDGET_SENSITIVE.

commit c028541dd69889871ad91fe3af7516190a3c3659
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sun Mar 14 10:39:19 2010 +0100

    l10n: Updated Kazakh (kk) translation to 100%
    
    New status: 319 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 04b9c7e531028273813467e020bda2c44c1cd938
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 14 10:34:38 2010 +0100

    Fix typo.

commit aeb9a29c3cebed38994654afcb44a45370ba79b1
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sat Mar 13 11:49:10 2010 +0100

    l10n: Updated Kazakh (kk) translation to 74%
    
    New status: 238 messages complete with 21 fuzzies and 60 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8cd876be9a54939ab32b35717d2e35381c772bb4
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Fri Mar 12 08:05:21 2010 +0100

    l10n: Updated Kazakh (kk) translation to 66%
    
    New status: 212 messages complete with 40 fuzzies and 67 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit bc9b106cd660afdc22a5a4dd079a216c2c9eed9d
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Fri Mar 12 05:33:01 2010 +0100

    l10n: Updated Kazakh (kk) translation to 60%
    
    New status: 193 messages complete with 59 fuzzies and 67 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d168066d3dc8ae112df6b33e8164394c8d6c0087
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Mar 11 20:35:54 2010 +0100

    Support remote event replies from the wrapper.
    
    Because of the dbus signal we cannot return the reply
    of the remote event, so add a method and handle ids to
    reply to the panel.
    When an implementation of the panel plugin provider returns
    a handle, the dbus service waits for the reply before it
    continues.

commit 8a1c651625c0c069da8aef7486ce8f1eaef819d6
Author: Alexander Matveyev <a.s.matveyev@gmail.com>
Date:   Thu Mar 11 11:26:50 2010 +0100

    l10n: Updated Russian (ru) translation to 79%
    
    New status: 253 messages complete with 33 fuzzies and 33 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e9d42621bbb05fd156a7331d713dd13aecba60d7
Author: Alexander Matveyev <a.s.matveyev@gmail.com>
Date:   Thu Mar 11 11:23:06 2010 +0100

    l10n: Updated Russian (ru) translation to 78%
    
    New status: 250 messages complete with 33 fuzzies and 36 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f9e8f94523b4c3f400d9cabd8cb036a64498d157
Author: Cristian Marchi <cri.penta@gmail.com>
Date:   Wed Mar 10 19:35:09 2010 +0100

    l10n: Updated Italian (it) translation to 100%
    
    New status: 319 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5276ca2c1af84d58e7783a3156ee88727b6e31ce
Author: Dmitry Nikitin <luckas_fb@mail.ru>
Date:   Tue Mar 9 13:14:32 2010 +0100

    l10n: Updated Ukrainian (uk) translation to 95%
    
    New status: 306 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit bc723f991992afcc2f639372d3574e258eb48520
Author: Dmitry Nikitin <luckas_fb@mail.ru>
Date:   Tue Mar 9 12:59:11 2010 +0100

    l10n: Updated Ukrainian (uk) translation to 95%
    
    New status: 306 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 22032979a3b73b22fd89ac5f832a2e0784e7609a
Author: Dmitry Nikitin <luckas_fb@mail.ru>
Date:   Tue Mar 9 12:54:59 2010 +0100

    l10n: Updated Ukrainian (uk) translation to 95%
    
    New status: 306 messages complete with 0 fuzzies and 13 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d9fb95a1e77c3a181960aad0fb1064cd75df91f1
Author: Dmitry Nikitin <luckas_fb@mail.ru>
Date:   Tue Mar 9 12:52:10 2010 +0100

    l10n: Updated Ukrainian (uk) translation to 93%
    
    New status: 299 messages complete with 6 fuzzies and 14 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3593965dded0ce8a00a4bb2368e6a899f1bfd134
Author: Dmitry Nikitin <luckas_fb@mail.ru>
Date:   Tue Mar 9 12:43:52 2010 +0100

    l10n: Updated Ukrainian (uk) translation to 91%
    
    New status: 291 messages complete with 11 fuzzies and 17 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a6221eb758eb15479c1717c815b8a17ad4f3f918
Author: Dmitry Nikitin <luckas_fb@mail.ru>
Date:   Tue Mar 9 12:21:23 2010 +0100

    l10n: Updated Ukrainian (uk) translation to 78%
    
    New status: 251 messages complete with 27 fuzzies and 41 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5e266c40d836d994862af6501888d1391845aac6
Author: Dmitry Nikitin <luckas_fb@mail.ru>
Date:   Tue Mar 9 11:31:52 2010 +0100

    l10n: Updated Ukrainian (uk) translation to 57%
    
    New status: 184 messages complete with 51 fuzzies and 84 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d0b25103d98facc0027004b9ac8cb0eb132f7557
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 7 22:41:59 2010 +0100

    Fix previous commit.
    
    We always need to reorder the tasklist, but only change
    the visibility when not all workspaces are shown.

commit a4acef57d47a0f4c260022f9502bba3cca334b60
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 7 22:05:09 2010 +0100

    Properly rebuild tasklist if a windows' workspace changed.

commit 335dd9e5a3f2656b2da901206661a2205f25f0fc
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 21:05:57 2010 +0100

    Make the always group functionality work.

commit 1d006afc7ce4c38eadf75c4e5b1ae01539289a04
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 7 15:09:11 2010 +0100

    Fail when compiling with --enable-gen-doc, but checks failed.
    
    Also improve the configure output if there are html docs
    supplied in the package.

commit 99127d1d3cd31ba138c0f94ccd35a92c8163f936
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Mar 7 13:22:36 2010 +0100

    Fix handling of custom menu items.
    
    Custom menu items were destroyed before they were shown. Store
    the menu items in an internal list and take ownership until
    the plugin is closed.

commit 3548ff0b90d94b8c6b654660043ba30654f3c38a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Mar 5 22:31:38 2010 +0100

    Add Mallard page for theming (only reminder for now).

commit f00433845c96e04fc141f1820851431bae3f65de
Author: Dmitrij Smirnov <arch@cnc-parts.info>
Date:   Sun Mar 7 10:49:48 2010 +0100

    l10n: Updated Russian (ru) translation to 76%
    
    New status: 245 messages complete with 31 fuzzies and 43 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit cf6fecaa8f000392a85fbf1cec22b8da6868d7ab
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Fri Mar 5 22:55:43 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 319 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 11d9a17c60349d5f584ca1c6847f2fdc704ff72e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Mar 5 22:20:05 2010 +0100

    Only return default title in applications menu is NULL.

commit f19e14c93783673cdb432ee18661dcc0003c1aca
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Mar 5 18:45:42 2010 +0100

    Rename wrapper and 4.6 external names a bit.

commit 1bcdb78a1416873b851c39db31723f34caff5a09
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Mar 5 18:33:46 2010 +0100

    Give panel windows good theming names (bug #6268).

commit 326ebbe3b61b655adefad10cd7a0472d60758963
Author: Mike Massonnet <mmassonnet@xfce.org>
Date:   Fri Mar 5 18:22:56 2010 +0100

    Restore button label binding in applications menu (bug #6277).

commit b855da98475b1776aeef3d9d0b851c2d452a912a
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Fri Mar 5 17:50:03 2010 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 319 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 349522784913d8a54a0dfd6fc7353a63114c33ef
Author: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
Date:   Fri Mar 5 11:52:46 2010 +0100

    l10n: Updated Finnish (fi) translation to 100%
    
    New status: 319 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 0ca54af6cf1bd52e66d248b2f7e4ca0ab150fce0
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Mar 4 22:45:35 2010 +0100

    Restart external plugins on compositing changes.
    
    This makes the whole thing more reliable. Switching
    compositing on-the-fly for sockets is a bit tricky.

commit b6421c95be7527e271c10c929d28eb3d502510cf
Author: Nick Schermer <nick@xfce.org>
Date:   Thu Mar 4 19:21:44 2010 +0100

    Properly handle exit status.

commit 24fcc04fd13d4c4c06adfcfaa8ca32ba53e70822
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Mar 3 21:49:47 2010 +0100

    Fix previous commit.

commit cffb3690cd8808f628f4b3c95cd379cdebaa11fc
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Mar 3 21:47:07 2010 +0100

    Fix icon button allocation in tasklist (bug #6269).

commit 244766eca38a780062660bdc96179a0f9013bae0
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Mar 3 21:26:35 2010 +0100

    Add option to application menu to show tooltips.
    
    The tooltips will contain the application description/comment
    from the desktop file.

commit 5af056df4bb0906c16f2a47426d7debd8ed3d48c
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Mar 3 21:11:35 2010 +0100

    Store the drop highlight position (bug #6270).
    
    This avoid the actual drop is at another position on the panel.

commit 266490fa59e5d4f1a39b4cc31035e73bfd899e97
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Mar 3 20:53:37 2010 +0100

    Add existing windows in the tasklist (bug #6273).

commit 4b93802e73e47c587b3d7048241d3e981866042d
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Mar 3 20:52:39 2010 +0100

    Give 4.6 plugin plug a widget name too.

commit 0766a580b6e102c502458a1323d9e7061ecc52c3
Author: Nick Schermer <nick@xfce.org>
Date:   Wed Mar 3 20:43:04 2010 +0100

    Give the wrapper a widget name for theming (bug #6268).

commit aba07f6f20a54d1b810b67af1ddabc193e59e65a
Author: Jamil Ahmed <itsjamil@gmail.com>
Date:   Wed Mar 3 11:26:43 2010 +0100

    l10n: Added Bengali translation.
    
    New status: 271 messages complete with 9 fuzzies and 38 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3f724b076c6010bf06a8a9e4613d550cc8b4e892
Author: Alexander Matveyev <a.s.matveyev@gmail.com>
Date:   Tue Mar 2 12:40:57 2010 +0100

    l10n: Updated Russian (ru) translation to 51%
    
    New status: 164 messages complete with 69 fuzzies and 85 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f7bcec82987b9583dbfa643578788098f660d5a7
Author: Robert Hartl <hartl.robert@gmail.com>
Date:   Tue Mar 2 10:02:47 2010 +0100

    l10n: Updated Slovak (sk) translation to 60%
    
    New status: 191 messages complete with 29 fuzzies and 98 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ae890d603e8a0f63fd6af4c7d1343cbf1667c3fd
Author: Nick Schermer <nick@xfce.org>
Date:   Mon Mar 1 19:26:25 2010 +0100

    Set desktop type when migrating 4.6 launchers.

commit 436f9e9d4386b87f4a690f7c8e95a07019014929
Author: Alexander Matveyev <a.s.matveyev@gmail.com>
Date:   Mon Mar 1 14:09:23 2010 +0100

    l10n: Updated Russian (ru) translation to 50%
    
    New status: 160 messages complete with 65 fuzzies and 93 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e1834b2f7da8e981374b5b39bce3178234023195
Author: Alexander Matveyev <a.s.matveyev@gmail.com>
Date:   Mon Mar 1 11:35:16 2010 +0100

    l10n: Updated Russian (ru) translation to 49%
    
    New status: 158 messages complete with 65 fuzzies and 95 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 179f3e156a0b8769c05cd1700e9b580f9993618c
Author: Alexander Matveyev <a.s.matveyev@gmail.com>
Date:   Mon Mar 1 11:22:53 2010 +0100

    l10n: Updated Russian (ru) translation to 48%
    
    New status: 153 messages complete with 66 fuzzies and 99 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit f33c0c1eda2a6d81d35921e1c377c7774ac30a79
Author: Alexander Matveyev <a.s.matveyev@gmail.com>
Date:   Mon Mar 1 11:09:54 2010 +0100

    l10n: Updated Russian (ru) translation to 45%
    
    New status: 145 messages complete with 69 fuzzies and 104 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit a64be5de0c060e30d8c388b8b0412ec582be55d9
Author: Alexander Matveyev <a.s.matveyev@gmail.com>
Date:   Mon Mar 1 11:01:15 2010 +0100

    l10n: Updated Russian (ru) translation to 44%
    
    New status: 141 messages complete with 69 fuzzies and 108 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit de3c28a0d05a9117fcab4427fbffde0256b9d324
Author: Nick Schermer <nick@xfce.org>
Date:   Sun Feb 28 11:55:44 2010 +0100

    Use exo desktop file names in default config.

commit 634455eb1c9d17277680e093860a794513d9ebf8
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 27 20:59:51 2010 +0100

    Post release tag bump.

commit 9675293142a4222fba89dc3090165f307cad2772
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 27 20:57:43 2010 +0100

    Updates for release.

commit b0c10586a482635e5cb8343535ec9de8627446e3
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 27 20:55:13 2010 +0100

    Placeholder should not be translated.

commit 8adba89c4b84a20b11e7f9356a1360dc8c6de80c
Author: Nick Schermer <nick@xfce.org>
Date:   Sat Feb 27 20:51:56 2010 +0100

    Drop the foo.po file.

commit 2a929a1cac992586a3cfe539f5b7c276eb0ee951
Author: Aleksandr Ponomarenko <dwqwt3i02@sneakemail.com>
Date:   Sat Feb 27 20:31:44 2010 +0100

    l10n: Updated Russian (ru) translation to 42%
    
    New status: 136 messages complete with 70 fuzzies and 112 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit b20da5a138e26e244bccbeb8223264832b1217c5
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Sat Feb 27 16:47:12 2010 +0100

    l10n: Initial Danish manual
    
    New status: 53 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fa4d3a354ffa34bb03bec5c65ef2829eb35a59af
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 21:01:36 2010 +0100

    Update NEWS file.

commit d8d0c5dfad22e20ea946df7506bd4cd6065fe12c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 20:58:42 2010 +0100

    Bump some deps to the latest version of the devel release.

commit 3ab7d9cee511a97b25e2f42e78e3626d04024d06
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 16:23:45 2010 +0100

    Depend on latest release of Garcon.
    
    There are some quite serious leaks plugged in this release that
    affect the panel a lot.

commit 701ee2617530e4073367cd5557ebca38000c1cee
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:20:18 2010 +0100

    Only include up to the xfce-4.6-master tag in the ChangeLog.

commit fc37d2cfd62f6e04747e537f2e1ecad339bb4185
Merge: 4b94e4aab 40c8bb66f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:13:05 2010 +0100

    Merge branch 'devel'

commit 40c8bb66f728660745e8d48f5d584e1468f49fbe
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:35 2010 +0100

    Take viewport in account in tasklist.
    
    Also move the visibility check into a function instead
    of macro to make it easier to understand. Also fix
    problem when changing the 'only minimized' and 'all
    workspace' settings.

commit 86e920538f7b517d8736392ac75df8fed63418c6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:35 2010 +0100

    Use canonical widget names.

commit 344af35793882df6fd6ddb09a567c64c4091e537
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:35 2010 +0100

    Add insensitive state to the panel image.

commit 9292226f83dd8e947cec046a9db81e8bc7dc7ef6
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Fri Feb 26 14:08:35 2010 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 318 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 16811ff552daf66c40751e499c74d35fea32b5c4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:35 2010 +0100

    Fix some other paddings in glade files.

commit bb3fce2ca542287e61e742d20d1e3bedcf08cfee
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:35 2010 +0100

    Hide workspace button if command is not found.
    
    Also fix some alignments in the glade file.

commit 897cc7e7c60ecd56a8763b4e0ca903a679ffdb58
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:35 2010 +0100

    Link to -lm.

commit d0b1affadfba0fa3c6c2942e0059f736e4915cde
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:35 2010 +0100

    Avoid ending with a # in the help uri.

commit 610519f8a2878882b117b589c339f193bf40829f
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Fri Feb 26 14:08:35 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 318 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit e3178fa31b88c29306d6d892ea36ba79c74412aa
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:35 2010 +0100

    Wait for grab when running popup menus at pointer.
    
    Popup scripts doesn't really work if we don't wait until
    the pointer and keyboard grab is available.

commit 5362a49a7129e15763689c205dc1c8fd6ba2bf8d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:35 2010 +0100

    Rename panel-builder to panel-utils.

commit dcea6980f5f90c2c5dfc5f08698fb812f720c6f8
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Fri Feb 26 14:08:35 2010 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 313 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 036dc6ef42d6988a5e0b9dda8340682592d62dc4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    Add popup under cursor for window menu.

commit e22bb88cb7375c84d6496d2bcb1bedf683d517a4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    Add popup under cursor for directory menu.

commit eb09e532d4c06ca394c78190600babe6d8b7ceef
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    Add popup under cursor for applications menu.

commit 40c166858e842e0a7229d82a5a5c5c73000bb201
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    Use web-browser icon in the "Read Online" button.

commit 6cca664a7d31dabc00fd57c50cf8a1a068f7c1ef
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    Fix dist check.
    
    Fix rename from yesterday and include an empty po file
    else stuff won't build.

commit 1db06b0c657dd03d1cda75435ef67551bfd21cdb
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    Add help option to the popup shell scripts.

commit 08a1cbde14bfed2ac48405a7273ca91d9a213c92
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    Add help item to the Xfce Panel submenu of plugins.

commit 8b6e493ec9509fb3c3d8deaa4190aa08eb9f9377
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    Change binary colors.

commit 305d3b72031e352a12b527be1777571763330c22
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    Properly handle rounding in binary clock.

commit 494d5823d12c894907f0212af1dad71fa6beef6b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    Depend on gnome-doc-utils 0.19.2 for generating docs.
    
    The css command was added in 0.19.2.

commit e0696bb0a8d5ece404f09d0c534c9fe840d9ed05
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Fri Feb 26 14:08:34 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 311 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 957283581c163ff4d062ca9a4cca5b57aa7b5cf6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    Add some icons and rename to internal tasklist name.

commit 03f6b9f95a091216e232ab3db46bf442f5716ae9
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    It is Action Buttons.

commit 7966bbc3e1b11a1289a71bdd5a591a57c8490e99
Author: Vincent Tunru <projects@vinnl.nl>
Date:   Fri Feb 26 14:08:34 2010 +0100

    l10n: Updated Dutch (Flemish) (nl) translation to 100%
    
    New status: 311 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit cfb2e5d6c8376fa588aa6490a901f361217e5dd6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    Whoops, this was only for testing.

commit 927999f3d5f6be6b56dd3dcce2492d33ad7ebd15
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    Add I18N comments for labels in preferences dialog.

commit b9707f36c932c17f3ea3a1c2a3ad92a337003aca
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    Attach help buttons to manual pages.

commit 6622ba9447c5bab4bd41f0d2cb111b9be7bbc8cb
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    Add empty Mallard based documentation.
    
    Does not contain any usefull information, but it builds,
    is stuitable for po file translations and passes dist-check.

commit 43e0cb091de6493fbdba423b95e04ac373f08626
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:34 2010 +0100

    Give widget name to overflow button in tasklist.

commit 60dde4d4a2a4b54b2813ec52ef00cf6d723cae0e
Author: Evaggelos Balaskas <ebalaskas@ebalaskas.gr>
Date:   Fri Feb 26 14:08:34 2010 +0100

    l10n: Updated Greek (el) translation to 39%
    
    New status: 122 messages complete with 189 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5f3a5ddc9d8b5e853992e69f2577e8e8071c36a2
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:33 2010 +0100

    Always emit floating screen positions.
    
    This because the arrow direction is based on the position
    of the panel, so plugins need to update this.

commit 4cb5022252b54fb9d0ab94e15e3c31134c9c2bbb
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:33 2010 +0100

    Update screen position of plugins after a panel drag.

commit e6979bb9730ebc79b940d90fa076325dbdac9182
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:33 2010 +0100

    Change launcher menu launch from button release -> press.
    
    The avoids unwanted launches when the menu appears under the
    pointer on popup.

commit 8027b57a2f91c9414fd1550227d8984e0302cea0
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:33 2010 +0100

    Remove some useless menu destroys.

commit 4333bf17d62f460964e77decdf14f1f47451c011
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Fri Feb 26 14:08:33 2010 +0100

    l10n: Updated Galician (gl) translation to 96%
    
    New status: 274 messages complete with 1 fuzzy and 10 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 3f1eda3e741e36e725ebfd08bdaf50f67f4ecd87
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:33 2010 +0100

    Fix button size in vertical launcher with arrow.

commit caf6918a413ad7276e79f32ff1da3a607c714350
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:33 2010 +0100

    Fix floating point error in tasklist.

commit f26a7aee374593fd6e3d5101e7646b22cb555953
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:33 2010 +0100

    API docs and dist errors.
    
    Finish the API docs and fix some warnings
    that prevented to build a dist tarball. Also add some
    macros to make sure we contain all the 4.6 API.

commit e6e429638b01fce1eb3bb62487aa171de7b5c27b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:33 2010 +0100

    Fix a compiler warnings.

commit ade9524dbdc24cf4e606f2fc77a32c7d83a490f9
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:33 2010 +0100

    Fix typo in applications menu icon size name.

commit 36fbde8e911f8f8967ed5649777ec4ee60a6f8a7
Author: Carles Muñoz Gorriz <carlesmu@internautas.org>
Date:   Fri Feb 26 14:08:33 2010 +0100

    l10n: Updated Catalan (Valencian) (ca) translation to 100%
    
    New status: 300 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 49daf0ee1c9773c1f21a81a279d9c2739e7ef59c
Author: Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>
Date:   Fri Feb 26 14:08:33 2010 +0100

    l10n: Updated German (de) translation to 45%
    
    New status: 135 messages complete with 139 fuzzies and 26 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 33052fd98687f362c1eb27eedf548bd3f6e49dad
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Fri Feb 26 14:08:33 2010 +0100

    l10n: Updated Portuguese (pt) translation to 100%
    
    New status: 300 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5c653fabc7f06a89f8d191953bc140b650774809
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:33 2010 +0100

    Change clock plugin size and orientation hangling.
    
    Not finished yet, but handle vertical panels better and
    improve size requests for some clock widgets in a better
    way.

commit ba56a3a76185d35771b480372455b359b398d48f
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Fri Feb 26 14:08:33 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 300 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 2dd51af82bf5f18a791f963ce93cdeb98483f0a0
Author: Harald Servat <redcrash@gmail.com>
Date:   Fri Feb 26 14:08:33 2010 +0100

    l10n: Updated Catalan (Valencian) (ca) translation to 87%
    
    New status: 262 messages complete with 5 fuzzies and 33 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit ec02842bf33cac1ab5f6ac26bbb9d8526db29752
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Fri Feb 26 14:08:33 2010 +0100

    l10n: Updated Galician (gl) translation to 89%
    
    New status: 254 messages complete with 7 fuzzies and 24 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6d97291d98988fd5cdb377202a9b40d8e5445f29
Author: Masato Hashimoto <cabezon.hashimoto@gmail.com>
Date:   Fri Feb 26 14:08:33 2010 +0100

    l10n: Updated Japanese (ja) translation to 100%
    
    New status: 300 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit d76e3bd6adadeddeb500957e390820b622563f8e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:33 2010 +0100

    Handle visibility of the menu directory.

commit d2bb77c58da6fff2f19c05f6548c4aca45f870ca
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:33 2010 +0100

    Check if menu item should be hidden.

commit f81feb3f57c7447a0e85b2c5aadb8e9a4c0efd43
Author: Aleksandr Ponomarenko <dwqwt3i02@sneakemail.com>
Date:   Fri Feb 26 14:08:33 2010 +0100

    l10n: Updated Russian (ru) translation to 36%
    
    New status: 109 messages complete with 78 fuzzies and 113 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 6575791b9bda2acf3affb1c45b6afb1dcf94722e
Author: Aleksandr Ponomarenko <dwqwt3i02@sneakemail.com>
Date:   Fri Feb 26 14:08:32 2010 +0100

    l10n: Updated Russian (ru) translation to 27%
    
    New status: 82 messages complete with 90 fuzzies and 128 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 5e5993a990c3da7e4095e9df416fec94fdf17753
Author: Aleksandr Ponomarenko <dwqwt3i02@sneakemail.com>
Date:   Fri Feb 26 14:08:32 2010 +0100

    l10n: Updated Russian (ru) translation to 25%
    
    New status: 75 messages complete with 92 fuzzies and 133 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 81cc3bdc9d94c8788f90dc4a2414174c89e0b701
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:32 2010 +0100

    Select default icon in icon chooser.

commit 80da67035eb1a5ceda7f184fd74bba25db13bc5e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:32 2010 +0100

    Missed the button title was also used as tooltip.

commit 175f1141280ca4b9df33cd8129771747dc377be5
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:32 2010 +0100

    Whoops, fix copy paste.

commit 263a8bac973419b39efea517786843c965324d91
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:32 2010 +0100

    Add new application menu plugin.
    
    Garcon based menu plugin. Basically works the same as
    the plugin in xfdesktop, with an  additional option
    to show the generic names in the menu.
    
    Also extend the migration program to migrate from the
    xfdesktop menu to the panel menu.

commit 237153c2daacabd38a884b0578c555af571c3522
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Fri Feb 26 14:08:32 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 285 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 8633315bf27b515b93a77c1f315bc30c6e557607
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:32 2010 +0100

    Improve icon loading fallbacks.

commit 4ac60ceb703d8c104d632f3b5f63aa047b9cc574
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:32 2010 +0100

    Add xfce4-panel icons.

commit b3a15c8b47b4fd29adeea9015f4cf542b54a6231
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Fri Feb 26 14:08:32 2010 +0100

    l10n: Updated Galician (gl) translation to 51%
    
    New status: 147 messages complete with 42 fuzzies and 96 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 21aaacc51b25f019817d41a23f9e9ea172ef204c
Author: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
Date:   Fri Feb 26 14:08:32 2010 +0100

    l10n: Updated Finnish (fi) translation to 100%
    
    New status: 285 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 955aae2566901c68b049e6c7a27f51f91ae62ede
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:32 2010 +0100

    Mark some tooltips in the panel preferences as translatable.

commit 5bcab99bd0bd09a5e31795aeeeea2dd236c3a92d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:32 2010 +0100

    Add directory menu glade file to POTFILES.in.

commit 13ce9fca8905518b615f711450f4dae2b4def142
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:32 2010 +0100

    Use new set_size functions in plugins.

commit 4111bb2781fb65b36fa1ca567d1a9b734c8c13ef
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:32 2010 +0100

    Add set and get functions for XfcePanelImage size.

commit 078ce6abc51e8f82a7d3e50bbc7dbdffa67fcdf1
Author: Harald Servat <redcrash@gmail.com>
Date:   Fri Feb 26 14:08:32 2010 +0100

    l10n: Updated Catalan (Valencian) (ca) translation to 64%
    
    New status: 175 messages complete with 40 fuzzies and 58 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 4e001400abee25a0f8264f60c64d9a5ab2e93392
Author: Masato Hashimoto <cabezon.hashimoto@gmail.com>
Date:   Fri Feb 26 14:08:32 2010 +0100

    l10n: Updated Japanese (ja) translation to 100%
    
    New status: 273 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 333a1e0518437a6405a205b4b3da54aef2138892
Author: Sergio Marques <smarquespt@gmail.com>
Date:   Fri Feb 26 14:08:32 2010 +0100

    l10n: Updated Portuguese (pt) translation to 75%
    
    New status: 207 messages complete with 0 fuzzies and 66 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit bce8fc293a9d4f9ad23e67343281e7a98a7d7f0e
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Fri Feb 26 14:08:32 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 273 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 057597fedc963f0dc683188e69dd882205f9b2a1
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Fri Feb 26 14:08:32 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 271 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fbf2807bbdacb48fae562c01c28ae6ce38b436f3
Author: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
Date:   Fri Feb 26 14:08:32 2010 +0100

    l10n: Updated Finnish (fi) translation to 100%
    
    New status: 273 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit fe0a788d7d507a22fba2cf9739ccaf1c706ddd18
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Fri Feb 26 14:08:31 2010 +0100

    l10n: Updated Danish (da) translation to 100%
    
    New status: 271 messages complete with 0 fuzzies and 0 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 90356a19dd4d6827e89996dba284ab7608d18ea7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:31 2010 +0100

    Mark strings as no-c-format.

commit aa31c07b0240cb63de35c2bae7644b702e7e8ce0
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:31 2010 +0100

    Improve drawing of binary clock and new features.
    
    New options to draw the grid and hide inactive dots.

commit e1f4ff60f582be751e51d7decedc714d6d0d157a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:31 2010 +0100

    Fix time strings in fuzzy clock.
    
    Time strings now contain %0 (preceding hour) or %1 (comming hour)
    for translators. There is also a singular version of the string
    for languages like Spanish.

commit 94ccec56484bae29e0b9cdd3f9fb9e100244551e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:31 2010 +0100

    Add icon size for tooltip in launcher.
    
    Also improve watching of the icon theme. After the change
    in the panel image we don't need to rebuild the menu and
    button, but we do need to invalidate the tooltip icon cache.
    Also properly disconnect from the icon theme when a launcher
    is removed from the panel.

commit 91b62457595d6ae81070cb585a54fd5ebff97b18
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:31 2010 +0100

    Update XfcePanelImage on theme changes.

commit 906f6537bffed746dd857ab8d7be30c2e81a1e67
Author: Harald Servat <redcrash@gmail.com>
Date:   Fri Feb 26 14:08:31 2010 +0100

    l10n: Updated Catalan (Valencian) (ca) translation to 38%
    
    New status: 99 messages complete with 66 fuzzies and 92 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 014d06f14f13ffb6569147165d7561e6be1c42fe
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:31 2010 +0100

    Fix typo spotted by Per and some additional comments.

commit 16f97038c5dcf3d1b77d807a56b1ff53e5ad2685
Author: Per Kongstad <p_kongstad@op.pl>
Date:   Fri Feb 26 14:08:31 2010 +0100

    l10n: Updated Danish (da) translation to 98%
    
    New status: 254 messages complete with 0 fuzzies and 3 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 731a99b996193ffe8a3bb0d8d5abc31e60de25d2
Author: Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>
Date:   Fri Feb 26 14:08:31 2010 +0100

    l10n: Updated German (de) translation to 40%
    
    New status: 105 messages complete with 89 fuzzies and 63 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 856f0e2ba43588005d052cde850c8db29f28f0d6
Author: Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>
Date:   Fri Feb 26 14:08:31 2010 +0100

    l10n: Updated German (de) translation to 19%
    
    New status: 50 messages complete with 96 fuzzies and 111 untranslated.
    
    Transmitted-via: Transifex (translations.xfce.org).

commit 087a3706bc7b0d83819f8ee6fc5cfb7a2c5cab0c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:31 2010 +0100

    Import translations from master.
    
    Imported the translations from master without obsoluted strings.

commit 64516b7af1018cedb40aadfc5e076126a91c2870
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:31 2010 +0100

    Fix some translation strings.

commit 460384b1ba9f88b6096641110e5aa196312136b3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:31 2010 +0100

    Rename Task List to Window Buttons.

commit 1b5c80b889ae1ce11bcce95d63bd0256055b31cb
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:31 2010 +0100

    Don't crash if skip-tasklist state changes.
    
    We destroy the child, so avoid using invalid memory and
    hold the pointer to the tasklist.

commit 0157b667f7e9b567e76f16f03223f3a19f3ba41e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:31 2010 +0100

    Fix default config and add directory menu.

commit 085917567534783db9c8534ab331607cd653fbdb
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:31 2010 +0100

    Improve strings in migrate dialog.

commit d5fb8bf7b8a4ae3160f8c5734682c7e4718c4d91
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Set default response in the migrate dialog.

commit af29643ee652b70a51d98d8bd91d6bcd8241f0e8
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Be more secure with registering icon names.

commit 5a60c49814c329f229755c986645d269c60abb4f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Make migration work with custom channel names.

commit c4afba0c0265dfc0b4ea7ec481b8402e4062437b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Allow custom names for the Xfconf channel.
    
    You can override the default Xfconf channel name with
    the XFCE_PANEL_CHANNEL_NAME environment variable. Also
    rename the macro to a more suitable name.

commit ee04793db7e7dc2e4b284fdedc2871dc8e19eff1
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Some recent work on the tasklist.
    
    Adds internal support for group buttons. Working support
    for the overflow menu when the buttons don't fit. Ctrl
    click to access the panel menu on tasklist buttons. And
    a lot of other stuff I can't remember.

commit d94b187679f74260b3cf8cf01829d58fbb94a0af
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Another warning when the icon is not in the theme.

commit de4fc157a63bfab58a338089de92efde6cbbe694
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Avoid warning if drag icon is not in the theme.

commit 956a9360ed253e2707808a21dcee28dda0dbed7b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Add widget name to the showdesktop plugin.

commit 65c5357a997b5d900fa00d3f7d332a9fddec54d4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Add widget names to the actions plugin.

commit cb5ea4db6eef139b9077d76276205e2cbc4e7abc
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Mention widget names in the readme file.

commit da353e8e70a351a43b720e0101740ca9bd469d10
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Use custom icon size names in various plugins.
    
    Add panel-launcher-menu, panel-window-menu and panel-directory-menu
    icon size names for the plugins.

commit c31217ea8b5b28acd8f191a5d334e46f32969a7e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Give the directorymenu button a name for theming.

commit 27fa12c1cf18be301f67a46eed6dd627739757bc
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Give the windowmenu button a name for theming.

commit 9b523dfa44e2710c9d1a5306324298d51f86dae8
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Give the launcher widget names for theming.

commit da5cb77d1603276f024924d5da6f33bdcf601e54
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Give each plugin a unique name for theming.

commit 46433de46c1d4aa92d384328db775bf100002d0c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Skip invalid or hidden .desktop files in directories.

commit 3b119918d82877d4d1fa6e52a2353f2e148bfdc2
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Properly spawn preferred apps with startup notify.
    
    Without startup notify focus stealing is broken, so work
    around that with this code that extacts the binary names
    from the exo helper desktop files and tries to spawn it.

commit 0d3fea5ddb552eb610ac9bd765ee1883f11794b2
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Sort hidden files above other files.

commit 9903b0513afd5d3c42c20dc6fcfb124432e8b2c7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Make sure we properly link against gio.

commit 65e0146dd73fd5eaf65b37e90ee4e332339385ee
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    We need to name, display name is a gio 2.24 feature.

commit 73595d16a61e9c6c7c1f3a5ec5cd45fb44474538
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Fix segfault because desktop info is not null.

commit 48c935f330e1d40cc636a0ec4cf59f1bd592305b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Plug leak and fix error in directorymenu plugin.

commit c0b237af665ba53b8c0e8e10b6199edcd8e78371
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:30 2010 +0100

    Add new plugin directory menu.
    
    Plugin to walk to a directory tree using a menu. Folders
    are loaded on the fly and desktop files are handled
    like menu items (unix only).
    It is also possible to set a file pattern to allow files
    in the menu (instead of only directories). The files are
    opened in the default handler.

commit 5a64227a89b30c31c3c8ab158ae87ddce96b5224
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Allow launcher creation from add dialog.

commit c79063947bcd0be0ad17a49331193ae526afdccd
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Allow double-click on treeview item for editing and adding.

commit 5cbea24f8904f54d359c4553ed4138e0367dbebd
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Fix preferences dialog sensitivity.

commit 3cc7382835325837b920ca8c33a577413fc6fb09
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Hidden prop for clock command on double-click (bug #6098).

commit 946a22546d60234cee34ac3f65a64d9339ff3154
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Add tooltip to the custom clock format (bug #5282).

commit 58fde1e428d7a7b80062264886a5a865dc989727
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Also watch widget::destroy in xfce_panel_plugin_register_menu().
    
    This should prevent bugs where menus are destroyed and
    don't emit the deactivate signal, which prevents the panel
    from hiding again.

commit 718a44922a843a1f1a59cd2ad0c0051959bbdb95
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Force a pager rebuild on screen changes (bug #3328).

commit c8eeda410f217f7c9d81714063471fc0ebdb27c7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Gracefully handle invalid sizes.

commit 1d102d7d6d78e29286888f7cec2c38a8e0b05773
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Fix typo in XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL_FULL macro.

commit 9e8b528199517b17e7956f53348b8027ecab6951
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Bump xfconf dependency to 4.7.1.

commit d68594855ffa5b18615ae180aea6b011c48a15a6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Add some debugging to external46.

commit 8995e8bcc38b3f2e18a535c229b43ecaf5d26b13
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Add some debugging to external plugins.

commit 00bafe6f88746628db61ba9eb592571ce9f7433d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Add debugging code to application.

commit b09e0dbb6dbc34f945f4b62e2d9b9b82a967d762
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Add debugging for struts.

commit ccd3f5d9fff2e035528295a26352d9e18e1ea1bc
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Add base point to debug macro.

commit b92708f11e32ba5c83a52266821f52515dbe17af
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Get rid of the mask and make the code easier to understand.

commit 0fd6f1c6851d289ca884f3d5d03d825a8660a282
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Don't print initial debug message.

commit 7743bbcaeb60d1a624b9a311d4a6a23a77dbdfd8
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Span monitor is only active when no output is selected.

commit a76d2d4f603d9208a89e62b7aac446947f325fc6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Fix typo in span monitor property.

commit aeb612ad84062564009e4beb30f3cb9f773d5d2d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Drop unused function prototype.

commit 86c84815e5ee29a24a3d3c1753e963a9696edf60
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Fix some problems in multi-screen setups.
    
    Also add some debugging output in the "positioning" domain.

commit 001301d4f1191c586a3f6110885784de5f101c9d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:29 2010 +0100

    Add some internal support for debugging.
    
    Internal function for debugging support. It supports debug
    domain filtering through the PANEL_DEBUG environment variable
    (PANEL_DEBUG=1 for all debug output and for example
    PANEL_DEBUG=positining:struts for only the positioning and struts
    debug messages.
    
    For now this is always enabled (ie. compiled) so everyone can easily
    give me debug output without recompiling.

commit c40cdd750628ebdfa780979729962a7e5960761a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Some more internal locking checks.

commit 786e7fe7e503967564dc4d16495fae636282f000
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Drop xfce_panel_allow_customization().
    
    This function was designed to check if the plugin
    runs in kiosk mode, but as an alternative there is now
    xfce_panel_plugin_get_locked() and plugins should
    implement this on their own (I even think nobody
    used the function).
    
    The old xfce_allow_panel_customization() is now a
    macro that defaults to FALSE.

commit 1f42438a2cbe1db02ab1c9dbec0df20f9733f7eb
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Add Xfconf based kiosk locking to the panel.
    
    Each panel can be locked individually though Xfconf and
    new API function xfce_panel_plugin_get_locked() for plugins;
    although it might be safer for plugins to directly check the
    Xfconf channel.

commit f55864da4b0f9213adcac6f7229a73b2bca0e0ac
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Make icon hiding work again with GtkBuilder and Xfconf.

commit b6e3a0e2c64e542178c1ed26356c2d9c1ad52013
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Follow GNU indent guidelines for switch.

commit b996e6ba480a9e0ccff0552a9ea9b161dd29b74c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Get rid of custom IS_STRING macro.

commit 8a608692ac8e6be4161f13cd5ed2a92ea36a8d0b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Print cleanup failure in a console message.
    
    When a launcher plugin is removed, it tries to cleanup
    the desktop dir. Hower this might fail because of leftover
    files in the (re-used) directory from a previously
    craches launcher.
    
    Only print this in the terminal, because nothing is going
    'wrong', just not so nice.

commit f153e9cfd9d5e1b696307e1412266973a4a0b18d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Improve the handling of removing external plugins.
    
    Add a quick signal back to the code and improve the internal
    handling so the objects are better isolated.

commit a74e3055976cfe4f4807b2ab8cd10952548b7aff
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Fix auto restart code for external plugins.

commit 97d4b70af557e8db71037bb71ef81a9a4dc98cd0
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Make the value array type shared.

commit 220cb446c1be8ae716a5b908307b41b26a6038ef
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Review XfcePanelImage.

commit 29ed054641b4d7f9de7060cdc1ff1f05a8e461b2
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Review XfcePanelPlugin.

commit 4c9dc8010a38ccf320b7da70dc04dbccee258167
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Add style properties to control the autohide timeouts.
    
    Bug #5707.

commit c4d4a2246733dbdb5903ca6c4b1f1f6eac3eb005
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Add new API function xfce_panel_plugin_remove().
    
    With this function a plugin can remove itself from the panel
    without user intervention.

commit ec243ec5d36210daf78a0c88deb7b2cba87cbed9
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Add dots separator back.
    
    Same implementation as old panel, but this time in
    a loop to drop a lot of duplicated code.

commit 1bba9a0296968aee1631c9700a6fbfed1bed4029
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Draw separator handle in correct direction.

commit f4c4a30e948f77753bca470265533e0eeae275fc
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Add style properties to window menu.
    
    Some styles properties for the minimized icon lucency,
    max width chars and ellipsize mode, that were previously
    hard-coded in the source.

commit 74058b1f658870b51e6e711f38304c24d6c3d0a2
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Review LauncherPlugin.

commit bcc9e4ed9f6e3e5d334898b5f4fccef54b723327
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Review WindowMenuPlugin.

commit 7aaef95f1de6a14b9dfe4aad16c2df6f9da3f7ea
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Review ShowDesktopPlugin.

commit 6cf4d32cac0a7f2919e57d79b70811dec226cad7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:28 2010 +0100

    Review SeparatorPlugin.

commit 065efe1843fda7537a20058a5f5695542aae3fa5
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Review PagerPlugin.

commit a7cce60c814eb9f99963c42aa410d71e18378abe
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Review ActionsPlugin.

commit eb3f4e4d184ae54dfbc86af5581d26370ee4c7fe
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Review PanelWindow.

commit e0493b8ab996bd3ff03a76c46a7bed8c368e749a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Review PanelPreferencesDialog.

commit 607b3641a53337bfa852914248e257638b4e8ae8
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Review PanelPluginExternal46.

commit c6e23a9adca8b1f47ccc23bd8b49ab4234b6d883
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Review PanelPluginExternal.

commit 0d88c3c7ec93eea9ecc6ed0b5bee94873a664894
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Review PanelModuleFactory.

commit 160cd4d53c2e47ffde85288d8211479d1883925f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Review PanelModule.

commit baf119cb25ee89b9e9b0b6871c927d42ec0b05c3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Review PanelItemDialog.

commit 8457d3b4574fb6ed6f502d7fc1c9bc64580b4e75
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Review PanelItembar.

commit 0ef18259f05eb2bcb4a516f9296956c18866a025
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Review panel-dialogs.c.

commit 399d48067f0ea2cc821706f2eeed5d717fe1c454
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Review PanelDBusService.

commit 97e4d9cbed71267175e6eb794d3d1cbf98431546
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Review PanelDBusClient.

commit fee8286fba1ca4799c349cb7931ec583c9ec5406
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Review PanelBaseWindow.

commit c2ef7a3df3b836c97c1ffcb66dee78af85863daf
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Review PanelApplication.

commit b02df0580cccc8b4120aff28177f0f04d0433280
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Review main.c.

commit e538ca4c74c06555fee49a02687750883358db69
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Use a timer for a minimum time between auto plugin restart.
    
    The restart counter was a bit flawed, because if the panel would
    run for weeks and 3 restarts occured, it's not a big deal, still
    the panel would've bothered the user what to do.
    
    We now use a minimum time between restarts, if there was another
    restart in the last 60 seconds, ask the user what to do.

commit 8e75df36a05fc3ed27fa4d946675b53583b3a531
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Pressing new launcher button did not work with empty store.

commit f9818318c3c1c2fc3216a68dbd4ae220364a8a21
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Add remote-event in launcher for disabling tooltips.
    
    You can now quickly enable or disable the tooltips with the
    following command:
    
    xfce4-panel --plugin-event=launcher:disable-tooltips:bool:true

commit 4d01c326e14d20d135280fb9a384208f221b304d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Full bump of library version.

commit 99884b14ffcd6400b38bda723240b1cfa3d65d0e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Make a standalone macro for the preinit function.

commit bdb0a3b4cfc52db811cde13fcb87145ae12d7782
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:27 2010 +0100

    Update POTFILES.in.

commit fffab91bd6ef64a20239636d272a1b4c178121bb
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Drop pot file.

commit ac847002e3f449f7ea47ebad6316044b829598ae
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Set copyrights to 2010.

commit 49ca704f3d1336c7091b0890f49a95a3a652ee60
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Add support for the monitor-%d and screen-%d outputs.

commit df23306eb32b237ca3279adb26f3d81e534c400b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Add output selector to panel's preferences dialog.

commit b4dde230c792b11810d32cc308e5f728f7983c2d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Rename Iface to Interface to match G_IMPLEMENT_INTERFACE.

commit 8a9f7441279da44e3d4cc7847c5bc6981d97d95e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Use G_CONST_RETURN instead of const in return values.

commit 91f737fe8d6d85fc285c186398b4d6b6b940a6d0
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Delay building the docs and add some libs to link.

commit 294ffcf2656dc82cbe16a0801e100451198a23bc
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Rename .ui to .glade.
    
    .ui extenstions are not recognized by intltool-update.

commit 263b7bbded8531d77d9f38f80d12c140ac7ef2d6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Build ChangeLog during make dist.

commit 62e6cdcae6c36d290ce3b8595a453488e45715af
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Fix 2 other points where we use ->window.

commit 28b1058cf89a88d8d487a4128dc495861e03c599
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Panel depends on 2.14, so remove the wrap macro.

commit c54694cbf0b0e1f15564f4934d579e30d83a886c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Work around some gseal problems in the macros.

commit a491436e1ccd868b0213d4489943393ea2132f57
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Add a lot of API documentation.
    
    Something around 90% symbol coverage. This a lot to do, but a
    big step forward.

commit c5d2d8f0fd4bb1a76a3c17ca454c9f35f70db376
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Don't send a value with the window menu popup event.

commit 3d03a31ada65ce1106c728b406e468477fdd687a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Allow sending a plugin-event without value.

commit 0de4587c75f8d765df7c8f3dc9423c8bb7183121
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Implement popup event for launchers.
    
    You can popup a launcher by using
    xfce4-panel --plugin-event=launcher:popup:bool:false.

commit 8e433419754807ec5033cfbdeeb46a3795f56195
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Add (hidden) xfconf property to disable struts for a panel.

commit a436b8814998e0e68b86e35a83018f97c1824f21
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Support rtl in the tasklist.

commit bce884ee028356ef70f8ebd2159e869d02a238a0
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Allow hiding the tasklist icon when lucency is set to 0.

commit f0d74d372def4a9e9abd1582bc6840274b59d103
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Allow customizing the lucency of the minimized icons.

commit df9ebca41d8f94ef9cdb6ad939ff1054497b7be5
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:26 2010 +0100

    Only start blinking non-active windows.

commit 8b896afee52bbdb998a131af9221fc5cadc70b6e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Fix typo in comment.

commit cd2637fa18ad9bbbb0e98c12bcfff1f1ff573432
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Improve combo box strings in tasklist.

commit 52ed292aee3ee1800728525217a11a8bf69d6c39
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Show the internal plugin name as tooltip in items editor.

commit 6caacf9816af00258a341093678be12b2990d74b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Make the rows property an uint and fix migrate.

commit cf31eee69b21ef26bce610d105da2e97975bf012
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Make the wireframe code only work with x11.

commit 4bb01cb16d17791f1510ef4cca4a381397c87d93
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Use strcasecmp for comparing the window names.

commit eba0cfb48e73cdbca85f373c10981b6fe8dc6070
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Insert sorting modes in the tasklist.

commit 29f55b713e4f99416fc5414aea6cc425ad5dfafa
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Remove dnd code for now.
    
    Makes things a bit too complicated. Will look at this again
    once the grouping code is working.

commit afd3e018f6a43964931923c5f73add2469e1d169
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Use argv values directly.
    
    This makes the macro less prone to shadowed variables, like
    comment showed up in the weather plugin.

commit cc6a5f94b0214f125c1d2e5a6d56c59e0a38ddcc
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Add API docs for version information.

commit 60ac91ab89c5ec61d5804fdd9637629c3fca399a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Start initial references docs for libxfce4panel.
    
    Still a lot to do here, but it's a start.

commit 4bf777828db1d4da8e0c02a062ebb8d0744adb3d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Warn for possible uninitialized variable.

commit d0e6738d1d7781192a4eeb4cda307d7398480487
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Rename configure.in to configure.ac.
    
    Configure.ac is the recommended and promoted name in the autoconf
    manual.

commit dc86dbc476085a2d88be05ab7e26de0b0ffea93b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Sync with (old) string changes in master.

commit cbae03acd18533dfe2f64882e7d8ab7e46598d22
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Empty TODO.

commit 4d23e9c81a5be19ab1a330918e289f6a99c234f3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Add drags from the add dialog.

commit fd90637d1e6db09d1b51c0c5390990f54a737ed1
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Implement dropping uris in the launcher's treeview.

commit ffd2028082cc443946a5f587a483195b5e743726
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Fix another pointer where we peek (possibly) freed memory.

commit 379cd5942ecb147e164071d33f05c61f1df8f673
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Store next node so we don't use the freed list item.

commit 44b0857149cd600bcc97c42b7b8f2555da5e6335
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Remove useless test message.

commit 7f970d790e334b83d13257ceca0f351aa844d418
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:25 2010 +0100

    Fix 2 memory leaks.

commit f6fc1aa2007e6c5765f4af8a2d0c87dd017f9fb8
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Fix memory corruption when 46 plugin is finalized.

commit 083d0b9e4f481f1fd8e944f8c1522b7a0dfb9971
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Also use a fixed argv layout for 4.6 plugins.
    
    Move the enums used for this in the provider header.

commit b92a558c6369e475ec0ed554c35b8087b52c25c8
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Read directly from the argv in the wrapper.
    
    The panel is the only applciations launching the wrapper,
    so use fixed locations for data in the argv.

commit 4329d2f1ca6f5c99e17026ba065bd4d3af4597ee
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Add version check functions to library.

commit e39a9ed75646ec2b84a0ec83c2fc04fa2b56042f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Remove panel marshal.

commit fc6efb8587591b8bbedacd19741fc7040d307307
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Share the restart dialog between the external objects.

commit 9c84d4fa4b5e3a4fcd116855770f622371c41f80
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Use glib functions, panel assert are private.

commit 67c077434cdc147f365b5495c208eae2f5b34420
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Fix errors from the thunar-tpa-plugin.

commit 217aaf342a7a8058bb0dacd4396a7e964980087c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Add support for the 'old' 4.6 external plugins.

commit 7755b1a55e12dbc1c8caab81d8fd25685df390f0
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Some initial work on making old external plugins work again.

commit dbedcad88be1b4b5db8ef0de17146a1d81bdbf52
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Make disabling the launcher tooltips work.

commit 95e2cd9d8017e053325d560528f2747513e7debf
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Transfter the background alpha when needed and in a double.

commit 02914c3a8a59e86f541f2a6bbb8141b1fb8e9cb7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Remove the provider signal from the iface.

commit f500d67f5c0fd9ea7f199eac12534a21c8a476cb
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Move the properties we set on startup on top.

commit 8648c604eba250443942e07a3c78e316cff4125d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Use an array to send dbus messages.
    
    This will reduce the amount of dbus messages during
    startup. Also easy to work with transactions in the
    future, but that is not needed right now.

commit dee2f22517ad64a59f8ae6bca8f73a488e4dc6e4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Add xfce4-popup-windowmenu program.
    
    This is simple script using the remote-event signal
    for panel plugins.

commit f56f0609af1eee7610f5a596243b801a71d109a6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Implement a remote-event signal for plugins.
    
    This allows to send messages to plugins using the (hidden)
    xfce4-panel command line option
    --plugin-event=plugin-name:name:type:value. This can for
    example be used to popup a plugin menu from a script.
    
    Plugins running in a wrapper don't support the boolean return
    value yet.

commit 87c2dc8db773ae75bc69c4dc65e880e824474d53
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    D-Bus overhaul for the wrapper communication.
    
    We now set a unique path for each wrapper that will
    show up under org.xfce.Panel. This makes it easier to
    understand in the wrapper (no message filtering) and moves
    all the external communication in the panel-plugin-external.c
    code.

commit 003d2bc081b7086b2a7c33e86d3328592c86ef9b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Ouch, remove old sm-client-id option entry.

commit 8e758b66a1604031dadd505e5e7df539737c1764
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Handle the wrapper exit status.

commit 2941a73c7e5155fae12de2d3855a32134221e97e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:24 2010 +0100

    Fix preinit support in the wrapper.

commit bda704c74a17ac7d879e0fa751728ba7ca463f60
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Exclude some generated code in the wrapper and panel.

commit f5f21ac47dd6ef52739aa4289d7ace8ee54cefb3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Make screen-position an enum property.

commit cee4f35f900a8ae41bb15ea5e65a1be8b0f3a4d9
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Document some dbus signals in the xml file.

commit dd07e072ac31d57f915e52b5d6664c6cc7902907
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Remove unused PanelProperty method.

commit 18564409bb07e0de4baa2ce0a895a7be72ad4eca
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Improve property-changed signal comment.

commit 6dd9c3e9a0eeaabb241fdb0a2a4d6cd03cdf80b0
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Move the object register macros to the macros file.

commit 15450ddd3497689cee62c2e83ec03e6b3e226573
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Move the panel_return macros to the private header.
    
    Not code that is suitable for plugin developers. Also
    drop the I_() macro and use g_intern_static_string directly.

commit 0a6858e270ff23c7cd29945b14894a986c8696fd
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Remove deprecation macros after library API bump.

commit c5bf93cfb290211a702b6bac8c1d30e9700ff13b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Move file locations around and bump library api to 2.
    
    Remove unneeded INCLUDES from makefiles.
    
    Move the libexec executables to $(libexecdir)/xfce4/panel/.
    
    Bump the library ABI version to -2, people need to make changes
    to the build files for their plugins, so better do it the
    right way from the beginning.
    
    Move plugin libraries to $(libdir)/xfce4/panel and desktop
    files to $(datadir)/xfce4/panel. Much more consistent.

commit 1d2a6764f8b036a619d3ab1b8c5a6a6c34370c44
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Hookup the combo boxes in the clock plugin properties.

commit 54d093a1fce36f60030411074f0941787744fdc7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Fix some crashes and problems related to xfconf.

commit 643c91dc30df25818674bbcb7021fcd6568ae224
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Set restart style before calling gtk_main_quit().
    
    Still occurs the panel keeps restart when you quit
    with errors in the code.

commit 8bb3e2c08d379489ec16be290bfa45c90762b585
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Also check for empty string to avoid unneeded errors.

commit f0ba709a18459538b6622a6ef9946802bc83d21f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Lock both panels in the default setup.

commit 7b03a2ecf525da1269d1fd27f47cea5f933d617c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Fix typo in Makefile.am.

commit 421908b1b63b96845cba19cd8736d0b70950593c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Make loading the the application pool work.
    
    New launchers can not be loaded from the application
    pool, this makes the default panel setup easy to work
    with. Also split and share more related code so it
    is easy to understand.

commit b65bcb58c3aa094fd1e64c7eda357b06f6d3eaae
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Release the session manager before all other objects.
    
    If the other parts segfault during a normal quit, the
    XFCE_SM_CLIENT_RESTART_NORMAL is never set, which results
    in a panel that can not quit.

commit 0576c578b2e913556bdd9f593df8a1ee62a9a01f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Fix default shadow types in the systray and clock.
    
    Also change the frame shadow to etched in since this is
    a bit more subtile.

commit 80affcf194a2039e9a8ff1cc6d175f15a0ef1c5e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Launch the migration utility from the panel.
    
    When there are no panels found the migration application is
    spawned (sync).

commit faa9d0e20a12a6d2ee35d321119be0cb2433d85f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Add xfconf xml importer and default config.
    
    Add a parser to import an xml channel file into a
    channel and add a default configuration.
    
    The migration utility will now prompt with a
    question dialog whether to import the olf 4.6
    config or use the default setup.

commit 66f91e500172c28d7eb181364bc23aa9c2dbe30c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Rename the 4.6 migration file.

commit a41626428fc576596d745d6dbf664ba83f45b841
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:23 2010 +0100

    Use more understandable way to get the _NET_WM_NAME.

commit a8c0acedac1900d4d00288ed94eeac4ccca6f7f8
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Simplify dropping .desktop files on the panel.
    
    We now only check if there is atleast 1 desktop file
    in the selection data and pass the entire uri list to
    the launcher, which will filter out the desktop files.

commit c57405b1a4e06f3bd33a603cd31df6531bd0a20f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Migrate most of the plugin configuration.
    
    Some settings cannot me migrated because they do not
    exists anymore, or the setting is not implemented yet.

commit 2af2fe3cf5abbe1e811d59a506880bd65e43f8e6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Initial import of the migration application.
    
    This application will carefully migrate the old panel
    configuration to xfconf. Plugins and their setting are
    not ready yet.

commit 0ce7ca8151758a18a7b6465c1d37db43b32b7b6d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Get rid of the old SVN $Id$ lines.

commit 8ea6215fca68600d3bdcfdc471d3cd21d3391e1e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Use the session client in the action plugin.
    
    Try to use the sm client for some of the actions. If the
    client is not connected, fallback to the normal commands.

commit 58137401b3ea46f92af7a0cc024b0f51764512b9
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Implement basic session management.

commit a0ab524d016f25b1e1cf7afb05211377f357e0eb
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Properly use XfceScreenPosition in the plugins.

commit a623e6cc3fffa92c098c4578a7815954f2202bb3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Generate the XfceScreenPosition enum type.

commit 7d7f5d619e49a53ac0049a4e6c7a5841b7eb01c4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Show understandable errors on dbus problems.
    
    Also fix the option entries callback function.

commit 708c40e9699fbe088c6026aef5a3320944d0b1e6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Add the alias code to libxfce4panel.

commit ee987d9ffab82a502e174b085348a131e077cd75
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Add 2 missing file to POTFILES.

commit 8a5402b0ce6ba10beffb7480269adf75783b6b67
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Remove LINGUAS file.

commit 734114fe533ff32a5f3b6f7c0faa2ef4b13f36a1
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Update POT files.

commit fe8d4cac907999db45ce9232fa4044df80c239e8
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Show the desktop file location in the add dialog.

commit 13dd303acd110c7df796a83b28d23d8eaca74602
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Depend on the exo 0.5.1 release.

commit 4685626af050279605792889e67c97cc7364cca0
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Add an explanation when the removed signal is emitted.

commit a8ce1e739d0d9ee51080b438ffb3b64018028705
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Make creating. editing and removing launcher items work.

commit 4efd373933cdec9ca7b86eafe657f7e363d654ff
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Add TODO so I don't forget the fix it.

commit 3afaa316971984fff84078e73b31345bc520f749
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Silent generated files in libxfce4panel too.

commit 463ea785880d39588d419ce576bd460fd93089f2
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:22 2010 +0100

    Improve size-changed comment, as suggested in bug #5616.

commit ec4c557c3cb384e03eb39d74f1c73081c176ba63
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Use silent build rules.

commit 3794d59a4201cb0320396f14feb56b1c83efec57
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Fix broken POTFILES.in.

commit 821dd750effd8fa895c4a264c02099f0193ff218
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Use g_markup_printf_escaped when making markup strings.

commit 40172326b5d8b18c3f75782ea86b121d297bda0e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Use new construct function names in the wrapper too.

commit b18549d51d73f91c8c5e5ff12283d703cb4cee32
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Implement removed signal in panel plugin.
    
    This signal is only emitted when the user permanently removes
    a plugin from the panel and can be used by developers to
    removed custom settings. Bug #5694.

commit 7f5031043b3210a5d865cfb05bc536320e2f4c8c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Add an XfcePanelTypeModule type for easier future expansion.

commit a88656bee80e29627564c15f42476acbc7a0c400
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Implement property saving during binding again.

commit 4a2b5365962c6edae8818f95effeacd29948d302
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Rename from common library to libpanel-common.la.

commit c0ce89eec8237504cf53673ecea13095d5245226
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Add support for rescheduling the clock timer when out of sync.

commit fcf600be253768ec7944e38d0b0e155431235920
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Drop support for the hour interval, minutes are idle enough.

commit 121d9b040001ad07027e151f5905dcdf785f79af
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Refactor a lot of code in the clock plugin.
    
    Each clock widget now handles it's own timeout using a
    new automatic sync timeout function.
    
    Properly bind the properties using exo bindings for the
    dialog and xfconf bindings for the objects.
    
    Use g_timeout_add_seconds for all updates since we don't
    care about nano seconds and the seconds timeout stays
    much better in sync over time.

commit b8ff8c77930c999f952037ea69a8ab4885e2883b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Only use { NULL } to end the array.

commit 50e099073a35f493ea17051a8411f0f695913bcf
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Use defines in the enum to make things easier to understand.

commit 742649beb3898820a07d69745406f1ae0102dcac
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Move the show configure function to the contruct function.
    
    To avoid a warning. Cannot call these functions during init.

commit e629d724b836dcb0b474dbb22ef1ee9373c4c0dc
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Use a symbols regex in the plugins too.

commit b45567a9aca5bee80665226805f46261cf32cc92
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Also rename the renamed function here.

commit 355bb03adfee7f1c06ce7bbdaf28ec37d1b66ffe
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Use the new developer tools macros.

commit c9f4c6b8aff8b31952cbe834cfe3b18836e2c8e9
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Drop the visibility stuff and use a symbols regex.

commit fa534e2a01cc4f34ef42769da78bddbaa45adb25
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Add New Line support to the separator plugin.

commit 7c878175782f12166e14c4bb769352a88d61bf96
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Simplify the itembar code and add support for wrapping.
    
    Use the panel window for dnd support on the panel, this removed
    a bunch of code from the itembar and makes things easier to
    understand.
    
    Also add support for wrap items in the itembar code, this
    will be available in the next commit through the separator plugin.
    
    The dnd visualisaion is also improved and works better then the
    3px black line we used in previous versions of the panel; can
    still be improved to moving existing items on a panel, but that
    will come later.
    
    Furthermore some related code cleanups and implement child
    properties in the itembar so it is a real container.

commit d85f99435fb5c6674a5ebeafd93efab8cec60f14
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:21 2010 +0100

    Some small code corrections.

commit c5a1f2a81b596c2621dd528517073a534e3b457e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Always abort on critical errors and warnings with debugging.

commit fbef637421ab1b65e352297bcf8fdff5485d1f52
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Add gtk builder code of the plugins in a common file.

commit 4efb19ea315842fe568468235b985d03b928424e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Implement fixed gtk-icon-sizes in the XfcePanelImage widget.
    
    This allows icon sizes to clamp to fixed icon sizes, which
    will for example prevent fuzzy icons in the launcher on
    some panel sizes.

commit 4a50cfaef1edf4d223d9d713b66d64089bdbb7d1
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Set the orientation property for all the vertical box widgets.

commit c1b8bd4a102d7ad2f09c129b4e9f9e664cfbe2a1
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Fix a harmless compiler warning.

commit e3e16d4f8c0e6279a6ba12b01d7aa192183a73b4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Fix some xfconf problems.

commit a223dbdbf81ec37303e2df32bf6dd73b0d4882b7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Rename glade to ui.

commit 49e19e7452c505145c1c8daa5451dee64d359701
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Update configure to new dependency versions.

commit 7a49afff3d74aba42ca92025251573a683dc3cdb
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Drop xfconf header from main.c.

commit 97920a5a5b0ed1e0f7a2ecf5fb5aba87046cb996
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Fix item drag and drop.
    
    Also call the parent class so the drag motion is send
    to the itembar too.

commit 219a8b1bb277db559e9d55d675da8151bd4071b3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Disable releasing the channel using a weak ref too for now.

commit 334d49d6d7b72cfabc05e1dd92a86a07248fa1df
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Drop internal xfconf cache.
    
    This is implemented in xfconf now, so we don't need it
    anymore.

commit 0c802e070ea8007d11c03cf2b2bbe731037367db
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Make more things work in the launcher.
    
    Use Garcon for the launcher entries and use GIO for file
    monitoring. Also use the exo item editor for editing menu
    items.

commit 6fff1b6d5760585694bc68c1074e24b85b7e91ef
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Some small launcher code cleanups.

commit eae1030a38831af1cecf5db704483fad8bc9aac8
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Implement icons in launcher tooltips.
    
    Use a pixbuf cache for the button's tooltip, so we don't
    poke the harddisk too often when hovering the buttons.

commit 1dc4b9d4208c7e33e6b7745388c6212a94edeeae
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Use new exo-1 library.

commit 33e924f4c0b6addb76243a1c8803c1fdbd7d52e4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Fix typo in comment.

commit e1cde1cd0a5dca7d3d2a7d2ec4c52a291432dc04
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Always save the position of new windows.

commit ac74bedcc05ca987f4bb2a05188e978f5e3d3f14
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Fix wrong usage of xfce_panel_plugin_provider_get_unique_id.

commit 37a85de44a2c8016665838c4d27a51dffd29c4d4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Update desktop files.
    
    There is no path in the desktop files anymore, so
    drop the X-XFCE-Module-Path entry and rename the
    files to *.in, because we do not have to edit it
    during building.

commit e633c0be32b2922a21449a576ad4babe2685121d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:20 2010 +0100

    Use hard-coded paths for loading modules (bug #5455).

commit 8d8aa7cda53f5176e39e06b06d326ad643ff4ff2
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Make xfce_panel_plugin_get_unique_id public.

commit 76119cc4de0b8c699894cca91fdb2e355b4ade57
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Update to latest libxfce4ui API.

commit 0e4cced8195623ff70dae958c5d24ef61dc05ace
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Print a message if plugins are forced external.
    
    ...but only when debugging is enabled.

commit b1b80d43a49dfd48386fa04a05b9ddc3222715fa
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Set window properties in g_object_new().

commit d3d2a87fe0f8caa11e7990a98ca166e1664b2c6f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Rename XfceScaledImage to XfcePanelImage.
    
    This to avoid conflicts between panel and libxfcegui4.
    
    Also changed the calls to the function. You can now set a
    filename or icon-name through _set_source() function, the
    object will figure out what the source is. This to reduce
    code dupplication for loading files or (weird) icon names.

commit 67c40280596a1ad36204e36c08a8fa741b1caed6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Add icon chooser dialog, not working yet.

commit dd0aba518c4d223514258bee59cb590a52e84358
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Implement current folder saving.

commit 34e5656aa1dd568e755221f1c77f2ab6ed0addb3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Add some initial code for launcher item editing.

commit 7413af9bd115155dd7fd841e636248f322f1b13d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Some launcher indent fixes.

commit ca6edd4f0500d0cff5c16bbcd412708772e89df8
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Break some long lines in the plugin code.

commit 125c458f48ad674d5c0b121d81e509ff38cd2f1c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Fix problems with plugin calls in the init stage.
    
    Provider signals don't work when the plugin is not connected yet, so
    prevent this by adding checks to the plugin functions that do not work
    properly during init, but only in or after the construct stage.
    
    Move show_configure in the plugins to the construct function.

commit cad7af8256709237e53a770163d117a65bcc1903
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Some systray fixes.

commit 1db67d09457a06df5280b7ef8710bde6d2f103eb
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Some more tiny tasklist fixes.

commit de97c30d9cc1726a8244f79bcc759cc9d53f9d2d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Fix some small things in the tasklist code.

commit fcf43d3c7ddf54e293416e798a67e6dd750831c4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Handle xfconf_init and xfconf_shutdown in another way.
    
    This requires a patch for xfconf that disconnects from
    DBus using dispose.

commit 31b99ad83c6b67b657e80c31c8156a094b9de219
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Add list store models in glade again.

commit 20e901737bd7a3c9d5d1f7d0b7a2a77ef3fd5618
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Fix warning about using braces in return.

commit 35c0eb8c563e14462e0ac250c2ab9413eb9c0952
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Support drag motion when autohide is enabled.

commit 97607c66f8a5442aae8e6f4fe56190c78e7cb818
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Update pot file and fix non-translatable strings.

commit 767e532979b5218056d98feb20f692ba8767e6d3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Use label attributes in the glade files for bold.
    
    This seems to work fine for bold text items in gtk 2.14,
    while this is marked as a gtk 2.16 feature, but looking
    at the commit that only applies for mnemonic and underline.

commit c8b591e30811a79fff3de7d48d173831fd5d1663
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:19 2010 +0100

    Empty thanks file, we will use git to generate it.

commit cfe076e14adedc07740915a2e1cc243706c58135
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Save the plugins and id's in an array.
    
    This breaks will break the panel with old setups so you
    need to clear the xfconf channel with the following command:
    
    xfconf-query -c xfce4-panel -rR -p /
    
    This speeds up the startup and makes the whole thing more
    robust against removed plugins.

commit 58f89a3cea9500338dcad5cec83f5fcf361a2ee1
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Put some xfconf code in a macro to make things easier.

commit a267e0c965778b6cba2fed145146dceac614232a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Add support for launcher labels.

commit d1f34c3eaeac46e9f01da8cc426dbb8dfe7af2b7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Hide the menu icons if the user set the GtkIconSize to invalid.

commit bcd33667aa3ec1ba5f1758e4885825a15d6a3cdd
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Use a GtkIconSize style property instead of pixels.

commit 17b77cde80e48dfe2cc41bceb2d648ff5f390045
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Put some launcher properties bindings in a loop.

commit 41cae7cb26421b764ec672a26592b34b82fafafd
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Make the add button work in the items dialog.

commit 665ade714a7ec09cdd849ca80a6172d0b961404b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Add menu plugin popup application to the TODO list.

commit 66e486f803cc12c9f32173a0f511b078d60bde0a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Fix crash when sending a NULL channel and shared table to binding.

commit 68fff4fca013abf362c92271a291b288c210cf26
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Allow passing a NULL channel to panel_properties_bind().
    
    The binding will use the default panel and take care of ref-
    counting.

commit a561ecbd2da53f281d9dc959f474d12536f03fc6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Implement property saving in the bindings.
    
    If saving is enabled, the bindings won't restore the value
    found in the channel, but instead notify to property on
    the object so it gets stored.

commit 423f666a8931e6b053c63f37057ef87e8ba208d0
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Make unbind work and fallback to the default value on reset.

commit a6c682d0e2a3100ffb3a66b0e5330f65c35a5ad1
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Use the xfconf channel singleton in the panel and plugins.

commit ad8d1fcce6c38027653ee7d3c6034c3f5b0941d4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Add function for an xfconf channel singleton.

commit dde3b6a420d495334ed3b576f9b53aa66b724c5b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Move plugin macros to the macros files.

commit 34cacb4a8f9a9498ec583616d11cc04f0fda5a99
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Don't crash on a NULL hash table.

commit 70a956b04acfa55a6a127ccf06c8d1551fcde8f6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Force-all-external needs to be set before loading the factory.

commit bd896a32773790908ddb1e7afcf4bc4409d7fb60
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Remove the optional hash table from panel_properties_bind().

commit a315625503c5cac6ce471a7bc8d14921e22bbb93
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Get the force-all-external property from the hash table too.

commit ab34b9f4383e5f07d991fe8a73de43adf7ac4615
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Remove horizontal duplicate in window property list.

commit a10713891382c44625348647bc1ee49287964dc2
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Add a shared hash table for the panel properties.
    
    The shared table is set during panel startup, the panel will load
    all the properties and all (internal) plugin will use this table
    during startup, which gives a nice performance boost.

commit e8bf6d1e2e02b4d30f431f6d1f5007e9d7ebd00f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Use custom bindings in windowmenu plugin.

commit dda8ab1848452bf970cb2c7383f2b8b2b077cb50
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:18 2010 +0100

    Fix comment in tasklist so it matches the other plugins.

commit 782a29a9d0327c759a82ae4cab9257b118af58b7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Use custom bindings in systray plugin.

commit 332ac0f01608ddbe6403c09de144e3b2cf0ce0e5
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Use custom bindings in separator plugin.

commit 65928e7960239b4a912e07a983548a6e3f6c9149
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Use custom bindings in pager plugin.

commit 5fab48a602115bd53043c483f69d4a8a6d4d7b55
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Use custom bindings in launcher plugin.

commit 7bf0438223965c2fbd124de5adce802896eada4d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Use custom bindings in actions plugin.

commit 2cdf85a83d95723b3455168fa66ce1b9747ae7f0
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Fix configure warning that the datarootdir is ignored.

commit c835d45dfc23cd6387d7544e6ba93ab522eea222
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Use custom bindings in tasklist plugin.

commit 67943cee83f1cbfe72b10ec1f51863e7e631978f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Link to the noinst library.

commit 5f0a65968c1607f0a761212b94b0bb85b4933a39
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Make a noinst library for the custom xfconf bindings.

commit 1362b1f2c2cdc1b6e13451b0639d2432557780ea
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Remove tabs and trailing spaces.

commit 987f3d4e8b2565c61f84fdc0b22280f248096bba
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Fix tab indents and add some comments.

commit 4931355cac59a1425636be7995a758a3c8bb0b86
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Use the new xfconf bindings in the panel.
    
    There is a hash table in the panel application which is set during
    startup only.

commit 074efb989d41e1ebbc717a71fc9115372113df47
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Add custom xfconf property bindings.
    
    The goals of these bindings is speeding up the panel startup.
    The bindings can optionally take a hash table for searching
    properties, this way the panel only has to call dbus once
    during startup for panel settings.

commit 2ecef76b3af73f210720d56011a58224b0c22756
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Use a GHashTable to load the panel configuration.
    
    This saves a lot of DBus traffic.

commit 029344df2eba891974b745a6957cfde7313c2b02
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Fix a merge conflict.

commit 564de568c90b8d68a4ee2915071087d38d2bba0d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Add support for the old external plugin to the TODO.

commit f1fe651b3d233085881bf8cb27bf5c26df89ee00
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Set function types in panel headers.

commit 30d56efbf4ac629ac10bfbceaccda3195c4be2f4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Add hidden property to run all plugins external.
    
    Hidden boolean that will force all plugins to run external. You can
    set it with xfconf-query like this:
    xfconf-query -c xfce4-panel -p /force-all-external -t bool -n -s true
    
    or unset it with the following command:
    xfconf-query -c xfce4-panel -p /force-all-external -r

commit f33cc21cc52fdf53b2ba8f0cbc26adaf6e3cc28f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Add support for pre-init in the wrapper.
    
    Add support to the wrapper to run a pre-init function before
    gtk_init() is called. The g_thread_init() function has also
    been dropped, developers can call this in pre-init if they
    need it.

commit 1a7e8021a7d2a74e81e56c875a18e99088c3ad70
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Force internal plugins with a pre-init function to run external.
    
    The pre-init function is only supported in the wrapper, because
    panels' gtk_init() is called way before the plugins are initialized.
    
    If an internal plugin is loaded we check if the modules has a
    pre-init function, if so, print a warning and force the plugin to
    run in a wrapper.

commit 43b4f252be0c6b4687b293bd9c7225dd3fa93c96
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Rename the wrapper init function.

commit 97ee899b340d105d9022a6022ec7402d72784692
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Rewrite the plugin register macros to support a pre-init function.

commit 22bf7ef596524814e01f9dda9e6eab6414106e17
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:17 2010 +0100

    Don't initialize threads in the panel.

commit f6f7de0ca8f823317577b480b5a94a5a4023c24a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Add defines for wrapper exit codes.

commit 34eacbf5ace8e04f3729674bb76e72361690e64a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Remove plugin from xfconf when it was not found during startup.

commit c2d5433c91e4d6e17f356306b701454e01a672e9
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Use the plugindir from the library in the desktop files.

commit fdbbbb50835f628d74903d640cfc73b904527c0e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Check for new modules when opening the items dialog.

commit 63e8d767bd73a8805c5ea6209b79b0d3ccd76d39
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Remove already fixed TODO comment.

commit 01fc4f1bb55146950187ded7b0c57898947f1670
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Fix positioning with external plugins.

commit d68d10dd1248950c515f52cc47e5d585c116997c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Enable XFCE_DISABLE_DEPRECATED again.

commit fc78e7776528e87bca8e8995f043bb3d8b8b81a3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Make the selected panel color red.

commit 049bdf120ac4466f9aebe0ac7dcb506f24d9bb84
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Various fixes to make the verve and weather plugin work.
    
    Implement xfce_panel_plugin_focus_widget().
    
    Implement xfce_panel_plugin_block_autohide(). This is a replacement
    for xfce_panel_plugin_set_panel_hidden() which describes the purpose
    of the function better.
    
    Re-add window autohide blocking.
    
    Send the button press and release signals to the parent handler if
    they exist in panel-window.
    
    Some cleanups and temporarily disabled the XFCE_DISABLE_DEPRECATED
    check in xfce-panel-macros.h so plugins can be compiled with
    debugging.

commit f0d958b10ea058cd8ee3bffca8ca33c2f86996c5
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Use the variables directly in the plugin code.

commit eed5724355c64240ee34ad3ee417c2fdb7fee714
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Make some functions as pure.

commit eb8bd594eeff7e7787174cd58ae5ef83c60a0db2
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Avoid shadowing global declarations in the plugins macro.

commit be0d0502e4ee08fa56c3588161264049c1ce288d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Fix button overflow in tasklist.

commit a316f7ab3c236bde4787ef5511326737458545b6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Support transparent status icon.
    
    Use code from the Gnome panel to support transparent tray icon.

commit 20e0c94ac98521624aa24441a73af3d2df73436d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Tabs to spaces.

commit 4e0312f728c66741197c795b1a1f7aebb15f0886
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Add empty line the the end of panel-private.h.

commit 031ef7eec9c42fae85f131387bf3073f9f43e3d4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Set the colormap of the socket to embed all remote windows.

commit 8c9c41f75ef16117ba2e37729f500d6e55708212
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Don't flicker panel on startup.

commit eaf67b25feadaa03dab31a6ae4d8edb8bd1910ba
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Ok, we draw the icons our selves if Gtk can't do it properly.

commit f0685f165549fd1f4ac29fe9a675a100d0946f69
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Fix incorrect drawing of scaled image and code cleanups.

commit 2374cf059007026001ec719daa07577509736ec3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:16 2010 +0100

    Small readability improvement in the tasklist.

commit 59f1e4e2f0e7a19bf9c8e2176f02a37b88318149
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Improve the tasklist in vertical panels.
    
    Only problem with this is that GtkLabel does not allow ellipsized
    text in combination with an angle. Hopefully this will change in
    the near future.

commit 730c0f86eca768af06702f11843f79bd1b48aec3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Connect handle property of the tasklist to xfconf.

commit 950f26245dff1dcfe45a517b5cf4fc862cea9cc3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Connect the hvbox of the tasklist to the plugin orientation.

commit 7942bcbd4bfd1b5765f4278a175d5d537f919b9f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Update the screen position too when the panel orientation changed.

commit 04cbc8089803be27f5836ad5f0f4ab3b3f7f6a59
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Add properties to XfcePanelPlugin.
    
    Implement properties for the size, orientation, expand and screen-position.

commit 49f56695af4da4ec4c4887c9e1e48a1a145b2c8f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Drop trailing spaces from hvbox code.

commit 6181ef412fe37a7b5499a4214f21fec16fda34be
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Use the orientable interface when compiled with Gtk 2.16.

commit 8f7c9dc65c4633d9e520954750edcfb853fd0902
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Cleanup trailing spaces.

commit 2dc0656810f38aec05ec3730851b46d9227fdfc0
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Improved panel window code.
    
    Not entirely finished but good enough for normal usage. The code
    basically splits the window layer in two: a base window class that
    is used for the normal window and the auto hide window and
    a panel window class.
    The screen positioning code has been improved too and should work
    a lot better with multi screen setups and randr.
    
    Also dropped the last bits of the glue code.

commit c9762c0dfd677c97f9995b1e9b51ae7da55217a7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Draw handle in tasklist. Not connected to property yet.

commit 480072a9f49d1cc896aa62cee4de849ede474eb4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Fix assert in tasklist code.

commit a0d549b9ca331bac87f01acb7b4ed7a31f5c0fb8
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Do not translate Xfce Panel in the plugins menu.

commit 48e7b8a1bc0a5054140a556e55732d57d2ffa66d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Don't request tasklist size if there are no visible children.

commit 48ab283aebd43c195ecea64c824421e313b67da5
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Add macro to expand a gdkcolor to double values.

commit 08f54b2dd79eb40d68ddd22ec721f27f29bc8c17
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Depend on gtk 2.16 and Xfce 4.6.0.

commit 8a70e5ed866dc75cb404ee5294aa6c7263a711e4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Drop rgba function. Now used in the internal code only.

commit 6bf28b30c31b15c376e29873409ee67804644ef6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Use cairo_set_source_rgba directly, alpha is always < 1.00.

commit fd7c2d3febd67b1c1c5c0449a95bf961d8887d88
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Scaled image is not based on a GtkImage.
    
    This to fix some drawing issues that are properly handled by
    GtkImage.

commit f067215b34bac8ab3ee482366bd6da7f312da047
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Put the id before the plugin name in the wrapper process name.

commit 0518bedc3e589e89084c2c21f14eff1f617a0098
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:15 2010 +0100

    Add a guess size property to the systray box to reduce flickering.
    
    This value is used to reduce the maximum icon size, so the systray
    does not resize that often.

commit 586ff9a605e51af3c00f38c5a2afcd4153c7fa51
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Add the known application names to the list store.

commit a940a5768cafc54f2841da573c390b45f281e75a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Cleanup some code in the systray-box.

commit b3618ccda09bc364e095bdc87510f40b9dba8753
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Backport the tray widget object.
    
    Positioning with a GtkFixed was not suitable for positioning
    icons, because the request -> allocation part is very important
    here. Rename the object from XfceTrayWidget to SystrayBox.

commit e73ce9bcd5c9f8f1a56b8acb7388840eaf14af0b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Fix typo in the systray, backport from bug 5149.

commit 3cb4542b1facb2fb8ffb668e72f37d30af246de1
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Allow systray rgba colormap if the Gtk+ version is >= 2.16.

commit d148383963c4224167e0f85cf486517b722b409f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Half-baked cleanup of the systray plugin.
    
    Renamed from files and going to remove the tray widget layer.
    Also added support for transparent tray icons, but this
    is not fully working yet.

commit 486e5fec306c65b94df667111c1032fcf66f8fc2
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Rename the .desktop entry X-XFCE-External to X-XFCE-Internal.
    
    This makes it more obvious plugins are external by default.

commit 60b6e236de9e4b20181b308d7cd3e295d73f7976
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Fix indentation in launcher.c.

commit 47f85a1979cbe80366fdb88cd2aff8f38662a691
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Fix maintainer blocks in Makefiles to fix autogen warnings.

commit a8328e24fdebd4c7d0f3711b8b34e5e41066cd73
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Remove tabs in the show desktop plugin code.

commit c21797c19f3269e12885eb269c0327abff8c6c83
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Implement xfce_panel_plugin_get_comment() in libxfce4panel.

commit 96e464b8beaf9e7483ec0470030f2e709c2afed6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Cleanup STATUS file.
    
    Search bugzilla for the resolved-4.8 flag to find bugs that
    will be fixed in the new panel.

commit 77aca59aeea92f3d6c3c8c5157959904e71f445a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Show the desktop icon when the active is panel or desktop.

commit 5353d2411f5c93850606983e2fbc2a344cf0ab14
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Small code cleanup in the window menu.

commit 33d890d2c5fd045a0d0881c74268ac483ec3e5f9
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Add urgentcy notify option to window menu dialog.

commit e714e7ec6286006964876fd3bcaa2cc9b0c61a3c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Change the type name from XfceLauncherPlugin to LauncherPlugin.

commit c0665d072f89dab1497369dac7a6d9d53b833673
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Prepend Xfce before the type name in the XFCE_PANEL_DEFINE_TYPE.
    
    This allows us to use names like LauncherPlugin, but the
    gtkrc type name will be XfceLauncherPlugin. Removed some long
    type names from the code.

commit 983ffffdc02189d35e19ee5515728632263c5f0d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Cleanup some code.

commit c456b70b75c0e7663025b325e5603c4555cf2c80
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Add workspace actions to the window menu plugin.

commit 3a2cd51d06a47aaec89820337c04a80f4d7056a4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Import the action buttons plugin.

commit 49e742a3987989e95530060af42c47e4b109ecb5
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Remove leftover function define from a previous test.

commit a73f007b46ffbdb97f61369a319a2f5418e27053
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Fix compiler warning.

commit 0d3a6cf56b3695fb1cdbbcc07a7bfdaa8107801e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:14 2010 +0100

    Cleanup some panel code.

commit 9751d35694469e93828f2087daf2ed47c5deff19
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Port window menu to new api. Resident because of wnck.

commit dc5939b32277454393615e31993dcc33b6b5d231
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Port task list to new api. Resident plugin because of wnck.

commit c9a21638d8ecd657a79128921c8a69778f6d7334
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Port separator plugin to the new api. Not a resident plugin.

commit f9e4703a5d13c38996155bfc0e7d22d8ace4cc60
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Fix typo in the DEFINE_TYPE macro.

commit 0e54c0be25373918b44ae069d5347719dd3bbf75
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Port show desktop to new plugin api. Not resident plugin.

commit 3bd6b3eef33be8d8fd835d35d7661a7365286689
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Port to new plugin api. Resident plugin because of libxfce4menu.

commit 78893a626aed8fee260c98ba03a8ecd7b561e51f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Port pager to object plugin.

commit c9ac57863320b737430fbdfb802b135842eca3e9
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Port the clock plugin to the new api. Not resident.

commit 705eb820a05992be917b67c58e85798f6d63d088
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Add support for the new api to the wrapper.

commit c661bcc6284e7b5844b0ebb378e473dc5d32bc5a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Support the new api in the panel.

commit 207cd2f241e3d40a88ec9158a279d0e8305394be
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Add new api for defining object oriented panel plugins.

commit e43b30bc89c54e26339acd59a36d3d812fd8af4c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Add G_MODULE_EXPORT to the PANEL_SYMBOL_EXPORT definition.

commit e7440148c3006f959f0256f7b989406245dad710
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Properly handle an empty panel configuration.
    
    Make sure the dialog works are expected when there are
    not windows created. To be secure the panel creates an
    empty window when no panels were found.
    
    Fix various warnings and crashed in the properties dialog
    when no active window was set.

commit 055331965e360d805111892779863cce85ea70ee
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    The launcher items were not saved, make sure that happens.

commit cf2dc1461cf4a802b77daeb456d09ef1245b6e7c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Fix the default value of the separator plugin.

commit 0c04cfe97555f77064ac72db6a872e64d3d7d494
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Don't crash in panel preferences when there are no panels.
    
    Also improve the debugging.

commit f2aa9c5e35b1b2c9b1885ddd585f7c44d5813b7f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Quote the filename in the add launcher desktop file.

commit 753e55d43fb48cacc62c1f1d4bd415a0bafd5406
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Improve screen handling of the show desktop plugin.

commit e657e622abf603fa0264cc9f76a8f1b7e408548f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Strip trailing spaces in the code.

commit 65ed398674e7deedf2d2458d174614b198e2246c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Various fixes in the pager plugin.
    
    Don't crash when the plugin is removed from the panel.
    
    Initially show the icon, so we have an active window when
    the plugin is constructed.

commit 58fa226858ecfe955de7049f8825b27760616179
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Make sure we link to the dbus libs for GPtrArray type.

commit b5f202b0cc1bf3dfcea36cf946c8e10d78041cef
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:13 2010 +0100

    Make show label insensitive in launcher, not implemented yet.

commit 6e87d06f7bd91eead0f342bd86607a068e299dcf
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Use GObject properties for the launcher plugin.

commit 09c5548fd669b8e113ba4a72a90600fc8e31eec3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Remove unneeded ;'s from object macros.

commit 1556650844724aeec42c117d4636b17529d55986
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Use mnemonic labels in the pager properties dialog.

commit 1bfef275c72e0318c877899196fe59a1aa329c70
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Use GObject properties for the pager settings.

commit 3e5d6f7ac6c54de69bde592478fbb0e3057e4596
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Rename the button-layout property to style.
    
    This is more consistent with other plugins.

commit f9803033c3d2c4fda1d1d80706378f3f9915f6c6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Use GObject properties for handling the separator settings.

commit 6b1097a30cfed629cdb489e4cac02de4da71618b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Make more things work in the window menu plugin.
    
    Dialog works, but some items are insensitive because they
    are not finished in the code.
    
    Change packing of urgent windows when only the active
    workspace is visible. They are appended in the list,
    separated from the workspace items. Workspace independent.

commit 70f1a37b17c912d53ff5c70ebf942440b20836a6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Initial version of the window menu plugin (the old window list).
    
    Most of the code is working, new way of urgentcy notification is
    not full working yet. Properties dialog is not working at all.

commit 5c8a8083a9ddde722bd2db27571064cbdeebace7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Some glade changes in the task list dialog.
    
    I'm going to rename the task list to window list, so this
    is a start. Also group the filter options in the new frame.

commit 85fd51ca20b45697c0f4e1ed139247769a5d23e8
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Fix typo in the tasklist Makefile.

commit 7e477976f727d8603986aa5d6bd7a23f7424959a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Release the requested names when the dbus service finalizes.
    
    This will avoid problem during panel restart, where a
    running instance was detected because the name was not
    released yet.

commit a6aa583ab744e8170d721d9b681659170aa3102c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Add running instance detection.

commit ce85d506dfd13430b4f12adb836bda04b6262470
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Backport and improve the launcher dnd code.

commit d76ebcf7c3ada232ef3f85207186563b75a3541a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Add macro to test if a list is empty or contains one item.

commit 7f9407bdb576a3bc01ebf767b29730c454aeea55
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Remove startup notification from the dependencies.

commit a85f998c3550e1614a85bdd0ddf9f8e8d4c31224
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Set sensitivity of some launcher dialog widgets.

commit ba168982ed78a6ec8a793cd60887ac06ddd69a91
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Enable drop support in the launcher.

commit 030bb9fae36566bfbb5d333f4da3f6ae54b7af3e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Properly pass through invalid drops for the launcher dnd.

commit 1fb2c45602b146fce726c3309fc9127a347a601f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Document launcher menu icon size style property.

commit 92827b949c60356653fb3d355c1f7f08602db963
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Merge in some launcher code changes from master.

commit c059bdcf8c7087a5e3a412e1b24ac5f0b9720c4d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Add macros for common list counting without traversing the list.

commit fcc11b79c3f3bc2d42b11c2889f8797bee14f27d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Various tasklist changes.
    
    Change the combo box in the properties dialog to a check box with
    the label "Show button labels". Makes it easier for people who are
    not familiar with the old Xfce icon box.
    
    Use a horizontal boolean internally instead of GtkOrientation.
    
    Some fixes in the size request code.

commit de98150ed317085e3d40252e1874b62211355110
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:12 2010 +0100

    Add a ChangeLog file again to make autogen happy.

commit 5228e2f929f70fca33587d5e9415b5d7dacd2e81
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Add style property to set the maximum button size.
    
    This will affect the number of rows displayed in the panel. When
    this value is for example set to 20 in the .gtkrc-2.0 file and
    the panel size is 40, 2 rows will the used.

commit fe8ce74fa246f057b8258db5768893180f70a102
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Add a gtkrc-2.0 readme file in the docs directory.

commit fab7335371d42a182faa4fdc04df0ceef02547ce
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Cleanup some code and complete the glade grouping combobox.

commit 67cb7ec7d5256c60130c8f86c4e7a719be060460
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Tasklist cleanups.
    
    Merge the toggle event in button-press-event, safes some code
    and we can use the GdkEvent directly for the timestamp.
    
    Property handle the class groups and free the list on exit.
    
    Some other tiny cleanups.

commit ebbd829731b92f48e0c7cde6f8f09f86e527b7a6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Use the arrow button instead of the blink button.

commit de55004d582502583ae5b49f255e16ed3a809f8e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Unset some (since the previous commit) default arrow button flags.

commit c431fc727648900821850694bd4d357b3f2a839a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Add blinking support to the arrow button.
    
    The arrow button supports blinking by now. You can create a
    normal toggle button by using GTK_ARROW_NONE as arrow type.
    It is also possible to add child widgets to the arrow button,
    previously this was not possible (and not needed). When both
    an arrow is set and a child is added, the arrow will show
    shown next to the child, this will be used for group buttons in
    the tasklist plugin.
    
    Probably some allocation issues will show up, but it's a good
    start for reducing the code complexity in the wnck plugins.

commit b8bd720afe000e271ba430d367b6c14214111bca
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Remove the blink button.
    
    It was a short life, but it is better to merge the code in
    the arrow button. We will benefit from this in the task list
    and window list plugin.

commit bd8a0d6e4a2e738afcd30e39aefda8dd615f65c0
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Remove the ChangeLog.

commit c6aecf8c9fd0e8e9f7aef6312d513d547e24306e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Rename XfcePanelButton to XfceBlinkButton.

commit e5080e253e0d33405f63817493b2598031103118
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Add blinking support for the task list plugin.

commit 3a1bbbd392ac83d2a5a7a82ec1d4ae44e8ddcd35
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Add a new (private) widget used for blinking buttons.
    
    This widget implements blinking buttons (for now only the
    old blinking style like in netk, glowing will come later).
    This widget is used in both the task list and the window
    list plugin.
    
    The API is not public available, since I'm not sure the
    naming is good and if it's useful for other plugins. So for
    now it will be only used internally to reduce code
    dupplication.

commit c9881b9c5488bb4ded731be153fabf6f1d23e0ec
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Add some line breaks to the get_private macro.

commit 700a3663555c371ca5774cefaabf18664c50e5ed
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Use the pointer position from the event.

commit d7b689d8826c8cc920ab188b5ca0c23501b650ad
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Update the TODO again.

commit 153daebb7a46874e6f6de8838f02feafb5c6ceda
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Improve allocations for expanding plugins without any width.

commit c5286cc5b4585c4b16bf55443155bc91a17de33f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Add style properties for max-button-width and ellipsize-mode.
    
    The max-button-width style property can be used to define the
    maximum button size. When the value is set to -1, the buttons
    will be expanded across the entire panel.
    
    The ellipsize-mode style property can be used to set the
    ellipsize mode of the tasklist button. Some people prefer
    omitting characters in the middle.
    
    Put something like this in your .gtkrc-2.0 to make it all work:
    
    style "xfce-tasklist-style"
    {
      XfceTasklist::max-button-length = -1
      XfceTasklist::ellipsize-mode = PANGO_ELLIPSIZE_MIDDLE
    }
    class "XfceTasklist" style "xfce-tasklist-style"

commit 4a6f93cabb2d33e59e034408752e7477fff55067
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Freeze autohide when the window is grabbed.

commit edf66500fbd5242d5f2249ff1910dd117dda84d7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Update copyright headers to 2009.

commit ab83fe2968d720bbedc150d6b0746a467dc267e9
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:11 2010 +0100

    Update the TODO.

commit 7ce041e38bfc0be03844a53ddc58491f30eafdfd
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Support dropping .desktop files on the panel for new launchers.
    
    Rewrote most the the code to support proper dropping of desktop
    files on the panel. During drag motion the uris are checked if
    they are .desktop files (no contents checking). If not the
    drop is not allowed.
    
    Also moved some dnd related code from the itembar to the panel.

commit 85a3181e4f390e2ff218fa03b16f7eabe760ef3f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Allow creating new launchers from the commandline arguments.

commit 25fa6a59efcbfdcdd929796aee94c81fce9bdd2b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Some more wrapper code cleanups.

commit 4af4978de2e302b6b80b15dc435832cc8bb4e822
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Cleanup the wrapper code a bit.

commit 157a725c6650eba5711b89918f44bef28dbf9c1f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Improve changing the process name of the wrapper a bit.
    
    Hopefully it will make less trouble on the platforms with
    support for the prctl call.

commit 79837facd3c496b4ea8ee0d38bab21697fdc141e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Reduce the maximum line length in panel-application a bit.

commit ef3f27c4602e28e31f5b4a53d93406277d4f58c0
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Properly cleanup files before adding a new plugin.
    
    This prevents there is existing Xfconf configuration or rx file.
    This could easily happend because we re-use ids to keep the id
    a low number.

commit 5b9e86b39b221efbef01ef1f3d44072cd376f3e7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Improve the size request of the tasklist plugin.

commit 916fa693bcf1eca7431136b01902f9fe80673792
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Highlight the active panel by using a marching ants selection.
    
    This drop quite a bit of code and it highlights the active
    panel a bit better on some backgrounds.

commit e598a1fbf4b8b33e0035037f85c7bf0b22fe3b8d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Set transient windows for the launcher in glade.
    
    Makes it more obvious the windows belong the the launcher
    properties dialog. Model should be even better, but that
    leaves the panel inaccessible... Will fix this later.

commit ec38635d5a7411ba68f5786333f07088c3465c1e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Make the right click menu work
    
    Not working perfect since it uses xfce_panel_plugin_position_menu(),
    which brings some improvements like a registered menu, but this
    positioning is not working very good on all screen positions (yet).
    
    Also decrease the maximum column number of the tasklist code a bit.

commit d03ef77692377208f0134017a75ef1438cf1eb5f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Move back to a launcher with filenames, not desktop id's.

commit 0abd75de138dcdc868c49a41215cc4ce324779e7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Use XfceMenuItem's for all the internal items.
    
    We use the XfceMenuItemPool to quickly lookup the desktop id's.
    The advantage of this is that libxfce4menu does a lot of work for
    us and since the desktop id's are stored, we're not fixed to the
    file location, so we will pickup changes in
    ~/.local/share/applications too.

commit 808871de88bbde137417636c536872c3752bdf7c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Add menu file that add all the desktop items in a single list.

commit d9aaf11eab7e97bd66990828615c0b2b856df42c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Property set the sensitivity of the add button in the add dialog.

commit 60f6c7384192aaa09f2e3b99e1ad885882a6b271
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Allow adding multiple items add once from the add dialog.

commit ca9d3630e193c6c77c3c23ead29c0fb42bcd8958
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Show comments in the treeview too
    
    This makes items easier to recognize, also cache the
    generated search text when searching a launcher to
    speed it up a bit.
    Minor cleanups.

commit 139b95fdb17bde21e0699b507ec0ac88f309375c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    More working version of the launcher code
    
    This version add more code to the launcher and makes it actually
    work again. Possible to add new launcher (not custom ones yet)
    and move and delete them. Editing is not working yet.

commit b1cc552bb08178c9b6e4e5619d3c13c82922d82e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    No I did not use copy/past... really...

commit ebf2fb40b1cd0439f1c62210124442ad4f3b65a3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Properly allocate the buttons when the orientation is vertical.

commit e5e478cea41c6dac103486960ed4093c935268d3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Force the plugin to resize when the orientation changes.

commit 4f5b94b5a8ead930a56c184f3ea88b7f497ace91
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Initial launcher code

commit c2e3be97031fd7de475348b338c00a3df28184e8
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:10 2010 +0100

    Use libxfce4menu item pool in the launcher.

commit 35b48ddfd0078518b9317272fe904ab4249d1208
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Make some more stuff work in the launcher dialogs.

commit 8d18f92fc814b3fcece159d71976e0fb7c4c480e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    New mokup for the launcher dialogs, more .desktop file oriented.

commit ac9c5e612a9cac92e9dcb2130eb3d3b9fd36152e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Fix unsafe loop so gcc can optimize it.

commit 3804670f79d6046c880b82e92042563c9c276b9d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Update glade interface requires to libxfce4ui.

commit 4301ff71cdc1cc78607c1dac74d1370a2bad8d21
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Add git revision support.

commit 6cfc64c5f6e015c22eaf8331374f8dd911c0768a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Fix compiler warnings in clock and handle xfconf init error.

commit eaaaa403d6cbcad2d4b5430bd61906b75f0c935f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Fix a whole bunch of compiler warnings.

commit d898351fc03c792fa2040153635506f61b5c5f45
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Move #define to a more suitable place.

commit c93217dfdc117a9f9d2a8f1601ad703a7185d09c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Use response callback in the panel's preferences dialog.

commit 05518cd64cf6d8308abaa4671178c64325b9f2ed
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Updates in the glade files and use cell renderers in glade.

commit 58dd1cf3260a147e19e9a93dc415b5eb0b320f96
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Add preferences dialog to the pager plugin and make it work.

commit 80d4e355c82005a5139c78273567d53afdfbc5ec
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Add submenu to panel plugins with various panel actions.

commit 40e023fd715b694f02e90273ec669983da1d7e97
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Cannot share struts, this is per-window + itembar changed signal.

commit 60a9a62472c36379d33655e97ed7dd9e7b7af866
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    More item manager updates + -V for version information.

commit e3a44764e26cf55c2222b5f1a326c98bd9597dac
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Partly import the pager plugin.

commit 035231eeb67519d4969af8a3e62cfd6e9b784ff8
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Fix some errors in the makefiles. Fix dist-check.

commit 0538467a71d825842718c6aac3a2c0758bf7e189
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Update POTFILES.in and add a POTFILES.skip for make dist.

commit 88cb6214ce95eec5fc4509c11fb7428fae81276c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Rename send-signal to emit-signal in the plugin provider.

commit 1c7a7ae89903ce703075987f5b0859b26bed699e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Make the show configure and about signals work for external plugs.

commit 8e3c2621f424d9e934bc136bc2790d8390b979ad
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Drop socket support for xfce4-settings-manager.
    
    Bit problematic since the preferences are mode deeply integrated
    then other Xfce components.

commit a486dc3972b3efc3bce041e076f00bebefbdc0bd
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:09 2010 +0100

    Fuzzy clock updates.

commit bb956bdb205c0a95f1344d55062807512e77fb0c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Fix more clock plugin code.

commit 5530cda4ad4c04adb8c2b0c92f048e5983743af3
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Move show_configure from init to construct in plugins.

commit 5082c05645ff9555e1b37a7f666c63baa28cfb6a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Make some more things work in the panel's item editor.

commit f825f21b6107eba51f3e64cf1034822a416fe348
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Improve the DBus communication by separating the plugin methods.
    
    Add provider API for getting and showing the configure and about
    dialog from the panel. External plugin implementation is not
    finished yet.

commit e8b292f8b7f1d074d083974a147faf268016301c
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Start with item editor in the panel preferences.
    
     - Initial start with items editor in the configure dialog.
     - New provider API for flag checking in the plugin.
     - Use flags in the plugin, also for the about and configure
       menu items, so the menu is generated the first time the menu
       is popped up, this improves startup time.
     - Random  fixes.

commit 8824fb450d750a89568437ec580e3e1b6c41ff1f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Change wireframe option text and position in dialog.

commit 18001f580cadf55fb25b7f654997c0c3ba1dc419
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Implement shared wireframe.

commit a179321697cfa2879203deaf136d80f2fff34172
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Move clock to Xfconf and wireframe support to tasklist.

commit 5b50b96e01fd50407551c9c81797fc9c8149b14d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Fix small typo in tasklist glade file.

commit 75dfc64b9b774d7ab3ef2918c69dd0b246d07a3b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Add seprator plugin + some renames.

commit 6fdb2da41eb439d152604e52dc1b8f665fe4271a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Change wrapper DBus communication to two methods.
    
     - For panel -> wrapper communication there is a signal called
       WrapperSetProperty.
     - For wrapper -> panel signals there is a method called
       WrapperProviderSignal.
    
    Removed the other (unused) methodes for now, since these 2 are
    used by the panel and wrapper and they should be as simple/fast as
    possible.

commit cc689e699abce463012154082ae6c7f51aa1ff2a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Small fix in the show desktop plugin.

commit 6a44a87dbf11439e6c3374db8d8b45c3499156b0
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Add the show desktop plugin.
    
    Also a bunch of glade file cleanups and use xdg icons names.

commit 98726fccf29892ab894fe99c3a72b5a7b980a294
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Add copyright for the Xfce dev team + some Gtk+ 2.14 fixes.

commit d7d9f110ee64f92054e07e305a1952bcda4c96c7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Fix crach in tasklist when dragging an unknown target.

commit dbcb384a133a1f458e6650fe52599f5cde0ae6a6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Move common macros into common/panel-private.h.

commit 252410a854e947788af370acf99ff3d5754ba26b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Fixes in the DBus code and provider signals.
    
     - Improve the provider-signal enums.
     - Move the dbus-related code to a seperate file in the new
       common directory.
     - Various cleanups.

commit 479452a6335a269f66ccb70e46e8455d00b4e795
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Use integers for the plugin's unique id.
    
    Lot fo changes to support the integer. Also add new macro
    IS_STRING for proper string checking.
    Drop some Gtk+ 2.12 code checks.

commit 6959da3fd0470ea6fe646dbbd7d148fcbc626b76
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Fix glade warning in launcher.

commit 233c51a972eeacfdabe33397756e9c37a95cce26
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Import new tasklist, not fully working yet.

commit 83d59018556470ef0ff17c8ddd5c84f0c5e5b5cd
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:08 2010 +0100

    Drop old launcher code and the test plugin.

commit dbd081d31bfcbd2acf718eda322530af6b1b7700
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Initial support for Xfconf and GtkBuilder in the panel.
    
    Add support for Xfconf to the panel and launcher plugins. Also
    switch to GtkBuilder for the various dialogs. Furthermore some
    fixes and cleanups.

commit be5658063388ae68530a855a315cfe93fa083604
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Add some glade test code to the launcher.

commit 1350e110b54afb61335e5c632273317aa2df44ab
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Remove test variable.

commit 6b716408a60abfda03cd031254645e7181c34cd1
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Make more code work in the object based launcher plugin.

commit d47121c9540cddca28e4ff6f16944fb8601b7e04
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Only send the save signal when the plugin menu is not blocked.

commit 429fc2b54e5ee1e629a62ea4c65e861c7fa1ed3f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Make the launcher code work, apart from the configure dialog.

commit 493dc56742c5e66811981782a3d4f24cacdf79fc
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Fix compiler warnings.

commit a4ea8f1522a5ff64677a771ee9ac3cea3ab27981
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Run construct after releazed like other plugins + warning fixes.

commit e76bf0d886fcb4e5c46af0cb2d180d599c1d9ce1
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Make scaled image for suitable for the panel.
    
    Don't store pixbufs larger then 128px.

commit 315806df48912b2e97bf640b69d9329af34912a0
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Make xfce_panel_plugin_get_arguments() return a const array.

commit 7ef0f296a138b42e27ada5e387ab424d997c1834
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Move in object based launcher code, not working yet.

commit 4a61da7e8e907068369ccffaba0409fda65af60b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Move old launcher code in a separate directory.

commit 6c7f9753c154fbd9bb980bf95c52edea69b8a03e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Remove test taskbar code.

commit d8eeb10951f77594383d9eed27f6630206852205
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Change tray allocation to prevent large tray sizes on startup.

commit 9bba4c53e02fa86391b3542dcaf75c64aefb54ad
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Use g_slice_new and g_new instead of g_slice_new0 and g_new0.

commit 9d0e4514b5a782cd61167f521cfd627808be2d33
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Update glade files to GtkBuilder.

commit 6910f781f17a1c3c19ea4e431c4eb68e6e7ba1c7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Don't crash on warnings for now. GtkBuilder generates some.

commit bc3e0f3742a8349eb0b650b9b4208863747c1c17
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Import test plugin for testing the object code.

commit 835e2722e270d35a729643c4f9852855f57335a6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Bump Gtk dependency to 2.12 and exo for GtkBuilder support.

commit b9104bc695da2ec78c05faa61da3093b112dc095
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Prepare PanelModule and wrapper for object oriented plugins.

commit 474a81b94d3198e5e5016f0f157acdae421484fc
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Prepare XfcePanelPlugin for object oriented plugins.
    
     - Add construct function call in the class for object
       orientent plugin (try 2).
     - Don't run FREE_DATA in dispose twice.
     - Add macro to regiter an object orientent plugin.

commit 192f5c07c1ed620c7cbea2eb48ec8dcb47e7957a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:07 2010 +0100

    Initial import of the glade files.

commit 77629009e2231b97afbac60a825450b80759f6eb
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Bind modules locally.

commit 126baa15ac420102e454f58e2b4983980b5f0fb2
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Use scaled image in launcher + some code fixes in this widget.

commit bac319d2c07986673355885c65e97f5b65e1c266
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Add the XfceScaledImage widget from libxfcegui4.

commit c28d95fe2b5913e987e578aa9ac92a54d44189fd
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Use -fvisibility=hidden in libxfce4panel.

commit f30ff1b3dbe45f1de9570ea9369716dda6aa2fac
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Move provider signal to the interface + some other fixes.
    
     - Update TODO
     - Add provider_signal in the iface and use it in
       panel-plugin-external.c.
     - Direct call for provider_signal instead of
       g_signal_emit_by_name().

commit ccc530b7791941afb2bda39ce8f7a2dde5cf60fa
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Share relative plugin path format and auto restart ext. plugins.
    
     - Move relative plugin config path to provider header.
     - Send the window in panel_glue_set_provider_info() since it's
       available in all the calling functions.
     - Implement auto plugin restart for external plugins.

commit 3add9f9ea2416aca6ec9c32cd208b1b1ca3adbfb
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Fix glib 2.14 dependency. Bug 4376.

commit a27b1e434f6c255d80b5c885c2e662a93be4e587
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Change the process name of the wrapper to panel-{plugin_name}.

commit 32ddcdd3c74db2d22e21344703046218242d2412
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Don't peek the parent class, already done by G_DEFINE_TYPE.

commit 10dcf9b2e66a5e5e86c48bb2cf6ccffb385abd77
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Strip trailing spaces.

commit 43d721af138ed7f1226efb1958f083aa4eee57c7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Various cleanups and fixes.
    
     - Put provider signal in class_init.
     - Fix xfce_panel_plugin_unregister_menu and make if work with
       panel_window_{freeze,thaw}_autohide.
     - Set module name when dragging a plugin.
     - Make dbus defined in xfce-panel-plugin-provider.h
     - Show properties and items dialog on the correct screen.
     - Cleanup and refactor some code.

commit b39a8b3044f5c5d3b3d87de83fd82e27f01303f7
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Quit wrapper when the org.xfce.Panel owner is gone.

commit 20124207acaa978f484ba746a133334163f4c400
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Add missing marshaller file and fix dnd for external plugins.

commit c998b926936e70b66b28cb5aed48bd3f75c434fe
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Use enum for the provider signal.
    
    Implement provider signal in another way. We not use an enum for
    the different signal, this make the code a lot easier to read and
    smaller.

commit b39c69706481692cabe62ad63d3294f61a542f6b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Couple of cleanups and reminders in panel plugin code.

commit 2d5b325adf8254b9294bd4c49be0950372227cfa
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Add marshal for size signal and DBus improvements.
    
     - Add marshal for libxfce4panel's size signal.
     - Some code style improvements.
     - Implement DBus get for PanelNumber.
     - Open correct panel number in wrapper using PanelNumber.

commit 9a7ca50cb5f6a9cea0bbddc60bff6e5373923640
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Return default digital clock format instead of NULL.

commit 46b000dde259d1e121abe3204baab9dcb941e503
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Clip the cairo drawing area in the clock plugin and panel window.

commit 874f1a1c61be66c53833e2f1169a9f67d78430e5
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Add support for opening panel dialogs with a panel number.

commit 6a6702dc10b6c2553d102c02bd2fc3a68abd3e95
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Update TODO.

commit 44fd922ca2ef4f31b8481e6b5dea08e3e376c44a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Clock improvements and bug fix.

commit 9f22447b57ed3545877c1d3fb00d63157905494e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:06 2010 +0100

    Import separator plugin from master.

commit 065a784888618c419ce0c7da51dcb263eaecb86e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Add hack in wrapper for systray rgba windows.
    
    This does not work properly until the systray supports RGBA
    windows. Sockets cannot embed a plug with a different depth.

commit eda592cf8dbd5730e1352316443d551f355eac96
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Fix more DBus issues.

commit ff47b3432a3a36a4fca6a0321dcd325b5d7c1ffe
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Add property queue for DBus that is flushed once plugin embedded.

commit cb36868e038923fd271f5591dfd13fed42ade9a5
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Add missing marshaller file.

commit 8dc355e70f9206ad94830c8aaf120c7a4c53e9b9
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Wrapper communication through DBus and drop GOBject plugins.
    
    The GObject plugin support gives a lot of problems. Will add some
    better once I get to it.
    Also a bunch of cleanups through the code.

commit 50cf3a94a9fc48d59bacbdf7d997967062c4587b
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Update STATUS and TODO.

commit a8875699aa96243e73a013a2431a51eaf13edbeb
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Remove maintainer header from AUTHORS.

commit 32439170f740f0e785ad7d95291ea2072c2aec86
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Move contributors in THANKS file.

commit 1f112bfe7b443dce7f62536959bc4b8458941a4d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    License updates.

commit 2620eda582d4d36431ba1b968a95729c10c4e887
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Add signal handler for SIGTERM and friends.

commit 8a8bb04d11a1826abd86c3e36fcb31a801817a39
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Fix launcher icon load after xfsettingsd crash.
    
    Also replace deprecated gtk_type_class() function.

commit 669aa5a5fffb80e627c51dc0223998a314419a21
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Small cleaups in the code.

commit 4a727c760b25281efc807fec98d6697f47d0d1b9
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Add desktop files to dist.

commit e7a4b4a9da2348c98f041b47a67a8ec73eaf22f4
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Update TODO.

commit 16e3d54278d5a2b873caca2b08145d5efbb85d3e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Couple of code cleanups.
    
     - Change some g_return_'s to panel_return for static functions.
     - Cleanup panel application.
     - Make panels sensitive again when a plugin drag is cancelled.
     - Move plugin provider information of the panel to glue and
       use this function after a plugin move, insert and external
       plugin restart.

commit 2112c256e0b55cf5996144db6cfb95dba2515d81
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Ask the user what to do when an external plugin crashes.

commit 00af00192331a1a49c141d40b1c1e2577c1eb274
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Check for running instance on startup, exit if there is one.

commit 4825354706078accb98bff858a4f67a4d4e4cfac
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Move some enums and flags around in the panel and plugin code.
    
     - Move itembar enum type to the header for use in application.c.
     - Drop URI target since we're not going to use it anyway.
     - Add flag macros to private.h.
     - Introduce panel border flags and make it work properly.

commit d0ba01f47700aad60488fb87a4866c72af4c1864
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Add a TODO file.

commit 077ca3fda163327a2b42b194e381d7d89c622483
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Use new rgba function in panel code.

commit 4dcec235bd11a2e679e76ba68bcadc36d9d4e964
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Rename deprecated function in launcher.

commit 3d8892173819fabf3f4b747b9214558f61414c1d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:05 2010 +0100

    Couple of code cleanup and use rgba function.

commit ac33bff39e3f8ee18a798ac01256930afdeacbbf
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:04 2010 +0100

    Rename convenience functions to start with xfce_panel_.
    
    Add macros for the old names and add libxfce4util to our .pc
    file to avoid problem with plugins and we link to it in the
    library anyways.

commit 3b7428949addd7c6a91d49bfcd7bc8a4f01010d1
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:04 2010 +0100

    Drop .svn directories.

commit 7544ce978b7e21c785b93c1064cba8647a413387
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:04 2010 +0100

    Rework active panel code and some renaming.

commit 4b33cc07ce164137adda2a6935f1e1524f5542c6
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:04 2010 +0100

    Partly fix background alpha in remote plugins.

commit c7f80e77bcf57cef2da29eabb436cd2b324fed02
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:04 2010 +0100

    Save plugins in dispose and timeout (every 10 minutes).
    
    Also some code cleanups.

commit 9164257afeb2045d41139962c2c0251f3c472b6d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:04 2010 +0100

    Remove per-plugin internal/external code.
    
    This makes the code overly complicated without much gain. It
    is also something not much user will case about.

commit c97ac6af6243fa96a03197aae8e1d8cc2d0e9c90
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:04 2010 +0100

    Add support GTypeModule type support to the wrapper.

commit 524f0cc5b3ef25aa06ff4fb223f0cb5ad5d3d60f
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:04 2010 +0100

    Add highlight code to active panel.
    
    Also bump version to 4.7.0 and properly install a .pc file.

commit 405ff9c0cb7dbe1e97c252aa0f42bc61f799967e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:04 2010 +0100

    Fix some issues in the remote add plugin code.
    
    Also add a dialog to choose between panels when adding a
    remote plugin if there is more then 1 panel.

commit 6b967de2cf8dfcf7e723b414b2fe87bc59c2f9fb
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:04 2010 +0100

    Allow adding plugins from the commandline with arguments.

commit 24a0d35e5492f7a17af9fa2dcea517f0d945c8f9
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:04 2010 +0100

    Add desktop files for panel preferences and add launcher.

commit 5c100bfef6d7c3bcfef39e0aa79732e004a7da1e
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:04 2010 +0100

    Move plugin free and save signals to dispose.
    
    Also fix a bug in Gtk+ 2.13 where gtk_window_get_position() is not working.

commit a15f6a4732965d631f13349f18ef50aed6ea1b18
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:04 2010 +0100

    Remove deprecated pango code and some debugging.

commit 0f486a34d21a96ee6e9de0d45e884951cbb44d5a
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:04 2010 +0100

    Rework DBus code and import tasklist plugin from master.
    
     - Split DBus code into a client and service part.
     - Stop using signals for DBus but add separate methodes.
     - Fix id / display_name switch in panel plugin creation.
     - Add tasklist plugin from trunk.

commit 53aaea878a8f37fe3a7aed49c299c395a05209a5
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:04 2010 +0100

    Change the dbus interface.

commit 170fd5924b901aaf04513f189442bbc3d8a4e575
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 14:08:00 2010 +0100

    Initial import.

commit 4b94e4aabe1106ae1d9339e19f755123cca7532d
Author: Nick Schermer <nick@xfce.org>
Date:   Fri Feb 26 10:47:41 2010 +0100

    Empty master for devel branch merge.
    
    Because the devel branch is a rewrite that is not based
    on master, so it needs to be merged on top of an empty
    master.
