Skip to content
This repository was archived by the owner on Mar 4, 2020. It is now read-only.

Commit 106e340

Browse files
author
Eun
committed
Release 1.3
1 parent 1a56eeb commit 106e340

5 files changed

Lines changed: 21 additions & 3 deletions

File tree

Hook/Hook.vcxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
7878
<AdditionalIncludeDirectories>
7979
</AdditionalIncludeDirectories>
8080
<ForcedIncludeFiles>%(ForcedIncludeFiles)</ForcedIncludeFiles>
81+
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
8182
</ClCompile>
8283
<Link>
8384
<GenerateDebugInformation>true</GenerateDebugInformation>
@@ -98,6 +99,7 @@
9899
<AdditionalIncludeDirectories>
99100
</AdditionalIncludeDirectories>
100101
<ForcedIncludeFiles>%(ForcedIncludeFiles)</ForcedIncludeFiles>
102+
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
101103
</ClCompile>
102104
<Link>
103105
<GenerateDebugInformation>true</GenerateDebugInformation>
@@ -122,6 +124,7 @@
122124
<AdditionalIncludeDirectories>
123125
</AdditionalIncludeDirectories>
124126
<ForcedIncludeFiles>%(ForcedIncludeFiles)</ForcedIncludeFiles>
127+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
125128
</ClCompile>
126129
<Link>
127130
<GenerateDebugInformation>true</GenerateDebugInformation>
@@ -146,6 +149,7 @@
146149
<AdditionalIncludeDirectories>
147150
</AdditionalIncludeDirectories>
148151
<ForcedIncludeFiles>%(ForcedIncludeFiles)</ForcedIncludeFiles>
152+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
149153
</ClCompile>
150154
<Link>
151155
<GenerateDebugInformation>true</GenerateDebugInformation>

MoveToDesktop/MoveToDesktop.vcxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
<WarningLevel>Level3</WarningLevel>
7676
<Optimization>Disabled</Optimization>
7777
<SDLCheck>true</SDLCheck>
78+
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
7879
</ClCompile>
7980
<Link>
8081
<GenerateDebugInformation>true</GenerateDebugInformation>
@@ -95,6 +96,7 @@
9596
<WarningLevel>Level3</WarningLevel>
9697
<Optimization>Disabled</Optimization>
9798
<SDLCheck>true</SDLCheck>
99+
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
98100
</ClCompile>
99101
<Link>
100102
<GenerateDebugInformation>true</GenerateDebugInformation>
@@ -113,6 +115,7 @@
113115
<FunctionLevelLinking>true</FunctionLevelLinking>
114116
<IntrinsicFunctions>true</IntrinsicFunctions>
115117
<SDLCheck>true</SDLCheck>
118+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
116119
</ClCompile>
117120
<Link>
118121
<GenerateDebugInformation>true</GenerateDebugInformation>
@@ -131,6 +134,7 @@
131134
<FunctionLevelLinking>true</FunctionLevelLinking>
132135
<IntrinsicFunctions>true</IntrinsicFunctions>
133136
<SDLCheck>true</SDLCheck>
137+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
134138
</ClCompile>
135139
<Link>
136140
<GenerateDebugInformation>true</GenerateDebugInformation>

MoveToDesktop/main.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,19 @@
1717
* You should have received a copy of the GNU General Public License
1818
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1919
*/
20+
21+
#define WIN32_LEAN_AND_MEAN
22+
2023
#include <Windows.h>
2124
#include <tchar.h>
25+
#include <stdlib.h>
2226
#include <stdio.h>
2327
#include <VersionHelpers.h>
2428
#include "resource.h"
2529
#include "hideim.h"
2630
#include "KeyMapping.h"
2731
#include "../shared.h"
28-
32+
#include <ShellAPI.h>
2933

3034
#ifdef _WIN64
3135
#define MUTEX_NAME TEXT("{92B297B9-7430-4BB0-B77B-EB6D36DCF8F2}")

MoveToDesktop/resource.rc

0 Bytes
Binary file not shown.

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ Adds the Move to Desktop feature to the Windows 10 System menu:
55

66
![](https://raw.githubusercontent.com/Eun/MoveToDesktop/res/screenshot1.png)
77

8-
[![Download](https://raw.githubusercontent.com/Eun/MoveToDesktop/res/download.png)](https://github.com/Eun/MoveToDesktop/releases/download/1.2/MoveToDesktop-1.2.zip)
8+
[![Download](https://raw.githubusercontent.com/Eun/MoveToDesktop/res/download.png)](https://github.com/Eun/MoveToDesktop/releases/download/1.3/MoveToDesktop-1.3.zip)
99

1010
Installation Usage
1111
======
1212
Download and Run.
1313
You can also move windows by using <kbd>WIN</kbd>+<kbd>ALT</kbd>+<kbd>Left/Right</kbd>
14-
You might need to install the x86 **and** x64 version of [Visual C++ Redistributable for Visual Studio 2015](https://www.microsoft.com/download/details.aspx?id=48145).
14+
1515

1616
> **Hint**
1717
> It is usefull to start MoveToDesktop as Administrator.
@@ -25,6 +25,12 @@ A restart of the application is required.
2525

2626
Changelog
2727
=========
28+
1.3:
29+
* Delete empty desktops
30+
* Bufix Issue #8
31+
* No Redistributable needed anymore #12
32+
* Setting for new Desktops #10
33+
2834
1.2:
2935
* Configurable Hotkeys
3036
* Mutex bugfix

0 commit comments

Comments
 (0)