Commit graph

1472 commits

Author SHA1 Message Date
Jaex
d3fb5ac7bd Architecture change to make it easier to add a new uploader, using it on Imgur for now 2016-03-21 22:26:47 +02:00
Tiago Danin
1377f5b7d6 FIX translation 2016-03-20 19:14:59 -03:00
Jaex
da2b593d00 NuGet update 2016-03-20 17:37:40 +02:00
Jaex
75d59c5a8c Few small ApplicationInstanceManager changes 2016-03-20 12:44:20 +02:00
Jaex
ef6eb94e28 Moved ApplicationInstanceManager outside folder 2016-03-20 12:27:47 +02:00
Jaex
f7cb8228a6 All window titles starts with "ShareX - " now, Turkish translation 100% 2016-03-19 17:40:59 +02:00
Jaex
a04d10c05c fixed #1416: Added raw URL support to GitHub Gist 2016-03-18 14:08:24 +02:00
Jaex
e5788da81e fixed #1399: Added "runas" back to updater 2016-03-18 11:04:48 +02:00
Jaex
b6e25d7e07 Few ApplicationInstanceManager changes 2016-03-18 02:10:56 +02:00
Jaex
f23202d7ff Single instance code moved to ApplicationInstanceManager class 2016-03-17 11:03:08 +02:00
Jaex
6a992a0857 fixed #1400: Added AcceptInvalidSSLCertificates option to Application settings -> Advanced tab which can be used by people who using self signed certificates 2016-03-14 03:10:19 +02:00
Jaex
ee151f466e Merge pull request #1406 from campbeb/greenshot_update
Update Greenshot to latest version
2016-03-13 20:45:12 +02:00
Brian
ee88e25b2f Update Greenshot to latest version
Greenshot updated from 1.2 branch at commit
e9ab99c5acc99785cc5045b4b5493c9b6504d016

This solves #1341 and #1079 for allowing support high DPI monitors.
Additionally, the following were implemented:
- #748 - Objects can be saved to file and loaded from file via menu
- #676 - Keyboard shortcuts added for 'Save and close' (Alt+S), 'Close'
(Alt+W), and 'Close and cancel tasks' (Alt+C)
- #1189 - Editor opens sized to image. Can be disabled via Greenshot ini
with `MatchSizeToCapture=False`
2016-03-13 12:07:53 -04:00
Jaex
6fbe9b5913 Use custom GetFilename method because otherwise "Illegal characters" error can happen 2016-03-12 00:34:56 +02:00
Brian
29e8e739e3 Proper Single Instance Implementation
Reworked single instance code to better handle being launched with
context menu.

Previously:
- On launch, process would try to open an `EventWaitHandle`. If it
didn't exist, then process assumed it was first and created it
- Multiple processes launching at same time would all see the
`EventWaitHandle` did not exist before any process could create it
- This led to multiple instances of program running

Now a mutex is used:
- Processes will all try to open the mutex. Only first one will succeed
- Process that opens the mutex will setup the `EventWaitHandle`
- Other processes won't get the mutex and will be directed to use the
`EventWaitHandle` to pass their command line args to the running
instance
2016-03-10 16:29:01 -05:00
Jaex
3455590ea5 fixed #1388: Added ForceActivate to AfterCapture and BeforeUpload forms shown event 2016-03-09 18:37:54 +02:00
Jaex
6c6ab39cf1 Don't show www. in chevereto or pomf list 2016-03-05 18:23:53 +02:00
Brian
d81558291e Handle multiple context menu selections - Move semaphore release
Current process is as follows:
1. Invoked .exe gets the semaphore
2. Invoked .exe sets `InstanceProxy` values in running exe
3. Invoked .exe causes thread to spawn in running exe
4. New thread in running .exe reads values from `InstanceProxy`
4. Invoked .exe release the semaphore

The problem is that there is no guarantee on how fast new threads in
running .exe will spawn and read values from `InstanceProxy`. This PR
addresses that by moving the semaphore release from the invoked .exe to
the thread spawned in running .exe.
2016-03-04 08:45:03 -05:00
Brian
c21036aa0e Handle multiple context menu selections - Fixes #770
The problem is that multiple context menu selections spawn multiple .exe
(invoked). Each invoked .exe sets the InstanceProxy variables in the
running .exe and tells it to start a thread to process. But, there is no
waiting, so the InstanceProxy variables get clobbered before they can
get used.
This fix uses a semaphore to control the invoked .exe. There is only one
entry allowed forcing invoked .exe to wait until any other invoked .exe
is finished running and releases the semaphore.
2016-03-03 18:57:21 -05:00
Jaex
93a42d1617 Added open image history hotkey 2016-03-03 12:05:59 +02:00
Jaex
323f7ac7e8 Image history performance improvements 2016-03-02 02:02:08 +02:00
Jaex
f21ed81ad3 Resx updates 2016-03-01 12:18:00 +02:00
Jaex
7e957014bd History form layout changes and improvements 2016-03-01 11:03:19 +02:00
Jaex
944fb121f5 fixed #1350: Added checks for every single numeric up down value assigns 2016-02-29 23:09:22 +02:00
Shadorc
92b1e61246 Update French Translation 2016-02-27 16:11:10 +01:00
Jaex
225b7fe3a7 Recent max count changes to fix loading incorrect amount of recent items in main window 2016-02-27 08:37:11 +02:00
Jaex
fa3c84d68c Removed BaseForm.cs because it was causing bug with vs designer resx 2016-02-25 22:55:54 +02:00
Jaex
369be4e154 Fix color picker form color init issue 2016-02-25 02:40:43 +02:00
Jaex
2696430203 Marked some fields as invariant 2016-02-22 18:02:17 +02:00
Michael Delpach
0f17aeeec2 CreateDirectoryFromFilePath
and CreateDirectoryFromDirectoryPath
2016-02-22 07:15:23 +08:00
Jaex
8d34f380ff Revert "CreateDirectoryIfNotExist detects user error"
This reverts commit 29d87cff1a.
2016-02-22 00:30:19 +02:00
Michael Delpach
29d87cff1a CreateDirectoryIfNotExist detects user error 2016-02-22 06:23:44 +08:00
Jaex
5b494bf436 Added open history hotkey 2016-02-21 21:50:49 +02:00
Jaex
8c74b42efc Added lightpics.net 2016-02-21 13:22:36 +02:00
Michael Delpach
a4409c1582 Remove underlining to increase readability 2016-02-21 09:38:14 +08:00
Jaex
86389c63a4 Using link label that way startup folder can be opened 2016-02-20 15:25:11 +02:00
Michael Delpach
98699b0e2a Debug Log shows executable path to avoid scrolling 2016-02-20 16:36:38 +08:00
Jaex
638c9caefa Added open log file button to debug form 2016-02-19 19:33:15 +02:00
Jaex
930f75ea57 Fix clipboard get image problem 2016-02-16 08:22:55 +02:00
Jaex
2963a5f9ef SomeImage fixes 2016-02-15 08:53:30 +02:00
Michael Delpach
90f5accde2 Special folder support for FFmpeg path 2016-02-15 06:16:23 +08:00
Jaex
577fac0ad6 fixed #1267: Removed run as admin from updater 2016-02-12 20:24:24 +02:00
Jaex
cf38ce1b93 Save all settings before export, Load all settings and update controls after import 2016-02-10 23:14:23 +02:00
Jaex
6b6f3fdb7c Added Import function 2016-02-10 21:55:57 +02:00
Jaex
ca8d2aad47 Don't use StartupPath because it will be wrong in some cases 2016-02-10 01:09:56 +02:00
Jaex
5e02df215f Changed quick task info defaults, removed one easter egg 2016-02-06 22:56:48 +02:00
Jaex
7ff74dcdb3 Added quick task menu editor 2016-02-06 20:10:01 +02:00
Jaex
0e36ec75b5 Quick task menu system works now 2016-02-06 18:41:05 +02:00
Alexandre Oliveira
aacb766790 Update Brazilian Portuguese translation 2016-02-05 16:13:14 -02:00
dannoe
4ad0fe3a31 Fixed/Added german translations 2016-02-04 16:12:59 +01:00
Jaex
03c4b68b60 Added directory indexer form 2016-02-02 14:58:34 +02:00
Jaex
c06409ac66 SettingsSaved parameter changes, moved SettingsChanged to TreeGUI project 2016-02-01 16:53:32 +02:00
Michael Delpach
9461880bf9 TriggerSettingsChange 2016-02-01 18:39:51 +08:00
Michael Delpach
746dd2ddcc OnSettingsChanged is now protected 2016-02-01 18:39:29 +08:00
Michael Delpach
7c778ad610 SettingsSavedEventHandler 2016-02-01 06:21:09 +08:00
Michael Delpach
84dd0b8d17 SettingsChangedEventHandler 2016-02-01 06:02:41 +08:00
Michael Delpach
561e914eac EnumerateDirectories
and fix "P:\" becoming "P  "
2016-01-31 14:57:53 +08:00
Michael Delpach
fc8240bb9e GetValidName with separator 2016-01-30 18:10:31 +08:00
L1Q
ca5fbdc211 Updated Russian translation 2016-01-29 12:24:44 +02:00
Jaex
38e8f2ad32 fixed #1271: Flash taskbar for update notification 10 times instead of forever 2016-01-28 13:34:29 +02:00
Jaex
ee0c497f3f SettingsHelper methods moved to SettingsBase 2016-01-28 10:44:46 +02:00
Jaex
ffead0104a When loading setting set FilePath for new SettingsBase 2016-01-28 09:42:39 +02:00
Michael Delpach
df60a0db7e Create directory if not exists when saving settings 2016-01-27 16:20:50 +08:00
Jeffiy
e4da5e85f7 Update chinese translate (part 3)
According to PR#1270
2016-01-21 11:40:29 +08:00
Jeffiy
2e210fcf6a Update chinese translation(part 2) 2016-01-21 10:58:50 +08:00
Jeffiy
d419a33f59 Update chinese translation(part 1) 2016-01-21 10:53:50 +08:00
Jason Underhill
bfb9f86ac1 Added post capture task for opening windows explorer highlighting the screenshot just captured for #1265 2016-01-19 23:11:17 +00:00
Jaex
db93b5a6dc fixed #1261: Properly convert DIB to image 2016-01-18 23:52:47 +02:00
Jaex
ead29ac5fb Added try catch to environment variable functions just in case 2016-01-17 08:58:56 +02:00
Michael Delpach
8a4e57ffc6 Supports all SpecialFolder enums 2016-01-17 04:50:32 +08:00
Jaex
ca9f33a2cd In update message box if no button is clicked then don't check for updates next 24 hours 2016-01-16 17:41:04 +02:00
Michael Delpach
1a6ebc97bf ExpandFolderVariables where ever required 2016-01-16 14:27:15 +08:00
Jaex
3c9f237471 Changed function name 2016-01-16 07:47:57 +02:00
Michael Delpach
ae025adf46 Automatically detect MyPictures shell folder path
More shell folders can be supported later
2016-01-16 12:43:05 +08:00
Scratch
f2b4b8331f Automatically fill QR window with Clipboard Content 2016-01-16 13:12:21 +11:00
Jaex
460c2a0792 NuGet update 2016-01-13 09:07:43 +02:00
Jaex
50539fe861 Extra checks for clipboard 2016-01-13 08:54:36 +02:00
Jaex
dc21a1c517 fixed #1237: Clipboard image check changes 2016-01-10 18:22:50 +02:00
Jaex
4ddc5bfc7c nuget csproj changes 2016-01-10 03:15:33 +02:00
Jaex
2e224327de NuGet update 2016-01-10 03:14:15 +02:00
Jaex
4e721fc89d Update resx 2016-01-09 19:21:10 +02:00
Shadorc
4fd443dd1f Update French Translation 2016-01-09 13:52:36 +01:00
L1Q
03adc02009 Updated Russian translation 2016-01-09 14:08:43 +02:00
Jaex
f94248c461 Updated resx 2016-01-09 01:28:22 +02:00
Jaex
13e1f68c28 Added PortableApps support which will use custom personal path and disable updating 2016-01-07 19:48:59 +02:00
Jaex
ecc8a03789 Removed Region (Windows and controls) instead Region capture will have it by default and possible to disable them 2016-01-05 02:42:51 +02:00
Jaex
3f45c1f51e Remove "(" and ")" replacing from custom uploader export all 2016-01-04 19:11:35 +02:00
Jaex
1d0842d031 Updated license year to 2016 2016-01-03 17:16:01 +02:00
Jaex
d8d379a04f Text conversion improvements 2016-01-02 15:24:14 +02:00
Jaex
8e228210e9 Use alternative clipboard copy/get method by default 2016-01-01 10:23:56 +02:00
Jaex
b719f192bf Fix copy image issue 2016-01-01 10:12:05 +02:00
Jaex
a27f0e54c3 ClipboardHelpers check bitmap format 2016-01-01 09:37:04 +02:00
Jaex
a4383fbb9e GetImage changes 2015-12-29 13:58:21 +02:00
Jaex
d78059e0c0 fixed #1203: Added UseAlternativeClipboardGetImage to application settings which allows to get PNG or 32 bit DIB from clipboard 2015-12-29 13:26:22 +02:00
Jaex
2234307d6c Updated donate url 2015-12-29 11:40:02 +02:00
Jaex
53168286de fixed #1213: Added text conversions (binary, hex, ascii, base64, hash) to hash check window 2015-12-29 03:36:10 +02:00
L1Q
4482cf2140 Updated russian translation 2015-12-27 16:16:30 +02:00
Jaex
1539d9148d Added export all custom uploaders button which will be only visible in debug build 2015-12-21 17:44:28 +02:00
Jaex
553f38ab5a Custom uploader export will ignore null or empty values to have more compact output 2015-12-21 16:31:59 +02:00
Jaex
dae41d1a71 Changed default value of ImageSizeLimit and MaxUploadFailRetry 2015-12-18 18:28:16 +02:00
Alexandre Oliveira
c438cfe1b6 Update Brazilian Portuguese translation 2015-12-16 15:46:15 -02:00
Jaex
479c2234b0 Don't show continue and quit buttons in upload errors window 2015-12-14 13:06:50 +02:00
Jaex
673324e66e Resx translation updates 2015-12-07 18:12:44 +02:00
Jaex
a441a1de1e Backward compatibility for few settings to not reset 2015-12-06 01:39:19 +02:00
Jaex
4d09b4cff5 Added shadow to region (annotate) rectangle drawing 2015-12-04 16:12:30 +02:00
Jaex
02924cc2af Added image size label in aftercaptureform 2015-12-04 00:22:55 +02:00
Jaex
e68612a59f Moved ShowAfterCaptureTasksForm, ShowBeforeUploadForm to AfterCaptureJob enum and ShowAfterUploadForm to AfterUploadJob enum for easy access in main window 2015-12-03 17:18:46 +02:00
Jaex
8447e68548 Save settings to "filename.json.temp" file and rename it to actual file name for decrease probability of save corruption happen when pc shutdown 2015-12-01 11:07:49 +02:00
Jaex
c7bc7381ee Remove unnecessary parenthesis 2015-11-28 14:53:16 +02:00
Jaex
b0c73d87da Making task thread background so when ShareX closing task thread will be terminated 2015-11-27 10:56:33 +02:00
Jaex
35116b47c8 MenuButton changes 2015-11-25 01:27:02 +02:00
Jaex
ba0f543379 Added SetupType.Portable 2015-11-22 22:53:32 +02:00
Jaex
70f4f13a08 Added few options to Logger 2015-11-22 22:28:04 +02:00
Jaex
c101742d2c Update personal path before debug helper init otherwise in portable build logger will save to incorrect folder 2015-11-22 03:31:48 +02:00
Jaex
64ff083c98 Show ShareX logo in about window 2015-11-21 00:56:07 +02:00
L1Q
18553449da Updated russian translation 2015-11-20 01:58:56 +02:00
Kaeltis
1ecb8b6dea German Translation Updates
Updated German translations
2015-11-16 16:57:53 +01:00
Jaex
c7d573724e Merge pull request #1117 from Shadorc/master
Update French Translation
2015-11-15 13:22:49 +02:00
Shadorc
78f31ff36c Update French Translation 2015-11-15 12:16:03 +01:00
Jaex
4fe8fe0903 Merge branch 'master' of github.com:ShareX/ShareX 2015-11-15 12:11:02 +02:00
Jaex
00bc026cfc Turkish translation 100% 2015-11-15 12:10:46 +02:00
wforums
cfc6219441 Updates Dutch translations
updates the Dutch translations for a new ShareX release.
2015-11-15 10:46:21 +01:00
Jaex
58e9db8cf8 Added resx fields 2015-11-15 11:16:21 +02:00
Jaex
8adfe5342e Using mouse wheel to swap modes 2015-11-13 11:47:29 +02:00
Jaex
73136fbee3 Added conflicting application detection if hotkey registration fails 2015-11-11 11:14:39 +02:00
Jaex
c8dcc27104 In default clipboard image copy background will be filled with white because alpha channel not supported 2015-11-10 23:07:13 +02:00
Jaex
74ed6f7bac Portable download url fix 2015-10-29 09:57:01 +02:00
Jaex
3d4bfe8885 Auto update will detect portable build and instead open download URL in browser 2015-10-28 03:42:22 +02:00
Alexandre Oliveira
ef0c39717a Updated Brazilian Portuguese translation 2015-10-27 17:25:55 -02:00
Jaex
8c10e2a910 Merge pull request #1084 from L1Q/master
Russian translation added
2015-10-26 21:15:56 +02:00
L1Q
8f6ec0fbec Russian translation status: 100%
Fixed lots of typos and mistakes.
2015-10-26 15:33:53 +02:00
L1Q
64850e41f4 Russian translation status: ~99%
Still have to check everything for typos and mistakes.
2015-10-26 02:21:21 +02:00
L1Q
230475245a Russian translation status: ~66%
Helpers lib, ShareX poject, Some other dialogs
2015-10-25 11:43:28 +02:00
L1Q
39f11215bd Russian translation status: ~35%
App Settings form + minor chages
2015-10-25 02:34:16 +03:00
Jaex
b6f12094b1 Custom file name support for task 2015-10-23 01:43:04 +03:00
Jaex
05cf6ff44f Location header response type for custom uploader 2015-10-20 03:26:16 +03:00
Jaex
bc1eb99fdd Write ShareX version and build in error form 2015-10-17 14:37:40 +03:00
Jaex
b6f9265f4e Added Vietnamese resx files to csproj 2015-10-15 23:38:18 +03:00
Jaex
94d2ae2e7d csproj resx updates 2015-10-15 22:19:24 +03:00
Jaex
1f816e0a05 Merge pull request #1069 from thanhpd/master
Vietnamese translation added
2015-10-15 22:03:37 +03:00
thanhpd
f8d48273db Vietnamese translation added 2015-10-16 01:52:28 +07:00
Jaex
e07758246c Resx changes 2015-10-15 11:36:05 +03:00
L1Q
b536e0a7ba Russian translation status: ~30%
- Hotkey settings window with most windows it invokes
- Task settings
- Icon enabled
2015-10-15 07:32:53 +03:00
L1Q
1d99d4927d Russian translation minor
Выгрузка -> Загрузка
2015-10-14 23:43:13 +03:00
L1Q
320a9668af Russian translation status: ~18%
Context menu and allmost all Main window
2015-10-14 22:21:03 +03:00
L1Q
c88cae0afa Added russian translation 2015-10-14 10:33:02 +03:00
Jaex
db6dc9e0a3 Added pin taskbar method 2015-10-12 12:59:06 +03:00
Jaex
637685b8a9 Check registry target path 2015-10-12 11:26:21 +03:00
Jaex
c67bfad28a Check shortcut target path too 2015-10-12 11:09:02 +03:00
Jaex
204d4a841d Added Logger Async option 2015-10-10 00:12:10 +03:00
Jaex
93ddecf037 Write logs instantly async 2015-10-09 21:15:29 +03:00
Jaex
360a945894 fixed #1048: Parse negative number 2015-10-07 02:07:31 +03:00
Patrick Fruh
59b0c43845 Reworked German Translation
Fixed typos, added missing strings, ...
2015-10-06 10:27:21 +02:00
quietsche
0dc2a9f4e6 fixed translation errors in Resources.de.resx
changed "Handbuch" to "manuell" 2 times, as it is no (user) manual
2015-10-04 20:24:33 +02:00
Shadorc
59b23cd36f Update French Translation
Better late than never !
2015-10-03 11:20:06 +02:00
Alexandre Oliveira
013070dea0 Updated Brazilian Portuguese translation 2015-10-01 16:43:37 -03:00
Jaex
564868ea49 CodeMaid cleanup 2015-10-01 21:28:33 +03:00
Jaex
404ddb2c77 Turkish translation complete 2015-10-01 19:16:56 +03:00
wforums
ac0580f464 Dutch updates
updates for the Dutch translation of ShareX.
2015-10-01 02:42:10 +02:00
Jaex
4a2e0d7680 Added hotkey for rest of tools 2015-10-01 02:48:33 +03:00
Jaex
6c1737f932 Added image combiner 2015-09-30 16:35:45 +03:00
Jaex
454e64569a fixed #1019: History date time UTC related problem 2015-09-30 14:16:47 +03:00
Jaex
3e36b02553 CombineImages orientation parameter 2015-09-30 11:28:54 +03:00
Atilla Lonny
5427870647 Added HiddenWindow
Added HiddenWindow option for ExternalProgram
2015-09-30 02:36:58 -04:00
Jaex
1b9e14c2a6 Beta build 2015-09-28 08:42:56 +03:00
Jaex
58b2ad6ddf Added hotkey for scrolling capture 2015-09-27 10:55:42 +03:00
Jaex
9a4a64e10f MyMessageBox show activate 2015-09-27 01:14:47 +03:00
Jaex
3952b0f790 Manual combine fixes 2015-09-25 14:36:13 +03:00
Jaex
6381336f37 Alternative way if GetScrollInfo fails 2015-09-25 13:32:53 +03:00
Jaex
44c8df80ba Scrolling capture currently just captures without combine 2015-09-25 13:02:31 +03:00
Jaex
55bbc1001c Added scrolling capture form 2015-09-25 11:12:03 +03:00
Jaex
918e254673 Turkish translation complete 2015-09-24 04:52:46 +03:00
Jaex
e6d17fc37f Added HideImageMargin extension for tool strip menu items 2015-09-23 21:23:25 +03:00
David Ruhmann
0799555315 add custom base option
2 to 62
2015-09-22 22:13:33 -05:00
David Ruhmann
c0cbdd938e add hexadecimal and alphanumeric options and categories
base 62, 36, and 16
2015-09-22 22:13:30 -05:00
Jaex
91fec61141 Don't allow pressing stop/abort when process not running 2015-09-22 21:50:41 +03:00
Jaex
c7ed2ad73e Added -Task CLI command which will allow uploading with specific task setting
Example usage: "Image.png" -Task "Upload to Imgur"
2015-09-20 11:01:36 +03:00
Alexandre Oliveira
7604f4b587 Updated ptBR translation 2015-09-18 19:22:58 -03:00
Jaex
c9a45d014b Using label instead of button to fit changelog text in other languages 2015-09-18 21:19:51 +03:00
Jaex
57a5eb3bd7 Dutch resx additions 2015-09-18 21:02:38 +03:00
wforums
a80da4f589 Dutch language update
Updated the Dutch language forms to hold all new added translations.
2015-09-18 19:49:09 +02:00
Jaex
6c88f0ab6a Added changelog button to update message box 2015-09-18 14:39:46 +03:00
Shadorc
4c423e10db Update French Translation 2015-09-17 14:10:42 +02:00
Jaex
d7659933ce Removing fallback update method because GitHub update system was solid last two years 2015-09-17 09:59:22 +03:00
Jaex
5e00cff459 Allow stop/kill before recording start 2015-09-15 10:00:38 +03:00
Jaex
b47977a753 Update message box will be minimized to task bar and flash 2015-09-15 08:28:18 +03:00
Jaex
0a3efd221b Another test build 2015-09-14 03:21:54 +03:00
Jaex
89f3186a55 About form change 2015-09-13 02:52:13 +03:00
Michael Delpach
f8eab47cf3 Resize based on overall target pixel amount
e.g. to target 16 MP, 5184 x 3456 becomes 4898 x 3265
2015-09-13 04:33:37 +08:00
Jaex
70d58fd37d FirstTimeConfigForm interim commit 2015-09-11 03:45:40 +03:00
Jaex
4f549462ff Abstract not works in Designer 2015-09-10 03:46:44 +03:00
Jaex
33c75fc8f2 fixed #977: Blank space issue 2015-09-10 03:42:52 +03:00
Jaex
67e7549eef Disable GitHub update check in Steam build 2015-09-09 23:58:31 +03:00
Jaex
638ff881a5 Translation string format fixes 2015-09-07 23:20:35 +03:00
Jaex
e55df6a542 Interim commit, ScreenRecordForm improvements and using ScreenRecordManager class 2015-09-07 15:29:27 +03:00
Jaex
6951e97025 Added Steam configuration 2015-09-06 11:19:09 +03:00
Jaex
93bcdf29f9 Merge pull request #972 from Shadorc/master
Update French Translation
2015-09-04 20:12:06 +03:00
Shadorc
bd1c8d403a Update French Translation
There it is !
2015-09-04 19:01:27 +02:00
Jaex
475785a739 CodeMaid cleanup 2015-09-04 19:11:53 +03:00
Jaex
5c97e8c283 Few helpers method 2015-09-04 17:42:13 +03:00
Jaex
2d2f1d6b77 Added DisableDeselect support to ListView 2015-09-02 17:54:24 +03:00
Jaex
ba9a17ecbe Merge pull request #961 from davidruhmann/baseform-default-icon
add visual studio designer changes
2015-09-01 21:01:47 +03:00
David Ruhmann
3e3a7196d5 add visual studio designer changes 2015-09-01 12:37:54 -05:00
Jaex
4ca6665aee Removed BaseForm designer 2015-09-01 13:43:03 +03:00
David Ruhmann
433e20f917 add BaseForm with default icon 2015-08-31 13:36:50 -05:00
Jaex
3ce053da36 Make sure DownloadAndUpload task creates valid filename 2015-08-31 09:20:20 +03:00
Jaex
44610ef03f Set filename in task creation 2015-08-29 09:11:37 +03:00
Jaex
82ac01f3fe GetFileName fix for DownloadAndUpload 2015-08-28 12:34:54 +03:00
Jaex
d6e945fe23 Chrome support complete 2015-08-28 10:22:56 +03:00
Jaex
56d45d9d51 Adding Chrome extension support 2015-08-27 03:49:03 +03:00
Jaex
f1e1f8650f Merge pull request #943 from RockyTV/master
Brazilian portuguese translation
2015-08-24 20:46:20 +03:00
Alexandre Oliveira
4682880bdb Almost done with ptBR translation 2015-08-24 14:43:16 -03:00
Jaex
f49de052d1 Added StringCollectionToStringTypeConverter, description changes in IRCInfo 2015-08-24 20:41:31 +03:00
Alexandre Oliveira
2cb5f86069 Merge branch 'master' of https://github.com/ShareX/ShareX 2015-08-24 13:51:52 -03:00
Jaex
7992791fa2 Added Tools tab to Task Settings window, this cause Indexer settings to reset 2015-08-24 18:30:49 +03:00
Jaex
f84200c629 Unix DateTime convert methods 2015-08-23 22:41:59 +03:00
Jaex
d4196b10e9 When holding snap size modifier key region capture will mark all snap sizes on screen 2015-08-22 16:13:38 +03:00
Jaex
30f5d7d539 Merge branch 'master' of github.com:ShareX/ShareX 2015-08-20 18:44:56 +03:00
Jaex
42c8f3f22a String contains extension 2015-08-20 18:44:40 +03:00
Jaex
396c3ee7f0 Merge pull request #935 from davidruhmann/nameparser-parameter-support
fix comparison to allow match at beginning
2015-08-20 17:25:47 +03:00
David Ruhmann
3feb331be9 fix comparison to allow match at beginning 2015-08-20 09:24:20 -05:00
Jaex
559dc80342 Merge pull request #932 from davidruhmann/hide-codemenu-onlostfocus
hide codemenu onlostfocus
2015-08-20 05:59:42 +03:00
David Ruhmann
6d91464604 hide codemenu onlostfocus
codemenu was remaining open when the application lost focus because it
was tied to the leave event rather than the focus events.
2015-08-19 17:28:45 -05:00
David Ruhmann
59abcded74 add nameparser parameter support
parameter = {n} for entries i, ra, rn.
2015-08-19 17:17:50 -05:00
Jaex
3710f1d99d fixed #584: Custom sound support 2015-08-16 11:34:46 +03:00
Jaex
23f13e0eb0 VideoThumbnailer auto create folder 2015-08-15 08:13:51 +03:00
Jaex
dd266252cd resx fix 2015-08-15 04:30:56 +03:00
Jaex
251849aeda Copyright text update 2015-08-13 04:07:38 +03:00
Alexandre Oliveira
769748fd5f Translated ShareX.HelpersLib/Properties/Resources.pt-BR.resx 2015-08-12 16:18:48 -03:00
Jaex
f760880a42 Merge pull request #899 from Shadorc/master
Update French Translation
2015-08-12 21:03:26 +03:00
Shadorc
540da2ea2e Update French Translation
As always, add missing translations and do some corrections.
2015-08-12 19:58:39 +02:00
Athos Castro Moreno
08f5002d93 Minor translations. 2015-08-12 14:04:04 -03:00
Athos Castro Moreno
5a5e3e5ff6 Some minor translations 2015-08-11 21:24:13 -03:00
Jaex
254a4990b0 Updated credits 2015-08-12 03:09:08 +03:00
Jaex
9502b87946 Merge pull request #896 from RockyTV/master
Portuguese-Brazil translation
2015-08-11 22:04:49 +03:00
Jaex
19918ca934 Turkish translation 100% 2015-08-11 21:58:43 +03:00
Athos Castro Moreno
425417e2cd Bunch of translations. 2015-08-11 15:41:30 -03:00
Jaex
c34d7b7114 Added missing hard coded strings to resx, Updated Turkish translations 2015-08-11 20:33:30 +03:00
Jaex
ef6e784edc EnumDescriptionConverter localized description fix 2015-08-10 01:56:29 +03:00
Alexandre Oliveira
09367fb339 Another bunch of translations. Almost done translating ShareX 2015-08-09 15:56:05 -03:00
Jaex
7f3e257910 OneTimeSecret non account upload support 2015-08-08 13:11:19 +03:00
Athos Castro Moreno
b79414c61e Minor translations 2015-08-07 15:13:20 -03:00
Jaex
20bbf49dfd NuGet Update-Package -Reinstall -IncludePrerelease 2015-08-07 13:22:32 +03:00
Jaex
9ff7105453 Revert "Change screenshots wording to thumbnails"
This reverts commit 7f20b7c1ab.
2015-08-07 12:00:01 +03:00
Jaex
c3f101b4b9 Revert "Remove TDMaker hint paths"
This reverts commit f2ca2f5b88.
2015-08-07 11:59:52 +03:00
Michael Delpach
f2ca2f5b88 Remove TDMaker hint paths 2015-08-07 09:39:59 +08:00
Alexandre Oliveira
a4bd8e1e1b Translated GradientPickerForm, MonitorTestForm 2015-08-06 20:05:57 -03:00
Alexandre Oliveira
87ba680ccf A bunch of translations 2015-08-06 19:57:57 -03:00
Michael Delpach
7f20b7c1ab Change screenshots wording to thumbnails 2015-08-06 22:26:30 +08:00
Athos Castro Moreno
c193e4d36c Several minor translations 2015-08-05 20:34:44 -03:00
Athos Castro Moreno
768e565815 Translated a few more fields 2015-08-04 23:41:45 -03:00
Jaex
d8635a571a ShareX.MediaLib interim commit 2015-08-04 10:31:43 +03:00
Daniel McAssey
1bd048613f Fix spacing 2015-08-03 13:01:10 +01:00
Daniel McAssey
7f48238fbd Update URL regex to match odd URLs 2015-08-03 12:56:27 +01:00
Jaex
88a9f8da07 Resx update 2015-08-02 04:43:43 +03:00
Shadorc
505b0d7df9 Update French Translation 2015-08-02 01:08:23 +02:00
Jaex
0e70f68005 CLI URL support 2015-07-31 22:35:21 +03:00
Jaex
6c4f8e8518 fixed #833: Jira try catch for possibility of exception 2015-07-30 21:24:46 +03:00
Jaex
e396c9260f Added Greenlight button 2015-07-25 18:06:32 +03:00
Jaex
35f835c2bf Merging @DanielMcAssey resx case fixes 2015-07-23 09:08:39 +03:00
Jaex
44f58e32ba csproj fixes 2015-07-23 09:00:51 +03:00
Jaex
4afe5f1b3d Multi file import support 2015-07-22 15:30:01 +03:00
Jaex
585da60da7 fixed #675: Added optional custom info text setting for region capture so it can show color info and allows to copy it 2015-07-21 14:55:53 +03:00
Jaex
e80383968d CodeMaid cleanup 2015-07-21 09:34:43 +03:00
Jaex
5fb48cc552 Windows 10 maximized window region fix 2015-07-21 01:44:03 +03:00
Jaex
c399f48276 Added tray menu entry and hotkey for be able to "Disable/Enable hotkeys" 2015-07-18 21:49:34 +03:00
Jaex
bddbb2b136 Also removed them from hotkeys 2015-07-16 21:18:01 +03:00
Jaex
87790e404e #774: Saving all config when main window minimize to tray 2015-07-08 02:43:04 +03:00
Shadorc
8bbac2dde4 French Translation update
Add missing translations, do some corrections.
I also added me as french translator, I hope you don't mind about it.
2015-07-04 13:41:09 +02:00
wforums
6d35c2b279 Updated Dutch translations for V10
Added all missing strings for Dutch again.
2015-07-04 04:36:05 +02:00
Jaex
21a6d850b1 Custom uploader request URL auto add http:// 2015-06-28 22:30:55 +03:00
Jaex
721966c2f0 NuGet update 2015-06-28 16:04:27 +03:00
Jaex
83c730b2d6 Lock image interactions, fix dispose 2015-06-27 17:01:22 +03:00
Jaex
370c758b12 Workaround for DrawToBitmap issue 2015-06-27 16:08:20 +03:00
Jaex
81e7aa24d5 Added hotkey for webpage capture 2015-06-27 16:03:15 +03:00
Jaex
a3d654269a Added delay setting to webpage capture, saving this settings to application config 2015-06-26 18:26:40 +03:00
Jaex
e898e73690 Screen region form won't steal focus when doing last region or active window recording 2015-06-22 14:27:02 +03:00
Jaex
0e4e8791a5 Added hotkeys for all tools 2015-06-22 10:26:30 +03:00
Jaex
56e9f9af87 Added active window screen record hotkeys 2015-06-22 09:56:18 +03:00
Jaex
afac3286c9 Job menu bug fix 2015-06-20 02:00:17 +03:00
Jaex
559cfccf0c Interim hotkey job category system 2015-06-20 01:22:35 +03:00
Jaex
ed57287b7c fixed #716: Optional force result URL HTTPS setting 2015-06-09 21:26:11 +03:00
Jaex
61a03e2bac Added .gitattributes file 2015-06-07 16:34:33 +03:00
Shadorc
9e5d2affd6 French Translation update
Added missing accents, new translations and done some corrections /
improvements.
2015-06-07 14:11:55 +02:00
Jaex
53719e8c76 fixed #727: Show custom uploader thumbnail and deletion URL in "Test result" section 2015-06-06 13:15:54 +03:00
Jaex
12714beeba Removed pt-BR.resx files 2015-06-05 09:59:46 +03:00
Jaex
de3f8ed74f Revert "pt-BR files added to projects"
This reverts commit 20353f561c.
2015-06-05 09:53:03 +03:00
Jaex
f58dd1dc65 Merge branch 'master' of github.com:ShareX/ShareX 2015-06-04 12:09:46 +03:00
Jaex
94b2542ee4 Added GIF encoding options, using FFmpeg GIF encoding by default now 2015-06-04 12:07:43 +03:00
Shadorc
2cc1d1a736 French Translation : Improvements, additions, corrections. 2015-06-03 20:03:41 +02:00
Jaex
cd877f5ee2 Added FFmpeg animated GIF support 2015-06-03 14:32:34 +03:00
Jaex
20353f561c pt-BR files added to projects 2015-06-03 08:03:41 +03:00
Jaex
002196344b fixed #718: Catch taskbar progress error and disable it 2015-06-02 09:28:31 +03:00
Jaex
ec8e0f9f9b Removed (FFmpeg) texts 2015-06-01 12:45:14 +03:00
Tiago Danin
f8652bdbc2 New translation: Portuguese Brazil 2015-05-29 12:06:22 -03:00
Jaex
6d50877900 OAuth verification code text box will show "Paste verification code here" text when it not got focus 2015-05-26 19:14:09 +03:00
Jaex
86d73b42e7 Replaced some words in README 2015-05-18 18:35:04 +03:00
Jaex
cc68931c00 fixed #696: Label auto copy bug workaround 2015-05-18 09:22:40 +03:00
Shadorc
4e0869e5bf Improved and corrected French translation 2015-05-17 13:33:41 +02:00
Jaex
c349a32101 Don't create new brushes every draw text 2015-05-08 02:58:57 +03:00
Jaex
631c44622a Finished turkish translation 2015-05-07 17:32:48 +03:00
Jaex
228b8bd9bf If run as admin already then open DNS changer directly 2015-05-06 19:49:57 +03:00
Jaex
a68c8bb46d Rectangle monitor hotkey numpad support 2015-05-06 16:56:42 +03:00
Jaex
bbe6c6be55 Fix MyListView designer visibility 2015-05-06 16:31:46 +03:00
Jaex
2a983844e2 UI changes for Dutch 2015-05-06 16:21:06 +03:00
Jaex
1e6df97a85 When rectangle capture is open if you press 1, 2, 3 ... 0 then it will capture monitor with that index (0 means 10. monitor) 2015-05-06 00:33:19 +03:00
wforums
ab8c714fd2 Dutch polishing
- Polished up some translation parts: clarification, shortening, ...
- Added some missing translations that have been added in the past two
weeks.
2015-05-03 22:31:32 +02:00
Jaex
07199f36cf Added nl-NL files to projects 2015-05-03 19:10:35 +03:00
Jaex
fd44b1e9f8 Merge pull request #658 from wforums/master
Dutch Translation
2015-05-03 18:31:25 +03:00
Jaex
8df6000c6b Using ListView instead of ListBox in Twitter settings 2015-05-02 14:55:43 +03:00
Jaex
f51c2edf7c Capture custom region changes 2015-04-26 22:52:01 +03:00
Jaex
79b0b37294 fixed #653: Add cursor position will add new line and focus 2015-04-26 22:23:06 +03:00
Jaex
d06ba3cb9e Revert release debug type to none 2015-04-21 19:33:20 +03:00
Michael Delpach
34bb70b277 Resize to exact width or height
Resize to exact width or height instead of using a ratio for both width
and height.
2015-04-21 09:59:14 +08:00
wforums
90cde22c44 Dutch
More translations :)
2015-04-21 03:22:08 +02:00
Jaex
75b3a35627 Added hover and word break support to custom check box 2015-04-18 12:15:05 +03:00
Jaex
de2bf2e887 fixed #552 #626: Don't show until next startup check box in update message box 2015-04-17 15:27:18 +03:00
Jaex
152b23805a Get download counts method 2015-04-15 11:58:40 +03:00
Jaex
45e011f89b fixed #613: When doing download & upload from clipboard make sure folder is created 2015-04-10 19:38:09 +03:00
Jaex
a62f95a383 resx fixes 2015-04-09 05:44:49 +03:00
Jaex
fdaeb25c3d Updated Turkish language, fixed Spanish main window menu size 2015-04-08 23:02:24 +03:00
Jaex
2e580e1b2a Added Spanish resx files to project 2015-04-08 22:57:25 +03:00
ovnisoftware
c03fe8a81a Added transparent rectangle translation 2015-04-08 13:22:44 -04:00
ovnisoftware
e44ec14856 Merge branch 'master' of https://github.com/ovnisoftware/ShareX 2015-04-08 13:12:39 -04:00
ovnisoftware
f7f6a10f2c Next part of Spanish Translation 2015-04-08 13:12:31 -04:00
Jaex
ad4c8dcc16 CodeMaid cleanup 2015-04-06 23:06:42 +03:00
Jaex
e29bb9bf06 fixed #600: Clean GIF cache file 2015-04-04 21:32:27 +03:00
Jimin Park
0387248c95 Merge remote-tracking branch 'upstream/master' 2015-04-03 21:34:55 +09:00
Jaex
25413ed0c2 Rectangle transparent performance improvements 2015-04-03 15:25:08 +03:00
Jimin Park
5d65366a24 Minor Korean (mis)translations fixes
Made translations coherent, fixed some translations out of context, and
fixed some joke translations left.
2015-04-02 19:55:51 +09:00
Jimin Park
2c0e8f42e9 Minor Korean translation fixes
Translated FPS, changed translation of 'application', 'username', and
'filename'.
2015-04-02 13:00:58 +09:00
Jimin Park
304fabf304 Initial Korean translation completed.
I still need to revise translations and improve it, but basically every
strings are translated.
2015-04-02 11:51:36 +09:00
Jimin Park
b8f77e2dfb Added Korean Translation for FFmpegOptions, ...
Also translations for FFMpeg, FTPClient, ....
2015-04-02 00:54:13 +09:00
Jimin Park
920d8a96ca Done some more Korean translations. 2015-04-01 23:31:44 +09:00
Jimin Park
3b04a1eacf Merge remote-tracking branch 'upstream/master' 2015-04-01 23:28:14 +09:00
Jimin Park
490c17f376 Finished translating main ShareX project into KO.
Other projects like HelperLibs needs to be translated.
2015-04-01 22:59:01 +09:00
Jimin Park
d85a7d6427 Korean translation of ShareX project
There are still other projects to be translated.
2015-04-01 20:35:41 +09:00
Jaex
8f4fa2fd12 fixed #68: Added transparent (not freezing screen) rectangle capture support 2015-04-01 14:12:21 +03:00
Jimin Park
f72e9d6feb Added first Korean Translations 2015-04-01 12:35:05 +09:00
Jaex
d7ced8c94c Merge branch 'master' of github.com:ShareX/ShareX 2015-03-12 00:35:49 +02:00
Jaex
d30126eb43 fixed #548: Added custom time zone option for name pattern 2015-03-12 00:35:31 +02:00
Jaex
5a27863928 Merge pull request #545 from Pandafuchs/patch-2
Update Resources.de.resx
2015-03-11 21:44:24 +02:00
Pandafuchs
09be420fff Update Resources.de.resx
Fixed a grammar error. 
"Aufgabe: Keiner" makes no sense but "Aufgabe: Keine" is correct.
"Aufgabe Keiner" means Task: Noone and "Aufgabe: Keine" means "Task: Nothing"
2015-03-11 20:35:06 +01:00
Pandafuchs
8c45690bc9 Update Resources.de.resx
That makes more sense. It is not a literal translation anymore now.
2015-03-11 20:31:45 +01:00
Jaex
c076b426a6 resx updates 2015-03-09 20:06:28 +02:00
Jaex
78fe09dbe8 Added ImageExtensions and TextExtensions settings which decides where to upload files 2015-03-08 03:13:55 +02:00
Jaex
e63cb67285 Draw cursor size fix 2015-03-06 17:33:27 +02:00
Jaex
8797bb7fc4 fixed #525: Added MediaCrush custom API URL support (Example: https://imgrush.com) 2015-02-25 22:00:34 +02:00
Jaex
d97dcf94e0 MediaCrush removed because service is shut down 2015-02-24 22:02:53 +02:00
Jaex
74fa1a2ede Quick launch shortcuts option only for Vista, XP.
Automate load example scripts if scripts section is empty.
2015-02-21 18:59:27 +02:00
Jaex
571a39355d Added KeyPress modifier support 2015-02-18 18:54:39 +02:00
Jaex
b79e80684b Automate form close handling 2015-02-18 17:35:12 +02:00
Jaex
0a24a43f0b Automate hotkey also will start it if window is already open, when automate stop window will get focus 2015-02-18 11:29:36 +02:00
Jaex
e673e419df Added slow color animation to Donate button 2015-02-18 10:20:52 +02:00
Jaex
206d51348c Added localization to Automate 2015-02-17 18:15:33 +02:00
Jaex
a27256368f Added Keys list to form 2015-02-17 18:00:16 +02:00
Jaex
31a9a124c6 Using Keys enum for keyboard parameter 2015-02-17 17:41:50 +02:00
Jaex
90353e1a94 Added comment support 2015-02-17 16:52:31 +02:00
Jaex
780c1d3ae8 Unlimited loop support and not using line delay for function, call, wait 2015-02-17 16:32:33 +02:00
Jaex
5897af0163 Fix line delay for loop and stop support while looping 2015-02-17 15:45:58 +02:00
Jaex
2c9dea8de8 Added Open/Start Automate hotkey 2015-02-17 14:51:19 +02:00
Jaex
154514c8c3 Added Automate stop support, line delay setting 2015-02-17 12:46:00 +02:00
Jaex
806d55b5e1 Added scripts list 2015-02-17 11:17:11 +02:00
Jaex
f5903993f9 Added example script 2015-02-16 17:08:38 +02:00
Jaex
395be0d69c fix null exception 2015-02-16 16:21:19 +02:00
Jaex
a128cb9c0b Added Automate (Simple scripting / macro) to tools menu 2015-02-16 15:31:19 +02:00
Jaex
91e476d99a German updated by @Starbug2 2015-02-10 22:49:28 +02:00
Jaex
fef3092dec WindowState will make sure window is inside monitor regions 2015-02-09 23:45:04 +02:00
Jaex
9976d483b8 Added GIF encoding progress to tray text 2015-02-09 19:03:54 +02:00
Jaex
c903ec8639 GIF fps limit increased to 30, fixed gif cache integer overflow problem 2015-02-09 17:17:04 +02:00
Jaex
896217f634 fixed #488: Added recent links menu to tray menu 2015-02-02 16:48:56 +02:00
Jaex
935395372f #342: Screen recording (FFmpeg) FPS max limit increased to 60,
Removed Screen recording Output option instead added separate hotkey for GIF recording to make it less confusing to set hotkey,
Removed AVI (VCM) recording because it was not good enough and FFmpeg better than it,
Fixed max fps problem in FFmpeg dshow device
2015-01-30 08:50:10 +02:00
Jaex
1a13786689 Resx update 2015-01-29 09:54:31 +02:00
Jaex
974db173b6 Screen color picker -> Color picker, Quick screen color picker -> Screen color picker 2015-01-26 09:24:26 +02:00
Jaex
ea62f79fab German fixes 2015-01-23 00:15:51 +02:00
Jaex
b01b762c88 Using SSL callback URL 2015-01-21 02:24:22 +02:00
Jaex
5c98188507 Fixed screen recording tray icon text length problem which causing screen recording to not start in some languages 2015-01-19 15:38:53 +02:00
Jaex
cdcf009186 Added country flags to languages menu 2015-01-18 02:53:32 +02:00
Jaex
85c5849762 Hungarian menu size fix, added hu to inno script 2015-01-17 23:03:44 +02:00
devBluestar
bb72b2bcbc Hungarian language file update 2015-01-17 21:43:11 +01:00
Jaex
89d046808f Added Hungarian language 2015-01-17 21:28:30 +02:00
devBluestar
a10b667e8b Hungarian language file 2015-01-17 19:32:42 +01:00
Jaex
0388b699de Merge branch 'master' of https://github.com/jiajiechan/ShareX into jiajiechan-master 2015-01-16 12:55:41 +02:00
jiajiechan
b1bcf7a431 Simplified Chinese (zh-cn) update
Simplified Chinese (zh-cn) update
-Corrected translation appeared in the space problem
-Fixed some translation does not comply with the actual
2015-01-16 13:50:00 +08:00
Starbug2
1e44d99f8c German translation 100% done 2015-01-15 20:59:57 +01:00
Jaex
6b45ffff8a Missing resx include 2015-01-15 20:59:12 +02:00
Jaex
5a737b44c9 Merge german 2015-01-15 20:53:58 +02:00
Jaex
a9b0b3416a Added german resx to projects 2015-01-15 20:44:39 +02:00
Jaex
10a3512ca7 Merge pull request #461 from Starbug2/master
German language Support
2015-01-15 19:25:14 +02:00
Starbug2
48e920ff23 German language Support 2015-01-15 18:17:58 +01:00
Jaex
3256792110 Added Simplified Chinese to projects 2015-01-15 16:17:33 +02:00
Jaex
fba3842ca4 Updated json.net 2015-01-14 14:17:59 +02:00
Jaex
2bfda15b73 fixed #450: Added BrowserPath setting which allows you to use different browsers to open URLs 2015-01-12 11:14:59 +02:00
Jaex
36ac96d4d7 Hubic changes 2015-01-12 09:31:54 +02:00
JiaJie Chan
9644f32112 zh-cn update2
zh-cn update2
2015-01-12 00:43:06 +08:00
JiaJie Chan
258f46fca3 Simplified Chinese(zh-cn) update
Simplified Chinese (zh-cn) Language update
2015-01-12 00:28:11 +08:00
Jaex
f96829acad Few ui changes for french 2015-01-10 12:08:53 +02:00
Jaex
34cade70a6 First update message box can activate 2015-01-09 10:19:44 +02:00
Jaex
5f41b5771d UpdateCheckerLabel won't block process closing 2015-01-07 06:25:48 +02:00
Jaex
86ac891748 Merge branch 'master' of github.com:ShareX/ShareX 2015-01-07 01:56:10 +02:00
Jaex
71f203d07d fixed issue #249: Need url decode file name when doing download 2015-01-07 01:55:48 +02:00
mightynerd
4af8c816e4 Added error dialog when directory can't be created #441 2015-01-06 15:18:40 +01:00
Jaex
721b617c82 Revert "Main window menu is resizable now"
This reverts commit 8a3f8542cf.
2015-01-06 03:50:28 +02:00
Jaex
8a3f8542cf Main window menu is resizable now 2015-01-04 22:24:30 +02:00
Jaex
4ea4503aa7 Fixes to fit long length translations 2015-01-04 21:53:55 +02:00
NWIES
5cb906687a French Translation 2015-01-04 19:03:15 +01:00
NWIES
099787a68a French Translation 2015-01-04 15:58:58 +01:00
NWIES
71fa5de16d French Translation 2015-01-04 15:37:02 +01:00
Jaex
a134dea59e ShareX will check for updates every hour 2015-01-03 16:06:32 +02:00
Jaex
13814e350e Custom update message box for not steal focus 2015-01-03 14:50:16 +02:00
luis.gomez
17b8291113 Fix issue #372
Several changes were made to fix the encoding of ftp dirpaths and allow
uploads to folders with non-ascii characters:

-Fixed encoding of valid urls in ShareX.HelpersLib.NameParser.cs
-Fixed subfolder path generation and wrong url re-encoding in
FTPAccount.cs
-Fixed preview paths in FTP Destination settings (FTPAccount.cs)
-Fixed subfolder path generation in FTP.cs

This fixes issue #372, which was reproduced with the following account
config on a local ftp server (import from clipboard on destination
settings):

{
"Protocol": "FTP",
"Name": "New account",
"Host": "localhost",
"Port": 21,
"Username": "test",
"Password": "test",
"ServerProtocol": "ftp",
"SubFolderPath": "DEV/grhh本人%",
"BrowserProtocol": "http",
"HttpHomePath": "",
"HttpHomePathAutoAddSubFolderPath": true,
"HttpHomePathNoExtension": false,
"IsActive": false,
"FTPSEncryption": "Explicit",
"FTPSCertificateLocation": "",
"Passphrase": null,
"Keypath": null
}
2015-01-01 18:44:18 -03:00
Jaex
03bff07e96 Workaround for DrawText background transparency issue 2014-12-31 15:32:48 +02:00
Jaex
65dd658913 Translation changes for about form 2014-12-31 12:07:19 +02:00
Jaex
e770e8600f Changing copyright icon 2014-12-31 11:41:32 +02:00
Jaex
9388ebb418 Updated year 2014-12-31 11:29:40 +02:00
Jaex
dfc722b7a5 Release 9.5.0 2014-12-29 08:23:45 +02:00
Jaex
958547d055 Using drag able listview in custom uploaders tab 2014-12-23 20:04:35 +02:00
Jaex
218b32c572 fixed #416: Actions list supports item dragging for be able to re order them 2014-12-23 19:44:17 +02:00
Jaex
0ab449a4f9 GitHub updater include pre release option 2014-12-15 08:22:09 +02:00
Jaex
0eefbc19f8 CodeMaid cleanup 2014-12-11 01:19:28 +02:00
Jaex
d5b1d287fb Changed namespaces too 2014-12-10 22:25:20 +02:00
Jaex
5096a895f1 Changed project namings (Example: HelpersLib -> ShareX.HelpersLib) 2014-12-10 22:11:55 +02:00