Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-10-30 | Profiles: ensure that the skin is reloaded after profile is loaded | Garrett Brown | |
Credit: Initial fix by Sam Nazarko | |||
2019-09-19 | [application] Fix CApplication::ActivateScreenSaver to always allow 'Black' ↵ | Kai Sommerfeld | |
screen saver. Closes #16123. | |||
2019-08-18 | Fix PlayMedia when item is a .strm or other playlist files. Ensure that they ↵ | DaveTBlake | |
are played within a playlist by the correct player. Also that "arists" smart playlists are treated correctly as music and not as video | |||
2019-07-01 | Revert "fixed: We should always update stream details from player (fixes ↵ | MilhouseVH | |
#15584)" This reverts commit be1ed70fb4b926cbdaf60367172ac7902690f00f. | |||
2019-04-29 | fixed: Resume bookmark would clear on player start failure | arnova | |
2019-03-30 | [Application] - register Stereoscopicmanager for message target - workaround ↵ | afl1 | |
for #13878 for leia | |||
2019-03-19 | [posix] Quit instead of shutdown on signals | Philipp Kerling | |
TMSG_QUIT was indavertently changed to TMSG_SHUTDOWN when the signal handling was modified. Change back to TMSG_QUIT - the application should not cause the machine to power down upon receipt of SIGINT or SIGTERM after all. | |||
2019-03-18 | Merge pull request #15730 from pkerling/fix-posix-signal | pkerling | |
Handle signals by setting atomic flag instead of pop-up thread | |||
2019-03-12 | [posix] Handle signals by setting atomic flag instead of pop-up thread | Philipp Kerling | |
Thread creation in signal handlers is not safe. One of the few safe things to do is set an atomic (lock-free) flag, so do that instead. Fixes #15677 | |||
2019-03-05 | Minor log changes | peak3d | |
2019-03-04 | Merge pull request #15589 from arnova/always_player_streamdetails | Arno van Amersfoort | |
fixed: always update stream details from player (fixes #15584) | |||
2019-02-26 | fixed: We should always update stream details from player (fixes #15584) | arnova | |
2019-02-22 | Stop playing current file when playlist player has stopped. | DaveTBlake | |
Playlistplayer sends a GUI_MSG_PLAYLISTPLAYER_STOPPED message when aborting playback when next from last item in list, or repeat one and song is invalid. This ensures that the player stops too. | |||
2019-02-07 | [xbmc] application: handle resize event even in full screen state on windows. | Anton Fedchin | |
2019-01-19 | CApplication: remove useless fallback conversion | Dimitry Ishenko | |
CVariant string to double conversion was added in 1665dab7a4e9117abfd1f19fa93efd1359344971 | |||
2018-12-19 | Inhibit screensaver in a later initialization stage | Philipp Kerling | |
When the OS screensaver is already inhibited in InitializeGUI, e.g. the language is not loaded yet, which has led to problems on GNOME because the screensaver inhibition requires a translated "reason" string. Moving the inhibition to a later stage solves this. | |||
2018-12-07 | [systeminfo] use timestamp for application build date from BUILDATE file, | wsnipex | |
if it exists | |||
2018-11-18 | Actually destroy window system on application shutdown | Philipp Kerling | |
Destruction of window system should not be left up to global destrcution in unknown order. Windowing owns LIRC (due to some reason) thread which otherwise might try to write log messages when logging has already been shut down. | |||
2018-11-11 | Merge pull request #14649 from angelblue05/master | Dave Blake | |
Allow StartPercent property to be 0 | |||
2018-11-10 | Do not inhibit OS screensaver when DPMS is active | Philipp Kerling | |
On X11, screensaver inhibition will also wake up the display from DPMS periodically (since we call XResetScreenSaver periodically) Fixes #14833 | |||
2018-11-10 | Simplify screensaver deactivation conditions | Philipp Kerling | |
Use haveIdleActivity like everywhere else | |||
2018-11-10 | Do not needlessly recreate screensaver inhibitor | Philipp Kerling | |
2018-11-02 | Merge pull request #14725 from VelocityRa/remove-testpatterns | Martijn Kaijser | |
[xbmc][settings][GL][DX]: Remove test patterns | |||
2018-10-31 | [Aplication] Don't render in Flip() if m_renderGUI is off | peak3d | |
2018-10-30 | Allow StartPercent property to be 0 | angelblue05 | |
2018-10-26 | [xbmc][settings][GL][DX]: Remove test patterns | VelocityRa | |
2018-10-26 | Revert "[xbmc][settings][GL][DX]: Remove test patterns" | VelocityRa | |
This reverts commit 5aa23f8ce173c70a19fa7c70f9dd84548c2d91c8. | |||
2018-10-26 | [xbmc][settings][GL][DX]: Remove test patterns | VelocityRa | |
2018-10-25 | Input: Move action source files to 'input/actions/' subfolder | Garrett Brown | |
2018-10-19 | Merge pull request #14625 from lrusak/clean-shutdown | Lukas Rusak | |
Allow a clean shutdown on window system failure | |||
2018-10-16 | CApplication: add nullptr checks to allow a clean shutdown | Lukas Rusak | |
This work is from investigating why we segfault when failing to initialize windowing. Basically nothing is cleaned up properly and some components were nullptr when accessed | |||
2018-10-13 | Wait for AnnouncementManager thread to exit | peak3d | |
2018-10-09 | Cleanup some includes. | ace20022 | |
2018-10-08 | Rename ProfilesManager -> ProfileManager (source files, class name, variable ↵ | Kai Sommerfeld | |
names) | |||
2018-10-08 | New settings component subcomponent: profiles manager. | Kai Sommerfeld | |
2018-10-07 | Move init/uninit of Settings to CSettingsComponent::Init/Deinit. | Kai Sommerfeld | |
2018-10-07 | Eliminate CServiceBroker::GetSettings(); use ↵ | Kai Sommerfeld | |
CServiceBroker::GetSettingsComponent()->GetSettings() instead. | |||
2018-10-07 | New settings component subcomponent: settings. | Kai Sommerfeld | |
2018-10-07 | Eliminate g_advancedSettings macro. | Kai Sommerfeld | |
2018-10-07 | Introduce ServiceBroker::SettingsComponent and make advanced settings a ↵ | Kai Sommerfeld | |
subcomponent of it. | |||
2018-10-02 | Merge pull request #14478 from garbear/fix-vp-stuck | Garrett Brown | |
Fix getting stuck using VideoPlayer and breaking game launching | |||
2018-09-26 | Fix getting stuck using VideoPlayer and breaking game launching | Garrett Brown | |
2018-09-21 | cosmetics: fix formatting logfile location | wsnipex | |
old: Log File is located: /home/user/temp//kodi.log new: Log File is located: /home/user/temp/kodi.log | |||
2018-09-21 | [linux] allow overriding our userdata dir | wsnipex | |
2018-09-09 | [PVR] Some code cleanup along the way. | Kai Sommerfeld | |
2018-09-08 | CServiceBroker: return a pointer for CSettings | Lukas Rusak | |
2018-09-03 | [application] Get rid of magic number to control ACTION_PREV_ITEM behavior. | Kai Sommerfeld | |
2018-08-30 | [bluray] Simple menu: Don't show unplayable item dialog if the simple menu ↵ | ace20022 | |
gets closed/aborted. | |||
2018-08-25 | disable: Prefer stereo streams if user has configured 2.0 in AE | Rainer Hochecker | |
2018-08-18 | Settings: Remove circular dependency on CPowerManager | Garrett Brown | |