Skip to content
Commits on Source (6)
......@@ -5,7 +5,7 @@ project(whiskermenu)
# version number
set(whiskermenu_version_major "2")
set(whiskermenu_version_minor "1")
set(whiskermenu_version_micro "6")
set(whiskermenu_version_micro "7")
set(whiskermenu_version_tag "")
set(whiskermenu_version "${whiskermenu_version_major}.${whiskermenu_version_minor}.${whiskermenu_version_micro}")
if(${whiskermenu_version_tag} MATCHES "git")
......
commit 772e6ae08323724567f45a01b9ff6c3c7dd11741
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-22
Bump version number.
commit e85cbe62f166b5a848b901f34a28fe557267f618
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-22
I18n: Update translation ro (100%).
commit 6413cd506dd5716954896e33a43ec1df5acc1b15
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-22
I18n: Update translation pt (100%).
commit 09492ebfc82727a861ab11df9f9f1a68657885fe
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-22
I18n: Update translation da (100%).
commit 73129ad806b17d56cc1d70382410d0d3c9fa5bbd
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-20
Use HTTPS for plugin website.
commit c9abad9ef49539cfe9ebf9f0bdfdd576554ae1fc
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-18
I18n: Update translation tr (100%).
commit e0cc4e77615a1bc5a9ed6acda87f6d1878d0be9e
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-17
I18n: Update translation pl (100%).
commit 83b8072b2adb887eb8ba05e78d4e0d1345f5af7e
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-17
I18n: Update translation de (100%).
commit 7d2f6650287c1a4408cdc12f19970cac45b00567
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-17
I18n: Update translation bg (100%).
commit 9c5ee972d1310b2dd353e2f6d557fbcffaf979c4
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-16
Fix memory leak when recreating window.
commit 03699ecd69ff0059dccc9a7870b8f9ddcc4f47b5
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-15
I18n: Update translation zh_TW (100%).
commit cc50cddab10f85974a2657f5ad63669d39c4eba8
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-15
I18n: Update translation cs (100%).
commit 2dc45bb5b5595f61f5e660988a6717700624663c
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-15
I18n: Update translation sk (100%).
commit f3d55f354b243538598670218ad2785db35ecc99
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-15
I18n: Update translation lt (100%).
commit 72e76d4dd8cafc54741b1fc4ab5d5ec0ca72ff7f
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-14
I18n: Update translation fr (100%).
commit b4faea04c41ae47a2cdab1667995c2f2bc60bfb6
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-10
I18n: Update translation nl (100%).
commit b93d521c0b7701b4a203da993bf306a96ac7fd5f
Author: Graeme Gott <graeme@gottcode.org>
Date: 2018-04-08
......
2.1.7
=====
- Fix memory leak when recreating window.
- Use HTTPS for plugin website.
- Translation updates: Bulgarian, French, Turkish.
2.1.6
=====
- Fix losing search focus. (bug #14209)
......
xfce4-whiskermenu-plugin (2.1.7-1) unstable; urgency=medium
* New upstream version 2.1.7
-- Yves-Alexis Perez <corsac@debian.org> Sun, 06 May 2018 16:34:10 +0200
xfce4-whiskermenu-plugin (2.1.6-1) unstable; urgency=medium
* Upload to unstable.
......
/*
* Copyright (C) 2013, 2016 Graeme Gott <graeme@gottcode.org>
* Copyright (C) 2013, 2016, 2018 Graeme Gott <graeme@gottcode.org>
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
......@@ -56,10 +56,12 @@ Command::~Command()
{
if (m_button)
{
gtk_widget_destroy(m_button);
g_object_unref(m_button);
}
if (m_menuitem)
{
gtk_widget_destroy(m_menuitem);
g_object_unref(m_menuitem);
}
......
/*
* Copyright (C) 2013, 2016 Graeme Gott <graeme@gottcode.org>
* Copyright (C) 2013, 2016, 2018 Graeme Gott <graeme@gottcode.org>
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
......@@ -88,6 +88,7 @@ LauncherView::~LauncherView()
{
m_model = NULL;
gtk_widget_destroy(GTK_WIDGET(m_view));
g_object_unref(m_view);
}
......
/*
* Copyright (C) 2013, 2014, 2015, 2016, 2017 Graeme Gott <graeme@gottcode.org>
* Copyright (C) 2013, 2014, 2015, 2016, 2017, 2018 Graeme Gott <graeme@gottcode.org>
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
......@@ -61,6 +61,7 @@ Page::~Page()
}
delete m_view;
gtk_widget_destroy(m_widget);
g_object_unref(m_widget);
}
......
/*
* Copyright (C) 2013, 2014, 2015, 2016, 2017 Graeme Gott <graeme@gottcode.org>
* Copyright (C) 2013, 2014, 2015, 2016, 2017, 2018 Graeme Gott <graeme@gottcode.org>
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
......@@ -18,7 +18,7 @@
#ifndef WHISKERMENU_PLUGIN_H
#define WHISKERMENU_PLUGIN_H
#define PLUGIN_WEBSITE "http://goodies.xfce.org/projects/panel-plugins/xfce4-whiskermenu-plugin"
#define PLUGIN_WEBSITE "https://goodies.xfce.org/projects/panel-plugins/xfce4-whiskermenu-plugin"
#include <string>
......
......@@ -65,7 +65,7 @@ Comment[en_GB]=Show a menu to easily access installed applications
Comment[es]=Mostrar un menú para acceder fácilmente a las aplicaciones instaladas
Comment[fa]=نمایش یک منو برای دسترسی آسان به برنامه‌های نصب‌شده
Comment[fi]=Näytä valikko, josta on helppo pääsy asennettuihin sovelluksiin
Comment[fr]=Afficher un menu pour accéder facilement aux application installées
Comment[fr]=Afficher un menu pour accéder facilement aux applications installées
Comment[he]=הצג תפריט כדי לגשת בקלות אל יישומים מותקנים
Comment[hr]=Prikaži izbornik da bi lakše pristupili instaliranim aplikacijama
Comment[hu]=menü megjelenítése a telepített alkalmazások könnyű eléréséhez
......
......@@ -288,6 +288,7 @@ WhiskerMenu::Window::~Window()
delete m_favorites_button;
delete m_recent_button;
gtk_widget_destroy(GTK_WIDGET(m_window));
g_object_unref(m_window);
}
......
......@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Whisker Menu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-07 08:16-0400\n"
"PO-Revision-Date: 2018-04-07 16:58+0000\n"
"PO-Revision-Date: 2018-04-16 11:44+0000\n"
"Last-Translator: Kiril Kirilov <cybercop_montana@abv.bg>\n"
"Language-Team: Bulgarian (http://www.transifex.com/gottcode/xfce4-"
"whiskermenu-plugin/language/bg/)\n"
......@@ -323,7 +323,7 @@ msgstr "Стартера не може да бъде редактиран."
#: ../panel-plugin/configuration-dialog.cpp:493
#, c-format
msgid "Unable to open the following url: %s"
msgstr "Не може да бъде отворен следния адрес: %s"
msgstr "Не може да бъде отворен следният адрес: %s"
#: ../panel-plugin/configuration-dialog.cpp:574
msgid "Use a single _panel row"
......
......@@ -13,7 +13,7 @@ msgstr ""
"Project-Id-Version: Whisker Menu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-07 08:16-0400\n"
"PO-Revision-Date: 2018-04-07 14:31+0000\n"
"PO-Revision-Date: 2018-04-15 17:35+0000\n"
"Last-Translator: Michal Várady <miko.vaji@gmail.com>\n"
"Language-Team: Czech (http://www.transifex.com/gottcode/xfce4-whiskermenu-"
"plugin/language/cs/)\n"
......
# Danish translation of xfce4-whiskermenu-plugin.
# Copyright (C) 2017 Graeme Gott
# Copyright (C) 2018 Graeme Gott
# This file is distributed under the same license as the xfce4-whiskermenu-plugin package.
#
# Translators:
......@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: Whisker Menu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-07 08:16-0400\n"
"PO-Revision-Date: 2018-03-08 15:32+0000\n"
"PO-Revision-Date: 2018-04-21 20:13+0000\n"
"Last-Translator: scootergrisen\n"
"Language-Team: Danish (http://www.transifex.com/gottcode/xfce4-whiskermenu-"
"plugin/language/da/)\n"
......
......@@ -14,7 +14,7 @@ msgstr ""
"Project-Id-Version: Whisker Menu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-07 08:16-0400\n"
"PO-Revision-Date: 2018-04-07 22:44+0000\n"
"PO-Revision-Date: 2018-04-16 23:17+0000\n"
"Last-Translator: M T <michtrz@gmail.com>\n"
"Language-Team: German (http://www.transifex.com/gottcode/xfce4-whiskermenu-"
"plugin/language/de/)\n"
......
# French translation of xfce4-whiskermenu-plugin.
# Copyright (C) 2017 Graeme Gott
# Copyright (C) 2018 Graeme Gott
# This file is distributed under the same license as the xfce4-whiskermenu-plugin package.
#
# Translators:
# Anthony Jorion <pingax@frugalware.org>, 2013
# Charles Monzat <superboa@hotmail.fr>, 2018
# jc1 <jc1.quebecos@gmail.com>, 2013,2015-2016
# Lysio J-C <lysio.jc@outlook.fr>, 2017
# Urien Desterres <urien.desterres@gmail.com>, 2014-2015
......@@ -13,8 +14,8 @@ msgstr ""
"Project-Id-Version: Whisker Menu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-07 08:16-0400\n"
"PO-Revision-Date: 2017-01-29 19:58+0000\n"
"Last-Translator: Lysio J-C <lysio.jc@outlook.fr>\n"
"PO-Revision-Date: 2018-04-12 10:03+0000\n"
"Last-Translator: Charles Monzat <superboa@hotmail.fr>\n"
"Language-Team: French (http://www.transifex.com/gottcode/xfce4-whiskermenu-"
"plugin/language/fr/)\n"
"Language: fr\n"
......@@ -53,7 +54,7 @@ msgstr "Lanceur d’application alternatif pour Xfce"
#: ../panel-plugin/configuration-dialog.cpp:719
msgid "Amount of _items:"
msgstr "Nombre d’élé_ments :"
msgstr "Nombre d’élé_ments :"
#: ../panel-plugin/plugin.cpp:258
msgid "Applications"
......@@ -61,7 +62,7 @@ msgstr "Applications"
#: ../panel-plugin/configuration-dialog.cpp:654
msgid "Background opacit_y:"
msgstr "Opacité de l’_arrière-plan :"
msgstr "Opacité de l’_arrière-plan :"
#: ../panel-plugin/command-edit.cpp:49
msgid "Browse the file system to choose a custom command."
......@@ -70,11 +71,11 @@ msgstr ""
#: ../panel-plugin/configuration-dialog.cpp:876
msgid "C_ommand:"
msgstr "C_ommande : "
msgstr "C_ommande : "
#: ../panel-plugin/configuration-dialog.cpp:639
msgid "Categ_ory icon size:"
msgstr "Taille des icônes des caté_gories :"
msgstr "Taille des icônes des caté_gories :"
#: ../panel-plugin/recent-page.cpp:173
msgid "Clear Recently Used"
......@@ -90,7 +91,7 @@ msgstr "Détails"
#: ../panel-plugin/configuration-dialog.cpp:534
msgid "Di_splay:"
msgstr "Affic_hage :"
msgstr "Affic_hage :"
#: ../panel-plugin/configuration-dialog.cpp:736
msgid "Display by _default"
......@@ -98,7 +99,7 @@ msgstr "Afficher par _défaut"
#: ../panel-plugin/page.cpp:268
msgid "Edit Application..."
msgstr "Modifier l'application..."
msgstr "Modifier lapplication"
#: ../panel-plugin/settings.cpp:124
msgid "Edit _Profile"
......@@ -112,7 +113,7 @@ msgstr "Impossible de modifier le profil."
#: ../panel-plugin/run-action.cpp:41 ../panel-plugin/search-action.cpp:188
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Impossible d’exécuter la commande « %s »."
msgstr "Impossible d’exécuter la commande « %s »."
#: ../panel-plugin/settings.cpp:123
msgid "Failed to launch menu editor."
......@@ -152,7 +153,7 @@ msgstr "Ignorer les _favoris"
#: ../panel-plugin/configuration-dialog.cpp:623
msgid "Ite_m icon size:"
msgstr "Taille des icônes des élé_ments :"
msgstr "Taille des icônes des élé_ments :"
#: ../panel-plugin/icon-size.cpp:54
msgid "Large"
......@@ -177,7 +178,7 @@ msgstr "Menu"
#: ../panel-plugin/configuration-dialog.cpp:851
msgid "Nam_e:"
msgstr "No_m : "
msgstr "No_m : "
#: ../panel-plugin/configuration-dialog.cpp:796
msgid "Name"
......@@ -226,7 +227,7 @@ msgstr "Retirer des favoris"
#: ../panel-plugin/configuration-dialog.cpp:433
#, c-format
msgid "Remove action \"%s\"?"
msgstr "Supprimer l’action « %s » ?"
msgstr "Supprimer l’action « %s » ?"
#: ../panel-plugin/configuration-dialog.cpp:827
msgid "Remove selected action"
......@@ -259,7 +260,7 @@ msgstr "Sélection d’une commande"
#: ../panel-plugin/whiskermenu.desktop.in.h:2
msgid "Show a menu to easily access installed applications"
msgstr "Afficher un menu pour accéder facilement aux application installées"
msgstr "Afficher un menu pour accéder facilement aux applications installées"
#: ../panel-plugin/configuration-dialog.cpp:605
msgid "Show application _descriptions"
......@@ -267,11 +268,11 @@ msgstr "Afficher la _description des applications"
#: ../panel-plugin/configuration-dialog.cpp:611
msgid "Show application too_ltips"
msgstr "Afficher les info_bulles des applications"
msgstr "Afficher les info-_bulles des applications"
#: ../panel-plugin/configuration-dialog.cpp:598
msgid "Show cate_gory names"
msgstr "Voir les noms de caté_gories"
msgstr "Afficher les noms de caté_gories"
#: ../panel-plugin/configuration-dialog.cpp:592
msgid "Show generic application _names"
......@@ -328,7 +329,7 @@ msgstr "Impossible de modifier le lanceur."
#: ../panel-plugin/configuration-dialog.cpp:493
#, c-format
msgid "Unable to open the following url: %s"
msgstr "Impossible d’ouvrir l’URL suivante : %s"
msgstr "Impossible d’ouvrir l’URL suivant : %s"
#: ../panel-plugin/configuration-dialog.cpp:574
msgid "Use a single _panel row"
......@@ -390,7 +391,7 @@ msgstr "_Aide"
#: ../panel-plugin/configuration-dialog.cpp:560
msgid "_Icon:"
msgstr "_Icône :"
msgstr "_Icône :"
#: ../panel-plugin/settings.cpp:120
msgid "_Lock Screen"
......@@ -403,7 +404,7 @@ msgstr "_Ok"
#: ../panel-plugin/configuration-dialog.cpp:864
msgid "_Pattern:"
msgstr "_Motifs :"
msgstr "_Motifs :"
#: ../panel-plugin/configuration-dialog.cpp:888
msgid "_Regular expression"
......@@ -411,7 +412,7 @@ msgstr "_Expression régulière"
#: ../panel-plugin/configuration-dialog.cpp:549
msgid "_Title:"
msgstr "_Titre :"
msgstr "_Titre :"
#: ../panel-plugin/plugin.cpp:450
msgid "translator-credits"
......
......@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Whisker Menu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-07 08:16-0400\n"
"PO-Revision-Date: 2018-04-07 15:48+0000\n"
"PO-Revision-Date: 2018-04-15 14:30+0000\n"
"Last-Translator: Moo\n"
"Language-Team: Lithuanian (http://www.transifex.com/gottcode/xfce4-"
"whiskermenu-plugin/language/lt/)\n"
......
# Dutch translation of xfce4-whiskermenu-plugin.
# Copyright (C) 2017 Graeme Gott
# Copyright (C) 2018 Graeme Gott
# This file is distributed under the same license as the xfce4-whiskermenu-plugin package.
#
# Translators:
# Pjotr <pjotrvertaalt@gmail.com>, 2013-2017
# Pjotr <pjotrvertaalt@gmail.com>, 2013-2018
msgid ""
msgstr ""
"Project-Id-Version: Whisker Menu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-07 08:16-0400\n"
"PO-Revision-Date: 2017-01-17 19:56+0000\n"
"PO-Revision-Date: 2018-04-08 19:12+0000\n"
"Last-Translator: Pjotr <pjotrvertaalt@gmail.com>\n"
"Language-Team: Dutch (http://www.transifex.com/gottcode/xfce4-whiskermenu-"
"plugin/language/nl/)\n"
......
......@@ -7,7 +7,7 @@
# december <december0123@gmail.com>, 2013
# december <december0123@gmail.com>, 2013
# december <december0123@gmail.com>, 2013
# Marcin Mikołajczak <m4sk1n@vivaldi.net>, 2016
# Marcin Mikołajczak <me@m4sk.in>, 2016
# Michał Olber <michal@olber.pl>, 2013-2015
# M T <michtrz@gmail.com>, 2013-2014,2016-2018
# Michał Olber <michal@olber.pl>, 2013
......@@ -19,7 +19,7 @@ msgstr ""
"Project-Id-Version: Whisker Menu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-07 08:16-0400\n"
"PO-Revision-Date: 2018-04-07 22:44+0000\n"
"PO-Revision-Date: 2018-04-16 23:16+0000\n"
"Last-Translator: M T <michtrz@gmail.com>\n"
"Language-Team: Polish (http://www.transifex.com/gottcode/xfce4-whiskermenu-"
"plugin/language/pl/)\n"
......
......@@ -12,7 +12,7 @@ msgstr ""
"Project-Id-Version: Whisker Menu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-07 08:16-0400\n"
"PO-Revision-Date: 2018-04-07 23:22+0000\n"
"PO-Revision-Date: 2018-04-21 22:48+0000\n"
"Last-Translator: José Vieira <jvieira33@sapo.pt>\n"
"Language-Team: Portuguese (http://www.transifex.com/gottcode/xfce4-"
"whiskermenu-plugin/language/pt/)\n"
......
# Romanian translation of xfce4-whiskermenu-plugin.
# Copyright (C) 2017 Graeme Gott
# Copyright (C) 2018 Graeme Gott
# This file is distributed under the same license as the xfce4-whiskermenu-plugin package.
#
# Translators:
# Alexandru Ianu <alexandru.ianu@gmail.com>, 2013-2015
# Dexter Rufus, 2017
# Sebastian Brici <bricisebastian@gmail.com>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Whisker Menu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-07 08:16-0400\n"
"PO-Revision-Date: 2017-12-04 09:34+0000\n"
"Last-Translator: Dexter Rufus\n"
"PO-Revision-Date: 2018-04-20 21:11+0000\n"
"Last-Translator: Sebastian Brici <bricisebastian@gmail.com>\n"
"Language-Team: Romanian (http://www.transifex.com/gottcode/xfce4-whiskermenu-"
"plugin/language/ro/)\n"
"Language: ro\n"
......