Undo supporting image quality in ImageShack

If users have JPEG as the file type, thumbnails could have severe
degradation of quality
This commit is contained in:
mcored 2014-01-12 21:05:21 +08:00
parent 4ebe70578a
commit 2ce0cf5c51
3 changed files with 1 additions and 3 deletions

View file

@ -1,11 +1,11 @@
ShareX 8.5 - 2014-01-25
* Added new tool to test the screen for backlight bleeding and dead pixels
* Updated ImageShack uploader to support their latest API
* Added MediaCrush image uploader support (thanks Drew DeVault)
* Added option for toast notifications
* Added bit.ly user account support
* Added UI support to modify personal path
* Added new tool to test the monitor for backlight bleeding and dead pixels
ShareX 8.4.1 - 2013-12-05

View file

@ -554,7 +554,6 @@ public UploadResult UploadImage(Stream stream, string fileName)
case ImageDestination.ImageShack:
Program.UploadersConfig.ImageShackSettings.ThumbnailWidth = Info.TaskSettings.AdvancedSettings.ThumbnailPreferredWidth;
Program.UploadersConfig.ImageShackSettings.ThumbnailHeight = Info.TaskSettings.AdvancedSettings.ThumbnailPreferredHeight;
Program.UploadersConfig.ImageShackSettings.ThumbnailQuality = Info.TaskSettings.ImageSettings.ImageJPEGQuality;
imageUploader = new ImageShackUploader(ApiKeys.ImageShackKey, Program.UploadersConfig.ImageShackSettings);
break;
case ImageDestination.TinyPic:

View file

@ -200,6 +200,5 @@ public class ImageShackOptions
public string Auth_token { get; set; }
public int ThumbnailWidth { get; set; }
public int ThumbnailHeight { get; set; }
public int ThumbnailQuality { get; set; }
}
}