Skip to content

Commit c550522

Browse files
committed
Version 0.5.0 🎉
1 parent b3d8b77 commit c550522

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

CMakeLists.txt

+3-6
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ cmake_minimum_required(VERSION 3.0)
1212
cmake_policy(VERSION 3.2)
1313
cmake_policy(SET CMP0048 NEW)
1414

15-
project(StayAwake VERSION 0.4.3 LANGUAGES CXX)
15+
project(StayAwake VERSION 0.5.0 LANGUAGES CXX)
1616
set(PROJECT_AUTHOR "Richard Liebscher")
1717
set(PROJECT_DESCRIPTION "status icon for blocking screensaver and standby in Windows")
1818
set(PROJECT_DESCRIPTION_DE "Statusymbol zur Blockieren von Screensaver und Standby in Windows")
@@ -37,11 +37,8 @@ set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} -s")
3737
# UNICODE
3838
add_definitions(-DUNICODE -D_UNICODE)
3939

40-
# Windows XP
41-
#add_definitions(-DNTDDI_VERSION=0x05010300 -D_WIN32_WINNT=0x0501 -DWINVER=0x0501 -D_WIN32_IE=0x0700)
42-
43-
# Windows Vista
44-
add_definitions(-DNTDDI_VERSION=0x06000000 -D_WIN32_WINNT=0x0600 -DWINVER=0x0600 -D_WIN32_IE=0x0700)
40+
# Windows 7
41+
add_definitions(-DNTDDI_VERSION=0x06010000 -D_WIN32_WINNT=0x0601 -DWINVER=0x0601 -D_WIN32_IE=0x0A00)
4542

4643
# Boost options
4744
set(Boost_USE_STATIC_LIBS ON)

src/stayawake.manifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns="urn:schemas-microsoft-com:asm.v1"
44
manifestVersion="1.0">
55
<assemblyIdentity
6-
version="0.4.0.0"
6+
version="0.5.0.0"
77
type="win32"
88
name="R1tschY.Apps.StayAwake"/>
99
<dependency>

0 commit comments

Comments
 (0)