Naglis Jonaitis
Naglis Jonaitis
I am experiencing the same. I've played with available configuration options and found that reducing the `buffer_time` inside `audio_output` config block alleviates the problem for me. I am using ALSA...
IIUC there is a bug [here](https://github.com/charmbracelet/bubbles/blob/95d7be54d9d4cdd73cd36e31e64b67965d517d68/list/list.go#L739) when `SetItems()` (or other method which modifies items and calls `updatePagination()`) would result in the pagination being shown (or hidden, if items are being...
@dvdsk it seems that some changes from my comments were lost at some point, [e.g. the example](https://github.com/RustAudio/rodio/pull/513/files#r1356832570) is still broken (uses incorrect path). Could you please check?
It seems the issue was resolved?
`project_parent`: #1103
Suggestions: - Move `nameInput.Blur()`/`noteInput.Focus()` to where the step is incremented. Now these methods are called each time a key is pressed when `noteInput` is focused. - `noteInput.Focus()` returns a command....
Regarding the above example: ```go type model struct { client Client ctx context.Context } ``` Please note that [`context` documentation](https://pkg.go.dev/context#pkg-overview) suggests to avoid storing contexts inside structs: > Do not...
Tested using [this EPUB](https://github.com/user-attachments/files/16302507/missing_quote.epub.zip). With versions 4.0.1 through 4.2.6 I get two errors: ``` Validating using EPUB version 3.0.1 rules. FATAL(RSC-016): missing_quote.epub/OEBPS/1.xhtml(10,26): Fatal Error while parsing file 'The value of...
> but we catch and log all exceptions (as you've already pointed out) [here](https://github.com/freedomofpress/dangerzone/blob/7c4e62954f4ee71726de0a23655c8f791f05f290/dangerzone/isolation_provider/base.py#L90-L94) FWIW, I've ran into this in CLI tests when dummy conversion is used. The `Dummy` isolation...
Indeed. IIUC this wrapping handler should also mark the document as failed upon exception (if it was not done already) to correctly [report it](https://github.com/freedomofpress/dangerzone/blob/94179a1d91a3adc993fdf9b32e7311901dade939/dangerzone/cli.py#L108-L111) at the end.