Skip to content
Snippets Groups Projects
Commit b4dc46c5 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Updated for v3.20b

Renamed output file setup.exe to install_SBBS_v*.exe because InnoSetup
Warning: Setting the [Setup] section "OutputBaseFileName" to "setup" is not
recommended, all executables named "setup.exe" are shimmed by Windows
application compatibility to load additional DLLs, such as version.dll. These
DLLs are loaded unsafely by Windows and can be hijacked. Use a different name,
for example "mysetup".
parent 8087584a
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
......@@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "Synchronet BBS Software"
#define MyAppVersion "3.19b"
#define MyAppVersion "3.20b"
#define MyAppPublisher "Rob Swindell"
#define MyAppURL "http://www.synchro.net/"
#define MyAppSupportURL "http://wiki.synchro.net/howto:support"
......@@ -10,7 +10,7 @@
#define MyAppExeName "sbbsctrl.exe"
#define sbbsCtrlPanel "Synchronet Control Panel"
#define release "release"
#define source "e:\sbbs"
#define source "c:\sbbs"
[Setup]
; NOTE: The value of AppId uniquely identifies this application.
......@@ -24,15 +24,15 @@ AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppSupportURL}
AppUpdatesURL={#MyAppDownloadURL}
AppCopyright=Copyright 2022 {#MyAppPublisher}
VersionInfoVersion=3.19.1
AppCopyright=Copyright 2024 {#MyAppPublisher}
VersionInfoVersion=3.20.1
AppMutex=sbbs_running,sbbsctrl_running
DefaultDirName={sd}\sbbs
DefaultGroupName={#MyAppName}
DisableProgramGroupPage=yes
AllowNoIcons=yes
; OutputDir=.
OutputBaseFilename=setup
OutputBaseFilename=install_SBBS_v{#MyAppVersion}
Compression=lzma
SolidCompression=yes
MinVersion = 5.1
......@@ -77,10 +77,10 @@ Source: "s:\sbbs\exec\user.com"; DestDir: "{app}\ex
Source: "s:\sbbs\exec\mlabels.exe"; DestDir: "{app}\exec"; Flags: ignoreversion
Source: "s:\sbbs\exec\svdmansi.com"; DestDir: "{app}\exec"; Flags: ignoreversion
Source: "s:\sbbs\exec\dosxtrn.exe"; DestDir: "{app}\exec"; Flags: ignoreversion
Source: "node1\node.cnf"; DestDir: "{app}\node1"; Flags: ignoreversion
Source: "node1\node.cnf"; DestDir: "{app}\node2"; Flags: ignoreversion
Source: "node1\node.cnf"; DestDir: "{app}\node3"; Flags: ignoreversion
Source: "node1\node.cnf"; DestDir: "{app}\node4"; Flags: ignoreversion
Source: "node1\node.ini"; DestDir: "{app}\node1"; Flags: ignoreversion
Source: "node1\node.ini"; DestDir: "{app}\node2"; Flags: ignoreversion
Source: "node1\node.ini"; DestDir: "{app}\node3"; Flags: ignoreversion
Source: "node1\node.ini"; DestDir: "{app}\node4"; Flags: ignoreversion
Source: "exec\*"; DestDir: "{app}\exec"; Flags: ignoreversion recursesubdirs createallsubdirs; Excludes: "baja.js,menu.js,sbbsedit.js,jsdocs.js,testbuild.js,load\menulib.js"
Source: "ctrl\*"; DestDir: "{app}\ctrl"; Flags: ignoreversion recursesubdirs createallsubdirs; Excludes: "*.?.cnf,*.?.ini"
Source: "text\*"; DestDir: "{app}\text"; Flags: ignoreversion recursesubdirs createallsubdirs; Excludes: "*.0??.*,.gitignore"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment