mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
64 lines
2.7 KiB
Plaintext
64 lines
2.7 KiB
Plaintext
#filter substitution
|
|
|
|
# Win7: AppVendor, AppName, and AppVersion must match the application.ini values
|
|
# of Vendor, Name, and Version. These values are used in registering shortcuts
|
|
# with the taskbar. ExplicitAppUserModelID registration when the app launches is
|
|
# handled in widget/src/windows/WinTaskbar.cpp.
|
|
|
|
!define AppVendor "Mozilla"
|
|
!define AppName "Firefox"
|
|
!define AppVersion "@APP_VERSION@"
|
|
!define AppUserModelID "${AppVendor}.${AppName}.${AppVersion}"
|
|
!define GREVersion @MOZILLA_VERSION@
|
|
!define AB_CD "@AB_CD@"
|
|
|
|
!define FileMainEXE "@MOZ_APP_NAME@.exe"
|
|
!define WindowClass "FirefoxMessageWindow"
|
|
!define DDEApplication "Firefox"
|
|
!define AppRegName "Firefox"
|
|
|
|
!define BrandShortName "@MOZ_APP_DISPLAYNAME@"
|
|
!define PreReleaseSuffix "@PRE_RELEASE_SUFFIX@"
|
|
!define BrandFullName "${BrandFullNameInternal}${PreReleaseSuffix}"
|
|
|
|
# LSP_CATEGORIES is the permitted LSP categories for the application. Each LSP
|
|
# category value is ANDed together to set multiple permitted categories.
|
|
# See http://msdn.microsoft.com/en-us/library/ms742253%28VS.85%29.aspx
|
|
# The value below permits the LSP_INSPECTOR, LSP_REDIRECTOR, LSP_PROXY,
|
|
# LSP_FIREWALL, LSP_INBOUND_MODIFY, LSP_OUTBOUND_MODIFY, LSP_CRYPTO_COMPRESS,
|
|
# and LSP_LOCAL_CACHE LSP categories.
|
|
!define LSP_CATEGORIES "0x000000ff"
|
|
|
|
# NO_INSTDIR_FROM_REG is defined for pre-releases which have a PreReleaseSuffix
|
|
# (e.g. Alpha X, Beta X, etc.) to prevent finding a non-default installation
|
|
# directory in the registry and using that as the default. This prevents
|
|
# Beta releases built with official branding from finding an existing install
|
|
# of an official release and defaulting to its installation directory.
|
|
!if "@PRE_RELEASE_SUFFIX@" != ""
|
|
!define NO_INSTDIR_FROM_REG
|
|
!endif
|
|
|
|
# ARCH is used when it is necessary to differentiate the x64 registry keys from
|
|
# the x86 registry keys (e.g. the uninstall registry key).
|
|
#ifdef HAVE_64BIT_OS
|
|
!define HAVE_64BIT_OS
|
|
!define ARCH "x64"
|
|
!define MinSupportedVer "Microsoft Windows Vista x64"
|
|
#else
|
|
!define ARCH "x86"
|
|
!define MinSupportedVer "Microsoft Windows 2000"
|
|
#endif
|
|
|
|
# File details shared by both the installer and uninstaller
|
|
VIProductVersion "1.0.0.0"
|
|
VIAddVersionKey "ProductName" "${BrandShortName}"
|
|
VIAddVersionKey "CompanyName" "${CompanyName}"
|
|
#ifdef MOZ_OFFICIAL_BRANDING
|
|
VIAddVersionKey "LegalTrademarks" "${BrandShortName} is a Trademark of The Mozilla Foundation."
|
|
#endif
|
|
VIAddVersionKey "LegalCopyright" "${CompanyName}"
|
|
VIAddVersionKey "FileVersion" "${AppVersion}"
|
|
VIAddVersionKey "ProductVersion" "${AppVersion}"
|
|
# Comments is not used but left below commented out for future reference
|
|
# VIAddVersionKey "Comments" "Comments"
|