[almanah] Release version 0.7.0



commit 9e13df9f3a51d7f2368ace966caaf227308aa0e4
Author: Philip Withnall <philip tecnocode co uk>
Date:   Thu Dec 31 12:01:15 2009 +0000

    Release version 0.7.0

 Makefile.am     |   16 +++++++++-------
 NEWS            |   12 ++++++++++++
 README          |    8 ++++++--
 configure.ac    |    2 +-
 src/Makefile.am |   16 ++++++++--------
 5 files changed, 36 insertions(+), 18 deletions(-)
---
diff --git a/Makefile.am b/Makefile.am
index 13fb769..2461a6b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -30,7 +30,6 @@ MAINTAINERCLEANFILES = \
 	ltmain.sh	\
 	missing		\
 	mkinstalldirs	\
-	ChangeLog	\
 	`find "$(srcdir)" -type f -name Makefile.in -print`
 
 # Copy all the spec files. Of course, only one is actually used.
@@ -42,10 +41,11 @@ dist-hook:
 	done
 
 # ChangeLog
-ChangeLog:
-	@echo Creating $@
-	@if test -d "$(srcdir)/.git"; then \
-	  (GIT_DIR=$(top_srcdir)/.git ./missing --run git log d8d3d82934d1627da5e49c8784b5297e27550e69.. --stat) | fmt --split-only > $  tmp \
+ChangeLog: $(srcdir)/ChangeLog
+$(srcdir)/ChangeLog:
+	$(AM_V_GEN)(if test -d "$(srcdir)/.git"; then \
+	  (GIT_DIR=$(top_srcdir)/.git ./missing --run \
+	   git log d8d3d82934d1627da5e49c8784b5297e27550e69.. --stat) | fmt --split-only > $  tmp \
 	  && mv -f $  tmp $@ \
 	  || ($(RM) $  tmp; \
 	      echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
@@ -54,7 +54,9 @@ ChangeLog:
 	  test -f $@ || \
 	  (echo A git checkout and git-log is required to generate ChangeLog >&2 && \
 	  echo A git checkout and git-log is required to generate this file >> $@); \
-	fi
-.PHONY: ChangeLog
+	fi)
+.PHONY: $(srcdir)/ChangeLog
+
+MAINTAINERCLEANFILES += ChangeLog
 
 -include $(top_srcdir)/git.mk
diff --git a/NEWS b/NEWS
index ed78681..12302ce 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,17 @@
 Major new features in version...
 
+0.7.0:
+* Add a new "Contact" definition type for Evolution contacts
+* Several data loss and crasher fixes
+* Add an "Insert Time" function
+* Add the ability to mark entries as important
+* Add a new "F-Spot Photo" event type, to allow listing of a day's photos
+* Allow manual date entry to navigate the diary
+* Add import support for text files and other Almanah Diary databases
+* Lots of UI cleanup and tweaking
+* Add line spacing option when printing
+* Change website from http://tecnocode.co.uk/projects/almanah to http://live.gnome.org/Almanah_Diary
+
 0.6:
 Note that 0.6 removes the old concept of "links", and all stored links will no longer be accessible. They will,
 however, remain in the database, and can be accessed using the following commands while Almanah's running:
diff --git a/README b/README
index 7e06ecd..b9be2b8 100644
--- a/README
+++ b/README
@@ -12,13 +12,17 @@ Dependencies
 ============
 
 GNOME 2.24 development platform
-	http://www.gnome.org
+	http://www.gnome.org/
 SQLite 3
-	http://sqlite.org
+	http://sqlite.org/
 GtkSpell 2.0
 	http://gtkspell.sourceforge.net/
+DBus-GLib
+	http://dbus.freedesktop.org/
 GPGME (optional)
 	http://www.gnupg.org/gpgme.html
+Evolution Data Server (optional)
+	http://go-evolution.org/
 
 Copyright
 =========
diff --git a/configure.ac b/configure.ac
index 1b4cb66..1342a8c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(almanah, 0.6.0)
+AC_INIT(almanah, 0.7.0)
 
 AC_CONFIG_SRCDIR([src/main.h])
 AC_CONFIG_HEADERS([config.h])
diff --git a/src/Makefile.am b/src/Makefile.am
index a15feb5..bc816ed 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -109,38 +109,38 @@ ALMANAH_ENUM_FILES = \
 	event-factory-builtins.c
 
 definition-builtins.h: definition.h Makefile
-	$(AM_V_GEN)($(GLIB_MKENUMS) \
+	$(AM_V_GEN)(cd $(srcdir) && $(GLIB_MKENUMS) \
 			--fhead "#ifndef __ALMANAH_DEFINITION_BUILTINS_H__\n#define __ALMANAH_DEFINITION_BUILTINS_H__\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \
 			--fprod "/* enumerations from \"@filename \" */\n" \
 			--vhead "GType @enum_name _get_type (void) G_GNUC_CONST;\n#define ALMANAH_TYPE_ ENUMSHORT@ (@enum_name _get_type())\n" \
 			--ftail "G_END_DECLS\n\n#endif /* __ALMANAH_DEFINITION_BUILTINS_H__ */" \
-		definition.h > $(@F))
+		definition.h) > $(@F)
 
 definition-builtins.c: definition.h Makefile definition-builtins.h
-	$(AM_V_GEN)($(GLIB_MKENUMS) \
+	$(AM_V_GEN)(cd $(srcdir) && $(GLIB_MKENUMS) \
 			--fhead "#include \"definition.h\"\n#include \"definition-builtins.h\"" \
 			--fprod "\n/* enumerations from \"@filename \" */" \
 			--vhead "GType\n enum_name@_get_type (void)\n{\n  static GType etype = 0;\n  if (etype == 0) {\n    static const G Type@Value values[] = {" \
 			--vprod "      { @VALUENAME@, \"@VALUENAME \", \"@valuenick \" }," \
 			--vtail "      { 0, NULL, NULL }\n    };\n    etype = g_ type@_register_static (\"@EnumName \", values);\n  }\n  return etype;\n}\n" \
-		definition.h > $(@F))
+		definition.h) > $(@F)
 
 event-factory-builtins.h: event-factory.h Makefile
-	$(AM_V_GEN)($(GLIB_MKENUMS) \
+	$(AM_V_GEN)(cd $(srcdir) && $(GLIB_MKENUMS) \
 			--fhead "#ifndef __ALMANAH_EVENT_FACTORY_BUILTINS_H__\n#define __ALMANAH_EVENT_FACTORY_BUILTINS_H__\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \
 			--fprod "/* enumerations from \"@filename \" */\n" \
 			--vhead "GType @enum_name _get_type (void) G_GNUC_CONST;\n#define ALMANAH_TYPE_ ENUMSHORT@ (@enum_name _get_type())\n" \
 			--ftail "G_END_DECLS\n\n#endif /* __ALMANAH_EVENT_FACTORY_BUILTINS_H__ */" \
-		event-factory.h > $(@F))
+		event-factory.h) > $(@F)
 
 event-factory-builtins.c: event-factory.h Makefile event-factory-builtins.h
-	$(AM_V_GEN)($(GLIB_MKENUMS) \
+	$(AM_V_GEN)(cd $(srcdir) && $(GLIB_MKENUMS) \
 			--fhead "#include \"event-factory.h\"\n#include \"event-factory-builtins.h\"" \
 			--fprod "\n/* enumerations from \"@filename \" */" \
 			--vhead "GType\n enum_name@_get_type (void)\n{\n  static GType etype = 0;\n  if (etype == 0) {\n    static const G Type@Value values[] = {" \
 			--vprod "      { @VALUENAME@, \"@VALUENAME \", \"@valuenick \" }," \
 			--vtail "      { 0, NULL, NULL }\n    };\n    etype = g_ type@_register_static (\"@EnumName \", values);\n  }\n  return etype;\n}\n" \
-		event-factory.h > $(@F))
+		event-factory.h) > $(@F)
 
 CLEANFILES = \
 	$(ALMANAH_MARSHAL_FILES)	\



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]