summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF
Commit message (Collapse)AuthorAgeFilesLines
* WinGui: Update the Encode Json Factory to produce human readable Json for ↵sr552018-07-072-15/+15
| | | | audio and video encoders.
* WinGui: Tidyup around the Scan Objects. Complete some incomplete models. ↵sr552018-07-079-140/+274
| | | | Introduce a factory for Title objects.
* WinGui: Extend the "Video" preference tab to allow the hardware encoders to ↵sr552018-06-299-238/+198
| | | | be disabled.
* Add NVEnc encoder. (Round 3) (#1437)Scott2018-06-292-6/+31
| | | | | | Adding the Nvidia NVEnc H.264 and H.265 encoders. Based on Initial work by sgothel --enable-nvenc is the new compile time configure option to enable for builds.
* WinGui: Fix a bug in queue recovery where old files were not deleted.sr552018-06-151-2/+8
|
* WinGui: Fix a crash in a converter.sr552018-06-151-1/+1
|
* WinGui: Fix an integer overflow in the UI layer for the start/stop controls. ↵sr552018-06-147-15/+53
| | | | Fixes #1327
* WinGui: Soften the colour of the grid lines in the chapters tableSam H2018-06-141-1/+2
|
* WinGui: Make MenuItems the same height as the MenuSam H2018-06-141-0/+5
|
* WinGui: Implement most of the HTTP Worker Process stubs.sr552018-06-1010-34/+326
|
* WinGui: Stub the RemoteInstance implementation of IEncodeInstance.sr552018-06-102-0/+89
|
* WinGui: Split out the encode portion of IHandBrakeInstance into ↵sr552018-06-101-1/+1
| | | | IEncodeInstance. API remains compatible.
* Remove the unused "rows" header from the chapters DataGridSam H2018-06-101-1/+1
|
* WinGui: Add Support for the VCE Encoders.sr552018-06-083-10/+51
|
* WinGui: Rename HandBrake.ApplicationServices back to HandBrake.Interop. It's ↵sr552018-06-0583-159/+159
| | | | moving back to being more of an libhb interop/abstraction library only.
* WinGui: Additional Error Handling in EnumHelpersr552018-06-051-6/+23
|
* WinGui: Open and Save File dialogs on the main window, now have their own ↵sr552018-05-243-19/+65
| | | | "MRU" initial directory target. #1353
* WinGui: Don't allow subtitle import before a source has been scanned.sr552018-05-244-1/+22
|
* WinGui: Add support for dropping .srt files onto the main window. When you ↵sr552018-05-243-15/+62
| | | | do this, the Subtitles tab is activated and a subtitle track for each file dropped will be added.
* WinGui: Potential Fix for #1288 Crash in the TreeViewHelper when selecting ↵sr552018-05-181-0/+5
| | | | presets.
* WinGui: Fix an issue with the Add preset window that prevented it from ↵sr552018-05-182-3/+19
| | | | updating existing non-built-in presets. #1333
* WinGui: Some more backend work for the upcoming Queue redesign.sr552018-05-183-16/+67
|
* WinGui: Improved behaviour of the Add Selection to Queue Window. Can now be ↵sr552018-05-162-4/+19
| | | | resized to full screen and also now supports spacebar selection once a record is selected to toggle the selection checkbox. Fixes #1341
* WinGui: Make the error checking more aggressive when adding to queue. Add ↵sr552018-05-093-5/+50
| | | | support for bailing out if batch adding and errors occur.
* WinGui: Remove Logging abstraction from the Services library. Let the ↵sr552018-05-0814-19/+673
| | | | library consumers decide how to log instead utilising the log events instead.
* WinGui: Remove some unnecessary version / bitness calls in the Services library.sr552018-05-083-4/+4
|
* WinGui: Update Version Numbers around the application / Installer. Update ↵sr552018-05-064-9/+9
| | | | the Installer to download .NET 4.7.1 if missing.
* WinGui: Tidy-up some erroneous namespaces.sr552018-05-063-6/+0
|
* WinGui: Remove Non-Build Dependancy on Stylecop.Analyzerssr552018-05-062-6/+0
|
* WinGui: Upgrade to Json.NET 11.0.2sr552018-05-062-4/+3
|
* WinGui: Upgrade to Caliburn Micro 3.2.0sr552018-05-062-13/+9
|
* WinGui: Remove references to System.Drawing from Alpha.ApplicationServices. ↵sr552018-05-062-1/+32
| | | | The WPF project now has a conversion utility to take the raw byte[] to convert to bitmapimage.
* WinGui: Upgrade to .NET Framework 4.7.1sr552018-05-062-2/+2
|
* WinGui: For MP4 files, when subtitles are incompatible and we've already ↵sr552018-05-061-0/+5
| | | | used a burn-in track, drop all additional subtitle tracks instead of adding them.
* WinGui: Fix Tabbing behaviour on the main tab control. Fixes #1313sr552018-05-011-1/+1
|
* WinGui: Change the "Picture Size" label to "Dimensions" to avoid confusion ↵sr552018-05-012-2/+2
| | | | on the Add Preset View. #1309
* WinGui: Fix an issue where the "When Done" would prevent HandBrake from ↵sr552018-04-291-3/+4
| | | | saving the queue state.
* WinGui: Improve the Number Box control. 1. Add support for Up/Down Arrow ↵sr552018-04-292-2/+11
| | | | to increase/decrease the number. 2. Remove tab stop from the buttons. #1311
* WinGui: Fix some potential null reference exceptions in EnumHelper #1302sr552018-04-231-0/+15
|
* WinGui: Tidy up AudioTrack.cssr552018-04-231-4/+1
|
* WinGui: Add support for setting mixdown, bitrate, sample rate, gain and DRC ↵sr552018-04-233-26/+24
| | | | for the passthru encoder on the audio behaviour screen. This is used for the audio fallback encoder. #1291
* WinGui: Portable Mode: New option to disable startup update check.sr552018-04-233-1/+24
|
* WinGui: Block Installation on 32bit systems.sr552018-04-202-6/+18
|
* WinGui: New start-up command line option. --recover-queue-ids=<command ↵sr552018-04-144-10/+34
| | | | separated id list> to recover specific queue files on startup.
* WinGui: Cleanup the QueueRecoveryHelper and make it a little smarter about ↵sr552018-04-141-66/+52
| | | | how it handles multi-instance.
* WinGui: Some further x86 Cleanupsr552018-04-141-22/+1
|
* WinGui: Tidy up the build system by removing x86 build profiles.sr552018-04-138-449/+36
|
* WinGui: Show Picture Preview on Summary Tab by default.sr552018-04-111-0/+8
|
* option to disable preview on summary tab (issue #1267)Sebastian Janning2018-04-107-4/+62
|
* Fix typoBernhard Reutner-Fischer2018-03-102-2/+2
| | | | | | s/seletec/select/g Signed-off-by: Bernhard Reutner-Fischer <[email protected]>