Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | stream: fix building of subtitle list in PES files | John Stebbins | 2019-07-31 | 1 | -1/+1 |
| | | | | | a very old cut & paste error. people must not use subtitles in PES much ;) | ||||
* | MacGui: don't send the search pass progress to the Finder progress bar. | Damiano Galassi | 2019-07-31 | 1 | -1/+2 |
| | |||||
* | Fix some typos (#2202) | Nomis101 | 2019-07-31 | 50 | -70/+70 |
| | | | Fix some typos | ||||
* | LinGui: make chapter list rows non-selectable | John Stebbins | 2019-07-30 | 2 | -0/+2 |
| | | | | I.e. do not highlight the entire row when clicked with the mouse | ||||
* | LinGui: change chapter list to GtkListBox | John Stebbins | 2019-07-30 | 13 | -2434/+517 |
| | | | | | | | | | GtkListBox is more flexible than GtkTreeView. It is possible now to process key press events without creating a custom text cell renderer. Also due to the way event handling changes in GTK4, it was no longer even possible to create a custom cell renderer that can process key events. So this GtkListBox implementation is compatible with GTK4. | ||||
* | LinGui: fix build error on ubuntu bionic | John Stebbins | 2019-07-30 | 1 | -23/+20 |
| | |||||
* | MacGui: add a preference to automatically clear completed queue items. | Damiano Galassi | 2019-07-30 | 4 | -28/+51 |
| | |||||
* | MacGui: set the progress labels to a monospaced digit font. | Damiano Galassi | 2019-07-30 | 3 | -5/+19 |
| | |||||
* | MacGui: add a nicer icon to the details toolbar button. | Damiano Galassi | 2019-07-30 | 4 | -4/+29 |
| | |||||
* | LinGui: gtk4 port, use rotation transform in settings stack | John Stebbins | 2019-07-29 | 1 | -1/+1 |
| | | | | Because we can :*p | ||||
* | LinGui: gtk4 port, fix reading/writing GtkSpinButton text | John Stebbins | 2019-07-29 | 6 | -49/+25 |
| | | | | | In GTK4, GtkSpinButton is no longer a subclass of GtkEntry. Must use GtkEditable APIs in GTK4 | ||||
* | LinGui: gtk4 port, minimize appearence of tool bar separators | John Stebbins | 2019-07-29 | 1 | -14/+6 |
| | | | | | | | These are not supposed to be visible, but gtk4 is not respecting the "draw" property of GtkSeparatorToolItem. When this is fixed, I can restore proper spacing between "Open Source" and "Add To Queue" toolbar buttons. | ||||
* | LinGui: gtk4 port, fix summary tab preview image scaling | John Stebbins | 2019-07-29 | 4 | -42/+57 |
| | | | | | | | | | | | | GTK4 added a new widgit GtkPicture that is almost identical to GtkImage. The main difference appears to be that GtkImage now scales down the size of the given pixbuf using some undocumented algorithm. It's filling some of the space available, but not all of it. But it isn't a hard size limit because making the window bigger continues to make the image bigger. GtkPicture shows the pixbuf unscaled as expected. So use GtkPicture for the preview image :*( | ||||
* | LinGui: gtk4 port, fix search in language combo box | John Stebbins | 2019-07-29 | 2 | -9/+57 |
| | | | | language search requires key-press handling which changed in gtk4 | ||||
* | LinGui: disable gtk4 key-press handling for chapter list | John Stebbins | 2019-07-29 | 2 | -2/+9 |
| | | | | | | | | | gtk4 makes it very difficult to handle key-press in a GtkCellRenderer I will need to rewrite the capter list as a GtkListBox instead of a GtkTreeView to re-enable this. key-press handling is used here to automatically move to the next chapter when finished editing the current | ||||
* | LinGui: add queue row delete key handling for gtk4 | John Stebbins | 2019-07-29 | 1 | -0/+38 |
| | | | | | Event handling in gtk4 is substantially different than gtk3. This restores handling of delete key on queue rows in gtk4 port | ||||
* | LinGui: use GtkNotebookPage in gtk4 ui description | John Stebbins | 2019-07-29 | 1 | -383/+379 |
| | | | | This is the modern gtk4 way... | ||||
* | LinGui: remove ubuntu 18.10 (cosmic) snapshots | John Stebbins | 2019-07-29 | 1 | -15/+0 |
| | | | | Cosmic is EOL so launchpad no longer accepts build requests | ||||
* | MacGui: refactor the preferences keys and autonaming methods; fix the queue ↵ | Damiano Galassi | 2019-07-29 | 31 | -449/+555 |
| | | | | when running multiple HandBrake instances; fixed a number of bugs. | ||||
* | WinGui: Force set FastDecode = false for x265. It's only an option under the ↵ | sr55 | 2019-07-28 | 1 | -1/+2 |
| | | | | dropdown, not an additional set. Fixes #2211 | ||||
* | MacGui: add file size to the statistics. Fix selected text color when dark ↵ | Damiano Galassi | 2019-07-28 | 5 | -24/+59 |
| | | | | mode is enabled. | ||||
* | WinGui: Better formatting for encode times | sr55 | 2019-07-27 | 3 | -4/+4 |
| | |||||
* | MacGui: show statistics for completed jobs. | Damiano Galassi | 2019-07-27 | 6 | -64/+196 |
| | |||||
* | MacGui: improve queue labels when multiple jobs are selected; fix some bugs. | Damiano Galassi | 2019-07-27 | 18 | -220/+488 |
| | |||||
* | LinGui: WIP gtk4 support | John Stebbins | 2019-07-26 | 15 | -1104/+9123 |
| | | | | | | | | | | | | | | | | Known issues and todo: notebooks, use GtkNotebookPage semantics in ui file fix keypress delete in queue_list fix dest_file grab-focus? (highlight of filename for editing) focus-in/out with GtkEventControllerKey preview_state_cb how to handle icon-ified preview? preview_configure_cb, saving preview window size? accelerator alt-d grab-focus destination key-press-event in chapter list, ghbcellrenderertext -> GtkEventControllerKey Why doesn't summary preview image scale correctly? "System" in about dialog? why is the tab there when "system" prop not set? GtkSeparatorToolitem seems to ignore "draw" prop? | ||||
* | MacGui: store queue items statistics. | Damiano Galassi | 2019-07-25 | 7 | -2/+114 |
| | |||||
* | MacGui: improve queue init. | Damiano Galassi | 2019-07-25 | 2 | -75/+102 |
| | |||||
* | LinGui: fix build error when update checks enabled | John Stebbins | 2019-07-22 | 1 | -1/+2 |
| | | | | Fixes https://github.com/HandBrake/HandBrake/issues/2207 | ||||
* | contrib: Update to x265 3.1.1. | Bradley Sepos | 2019-07-20 | 8 | -108/+20 |
| | |||||
* | MacGui: fix file menu validation. Closes #2200. | Damiano Galassi | 2019-07-20 | 1 | -2/+2 |
| | |||||
* | MacGui: fix a number of queue regressions. | Damiano Galassi | 2019-07-20 | 10 | -78/+80 |
| | |||||
* | MacGui: add a NSString extension to create monospaced strings. | Damiano Galassi | 2019-07-20 | 2 | -1/+33 |
| | |||||
* | MacGui: add inline progress status and bar in the queue. | Damiano Galassi | 2019-07-20 | 11 | -58/+185 |
| | |||||
* | build: Change hardening logic from None to False in configure.py. | Nomis101 | 2019-07-19 | 1 | -2/+2 |
| | |||||
* | MacGui: revert 8d5f8fc7f55d45a082efd5c624c04b84118fb2b5 because it breaks ↵ | Damiano Galassi | 2019-07-19 | 1 | -1/+1 |
| | | | | other links to specific topics pages. | ||||
* | MacGui: refactor the queue and implement part of the new queue ui. | Damiano Galassi | 2019-07-19 | 23 | -1624/+2181 |
| | |||||
* | LinGui: fix spacing between preset menu button and settings stack | John Stebbins | 2019-07-18 | 1 | -0/+1 |
| | |||||
* | LinGui: make "clear completed queue items" pref consistent with WinGui | John Stebbins | 2019-07-17 | 1 | -20/+18 |
| | | | | | move to "General" preferences pane make text consistent | ||||
* | stream: add support for eia 608 subtitle tracks | John Stebbins | 2019-07-17 | 1 | -0/+7 |
| | | | | | | | eia 608 embedded in video was supported (i.e. ffmpeg frame side data AV_FRAME_DATA_A53_CC), but not as it's own track. Fixes https://github.com/HandBrake/HandBrake/issues/1300 | ||||
* | WinGui: Show Day long encodes in hours consistent with the other UIs | sr55 | 2019-07-16 | 5 | -15/+19 |
| | |||||
* | WinGui: Support Encode Time in days. #523 | sr55 | 2019-07-16 | 2 | -2/+7 |
| | |||||
* | MacGui: Set /docs rather than /docs/en/1.2.0 for the documentation. Better ↵ | sr55 | 2019-07-16 | 1 | -1/+1 |
| | | | | for presenting multiple languages. Fixes #1927 | ||||
* | LinGui: Reduce disk monitoring free space limit to 2GB | John Stebbins | 2019-07-15 | 1 | -1/+1 |
| | |||||
* | Fix dropped audio when embedded CC sub is selected | John Stebbins | 2019-07-15 | 4 | -5/+10 |
| | | | | | | | The subtitle ID assigned to CC embedded in video collided with regular track IDs in some file types. Fixes https://github.com/HandBrake/HandBrake/issues/2103 | ||||
* | WinGui: Since the UI now has active storage space left monitoring, set the ↵ | sr55 | 2019-07-14 | 1 | -1/+1 |
| | | | | default to 2GB rather than 10GB. Users can up this if they desire. | ||||
* | WinGui: Remove the experimental embedded queue. It's not been working right ↵ | sr55 | 2019-07-14 | 12 | -397/+9 |
| | | | | for a while and I don't intend to develop it out. | ||||
* | LinGui: update preset save dialog "Dimensions" label | John Stebbins | 2019-07-12 | 1 | -1/+1 |
| | | | | | Make it consistent with other UIs Fixes https://github.com/HandBrake/HandBrake/issues/1309 | ||||
* | dvd: remove dvd specific details from hb_title_t | John Stebbins | 2019-07-12 | 6 | -300/+289 |
| | | | | This information isn't needed by the frontends and pollutes the API | ||||
* | hb_json: don't fail if audio is invalid for mux | John Stebbins | 2019-07-12 | 1 | -6/+13 |
| | | | | Just drop the track. If audio is 'none' drop silently. | ||||
* | WinGui: Level support for x265 | sr55 | 2019-07-12 | 1 | -1/+2 |
| |