summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* lang: fix dereference of "Unknown" lang codeJohn Stebbins2019-12-221-1/+1
| | | | It was resolving to "Any" instead of "Unknown"
* libbluray: fix a possible out of bounds read on macOS.Damiano Galassi2019-12-221-0/+21
|
* WinGui: Cleanup a bunch of Code Warnings + Fix missing ico resource. #2519sr552019-12-218-15/+25
|
* Updated NEWSsr552019-12-201-2/+1
|
* WinGui: Fix Dimension ComboBox colour on Dark Theme for the Add Preset Window.sr552019-12-201-1/+0
|
* WinGui: Change the invalid path errors from an Exception Window to a ↵sr552019-12-201-1/+2
| | | | standard Error Message Box. Fixes #2518
* MacGui: Xcode 11.3 project version check.Damiano Galassi2019-12-206-6/+6
|
* Add DVD crash fix to NEWS.markdown.Bradley Sepos2019-12-191-0/+4
|
* Update NEWS.markdown for 1.3.1 release.Bradley Sepos2019-12-191-0/+59
|
* Update ShowHelp() with option to name subtitlesdtparr2019-12-191-0/+2
| | | Option was added in https://github.com/HandBrake/HandBrake/commit/a1b407bc341c493aa027d526faeb3404e085e8a0 but isn't mentioned in the help. A similar change has been proposed to docs.
* dvdnav: check pgcn validity before starting a pgc walk.Damiano Galassi2019-12-191-0/+6
|
* WinGui: Fix a few issues with the build system post format changes.sr552019-12-183-4/+9
|
* WinGui: Remove the AppX project from the solution. It's not used.sr552019-12-181-4/+0
|
* WinGui: Update the cproj file to use the new Project SDK style format.sr552019-12-183-843/+90
|
* WinGui: Switch The WPF Project to .NET 4.8sr552019-12-182-2/+2
|
* WinGui: Switch HandBrake.Interop over to .NET Standard 2.0 and Project Style ↵sr552019-12-187-448/+25
| | | | SDK.
* WinGui: Switch all projects to use PackageReferences.sr552019-12-184-45/+22
|
* WinGui: Bump version to 1.4 on mastersr552019-12-185-7/+7
|
* nvenc: Further tidy up the is available check code.sr552019-12-151-9/+3
|
* nvenc: Disable API version check for latest API pack. Affects #2379sr552019-12-151-11/+5
|
* qsv: fix logs, cleanup, remove warnings (#2419)Artem2019-12-141-58/+44
| | | | | | * qsv: fix logs, cleanup, remove warnings * fix: missed pix_fmts increment
* WinGui: When using QuickSync and defaulting to VFR same as source on encoder ↵sr552019-12-141-4/+10
| | | | | | change, make sure the UI is correctly updated and actually using VFR mode 0. Fixes #2475 Also fix an issue with the x264 tooltip code sometimes triggering the x264 API call before we've switched to x264 fully.
* Actions: IRC Notify Pull Request event now provides URLScott2019-12-111-1/+1
|
* Attempt to Improve the IRC NotificationsScott2019-12-111-4/+6
|
* WinGui: Expand the hack to make the window appear correctly when restoring ↵sr552019-12-101-1/+4
| | | | from task tray. Fixes #2497
* LinGui: fix small memory leak in audio list displayJohn Stebbins2019-12-101-0/+1
|
* LinGui: fix display of chapter start timeJohn Stebbins2019-12-101-1/+1
| | | | they were all showing 0:00 start time :(
* x265: Fix pass 2 encode failureNomis1012019-12-094-0/+76
| | | | This fixes a 2-pass encoding failure which also does affect HandBrake, see https://bitbucket.org/multicoreware/x265/issues/524/2-pass-encoding-failure-with-32-15
* x265: Fix limit-tu bug in loading co-located CU's TU depthNomis1012019-12-094-0/+104
|
* WinGui: Limit iPod atom to H.264. Fixes #2490sr552019-12-096-4/+58
|
* WinUI: Notify of display field changes for QueueStats (#2488)Joshua Shaffer2019-12-071-4/+7
|
* LinuxGUI: Update de, ko and ru localeNomis1012019-12-033-250/+517
|
* build: make: Reduce required pkg-config version to 0.29 in configure.py.Bradley Sepos2019-11-291-1/+1
|
* WinGui: Invoke QueueChanged after ImportJoshua Shaffer2019-11-281-0/+4
|
* preset_template: change "und" to "any" in templateJohn Stebbins2019-11-271-1/+1
| | | | | | This should have no effect on recent preset definitions since new presets should have all keys defined. But very old presets may be missing some keys and need to be filled in with the template defaults.
* preset: fix import of Audio/SubTitle LanguageList "und"John Stebbins2019-11-273-2/+44
| | | | | | | | | | | "und" used to mean "match any" language. Now it means "match only undefined" language. Forgot to translate "und" to new "any" option on preset import which breaks presets that have a language list with "und" defined in it. Note that this *will* break anyones new presets where they explicitly wanted "undefined", but this is a much smaller population than those using "any".
* WinGui: Fix a bug in the Add presets window where the Audio / Subtitle ↵sr552019-11-257-2/+38
| | | | defaults would not set. Fixes #2457
* Update localesNomis1012019-11-2210-21/+54
|
* Change all resx files to Windows line-break typeNomis1012019-11-2214-18311/+18311
|
* Correct 'Unreachable code' warningsNomis1012019-11-213-14/+12
| | | | Correct automated code inspection warnings 'Unreachable code' of jetbrains CLion. Partly fixes #2309
* MacGui: fix HBSubtitlesTrack unarchiver when the track is an external ssa file.Damiano Galassi2019-11-201-1/+1
|
* encx265: use locale agnostic level nameJohn Stebbins2019-11-182-2/+7
| | | | | Attempting to specify a level resulted in an error for locales that don't use '.' as decimal separator
* LinGui: fix gui internationalization supportJohn Stebbins2019-11-181-1/+1
| | | | | | | | When converting from using intltool to gnu gettext, the definition of DATADIRNAME was lost and resulted in an incorrect base directory in the call to bindtextdomain. Fixes https://github.com/HandBrake/HandBrake/issues/2438
* Lost a bracket!Scott2019-11-181-1/+1
|
* Updating the Jetbrains URLScott2019-11-181-1/+1
|
* WinGui: Improve tooltup clarity.sr552019-11-182-2/+4
|
* WinGui: Add a new option to autoname that mimic's an unintended behaviour of ↵sr552019-11-179-63/+126
| | | | 1.2 "Always use the default path for each new name generated" #2434
* Update notify.ymlScott2019-11-161-6/+0
| | | Remove debug code from notify script.
* Update notify.ymlScott2019-11-161-0/+6
| | | Add Debugging to notify script.
* WinGui: Fix Tooltip Style for Dark theme. Fixes #2423sr552019-11-161-0/+6
|