aboutsummaryrefslogtreecommitdiff
path: root/system
AgeCommit message (Collapse)Author
2018-02-10Merge pull request #11222 from popcornmix/cecrepeatMartijn Kaijser
[cec] Add settings for configuring button repeats
2018-02-10VideoPlayer: OpenGL - implement tone mappingRainer Hochecker
2018-02-08[windows] use CConvertMatrix instead of YUVMatrix for yuv2rgb shaderAnton Fedchin
2018-02-06shaders: [GLES] fix yuv2rgb_basic shaderLukas Rusak
2018-02-04VideoPlayer: OpenGL - do colorspace conversion in linear RGBRainer Hochecker
2018-02-02Peripherals: Remove joystick emulationGarrett Brown
Joystick emulation was used to allow keyboard control of games. Keyboard control will return, but emulation will take place in the games code instead of peripherals.
2018-01-29[cec] Add settings for configuring button repeatspopcornmix
2018-01-28shaders: add default GLES 2.0 videofilter shadersLukas Rusak
2018-01-28shaders: rename GLES 2.0 shadersLukas Rusak
2018-01-27shaders: move GLES shaders to subdirectoryLukas Rusak
2018-01-27shaders: remove uneeded GLES shadersLukas Rusak
2018-01-27VideoPlayer: fix filtershader for OpenGLRainer Hochecker
2018-01-24convert CRLF to LF line endingsRechi
2018-01-17Merge pull request #13358 from DaveTBlake/WinMilkdropFixDave Blake
[Fix]Visualisation none as default for all platforms
2018-01-14Make the default visualisation none for all platforms, consistent with any ↵DaveTBlake
installed viz addons being initially disabled .
2018-01-10fixed: use visible, not hiddennotspiff
2018-01-06smbclient changes for smb minprotocol and legacysecuritychewitt
2018-01-05[webserver] only show SSL setting if supportedwsnipex
2018-01-05[webserver] add SSL settingwsnipex
2018-01-02Merge pull request #13291 from notspiff/video_tag_settingsMartijn Kaijser
changed: added setting for use of video tags
2018-01-02changed: added setting for use of video tagsnotspiff
default to false
2018-01-02VideoPlayer: GL - lookup texture needs interpolationRainer Hochecker
2018-01-02VideoPlayer: GL - fix nonlinear streatch for shader with filterRainer Hochecker
2017-12-29VideoPlayer: GL - yuv2rgb shader with filterRainer Hochecker
2017-12-29VideoPlayer: GL - some optimization for NV12Rainer Hochecker
2017-12-29VideoPlayer: drop unneeded define USE1DTEXTURERainer Hochecker
2017-12-23[PVR] Make shared channel selection optional.Kai Sommerfeld
2017-12-22[cleanup] remove HAS_JSONRPC ifdefLukas Rusak
2017-12-22[cleanup] remove HAS_EVENT_SERVER ifdefLukas Rusak
2017-12-13fixed: add missing audiooutput.dspaddonsenabled entry in settings.xmlArne Morten Kvarving
2017-12-11Merge pull request #13097 from notspiff/togglefontArne Morten Kvarving
added: action to toggle between monospaced and variable spaced font in text viewer dialog
2017-12-10airplay: disable video/pictures support by defaultchewitt
2017-11-27added: action to toggle between monospaced and variable spaced font in text ↵Arne Morten Kvarving
viewer dialog
2017-11-21[keymaps] Add ChannelNumberSeparator to certain pvr windows.Kai Sommerfeld
2017-11-17Merge pull request #13049 from garbear/joystick-backGarrett Brown
Fix Back button in Android TV Remote Control app
2017-11-16Home window: Show shutdown menu when B is heldGarrett Brown
This makes the B button mirror the behavior of the Backspace key.
2017-11-16FullscreenVideo: Change joystick B button to match Backspace keyGarrett Brown
Previously, pressing B would immediately stop the video. After changing this to match the Backspace key behavior, pressing B will toggle fullscreen and holding B will stop.
2017-11-15Merge pull request #12931 from kempniu/fix-joystick-panningRazzeee
Fix image panning using a joystick
2017-11-13[win10] added basic xaudio2 supportAnton Fedchin
2017-11-09Merge pull request #12996 from garbear/keyboard-fixesGarrett Brown
RetroPlayer: Fix keyboard input
2017-11-03Merge pull request #12990 from lrusak/imx-removalLukas Rusak
[linux] remove imx platform
2017-11-03Remove confusing keyboard controls from FullscreenGame windowGarrett Brown
2017-11-02[windows] spit desktop and universal platforms related settings.Anton Fedchin
now windows.xml is setting for all windows platforms win32.xml is settings for desktop platform win10.xml is settings for universal platform.
2017-11-01[linux] remove imx platformLukas Rusak
2017-10-30Fix issues that cause wrong artist and album art and nfo files to be used:DaveTBlake
- Fix export to XML writing data for more than one artist into NFO file. - Check that an artist or album path is found before exporting that item to an NFO file. Check GetArtistPath is successful, and clear path and log when fails, before attempting to process NFO file for artist. - Fix import to handle artists with same name by checking for match using mbid first. - Update art table when merging artist after import or scraping NFO files. This processes <art> tag, previously saved by export but never imported or merged, so art had to be re-selected manually. Note artist thumbURL (strImage) and fanart (strFanart) is that available remotely (from Fanart.tv or TADB), not the images selected. Skins will also be able to display this artwork using ListItem.Art() - When getting local album artist art during initial scan to library: only look in the folder immediately above the album folder (when it contains only 1 album), and only for the first album artist if the album is a collaboration. Avoid repeatedly processing the same artist by maintaining a set. - Check when getting album path that it is unique for that album and does not contain songs fro other albums. Implement new artist info folder: - Overcomes the previous restrictions on local artist art and nfo files. Adds local support for album artists that are on collaboration albums (more than one album artist), artists with music on multiple sources, song artists (no albums) and other artists involved in the music in some way e.g. composer, producer etc. - Provides a single location that can be used by addons for other artist artwork, extra fanart etc. - Artist folder names Normalise album and artist folder names to remove reserved characters Add routines to get folder name allowing for complex duplicates Improve music library export facility: - Replace series of yes/no responses with a dialog box and store previous values (using CServiceBroker) for use next time. - Single file output has unique (timestamped) file name. - Separate file (nfo) output can be to a selected location. - Support export of info and art for *all* artists in library, (not just scraped album artists with a unique folder containing all music below it) - Add options for a) what items exported, b) exporting items that have not been scraped, c) to export just artwork. Complimenting the increase in data that could be exported. - Add music lib job queue and export as an asynchronous job, optionally showing progress dialog (UI kept on main thread). Export hanging no longer locks UI. - Add new LibraryBuiltin method for music export with extended parameters, leaving original for backwards compatibility (for now?). Change JSON to use new method for both music and video. Add music source - minor changes to UI: - On adding a new music source to the library, before scanning prompt optionally enter Artist Info Folder setting. Locate folder directly, not go to settings, as in middle of adding source. - When scan is initiated from file view context menu the option to do full rescan of tags (allowing changed system settings and tag processing to be applied regardless of files themselves being unchanged) is offered. Unnecessary when adding a new music source to the library, or from normal "Update Library" facility. This replaces the <promptfulltagscan> advanced setting added in PR11557.
2017-10-29Merge pull request #12959 from ksooo/pvr-multiple-clientsKai Sommerfeld
[PVR] Fixes/Improvements for multiple enable PVR client addons
2017-10-28[PVR] Feature: Introduce priority for pvr clients. Currently used to enable ↵Kai Sommerfeld
and customize ordering channels client by client if multiple clients are enabled.
2017-10-28Merge pull request #12859 from koying/fixvoiceLChris Browet
FIX: [voicerecog] add alternative keys
2017-10-28[PVR] Improvement for multiple enabled PVR clients: Show setting 'Use ↵Kai Sommerfeld
backend channel numbers' only, if exactly one PVR client is enabled (because the feature cannot work reliably with multiple backends).
2017-10-25Update customcontroller.Harmony.xmlglorious1
Corrected typos and removed some redundant assignments