Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-09-10 | MACOS: Fix warnings about undeclared selectors | Colin Snover | |
When -Wundeclared-selector is enabled (recommended by Apple), the calls to the setBadgeLabel selector in MacOSXTaskbarManager are warned on because NSDockTile declarations are not included because they do not exist in macOS 10.4 and earlier. While I don't know that we are even supporting such old macOS versions these days, it is simple enough to fix this problem when compiling to modern macOS versions by conditionally including the necessary header. | |||
2016-10-09 | JANITORIAL: Remove more trailing spaces | Eugene Sandulenko | |
2016-07-10 | MACOS: Use 'unsigned int' instead of NSUInteger | Colin Snover | |
NSUInteger apparently does not exist until macOS 10.5, but buildbot targets 10.4. | |||
2016-07-10 | MACOS: Fix sign comparison | Colin Snover | |
2016-06-08 | WIN32: Fix taskbar detection under Windows 10 onwards. | Kirben | |
2016-06-08 | WIN32: Fix taskbar detection under Windows 10 onwards. | Kirben | |
2016-03-25 | OS X: Clean taskbar code | Thierry Crozat | |
This involves moving the NSDockTilePlugIn code to backend/taskbar and fixing style to follow our coding conventions. One make target was also renamed. All in all there is no change in functionality with this commit. | |||
2016-03-25 | OS X: Fix access to NSArray items with older SDKs | Thierry Crozat | |
2016-03-25 | OS X: Add missing includes for recently introduced taskbar code | Thierry Crozat | |
2016-03-25 | OS X: Implement a Dock Tile Plugin to display recent games menu in dock | Thierry Crozat | |
This allows to start a recently played game directly from the dock. The ScummVM.app application should have been permanently added to the dock and the menu is only present when ScummVM is not running. The list of recently played game is written by the taskbar code in ScummVM. The Dock Tile Plugin only reads that list to populate the menu. | |||
2016-03-25 | OS X: Implement saving recent games list to user preferences | Thierry Crozat | |
2016-02-12 | WIN32: Fix compilation with MinGW-w64 based Win32 compiler. | Johannes Schickel | |
2015-12-14 | WIN32: Fix building for (some) MinGW64 toolchains. | Johannes Schickel | |
2015-02-18 | WINCE: Fix compilation. | Johannes Schickel | |
2015-02-16 | WIN32: Add experimental SDL2 support. | Johannes Schickel | |
Based on changes by aquadran. | |||
2014-10-06 | UNITY: Check for GLib version at runtime | Tobia Tesan | |
g_type_init() is deprecated since 2.36 | |||
2014-10-06 | UNITY: Call g_type_init but define DISABLE_DEPRECATION_WARNINGS | Tobia Tesan | |
2014-10-05 | UNITY: Call g_type_init only with GLib < 2.36 | Tobia Tesan | |
With GLib >= 2.36 g_type_init() is deprecated and only throws an ugly warning | |||
2014-02-23 | OSX: Implement TaskbarManager for Mac OS X | Thierry Crozat | |
This implements count badge, progress bar, and icon overlay. It uses the NSDockTile API which is available since OS X 10.5. The code compiles and run on older system but without doing anything. | |||
2014-01-21 | BUILD: Rename libunity support variable to "USE_UNITY" instead of ↵ | Johannes Schickel | |
"USE_TASKBAR_UNITY". This makes it consistent with other library support variables. | |||
2012-09-26 | JANITORIAL: Remove trailing whitespaces. | Johannes Schickel | |
Powered by: git ls-files "*.cpp" "*.h" "*.m" "*.mm" | xargs sed -i -e 's/[ \t]*$//' | |||
2012-02-15 | JANITORIAL: Fix whitespace in pointer template arg | Tarek Soliman | |
2012-01-23 | TASKBAR: Fix compilation with mingw-w64 | dhewg | |
mingw-compat.h is not required for newer mingw-w64, all required symbols are present in the system headers. | |||
2011-08-06 | BACKENDS: Implement notifyError() and clearError() for Win32TaskbarManager | Littleboy | |
2011-08-06 | JANITORIAL: Remove SVN keywords | Eugene Sandulenko | |
2011-06-29 | BACKENDS: Implement Win32TaskbarManager::setCount() | Littleboy | |
2011-06-28 | BACKENDS: Fix warnings in Win32TaskbarManager | Littleboy | |
2011-06-26 | BACKENDS: Fix running on pre-Windows 2000 operating systems | Littleboy | |
The Windows taskbar manager uses VerSetConditionMask and VerifyVersionInfo to check for Windows 7 or later before enabling the taskbar integration features. Those functions did not appear until Windows 2000, so we have to check for them at runtime. | |||
2011-06-25 | TASKBAR: initialize _taskBar with NULL in constructor | athrxx | |
2011-06-23 | BACKENDS: Silence warnings when compiling Win32TaskbarManager with mingw and ↵ | Littleboy | |
add CLSID_ShellLink definition | |||
2011-06-22 | BACKENDS: Fix compilation with Unity | Littleboy | |
- Replace UNIX by POSIX - Move unity include to cpp file - Add exception for unistd.h and time.h headers | |||
2011-06-22 | BACKENDS: Add missing enumeration value and GUID for compilation under older ↵ | Littleboy | |
versions of mingw64 | |||
2011-06-16 | BACKENDS: Enhance Win32TaskbarManager::getIconPath() | Julien | |
We now look for an iconsPath configuration variable with the path to the icons folder. In addition, we look if there is an "icons" subfolder (useful when using extrapath to store icons) | |||
2011-06-16 | BACKENDS: Fix compilation of Win32TaskbarManager with mingw | Julien | |
2011-06-16 | BACKENDS: Allow use of excluded functions needed by Win32TaskbarManager | Julien | |
2011-06-16 | BACKENDS: Fix Win32TaskbarManager compilation with Mingw | Littleboy | |
It was missing an include for scummsys.h and so couldn't find the defines | |||
2011-06-16 | BACKENDS: Add define for Unity-specific taskbar code | Littleboy | |
2011-06-16 | BACKENDS: Remove UnityTaskbarManager::setOverlayIcon() | Littleboy | |
Unity is not going to provide a way to set a custom overlay icon (the emblem API is being replaced by a simple urgent state) | |||
2011-06-16 | BACKENDS: Move Win32TaskbarManager init code to constructor | Littleboy | |
2011-06-16 | BACKENDS: Add support for count status to TaskbarManager | Littleboy | |
- Show the number of found games when using the massadd dialog | |||
2011-06-16 | BACKENDS: Integrate glib main event loop | Littleboy | |
- Unity needs a glib event loop to dispatch events. - Cleanup whitespace and indentation | |||
2011-06-16 | BACKENDS: Add WIP Unity support | Littleboy | |
2011-06-16 | BACKENDS: Add use flag for taskbar integration | Littleboy | |
2011-06-16 | BACKENDS: Add stubs for unity taskbar class | Littleboy | |
2011-06-16 | BACKENDS: Add taskbar integration compat header for MingW | Littleboy | |
2011-06-16 | BACKENDS: Add support for custom game icon (recent items list and icon overlay) | Littleboy | |
2011-06-16 | BACKENDS: Implement Win32 taskbar progress state and recent list | Littleboy | |
2011-06-16 | BACKENDS: Add win32 stubs for taskbar integration | Littleboy | |