From 682c32eaad6ca40510c9803c6a0eed7f8d7b58c2 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Thu, 24 Mar 2011 17:09:05 +0100 Subject: [PATCH] changed hard coded version numbers --- openlp/core/lib/plugin.py | 2 +- openlp/plugins/songs/lib/xml.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/openlp/core/lib/plugin.py b/openlp/core/lib/plugin.py index 6195cb248..c2c4831e1 100644 --- a/openlp/core/lib/plugin.py +++ b/openlp/core/lib/plugin.py @@ -145,7 +145,7 @@ class Plugin(QtCore.QObject): self.textStrings = {} self.setPluginTextStrings() self.nameStrings = self.textStrings[StringContent.Name] - self.version = version if version else u'1.9.4' + self.version = version if version else u'1.9.5' self.settingsSection = self.name.lower() self.icon = None self.mediaItemClass = mediaItemClass diff --git a/openlp/plugins/songs/lib/xml.py b/openlp/plugins/songs/lib/xml.py index 0bf64c6fa..111e712bc 100644 --- a/openlp/plugins/songs/lib/xml.py +++ b/openlp/plugins/songs/lib/xml.py @@ -230,8 +230,8 @@ class OpenLyrics(object): # Append the necessary meta data to the song. song_xml.set(u'xmlns', u'http://openlyrics.info/namespace/2009/song') song_xml.set(u'version', OpenLyrics.IMPLEMENTED_VERSION) - song_xml.set(u'createdIn', u'OpenLP 1.9.4') # Use variable - song_xml.set(u'modifiedIn', u'OpenLP 1.9.4') # Use variable + song_xml.set(u'createdIn', u'OpenLP 1.9.5') # Use variable + song_xml.set(u'modifiedIn', u'OpenLP 1.9.5') # Use variable song_xml.set(u'modifiedDate', datetime.datetime.now().strftime(u'%Y-%m-%dT%H:%M:%S')) properties = etree.SubElement(song_xml, u'properties')