parent
474f5f29ca
commit
d606144e00
|
@ -1,5 +1,8 @@
|
||||||
REM SET SONARR_VERSION=1
|
@REM SET SONARR_MAJOR_VERSION=4
|
||||||
REM SET BRANCH=develop
|
@REM SET SONARR_VERSION=4.0.0.5
|
||||||
|
@REM SET BRANCH=develop
|
||||||
|
@REM SET FRAMEWORK=net6.0
|
||||||
|
@REM SET RUNTIME=win-x64
|
||||||
echo ##teamcity[progressStart 'Building setup file']
|
echo ##teamcity[progressStart 'Building setup file']
|
||||||
inno\ISCC.exe sonarr.iss
|
inno\ISCC.exe sonarr.iss
|
||||||
echo ##teamcity[progressFinish 'Building setup file']
|
echo ##teamcity[progressFinish 'Building setup file']
|
||||||
|
|
|
@ -6,8 +6,9 @@
|
||||||
#define AppURL "https://sonarr.tv/"
|
#define AppURL "https://sonarr.tv/"
|
||||||
#define ForumsURL "https://forums.sonarr.tv/"
|
#define ForumsURL "https://forums.sonarr.tv/"
|
||||||
#define AppExeName "Sonarr.exe"
|
#define AppExeName "Sonarr.exe"
|
||||||
#define BuildNumber "3.0"
|
#define BuildNumber "4.0"
|
||||||
#define BuildNumber GetEnv('SONARR_VERSION')
|
#define BuildNumber GetEnv('SONARR_VERSION')
|
||||||
|
#define MajorVersion GetEnv('SONARR_MAJOR_VERSION')
|
||||||
#define BranchName GetEnv('BRANCH')
|
#define BranchName GetEnv('BRANCH')
|
||||||
#define Framework GetEnv('FRAMEWORK')
|
#define Framework GetEnv('FRAMEWORK')
|
||||||
#define Runtime GetEnv('RUNTIME')
|
#define Runtime GetEnv('RUNTIME')
|
||||||
|
@ -18,7 +19,7 @@
|
||||||
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
|
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
|
||||||
AppId={{56C1065D-3523-4025-B76D-6F73F67F7F71}
|
AppId={{56C1065D-3523-4025-B76D-6F73F67F7F71}
|
||||||
AppName={#AppName}
|
AppName={#AppName}
|
||||||
AppVersion={#BuildNumber}
|
AppVersion={#MajorVersion}
|
||||||
AppPublisher={#AppPublisher}
|
AppPublisher={#AppPublisher}
|
||||||
AppPublisherURL={#AppURL}
|
AppPublisherURL={#AppURL}
|
||||||
AppSupportURL={#ForumsURL}
|
AppSupportURL={#ForumsURL}
|
||||||
|
@ -37,9 +38,10 @@ DisableReadyPage=True
|
||||||
CompressionThreads=2
|
CompressionThreads=2
|
||||||
Compression=lzma2/normal
|
Compression=lzma2/normal
|
||||||
AppContact={#ForumsURL}
|
AppContact={#ForumsURL}
|
||||||
VersionInfoVersion={#BuildNumber}
|
VersionInfoVersion={#MajorVersion}
|
||||||
SetupLogging=yes
|
SetupLogging=yes
|
||||||
OutputDir=output
|
OutputDir=output
|
||||||
|
AppverName={#AppName}
|
||||||
|
|
||||||
[Languages]
|
[Languages]
|
||||||
Name: "english"; MessagesFile: "compiler:Default.isl"
|
Name: "english"; MessagesFile: "compiler:Default.isl"
|
||||||
|
|
Loading…
Reference in New Issue