summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS16
-rw-r--r--configure.ac2
2 files changed, 17 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 2916eb2..899a159 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,19 @@
+libetonyek 0.1.2
+
+- Use symbol visibility on Linux. The library only exports the two public
+ functions now.
+- Refactor the parser to allow sharing of code among Keynote, Pages and
+ Numbers parsers.
+- Add initial support for Pages (v. 4 only): text and text formatting,
+ tables.
+- Parse text language.
+- Parse links.
+- Fix parsing of tab stops.
+- Add dependency on glm.
+- Add initial support for Numbers (v. 2 only): sheets and cell content.
+- Fix parsing of simple cell text content, which was ignored previously.
+- Various small bugfixes and improvements.
+
libetonyek 0.1.1
- Fix detection of Keynote 3 documents.
diff --git a/configure.ac b/configure.ac
index f39a5c6..1dd152b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7,7 +7,7 @@ AC_PREREQ([2.65])
# ====================
m4_define([libetonyek_version_major],[0])
m4_define([libetonyek_version_minor],[1])
-m4_define([libetonyek_version_micro],[1])
+m4_define([libetonyek_version_micro],[2])
m4_define([libetonyek_version],[libetonyek_version_major.libetonyek_version_minor.libetonyek_version_micro])
# =============