You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Wt 4 specific:
- Remove old throwing getCookie and rename getCookieValue to getCookie
- Require CMake 3.1 or higher
- Use CMAKE_CXX_STANDARD instead of WT_CPP_11_MODE
- Use .h files in includes in WFileUpload.C
- WLocale can be globally set (threadlocal)
- Utils::st* casts now use std::invalid_argument exceptions so we use the
same exception for when nothing can be converted
- use std::invalid_argument for string to int conversion in blog example
- Merges from master:
- Fixed crash on missing err parameter in jserror request
- WebSockets frame size integer overflow check
- Fix #5597: iOS does not detect click events on
non-clickable objects, detect 'clicks' with
touchevents instead
- Removed obsolete WtSoundManager.as
- for wtisapi static library create named PDB files
- SessionProcessManager: sessionsMutex_ should be mutable for use in sessions()
- Generate documentation for WFlags
- Only retrigger click on document when object is a WPopupWidget,
fixes issue with WPopupMenu
- Added missing lock in SessionProcessManager::sessions()
- Fixed WTableView data disappearing with column resizes bug
- Clearer exception for collection<C>::iterator::operator*
- Added missing WT_API for Wt::utf8
- Omit default ports for corresponding protocols (Suggestion of issue #2018)
- Added documentation that submenu of popup menu should be a popup menu
- Charts: create paint device (if there is none) before font metrics check
- Updated overview with latest command line arguments, clarified
--http(s)address (issue #5586)
- Fixed single touch without rubberband effect causing series select
- Updated sqlite to 3.17.0
- Issue #5574: more documentation for font selection of WPdfRenderer
- more space for text in wide legend columns
OPTION(WT_NO_STD_LOCALE "Build Wt to run on a system without std::locale support"OFF)
110
110
OPTION(WT_NO_STD_WSTRING "Build Wt to run on a system without std::wstring support"OFF)
111
111
OPTION(ENABLE_OPENGL "Build Wt with support for server-side opengl rendering"ON)
112
+
OPTION(WT_WARN_HEADER_MISSING_H "Output a warning if a Wt header without .h extension is included (deprecated since Wt 4.0.0)"ON)
112
113
113
-
IF(NOTMSVC)
114
-
#MSVC always enables its c++11 features by default
115
-
SET(WT_CPP_11_MODE "-std=c++11"CACHESTRING"C++ mode to compile Wt in (defaults to -std=c++11, you can set it to -std=c++11, -std=c++0x, -std=c++14,...)")
"Implementation for Wt::cpp17::any. Defaults to \"thelink2012\": an included implementation of any by GitHub user thelink2012. Use \"std\" for std::any, or \"experimental\" for std::experimental::any, if compiler support is available. You may have to change WT_CPP_11_MODE to enable C++17 support in the compiler.")
419
+
"Implementation for Wt::cpp17::any. Defaults to \"thelink2012\": an included implementation of any by GitHub user thelink2012. Use \"std\" for std::any, or \"experimental\" for std::experimental::any, if compiler support is available. You may have to change CMAKE_CXX_STANDARD to enable C++17 support in the compiler.")
421
420
422
421
IF (CMAKE_MAJOR_VERSIONEQUAL 2 ANDCMAKE_MINOR_VERSIONLESS 8)
423
422
MESSAGE(STATUS"Informational: WT_CPP17_ANY_IMPLEMENTATION should be thelink2012, experimental, or std")
0 commit comments