Andrew Sun
Andrew Sun
- [x] Xposed module compatibility (duh!) - [x] Adaptive icons (launcher, app shortcuts) - [x] Fix double-notification bug
While using `idevicerestore` I noticed that it would fail with `LIBUSB_ERROR_ACCESS` unless run as root. It looks like when the device is rebooted into recovery mode, the udev rules no...
The program should display a link to the readme/wiki detailing the bug. The line to look for is: `add_ffmpeg_subtitle: unknown subtitle stream type: 0x41535320` (`ASS\x20`)
That's probably the most useful option. By default, auto-select the track if there is only one, and use `-u` (or something else) to override this behavior. Right now, this behavior...
This is a pretty unlikely case, but it is possible. For example, if a user has the files `input.m4v` and `input.mkv` in the input directory, the first file will be...
For example: - Attempting to view the parent directory of the disk root - No permissions/network drive - Attempting to create a subdirectory of a file
The problem seems to go away after rebooting. Seems to only occur when running HandBrakeCLI from the script -- using HandBrakeCLI to convert the file manually works fine.
isa-vga [looks for `vgabios.bin`](https://github.com/qemu/qemu/blob/455f4440687fcee03e62d9b17b28162b638458af/hw/display/vga_int.h#L186) which doesn't come with the `seabios` package on Arch (it's called `vgabios-isavga.bin` instead). VGA (pci-vga) on the other hand [looks for `vgabios-stdvga.bin`](https://github.com/qemu/qemu/blob/455f4440687fcee03e62d9b17b28162b638458af/hw/display/vga-pci.c#L387) which works. Current workaround...
Both for the DNS resolver and the main loop.
A lot of code in the kernel uses the following pattern: ``` if (fn() < 0) { return -1; } ``` This discards the error code and replaces it with...