diff --git a/HelpersLib/Links.cs b/HelpersLib/Links.cs index 2236b4230f1..f79338a3c98 100644 --- a/HelpersLib/Links.cs +++ b/HelpersLib/Links.cs @@ -27,7 +27,7 @@ namespace HelpersLib { public static class Links { - public const string URL_WEBSITE = "http://www.getsharex.com"; + public const string URL_WEBSITE = "http://getsharex.com"; public const string URL_PROJECT = "https://github.com/ShareX/ShareX"; public const string URL_ISSUES = "https://github.com/ShareX/ShareX/issues"; public const string URL_CALLBACK = URL_WEBSITE + "/callback/"; diff --git a/ShareX/Properties/AssemblyInfo.cs b/ShareX/Properties/AssemblyInfo.cs index 17db1a15d0f..fadf92a7743 100644 --- a/ShareX/Properties/AssemblyInfo.cs +++ b/ShareX/Properties/AssemblyInfo.cs @@ -11,5 +11,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("82E6AC09-0FEF-4390-AD9F-0DD3F5561EFC")] -[assembly: AssemblyVersion("9.1.0")] -[assembly: AssemblyFileVersion("9.1.0")] \ No newline at end of file +[assembly: AssemblyVersion("9.2.0")] +[assembly: AssemblyFileVersion("9.2.0")] \ No newline at end of file diff --git a/UploadersLib/FileUploaders/Copy.cs b/UploadersLib/FileUploaders/Copy.cs index 840bc4eafe6..e552c689641 100644 --- a/UploadersLib/FileUploaders/Copy.cs +++ b/UploadersLib/FileUploaders/Copy.cs @@ -71,7 +71,10 @@ public Copy(OAuthInfo oauth, CopyAccountInfo accountInfo) // https://developers.copy.com/console public string GetAuthorizationURL() { - return GetAuthorizationURL(URLRequestToken, URLAuthorize, AuthInfo, new Dictionary { { "oauth_callback", Links.URL_CALLBACK } }); + Dictionary args = new Dictionary(); + args.Add("oauth_callback", Links.URL_CALLBACK); + + return GetAuthorizationURL(URLRequestToken, URLAuthorize, AuthInfo, args); } public bool GetAccessToken(string verificationCode = null) diff --git a/VersionHistory.txt b/VersionHistory.txt index db1aa393daa..8da94be8ef1 100644 --- a/VersionHistory.txt +++ b/VersionHistory.txt @@ -1,22 +1,22 @@ -ShareX 9.2.0 - 2014-07-08 +ShareX 9.2.0 - 2014-07-15 * Main window menu changes to simplify UI * Automatic show/hide image preview in main window -* Added support to share URL to Facebook, Google+, VK, Reddit, Pinterest and Delicious via web browser -* Share URL and Shorten URL context menu items for tasks in main window +* Added support to share URL to Email, Twitter, Facebook, Google+, Reddit, Pinterest, Tumblr, LinkedIn, StumbleUpon, Delicious and VK via web browser +* Shorten URL and Share URL context menu for tasks in main window * Google Drive file uploader enhancements (title and folder support) * Twitter image upload support * ownCloud file uploader support * nl.cm URL shortener support +* adf.ly URL shortener support (thanks @LRNAB) * bit.ly custom domain support * Support to Upload from URL -* Added Rectangle (Annotate) to capture menu which will alow drawing in rectangle capture +* Added Rectangle (Annotate) to capture menu which will allow annotations during rectangle capture * Screen recording improvements (timer and stop button under region) * Task setting to disable Aero while screen recording * Ability to customize URL format when automatically opening the URL * Better stop upload mechanism (ability to stop stuck uploads) * Added Tweet Message to Tools menu with hotkey support -* ImageShack image uploader changes (better error handling, removed anonymous support) ShareX 9.1.0 - 2014-06-11 @@ -28,16 +28,15 @@ ShareX 9.1.0 - 2014-06-11 * Videos recorded using FFmpeg will no longer play faster when framerate drops * Destinations settings window use list tab view now * Added gfycat.com file uploader support (thanks @Dinnerbone) -* Added new Capture menu item and hotkey "Rectangle (Light)" which is lightweight version of Rectangle capture for slower computers +* Added new Capture menu item and hotkey “Rectangle (Light)” which is lightweight version of Rectangle capture for slower computers * Custom domain support for Amazon S3 * Added help button to FFmpeg which opens up the documentation web page * Drag-and-drop box now supports image and text too * Using System.Net.FtpClient library for FTP/FTPS * Added an error window for FFmpeg incase recording or encoding fails -* Added "Open URL" to After Upload tasks -* Added "Show QR code window" to After Upload tasks, Tools menu and right click menu in main window +* Added QR code generator to After Upload tasks, Tools menu and right click menu in main window * Hotkey task settings are now shown as Workflows in main window and tray menu -* Added version history link to About window +* Added version history link to ‘about’ window ShareX 9.0.0 - 2014-05-16 @@ -277,4 +276,4 @@ http://zscreen.googlecode.com/svn/trunk/ZUploader/Docs/VersionHistory.txt ZScreen 1.x to 4.x -http://zscreen.googlecode.com/svn/trunk/ZScreenLib/Documents/VersionHistory.txt +http://zscreen.googlecode.com/svn/trunk/ZScreenLib/Documents/VersionHistory.txt \ No newline at end of file