From a2beacb1b71930f79cf6dc2db7a307f8755f8140 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Wed, 1 Jul 2009 17:44:13 +0000 Subject: [PATCH] Include CFBundleShortVersionString key in Info.plist. --- mxmldoc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mxmldoc.c b/mxmldoc.c index f80d69b..e524e76 100644 --- a/mxmldoc.c +++ b/mxmldoc.c @@ -3323,6 +3323,10 @@ write_html(const char *section, /* I - Section */ "\tCFBundleVersion\n" "\t", out); write_string(out, docversion ? docversion : "0.0", OUTPUT_HTML); + fputs("\n" + "\tCFBundleShortVersionString\n" + "\t", out); + write_string(out, docversion ? docversion : "0.0", OUTPUT_HTML); fputs("\n", out); if (feedname)