almanah r109 - in trunk: . src
- From: pwithnall svn gnome org
- To: svn-commits-list gnome org
- Subject: almanah r109 - in trunk: . src
- Date: Sun, 16 Nov 2008 13:59:42 +0000 (UTC)
Author: pwithnall
Date: Sun Nov 16 13:59:42 2008
New Revision: 109
URL: http://svn.gnome.org/viewvc/almanah?rev=109&view=rev
Log:
2008-11-16 Philip Withnall <philip tecnocode co uk>
* NEWS:
* configure.ac: Bump to version 0.5.0.
* src/Makefile.am:
* src/link.c: Fix a build error where the link type headers
weren't being found.
Modified:
trunk/ChangeLog
trunk/NEWS
trunk/configure.ac
trunk/src/Makefile.am
trunk/src/link.c
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Sun Nov 16 13:59:42 2008
@@ -1,5 +1,19 @@
Major new features in version...
+0.5:
+Note that the database format used in 0.5 is not backwards-compatible
+with previous versions, so once an entry has been added in 0.5, the
+database will not be usable with previous versions of Almanah.
+
+* Complete the name change to "Almanah Diary"
+* Update the architecture, moving to GObject
+* Make spell checking optional at compile time
+* Add text formatting support
+* Improve ability to recover from database corruption
+* Allow an encryption key to be chosen
+* Make window dimensions persistent
+* Allow the spelling language to be set via GConf
+
0.4:
* Fix various translation problems, including untranslatable strings and strings containing markup
* Improve some error messages
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Sun Nov 16 13:59:42 2008
@@ -1,4 +1,4 @@
-AC_INIT(almanah, 0.4.0)
+AC_INIT(almanah, 0.5.0)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
AM_CONFIG_HEADER(config.h)
Modified: trunk/src/Makefile.am
==============================================================================
--- trunk/src/Makefile.am (original)
+++ trunk/src/Makefile.am Sun Nov 16 13:59:42 2008
@@ -2,6 +2,7 @@
-DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
+ -I$(srcdir)/links \
$(STANDARD_CFLAGS) \
$(ENCRYPTION_CFLAGS) \
$(SPELL_CHECKING_CFLAGS)
@@ -38,8 +39,11 @@
link.c \
link.h \
links/file.c \
+ links/file.h \
links/note.c \
- links/uri.c
+ links/note.h \
+ links/uri.c \
+ links/uri.h
if ENCRYPTION
almanah_SOURCES += \
Modified: trunk/src/link.c
==============================================================================
--- trunk/src/link.c (original)
+++ trunk/src/link.c Sun Nov 16 13:59:42 2008
@@ -32,9 +32,9 @@
/* TODO: This is still a little hacky */
-#include "links/file.h"
-#include "links/note.h"
-#include "links/uri.h"
+#include "file.h"
+#include "note.h"
+#include "uri.h"
static const AlmanahLinkType link_types[] = {
{ "file", &almanah_file_link_get_type },
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]