aboutsummaryrefslogtreecommitdiff
path: root/project
AgeCommit message (Collapse)Author
2012-01-18add IAudioRenderer.h to win32 projectJonathan Marshall
2012-01-12[WIN32] fixed: impossible to seek via nfs for files bigger than 2GB. closes ↵WiSo
#12351 (thanks Memphiz)
2012-01-07[WIN32] bump libcurl to 7.21.6 to be in line with Linux and "future" OSXWiSo
2012-01-02[WIN] more robust git rev extraction - use plumbing instead of porcelainCrystalP
2012-01-02[WIN] change git exe priority orderCrystalP
Try msysgit first, as it's a direct port of the official tool. Newer msysgit installs a wrapper accessible in the path, try that first, then git.exe if found, and last tortoise git command line tool tgit.exe.
2012-01-02[WIN] fix extraction to return unknown version in case the git tool doesn't ↵CrystalP
return any line
2012-01-02[WIN] fix git rev extraction for BuildSetupCrystalP
SETLOCAL was preventing the script from exporting the result as a variable. Simplified the script to avoid ENABLEDELAYEDEXPANSION and therefore SETLOCAL.
2012-01-02[WIN32] fixed: somehow the manifest got lost for the debug dx build.wsoltys
2012-01-02[WIN32] fixed: python scripts not running anymore.wsoltys
Revert "[WIN] remove manifest file. It declared a dependency on the vs2008 runtime." This reverts commit e59aa6fa4eed8dc87b386a1f542814d4c9d8483b.
2012-01-01[WIN] cosmetic - the quotes are not necessaryCrystalP
2012-01-01[WIN] fix git command detection for recent msysgitCrystalP
2012-01-01[WIN] more correct git command detection.CrystalP
The command interpreter returns 9009 when the program to be executed is not found. Also have to be careful when testing returned value as IF errorlevel x returns true for any errorlevel values >= x
2012-01-01[WIN] no need for @ prefixes after @echo offCrystalP
2012-01-01[WIN] fix git rev extraction: parse only the first line returnedCrystalP
Didn't find a way to suppress extra line returned by git log command when the last commit deleted a file, so instead make sure that only the first line is processed. This is good defensive programming anyway.
2012-01-01[WIN] remove manifest file. It declared a dependency on the vs2008 runtime.CrystalP
2011-12-29[WIN32] bumped libbluray to the first stable release 0.2.1WiSo
2011-12-24[WIN32] fixed: extract git revision during build process wasn't working.WiSo
2011-12-20[WIN32] bumped libcdio to the stable 0.83 release. This fixes for me CDDA ↵wsoltys
playback issues with my bluray drive. This together with the mingw fixes should probably go in Eden.
2011-12-19[WIN32] updated some mingw/msys components and fixed a libtool not foundwsoltys
2011-12-08[WIN32] applied the hanewin patch to libnfswsoltys
2011-11-16use the same libcec version on win32 as on other platformsLars Op den Kamp
2011-11-15use packages.pulse-eight.net as source for the win32 libcec dep instead of ↵Lars Op den Kamp
xbmc.opdenkamp.eu
2011-11-11cec: updated to libcec 1.1. no longer using a fixed logical address.Lars Op den Kamp
2011-11-04cec: use libcec v1.0. for XBMC, this adds a new log level (CEC_LOG_TRAFFIC) ↵Lars Op den Kamp
and the ability to query some properties of connected devices. fixed reconnect when XBMC comes out of standby
2011-10-20silence macro redefinition warning in win32 opengl debug buildpieh
2011-10-15win32: fixed - put the cec headers in include instead of include/libcec with ↵Lars Op den Kamp
libcec v0.7
2011-10-14cec: take v0.7 of libcec as build dependency on win32Lars Op den Kamp
2011-10-11[upnp] - add FileUPNP wrapperMemphiz
2011-10-11[WIN32] changed: import libcec not needed as we use loadlibrary and moved ↵WiSo
libcec.dll to system as this is in path (untested as I dunno when its loaded)
2011-10-11cec: use libcec v0.6. fixes build issues because of outdates dependencies. ↵Lars Op den Kamp
adds windows and darwin support. "unknown" peripherals were still being added fixed.
2011-10-10[WIN32] fixed: redefinition different basic types (thanks koying)WiSo
2011-10-10[WIN32] use a modified libplist with the additional function ↵WiSo
plist_free_string_val
2011-10-08[WIN32] added missing header files to libblurayWiSo
2011-10-04[WIN32] fixed: heap corruption caused by freetype.Sébastien Brochet
2011-10-03Merge pull request #457 from wsoltys/AirPlaywsoltys
added zeroconf and airplay for win32. airplay needs the apple bonjour service installed. zeroconfbrowser and airtunes aren't implemented yet.
2011-10-02Runtime selection of ConditionVariable imeplementation under windows.Jim Carroll
2011-10-01[WIN32] download libplist from our mirrorWiSo
2011-10-01[WIN32] added scripts to download dnssd from our mirrorWiSo
2011-10-01[WIN32] delay load dnssd.dll and move the header file one level upWiSo
2011-10-01[WIN32] get XBMC compiled with AirPlay and ZeroConf enabled (libplist and ↵wsoltys
dnssd.dll not yet here)
2011-09-30added: CRenderCapture binding for python from pull request 448, fixes #12010Andreas Auras
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-29add CSkinVariableString classpieh
it can't be instantiated yet - it will be done by CSkinVariable factory in next commits
2011-09-28[WIN32] fixed linking after b2b52143f06955edbf3dd461755fb28667ce5065WiSo
2011-09-28[WIN32] fixed: reapply fopen patch to freetype to load fonts from paths with ↵WiSo
special chars.
2011-09-26[WIN32] changed: download only the boost headers and libs we need (almost)WiSo
2011-09-26[WIN32] removed Debug and Release target from project file. Why are they ↵WiSo
back again?
2011-09-26[WIN32] rebuild jpeg-turbo to support exceptions (fixes #11993 on win32, ↵WiSo
thanks davilla)
2011-09-25[WIN32] changed: updated freetype dll to v2.4.6 for fontconfigSébastien Brochet