ClipIt-1.3.13-20110503001
+ Fixed: Bug in the indicator code that makes ClipIt crash X under certain circumstances. Changes to be committed: modified: ChangeLog modified: configure modified: configure.in modified: src/main.c
This commit is contained in:
parent
f17c66b687
commit
1f7b67dc8a
@ -1,3 +1,7 @@
|
||||
ClipIt-1.3.13-20110503001 - 03 May. 2011
|
||||
+ Fixed: Bug in the indicator code that makes ClipIt crash X under
|
||||
certain circumstances.
|
||||
|
||||
ClipIt-1.3.12-20110228001 - 28 Feb. 2011
|
||||
+ Fixed: Fixed a typo in the warnings.
|
||||
+ Fixed: Turned off appindicator because it's buggy.
|
||||
|
20
configure
vendored
20
configure
vendored
@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.67 for clipit 1.3.12.
|
||||
# Generated by GNU Autoconf 2.67 for clipit 1.3.13.
|
||||
#
|
||||
# Report bugs to <oss@rspwn.com>.
|
||||
#
|
||||
@ -552,8 +552,8 @@ MAKEFLAGS=
|
||||
# Identity of this package.
|
||||
PACKAGE_NAME='clipit'
|
||||
PACKAGE_TARNAME='clipit'
|
||||
PACKAGE_VERSION='1.3.12'
|
||||
PACKAGE_STRING='clipit 1.3.12'
|
||||
PACKAGE_VERSION='1.3.13'
|
||||
PACKAGE_STRING='clipit 1.3.13'
|
||||
PACKAGE_BUGREPORT='oss@rspwn.com'
|
||||
PACKAGE_URL=''
|
||||
|
||||
@ -1328,7 +1328,7 @@ if test "$ac_init_help" = "long"; then
|
||||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures clipit 1.3.12 to adapt to many kinds of systems.
|
||||
\`configure' configures clipit 1.3.13 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
@ -1398,7 +1398,7 @@ fi
|
||||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of clipit 1.3.12:";;
|
||||
short | recursive ) echo "Configuration of clipit 1.3.13:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
@ -1511,7 +1511,7 @@ fi
|
||||
test -n "$ac_init_help" && exit $ac_status
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
clipit configure 1.3.12
|
||||
clipit configure 1.3.13
|
||||
generated by GNU Autoconf 2.67
|
||||
|
||||
Copyright (C) 2010 Free Software Foundation, Inc.
|
||||
@ -1880,7 +1880,7 @@ cat >config.log <<_ACEOF
|
||||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by clipit $as_me 1.3.12, which was
|
||||
It was created by clipit $as_me 1.3.13, which was
|
||||
generated by GNU Autoconf 2.67. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
@ -2696,7 +2696,7 @@ fi
|
||||
|
||||
# Define the identity of the package.
|
||||
PACKAGE=clipit
|
||||
VERSION=1.3.12
|
||||
VERSION=1.3.13
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
@ -9764,7 +9764,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
||||
# report actual input values of CONFIG_FILES etc. instead of their
|
||||
# values after options handling.
|
||||
ac_log="
|
||||
This file was extended by clipit $as_me 1.3.12, which was
|
||||
This file was extended by clipit $as_me 1.3.13, which was
|
||||
generated by GNU Autoconf 2.67. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
@ -9830,7 +9830,7 @@ _ACEOF
|
||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
|
||||
ac_cs_version="\\
|
||||
clipit config.status 1.3.12
|
||||
clipit config.status 1.3.13
|
||||
configured by $0, generated by GNU Autoconf 2.67,
|
||||
with options \\"\$ac_cs_config\\"
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
# Autoconf/automake.
|
||||
# -------------------------------------------------------------------------------
|
||||
AC_PREREQ([2.5])
|
||||
AC_INIT([clipit], [1.3.12], [oss@rspwn.com])
|
||||
AC_INIT([clipit], [1.3.13], [oss@rspwn.com])
|
||||
AM_INIT_AUTOMAKE([AC_PACKAGE_TARNAME()], [AC_PACKAGE_VERSION()])
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
|
@ -566,7 +566,6 @@ void create_app_indicator(gint create)
|
||||
|
||||
/* Create the menu */
|
||||
indicator_menu = gtk_menu_new();
|
||||
g_signal_connect((GObject*)indicator_menu, "selection-done", (GCallback)gtk_widget_destroy, NULL);
|
||||
/* Items */
|
||||
if ((history != NULL) && (history->data != NULL))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user