diff --git a/ChangeLog b/ChangeLog index 856b9e3..2e10096 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 + Fixed: Fixed OOM bug when copying large chunks of text by limiting the history entry to 512KB. diff --git a/NEWS b/NEWS index 9d61973..95847df 100644 --- a/NEWS +++ b/NEWS @@ -1 +1 @@ -Project website: http://code.google.com/p/xyhthyx/ +Project website: http://sourceforge.net/projects/gtkclipit/ diff --git a/README b/README index 894beaa..825180b 100644 --- a/README +++ b/README @@ -13,7 +13,7 @@ Introduction ClipIt is a lightweight GTK+ clipboard manager. -Project website: COMING_SOON +Project website: http://sourceforge.net/projects/gtkclipit/ diff --git a/configure.in b/configure.in index ca86281..a784344 100644 --- a/configure.in +++ b/configure.in @@ -2,7 +2,7 @@ # Autoconf/automake. # ------------------------------------------------------------------------------- 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()]) AC_CONFIG_MACRO_DIR([m4]) diff --git a/doc/clipit.1 b/doc/clipit.1 index 8df1f4c..2736073 100644 --- a/doc/clipit.1 +++ b/doc/clipit.1 @@ -37,7 +37,7 @@ is replaced with the clipboard contents. The available hotkey modifiers are , , , , , , .SH SEE ALSO .PP -Website: COMING_SOON +Website: http://sourceforge.net/projects/gtkclipit/ .SH AUTHOR Maintained by Cristian Henzel . Forked from parcellite, which was written by Gilberto "Xyhthyx" Miralla . diff --git a/po/POTFILES.in b/po/POTFILES.in index 841bea3..3b77927 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1,5 +1,6 @@ src/main.c src/utils.c +src/manage.c src/preferences.c data/clipit.desktop.in data/clipit-startup.desktop.in diff --git a/src/main.c b/src/main.c index a12c589..5deab6d 100644 --- a/src/main.c +++ b/src/main.c @@ -413,7 +413,7 @@ show_about_dialog(GtkMenuItem *menu_item, gpointer user_data) _("Lightweight GTK+ clipboard manager.")); 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_authors((GtkAboutDialog*)about_dialog, authors);