debian/0000775000000000000000000000000012304726445007177 5ustar debian/docs0000664000000000000000000000004011756667210010050 0ustar AUTHORS NEWS README THANKS TODO debian/install0000664000000000000000000000003411756667210010571 0ustar xpad.xpm usr/share/pixmaps/ debian/compat0000664000000000000000000000000211756667210010401 0ustar 7 debian/rules0000775000000000000000000000070112304375653010256 0ustar #!/usr/bin/make -f #export DH_VERBOSE=1 %: dh $@ SAVERESTORE := \ po/xpad.pot \ override_dh_auto_configure: for f in $(SAVERESTORE) ; do [ -e $$f.d-r-orig ] || cp -p $$f $$f.d-r-orig ; done dh_auto_configure [ -e xpad.xpm ] || \ convert -resize 32x32 images/hicolor/scalable/apps/xpad.svg xpad.xpm override_dh_auto_clean: dh_auto_clean for f in $(SAVERESTORE) ; do [ ! -e $$f.d-r-orig ] || mv $$f.d-r-orig $$f ; done rm -f xpad.xpm debian/control0000664000000000000000000000134412001276023010566 0ustar Source: xpad Section: x11 Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Bart Martens Build-Depends: debhelper (>= 7.0.50), autotools-dev, libgtk2.0-dev (>> 2.6.0), imagemagick, intltool (>= 0.31), libmagickcore5-extra | libmagickcore-extra Standards-Version: 3.9.3 Homepage: http://mterry.name/xpad/ Package: xpad Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: sticky note application for X This program consists of independent pad windows, each is basically a text box in which notes can be written. Xpad attempts to emulate the look of postit notes, although the look of the notes can be customized any way you like. debian/patches/0000775000000000000000000000000012304726353010624 5ustar debian/patches/series0000664000000000000000000000005312304373063012033 0ustar missing.diff revert-4.2-new-features.patch debian/patches/revert-4.2-new-features.patch0000664000000000000000000003764012304726353016072 0ustar # Reverting http://bazaar.launchpad.net/~xpad-team/xpad/trunk/revision/660 # It's the only new feature since last upload, reverting it since we are in # feature freeze. Index: xpad-4.2/src/xpad-preferences.c =================================================================== --- xpad-4.2.orig/src/xpad-preferences.c 2013-10-24 19:14:58.000000000 +0200 +++ xpad-4.2/src/xpad-preferences.c 2014-03-01 16:05:23.791093646 +0100 @@ -36,7 +36,6 @@ GtkWidget *editcheck; GtkWidget *stickycheck; GtkWidget *confirmcheck; - GtkWidget *trayconfigbox; GtkWidget *textbutton; GtkWidget *backbutton; @@ -48,7 +47,6 @@ guint notify_font_handler; guint notify_back_handler; guint notify_text_handler; - guint notify_tray_handler; guint font_handler; guint back_handler; guint text_handler; @@ -57,7 +55,6 @@ guint editcheck_handler; guint stickycheck_handler; guint confirmcheck_handler; - guint trayclick_handler; }; G_DEFINE_TYPE_WITH_PRIVATE(XpadPreferences, xpad_preferences, GTK_TYPE_DIALOG) @@ -70,14 +67,12 @@ static void change_text_color (GtkColorButton *button, XpadPreferences *pref); static void change_back_color (GtkColorButton *button, XpadPreferences *pref); static void change_font_face (GtkFontButton *button, XpadPreferences *pref); -static void change_tray_click_configuration(GtkComboBox *box, XpadPreferences *pref); static void notify_edit (XpadPreferences *pref); static void notify_sticky (XpadPreferences *pref); static void notify_confirm (XpadPreferences *pref); static void notify_fontname (XpadPreferences *pref); static void notify_text_color (XpadPreferences *pref); static void notify_back_color (XpadPreferences *pref); -static void notify_tray_click (XpadPreferences *pref); static void xpad_preferences_dispose (GObject *object); static void xpad_preferences_finalize (GObject *object); static void xpad_preferences_response (GtkDialog *dialog, gint response); @@ -116,7 +111,7 @@ const gchar *fontname; GtkStyle *style; GtkWidget *label, *appearance_frame, *alignment, *appearance_vbox; - GtkWidget *options_frame, *options_vbox, *global_vbox, *tray_config_vbox; + GtkWidget *options_frame, *options_vbox, *global_vbox; gchar *text; GtkSizeGroup *size_group_labels = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); GtkRequisition req; @@ -275,29 +270,10 @@ "shadow-type", GTK_SHADOW_NONE, "child", alignment, NULL)); - - tray_config_vbox = GTK_WIDGET (g_object_new (GTK_TYPE_VBOX, - "homogeneous", FALSE, - "spacing", 6, - NULL)); - - pref->priv->trayconfigbox = gtk_combo_box_new_text(); - gtk_combo_box_append_text( GTK_COMBO_BOX( pref->priv->trayconfigbox ), "Do Nothing" ); - gtk_combo_box_append_text( GTK_COMBO_BOX( pref->priv->trayconfigbox ), "Toggle Show All" ); - gtk_combo_box_append_text( GTK_COMBO_BOX( pref->priv->trayconfigbox ), "List of Pads" ); - gtk_combo_box_append_text( GTK_COMBO_BOX( pref->priv->trayconfigbox ), "New Pad" ); - gtk_combo_box_set_active( GTK_COMBO_BOX( pref->priv->trayconfigbox ), xpad_settings_get_tray_click_handler(xpad_settings())); - - hbox = gtk_hbox_new(FALSE, 12); - label = gtk_label_new_with_mnemonic(_("Tray click behaviour")); - gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(hbox), pref->priv->trayconfigbox, TRUE, TRUE, 0); - gtk_box_pack_start(GTK_BOX(tray_config_vbox), hbox, TRUE, TRUE, 0); gtk_box_pack_start (GTK_BOX (options_vbox), pref->priv->editcheck, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (options_vbox), pref->priv->stickycheck, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (options_vbox), pref->priv->confirmcheck, FALSE, FALSE, 0); - g_object_set (GTK_WIDGET(options_vbox), "child", tray_config_vbox, NULL); global_vbox = g_object_new (GTK_TYPE_VBOX, "border-width", 6, @@ -317,14 +293,12 @@ pref->priv->text_handler = g_signal_connect (pref->priv->textbutton, "color-set", G_CALLBACK (change_text_color), pref); pref->priv->back_handler = g_signal_connect (pref->priv->backbutton, "color-set", G_CALLBACK (change_back_color), pref); pref->priv->font_handler = g_signal_connect (pref->priv->fontbutton, "font-set", G_CALLBACK (change_font_face), pref); - pref->priv->trayclick_handler = g_signal_connect(pref->priv->trayconfigbox, "changed", G_CALLBACK(change_tray_click_configuration), pref); pref->priv->notify_font_handler = g_signal_connect_swapped (xpad_settings (), "notify::fontname", G_CALLBACK (notify_fontname), pref); pref->priv->notify_text_handler = g_signal_connect_swapped (xpad_settings (), "notify::text-color", G_CALLBACK (notify_text_color), pref); pref->priv->notify_back_handler = g_signal_connect_swapped (xpad_settings (), "notify::back-color", G_CALLBACK (notify_back_color), pref); pref->priv->notify_sticky_handler = g_signal_connect_swapped (xpad_settings (), "notify::sticky", G_CALLBACK (notify_sticky), pref); pref->priv->notify_edit_handler = g_signal_connect_swapped (xpad_settings (), "notify::edit-lock", G_CALLBACK (notify_edit), pref); pref->priv->notify_confirm_handler = g_signal_connect_swapped (xpad_settings (), "notify::confirm-destroy", G_CALLBACK (notify_confirm), pref); - pref->priv->notify_tray_handler = g_signal_connect_swapped (xpad_settings (), "notify::tray_click_configuration", G_CALLBACK(notify_tray_click), pref); g_object_unref (size_group_labels); @@ -424,14 +398,6 @@ } static void -change_tray_click_configuration(GtkComboBox *box, XpadPreferences *pref) -{ - g_signal_handler_block(xpad_settings(), pref->priv->notify_tray_handler); - xpad_settings_set_tray_click_handler(xpad_settings(), gtk_combo_box_get_active(box)); - g_signal_handler_unblock(xpad_settings(), pref->priv->notify_tray_handler); -} - -static void change_text_color (GtkColorButton *button, XpadPreferences *pref) { GdkColor color; @@ -555,11 +521,3 @@ g_signal_handler_unblock (pref->priv->confirmcheck, pref->priv->confirmcheck_handler); } -static void -notify_tray_click(XpadPreferences *pref) -{ - g_signal_handler_block(pref->priv->trayconfigbox, pref->priv->trayclick_handler); - gtk_combo_box_set_active(GTK_COMBO_BOX(pref->priv->trayconfigbox), xpad_settings_get_tray_click_handler(xpad_settings())); - g_signal_handler_unblock(pref->priv->trayconfigbox, pref->priv->trayclick_handler); -} - Index: xpad-4.2/src/xpad-settings.c =================================================================== --- xpad-4.2.orig/src/xpad-settings.c 2013-10-24 19:14:58.000000000 +0200 +++ xpad-4.2/src/xpad-settings.c 2014-03-01 16:07:50.471739075 +0100 @@ -30,7 +30,6 @@ gboolean confirm_destroy; gboolean edit_lock; gboolean sticky; - guint tray_click_configuration; gboolean has_toolbar; gboolean autohide_toolbar; gboolean has_scrollbar; @@ -59,7 +58,6 @@ PROP_CONFIRM_DESTROY, PROP_STICKY, PROP_EDIT_LOCK, - PROP_TRAY_CLICK_CONFIGURATION, PROP_HAS_TOOLBAR, PROP_AUTOHIDE_TOOLBAR, PROP_HAS_SCROLLBAR, @@ -153,15 +151,6 @@ FALSE, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, - PROP_TRAY_CLICK_CONFIGURATION, - g_param_spec_uint ("tray_click_configuration", - "Tray Click Configuration", - "What configuration is selected on tray click", - 0, - G_MAXUINT, - 2, - G_PARAM_READWRITE)); - g_object_class_install_property (gobject_class, PROP_HAS_TOOLBAR, g_param_spec_boolean ("has_toolbar", "Has Toolbar", @@ -248,7 +237,6 @@ settings->priv->confirm_destroy = TRUE; settings->priv->sticky = FALSE; settings->priv->edit_lock = FALSE; - settings->priv->tray_click_configuration = 0; settings->priv->fontname = NULL; settings->priv->has_toolbar = TRUE; settings->priv->autohide_toolbar = TRUE; @@ -370,21 +358,6 @@ return settings->priv->edit_lock; } -void xpad_settings_set_tray_click_handler (XpadSettings *settings, guint conf) -{ - if (settings->priv->tray_click_configuration == conf) - return; - - settings->priv->tray_click_configuration = conf; - save_to_file(settings, DEFAULTS_FILENAME); - g_object_notify (G_OBJECT (settings), "tray_click_configuration"); -} - -guint xpad_settings_get_tray_click_handler(XpadSettings *settings) -{ - return settings->priv->tray_click_configuration; -} - void xpad_settings_set_has_toolbar (XpadSettings *settings, gboolean toolbar) { if (settings->priv->has_toolbar == toolbar) @@ -663,10 +636,6 @@ xpad_settings_set_edit_lock (settings, g_value_get_boolean (value)); break; - case PROP_TRAY_CLICK_CONFIGURATION: - xpad_settings_set_tray_click_handler(settings, g_value_get_uint(value)); - break; - case PROP_HAS_TOOLBAR: xpad_settings_set_has_toolbar (settings, g_value_get_boolean (value)); break; @@ -786,7 +755,6 @@ "b|confirm_destroy", &settings->priv->confirm_destroy, "b|edit_lock", &settings->priv->edit_lock, "b|sticky_on_start", &settings->priv->sticky, - "u|tray_click_configuration", &settings->priv->tray_click_configuration, "h|back_red", &back.red, "h|back_green", &back.green, "h|back_blue", &back.blue, @@ -878,7 +846,6 @@ "b|confirm_destroy", settings->priv->confirm_destroy, "b|edit_lock", settings->priv->edit_lock, "b|sticky_on_start", settings->priv->sticky, - "u|tray_click_configuration", settings->priv->tray_click_configuration, "h|back_red", settings->priv->back ? settings->priv->back->red : 0, "h|back_green", settings->priv->back ? settings->priv->back->green : 0, "h|back_blue", settings->priv->back ? settings->priv->back->blue : 0, Index: xpad-4.2/src/xpad-settings.h =================================================================== --- xpad-4.2.orig/src/xpad-settings.h 2013-10-24 19:14:58.000000000 +0200 +++ xpad-4.2/src/xpad-settings.h 2014-03-01 16:08:21.843870920 +0100 @@ -97,8 +97,6 @@ void xpad_settings_set_fontname (XpadSettings *settings, const gchar *fontname); G_CONST_RETURN gchar *xpad_settings_get_fontname (XpadSettings *settings); -guint xpad_settings_get_tray_click_handler(XpadSettings *settings); - G_END_DECLS #endif /* __XPAD_SETTINGS_H__ */ Index: xpad-4.2/src/xpad-tray.c =================================================================== --- xpad-4.2.orig/src/xpad-tray.c 2013-10-24 19:14:58.000000000 +0200 +++ xpad-4.2/src/xpad-tray.c 2014-03-01 16:16:31.805661442 +0100 @@ -27,26 +27,10 @@ #include "xpad-pad.h" #include "xpad-pad-group.h" #include "xpad-preferences.h" -#include "xpad-settings.h" #include "xpad-tray.h" -enum -{ - DO_NOTHING, - TOGGLE_SHOW_ALL, - LIST_OF_PADS, - NEW_PAD -}; -// tray icon left click handler static void xpad_tray_activate_cb (GtkStatusIcon *icon); -// tray icon right click handler static void xpad_tray_popup_menu_cb (GtkStatusIcon *icon, guint button, guint time); -// "toggle show all" menu item handler -static void xpad_tray_show_hide_all (void); -// "show pads" menu item handler -static void xpad_tray_show_windows_list (GtkStatusIcon *icon); -// helper function to append pad window title as item to menu -static void xpad_tray_append_pad_window_titles_to_menu (GtkWidget *menu); static GtkStatusIcon *docklet = NULL; static GtkWidget *menu = NULL; @@ -122,25 +106,6 @@ g_slist_free (pads); } -static void -xpad_tray_show_hide_all (void) -{ - GSList *pads = xpad_pad_group_get_pads (xpad_app_get_pad_group ()); - // find if any pad is visible - gboolean open = FALSE; - GSList *i; - for(i = pads; i != NULL; i = i->next) - { - if (gtk_widget_get_visible(GTK_WIDGET(i->data))) - { - open = TRUE; - break; - } - } - g_slist_foreach(pads, (GFunc) (open ? gtk_widget_hide : gtk_widget_show), NULL); - g_slist_free (pads); -} - static void menu_spawn (XpadPadGroup *group) { @@ -152,15 +117,11 @@ xpad_tray_popup_menu_cb (GtkStatusIcon *icon, guint button, guint time) { GtkWidget *item; - GSList *pads; + GSList *pads, *l; gint n; - gboolean no_any_pad = FALSE; menu = gtk_menu_new (); pads = xpad_pad_group_get_pads (xpad_app_get_pad_group ()); - if (!pads) - no_any_pad = TRUE; - g_slist_free (pads); item = gtk_image_menu_item_new_from_stock (GTK_STOCK_NEW, NULL); g_signal_connect_swapped (item, "activate", G_CALLBACK (menu_spawn), xpad_app_get_pad_group ()); @@ -175,72 +136,27 @@ g_signal_connect_swapped (item, "activate", G_CALLBACK (menu_show_all), xpad_app_get_pad_group ()); gtk_container_add (GTK_CONTAINER (menu), item); gtk_widget_show (item); - if (no_any_pad) + if (!pads) gtk_widget_set_sensitive (item, FALSE); item = gtk_image_menu_item_new_with_mnemonic (_("_Close All")); g_signal_connect_swapped (item, "activate", G_CALLBACK (xpad_pad_group_close_all), xpad_app_get_pad_group ()); gtk_container_add (GTK_CONTAINER (menu), item); gtk_widget_show (item); - if (no_any_pad) + if (!pads) gtk_widget_set_sensitive (item, FALSE); item = gtk_separator_menu_item_new (); gtk_container_add (GTK_CONTAINER (menu), item); gtk_widget_show (item); - - // append window titles - xpad_tray_append_pad_window_titles_to_menu (menu); - - item = gtk_image_menu_item_new_from_stock (GTK_STOCK_PREFERENCES, NULL); - g_signal_connect (item, "activate", G_CALLBACK (xpad_preferences_open), NULL); - gtk_container_add (GTK_CONTAINER (menu), item); - gtk_widget_show (item); - - item = gtk_image_menu_item_new_from_stock (GTK_STOCK_QUIT, NULL); - g_signal_connect (item, "activate", G_CALLBACK (xpad_app_quit), NULL); - gtk_container_add (GTK_CONTAINER (menu), item); - gtk_widget_show (item); - - gtk_menu_popup (GTK_MENU (menu), NULL, NULL, gtk_status_icon_position_menu, icon, button, time); -} -static void -xpad_tray_activate_cb (GtkStatusIcon *icon) -{ - switch (xpad_settings_get_tray_click_handler(xpad_settings())) - { - case TOGGLE_SHOW_ALL: - xpad_tray_show_hide_all(); - break; - case LIST_OF_PADS: - xpad_tray_show_windows_list(icon); - break; - case NEW_PAD: - menu_spawn(xpad_app_get_pad_group()); - break; - } -} - -static void -xpad_tray_show_windows_list (GtkStatusIcon *icon) -{ - GtkWidget* menu = gtk_menu_new (); - xpad_tray_append_pad_window_titles_to_menu (menu); - gtk_menu_popup (GTK_MENU (menu), NULL, NULL, gtk_status_icon_position_menu, icon, 0, gtk_get_current_event_time()); -} - -static void -xpad_tray_append_pad_window_titles_to_menu (GtkWidget *menu) -{ - GSList *pads, *l; - GtkWidget *item; - gint n; - - pads = xpad_pad_group_get_pads (xpad_app_get_pad_group ()); - // Order pads according to title. + /** + * Order pads according to title. + */ pads = g_slist_sort (pads, (GCompareFunc) menu_title_compare); - // Populate list of windows. + /** + * Populate list of windows. + */ for (l = pads, n = 1; l; l = l->next, n++) { gchar *title; @@ -262,4 +178,32 @@ g_free (title); } g_slist_free (pads); + + if (pads) + { + item = gtk_separator_menu_item_new (); + gtk_container_add (GTK_CONTAINER (menu), item); + gtk_widget_show (item); + } + + item = gtk_image_menu_item_new_from_stock (GTK_STOCK_PREFERENCES, NULL); + g_signal_connect (item, "activate", G_CALLBACK (xpad_preferences_open), NULL); + gtk_container_add (GTK_CONTAINER (menu), item); + gtk_widget_show (item); + + item = gtk_image_menu_item_new_from_stock (GTK_STOCK_QUIT, NULL); + g_signal_connect (item, "activate", G_CALLBACK (xpad_app_quit), NULL); + gtk_container_add (GTK_CONTAINER (menu), item); + gtk_widget_show (item); + + gtk_menu_popup (GTK_MENU (menu), NULL, NULL, gtk_status_icon_position_menu, icon, button, time); + +} + +static void +xpad_tray_activate_cb (GtkStatusIcon *icon) +{ + GSList *pads = xpad_pad_group_get_pads (xpad_app_get_pad_group ()); + g_slist_foreach (pads, (GFunc) gtk_window_present, NULL); + g_slist_free (pads); } debian/patches/missing.diff0000664000000000000000000000105012304372473013123 0ustar Index: xpad-4.2/po/Makefile.in.in =================================================================== --- xpad-4.2.orig/po/Makefile.in.in 2014-03-01 15:56:54.422081025 +0100 +++ xpad-4.2/po/Makefile.in.in 2014-03-01 15:56:54.402081096 +0100 @@ -149,9 +149,8 @@ check: all $(GETTEXT_PACKAGE).pot rm -f missing notexist srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m - if [ -r missing -o -r notexist ]; then \ - exit 1; \ - fi + # intentionally not exiting here + rm -f missing mostlyclean: rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp debian/copyright0000664000000000000000000000676711756667210011156 0ustar This package was debianized by Søren Boll Overgaard on Fri, 17 May 2002 17:14:28 +0200. It was downloaded from: http://xpad.sourceforge.net/download.html http://mterry.name/xpad/ https://launchpad.net/xpad/+download Upstream Author: Michael Terry Michael Terry Michael Terry Michael Terry Copyright: Copyright (c) 2001-2007 Michael Terry Copyright (c) 2002 Jamis Buck Copyright (C) 1994-2007 Free Software Foundation, Inc. Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 Copyright (c) 2009 Paul Ivanov License: This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-3'. The Debian packaging is Copyright (C) 2002-2006, Søren Boll Overgaard Copyright (C) 2007-2009, Bart Martens and is licensed under the GPL, see above. The file install-sh has this copyright and license information: # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. The file po/Makefile.in.in has this copyright and license information: # Copyright (C) 1995, 1996, 1997 by Ulrich Drepper # Copyright (C) 2004-2008 Rodney Dawes # # This file may be copied and used freely without restrictions. It may # be used in projects which are not available under a GNU Public License, # but which still want to provide support for the GNU gettext functionality. debian/menu0000664000000000000000000000026111756667210010071 0ustar ?package(xpad):needs="X11" section="Applications/Editors" \ title="xpad" command="/usr/bin/xpad" \ longtitle="Sticky notes on your screen" \ icon="xpad.xpm" hints="Gnome" debian/changelog0000664000000000000000000003324712304726440011055 0ustar xpad (4.2-0ubuntu1) trusty; urgency=low * New upstream release. * debian/patches: - missing.diff: Refreshed. - single-include.patch: Remove, merged upstream. - use-panel-icon.patch: Remove, merged upstream. - revert-4.2-new-features.patch: Revert new features since we are in feature freeze (reverting 1 upstream commit). * debian/rules: - Remove xpad.desktop from restore list, not shipped anymore. -- Julien Lavergne Sun, 02 Mar 2014 23:13:22 +0100 xpad (4.1-1ubuntu4) quantal; urgency=low * debian/patches: - use-panel-icon.patch: Enable specific panel icon from the icon theme if available (LP: #907705). -- Julien Lavergne Mon, 20 Aug 2012 22:46:25 +0200 xpad (4.1-1ubuntu3) quantal; urgency=low * debian/control: - Switch from libmagickcore4-extra to 5-extra -- Michael Terry Wed, 11 Jul 2012 16:08:48 -0400 xpad (4.1-1ubuntu2) quantal; urgency=low * debian/patches/single-include.patch: - Whoops, uploaded a FTBFS package. This fixes the build by not including private glib headers. -- Michael Terry Tue, 22 May 2012 16:06:59 -0400 xpad (4.1-1ubuntu1) quantal; urgency=low * Merge from Debian testing. Remaining changes: - Build-Depend on libmagickcore4-extra | libmagickcore-extra. -- Michael Terry Tue, 22 May 2012 15:37:35 -0400 xpad (4.1-1) unstable; urgency=low * New upstream release. * debian/patches/576770.diff: Removed. -- Bart Martens Sun, 29 Apr 2012 17:19:10 +0000 xpad (4.0-5ubuntu2) precise; urgency=low * debian/control: - Bump build dependency to libmagickcore4-extra | libmagickcore-extra. -- Michael Terry Fri, 18 Nov 2011 10:26:07 -0500 xpad (4.0-5ubuntu1) maverick; urgency=low * Build-depend on libmagickcore3-extra | libmagickcore-extra. LP: #635871. -- Matthias Klose Fri, 17 Sep 2010 13:24:34 +0200 xpad (4.0-5) unstable; urgency=low * Corrected debian/changelog for version 4.0-4. Closes: #576770. -- Bart Martens Sun, 18 Apr 2010 14:34:21 +0200 xpad (4.0-4) unstable; urgency=low * Source format 3.0 (quilt). * debhelper 7. * no longer using cdbs. * debian/patches/missing.diff: Added. * debian/patches/576770.diff: Added. Closes: #576770. -- Bart Martens Sun, 11 Apr 2010 17:18:15 +0200 xpad (4.0-3) unstable; urgency=low * Build-Depends: libmagickcore-extra. Fixes FTBFS. Closes: #573975. -- Bart Martens Thu, 18 Mar 2010 18:01:31 +0100 xpad (4.0-2) unstable; urgency=low * Build-Depends: libmagickcore2-extra. Fixes FTBFS. Closes: #560668. -- Bart Martens Sat, 12 Dec 2009 14:04:17 +0100 xpad (4.0-1) unstable; urgency=low * New upstream release. * debian/copyright: Updated for new upstream release. -- Bart Martens Fri, 22 May 2009 11:11:01 +0200 xpad (3.1-1) unstable; urgency=low * New upstream release. * debian/copyright: Updated for new upstream release. * debian/control: Fixed debhelper-but-no-misc-depends. * debian/control: Build-Depends: intltool >= 0.31 -- Bart Martens Mon, 09 Feb 2009 14:48:46 +0100 xpad (3.0-1) unstable; urgency=low * New upstream release. * debian/control, debian/watch: New upstream homepage. * debian/control: Updated. -- Bart Martens Sun, 21 Sep 2008 09:13:59 +0200 xpad (2.14-1) unstable; urgency=low * New upstream release, fixes 100% CPU bug. Closes: #455839. * debian/control: Homepage and Standards-Version. * debian/copyright: Set fileencoding=utf-8. -- Bart Martens Fri, 14 Dec 2007 13:43:58 +0100 xpad (2.13-1) unstable; urgency=low * New upstream release. * debian/patches/01_workspaces.diff: Removed. * debian/menu: Updated. -- Bart Martens Mon, 10 Dec 2007 22:52:37 +0100 xpad (2.12-3) unstable; urgency=low * debian/patches/01_workspaces.diff: Added. This patch fixes the initial value of the checkbox named "Show on All Workspaces". -- Bart Martens Sat, 14 Jul 2007 17:05:53 +0200 xpad (2.12-2) unstable; urgency=low * New maintainer. Closes: #417830. * debian/*: Switch to cdbs. * debian/changelog.new: Removed. * debian/control: Updated Build-Depends. Removed intltool, dpatch, x-dev, libsm-dev, libice-dev, automake1.8. Added autotools-dev, imagemagick. * debian/compat, debian/control: Use debhelper 5. * debian/copyright: Updated. * debian/desktop/xpad.desktop: Removed. * debian/desktop/xpad.menu: Removed. * debian/xpad.menu: Updated and renamed to debian/menu. * debian/patches/*: Removed. * debian/prerm: Removed. * debian/rules: Use imagemagick to convert the icon from .png to .xpm. * debian/watch: Updated. * debian/xpad-debian.xpm: Removed. * intl/Makefile, m4/Makefile, scripts/intltool-extract, scripts/intltool-merge, scripts/intltool-update: Removed from .diff.gz. * src/Makefile.am, src/Makefile.in: Removed the changes from .diff.gz. -- Bart Martens Fri, 6 Apr 2007 10:44:41 +0200 xpad (2.12-1) unstable; urgency=low * New upstream release (Closes: Bug#390260) -- Søren Boll Overgaard Fri, 6 Oct 2006 10:09:37 +0200 xpad (2.11-2) unstable; urgency=low * Fix path to icon in xpad.desktop (Closes: Bug#370637) * Bump standards version to 3.7.2 -- Søren Boll Overgaard Sun, 13 Aug 2006 18:33:11 +0000 xpad (2.11-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Thu, 2 Feb 2006 09:56:14 +0000 xpad (2.10-4) unstable; urgency=low * Fix linker breakage by linking with -lSM and -lICE -- Søren Boll Overgaard Fri, 20 Jan 2006 10:56:12 +0000 xpad (2.10-2) unstable; urgency=low * Change xlib-dev build-deps (Closes: Bug#346958) -- Søren Boll Overgaard Sat, 14 Jan 2006 21:37:31 +0000 xpad (2.10-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Sat, 22 Oct 2005 21:16:50 +0200 xpad (2.9-2) unstable; urgency=low * Fix broken entries in changelog * Bump standards version, no changes * Fix clean target to clean po/ -- Søren Boll Overgaard Sun, 28 Aug 2005 10:30:11 +0200 xpad (2.9-1) unstable; urgency=low * New upstream release * Change path to icon image in xpad.desktop (Closes: Bug#315020) -- Søren Boll Overgaard Sat, 27 Aug 2005 23:39:12 +0200 xpad (2.8-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Sat, 11 Jun 2005 21:22:52 +0200 xpad (2.7-1) experimental; urgency=low * New upstream release -- Søren Boll Overgaard Sat, 4 Jun 2005 09:11:45 +0200 xpad (2.6-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Mon, 14 Mar 2005 10:23:33 +0100 xpad (2.5-1) unstable; urgency=low * New upstream release (Closes: Bug#298062) -- Søren Boll Overgaard Fri, 4 Mar 2005 14:23:17 +0100 xpad (2.4-1) unstable; urgency=low * New upstream release (Closes: Bug#294264) -- Søren Boll Overgaard Wed, 9 Feb 2005 07:13:28 +0000 xpad (2.3-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Sun, 6 Feb 2005 21:31:37 +0000 xpad (2.2-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Sun, 6 Feb 2005 13:37:49 +0000 xpad (2.1-2) unstable; urgency=low * Change description slightly, to include the word postit (Closes: Bug#291024) -- Søren Boll Overgaard Sat, 22 Jan 2005 10:39:06 +0000 xpad (2.1-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Mon, 20 Dec 2004 10:38:16 +0000 xpad (2.0-rel-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Sat, 30 Oct 2004 10:16:38 +0000 xpad (2.0-b3-1) unstable; urgency=low * New upstream release (Upstream has fixed #273455, so closed: Bug#273455) -- Søren Boll Overgaard Wed, 29 Sep 2004 16:31:51 +0000 xpad (2.0-b2-1) unstable; urgency=low * New upstream release (closes: Bug#270411, Bug#237545) * Disable 01_fix_path_to_ui_files.dpatch, it was fixed upstream. -- Søren Boll Overgaard Sun, 12 Sep 2004 05:21:13 +0000 xpad (2.0-b1-4) unstable; urgency=low * Look for menu definitions in /usr/share/xpad -- Søren Boll Overgaard Mon, 6 Sep 2004 06:30:19 +0000 xpad (2.0-b1-3) unstable; urgency=low * Introduce debian/watch -- Søren Boll Overgaard Tue, 31 Aug 2004 13:40:33 +0000 xpad (2.0-b1-2) unstable; urgency=low * Fix standards version. * Upstream has fixed quite a few bugs, so: closes: Bug#220994, Bug#247583 * Fix missing dependency on intltool -- Søren Boll Overgaard Tue, 31 Aug 2004 13:08:34 +0000 xpad (2.0-b1-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Tue, 31 Aug 2004 12:35:06 +0000 xpad (1.13.1-1) unstable; urgency=low * New upstream release (closes: Bug#250039) -- Søren Boll Overgaard Sun, 23 May 2004 15:00:42 +0000 xpad (1.13-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Tue, 21 Oct 2003 07:44:38 +0000 xpad (1.12-2) unstable; urgency=low * Depend on available versions of stuff (closes: Bug#214954). -- Søren Boll Overgaard Thu, 9 Oct 2003 17:52:47 +0000 xpad (1.12-1) unstable; urgency=low * New upstream release (closes: Bug#213148). -- Søren Boll Overgaard Thu, 2 Oct 2003 14:29:43 +0000 xpad (1.11-1) unstable; urgency=low * New upstream release (closes: Bug#199919) -- Søren Boll Overgaard Wed, 6 Aug 2003 09:44:35 +0000 xpad (1.10-2) unstable; urgency=low * Improve clean target, to remove useless cruft from /tmp/ (closes: Bug#194135). -- Søren Boll Overgaard Wed, 4 Jun 2003 14:50:03 +0000 xpad (1.10-1) unstable; urgency=low * New upstream release (closes: Bug#185323, closes: Bug#185434) -- Søren Boll Overgaard Thu, 27 Mar 2003 15:27:47 +0000 xpad (1.9.1-2) unstable; urgency=low * Fix man page placement (Closes: Bug#183443) -- Søren Boll Overgaard Wed, 5 Mar 2003 14:55:58 +0000 xpad (1.9.1-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Wed, 12 Feb 2003 21:09:11 +0000 xpad (1.9-1) unstable; urgency=low * New upstream version -- Søren Boll Overgaard Tue, 11 Feb 2003 16:40:50 +0000 xpad (1.8-1) unstable; urgency=low * New upstream version -- Søren Boll Overgaard Tue, 21 Jan 2003 09:25:25 +0000 xpad (1.7-3) unstable; urgency=low * Fix icon. -- Søren Boll Overgaard Wed, 11 Dec 2002 08:45:15 +0000 xpad (1.7-2) unstable; urgency=low * Fix build-failure on hppa. -- Søren Boll Overgaard Wed, 27 Nov 2002 20:39:20 +0000 xpad (1.7-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Tue, 26 Nov 2002 12:34:53 +0000 xpad (1.6.1-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Thu, 24 Oct 2002 08:41:39 +0200 xpad (1.6-1) unstable; urgency=low * New upstream release. * Use upstream man page. * Don't make /usr/doc link. * Standards version 3.5.7. -- Søren Boll Overgaard Mon, 21 Oct 2002 09:28:28 +0200 xpad (1.5.1-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Fri, 27 Sep 2002 16:39:56 +0200 xpad (1.5-2) unstable; urgency=low * Clean up control. * Clean up copyright. -- Søren Boll Overgaard Tue, 24 Sep 2002 20:29:31 +0200 xpad (1.5-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Fri, 23 Aug 2002 08:11:32 +0200 xpad (1.4-3) unstable; urgency=low * Recompile with new libgtk2.0-png3 (closes: Bug#157319). -- Søren Boll Overgaard Thu, 22 Aug 2002 19:15:59 +0200 xpad (1.4-2) unstable; urgency=low * Add Gnome desktop icon (Thanks T. Bugra UYTUN ). * Add Debian menu entry (Thanks T. Bugra UYTUN ). -- Søren Boll Overgaard Sun, 18 Aug 2002 20:05:53 +0200 xpad (1.4-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Sun, 11 Aug 2002 19:46:33 +0200 xpad (1.3-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Sun, 4 Aug 2002 17:55:43 +0200 xpad (1.2.1-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Tue, 23 Jul 2002 17:58:14 +0200 xpad (1.2-1) unstable; urgency=low * New upstream release * Added 3 patches from "Jeroen T. Vermeulen" upstream. (closes: Bug#153796, closes: Bug#153797, closes: Bug#153800) * Add another patch from Jeroen to fix a problem with xpad not remembering the colour settings under special circumstances (closes: Bug#149819) -- Søren Boll Overgaard Tue, 23 Jul 2002 10:02:51 +0200 xpad (1.1-2) unstable; urgency=low * Remove useless calls to dh_* -- Søren Boll Overgaard Sat, 1 Jun 2002 19:14:20 +0200 xpad (1.1-1) unstable; urgency=low * Initial Release (closes: #118177, closes: #132449) * Changed Makefile to install xpm-file without execute bits set. -- Søren Boll Overgaard Fri, 17 May 2002 17:14:28 +0200 debian/source/0000775000000000000000000000000011756667211010504 5ustar debian/source/format0000664000000000000000000000001411756667210011711 0ustar 3.0 (quilt) debian/watch0000664000000000000000000000044711756667210010241 0ustar version=3 opts="uversionmangle=s/(\d)[\-_]?(rc\d+|pre-rc\d+|pre\d+a?)$/$1~$2/;s/[\-\.](source|src|orig|unix)$//;s/-(bin|osx)$/~$1/;s/^v(\d)/$1/;" \ https://launchpad.net/xpad/+download .*xpad-(v?[\d\.]+(?:rc|rc\d+|pre-rc\d+|-unix|-source|-src|\.src|\.orig|[a-z]|b\d+|beta\d+-src|beta\d+)?)\.t.*