ClipIt-v1.2.2-11112010001
+ Fixed: Some small compatibility changes for debian packaging. Changes to be committed: modified: ChangeLog modified: NEWS modified: README modified: configure.in modified: doc/clipit.1 modified: po/POTFILES.in modified: src/main.c
This commit is contained in:
parent
196001d0ba
commit
2ebb6b5085
@ -1,3 +1,6 @@
|
|||||||
|
ClipIt-v1.2.2-11112010001 - 11 Nov. 2010
|
||||||
|
+ Fixed: Some small compatibility changes for debian packaging.
|
||||||
|
|
||||||
ClipIt-v1.2.1-10112010002 - 10 Nov. 2010
|
ClipIt-v1.2.1-10112010002 - 10 Nov. 2010
|
||||||
+ Fixed: Fixed OOM bug when copying large chunks of text by limiting
|
+ Fixed: Fixed OOM bug when copying large chunks of text by limiting
|
||||||
the history entry to 512KB.
|
the history entry to 512KB.
|
||||||
|
2
NEWS
2
NEWS
@ -1 +1 @@
|
|||||||
Project website: http://code.google.com/p/xyhthyx/
|
Project website: http://sourceforge.net/projects/gtkclipit/
|
||||||
|
2
README
2
README
@ -13,7 +13,7 @@ Introduction
|
|||||||
|
|
||||||
ClipIt is a lightweight GTK+ clipboard manager.
|
ClipIt is a lightweight GTK+ clipboard manager.
|
||||||
|
|
||||||
Project website: COMING_SOON
|
Project website: http://sourceforge.net/projects/gtkclipit/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# Autoconf/automake.
|
# Autoconf/automake.
|
||||||
# -------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------
|
||||||
AC_PREREQ([2.5])
|
AC_PREREQ([2.5])
|
||||||
AC_INIT([clipit], [1.2.1], [oss@web-tm.com])
|
AC_INIT([clipit], [1.2.2], [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])
|
||||||
|
@ -37,7 +37,7 @@ is replaced with the clipboard contents.
|
|||||||
The available hotkey modifiers are <Ctrl>, <Alt> <Shift>, <Release>, <Meta>, <Super>, <Hyper>, <Mod[1\-5]>
|
The available hotkey modifiers are <Ctrl>, <Alt> <Shift>, <Release>, <Meta>, <Super>, <Hyper>, <Mod[1\-5]>
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.PP
|
.PP
|
||||||
Website: COMING_SOON
|
Website: http://sourceforge.net/projects/gtkclipit/
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Maintained by Cristian Henzel <oss@web-tm.com>.
|
Maintained by Cristian Henzel <oss@web-tm.com>.
|
||||||
Forked from parcellite, which was written by Gilberto "Xyhthyx" Miralla <xyhthyx@gmail.com>.
|
Forked from parcellite, which was written by Gilberto "Xyhthyx" Miralla <xyhthyx@gmail.com>.
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
src/main.c
|
src/main.c
|
||||||
src/utils.c
|
src/utils.c
|
||||||
|
src/manage.c
|
||||||
src/preferences.c
|
src/preferences.c
|
||||||
data/clipit.desktop.in
|
data/clipit.desktop.in
|
||||||
data/clipit-startup.desktop.in
|
data/clipit-startup.desktop.in
|
||||||
|
@ -413,7 +413,7 @@ show_about_dialog(GtkMenuItem *menu_item, gpointer user_data)
|
|||||||
_("Lightweight GTK+ clipboard manager."));
|
_("Lightweight GTK+ clipboard manager."));
|
||||||
|
|
||||||
gtk_about_dialog_set_website((GtkAboutDialog*)about_dialog,
|
gtk_about_dialog_set_website((GtkAboutDialog*)about_dialog,
|
||||||
"COMING_SOON");
|
"http://sourceforge.net/projects/gtkclipit/");
|
||||||
|
|
||||||
gtk_about_dialog_set_copyright((GtkAboutDialog*)about_dialog, "Copyright (C) 2010 Cristian Henzel");
|
gtk_about_dialog_set_copyright((GtkAboutDialog*)about_dialog, "Copyright (C) 2010 Cristian Henzel");
|
||||||
gtk_about_dialog_set_authors((GtkAboutDialog*)about_dialog, authors);
|
gtk_about_dialog_set_authors((GtkAboutDialog*)about_dialog, authors);
|
||||||
|
Loading…
Reference in New Issue
Block a user