diff --git a/.bzrignore b/.bzrignore old mode 100644 new mode 100755 diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/MANIFEST.in b/MANIFEST.in old mode 100644 new mode 100755 diff --git a/OpenLP.spec b/OpenLP.spec old mode 100644 new mode 100755 diff --git a/copyright.txt b/copyright.txt old mode 100644 new mode 100755 diff --git a/demo_theme.xml b/demo_theme.xml old mode 100644 new mode 100755 diff --git a/documentation/Makefile b/documentation/Makefile old mode 100644 new mode 100755 diff --git a/documentation/PluginDevelopersGuide.txt b/documentation/PluginDevelopersGuide.txt old mode 100644 new mode 100755 diff --git a/documentation/SongFormat.txt b/documentation/SongFormat.txt old mode 100644 new mode 100755 diff --git a/documentation/make.bat b/documentation/make.bat old mode 100644 new mode 100755 diff --git a/documentation/plugin.txt b/documentation/plugin.txt old mode 100644 new mode 100755 diff --git a/documentation/source/conf.py b/documentation/source/conf.py old mode 100644 new mode 100755 diff --git a/documentation/source/core/index.rst b/documentation/source/core/index.rst old mode 100644 new mode 100755 diff --git a/documentation/source/core/lib.rst b/documentation/source/core/lib.rst old mode 100644 new mode 100755 diff --git a/documentation/source/core/theme.rst b/documentation/source/core/theme.rst old mode 100644 new mode 100755 diff --git a/documentation/source/index.rst b/documentation/source/index.rst old mode 100644 new mode 100755 diff --git a/documentation/source/openlp.rst b/documentation/source/openlp.rst old mode 100644 new mode 100755 diff --git a/documentation/source/plugins/bibles.rst b/documentation/source/plugins/bibles.rst old mode 100644 new mode 100755 diff --git a/documentation/source/plugins/index.rst b/documentation/source/plugins/index.rst old mode 100644 new mode 100755 diff --git a/documentation/source/plugins/songs.rst b/documentation/source/plugins/songs.rst old mode 100644 new mode 100755 diff --git a/openlp/.version b/openlp/.version old mode 100644 new mode 100755 diff --git a/openlp/__init__.py b/openlp/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/core/__init__.py b/openlp/core/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/core/lib/__init__.py b/openlp/core/lib/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/core/lib/baselistwithdnd.py b/openlp/core/lib/baselistwithdnd.py old mode 100644 new mode 100755 diff --git a/openlp/core/lib/db.py b/openlp/core/lib/db.py old mode 100644 new mode 100755 diff --git a/openlp/core/lib/dockwidget.py b/openlp/core/lib/dockwidget.py old mode 100644 new mode 100755 diff --git a/openlp/core/lib/eventreceiver.py b/openlp/core/lib/eventreceiver.py old mode 100644 new mode 100755 diff --git a/openlp/core/lib/htmlbuilder.py b/openlp/core/lib/htmlbuilder.py old mode 100644 new mode 100755 diff --git a/openlp/core/lib/mediamanageritem.py b/openlp/core/lib/mediamanageritem.py old mode 100644 new mode 100755 index ce4e63d16..c5560168d --- a/openlp/core/lib/mediamanageritem.py +++ b/openlp/core/lib/mediamanageritem.py @@ -215,7 +215,7 @@ class MediaManagerItem(QtGui.QWidget): loadString[u'title'], loadString[u'tooltip'], u':/general/general_open.png', self.onFileClick) - ## New Button ## rimach + ## New Button ## if self.hasNewIcon: newString = self.plugin.getString(StringType.New) self.addToolbarButton( diff --git a/openlp/core/lib/plugin.py b/openlp/core/lib/plugin.py old mode 100644 new mode 100755 index fd0515038..38b9d5af6 --- a/openlp/core/lib/plugin.py +++ b/openlp/core/lib/plugin.py @@ -127,8 +127,8 @@ class Plugin(QtCore.QObject): Defaults to *None*. A list of helper objects. """ QtCore.QObject.__init__(self) - self.name = name self.set_plugin_strings() + self.name = name if version: self.version = version self.settingsSection = self.name.lower() @@ -269,7 +269,7 @@ class Plugin(QtCore.QObject): Called by the plugin to remove toolbar """ if self.mediaItem: - self.mediadock.remove_dock(self.name) + self.mediadock.remove_dock(self.name_lower) if self.settings_tab: self.settingsForm.removeTab(self.name) @@ -315,5 +315,5 @@ class Plugin(QtCore.QObject): """ self.name = u'Plugin' self.name_lower = u'plugin' - + self.strings = {} diff --git a/openlp/core/lib/pluginmanager.py b/openlp/core/lib/pluginmanager.py old mode 100644 new mode 100755 diff --git a/openlp/core/lib/renderer.py b/openlp/core/lib/renderer.py old mode 100644 new mode 100755 diff --git a/openlp/core/lib/rendermanager.py b/openlp/core/lib/rendermanager.py old mode 100644 new mode 100755 diff --git a/openlp/core/lib/serviceitem.py b/openlp/core/lib/serviceitem.py old mode 100644 new mode 100755 diff --git a/openlp/core/lib/settingsmanager.py b/openlp/core/lib/settingsmanager.py old mode 100644 new mode 100755 diff --git a/openlp/core/lib/settingstab.py b/openlp/core/lib/settingstab.py old mode 100644 new mode 100755 diff --git a/openlp/core/lib/spelltextedit.py b/openlp/core/lib/spelltextedit.py old mode 100644 new mode 100755 diff --git a/openlp/core/lib/theme.py b/openlp/core/lib/theme.py old mode 100644 new mode 100755 diff --git a/openlp/core/lib/toolbar.py b/openlp/core/lib/toolbar.py old mode 100644 new mode 100755 diff --git a/openlp/core/theme/__init__.py b/openlp/core/theme/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/core/theme/theme.py b/openlp/core/theme/theme.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/__init__.py b/openlp/core/ui/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/aboutdialog.py b/openlp/core/ui/aboutdialog.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/aboutform.py b/openlp/core/ui/aboutform.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/advancedtab.py b/openlp/core/ui/advancedtab.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/amendthemedialog.py b/openlp/core/ui/amendthemedialog.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/amendthemeform.py b/openlp/core/ui/amendthemeform.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/exceptiondialog.py b/openlp/core/ui/exceptiondialog.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/exceptionform.py b/openlp/core/ui/exceptionform.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/generaltab.py b/openlp/core/ui/generaltab.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/mediadockmanager.py b/openlp/core/ui/mediadockmanager.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/plugindialog.py b/openlp/core/ui/plugindialog.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/pluginform.py b/openlp/core/ui/pluginform.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/screen.py b/openlp/core/ui/screen.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/serviceitemeditdialog.py b/openlp/core/ui/serviceitemeditdialog.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/serviceitemeditform.py b/openlp/core/ui/serviceitemeditform.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/servicenotedialog.py b/openlp/core/ui/servicenotedialog.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/servicenoteform.py b/openlp/core/ui/servicenoteform.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/settingsdialog.py b/openlp/core/ui/settingsdialog.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/settingsform.py b/openlp/core/ui/settingsform.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/splashscreen.py b/openlp/core/ui/splashscreen.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/thememanager.py b/openlp/core/ui/thememanager.py old mode 100644 new mode 100755 diff --git a/openlp/core/ui/themestab.py b/openlp/core/ui/themestab.py old mode 100644 new mode 100755 diff --git a/openlp/core/utils/__init__.py b/openlp/core/utils/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/core/utils/languagemanager.py b/openlp/core/utils/languagemanager.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/__init__.py b/openlp/plugins/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/alerts/__init__.py b/openlp/plugins/alerts/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/alerts/alertsplugin.py b/openlp/plugins/alerts/alertsplugin.py old mode 100644 new mode 100755 index d7cd08b70..0b89f642c --- a/openlp/plugins/alerts/alertsplugin.py +++ b/openlp/plugins/alerts/alertsplugin.py @@ -40,7 +40,6 @@ class AlertsPlugin(Plugin): log.info(u'Alerts Plugin loaded') def __init__(self, plugin_helpers): - self.set_plugin_strings() Plugin.__init__(self, u'Alerts', u'1.9.2', plugin_helpers) self.weight = -3 self.icon = build_icon(u':/plugins/plugin_alerts.png') diff --git a/openlp/plugins/alerts/forms/__init__.py b/openlp/plugins/alerts/forms/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/alerts/forms/alertdialog.py b/openlp/plugins/alerts/forms/alertdialog.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/alerts/forms/alertform.py b/openlp/plugins/alerts/forms/alertform.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/alerts/lib/__init__.py b/openlp/plugins/alerts/lib/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/alerts/lib/alertsmanager.py b/openlp/plugins/alerts/lib/alertsmanager.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/alerts/lib/alertstab.py b/openlp/plugins/alerts/lib/alertstab.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/alerts/lib/db.py b/openlp/plugins/alerts/lib/db.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/__init__.py b/openlp/plugins/bibles/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/bibleplugin.py b/openlp/plugins/bibles/bibleplugin.py old mode 100644 new mode 100755 index 5bbaf7f1b..5c24f9230 --- a/openlp/plugins/bibles/bibleplugin.py +++ b/openlp/plugins/bibles/bibleplugin.py @@ -37,7 +37,6 @@ class BiblePlugin(Plugin): log.info(u'Bible Plugin loaded') def __init__(self, plugin_helpers): - self.set_plugin_strings() Plugin.__init__(self, u'Bibles', u'1.9.2', plugin_helpers) self.weight = -9 self.icon_path = u':/plugins/plugin_bibles.png' diff --git a/openlp/plugins/bibles/forms/__init__.py b/openlp/plugins/bibles/forms/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/forms/bibleimportwizard.py b/openlp/plugins/bibles/forms/bibleimportwizard.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/forms/importwizardform.py b/openlp/plugins/bibles/forms/importwizardform.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/lib/__init__.py b/openlp/plugins/bibles/lib/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/lib/biblestab.py b/openlp/plugins/bibles/lib/biblestab.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/lib/csvbible.py b/openlp/plugins/bibles/lib/csvbible.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/lib/db.py b/openlp/plugins/bibles/lib/db.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/lib/http.py b/openlp/plugins/bibles/lib/http.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/lib/manager.py b/openlp/plugins/bibles/lib/manager.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/lib/mediaitem.py b/openlp/plugins/bibles/lib/mediaitem.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/lib/opensong.py b/openlp/plugins/bibles/lib/opensong.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/lib/osis.py b/openlp/plugins/bibles/lib/osis.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/resources/biblegateway.csv b/openlp/plugins/bibles/resources/biblegateway.csv old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/resources/crosswalkbooks.csv b/openlp/plugins/bibles/resources/crosswalkbooks.csv old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/resources/httpbooks.sqlite b/openlp/plugins/bibles/resources/httpbooks.sqlite old mode 100644 new mode 100755 diff --git a/openlp/plugins/bibles/resources/osisbooks.csv b/openlp/plugins/bibles/resources/osisbooks.csv old mode 100644 new mode 100755 diff --git a/openlp/plugins/custom/__init__.py b/openlp/plugins/custom/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/custom/customplugin.py b/openlp/plugins/custom/customplugin.py old mode 100644 new mode 100755 index d61e2f09c..7abbad04c --- a/openlp/plugins/custom/customplugin.py +++ b/openlp/plugins/custom/customplugin.py @@ -47,7 +47,6 @@ class CustomPlugin(Plugin): log.info(u'Custom Plugin loaded') def __init__(self, plugin_helpers): - self.set_plugin_strings() Plugin.__init__(self, u'Custom', u'1.9.2', plugin_helpers) self.weight = -5 self.custommanager = Manager(u'custom', init_schema) diff --git a/openlp/plugins/custom/forms/__init__.py b/openlp/plugins/custom/forms/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/custom/forms/editcustomdialog.py b/openlp/plugins/custom/forms/editcustomdialog.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/custom/forms/editcustomform.py b/openlp/plugins/custom/forms/editcustomform.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/custom/lib/__init__.py b/openlp/plugins/custom/lib/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/custom/lib/customtab.py b/openlp/plugins/custom/lib/customtab.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/custom/lib/customxmlhandler.py b/openlp/plugins/custom/lib/customxmlhandler.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/custom/lib/db.py b/openlp/plugins/custom/lib/db.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/custom/lib/mediaitem.py b/openlp/plugins/custom/lib/mediaitem.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/images/__init__.py b/openlp/plugins/images/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/images/imageplugin.py b/openlp/plugins/images/imageplugin.py old mode 100644 new mode 100755 index 3aa981681..88d93e5ca --- a/openlp/plugins/images/imageplugin.py +++ b/openlp/plugins/images/imageplugin.py @@ -35,7 +35,6 @@ class ImagePlugin(Plugin): log.info(u'Image Plugin loaded') def __init__(self, plugin_helpers): - self.set_plugin_strings() Plugin.__init__(self, u'Images', u'1.9.2', plugin_helpers) self.weight = -7 self.icon_path = u':/plugins/plugin_images.png' @@ -58,7 +57,7 @@ class ImagePlugin(Plugin): 'selected image as a background instead of the background ' 'provided by the theme.') return about_text - # rimach + def set_plugin_strings(self): """ Called to define all translatable texts of the plugin diff --git a/openlp/plugins/images/lib/__init__.py b/openlp/plugins/images/lib/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/images/lib/mediaitem.py b/openlp/plugins/images/lib/mediaitem.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/media/__init__.py b/openlp/plugins/media/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/media/lib/__init__.py b/openlp/plugins/media/lib/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/media/lib/mediaitem.py b/openlp/plugins/media/lib/mediaitem.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/media/mediaplugin.py b/openlp/plugins/media/mediaplugin.py old mode 100644 new mode 100755 index 6c8a2eaea..1be50b1ba --- a/openlp/plugins/media/mediaplugin.py +++ b/openlp/plugins/media/mediaplugin.py @@ -37,7 +37,6 @@ class MediaPlugin(Plugin): log.info(u'%s MediaPlugin loaded', __name__) def __init__(self, plugin_helpers): - self.set_plugin_strings() Plugin.__init__(self, u'Media', u'1.9.2', plugin_helpers) self.weight = -6 self.icon_path = u':/plugins/plugin_media.png' diff --git a/openlp/plugins/presentations/__init__.py b/openlp/plugins/presentations/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/presentations/lib/__init__.py b/openlp/plugins/presentations/lib/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/presentations/lib/impresscontroller.py b/openlp/plugins/presentations/lib/impresscontroller.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/presentations/lib/mediaitem.py b/openlp/plugins/presentations/lib/mediaitem.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/presentations/lib/messagelistener.py b/openlp/plugins/presentations/lib/messagelistener.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/presentations/lib/powerpointcontroller.py b/openlp/plugins/presentations/lib/powerpointcontroller.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/presentations/lib/pptviewcontroller.py b/openlp/plugins/presentations/lib/pptviewcontroller.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/presentations/lib/pptviewlib/README.TXT b/openlp/plugins/presentations/lib/pptviewlib/README.TXT old mode 100644 new mode 100755 diff --git a/openlp/plugins/presentations/lib/pptviewlib/ppttest.py b/openlp/plugins/presentations/lib/pptviewlib/ppttest.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.cpp b/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.cpp old mode 100644 new mode 100755 diff --git a/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.dll b/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.dll old mode 100644 new mode 100755 diff --git a/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.h b/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.h old mode 100644 new mode 100755 diff --git a/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.vcproj b/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.vcproj old mode 100644 new mode 100755 diff --git a/openlp/plugins/presentations/lib/pptviewlib/test.ppt b/openlp/plugins/presentations/lib/pptviewlib/test.ppt old mode 100644 new mode 100755 diff --git a/openlp/plugins/presentations/lib/presentationcontroller.py b/openlp/plugins/presentations/lib/presentationcontroller.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/presentations/lib/presentationtab.py b/openlp/plugins/presentations/lib/presentationtab.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/presentations/presentationplugin.py b/openlp/plugins/presentations/presentationplugin.py old mode 100644 new mode 100755 index d53931e28..1a5b0a329 --- a/openlp/plugins/presentations/presentationplugin.py +++ b/openlp/plugins/presentations/presentationplugin.py @@ -51,7 +51,6 @@ class PresentationPlugin(Plugin): """ log.debug(u'Initialised') self.controllers = {} - self.set_plugin_strings() Plugin.__init__(self, u'Presentations', u'1.9.2', plugin_helpers) self.weight = -8 self.icon_path = u':/plugins/plugin_presentations.png' diff --git a/openlp/plugins/remotes/__init__.py b/openlp/plugins/remotes/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/remotes/html/index.html b/openlp/plugins/remotes/html/index.html old mode 100644 new mode 100755 diff --git a/openlp/plugins/remotes/html/init.js b/openlp/plugins/remotes/html/init.js old mode 100644 new mode 100755 diff --git a/openlp/plugins/remotes/html/openlp.js b/openlp/plugins/remotes/html/openlp.js old mode 100644 new mode 100755 diff --git a/openlp/plugins/remotes/html/openlp.service.js b/openlp/plugins/remotes/html/openlp.service.js old mode 100644 new mode 100755 diff --git a/openlp/plugins/remotes/html/style.css b/openlp/plugins/remotes/html/style.css old mode 100644 new mode 100755 diff --git a/openlp/plugins/remotes/lib/__init__.py b/openlp/plugins/remotes/lib/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/remotes/lib/httpserver.py b/openlp/plugins/remotes/lib/httpserver.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/remotes/lib/remotetab.py b/openlp/plugins/remotes/lib/remotetab.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/remotes/remoteplugin.py b/openlp/plugins/remotes/remoteplugin.py old mode 100644 new mode 100755 index 088e47fc7..ff5bcecd8 --- a/openlp/plugins/remotes/remoteplugin.py +++ b/openlp/plugins/remotes/remoteplugin.py @@ -38,7 +38,6 @@ class RemotesPlugin(Plugin): """ remotes constructor """ - self.set_plugin_strings() Plugin.__init__(self, u'Remotes', u'1.9.2', plugin_helpers) self.icon = build_icon(u':/plugins/plugin_remote.png') self.weight = -1 diff --git a/openlp/plugins/songs/__init__.py b/openlp/plugins/songs/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/forms/__init__.py b/openlp/plugins/songs/forms/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/forms/authorsdialog.py b/openlp/plugins/songs/forms/authorsdialog.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/forms/authorsform.py b/openlp/plugins/songs/forms/authorsform.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/forms/editsongdialog.py b/openlp/plugins/songs/forms/editsongdialog.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/forms/editsongform.py b/openlp/plugins/songs/forms/editsongform.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/forms/editversedialog.py b/openlp/plugins/songs/forms/editversedialog.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/forms/editverseform.py b/openlp/plugins/songs/forms/editverseform.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/forms/songbookdialog.py b/openlp/plugins/songs/forms/songbookdialog.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/forms/songbookform.py b/openlp/plugins/songs/forms/songbookform.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/forms/songimportform.py b/openlp/plugins/songs/forms/songimportform.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/forms/songimportwizard.py b/openlp/plugins/songs/forms/songimportwizard.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/forms/songmaintenancedialog.py b/openlp/plugins/songs/forms/songmaintenancedialog.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/forms/songmaintenanceform.py b/openlp/plugins/songs/forms/songmaintenanceform.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/forms/topicsdialog.py b/openlp/plugins/songs/forms/topicsdialog.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/forms/topicsform.py b/openlp/plugins/songs/forms/topicsform.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/__init__.py b/openlp/plugins/songs/lib/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/db.py b/openlp/plugins/songs/lib/db.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/importer.py b/openlp/plugins/songs/lib/importer.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/olp1import.py b/openlp/plugins/songs/lib/olp1import.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/olpimport.py b/openlp/plugins/songs/lib/olpimport.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/oooimport.py b/openlp/plugins/songs/lib/oooimport.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/opensongimport.py b/openlp/plugins/songs/lib/opensongimport.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/sofimport.py b/openlp/plugins/songs/lib/sofimport.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/songimport.py b/openlp/plugins/songs/lib/songimport.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/songstab.py b/openlp/plugins/songs/lib/songstab.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/songxml.py b/openlp/plugins/songs/lib/songxml.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/test/test.opensong b/openlp/plugins/songs/lib/test/test.opensong old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/test/test.opensong.zip b/openlp/plugins/songs/lib/test/test.opensong.zip old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/test/test2.opensong b/openlp/plugins/songs/lib/test/test2.opensong old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/test/test_importing_lots.py b/openlp/plugins/songs/lib/test/test_importing_lots.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/test/test_opensongimport.py b/openlp/plugins/songs/lib/test/test_opensongimport.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/wowimport.py b/openlp/plugins/songs/lib/wowimport.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/lib/xml.py b/openlp/plugins/songs/lib/xml.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songs/songsplugin.py b/openlp/plugins/songs/songsplugin.py old mode 100644 new mode 100755 index 54d85083a..815e9cb4d --- a/openlp/plugins/songs/songsplugin.py +++ b/openlp/plugins/songs/songsplugin.py @@ -50,7 +50,6 @@ class SongsPlugin(Plugin): """ Create and set up the Songs plugin. """ - self.set_plugin_strings() Plugin.__init__(self, u'Songs', u'1.9.2', plugin_helpers) self.weight = -10 self.manager = Manager(u'songs', init_schema) diff --git a/openlp/plugins/songusage/__init__.py b/openlp/plugins/songusage/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songusage/forms/__init__.py b/openlp/plugins/songusage/forms/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songusage/forms/songusagedeletedialog.py b/openlp/plugins/songusage/forms/songusagedeletedialog.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songusage/forms/songusagedeleteform.py b/openlp/plugins/songusage/forms/songusagedeleteform.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songusage/forms/songusagedetaildialog.py b/openlp/plugins/songusage/forms/songusagedetaildialog.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songusage/forms/songusagedetailform.py b/openlp/plugins/songusage/forms/songusagedetailform.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songusage/lib/__init__.py b/openlp/plugins/songusage/lib/__init__.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songusage/lib/db.py b/openlp/plugins/songusage/lib/db.py old mode 100644 new mode 100755 diff --git a/openlp/plugins/songusage/songusageplugin.py b/openlp/plugins/songusage/songusageplugin.py old mode 100644 new mode 100755 index 2a734e830..ddcca32a2 --- a/openlp/plugins/songusage/songusageplugin.py +++ b/openlp/plugins/songusage/songusageplugin.py @@ -41,7 +41,6 @@ class SongUsagePlugin(Plugin): log.info(u'SongUsage Plugin loaded') def __init__(self, plugin_helpers): - self.set_plugin_strings() Plugin.__init__(self, u'SongUsage', u'1.9.2', plugin_helpers) self.weight = -4 self.icon = build_icon(u':/plugins/plugin_songusage.png') diff --git a/resources/.config/openlp/openlp.conf b/resources/.config/openlp/openlp.conf old mode 100644 new mode 100755 diff --git a/resources/.local/share/openlp/bibles/asv.sqlite b/resources/.local/share/openlp/bibles/asv.sqlite old mode 100644 new mode 100755 diff --git a/resources/.local/share/openlp/themes/Bible Readings.png b/resources/.local/share/openlp/themes/Bible Readings.png old mode 100644 new mode 100755 diff --git a/resources/.local/share/openlp/themes/Bible Readings/Bible Readings.xml b/resources/.local/share/openlp/themes/Bible Readings/Bible Readings.xml old mode 100644 new mode 100755 diff --git a/resources/.local/share/openlp/themes/Bible Readings/open6_2.jpg b/resources/.local/share/openlp/themes/Bible Readings/open6_2.jpg old mode 100644 new mode 100755 diff --git a/resources/.local/share/openlp/themes/Blue.png b/resources/.local/share/openlp/themes/Blue.png old mode 100644 new mode 100755 diff --git a/resources/.local/share/openlp/themes/Blue/Blue.xml b/resources/.local/share/openlp/themes/Blue/Blue.xml old mode 100644 new mode 100755 diff --git a/resources/.local/share/openlp/themes/theme1.png b/resources/.local/share/openlp/themes/theme1.png old mode 100644 new mode 100755 diff --git a/resources/.local/share/openlp/themes/theme1/theme1.xml b/resources/.local/share/openlp/themes/theme1/theme1.xml old mode 100644 new mode 100755 diff --git a/resources/.local/share/openlp/themes/theme2.png b/resources/.local/share/openlp/themes/theme2.png old mode 100644 new mode 100755 diff --git a/resources/.local/share/openlp/themes/theme2/theme2.xml b/resources/.local/share/openlp/themes/theme2/theme2.xml old mode 100644 new mode 100755 diff --git a/resources/.local/share/openlp/themes/theme3.png b/resources/.local/share/openlp/themes/theme3.png old mode 100644 new mode 100755 diff --git a/resources/.local/share/openlp/themes/theme3/sunset2.jpg b/resources/.local/share/openlp/themes/theme3/sunset2.jpg old mode 100644 new mode 100755 diff --git a/resources/.local/share/openlp/themes/theme3/theme3.xml b/resources/.local/share/openlp/themes/theme3/theme3.xml old mode 100644 new mode 100755 diff --git a/resources/.openlp/data/bible/asv.sqlite b/resources/.openlp/data/bible/asv.sqlite old mode 100644 new mode 100755 diff --git a/resources/.openlp/openlp.conf b/resources/.openlp/openlp.conf old mode 100644 new mode 100755 diff --git a/resources/.openlp/openlp.conf_posix b/resources/.openlp/openlp.conf_posix old mode 100644 new mode 100755 diff --git a/resources/.openlp/openlp.conf_win b/resources/.openlp/openlp.conf_win old mode 100644 new mode 100755 diff --git a/resources/Fedora/191/OpenLP.spec b/resources/Fedora/191/OpenLP.spec old mode 100644 new mode 100755 diff --git a/resources/bibles/afr1953.osis b/resources/bibles/afr1953.osis old mode 100644 new mode 100755 diff --git a/resources/bibles/kjc.osis b/resources/bibles/kjc.osis old mode 100644 new mode 100755 diff --git a/resources/bibles/osisbooks_en.txt b/resources/bibles/osisbooks_en.txt old mode 100644 new mode 100755 diff --git a/resources/forms/about.ui b/resources/forms/about.ui old mode 100644 new mode 100755 diff --git a/resources/forms/alertdialog.ui b/resources/forms/alertdialog.ui old mode 100644 new mode 100755 diff --git a/resources/forms/amendthemedialog.ui b/resources/forms/amendthemedialog.ui old mode 100644 new mode 100755 diff --git a/resources/forms/authorsdialog.ui b/resources/forms/authorsdialog.ui old mode 100644 new mode 100755 diff --git a/resources/forms/bibleimportdialog.ui b/resources/forms/bibleimportdialog.ui old mode 100644 new mode 100755 diff --git a/resources/forms/bibleimportwizard.ui b/resources/forms/bibleimportwizard.ui old mode 100644 new mode 100755 diff --git a/resources/forms/displaytab.ui b/resources/forms/displaytab.ui old mode 100644 new mode 100755 diff --git a/resources/forms/editcustomdialog.ui b/resources/forms/editcustomdialog.ui old mode 100644 new mode 100755 diff --git a/resources/forms/editsongdialog.ui b/resources/forms/editsongdialog.ui old mode 100644 new mode 100755 diff --git a/resources/forms/editversedialog.ui b/resources/forms/editversedialog.ui old mode 100644 new mode 100755 diff --git a/resources/forms/exceptiondialog.ui b/resources/forms/exceptiondialog.ui old mode 100644 new mode 100755 diff --git a/resources/forms/mainwindow.ui b/resources/forms/mainwindow.ui old mode 100644 new mode 100755 diff --git a/resources/forms/plugindialoglistform.ui b/resources/forms/plugindialoglistform.ui old mode 100644 new mode 100755 diff --git a/resources/forms/serviceitemeditdialog.ui b/resources/forms/serviceitemeditdialog.ui old mode 100644 new mode 100755 diff --git a/resources/forms/servicenotedialog.ui b/resources/forms/servicenotedialog.ui old mode 100644 new mode 100755 diff --git a/resources/forms/settings.ui b/resources/forms/settings.ui old mode 100644 new mode 100755 diff --git a/resources/forms/songbookdialog.ui b/resources/forms/songbookdialog.ui old mode 100644 new mode 100755 diff --git a/resources/forms/songexport.ui b/resources/forms/songexport.ui old mode 100644 new mode 100755 diff --git a/resources/forms/songimportwizard.ui b/resources/forms/songimportwizard.ui old mode 100644 new mode 100755 diff --git a/resources/forms/songmaintenance.ui b/resources/forms/songmaintenance.ui old mode 100644 new mode 100755 diff --git a/resources/forms/songusagedeletedialog.ui b/resources/forms/songusagedeletedialog.ui old mode 100644 new mode 100755 diff --git a/resources/forms/songusagedetaildialog.ui b/resources/forms/songusagedetaildialog.ui old mode 100644 new mode 100755 diff --git a/resources/forms/splashscreen.ui b/resources/forms/splashscreen.ui old mode 100644 new mode 100755 diff --git a/resources/forms/themewizard.ui b/resources/forms/themewizard.ui old mode 100644 new mode 100755 diff --git a/resources/forms/topicsdialog.ui b/resources/forms/topicsdialog.ui old mode 100644 new mode 100755 diff --git a/resources/i18n/openlp_af.ts b/resources/i18n/openlp_af.ts old mode 100644 new mode 100755 diff --git a/resources/i18n/openlp_de.ts b/resources/i18n/openlp_de.ts old mode 100644 new mode 100755 index 308a424e3..7e8b14dbb --- a/resources/i18n/openlp_de.ts +++ b/resources/i18n/openlp_de.ts @@ -2822,22 +2822,22 @@ The content encoding is not UTF-8. Blank Screen - + Livebild schwarz Blank to Theme - + Livebild Hintergrund Show Desktop - + Livebild Transparent Go to - + Gehe zu diff --git a/resources/i18n/openlp_en.ts b/resources/i18n/openlp_en.ts old mode 100644 new mode 100755 diff --git a/resources/i18n/openlp_en_GB.ts b/resources/i18n/openlp_en_GB.ts old mode 100644 new mode 100755 diff --git a/resources/i18n/openlp_en_ZA.ts b/resources/i18n/openlp_en_ZA.ts old mode 100644 new mode 100755 diff --git a/resources/i18n/openlp_es.ts b/resources/i18n/openlp_es.ts old mode 100644 new mode 100755 diff --git a/resources/i18n/openlp_et.ts b/resources/i18n/openlp_et.ts old mode 100644 new mode 100755 diff --git a/resources/i18n/openlp_hu.ts b/resources/i18n/openlp_hu.ts old mode 100644 new mode 100755 diff --git a/resources/i18n/openlp_ko.ts b/resources/i18n/openlp_ko.ts old mode 100644 new mode 100755 diff --git a/resources/i18n/openlp_nb.ts b/resources/i18n/openlp_nb.ts old mode 100644 new mode 100755 diff --git a/resources/i18n/openlp_pt_BR.ts b/resources/i18n/openlp_pt_BR.ts old mode 100644 new mode 100755 diff --git a/resources/i18n/openlp_sv.ts b/resources/i18n/openlp_sv.ts old mode 100644 new mode 100755 diff --git a/resources/images/OpenLP.ico b/resources/images/OpenLP.ico old mode 100644 new mode 100755 diff --git a/resources/images/about-new.bmp b/resources/images/about-new.bmp old mode 100644 new mode 100755 diff --git a/resources/images/author_add.png b/resources/images/author_add.png old mode 100644 new mode 100755 diff --git a/resources/images/author_delete.png b/resources/images/author_delete.png old mode 100644 new mode 100755 diff --git a/resources/images/author_edit.png b/resources/images/author_edit.png old mode 100644 new mode 100755 diff --git a/resources/images/author_maintenance.png b/resources/images/author_maintenance.png old mode 100644 new mode 100755 diff --git a/resources/images/book_add.png b/resources/images/book_add.png old mode 100644 new mode 100755 diff --git a/resources/images/book_delete.png b/resources/images/book_delete.png old mode 100644 new mode 100755 diff --git a/resources/images/book_edit.png b/resources/images/book_edit.png old mode 100644 new mode 100755 diff --git a/resources/images/book_maintenance.png b/resources/images/book_maintenance.png old mode 100644 new mode 100755 diff --git a/resources/images/custom_delete.png b/resources/images/custom_delete.png old mode 100644 new mode 100755 diff --git a/resources/images/custom_edit.png b/resources/images/custom_edit.png old mode 100644 new mode 100755 diff --git a/resources/images/custom_new.png b/resources/images/custom_new.png old mode 100644 new mode 100755 diff --git a/resources/images/exception.png b/resources/images/exception.png old mode 100644 new mode 100755 diff --git a/resources/images/export_load.png b/resources/images/export_load.png old mode 100644 new mode 100755 diff --git a/resources/images/export_move_to_list.png b/resources/images/export_move_to_list.png old mode 100644 new mode 100755 diff --git a/resources/images/export_remove.png b/resources/images/export_remove.png old mode 100644 new mode 100755 diff --git a/resources/images/export_selectall.png b/resources/images/export_selectall.png old mode 100644 new mode 100755 diff --git a/resources/images/general_add.png b/resources/images/general_add.png old mode 100644 new mode 100755 diff --git a/resources/images/general_delete.png b/resources/images/general_delete.png old mode 100644 new mode 100755 diff --git a/resources/images/general_edit.png b/resources/images/general_edit.png old mode 100644 new mode 100755 diff --git a/resources/images/general_export.png b/resources/images/general_export.png old mode 100644 new mode 100755 diff --git a/resources/images/general_import.png b/resources/images/general_import.png old mode 100644 new mode 100755 diff --git a/resources/images/general_live.png b/resources/images/general_live.png old mode 100644 new mode 100755 diff --git a/resources/images/general_new.png b/resources/images/general_new.png old mode 100644 new mode 100755 diff --git a/resources/images/general_open.png b/resources/images/general_open.png old mode 100644 new mode 100755 diff --git a/resources/images/general_preview.png b/resources/images/general_preview.png old mode 100644 new mode 100755 diff --git a/resources/images/general_save.png b/resources/images/general_save.png old mode 100644 new mode 100755 diff --git a/resources/images/image_clapperboard.png b/resources/images/image_clapperboard.png old mode 100644 new mode 100755 diff --git a/resources/images/image_delete.png b/resources/images/image_delete.png old mode 100644 new mode 100755 diff --git a/resources/images/image_load.png b/resources/images/image_load.png old mode 100644 new mode 100755 diff --git a/resources/images/import_load.png b/resources/images/import_load.png old mode 100644 new mode 100755 diff --git a/resources/images/import_move_to_list.png b/resources/images/import_move_to_list.png old mode 100644 new mode 100755 diff --git a/resources/images/import_remove.png b/resources/images/import_remove.png old mode 100644 new mode 100755 diff --git a/resources/images/import_selectall.png b/resources/images/import_selectall.png old mode 100644 new mode 100755 diff --git a/resources/images/media_playback_pause.png b/resources/images/media_playback_pause.png old mode 100644 new mode 100755 diff --git a/resources/images/media_playback_start.png b/resources/images/media_playback_start.png old mode 100644 new mode 100755 diff --git a/resources/images/media_playback_stop.png b/resources/images/media_playback_stop.png old mode 100644 new mode 100755 diff --git a/resources/images/media_stop.png b/resources/images/media_stop.png old mode 100644 new mode 100755 diff --git a/resources/images/media_time.png b/resources/images/media_time.png old mode 100644 new mode 100755 diff --git a/resources/images/messagebox_critical.png b/resources/images/messagebox_critical.png old mode 100644 new mode 100755 diff --git a/resources/images/messagebox_info.png b/resources/images/messagebox_info.png old mode 100644 new mode 100755 diff --git a/resources/images/messagebox_warning.png b/resources/images/messagebox_warning.png old mode 100644 new mode 100755 diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc old mode 100644 new mode 100755 diff --git a/resources/images/openlp-about-logo.png b/resources/images/openlp-about-logo.png old mode 100644 new mode 100755 diff --git a/resources/images/openlp-about-logo.svg b/resources/images/openlp-about-logo.svg old mode 100644 new mode 100755 diff --git a/resources/images/openlp-default-dualdisplay.svg b/resources/images/openlp-default-dualdisplay.svg old mode 100644 new mode 100755 diff --git a/resources/images/openlp-logo-128x128.png b/resources/images/openlp-logo-128x128.png old mode 100644 new mode 100755 diff --git a/resources/images/openlp-logo-16x16.png b/resources/images/openlp-logo-16x16.png old mode 100644 new mode 100755 diff --git a/resources/images/openlp-logo-256x256.png b/resources/images/openlp-logo-256x256.png old mode 100644 new mode 100755 diff --git a/resources/images/openlp-logo-32x32.png b/resources/images/openlp-logo-32x32.png old mode 100644 new mode 100755 diff --git a/resources/images/openlp-logo-420x420.png b/resources/images/openlp-logo-420x420.png old mode 100644 new mode 100755 diff --git a/resources/images/openlp-logo-48x48.png b/resources/images/openlp-logo-48x48.png old mode 100644 new mode 100755 diff --git a/resources/images/openlp-logo-64x64.png b/resources/images/openlp-logo-64x64.png old mode 100644 new mode 100755 diff --git a/resources/images/openlp-logo.svg b/resources/images/openlp-logo.svg old mode 100644 new mode 100755 diff --git a/resources/images/openlp-splash-screen.png b/resources/images/openlp-splash-screen.png old mode 100644 new mode 100755 diff --git a/resources/images/openlp-splash-screen.svg b/resources/images/openlp-splash-screen.svg old mode 100644 new mode 100755 diff --git a/resources/images/openlp.org-icon-32.bmp b/resources/images/openlp.org-icon-32.bmp old mode 100644 new mode 100755 diff --git a/resources/images/openlp.org.ico b/resources/images/openlp.org.ico old mode 100644 new mode 100755 diff --git a/resources/images/openlp.svg b/resources/images/openlp.svg old mode 100644 new mode 100755 diff --git a/resources/images/plugin_alerts.png b/resources/images/plugin_alerts.png old mode 100644 new mode 100755 diff --git a/resources/images/plugin_bibles.png b/resources/images/plugin_bibles.png old mode 100644 new mode 100755 diff --git a/resources/images/plugin_custom.png b/resources/images/plugin_custom.png old mode 100644 new mode 100755 diff --git a/resources/images/plugin_images.png b/resources/images/plugin_images.png old mode 100644 new mode 100755 diff --git a/resources/images/plugin_media.png b/resources/images/plugin_media.png old mode 100644 new mode 100755 diff --git a/resources/images/plugin_presentations.png b/resources/images/plugin_presentations.png old mode 100644 new mode 100755 diff --git a/resources/images/plugin_remote.png b/resources/images/plugin_remote.png old mode 100644 new mode 100755 diff --git a/resources/images/plugin_songs.png b/resources/images/plugin_songs.png old mode 100644 new mode 100755 diff --git a/resources/images/plugin_songusage.png b/resources/images/plugin_songusage.png old mode 100644 new mode 100755 diff --git a/resources/images/presentation_delete.png b/resources/images/presentation_delete.png old mode 100644 new mode 100755 diff --git a/resources/images/presentation_load.png b/resources/images/presentation_load.png old mode 100644 new mode 100755 diff --git a/resources/images/service_bottom.png b/resources/images/service_bottom.png old mode 100644 new mode 100755 diff --git a/resources/images/service_delete.png b/resources/images/service_delete.png old mode 100644 new mode 100755 diff --git a/resources/images/service_down.png b/resources/images/service_down.png old mode 100644 new mode 100755 diff --git a/resources/images/service_edit.png b/resources/images/service_edit.png old mode 100644 new mode 100755 diff --git a/resources/images/service_item_notes.png b/resources/images/service_item_notes.png old mode 100644 new mode 100755 diff --git a/resources/images/service_new.png b/resources/images/service_new.png old mode 100644 new mode 100755 diff --git a/resources/images/service_notes.png b/resources/images/service_notes.png old mode 100644 new mode 100755 diff --git a/resources/images/service_open.png b/resources/images/service_open.png old mode 100644 new mode 100755 diff --git a/resources/images/service_save.png b/resources/images/service_save.png old mode 100644 new mode 100755 diff --git a/resources/images/service_top.png b/resources/images/service_top.png old mode 100644 new mode 100755 diff --git a/resources/images/service_up.png b/resources/images/service_up.png old mode 100644 new mode 100755 diff --git a/resources/images/settings_plugin_list.png b/resources/images/settings_plugin_list.png old mode 100644 new mode 100755 diff --git a/resources/images/slide_blank.png b/resources/images/slide_blank.png old mode 100644 new mode 100755 diff --git a/resources/images/slide_close.png b/resources/images/slide_close.png old mode 100644 new mode 100755 diff --git a/resources/images/slide_desktop.png b/resources/images/slide_desktop.png old mode 100644 new mode 100755 diff --git a/resources/images/slide_first.png b/resources/images/slide_first.png old mode 100644 new mode 100755 diff --git a/resources/images/slide_last.png b/resources/images/slide_last.png old mode 100644 new mode 100755 diff --git a/resources/images/slide_next.png b/resources/images/slide_next.png old mode 100644 new mode 100755 diff --git a/resources/images/slide_previous.png b/resources/images/slide_previous.png old mode 100644 new mode 100755 diff --git a/resources/images/slide_theme.png b/resources/images/slide_theme.png old mode 100644 new mode 100755 diff --git a/resources/images/song_author_edit.png b/resources/images/song_author_edit.png old mode 100644 new mode 100755 diff --git a/resources/images/song_book_edit.png b/resources/images/song_book_edit.png old mode 100644 new mode 100755 diff --git a/resources/images/song_delete.png b/resources/images/song_delete.png old mode 100644 new mode 100755 diff --git a/resources/images/song_edit.png b/resources/images/song_edit.png old mode 100644 new mode 100755 diff --git a/resources/images/song_export.png b/resources/images/song_export.png old mode 100644 new mode 100755 diff --git a/resources/images/song_maintenance.png b/resources/images/song_maintenance.png old mode 100644 new mode 100755 diff --git a/resources/images/song_new.png b/resources/images/song_new.png old mode 100644 new mode 100755 diff --git a/resources/images/song_topic_edit.png b/resources/images/song_topic_edit.png old mode 100644 new mode 100755 diff --git a/resources/images/splash-screen-new.bmp b/resources/images/splash-screen-new.bmp old mode 100644 new mode 100755 diff --git a/resources/images/system_about.png b/resources/images/system_about.png old mode 100644 new mode 100755 diff --git a/resources/images/system_add.png b/resources/images/system_add.png old mode 100644 new mode 100755 diff --git a/resources/images/system_close.png b/resources/images/system_close.png old mode 100644 new mode 100755 diff --git a/resources/images/system_contribute.png b/resources/images/system_contribute.png old mode 100644 new mode 100755 diff --git a/resources/images/system_exit.png b/resources/images/system_exit.png old mode 100644 new mode 100755 diff --git a/resources/images/system_help_contents.png b/resources/images/system_help_contents.png old mode 100644 new mode 100755 diff --git a/resources/images/system_live.png b/resources/images/system_live.png old mode 100644 new mode 100755 diff --git a/resources/images/system_mediamanager.png b/resources/images/system_mediamanager.png old mode 100644 new mode 100755 diff --git a/resources/images/system_preview.png b/resources/images/system_preview.png old mode 100644 new mode 100755 diff --git a/resources/images/system_servicemanager.png b/resources/images/system_servicemanager.png old mode 100644 new mode 100755 diff --git a/resources/images/system_settings.png b/resources/images/system_settings.png old mode 100644 new mode 100755 diff --git a/resources/images/system_thememanager.png b/resources/images/system_thememanager.png old mode 100644 new mode 100755 diff --git a/resources/images/theme_delete.png b/resources/images/theme_delete.png old mode 100644 new mode 100755 diff --git a/resources/images/theme_edit.png b/resources/images/theme_edit.png old mode 100644 new mode 100755 diff --git a/resources/images/theme_export.png b/resources/images/theme_export.png old mode 100644 new mode 100755 diff --git a/resources/images/theme_import.png b/resources/images/theme_import.png old mode 100644 new mode 100755 diff --git a/resources/images/theme_new.png b/resources/images/theme_new.png old mode 100644 new mode 100755 diff --git a/resources/images/tools_add.png b/resources/images/tools_add.png old mode 100644 new mode 100755 diff --git a/resources/images/tools_alert.png b/resources/images/tools_alert.png old mode 100644 new mode 100755 diff --git a/resources/images/topic_add.png b/resources/images/topic_add.png old mode 100644 new mode 100755 diff --git a/resources/images/topic_delete.png b/resources/images/topic_delete.png old mode 100644 new mode 100755 diff --git a/resources/images/topic_edit.png b/resources/images/topic_edit.png old mode 100644 new mode 100755 diff --git a/resources/images/topic_maintenance.png b/resources/images/topic_maintenance.png old mode 100644 new mode 100755 diff --git a/resources/images/video_delete.png b/resources/images/video_delete.png old mode 100644 new mode 100755 diff --git a/resources/images/video_load.png b/resources/images/video_load.png old mode 100644 new mode 100755 diff --git a/resources/images/wizard_importbible.bmp b/resources/images/wizard_importbible.bmp old mode 100644 new mode 100755 diff --git a/resources/images/wizard_importsong.bmp b/resources/images/wizard_importsong.bmp old mode 100644 new mode 100755 diff --git a/resources/innosetup/LICENSE.txt b/resources/innosetup/LICENSE.txt old mode 100644 new mode 100755 diff --git a/resources/innosetup/OpenLP-2.0.iss b/resources/innosetup/OpenLP-2.0.iss old mode 100644 new mode 100755 diff --git a/resources/innosetup/OpenLP.ico b/resources/innosetup/OpenLP.ico old mode 100644 new mode 100755 diff --git a/resources/innosetup/OpenLP.reg b/resources/innosetup/OpenLP.reg old mode 100644 new mode 100755 diff --git a/resources/innosetup/openlp.conf b/resources/innosetup/openlp.conf old mode 100644 new mode 100755 diff --git a/resources/openlp.desktop b/resources/openlp.desktop old mode 100644 new mode 100755 diff --git a/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py b/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py old mode 100644 new mode 100755 diff --git a/resources/pyinstaller/hook-openlp.py b/resources/pyinstaller/hook-openlp.py old mode 100644 new mode 100755 diff --git a/resources/songs/songs.sqlite b/resources/songs/songs.sqlite old mode 100644 new mode 100755 diff --git a/resources/videos/AspectRatioTest-16-9-ana.h264.mp4 b/resources/videos/AspectRatioTest-16-9-ana.h264.mp4 old mode 100644 new mode 100755 diff --git a/resources/videos/AspectRatioTest-16-9-squ.h264.mp4 b/resources/videos/AspectRatioTest-16-9-squ.h264.mp4 old mode 100644 new mode 100755 diff --git a/resources/videos/AspectRatioTest-16-9-squ.xvid.avi b/resources/videos/AspectRatioTest-16-9-squ.xvid.avi old mode 100644 new mode 100755 diff --git a/resources/videos/AspectRatioTest-4-3-ana.h264.mp4 b/resources/videos/AspectRatioTest-4-3-ana.h264.mp4 old mode 100644 new mode 100755 diff --git a/resources/videos/AspectRatioTest-4-3-squ.h264.mp4 b/resources/videos/AspectRatioTest-4-3-squ.h264.mp4 old mode 100644 new mode 100755 diff --git a/resources/videos/AspectRatioTest-4-3-squ.xvid.avi b/resources/videos/AspectRatioTest-4-3-squ.xvid.avi old mode 100644 new mode 100755 diff --git a/resources/videos/AspectRatioTest-rand-squ.h264.mp4 b/resources/videos/AspectRatioTest-rand-squ.h264.mp4 old mode 100644 new mode 100755 diff --git a/resources/videos/left-720.png b/resources/videos/left-720.png old mode 100644 new mode 100755 diff --git a/resources/videos/normal-720.png b/resources/videos/normal-720.png old mode 100644 new mode 100755 diff --git a/resources/videos/right-720.png b/resources/videos/right-720.png old mode 100644 new mode 100755 diff --git a/resources/videos/synctest.24.avs b/resources/videos/synctest.24.avs old mode 100644 new mode 100755 diff --git a/resources/videos/synctest.24.muxed.avi b/resources/videos/synctest.24.muxed.avi old mode 100644 new mode 100755 diff --git a/resources/videos/synctest.24.muxed.mp4 b/resources/videos/synctest.24.muxed.mp4 old mode 100644 new mode 100755 diff --git a/resources/videos/synctest.25.avs b/resources/videos/synctest.25.avs old mode 100644 new mode 100755 diff --git a/resources/videos/synctest.25.muxed.avi b/resources/videos/synctest.25.muxed.avi old mode 100644 new mode 100755 diff --git a/resources/videos/synctest.30.avs b/resources/videos/synctest.30.avs old mode 100644 new mode 100755 diff --git a/resources/videos/synctest.30.muxed.avi b/resources/videos/synctest.30.muxed.avi old mode 100644 new mode 100755 diff --git a/resources/videos/synctest.30.small.avs b/resources/videos/synctest.30.small.avs old mode 100644 new mode 100755 diff --git a/resources/videos/synctest.30.small.muxed.avi b/resources/videos/synctest.30.small.muxed.avi old mode 100644 new mode 100755 diff --git a/resources/videos/synctest.avsi b/resources/videos/synctest.avsi old mode 100644 new mode 100755 diff --git a/scripts/resources.patch b/scripts/resources.patch old mode 100644 new mode 100755 diff --git a/scripts/windows-builder.py b/scripts/windows-builder.py old mode 100644 new mode 100755