Skip to content

Commit a640d68

Browse files
2.2.0.12 - Fixed bug with JPEG quality
1 parent ddd3b47 commit a640d68

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("2.2.0.11")]
36-
[assembly: AssemblyFileVersion("2.2.0.11")]
35+
[assembly: AssemblyVersion("2.2.0.12")]
36+
[assembly: AssemblyFileVersion("2.2.0.12")]
3737
[assembly: NeutralResourcesLanguageAttribute("en-CA")]

ScreenCapture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ private void SaveToFile(string path, ImageFormat format, int jpegQuality, Bitma
344344
{
345345
if (bitmap != null && format != null && !string.IsNullOrEmpty(path))
346346
{
347-
if (format.Name.Equals(ImageFormatSpec.EXTENSION_JPEG))
347+
if (format.Name.Equals(ImageFormatSpec.NAME_JPEG))
348348
{
349349
var encoderParams = new EncoderParameters(1);
350350
encoderParams.Param[0] = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, jpegQuality);

app.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<assemblyIdentity
44
type="win32"
55
name="GavinKendall.AutoScreenCapture"
6-
version="2.2.0.11"/>
6+
version="2.2.0.12"/>
77
<asmv3:application>
88
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
99
<dpiAware>True/PM</dpiAware>

settings/Settings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace AutoScreenCapture
1313
public static class Settings
1414
{
1515
public static readonly string ApplicationName = "Auto Screen Capture";
16-
public static readonly string ApplicationVersion = "2.2.0.11";
16+
public static readonly string ApplicationVersion = "2.2.0.12";
1717
public static readonly string ApplicationCodename = "Dalek";
1818

1919
public static SettingCollection Application;

0 commit comments

Comments
 (0)