aboutsummaryrefslogtreecommitdiff
path: root/language/English
AgeCommit message (Collapse)Author
2012-04-08[add] - localisation for the on screen touchpad descriptionMemphiz
2012-04-04added: option to automatically rip an audio cd on insertionspiff
credit giftie
2012-03-30Merge pull request #718 from Giftie/eject_on_ripArne Morten Kvarving
Add the option the eject the CD after ripping is down(full disc only)
2012-03-28fixed 2 typos in language/English/string.xmlLars Op den Kamp
2012-03-27Add the option the eject the CD after ripping is down(full disc only)xbmc
modified: language/English/strings.xml modified: xbmc/cdrip/CDDARipper.cpp modified: xbmc/settings/GUISettings.cpp Changed string modified: language/English/strings.xml set default to on modified: xbmc/settings/GUISettings.cpp
2012-03-27cec: added an option to configure whether or not to send an 'inactive ↵Lars Op den Kamp
source' message. bugzid: 439
2012-03-27cec: update settings async, so we don't block the gui thread when the OK ↵Lars Op den Kamp
button is pressed
2012-03-27cec: updated to libCEC 1.5. uses struct libcec_configuration to get and set ↵Lars Op den Kamp
the config in libCEC.
2012-03-27peripherals: change the 'keymap_enabled' setting for HID devices into ↵Lars Op den Kamp
'do_not_use_custom_keymap', and hide the setting when the keymap is not configurable
2012-03-27cec: set the HDMI port and the device to which the CEC adapter was ↵Lars Op den Kamp
connected, to be able to determine the correct physical address. this is needed for people who have connected XBMC to something else than the TV
2012-02-25settings: replace "Network" through "Services"montellese
2012-02-08And videosBig_Noid
2012-02-08Added missing strings for window id'sBig_Noid
2012-02-03Merge pull request #662 from jmarshallnz/rename_usefoldernamesjmarshallnz
change setting string to be more reflective of what it does
2012-02-04change setting string to be more reflective of what it doesJonathan Marshall
2012-01-26cleanup the behaviour of assigning library metadata to file items.Jonathan Marshall
Before, metadata was assigned regardless of any settings, but items were stacked down and renamed based on whether stacking was available and enabled. This precluded tvshows (in particular, folder-based episodes) from being stacked down, and also meant that the UI-setting "Use metadata for files" was both inaccurately named, and also only applicable if stacking was also enabled. Now, we split off the two controversial changes so they can be controlled separately: 1. The stacking of folders to library based items is purely dependent on whether stacking is enabled, with the tvshow content check removed. 2. The replacing of labels with the library label is purely dependent on the setting "Replace filenames with library titles" which replaces the incorrectly titlted "Use metadata for files". This should (hopefully) keep a larger proportion of people happy.
2012-01-24add a "group movies in sets" option, defaulted to false available in the UI ↵Jonathan Marshall
to supplant the videolibrary.flattenmoviesets advancedsetting, now that sets are scraped from tmdb by default
2012-01-21localize "Failed to initialize audio device" in CNullDirectSoundmontellese
2012-01-21localize "Video Rendering" error message in CWinRenderer and CLinuxRendererGLmontellese
2012-01-21localize "Failed to start zeroconf" in CZeroconfWINmontellese
2012-01-21localize "Cache full" in CDVDPlayermontellese
2012-01-21localize "Detected New Connection" in EventClientmontellese
2012-01-04cosmetics: langinfo has a incorrect Central Europe region setting(commit for ↵amet
ronie)
2011-12-11changed: Set strings to empty instead of removing themelupus
2011-12-08cec fixes:Lars Op den Kamp
- pose as a recording device instead of a playback device on the cec bus, so the tuner related buttons on the tv's remote work too. - removed the option to mark xbmc as inactive view when stopping, but always send the command instead, as is required by the cec spec. - corrections in repeated keypress handling. display a message when the CEC adapter is connecting and when it is connected and to which devices.
2011-11-15fixed: xml comments needs two dashesspiff
2011-11-11cec: change the 'XBMC connected' string into 'Connected'. CEC protocol ↵Lars Op den Kamp
specifies 13 chars max.
2011-11-04cec: made using the TV's language optional. configurable via peripheral ↵Lars Op den Kamp
settings.
2011-10-24Add subtitle option to override the ASS/SSA subtitles fontCrystalP
2011-10-18corrected string 36007. added dutch translations for strings 35000 -> 36017.Lars Op den Kamp
2011-10-17cec: show a notification when the cec adapter was plugged in but libcec ↵Lars Op den Kamp
support was not compiled in and log it
2011-10-15cec: localised 'XBMC connected' messageLars Op den Kamp
2011-10-14cec: add setting 'HDMI port'Lars Op den Kamp
2011-10-09Changed: made string id 21369 all little more accurate and explanatory ↵Jezz_X
"Enable mouse" vs "Enable mouse and Touch Screen support"
2011-10-02[fix] - wrong stringMemphiz
2011-09-30cec: added support for the Pulse-Eight CEC Adaptor. split up ↵Lars Op den Kamp
linux/PeripheralBusUSB into PeripheralBusUSBLibUdev and PeripheralBusUSBLibUSB. fixed automake files
2011-09-30Squashed original peripherals PR #383Lars Op den Kamp
This is a PR for a new "peripherals manager", /xbmc/peripherals, that detects devices and automatically configures them for use with XBMC. The device mappings and configurations can be defined in system/peripherals.xml. Users can modify settings via system->system->input->peripherals. It works as follows: - CPeripherals contains one or more CPeripheralBus instances. - CPeripheralBus contains the device scanning implementations for the different platforms we support. - The implementations for the devices can be found in peripheral/devices and all devices inherit from CPeripheral. - The devices that are detected are looked up in peripherals.xml, starting at the top of the file and going down. If no mapping was found for the device, an instance of one of the default classes will be created: CPeripheralHID, CPeripheralDisk or CPeripheralNIC. - in peripherals.xml, devices can be matched by vendor id (vendor="xxxx"), product id (product="xxxx"), bus type (bus="xxxx"), device class (class="xxxx") or a combination of these values. The class that will be instantiated for that device is defined in mapTo="xxxx" - the configuration for the device can be defined in peripherals.xml as well. Have a look at system/peripherals.xml, where you can find the possible settings in the demo entry at the bottom. When a device is inserted and there are any settings with configurable="true" present for that device, these settings will be added to the settings dialog, under system->system->input->peripherals. - an example of how these settings can be used can be found in CPeripheralHID, which checks for a "keymap" setting and will automatically switch the keymap XBMC uses to the one that is defined in the setting. TODO: - keep separate configs when the same device is found more than once - general review of this code.
2011-09-21Bring back libpostproc blend as deinterlacing method.CrystalP
It uses very little CPU and is a good choice for atv. Also made the yadif half-rate option available for GLES devices.
2011-09-18Merge pull request #420 from Memphiz/airplayMemphiz
Airplay password protection - we will clean up the gui settings on a different pr.
2011-09-15[add] - add password protection to airplay settings guiMemphiz
2011-09-15added: Edit rss feed button is enabled (if rss feeds are enabled) always, if ↵Martin Ellis
script.rss.editor is missing then prompt to download before continuing, instead of just showing as disabled and expecting user to know they must install rss addon
2011-09-15Add deinterlace mode off/auto/force settingCrystalP
2011-09-11Merge pull request #205 from CrHasher/spline36CrystalP
High Quality Spline36 upscaler. A bit softer than Lanczos3 and less ringing.
2011-09-11added: device name string for network services (defaults to 'XBMC') - ↵vdrfan
currently only used as friendly name by UPnP in order to identify the XBMC instance
2011-09-11added: 24h time format for US locale (closes #11950)vdrfan
2011-09-11High Quality Spline36 upscaler.CrHasher
2011-09-09Add support for the best processor availableCrystalP
2011-09-09Expose DXVA Bob - minus the mechanism to render two different frames from ↵CrystalP
one image
2011-09-09changed: removed stale colon in language filesvdrfan
2011-09-09added: movie set as a smartplaylist rulevdrfan