summaryrefslogtreecommitdiffstats
path: root/docs/release/scripts/build/verinfo.py
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2018-02-01 01:13:16 +1100
committer Robbbert <Robbbert@users.noreply.github.com>2018-02-01 01:13:16 +1100
commit73ce78f7b4d4c1ff8ed36f6fef61fc00a2e9135e (patch)
tree7a50841459d42fee5739652092d6629870f81e3e /docs/release/scripts/build/verinfo.py
parent6488544820bbf9bc96bd2f29bbc0a8b7c0b246fa (diff)
0.193 Release filestag193
Diffstat (limited to 'docs/release/scripts/build/verinfo.py')
-rw-r--r--docs/release/scripts/build/verinfo.py21
1 files changed, 16 insertions, 5 deletions
diff --git a/docs/release/scripts/build/verinfo.py b/docs/release/scripts/build/verinfo.py
index c294df827aa..3437288b447 100644
--- a/docs/release/scripts/build/verinfo.py
+++ b/docs/release/scripts/build/verinfo.py
@@ -85,29 +85,40 @@ if dstfile is not None:
else:
fp = sys.stdout
+legal_copyright = "Copyright Nicola Salmoria and the MAME team"
+
if build == "mess":
# MESS
author = "MESS Team"
comments = "Multi Emulation Super System"
company_name = "MESS Team"
- file_description = "Multi Emulation Super System"
+ file_description = "MESS"
internal_name = "MESS"
original_filename = "MESS"
product_name = "MESS"
bundle_identifier = "org.mamedev.mess"
+elif build == "hbmame":
+ # HBMAME
+ author = "Robbbert and the MAME team"
+ legal_copyright = author
+ comments = "Homebrew MAME"
+ company_name = "MAME Team"
+ file_description = "HBMAME"
+ internal_name = "HBMAME"
+ original_filename = "HBMAME"
+ product_name = "HBMAME"
+ bundle_identifier = "org.mamedev.hbmame"
else:
# MAME
author = "Nicola Salmoria and the MAME Team"
- comments = "Multiple Arcade Machine Emulator"
+ comments = "Multi-purpose emulation framework"
company_name = "MAME Team"
- file_description = "Multiple Arcade Machine Emulator"
+ file_description = "MAME"
internal_name = "MAME" if build == "mame" else build
original_filename = "MAME" if build == "mame" else build
product_name = "MAME" if build == "mame" else build
bundle_identifier = "org.mamedev." + build
-legal_copyright = "Copyright Nicola Salmoria and the MAME team"
-
if outfmt == 'rc':
fp.write('VS_VERSION_INFO VERSIONINFO\n')
fp.write('\tFILEVERSION %s,%s,%s,%s\n' % (version_major, version_minor, version_build, version_subbuild))