FC (Fay) Stegerman
FC (Fay) Stegerman
Using `text-icu`, a fix for `errorBundlePretty` seems pretty easy: Change ```haskell rpadding = replicate rpshift ' ' ``` to ```haskell rpadding = [ if isWide c then ' ' else...
I get that. In that case I see 4 options: 0. ~don't do anything~ 1. add the `text-icu` dependency (easy but not ideal) 2. add code for EAW directly (ugly)...
I wrote a few lines of python to generate the relevant code point ranges: ```py #!/usr/bin/python3 import itertools as IT, unicodedata as UD def grouper(iterable, n): args = [iter(iterable)] *...
This is a [bug in kivy](https://github.com/kivy/kivy/pull/7244).
[A fix has been merged (in kivy master).](https://github.com/kivy/kivy/pull/7257)
AFAIK it's fixed, but you need to use `kivy==master,python3==3.9.1,hostpython3==3.9.1` (for now).
@Ratulhasan14789 You also need `p4a.branch = develop`. And the second paste you linked gives me a 403 error.
Unfortunately, the fix in `kivy` didn't make it into `2.0.0`. ATM you need to use `master`.
NB: this regression [also affects f-droid](https://gitlab.com/fdroid/fdroidserver/-/issues/1024) (which uses apksigcopier for reproducible builds). cc @eighthave
> Oh I see, you were linking just to the particular one line of the change. :) If undoing just line itself is the fix, great. It sounds like we...