vuplus_xbmc
10 years agoMerge pull request #3266 from wsoltys/mingwupdate
Martijn Kaijser [Tue, 1 Oct 2013 05:09:51 +0000 (22:09 -0700)]
Merge pull request #3266 from wsoltys/mingwupdate

[mingw] updated w32api and mingwrt to 4.0.1 and some cleanup

10 years agoMerge pull request #3299 from t-nelson/pivos_android_generic_hw_queries
Trent Nelson [Tue, 1 Oct 2013 02:03:25 +0000 (19:03 -0700)]
Merge pull request #3299 from t-nelson/pivos_android_generic_hw_queries

droid: add generic hardware queries and hook them up to new Build class

10 years agoMerge pull request #3298 from t-nelson/pivos_wait_for_android_egl_window
Trent Nelson [Tue, 1 Oct 2013 02:02:17 +0000 (19:02 -0700)]
Merge pull request #3298 from t-nelson/pivos_wait_for_android_egl_window

Pivos wait for android EGL window.

10 years agoMerge pull request #3293 from t-nelson/pivos_fs
Trent Nelson [Tue, 1 Oct 2013 02:01:41 +0000 (19:01 -0700)]
Merge pull request #3293 from t-nelson/pivos_fs

Pivos file system changes

10 years agoMerge pull request #3344 from davilla/amcodec-guisettings
davilla [Tue, 1 Oct 2013 00:27:57 +0000 (17:27 -0700)]
Merge pull request #3344 from davilla/amcodec-guisettings

changed, add a proper GUI selector for AMLogic video decoder, refactor AMLogic bits in AESinkAUDIOTRACK

10 years agoMerge pull request #3286 from ace20022/tokenize
jmarshallnz [Mon, 30 Sep 2013 23:43:42 +0000 (16:43 -0700)]
Merge pull request #3286 from ace20022/tokenize

Move TokenizeStringUtils and replace CStdStrings by std::strings.

10 years agoMerge pull request #3290 from bavison/faster_substring_comparisons
jmarshallnz [Mon, 30 Sep 2013 23:43:13 +0000 (16:43 -0700)]
Merge pull request #3290 from bavison/faster_substring_comparisons

Faster substring comparisons

10 years agoMerge pull request #3283 from Karlson2k/win32_small_cleanup_01
Martijn Kaijser [Mon, 30 Sep 2013 22:26:02 +0000 (15:26 -0700)]
Merge pull request #3283 from Karlson2k/win32_small_cleanup_01

Win32 small cleanup

10 years agoFaster substring comparisons
Ben Avison [Fri, 27 Sep 2013 02:56:59 +0000 (03:56 +0100)]
Faster substring comparisons

There were nearly 200 places in the code where testing for a substring was
being performed using a construct of the form
  CStdString::Left(len).Equals("string")
or the related CStdString methods Mid or Right. These are bad for performance
because they involve allocating a heap block for the duration of the
expression evaluation, for the purpose of holding the substring, and then
freeing it again.

These would need replacing anyway because CStdString is being phased out
(PR #3225), and there is also the maintainability issue that developers need
to keep the string lengths in step with the string literals. This latter
point is also true of a number of instances in the code of
  std::string::compare(0, len, "string") == 0

Now that the StartsWith() and EndsWith() methods in StringUtils have been
made more efficient, it is worth replacing both the above constructs with
such calls. This patch does so, using the case-sensitive versions where
std::string::compare was used, where the bUseCase parameter was specified
true in Equals() calls, or where the string literal passed to Equals()
contained no alphabetic characters. For the sake of compatibility, the
remaining calls have been left using the case-insensitive versions ("NoCase"
suffix to the method name), although these may be worth reviewing on a
case-by-case basis.

The majority of the changes here were achieved using a sophisticated search
and replace, which will hopefully minimise any bugs introduced in the
conversion.

This patch is expected to have wide-reaching performance benefits. One
benchmark (that can't pretend to exercise all ~200 improvements) is the time
to open the songs library: on a Raspberry Pi, this patch improves this time
by 12% (down from 13% for a previous version of this patch that also reduced
the number of calls to tolower()).

10 years agoMerge pull request #3284 from Karlson2k/win32_7zip_update
Martijn Kaijser [Mon, 30 Sep 2013 22:25:34 +0000 (15:25 -0700)]
Merge pull request #3284 from Karlson2k/win32_7zip_update

Win32: update 7zip binary package

10 years agoMerge pull request #3330 from ronie/weather-provider-logo
ronie [Mon, 30 Sep 2013 22:20:28 +0000 (15:20 -0700)]
Merge pull request #3330 from ronie/weather-provider-logo

[Confluence] add weather provider logo

10 years agoMerge pull request #3271 from MartijnKaijser/remove_label_subnetaddress
Martijn Kaijser [Mon, 30 Sep 2013 22:19:54 +0000 (15:19 -0700)]
Merge pull request #3271 from MartijnKaijser/remove_label_subnetaddress

remove depricated "subnetaddress" gui label

10 years agoMerge pull request #3315 from MartijnKaijser/remove_addon
Martijn Kaijser [Mon, 30 Sep 2013 22:19:24 +0000 (15:19 -0700)]
Merge pull request #3315 from MartijnKaijser/remove_addon

[addons] remove unused sqlite dummy module

10 years agoMerge pull request #3310 from MartijnKaijser/addon_dependencies
Martijn Kaijser [Mon, 30 Sep 2013 22:18:17 +0000 (15:18 -0700)]
Merge pull request #3310 from MartijnKaijser/addon_dependencies

bump addon dependencies to reflect changes done so far

10 years agoMerge pull request #3341 from MartijnKaijser/a9
Martijn Kaijser [Mon, 30 Sep 2013 22:17:22 +0000 (15:17 -0700)]
Merge pull request #3341 from MartijnKaijser/a9

[release] version bump to 13.0 alpha9 as we start new merge window.

10 years agoMerge pull request #3329 from ace20022/lang_fixes Gotham_alpha8
Andreas Zelend [Sun, 29 Sep 2013 22:13:37 +0000 (15:13 -0700)]
Merge pull request #3329 from ace20022/lang_fixes

[Fix] Fix preferred audio/subtitle language mechanism.

10 years ago[LangInfo] Load preferred audio/subtitle setting during the startup.
ace20022 [Fri, 27 Sep 2013 10:50:50 +0000 (12:50 +0200)]
[LangInfo] Load preferred audio/subtitle setting during the startup.

10 years agoMerge pull request #3345 from FernetMenta/activefix
Peter Frühberger [Sun, 29 Sep 2013 14:56:46 +0000 (07:56 -0700)]
Merge pull request #3345 from FernetMenta/activefix

ActiveAE: check for sink errors on AddPackets

10 years agoMerge pull request #3348 from ronie/artists-with-an-s
Martijn Kaijser [Sun, 29 Sep 2013 14:00:30 +0000 (07:00 -0700)]
Merge pull request #3348 from ronie/artists-with-an-s

fix broken artists node in musicvideos

10 years agofix broken artists node in musicvideos
ronie [Sun, 29 Sep 2013 13:40:37 +0000 (15:40 +0200)]
fix broken artists node in musicvideos

10 years agoActiveAE: Fix compiler warnings
fritsch [Sun, 29 Sep 2013 08:18:49 +0000 (10:18 +0200)]
ActiveAE: Fix compiler warnings

10 years agoupdate old webadress to current wiki pages
Martijn Kaijser [Sun, 29 Sep 2013 09:54:05 +0000 (11:54 +0200)]
update old webadress to current wiki pages

10 years agoremove/update unneeded xbox comments
Martijn Kaijser [Sun, 29 Sep 2013 09:30:59 +0000 (11:30 +0200)]
remove/update unneeded xbox comments

10 years agoMerge pull request #3339 from FernetMenta/aefixes
Peter Frühberger [Sun, 29 Sep 2013 05:46:05 +0000 (22:46 -0700)]
Merge pull request #3339 from FernetMenta/aefixes

ActiveAE: clamp floats

10 years agoMerge pull request #3346 from MartijnKaijser/cleanup_2
Martijn Kaijser [Sat, 28 Sep 2013 22:17:45 +0000 (15:17 -0700)]
Merge pull request #3346 from MartijnKaijser/cleanup_2

Cleanup unused files

10 years agofixed, used g_cpuInfo.getCPUHardware instead of rolling our own access to /proc/cpuinfo
S. Davilla [Sat, 28 Sep 2013 20:49:08 +0000 (16:49 -0400)]
fixed, used g_cpuInfo.getCPUHardware instead of rolling our own access to /proc/cpuinfo

10 years agofixed, c/p typo in CJNIMediaCodecInfoCodecCapabilities
S. Davilla [Sat, 28 Sep 2013 20:43:58 +0000 (16:43 -0400)]
fixed, c/p typo in CJNIMediaCodecInfoCodecCapabilities

10 years agofixup, order check for m_audiotrack_empty_sec_tweaks
S. Davilla [Sat, 28 Sep 2013 20:13:17 +0000 (16:13 -0400)]
fixup, order check for m_audiotrack_empty_sec_tweaks

10 years agoremove obsolete .conf file
Martijn Kaijser [Sat, 28 Sep 2013 17:42:58 +0000 (19:42 +0200)]
remove obsolete .conf file

10 years agoremove old unused bash script
Martijn Kaijser [Sat, 28 Sep 2013 17:39:35 +0000 (19:39 +0200)]
remove old unused bash script

10 years agoActiveAE: check for sink errors, WASAPI returns INT_MAX on error
Rainer Hochecker [Sat, 28 Sep 2013 16:55:04 +0000 (18:55 +0200)]
ActiveAE: check for sink errors, WASAPI returns INT_MAX on error

10 years ago[darwin] remove unused buildbot files
Martijn Kaijser [Sat, 28 Sep 2013 16:28:12 +0000 (18:28 +0200)]
[darwin] remove unused buildbot files

10 years ago[win32] remove unused .exe file
Martijn Kaijser [Sat, 28 Sep 2013 16:27:41 +0000 (18:27 +0200)]
[win32] remove unused .exe file

10 years agoActiveAE: tell resampler to clamp floats
Rainer Hochecker [Sat, 28 Sep 2013 14:28:33 +0000 (16:28 +0200)]
ActiveAE: tell resampler to clamp floats

10 years agoActiveAE: clamp float values after having mixed audio
Rainer Hochecker [Fri, 27 Sep 2013 11:00:58 +0000 (13:00 +0200)]
ActiveAE: clamp float values after having mixed audio

10 years agoffmpeg: add patch for backport swresample: Make rematrix maxvalue user settable
Rainer Hochecker [Sat, 28 Sep 2013 13:57:30 +0000 (15:57 +0200)]
ffmpeg: add patch for backport swresample: Make rematrix maxvalue user settable

10 years agoffmpeg: backport swresample: Make rematrix maxvalue user settable
Rainer Hochecker [Sat, 28 Sep 2013 13:56:46 +0000 (15:56 +0200)]
ffmpeg: backport swresample: Make rematrix maxvalue user settable

10 years agochanged, add a proper GUI selector for AMLogic video decoder, refactor AMLogic bits...
S. Davilla [Sat, 28 Sep 2013 13:51:49 +0000 (09:51 -0400)]
changed, add a proper GUI selector for AMLogic video decoder, refactor AMLogic bits in AESinkAUDIOTRACK

10 years ago[win32] update package list
Martijn Kaijser [Sat, 28 Sep 2013 12:55:08 +0000 (14:55 +0200)]
[win32] update package list

10 years agoMerge pull request #3263 from fetzerch/bugfix-osdchannels
Lars Op den Kamp [Sat, 28 Sep 2013 11:30:26 +0000 (04:30 -0700)]
Merge pull request #3263 from fetzerch/bugfix-osdchannels

pvr: Fix crash when opening PVROSDChannels while playing a recording

10 years agoMerge pull request #3317 from Karlson2k/charsetconverter_rework_02
jmarshallnz [Fri, 27 Sep 2013 21:07:51 +0000 (14:07 -0700)]
Merge pull request #3317 from Karlson2k/charsetconverter_rework_02

CharsetСonverter rework - Part 2

10 years ago[release] version bump to 13.0 alpha9 as we start new merge window.
Martijn Kaijser [Fri, 27 Sep 2013 20:46:47 +0000 (22:46 +0200)]
[release] version bump to 13.0 alpha9 as we start new merge window.

10 years agogles, fixed, more missing code
S. Davilla [Fri, 27 Sep 2013 17:01:33 +0000 (13:01 -0400)]
gles, fixed, more missing code

10 years agoMerge pull request #3137 from jmbreuer/upstream-sortby
jmarshallnz [Fri, 27 Sep 2013 07:14:02 +0000 (00:14 -0700)]
Merge pull request #3137 from jmbreuer/upstream-sortby

Differentiate between "unsorted" and "unsortable"

10 years agoMerge pull request #3272 from MartijnKaijser/win32_remove
Martijn Kaijser [Fri, 27 Sep 2013 07:03:27 +0000 (00:03 -0700)]
Merge pull request #3272 from MartijnKaijser/win32_remove

[win32] cleanup VS2010 build solutions

10 years agoMerge pull request #3292 from bavison/faster_string_comparisons
jmarshallnz [Fri, 27 Sep 2013 04:12:02 +0000 (21:12 -0700)]
Merge pull request #3292 from bavison/faster_string_comparisons

Faster string comparison functions in StringUtils

10 years agoFaster string comparison functions in StringUtils
Ben Avison [Wed, 18 Sep 2013 18:31:59 +0000 (19:31 +0100)]
Faster string comparison functions in StringUtils

The methods EqualsNoCase(), StartsWith() and EndsWith() required quite a lot
of unncessary creation and destruction of std::strings, whether it be the
creation of a temporary copy that could be forced to lower-case, a temporary
copy that was a substring of one of the inputs, or just marshalling a
string literal argument into a std::string.

These functions don't appear to be used all that much at the moment; when I
profiled opening the songs library, I saw only a 1% improvement, which was
within the sampling noise threshold. But with PR #3225 and PR #3290 coming
along, that looks set to change. Once the functions are being called millions
of times, those heap operations really start to get noticeable.

Also, split StartsWith() and EndsWith() into multiple separately-named
functions, according to case sensitivity. Formerly, there was an optional
parameter (default off) to indicate that these operations were
case-*sensitive*, which is actually computationally simpler to perform. Now
the naming convention is consistent with EqualsNoCase:
  StartsWith       - case-sensitive
  EndsWith         - case-sensitive
  StartsWithNoCase - case-insensitive
  EndsWithNoCase   - case-insensitive

With the case-sensitive versions now easier to type, it will hopefully
encourage future developers to use them in preference.

10 years agoMerge pull request #3254 from koying/fixcleaninet
jmarshallnz [Thu, 26 Sep 2013 19:51:05 +0000 (12:51 -0700)]
Merge pull request #3254 from koying/fixcleaninet

FIX: Do not remove internet files from video db only because they come from a disappeared source

10 years agogles, fixed, add missing functions
S. Davilla [Thu, 26 Sep 2013 18:28:38 +0000 (14:28 -0400)]
gles, fixed, add missing functions

10 years agoMerge pull request #3124 from koying/fixplugingetdirlock
Jim Carroll [Thu, 26 Sep 2013 18:23:44 +0000 (11:23 -0700)]
Merge pull request #3124 from koying/fixplugingetdirlock

FIX: avoid waiting forever on a locked CPluginDirectory while exiting

10 years agoMerge pull request #3334 from koying/CHGstfrockchip
Chris Browet [Thu, 26 Sep 2013 17:55:55 +0000 (10:55 -0700)]
Merge pull request #3334 from koying/CHGstfrockchip

CHG: [stagefright] remove Rockchip blacklist (solved in latest firmwares)

10 years agoMerge pull request #3202 from mazkolain/python-jsonrpcfix
Jim Carroll [Thu, 26 Sep 2013 17:52:33 +0000 (10:52 -0700)]
Merge pull request #3202 from mazkolain/python-jsonrpcfix

Avoid locking other Python threads when calling xbmc.executeJSONRPC

Fixes a bug. Can't hurt anything so it's going in.

10 years agoMerge pull request #3258 from koying/fixdroidconfigevent
Chris Browet [Thu, 26 Sep 2013 17:51:56 +0000 (10:51 -0700)]
Merge pull request #3258 from koying/fixdroidconfigevent

FIX: [droid] Prevent droid from shutting us down when an usb/BT keyboard./gamepad is plugged in/out

10 years agoMerge pull request #3332 from ace20022/cximage_fixes
Martijn Kaijser [Thu, 26 Sep 2013 17:32:03 +0000 (10:32 -0700)]
Merge pull request #3332 from ace20022/cximage_fixes

[Fix] Some cximage fixes

10 years agoActiveAE: disable AE_FMT_FLOAT on AESinkAUDIOTRACK, AE_FMT_FLOAT is not clipped corre...
S. Davilla [Thu, 26 Sep 2013 15:15:32 +0000 (11:15 -0400)]
ActiveAE: disable AE_FMT_FLOAT on AESinkAUDIOTRACK, AE_FMT_FLOAT is not clipped correctly and makes an icky noise when audio volume peaks

10 years agoMerge pull request #3333 from koying/FIXjnitypo
Chris Browet [Thu, 26 Sep 2013 14:00:35 +0000 (07:00 -0700)]
Merge pull request #3333 from koying/FIXjnitypo

FIX: [droid] JNI typo

10 years agoMerge pull request #3331 from FernetMenta/texture
Rainer Hochecker [Thu, 26 Sep 2013 13:51:14 +0000 (06:51 -0700)]
Merge pull request #3331 from FernetMenta/texture

make sure gl textures are deleted by render thread

10 years agoMerge pull request #3205 from koying/fixSFinvalidpts
Chris Browet [Thu, 26 Sep 2013 13:46:29 +0000 (06:46 -0700)]
Merge pull request #3205 from koying/fixSFinvalidpts

FIX: [stagefright] ignore frames with no valid pts

10 years agoFIX: [droid] JNI typo
Chris "Koying" Browet [Thu, 26 Sep 2013 13:01:54 +0000 (15:01 +0200)]
FIX: [droid] JNI typo

10 years agoCHG: [stagefright] remove Rockchip blacklist (solved in latest firmwares)
Chris "Koying" Browet [Thu, 26 Sep 2013 11:45:04 +0000 (13:45 +0200)]
CHG: [stagefright] remove Rockchip blacklist (solved in latest firmwares)

10 years ago[cximage] Fix possible "Buffer is accessed out of bounds: romm_cam" error in libdcr.
ace20022 [Thu, 26 Sep 2013 11:37:28 +0000 (13:37 +0200)]
[cximage] Fix possible "Buffer is accessed out of bounds: romm_cam" error in libdcr.

10 years ago[cximage] Fix resource leak in dcraw.
ace20022 [Thu, 26 Sep 2013 11:25:47 +0000 (13:25 +0200)]
[cximage] Fix resource leak in dcraw.

10 years ago[cximage] Fix possible "Buffer is accessed out of bounds: romm_cam" error in dcraw.
ace20022 [Thu, 26 Sep 2013 11:20:35 +0000 (13:20 +0200)]
[cximage] Fix possible "Buffer is accessed out of bounds: romm_cam" error in dcraw.

10 years ago[cximage] Fix invalid number of character ({) when these macros are defined: 'PNG_NO_...
ace20022 [Thu, 26 Sep 2013 10:35:30 +0000 (12:35 +0200)]
[cximage] Fix invalid number of character ({) when these macros are defined: 'PNG_NO_WRITE_FILTERING' in pngwutil.

10 years agofix memleak, make sure gl textures are deleted by render thread, thanks to popcornmix
Rainer Hochecker [Thu, 26 Sep 2013 11:17:04 +0000 (13:17 +0200)]
fix memleak, make sure gl textures are deleted by render thread, thanks to popcornmix

10 years ago[cximage] Fix common realloc mistake: 'm_pBuffer' nulled but not freed upon failure...
ace20022 [Thu, 26 Sep 2013 09:28:01 +0000 (11:28 +0200)]
[cximage] Fix common realloc mistake: 'm_pBuffer' nulled but not freed upon failure in xmemfile.

10 years ago[cximage] Fix uninitialized struct member in ximadsp.
ace20022 [Thu, 26 Sep 2013 09:08:14 +0000 (11:08 +0200)]
[cximage] Fix uninitialized struct member in ximadsp.

10 years ago[cximage] Fix memleak in ximadsp.
ace20022 [Thu, 26 Sep 2013 09:06:02 +0000 (11:06 +0200)]
[cximage] Fix memleak in ximadsp.

10 years agoMerge pull request #3323 from bfg1981/SFTPVerbosity
Martijn Kaijser [Thu, 26 Sep 2013 07:50:04 +0000 (00:50 -0700)]
Merge pull request #3323 from bfg1981/SFTPVerbosity

Adds verbosity to SFTPFile, with log messages which helps user identify ...

10 years ago[win32] remove mplayer remenant from installer
Martijn Kaijser [Wed, 25 Sep 2013 21:43:30 +0000 (23:43 +0200)]
[win32] remove mplayer remenant from installer

10 years ago[win32] exlude .log on packaging
Martijn Kaijser [Wed, 25 Sep 2013 21:39:54 +0000 (23:39 +0200)]
[win32] exlude .log on packaging

10 years agoremove depricated "subnetaddress" gui label
Martijn Kaijser [Sun, 15 Sep 2013 13:09:01 +0000 (15:09 +0200)]
remove depricated "subnetaddress" gui label

10 years agoAdds verbosity to SFTPFile, with log messages which helps user identify problem.
BFG [Thu, 8 Aug 2013 19:55:04 +0000 (21:55 +0200)]
Adds verbosity to SFTPFile, with log messages which helps user identify problem.

10 years ago[Confluence] add weather provider logo
ronie [Wed, 25 Sep 2013 19:49:28 +0000 (21:49 +0200)]
[Confluence] add weather provider logo

10 years agoMerge pull request #3325 from jabbera/TCPServerSend14509
Martijn Kaijser [Wed, 25 Sep 2013 19:31:37 +0000 (12:31 -0700)]
Merge pull request #3325 from jabbera/TCPServerSend14509

Fix: 14509. TCPServer send may not send correct data

10 years agoMerge pull request #3327 from FernetMenta/aefixes
Rainer Hochecker [Wed, 25 Sep 2013 13:25:03 +0000 (06:25 -0700)]
Merge pull request #3327 from FernetMenta/aefixes

ActiveAE: force resampler if dvdplayer requests it

10 years ago[LangCodeExpander] Fix preferred audio/subtitle language mechanism.
ace20022 [Wed, 25 Sep 2013 12:14:35 +0000 (14:14 +0200)]
[LangCodeExpander] Fix preferred audio/subtitle language mechanism.
This also speeds up conversion to 3-char codes.

10 years agoActiveAE: forgot to force resampler after 6f5642ed7edabb3c71e8e9249fa0fd91071345c3
Rainer Hochecker [Wed, 25 Sep 2013 09:33:48 +0000 (11:33 +0200)]
ActiveAE: forgot to force resampler after 6f5642ed7edabb3c71e8e9249fa0fd91071345c3

10 years agoCharsetConverter: add convenient overloads to new conversion functions
Karlson2k [Wed, 25 Sep 2013 01:55:54 +0000 (05:55 +0400)]
CharsetConverter: add convenient overloads to new conversion functions

10 years agoCharsetConverter: add UTF-8 <-> UTF-32 and UTF-32 <-> wide conversion functions
Karlson2k [Thu, 19 Sep 2013 14:30:29 +0000 (18:30 +0400)]
CharsetConverter: add UTF-8 <-> UTF-32 and UTF-32 <-> wide conversion functions

10 years agoMerge pull request #3321 from Karlson2k/charsetconverter_fix_01
jmarshallnz [Tue, 24 Sep 2013 23:01:10 +0000 (16:01 -0700)]
Merge pull request #3321 from Karlson2k/charsetconverter_fix_01

CharsetConverter: fix for logicalToVisualBiDi

10 years agoCharsetConverter: fix: don't flip empty lines
Karlson2k [Mon, 23 Sep 2013 13:33:54 +0000 (17:33 +0400)]
CharsetConverter: fix: don't flip empty lines

10 years agoMerge pull request #3320 from ace20022/fix_en_langnames
Andreas Zelend [Tue, 24 Sep 2013 21:38:51 +0000 (14:38 -0700)]
Merge pull request #3320 from ace20022/fix_en_langnames

Fix English names of languages and add Ossetic.

10 years agoIf send doesn't complete in one iteration don't
Mike [Tue, 24 Sep 2013 21:19:41 +0000 (17:19 -0400)]
If send doesn't complete in one iteration don't
resend begining of data

fixes: #14509

10 years agoMove Tokenize from Util to StringUtils and replace CStdString by std::string.
ace20022 [Tue, 17 Sep 2013 13:02:18 +0000 (15:02 +0200)]
Move Tokenize from Util to StringUtils and replace CStdString by std::string.

10 years agojni: add a wait for window in egl for android, and use a live copy
Cory Fields [Mon, 29 Apr 2013 21:50:00 +0000 (17:50 -0400)]
jni: add a wait for window in egl for android, and use a live copy

10 years agoFix English names of languages and add Ossetic.
ace20022 [Mon, 23 Sep 2013 11:26:48 +0000 (13:26 +0200)]
Fix English names of languages and add Ossetic.

10 years agoaml: fixed aml_present to actually work
davilla [Thu, 12 Sep 2013 14:03:47 +0000 (10:03 -0400)]
aml: fixed aml_present to actually work

10 years ago[win32] remove "Debug" and "Release" as build solution as we always use "Debug (direc...
Martijn Kaijser [Sun, 15 Sep 2013 15:53:10 +0000 (17:53 +0200)]
[win32] remove "Debug" and "Release" as build solution as we always use "Debug (directX)" and "Release (DirectX)"

10 years agoLanguage strings: fix name and description for ""videoplayer.maxspeedadjust""
Karlson2k [Thu, 12 Sep 2013 13:33:44 +0000 (17:33 +0400)]
Language strings: fix name and description for ""videoplayer.maxspeedadjust""

10 years agoMerge pull request #3097 from Karlson2k/charsetconverter_rework_01
Martijn Kaijser [Sun, 22 Sep 2013 09:29:35 +0000 (02:29 -0700)]
Merge pull request #3097 from Karlson2k/charsetconverter_rework_01

CharsetConverter rework - part 1

10 years agoMerge pull request #3248 from ace20022/silence_lce
Arne Morten Kvarving [Sun, 22 Sep 2013 08:56:36 +0000 (01:56 -0700)]
Merge pull request #3248 from ace20022/silence_lce

[LangCodeExpander] Reduce log spamming if input string is empty

10 years agobump addon dependencies to reflect changes done so far
Martijn Kaijser [Fri, 20 Sep 2013 17:25:53 +0000 (19:25 +0200)]
bump addon dependencies to reflect changes done so far

10 years agoMerge pull request #3287 from Montellese/skin_change
Martijn Kaijser [Sun, 22 Sep 2013 08:20:58 +0000 (01:20 -0700)]
Merge pull request #3287 from Montellese/skin_change

fix crash/freeze when changing skin after installing a new skin addon

10 years agoMerge pull request #3316 from FernetMenta/paplayer
Peter Frühberger [Sun, 22 Sep 2013 07:31:26 +0000 (00:31 -0700)]
Merge pull request #3316 from FernetMenta/paplayer

Paplayer fixes (hail to the king baby)

10 years agoMerge pull request #3262 from jmarshallnz/compile_warnings
jmarshallnz [Sun, 22 Sep 2013 03:32:57 +0000 (20:32 -0700)]
Merge pull request #3262 from jmarshallnz/compile_warnings

Fix a bunch of compile warnings

10 years ago[osx] fix potential memleak
Jonathan Marshall [Sat, 14 Sep 2013 07:33:07 +0000 (19:33 +1200)]
[osx] fix potential memleak

10 years ago[json-rpc] remove unnecessary assignment
Jonathan Marshall [Sat, 14 Sep 2013 07:32:31 +0000 (19:32 +1200)]
[json-rpc] remove unnecessary assignment

10 years ago[jpegio] remove unnecessary early return
Jonathan Marshall [Sat, 14 Sep 2013 07:32:01 +0000 (19:32 +1200)]
[jpegio] remove unnecessary early return

10 years agoremove unused variable
Jonathan Marshall [Sat, 14 Sep 2013 07:31:37 +0000 (19:31 +1200)]
remove unused variable