Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-11-11AStyle: Increase max-instatement-indent from 40 to 65.Underground78
max-instatement-indent=65 covers all the cases we had except one in MpcAudioRenderer.cpp which has been manually adjusted.
2014-11-11Cosmetics: External toolbar image: Replace nested if by loops.Underground78
2014-11-11VSFilter: Remove an unused function.Underground78
2014-11-11Cosmetics: Use PathUtils::GetProgramPath when possible.Underground78
2014-11-11DSUtil: Remove duplicated function GetProgramPath.Underground78
2014-11-11Cosmetics: Remove unused include.Underground78
2014-11-11DSUtil: Remove duplicated function "FileExists".Underground78
2014-11-11Fix: The tracks could be duplicated in the "Details" tab of the "Properties" ↵Underground78
dialog. One line got lost in 072b1f04d3cad6f0a5f29d48f91aa47da307e062. Fixes #5029.
2014-11-11CFavoriteOrganizeDlg: Show tooltip with path of the item.Kacper Michajłow
Fixes #1494
2014-11-11PPageAdvanced: Don't use hardcoded true/false strings.Kacper Michajłow
Fixes #5055
2014-11-11Explain fields of the DVBState struct.Kacper Michajłow
2014-11-11Move StripPath to PathUtils and clarify why we need custom version.Kacper Michajłow
2014-11-11Update MediaInfoLib to v0.7.71 r6562.XhmikosR
2014-11-11Update ZenLib to v0.4.29 r498.XhmikosR
2014-11-11Compilation.txt: update toolchain.XhmikosR
2014-11-11Update Unrar to v5.2.2.XhmikosR
2014-11-11BaseClasses: initialize variables.XhmikosR
2014-10-31Guard uncompilable code with #ifdefAlex Marsev
2014-10-31Reorganize mpc-hc VS project filtersAlex Marsev
2014-10-31Remove nonexistent header files from VS projectAlex Marsev
They also caused Visual Studio to always re-link mpc-hc.exe even when no changes were detected.
2014-10-31Get rid of unnecessary header dependencyAlex Marsev
Also fixes Lite builds compilation.
2014-10-31Remove nonexistent shaders from VS projectAlex Marsev
2014-10-31MediaInfo tab: Enable the "Save As" button only if some info is available.Underground78
Being that the tab can be displayed before the info is available or even if none could be found, it makes sense to disable the button in those cases.
2014-10-31EVR-CP and Sync renderers: Remove useless use of interlocked functions.Underground78
The critical sections are lock protected so there is no need for interlocked functions which is a good thing being that those functions were badly used and did not protect anything anyway. Fixes CID 1249711 and CID 1249712.
2014-10-31Property dialog: Make the UI more consistent between the tabs.Underground78
The header was slightly different on the "Resources" tab.
2014-10-31Property dialog: Ensure the focus stays consistent when switching to the ↵Underground78
"Resources" tab. Previously the file name could get highlighted.
2014-10-31Property dialog: Decide whether to show the "Resources" tab without checking ↵Underground78
the graph twice.
2014-10-31PPageFileInfoRes: Various cosmetics.Underground78
Reduce the visibility of the member functions and variables and simplify the code.
2014-10-31PPageFileMediaInfo: Various cosmetics.Underground78
Reduce the visibility of the member functions and variables and simplify the code.
2014-10-31Properties dialog: Convert the creation time to the local timezone.Underground78
2014-10-31Properties dialog: Make some strings of the "Details" tab translatable.Underground78
2014-10-31PPageFileInfoDetails: Various cosmetics.Underground78
- Reduce the visibility of member functions and variables. - Simplify the initial focus handling. - Various clean-ups.
2014-10-31PPageFileInfoClip: Various cosmetics.Underground78
- Reduce the visibility of member functions and variables. - Simplify the initial focus handling. - Various clean-ups.
2014-10-31Update translations from Transifex:Translators
- Arabic - Basque - Catalan - Chinese (Simplified) - Croatian - Czech - French - Galician - German - Greek - Japanese - Polish - Portuguese (Brazil) - Romanian - Slovak - Spanish - Thai - Turkish - Ukrainian
2014-10-31Manifests: Add Windows 10 ID.XhmikosR
2014-10-30Use GetSystemMetrics() for double-click rectangleAlex Marsev
2014-10-30XySubPicProvider: Always preserve subtitle frame aspect ratio.Kacper Michajłow
Fixes PGS/DVB subtitles on cropped video frames and maitain the same output as with our internal renderer.
2014-10-30Fix resource ids change fiasco.Kacper Michajłow
Fixes #5008
2014-10-30PlayerPlaylistBar: Remove unneeded line which was left in the code byKacper Michajłow
accident. The change is purely cosmetic. Spotted by coverity (CID#1249719)
2014-10-27Move old changelog entries to Changelog_old.txt.XhmikosR
2014-10-27Apply AStyle.Kacper Michajłow
2014-10-27Do not adjust window size for video frame aspect ratio when video sizeKacper Michajłow
is independent from window size. This fixes the case when scaled video frame size is bigger than work area and we want to have bigger viewport.
2014-10-27Specify in OSD message that after playback event has been disabled.Kacper Michajłow
2014-10-27Document all command line switches.Kacper Michajłow
We have better dialog now that allow more entries to be shown.
2014-10-27Position context menus below selected item or in top left corner of theKacper Michajłow
window when they are triggered by App key. Fixes #4995
2014-10-27Add "Play next file in the folder" event to single time events menu.Kacper Michajłow
From my understanding people doesn't care about loops and even persistence of the after playback switches, they just want to have it easy accessible and executed on playlist end. This isn't fully consistent with every time events which respect loop counter, but it doesn't have to be, we ought to look at it as two separate features which provide different possible workflows. This way majority of the users should be happy, both this who wants to use looping feature and those who wants to abuse "play next" feature. Fixes #4971
2014-10-27Give after playback single time event precedence over loops.Kacper Michajłow
Fixes #4978
2014-10-27Do not adjust window width in audio mode if no cover-art/logo is loadedKacper Michajłow
or its size is limited to zero. Fixes #4957, #4982
2014-10-27Reload logo after changing settings when playing audio file without cover-art.Kacper Michajłow
2014-10-27Use system metric values for dragging threshold to avoid unintentionally ↵Kacper Michajłow
starting a drag operation. Fixes #4956