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

Commit

Permalink
* Version 0.4
Browse files Browse the repository at this point in the history
* added an option to offset wrong times (for some friends :) I know it isn't really the plugins job)
* the plugin now blocks unloading to avoid orphan options in account settings
* new timestamp handler to avoid displaying the date on every message
  • Loading branch information
kgraefe committed Nov 12, 2009
1 parent 708551d commit dc18fcb
Show file tree
Hide file tree
Showing 16 changed files with 236 additions and 130 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 0.4 (2009/11/12):
* fixed Readme for Windows (again -.-')
* added an option to offset wrong times (for some friends :) I know it isn't really the plugins job)
* the plugin now blocks unloading to avoid orphan options in account settings
* new timestamp handler to avoid displaying the date on every message

Version 0.3 (2009/11/10):
* fixed issue with daylight saving time
* fixed Readme files
Expand Down
4 changes: 2 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,11 @@ localstatedir = @localstatedir@
mandir = @mandir@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
pidgin_CFLAGS = @pidgin_CFLAGS@
pidgin_LIBS = @pidgin_LIBS@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
purple_CFLAGS = @purple_CFLAGS@
purple_LIBS = @purple_LIBS@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
sysconfdir = @sysconfdir@
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3
0.4
3 changes: 3 additions & 0 deletions config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@
/* Define the plugin website to be used */
#undef PLUGIN_ID

/* Define the plugin author to be used */
#undef PLUGIN_PREFS_PREFIX

/* Define the plugin website to be used */
#undef PLUGIN_STATIC_NAME

Expand Down
13 changes: 8 additions & 5 deletions config.h.mingw
Original file line number Diff line number Diff line change
Expand Up @@ -62,25 +62,28 @@
#define PACKAGE_NAME "znchelper"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "znchelper 0.3"
#define PACKAGE_STRING "znchelper 0.4"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "znchelper"

/* Define to the version of this package. */
#define PACKAGE_VERSION "0.3"
#define PACKAGE_VERSION "0.4"

/* Define the plugin author to be used */
#define PLUGIN_AUTHOR "Konrad Gräfe <freakazoid@teamblind.de>"

/* Define the plugin website to be used */
#define PLUGIN_ID "core-freakazoid-znchelper"
#define PLUGIN_ID "gtk-freakazoid-znchelper"

/* Define the plugin author to be used */
#define PLUGIN_PREFS_PREFIX "/plugins/gtk/znchelper"

/* Define the plugin website to be used */
#define PLUGIN_STATIC_NAME "znchelper"

/* Define the plugin version to be used */
#define PLUGIN_VERSION "0.3"
#define PLUGIN_VERSION "0.4"

/* Define the plugin website to be used */
#define PLUGIN_WEBSITE "http://freakazoid.teamblind.de/"
Expand All @@ -89,4 +92,4 @@
#define STDC_HEADERS 1

/* Version number of package */
#define VERSION "0.3"
#define VERSION "0.4"
Loading

0 comments on commit dc18fcb

Please sign in to comment.