From 8940ca6833e7d520ed7dd9891c2c97482bba41b3 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Tue, 30 Apr 2019 23:21:19 -0700 Subject: [PATCH] Update service icon file name, and copy it into the dist directory as well --- builders/windows-builder.py | 2 ++ windows/file-associations.xml | 2 +- windows/{service-file.ico => service_file.ico} | Bin 3 files changed, 3 insertions(+), 1 deletion(-) rename windows/{service-file.ico => service_file.ico} (100%) diff --git a/builders/windows-builder.py b/builders/windows-builder.py index 9351b88..28e30dd 100644 --- a/builders/windows-builder.py +++ b/builders/windows-builder.py @@ -390,6 +390,8 @@ class WindowsBuilder(Builder): copy(self.icon_path, os.path.join(self.dist_path, 'OpenLP.ico')) self._print_verbose('... LICENSE.txt') copy(self.license_path, os.path.join(self.dist_path, 'LICENSE.txt')) + self._print_verbose('... service_file.ico') + copy(self.icon_path, os.path.join(self.dist_path, 'service_file.ico')) if os.path.isfile(os.path.join(self.helpfile_path, 'OpenLP.chm')): self._print_verbose('... OpenLP.chm') copy(os.path.join(self.helpfile_path, 'OpenLP.chm'), os.path.join(self.dist_path, 'OpenLP.chm')) diff --git a/windows/file-associations.xml b/windows/file-associations.xml index 40cf8fc..e5913d9 100644 --- a/windows/file-associations.xml +++ b/windows/file-associations.xml @@ -1,4 +1,4 @@ - + diff --git a/windows/service-file.ico b/windows/service_file.ico similarity index 100% rename from windows/service-file.ico rename to windows/service_file.ico