summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* graphics: Add more icons for macOS 10.14 Mojave dark mode.Bradley Sepos2018-08-1035-0/+1103
| | | | | | Also fixed pause icon alignment (was slightly off-center) and added a new stop encode icon better matching the encode/pause icons. #1392
* LinGui: fix single title scan marks preset modifiedJohn Stebbins2018-08-092-1/+10
|
* WinGui: Cleanup of some unneeded references across the projects.sr552018-08-096-17/+0
|
* WinGui: Preparing the UI for a move to .NET CORE next year when the Desktop ↵sr552018-08-091-36/+47
| | | | Packs get released. Removing use of legacy Microsoft.VisualBasic.FileIO reference. Chapter Importer re-written to accommodate.
* MacGui: fix closing the add catagery window when presented as modal.Damiano Galassi2018-08-091-2/+18
|
* LinGui: fix problem with preset selection...John Stebbins2018-08-081-2/+1
| | | | | ...from preset management window. Window closed every time a preset was selected.
* LinGui: handle missing default preset betterJohn Stebbins2018-08-081-0/+14
| | | | | | | | Search for original default official preset. If still missing, select first available preset. Addresses problem seen in: https://github.com/HandBrake/HandBrake/pull/1524
* Fix arithmetic exception in hb_set_anamorphic_size2() when displaying previewEmeric2018-08-081-1/+1
|
* presets: fix setting of default preset valuesJohn Stebbins2018-08-081-1/+1
| | | | | Fixes root cause of problem reported in: https://github.com/HandBrake/HandBrake/pull/1524
* NVEnc: Add human names for encoder presets and remove currently invalid options.sr552018-08-083-2/+49
|
* fix race in getting sequence_id of completed jobJohn Stebbins2018-08-077-20/+35
| | | | | | | | | The sequence_id was only available for the WORKING state and not the WORKDONE state. But frontends poll for status periodically and can miss all status updates for the WORKING state if the file is very short or an error occurs early during transcoding. When WORKING status is missed, there was no way to know the sequence_id associated with the WORKDONE status.
* LinGui: fix some small memory leaksJohn Stebbins2018-08-073-10/+17
|
* pkg: remove ubuntu 17.10 (Artful) from snapshotsJohn Stebbins2018-08-071-15/+0
| | | | Artful is obsolete and the PPA no longer accepts submissions for it.
* bd: handle "broken units" betterJohn Stebbins2018-08-061-20/+46
| | | | | | | | | libbluray detects and skips broken units (6114 byte chunks). But it returns 0 in such cases. We were interpreting this as the end of the title and signalling a successful encode. Instead, look for BD_EVENT_END_OF_TITLE for end of title detection. And perform read retries when bd_read returns 0.
* libbluray: add debug symbols when debugging is enabledJohn Stebbins2018-08-061-0/+4
|
* MacGui: fix progress report textfield height on 10.14Damiano Galassi2018-08-062-60/+59
|
* sync: fix duration of silence buffersJohn Stebbins2018-08-051-4/+10
| | | | | | | Audio mixdown occurs in decoders before sync. So number of channels in a silence buffer is the output channel count. But audio samplerate conversion happens in later here in sync.c FilterAudioFrame, so samples_per_frame in silence buffers are still the input sample count.
* MacGui: corrently display the presets popover on 10.14 dark mode.Damiano Galassi2018-08-041-2/+2
|
* MacGui: fix a number of static analyser warnings.Damiano Galassi2018-08-041-43/+58
|
* WinGui: Remap Ctrl-S to Open Destination Save Dialog. Start Encode is now ↵sr552018-08-033-4/+15
| | | | Ctrl-E instead. (Makes more sense this way)
* VCE: Working on CQ mode for AMD VCE. #1408sr552018-07-301-1/+16
|
* WinGui: Don't grey out the Start Queue button when the encode is paused. #1501sr552018-07-292-13/+3
|
* WinGui: Make sure the Container is selected before the Audio/Subtitle tabs ↵sr552018-07-261-1/+1
| | | | to avoid incorrect default behaviours triggering. Fixes #1500
* WinGui: Alignment tweak on the main window.sr552018-07-251-2/+2
|
* WinGui: Allow the Title Dropdown to grow in width where it makes sense. #1499sr552018-07-251-20/+29
|
* WinGui: Make the error message nicer when the system clipboard is ↵sr552018-07-255-19/+53
| | | | unavailable. #1498
* WinGui: Remove temp VCE hack.sr552018-07-211-2/+1
|
* Amf enc availability check (#1489)OvchinnikovDmitrii2018-07-211-2/+84
| | | | * AMF encoder availability check. #1408
* WinGui: Better handle Open Source Directory on the Queue where batch scan is ↵sr552018-07-191-0/+5
| | | | used. Fixes #1491
* MacGui: update Sparkle to version 1.20.Damiano Galassi2018-07-1922-29/+63
|
* WinGui: Move UserSettings over to JSON format. Settings from the older XML ↵sr552018-07-1812-108/+143
| | | | format will automatically transfer and the legacy files will be removed.
* MacGui: validate the custom filters settings in the GUI.Damiano Galassi2018-07-182-31/+232
|
* WinGui: Remove CPU information from log header. It's also in the main log body.sr552018-07-131-1/+0
|
* Update NEWS with initial 1.2 release notes.sr552018-07-131-1595/+1
|
* WinGui: Fix an issue that was causing the app to erroneously create a ↵sr552018-07-131-1/+1
| | | | "HandBrake Team" folder under the users "Roaming" folder. This also now displays the correct directory under the Log "Data Dir" line.
* WinGui: Few small updates to the EncodeTaskImportFactorysr552018-07-132-12/+16
|
* LinGui: fix queue reload in flatpak sandboxJohn Stebbins2018-07-123-10/+5
| | | | | | Queues are tied to the PID of the process that wrote them. But the app runs with the same PID in the sandbox on every invocation. So the new pid file must be written after processing any previous queue.
* MacGui: add missing Localizable.strings file.Damiano Galassi2018-07-122-7/+673
|
* MacGui: remove two non existing files from the Xcode project.Damiano Galassi2018-07-121-24/+0
|
* MacGui: fix the presets view that was broken a few days ago.Damiano Galassi2018-07-121-1/+1
|
* MacGui: add German localisation by Nomis101.Damiano Galassi2018-07-1227-0/+2859
|
* MacGui: make it possible to localise the default chapters titles.Damiano Galassi2018-07-111-1/+1
|
* LinGui: simplify dest name selectionJohn Stebbins2018-07-103-214/+141
| | | | Removes cruft that wasn't realy used.
* MacGui: remove a bunch of unneeded compatibility code.Damiano Galassi2018-07-1014-102/+48
|
* MacGui: made possible to localise more UI strings.Damiano Galassi2018-07-103-64/+90
|
* flatpak: disable flatpak-builder cacheJohn Stebbins2018-07-091-2/+2
| | | | It fails to rebuild things that need to be rebuilt
* VCE: Fix a typo that was preventing the VCE H.265 encoder from working.sr552018-07-091-1/+1
|
* WinGui: Simplify the Deinterlace / Decomb / Interlace Detection Tab and ↵sr552018-07-0810-492/+179
| | | | associated code. Tweak the layout of the deinterlace controls to match the Mac/Linux UI's. Pull Presets from libhb.
* WinGui: Remove Unused OpenCL call.sr552018-07-081-4/+0
|
* WinGui: Tidy up some unused variables.sr552018-07-084-16/+0
|