aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/version/official_windows.go (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-10-31syntax: disable events when highlightingJason A. Donenfeld1-0/+2
2019-10-31mod: bumpJason A. Donenfeld2-19/+19
2019-10-31tunnel: stop burst timer if we exceed 2 secondsJason A. Donenfeld1-0/+1
Reported-by: Odd Stranne <odd@mullvad.net>
2019-10-31embeddable-dll-service: add all functionality to ringloggerJason A. Donenfeld2-23/+211
2019-10-28build: go 1.13 now passes correct os version to ldJason A. Donenfeld3-3/+3
2019-10-28ui: use unicode …Jason A. Donenfeld5-16/+16
2019-10-28ui: more accurate listview icon drawingJason A. Donenfeld1-18/+16
2019-10-27ui: if we're raised before initiation, spin the queues a bitJason A. Donenfeld1-0/+6
2019-10-26instaler: add tsaware, dep, and high entropy aslr to installerJason A. Donenfeld1-3/+4
2019-10-26build: tsaware is implicit in modern goJason A. Donenfeld3-3/+3
2019-10-26version: bumpJason A. Donenfeld1-2/+2
2019-10-26ui: fix configuration editbox accessibility nameSimon Rozman1-2/+16
RichEdit controls without a label report their name as "RichEdit Control" and the Dynamic Annotation cannot override this. Signed-off-by: Simon Rozman <simon@rozman.si>
2019-10-26ui: allow (Shift+)Tab to move focus to sibling controls in RichEditSimon Rozman1-0/+8
With RTF control consuming Tab and Enter keystrokes, there was no way to create or edit a tunnel using keyboard only. This was a major concern for accessibility. Should user want to explicitly insert \t into configuration, one can use Ctrl+Tab, paste it, or use Alt+09 (on numeric keyboard). Signed-off-by: Simon Rozman <simon@rozman.si>
2019-10-25mod: bumpJason A. Donenfeld2-8/+8
2019-10-25ui: provide icons for 128x128 and 16x16 at 144dpiSimon Rozman2-2/+2
Signed-off-by: Simon Rozman <simon@rozman.si>
2019-10-25build: enable aslr and depJason A. Donenfeld3-4/+7
2019-10-24ui: do not scroll list view horizontallyJason A. Donenfeld1-0/+1
2019-10-24ui: fix classic theme drawing with gross hackJason A. Donenfeld1-46/+73
Classic theme won't draw transparent images. But new theme erases the text if we draw ourselves, and we want the OS to draw the text so that we have better accessibility. Support both by hacking classic theme with a zero-sized transparent image for the indentation, while using the transparent image normally for new theme.
2019-10-24ui: use native styling on list viewJason A. Donenfeld1-44/+52
2019-10-24version: bumpJason A. Donenfeld1-2/+2
2019-10-24mod: bumpJason A. Donenfeld2-4/+4
2019-10-24version: bumpJason A. Donenfeld1-2/+2
2019-10-24elevate: do not invoke shell execute if program is emptyJason A. Donenfeld1-1/+5
2019-10-24mod: bumpJason A. Donenfeld2-16/+16
2019-10-21version: bumpJason A. Donenfeld1-2/+2
2019-10-21tunnel: blackhole sockets when there's going to be a sure routing loopJason A. Donenfeld4-15/+55
This prevents against common mishaps when changing from a wifi network that supports v6 to one that doesn't. Reported-by: Jonathan Tooker <jonathan.tooker@netprotect.com>
2019-10-18build: update to go 1.13.3 and remove patcherJason A. Donenfeld3-219/+2
2019-10-17version: bumpJason A. Donenfeld1-2/+2
2019-10-17build: bump go versionJason A. Donenfeld1-1/+1
2019-10-17mod: bumpJason A. Donenfeld3-12/+13
2019-10-16updater: use ed25519 from standard libraryJason A. Donenfeld1-1/+1
2019-10-12build: copy symlinksJason A. Donenfeld1-1/+1
Required for debian.
2019-10-10embeddable-dll-service: use on-demand activation instead of autoJason A. Donenfeld1-1/+1
This prevents this from coming back after boot, since we probably want it tied to the parent process.
2019-10-09Revert "tunnel: check for endpoint interfaces and media connection state"Jason A. Donenfeld1-3/+1
This reverts commit cf6f599a4a65e89929ffc12982346c8e9012552c. It broke people's setups.
2019-10-09build: do not build modules when remastering and sort statementsJason A. Donenfeld2-6/+4
2019-10-09embeddable-dll-service: do not marshall go stringsJason A. Donenfeld2-14/+4
2019-10-09tunnel: print wintun version in debug logJason A. Donenfeld1-0/+6
2019-10-09mod: bump versionsJason A. Donenfeld2-8/+9
2019-10-07go: use upstream patch that landedJason A. Donenfeld1-10/+12
2019-10-07version: bumpJason A. Donenfeld1-2/+2
2019-10-07installer: bump wintunJason A. Donenfeld1-2/+2
2019-10-06golang: do not race on sleep resumeJason A. Donenfeld1-23/+23
2019-10-06embeddable-dll-service: add key generation function to replace bcryptJason A. Donenfeld3-109/+27
BCrypt is Win10+ and kind of clunky to use. The tunnel.dll binary has this code in it anyway, so doing it there doesn't actually increase the size of the binary.
2019-10-06embeddable-dll-service: add csharp example codeJason A. Donenfeld6-0/+545
2019-10-04ui: remove unused structJason A. Donenfeld1-6/+0
2019-10-04ui: annotate controlsSimon Rozman3-0/+6
Regarding interface and peer info text boxes: The read-only edit boxes containing interface and peer status and information were read as "<value> read-only multiline" by NVDA screen reader. The read-only edit boxes that serve the informative purpose only must be annotated as ROLE_SYSTEM_STATICTEXT instead of edit box-inherited ROLE_SYSTEM_TEXT role. Regarding logo image in about dialog: NVDA reads "unknown" when reading the dialog without this patch. Signed-off-by: Simon Rozman <simon@rozman.si>
2019-10-04mod: bump versionsJason A. Donenfeld8-22/+22
2019-10-02version: speed up start up by omitting winverifytrust callJason A. Donenfeld1-46/+6
2019-10-01ringlogger: simplifyJason A. Donenfeld1-5/+2
2019-10-01version: bumpJason A. Donenfeld1-2/+2