Liu Xiaoyi
Liu Xiaoyi
I've met with the same error. In my case, it was caused by BOM in the beginning of the CUE file (so the parser fails at three unrecognizable character, followed...
Maybe metaflac needs --no-utf8-convert Adding that option, together with importing tags from file, worked for me when tags contain cjk characters with metaflac. When using curtag.sh for batch tagging, I...
Yes. It seems like when building using CMake (which is what ArchLinux is doing), flac never uses LANGINFO (Compare https://github.com/xiph/flac/blob/master/CMakeLists.txt with https://github.com/xiph/flac/blob/master/build/config.mk#L157) I'm going to open an issue there. Thanks...
I just manually added -DHAVE_LANGINFO_CODESET into flac's CMakeLists.txt. This is the test result (the newly built version sits in /usr/local) ``` ➜ tmp metaflac test.flac --set-tag=ARTIST=喵 ➜ tmp metaflac test.flac...
For anyone who is using gcc 8 and met this issue, and is willing to use c++1y features, you may change the definition of the route function to use auto...
Sorry, there was some other configuration that overrode the weight setting. Typst was apparently working fine with Source Han Sans. --- ~~Seeing the same problem with some CJK fonts. The...
Maybe another idea: When walking the directory subtree rooted at `p` (the argument `path` in PathRef.apply), use each file's relative path to `p` to update the digest. The reasoning is...
I'm trying to get minimal implementations of both approaches tested: - Add `PathRef.rel(base: os.Path, path: os.RelPath, quick: boolean)` (https://github.com/CircuitCoder/mill-scala/commit/37cafd741639d3cc218d91e4edb6c0a89ed8ec01). Also, the default `ScalaModule.allSourceFiles` was changed to `PathRef.rel` for testing purposes....
OK I'll look into that when I have some time. Right now, the measured width is only used for clearing printed lines in select/sort/mult_select. If we switch to `textwrap`, are...
@sequencer Is it sufficient to have a `extra-type` in port instantiations, which will result in a corresponding signal generated in the port? ``` mem m1: port r1: extra-type => {meow:SInt,...