Alex Viscreanu
Alex Viscreanu
Looking forward to have this available 🙂️
I have started to work on this feature and I have made some progress. First of all I've declared two new attributes alphaChannel (float between 0 and 1.0) and waveBackgroundColor...
Hi @alxrm I've contacted you on telegram. When you have some time please answer me. Many thanks :)
also want to chime in here, as I'm hitting the same limitation in my use case, I've developed a go library that we also want to use as python extension...
also hitting this issue, **only reproducible on linux**, works fine on darwin, both arm64 and amd64 ```shell /usr/bin/ld: /go/pkg/mod/github.com/valyala/[email protected]/libzstd_linux_amd64.a(cover.o): warning: relocation against `stderr@@GLIBC_2.2.5' in read-only section `.text' /usr/bin/ld: /go/pkg/mod/github.com/valyala/[email protected]/libzstd_linux_amd64.a(zdict.o): relocation...
alright, issue found, the c archive for linux amd64 wasn't built with `-fPIC` as the gcc error says as a workaround you can clone this repo, rebuild the `.a` file...
@bezmian Thanks! :)
@radzio Of course, I'll translate the strings as soon as possible. Many thanks for implementing the feature
well... I just realized I can use the `Filter` function 😅 🙈 ```go diff.Filter( func(path []string, parent reflect.Type, field reflect.StructField) bool { return field.IsExported() }, ) ``` hmm... I guess...
while I was aware of the `diff:"-"` struct tag I don't want to keep track of this and make sure to add it every time we add an unexported field;...