summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShaun McCance <shaunm@src.gnome.org>2005-12-12 06:51:37 +0000
committerShaun McCance <shaunm@src.gnome.org>2005-12-12 06:51:37 +0000
commit1e63b5f3d12d39d67c0e3cf50d77d9a7cd7accd6 (patch)
tree6eee986903d2a390592770050570758096345d95
parent5c2a59f52bff27f25dc6c800ec756350feb59aa4 (diff)
downloadyelp-YELP_2_13_2.tar.gz
- Version 2.13.2YELP_2_13_2
* NEWS: * configure.in: - Version 2.13.2
-rw-r--r--ChangeLog8
-rw-r--r--NEWS20
-rw-r--r--configure.in2
-rw-r--r--src/test-man-parser.c2
-rw-r--r--src/test-pager.c2
-rw-r--r--src/test-uri.c2
6 files changed, 32 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 30ec9407..73e61c85 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+==================== 2.13.2 ====================
+
+2005-12-12 Shaun McCance <shaunm@gnome.org>
+
+ * NEWS:
+ * configure.in:
+ - Version 2.13.2
+
2005-12-11 Don Scorgie <dscorgie@cvs.gnome.org>
* configure.in:
diff --git a/NEWS b/NEWS
index ce3a535e..9a111cb1 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,23 @@
+Changes in 2.13.2:
+------------------
+* Added printing support (Chris Lahey, Don Scorgie)
+* Cache man page index for faster startup times (Brent Smith)
+* Info page improvements, info menu support (Don Scorgie)
+* Fixed some critical warnings (Don Scorgie)
+* Correct a misplaced #endif (Matthias Clasen)
+* Use gecko.m4 from Epiphany to detect gecko (Christian Persch)
+* Use nsIWebBrowserSetup to turn off the global history (Christian Persch)
+* Updated translations:
+ cs (Miloslav Trmac)
+ en_CA (Adam Weinberger)
+ gu (Ankit Patel)
+ ja (Takeshi AIHANA)
+ nb (Kjartan Maraas)
+ nl (Tino Meinen)
+ no (Kjartan Maraas)
+ th (Theppitak Karoonboonyanan)
+ zh_CN (Funda Wang)
+
Changes in 2.13.1:
------------------
* Beagle-based search (Chris Lahey)
diff --git a/configure.in b/configure.in
index d242cb56..c0108071 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-AC_INIT([Yelp],[2.13.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=yelp],[yelp])
+AC_INIT([Yelp],[2.13.2],[http://bugzilla.gnome.org/enter_bug.cgi?product=yelp],[yelp])
GNOME_COMMON_INIT
diff --git a/src/test-man-parser.c b/src/test-man-parser.c
index f24dccb2..75b84762 100644
--- a/src/test-man-parser.c
+++ b/src/test-man-parser.c
@@ -35,7 +35,7 @@ main (gint argc, gchar **argv)
}
parser = yelp_man_parser_new ();
- doc_info = yelp_doc_info_get (argv[1]);
+ doc_info = yelp_doc_info_get (argv[1], FALSE);
if (!doc_info) {
printf ("Failed to load URI: %s\n", argv[1]);
return -1;
diff --git a/src/test-pager.c b/src/test-pager.c
index f33388d9..9a6c7b48 100644
--- a/src/test-pager.c
+++ b/src/test-pager.c
@@ -61,7 +61,7 @@ main (gint argc, gchar **argv)
yelp_toc_pager_init ();
yelp_settings_init ();
- doc_info = yelp_doc_info_get (argv[1]);
+ doc_info = yelp_doc_info_get (argv[1], FALSE);
if (!doc_info) {
printf ("Failed to load URI: %s\n", argv[1]);
diff --git a/src/test-uri.c b/src/test-uri.c
index 98b01b91..0b514226 100644
--- a/src/test-uri.c
+++ b/src/test-uri.c
@@ -112,7 +112,7 @@ main (int argc, char **argv)
for (i = 1; i < argc; i++) {
if (i != 1)
printf ("\n");
- doc = yelp_doc_info_get (argv[i]);
+ doc = yelp_doc_info_get (argv[i], FALSE);
if (doc)
print_doc_info (doc);
else