BlazingTwist
BlazingTwist
### The Problem We have quite a few schematics on our server. The flattening of subdirectories in particular makes it near impossible to navigate these.  ### A Solution Litematica...
I noticed that while `G` works great, `.G` does not. Example: `"C:\abs\file.txt" :& G \ "_2"+ 0 .G` (which should copy the file content into `C:\abs\file.txt_2`) instead results in ```...
https://github.com/uklimaschewski/JMXWrapper/blob/80fad1cb25a7af68ba412c298ca11e7edc979eca/src/com/udojava/jmx/wrapper/JMXBeanWrapper.java#L637 and https://github.com/uklimaschewski/JMXWrapper/blob/80fad1cb25a7af68ba412c298ca11e7edc979eca/src/com/udojava/jmx/wrapper/JMXBeanWrapper.java#L653 The description is updated if the annotation without a description is found first. However the sortValue is not updated. ### Example ```java @JMXBean(sorted=true) public class MyBean {...
The readme example: ```java @JMXBean(description = "My first JMX bean test") public class MyBean { int level = 0; @JMXBeanAttribute(name = "Floor Level", description = "The current floor level") public...
While trying to use aya-digit I noticed that `"model.json" json.load` fails on windows. I've used `FileUtils.resolveFile` where it seemed appropriate. (relates to #93 ) I initially thought this fix only...
## Breaking changes I have separated the `:{plot.plot}` `subplots` option into a separate instruction `:{plot.multiplot}` My justification for that is: the option was not documented, and mixing single-plots with multiplots...
#92 introduced an issue where the IDE seems to deadlock itself when opening Swing UI while running code from the editor. ### Steps to reproduce - put `"test" .U` in...
### Unresolved Starting with Java 11, localization is behaving weirdly and causes tests to fail. Despite `mvn --version` showing `Default locale: en_GB`, when running tests I get failures such as:...
Currently `:(json.loads)` and `:(json.dumps)` only support JSON Objects. RFC-7159 states > JSON-text = ws value ws > value = false / null / true / object / array / number...
BREAKING: - `sys.file_exists` was renamed to `sys.isfile` to match the existing `sys.isdir` instruction - `sys.mvdir` now overwrites non-empty directories. Previously only empty directories were overwritten. Additions: - `sys.exists` to test...