Skip to content

Commit

Permalink
Preparation for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaex committed Jul 4, 2015
1 parent 2b0277c commit a9b2eb1
Show file tree
Hide file tree
Showing 7 changed files with 177 additions and 452 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define AppName "Screen Capture Recorder"
#define AppName "Recorder Devices for ShareX"
#define AppVersion "0.12.8"

[Setup]
Expand All @@ -9,7 +9,7 @@ Compression=lzma2/ultra64
DefaultDirName={pf}\{#AppName}
DefaultGroupName={#AppName}
DirExistsWarning=no
OutputBaseFilename={#AppName} setup
OutputBaseFilename=Recorder-devices-setup
OutputDir=Output\
SolidCompression=true

Expand Down
2 changes: 1 addition & 1 deletion InnoSetup/ShareX setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Source: "{#MyAppParentDir}\ShareX.exe.config"; DestDir: {app}; Flags: ignorevers
Source: "{#MyAppParentDir}\*.dll"; DestDir: {app}; Flags: ignoreversion
Source: "{#MyAppParentDir}\*.css"; DestDir: {app}; Flags: ignoreversion
Source: "{#MyAppParentDir}\*.txt"; DestDir: {app}; Flags: ignoreversion
Source: "Output\Screen Capture Recorder setup.exe"; DestDir: {app}; Flags: ignoreversion
Source: "Output\Recorder-devices-setup.exe"; DestDir: {app}; Flags: ignoreversion

; Language resources
Source: "{#MyAppParentDir}\tr\*.resources.dll"; DestDir: {app}\Languages\tr; Flags: ignoreversion
Expand Down
2 changes: 1 addition & 1 deletion ShareX.ScreenCaptureLib/Screencast/FFmpegHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class FFmpegHelper : ExternalCLIManager
public const string SourceGDIGrab = "GDI grab";
public const string SourceVideoDevice = "screen-capture-recorder";
public const string SourceAudioDevice = "virtual-audio-capturer";
public const string DeviceSetupPath = "Screen Capture Recorder setup.exe";
public const string DeviceSetupPath = "Recorder-devices-setup.exe";

public const int libmp3lame_qscale_end = 9;

Expand Down
4 changes: 4 additions & 0 deletions ShareX.ScreenCaptureLib/Screencast/FFmpegOptionsForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,10 @@ private void btnInstallHelperDevices_Click(object sender, EventArgs e)
catch { }
});
}
else
{
MessageBox.Show("File not exists: \"" + filepath + "\"", "ShareX", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}

private void btnHelperDevicesHelp_Click(object sender, EventArgs e)
Expand Down
Loading

0 comments on commit a9b2eb1

Please sign in to comment.