Null Std

Results 11 comments of Null Std

To resolve the error temporarily, copy the drivers manually instead of using `Add-VMGpuPartitionAdapterFiles`. Comment out the line calling `Add-VMGpuPartitionAdapterFiles` in `CopyFilesToVM.ps1` Follow instructions in https://mu0.cc/2020/08/25/hyperv-gpupv/ > 3. Copy the appropriate...

I recently also met this problem, the root cause should lie in how this plugin handles `certRaw` generated from user inputs on Android, is there a way to show the...

I agree with @Mygod , it's OK to use `\n` in JSON string. Also when I tested self-signed certificate using the build from this `https://circleci.com/gh/shadowsocks/v2ray-plugin/20#artifacts`, I tried both `cert` and...

The root cause should be this: After user inputs the PEM format certificate, the following code removes all the `\n` in it, which is wrong. To generate valid certificates from...

The problem is not only about the begin end lines, removing all the `\n` in raw certificate file violates the PEM certificate file format. Therefore if control characters are not...

Here is the code related to `certRaw` from `v2ray-plugin`: https://github.com/shadowsocks/v2ray-plugin/blob/59b8f4fc46c7be399dad0620121a89efa656dc9c/main.go#L185-L191 ``` } else if *cert != "" || *certRaw != "" { certificate := tls.Certificate{Usage: tls.Certificate_AUTHORITY_VERIFY} certificate.Certificate, err = readCertificate()...

Mine does show the configuration dialogue properly, have you tried switching the system language to English? @ccloli

I submitted #22 to fix this issue. And another PR is also necessary to fix this: https://github.com/shadowsocks/v2ray-plugin/pull/190 Could you help review and merge that fix? @Mygod