Skip to content

Commit a9b2eb1

Browse files
committed
Preparation for release
1 parent 2b0277c commit a9b2eb1

7 files changed

Lines changed: 177 additions & 452 deletions

File tree

InnoSetup/Screen Capture Recorder setup.iss renamed to InnoSetup/Recorder devices setup.iss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#define AppName "Screen Capture Recorder"
1+
#define AppName "Recorder Devices for ShareX"
22
#define AppVersion "0.12.8"
33

44
[Setup]
@@ -9,7 +9,7 @@ Compression=lzma2/ultra64
99
DefaultDirName={pf}\{#AppName}
1010
DefaultGroupName={#AppName}
1111
DirExistsWarning=no
12-
OutputBaseFilename={#AppName} setup
12+
OutputBaseFilename=Recorder-devices-setup
1313
OutputDir=Output\
1414
SolidCompression=true
1515

InnoSetup/ShareX setup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Source: "{#MyAppParentDir}\ShareX.exe.config"; DestDir: {app}; Flags: ignorevers
5858
Source: "{#MyAppParentDir}\*.dll"; DestDir: {app}; Flags: ignoreversion
5959
Source: "{#MyAppParentDir}\*.css"; DestDir: {app}; Flags: ignoreversion
6060
Source: "{#MyAppParentDir}\*.txt"; DestDir: {app}; Flags: ignoreversion
61-
Source: "Output\Screen Capture Recorder setup.exe"; DestDir: {app}; Flags: ignoreversion
61+
Source: "Output\Recorder-devices-setup.exe"; DestDir: {app}; Flags: ignoreversion
6262

6363
; Language resources
6464
Source: "{#MyAppParentDir}\tr\*.resources.dll"; DestDir: {app}\Languages\tr; Flags: ignoreversion

ShareX.ScreenCaptureLib/Screencast/FFmpegHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class FFmpegHelper : ExternalCLIManager
4040
public const string SourceGDIGrab = "GDI grab";
4141
public const string SourceVideoDevice = "screen-capture-recorder";
4242
public const string SourceAudioDevice = "virtual-audio-capturer";
43-
public const string DeviceSetupPath = "Screen Capture Recorder setup.exe";
43+
public const string DeviceSetupPath = "Recorder-devices-setup.exe";
4444

4545
public const int libmp3lame_qscale_end = 9;
4646

ShareX.ScreenCaptureLib/Screencast/FFmpegOptionsForm.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,10 @@ private void btnInstallHelperDevices_Click(object sender, EventArgs e)
211211
catch { }
212212
});
213213
}
214+
else
215+
{
216+
MessageBox.Show("File not exists: \"" + filepath + "\"", "ShareX", MessageBoxButtons.OK, MessageBoxIcon.Error);
217+
}
214218
}
215219

216220
private void btnHelperDevicesHelp_Click(object sender, EventArgs e)

0 commit comments

Comments
 (0)