Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
* Version 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Konrad Gräfe committed Sep 20, 2010
1 parent 810c5c0 commit c08f541
Show file tree
Hide file tree
Showing 10 changed files with 52 additions and 49 deletions.
7 changes: 7 additions & 0 deletions .bzrignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,10 @@ po/fr.gmo
stamp-h1
po/de.gmo
po/ru.gmo
DEB_REVISION
po/cs.gmo
po/nl.gmo
po/pt_BR.gmo
po/sk.gmo
po/ta.gmo
pidgin-birthday-reminder-*
6 changes: 5 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Version 1.7 (2010/09/20):
* Do not longer expect ICS file to be well-formed (Bug #614244)
* Added Brazilian Portuguese, Czech, Dutch, Slovak and Tamil language files (credits on https://translations.launchpad.net/pidgin-birthday-reminder)

Version 1.6 (2010/05/08):
* Added hint in preferences menu when sounds are muted
* Added Turkish, Hebrew, Portuguese and Galician language (see credits on https://translations.launchpad.net/pidgin-birthday-reminder)
* Added Turkish, Hebrew, Portuguese and Galician language files (see credits on https://translations.launchpad.net/pidgin-birthday-reminder)

Version 1.5 (2010/03/20):
* Renamed project to pidgin-birthday-reminder
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6
1.7
33 changes: 13 additions & 20 deletions autogen.sh
Original file line number Diff line number Diff line change
@@ -1,27 +1,20 @@
#! /bin/sh
set -x

ls VERSION >/dev/null &&
ls configure.in.in >/dev/null &&
ls COPYING >/dev/null &&
echo generating configure.in &&
test -f VERSION || exit
test -f configure.in.in || exit
test -f COPYING || exit

languages=""
for f in po/*.po
do languages="$languages $(basename $f .po)"
do test -f $f && languages="$languages $(basename $f .po)"
done

sed -e "s/@@VERSION@@/$(cat VERSION)/" -e "s/@@LANGUAGES@@/$(echo $languages)/" configure.in.in >configure.in &&
echo aclocal &&
aclocal &&
echo autoheader &&
autoheader &&
echo libtoolize --copy &&
libtoolize --copy &&
echo automake --add-missing --copy &&
automake --add-missing --copy &&
echo autoconf &&
autoconf &&
echo libtoolize --copy --install &&
libtoolize --copy --install &&
echo intltoolize --copy --force &&
intltoolize --copy --force
sed -e "s/@@VERSION@@/$(cat VERSION)/" -e "s/@@LANGUAGES@@/$(echo $languages)/" configure.in.in >configure.in || exit
aclocal || exit
autoheader || exit
libtoolize --copy || exit
automake --add-missing --copy || exit
autoconf || exit
libtoolize --copy --install || exit
intltoolize --copy --force || exit
16 changes: 7 additions & 9 deletions change_version.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
#!/bin/bash
vim ChangeLog &&
vim VERSION &&
set -x

languages=""
for f in po/*.po
do languages="$languages $(basename $f .po)"
done
vim ChangeLog || exit
vim VERSION || exit

sed -e "s/@@VERSION@@/$(cat VERSION)/" -e "s/@@LANGUAGES@@/$(echo $languages)/" configure.in.in >configure.in &&
./autogen.sh &&
./configure &&
echo 1 >DEB_REVISION

./autogen.sh || exit
./configure || exit
cp config.h config.h.mingw
8 changes: 4 additions & 4 deletions config.h.mingw
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
#define PACKAGE_NAME "pidgin-birthday-reminder"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "pidgin-birthday-reminder 1.6"
#define PACKAGE_STRING "pidgin-birthday-reminder 1.7"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "pidgin-birthday-reminder"
Expand All @@ -75,7 +75,7 @@
#define PACKAGE_URL ""

/* Define to the version of this package. */
#define PACKAGE_VERSION "1.6"
#define PACKAGE_VERSION "1.7"

/* Define the plugin author to be used */
#define PLUGIN_AUTHOR "Konrad Gräfe <[email protected]>"
Expand All @@ -87,7 +87,7 @@
#define PLUGIN_STATIC_NAME "birthday-reminder"

/* Define the plugin version to be used */
#define PLUGIN_VERSION "1.6"
#define PLUGIN_VERSION "1.7"

/* Define the plugin website to be used */
#define PLUGIN_WEBSITE "http://freakazoid.teamblind.de/2009/02/14/pidgin-birthday-reminder/"
Expand All @@ -96,4 +96,4 @@
#define STDC_HEADERS 1

/* Version number of package */
#define VERSION "1.6"
#define VERSION "1.7"
22 changes: 11 additions & 11 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.65 for pidgin-birthday-reminder 1.6.
# Generated by GNU Autoconf 2.65 for pidgin-birthday-reminder 1.7.
#
#
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
Expand Down Expand Up @@ -698,8 +698,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='pidgin-birthday-reminder'
PACKAGE_TARNAME='pidgin-birthday-reminder'
PACKAGE_VERSION='1.6'
PACKAGE_STRING='pidgin-birthday-reminder 1.6'
PACKAGE_VERSION='1.7'
PACKAGE_STRING='pidgin-birthday-reminder 1.7'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''

Expand Down Expand Up @@ -1459,7 +1459,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 pidgin-birthday-reminder 1.6 to adapt to many kinds of systems.
\`configure' configures pidgin-birthday-reminder 1.7 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1530,7 +1530,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of pidgin-birthday-reminder 1.6:";;
short | recursive ) echo "Configuration of pidgin-birthday-reminder 1.7:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1634,7 +1634,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
pidgin-birthday-reminder configure 1.6
pidgin-birthday-reminder configure 1.7
generated by GNU Autoconf 2.65
Copyright (C) 2009 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1999,7 +1999,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 pidgin-birthday-reminder $as_me 1.6, which was
It was created by pidgin-birthday-reminder $as_me 1.7, which was
generated by GNU Autoconf 2.65. Invocation command line was
$ $0 $@
Expand Down Expand Up @@ -2807,7 +2807,7 @@ fi

# Define the identity of the package.
PACKAGE='pidgin-birthday-reminder'
VERSION='1.6'
VERSION='1.7'


cat >>confdefs.h <<_ACEOF
Expand Down Expand Up @@ -2854,7 +2854,7 @@ ac_config_headers="$ac_config_headers config.h"


cat >>confdefs.h <<_ACEOF
#define PLUGIN_VERSION "1.6"
#define PLUGIN_VERSION "1.7"
_ACEOF


Expand Down Expand Up @@ -12483,7 +12483,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 pidgin-birthday-reminder $as_me 1.6, which was
This file was extended by pidgin-birthday-reminder $as_me 1.7, which was
generated by GNU Autoconf 2.65. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -12549,7 +12549,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="\\
pidgin-birthday-reminder config.status 1.6
pidgin-birthday-reminder config.status 1.7
configured by $0, generated by GNU Autoconf 2.65,
with options \\"\$ac_cs_config\\"
Expand Down
4 changes: 2 additions & 2 deletions configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.61)
AC_INIT(pidgin-birthday-reminder, 1.6)
AC_INIT(pidgin-birthday-reminder, 1.7)
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([src/birthday_reminder.c])
AC_CONFIG_HEADER([config.h])
AC_CONFIG_MACRO_DIR([m4])

AC_DEFINE_UNQUOTED(PLUGIN_VERSION, ["1.6"], [Define the plugin version to be used])
AC_DEFINE_UNQUOTED(PLUGIN_VERSION, ["1.7"], [Define the plugin version to be used])

AC_DEFINE_UNQUOTED(PLUGIN_WEBSITE, ["http://freakazoid.teamblind.de/2009/02/14/pidgin-birthday-reminder/"], [Define the plugin website to be used])

Expand Down
2 changes: 1 addition & 1 deletion libtool
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /bin/bash

# libtool - Provide generalized library-building support services.
# Generated automatically by config.status (pidgin-birthday-reminder) 1.6
# Generated automatically by config.status (pidgin-birthday-reminder) 1.7
# Libtool was configured on host midas:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
#
Expand Down
1 change: 1 addition & 0 deletions src/Makefile.mingw
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ INCLUDE_PATHS += -I. \
-I$(PIDGIN_TOP)/win32 \
-I$(GTK_TOP)/include \
-I$(GTK_TOP)/include/gtk-2.0 \
-I$(GTK_TOP)/include/cairo \
-I$(GTK_TOP)/include/glib-2.0 \
-I$(GTK_TOP)/include/pango-1.0 \
-I$(GTK_TOP)/include/atk-1.0 \
Expand Down

0 comments on commit c08f541

Please sign in to comment.