Ronel M

Results 17 issues of Ronel M

Fixes an issue that causes the OpenVPN connection to not allow access to other IPs within the 10.0.0.0/8 range, so that only 10.8.0.0/24 will be redirected.

With the current configuration, all IPs on the 10.0.0.0/8 range will be redirected by the OpenVPN connection (and thus certain intranet-based IPs cannot connect without disconnecting the tunnel). This change...

Please replace: ```java String json = Json.encode(message); ``` with: ```java Jsonb jsonb = JsonbBuilder.create(); // this could also just be a bean? String json = jsonb.toJson(message); ``` com.sun.faces.util.Json.encode only contains...

Tested using 2.1.2 and 2.0.2 ![image](https://user-images.githubusercontent.com/12634987/217251518-b8336b84-147b-42a8-b195-b107b3525713.png) Workaround: Instead of using a string array/list, use a list of an array containing the string using `[[your_string]]`. ![image](https://user-images.githubusercontent.com/12634987/217253419-af0ff9f4-e8dd-4bcd-b46a-b9d09a88c490.png)

As originally referenced on #138, when certain Unicode are entered into a text field with Wingdings as its font, font rendering fails entirely. To directly put these on MSE, Character...

[Enhancement Request] Add an escape sequence for any unicode character (that follows UTF-8), like `\u0081` for `HOP`. [Use Case] Since we have `` tags, I wanted to add wingdings on...

There is an issue with `card_style.field.content_height` being inconsistent (migrating from MSE 2.0.2), until either a new card is loaded (but it's still incorrect) or the field's card text value is...

Swap to native AOT, introduced since NET 7.0. After performing the initial tests, it's been determined that CommandLineParser cannot be used for Native AOT.

Part of a long term goal for completely replacing HOTC as a codestyle. The idea is to be able to parse any card text (from any card style or any...

enhancement

[Format] `./wstools update rid1;rid2;rid3 postprocessoralias1;postprocessoralias2` This command allows you to update cards that already exist in your `./cards.db` using already existing card post-processors. This will not skip the compatibility phase...

enhancement