ClipIt-v1.3.1-17112010001
+ Added: Added autostart support for LXDE. + Fixed: Fixed problem with "Edit" window not appearing.
This commit is contained in:
parent
d1fe47618e
commit
cba465c964
@ -1,3 +1,7 @@
|
|||||||
|
ClipIt-v1.3.1-17112010001 - 17 Nov. 2010
|
||||||
|
+ Added: Added autostart support for LXDE.
|
||||||
|
+ Fixed: Fixed problem with "Edit" window not appearing.
|
||||||
|
|
||||||
ClipIt-v1.3.0-14112010001 - 14 Nov. 2010
|
ClipIt-v1.3.0-14112010001 - 14 Nov. 2010
|
||||||
+ Added: Added "Edit" and "Remove" buttons to the "Manage History" dialog.
|
+ Added: Added "Edit" and "Remove" buttons to the "Manage History" dialog.
|
||||||
+ Fixed: Major speed improvements for big history entries while:
|
+ Fixed: Major speed improvements for big history entries while:
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# Autoconf/automake.
|
# Autoconf/automake.
|
||||||
# -------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------
|
||||||
AC_PREREQ([2.5])
|
AC_PREREQ([2.5])
|
||||||
AC_INIT([clipit], [1.3.0], [oss@web-tm.com])
|
AC_INIT([clipit], [1.3.1], [oss@web-tm.com])
|
||||||
AM_INIT_AUTOMAKE([AC_PACKAGE_TARNAME()], [AC_PACKAGE_VERSION()])
|
AM_INIT_AUTOMAKE([AC_PACKAGE_TARNAME()], [AC_PACKAGE_VERSION()])
|
||||||
|
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
|
@ -5,5 +5,5 @@ Icon=gtk-paste
|
|||||||
Exec=clipit
|
Exec=clipit
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
OnlyShowIn=GNOME;XFCE;
|
OnlyShowIn=GNOME;XFCE;LXDE;
|
||||||
X-GNOME-Autostart-enabled=true
|
X-GNOME-Autostart-enabled=true
|
||||||
|
@ -286,6 +286,7 @@ clear_selected(GtkMenuItem *menu_item, gpointer user_data)
|
|||||||
GTK_MESSAGE_OTHER,
|
GTK_MESSAGE_OTHER,
|
||||||
GTK_BUTTONS_OK_CANCEL,
|
GTK_BUTTONS_OK_CANCEL,
|
||||||
_("Clear the history?"));
|
_("Clear the history?"));
|
||||||
|
gtk_window_set_title((GtkWindow*)confirm_dialog, "Clear history");
|
||||||
|
|
||||||
if (gtk_dialog_run((GtkDialog*)confirm_dialog) == GTK_RESPONSE_OK)
|
if (gtk_dialog_run((GtkDialog*)confirm_dialog) == GTK_RESPONSE_OK)
|
||||||
{
|
{
|
||||||
|
@ -156,8 +156,7 @@ edit_selected()
|
|||||||
GtkTreeIter sel_iter;
|
GtkTreeIter sel_iter;
|
||||||
GtkTreeSelection* search_selection = gtk_tree_view_get_selection((GtkTreeView*)treeview_search);
|
GtkTreeSelection* search_selection = gtk_tree_view_get_selection((GtkTreeView*)treeview_search);
|
||||||
/* This helps prevent multiple instances and checks if there's anything selected */
|
/* This helps prevent multiple instances and checks if there's anything selected */
|
||||||
if (!gtk_grab_get_current() &&
|
if (gtk_tree_selection_get_selected(search_selection, NULL, &sel_iter))
|
||||||
gtk_tree_selection_get_selected(search_selection, NULL, &sel_iter))
|
|
||||||
{
|
{
|
||||||
/* Create clipboard buffer and set its text */
|
/* Create clipboard buffer and set its text */
|
||||||
gint selected_item_nr;
|
gint selected_item_nr;
|
||||||
|
@ -54,6 +54,7 @@ G_BEGIN_DECLS
|
|||||||
#define ACTIONS_FILE ".local/share/clipit/actions"
|
#define ACTIONS_FILE ".local/share/clipit/actions"
|
||||||
#define EXCLUDES_FILE ".local/share/clipit/excludes"
|
#define EXCLUDES_FILE ".local/share/clipit/excludes"
|
||||||
#define PREFERENCES_FILE ".config/clipit/clipitrc"
|
#define PREFERENCES_FILE ".config/clipit/clipitrc"
|
||||||
|
#define THEMES_FOLDER ".config/clipit/themes"
|
||||||
|
|
||||||
void
|
void
|
||||||
read_preferences();
|
read_preferences();
|
||||||
|
Loading…
Reference in New Issue
Block a user