View last successful build
Branch#StatusChangesFinished
master#4043Tests passed: 715, ignored: 13
  • Improve Sublime3 Syntax-Highlighting (#1260) Remove manual list of keywords, and only use the auto-generated list of keywords with better scope. Co-authored-by: Ecconia <public-commit@ecconia.com> (e5be77ad by ecconia)
2 years ago
master#4042Tests passed: 715, ignored: 13
  • Fix Sublime3 Syntax-Highlighting (#1259) '= was recognized as keyword, instead of a quote start. Now quotes (and comments) will be checked first, before detecting keywords. Co-authored-by: Ecconia <public-commit@ecconia.com> (29663260 by ecconia)
2 years ago
master#4040Tests passed: 715, ignored: 13
  • Add get|set_projectile_item() (4d95cea7 by pseudoknight)
  • Add missing throwable for parse_text_table() (e501e6a3 by pseudoknight)
  • Use a simpler, more reliable method to locate java (e9e5cc5d by ladycailin)
  • Fix indentation (6f5e1d89 by ladycailin)
  • Add encoding parameter to read and others. (a955f1e5 by ladycailin)
  • Add parse_text_table() (80f18e6c by ladycailin)
2 years ago
master#4035Tests passed: 715, ignored: 13
  • Add installer location to documentation (f1dd95e0 by ladycailin)
2 years ago
master#4034Tests passed: 715, ignored: 13
  • Create standalone Windows installer for cmdline. This uses NullSoft Scriptable Install System to create the executable, which is fully contained and downloads the necessary files, including Java, from the internet. This prevents the installer itself from needing to be updated on each update. Eventually, the installer should be signed, but for now it's unsigned, causing various scary warnings upon installation. In any case, the installer code itself works, as well as the installer. (9b7e742e by ladycailin)
2 years ago
master#4033Tests passed: 715, ignored: 13
  • Initialize preferences before Telemetry nag Initialize preferences before relying on them in telemetry nag code in several cmdline tools. Fixes #1255. (5e04ddf7 by pieter12345)
2 years ago
master#4032Tests passed: 715, ignored: 13
  • Update WinRegistry for Java 11+ Fixes #1252. (60f1a262 by pieter12345)
2 years ago
master#4031Tests passed: 715, ignored: 13
  • Update WinRegistry for Java 11 (e8f6e5ec by ladycailin)
2 years ago
master#4030Tests passed: 715, ignored: 13
  • Fix several complex_try raw compile exceptions (#1254) Fix several raw compile exceptions caused by invalid try/catch MethodScript syntax. Note that the checks performed in this optimization method should eventually be split into postParseRewrite or the try keyword parsing and typechecking. Fixes #1253. (2ca7f5e0 by pieter12345)
  • Document ba_put and ba_get signedness Update documentation to include that `ba_put_X` and `ba_get_X` for bytes, shorts, integers and longs uses signed values. (78be6f01 by pieter12345)
  • Fix boilerplate failure (714a6a00 by pseudoknight)
  • Add fallback to method not in older Spigot versions (2afb49e9 by pseudoknight)
  • Add potion_splash event (Closes #791) (60a08061 by pseudoknight)
  • Address deprecation warnings in tests (cce9d74b by pseudoknight)
  • Add missing minecart types to set_entity_spec() (af47c7d9 by pseudoknight)
  • Fix missing newlines in register_command example (bd2bfd0f by pieter12345)
  • Fix sugared foreach() syntax parsing - Fix `foreach(... in ...)` and `foreach(... as ...)` syntax parsing. Bug was introduced in build 4024. - Make `foreach` use `__statements__` as in-between rewrite node instead of `sconcat`. No functional changes. (a96d3afb by pieter12345)
  • Don't parse __autoconcat__ to sconcat in strict mode Parse `__autoconcat__()` to the new `__statements__()` instead of `sconcat()` in strict mode. `__statements__()` takes arguments of any type and returns `void` for typechecking, so compile errors will be generated in cases where `__autoconcat__()` used to insert `sconcat()`s, or in other words, where the user has either forgotten to put some `.` concat, or where the user has made a mistake. This change does not affect non-strict mode, as automatically inserting concats is a feature there. Alias syntax should also remain possible in strict mode, but only when the whole alias is nicely concatenated together by the user. Inserting multiple arguments/statements will cause the code block to be interpreted as a statements block and not as an alias redirect. (69f6baa6 by pieter12345)
  • Update ResourceManager.java Provide a more detailed description in res_create_resource (e36e76df by ladycailin)
  • Merge pull request #1250 from Lildirt/hanging_place Add hanging_place event (6a68260e by michael smith)
  • Add hanging_place event (cbb47d72 by lildirt)
  • Merge pull request #1249 from Lildirt/attack_cooldown Added pattack_cooldown(). (612736e5 by michael smith)
  • Brace ternary and add CRELengthException to throwables. (1b3af529 by lildirt)
  • Added pattack_cooldown(). (3942d278 by lildirt)
  • Bump junit from 4.12 to 4.13.1 (#1248) Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. - [Release notes](https://github.com/junit-team/junit4/releases) - [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.12.md) - [Commits](https://github.com/junit-team/junit4/compare/r4.12...r4.13.1) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> (f5ecef53 by dependabot[bot])
  • fix: pom.xml to reduce vulnerabilities (#1243) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JAVA-ORGYAML-537645 (70a3bc51 by snyk bot)
  • Add HIDE_DYE item meta flag (41c54ddf by pseudoknight)
  • Add block_explode event (2c666b7d by pseudoknight)
  • Fix split() for strings ending with the split Allow `split()` (and non-regex `reg_split()`) to match the split on the last possible part of the string as well. Fixes `split('b', 'ab')` resulting in `{'ab'}`, rather than `{'a', ''}`. (b780a89b by pieter12345)
  • Merge pull request #1240 from Murreey/day-functions Add get/set functions for world day (cdc6c62a by michael smith)
  • Add get_world_day (2cac88e3 by murray coghill)
  • Add set_world_day (ed12160b by murray coghill)
  • Fix cmdline install tool unsupported OS check `OSUtils.GetOS()` cannot return null, so the previous check never triggered. (5a471148 by pieter12345)
  • Fix entity_unleash reason in event docs (ea2e3e27 by pseudoknight)
  • Add support for Minecraft 1.16.2 (7b0aad6f by pseudoknight)
  • Fix NPE in LangServ while generating environment (#1237) Fix NPE in LangServ while generating the environment without having a profiles file in the MethodScript directory. This fix creates an empty ProfilesImpl, such that any usage of the Profiles object will simply be like if the profiles file were empty. (55a5e0a6 by pieter12345)
  • Handle exceeding max string size in string_multiply - Detect when exceeding max string size in `string_multiply` and throw a `RangeException` when that happens. - Optimize `string_multiply` implementation. Fixes #1234. (60f238b7 by pieter12345)
  • Fix smart strings being rewritten to non-strings Rewrite smart strings to either a `concat()` of their string and variable parts, the string itself if no variables are present, or a `string()` cast variable if it consists of a single variable. This ensures that smart strings will always have have the `string` type in user code. Fixes #1232. (4ef81cc4 by pieter12345)
  • Fix '@' escaping in smart strings Pass literal `\` as literal `\\` to `__smart_string__`, so that `__smart_string__` can disambiguate between `"\@"` and `"\\@"`, rather than getting the same input for both. As this function is an internal compiler function, and users that do use it would now have to pass double escaped `\` into the function to make it work properly, the function has also been renamed to `__smart_string__` to fit the other compiler functions. Fixes #1229. (1dd871ee by pieter12345)
  • Add entity_unleash event (#1227) (566f8c72 by malonnnn)
  • Move static final function names to function classes - Move static final function names to the static final `NAME` field in their corresponding function classes. - Add a test that validates that when a `NAME` field exists in a function class, it will return the same value `func.getName()` returns. (bf4419a9 by pieter12345)
  • Centralize function name references Replace all hard-coded string function names and `new funcClass().getName()` with a static final field in the `Function` class. This puts all 'static' function references in one place, allowing for shared function name caching and an easier way to find all references to a certain function. (bcf811d9 by pieter12345)
  • Persist running `x_new_thread` threads over recompiles (#1224) Make threads remove themselves from the active threads map when they finish execution, rather than when the construct containing the thread ID string gets garbage collected. (3512ac46 by pietje)
  • Merge pull request #1223 from Pieter12345/delay-keyword-compile-errors Allow keywords to be part of other syntax (1747e2f5 by pietje)
  • Don't remove if keyword on process error Prevent the `if` keyword from removing itself from the AST when it fails to parse. This allows us to generate an error for it later, if it is not handled as part of some other syntax. (980bd983 by pieter12345)
  • Don't rewrite AST on try keyword process error Rewrite the `try` keyword processor to not make changes to the AST unless it can finish parsing without exceptions. (1dcd0cb8 by pieter12345)
  • Allow keywords to be part of other syntax Allow keywords to be part of other syntax than their keyword processing code is written for. An example is code `array(static: 1)`, which generates a compile error when attempting to process the keyword `static`, while it is actually part of valid `array()` syntax. Fixes #1220. (f496a780 by pieter12345)
  • Create AbstractCompileException This exception should be used as parent exception for compile exceptions, and can be useful to handle any compile exception in a single catch clause. (f44e6f58 by pieter12345)
  • Accept null arg in psend_block_change() to send existing block (0b00fc75 by pseudoknight)
  • Fix cast exception for fireworks in projectile events (7d6c37a7 by pseudoknight)
  • Add 'unexpected keyword/label' compile errors Add "unexpected keyword" and "unexpected label" compile errors to static analysis. The caught cases are considered syntax errors and already caused a more generic 'fallback' compile error in static analysis. (9c887c8d by pieter12345)
  • Add class name conventions (68e56fe9 by ladycailin)
  • resource -> Resource *Probably* no one was using this? The impact should be very low at this point at least, but the longer we wait, the more impact it will have, so I'm going ahead and making this hard cut now. (5b26f52a by ladycailin)
  • Fix NPE in static analysis on re-including empty files Fix a NullPointerException that occurs in static analysis when a file is included after an empty file has been dynamically included. Fixes #1221. (e83eed22 by pieter12345)
  • Proc arguments handling optimization Set passed proc arguments first and then fill in the default values for the remaining arguments, rather than setting all default values and overwriting them with the passed proc arguments. (1789f79a by pieter12345)
  • Fix proc @arguments order Fix procedure `@arguments` order in the case that the procedure contains more arguments than the procedure call passes to it. This is only noticable when default argument values are given, since otherwise the order wouldn't matter. Fixes #1197. (18d26d2e by pieter12345)
  • Fix post parse AST rewriting for single-function scripts Fixes post parse AST rewrites not using the rewritten AST for scripts with a single root function that is rewritten. Fixes #1219. (b752e1bb by pieter12345)
  • More feature for multithreading (#1214) * More feature for multithreading * Fix docs * Fix x_thread_is_alive thrown * Separation x_is_interrupted([id], [clearFlag]) * Interrupted status -> interrupt status * Fix docs core.functions.Threading * Fix docs x_clear_interrupt and x_is_interrupted (7df115a3 by udartsev anatoliy)
  • Fix bugs in localization ui (f4b78d7f by ladycailin)
  • Add CRIMSON_FUNGUS and WARPED_FUNGUS tree types (1a5ff308 by pseudoknight)
  • Add 'anchor_spawn' boolean to player_spawn event (c8c2794d by pseudoknight)
  • Add compass item meta (52b1b1c8 by pseudoknight)
  • Add SWAP_OFFHAND click type in inventory_click event (eba81c00 by pseudoknight)
  • Add Strider's 'saddled'; Item Frame's 'fixed' and 'visible' to entity_spec() (4b7613f9 by pseudoknight)
  • Fix legacy material builder on pre-1.16 (6ecc8df6 by pseudoknight)
  • Manage baby state for piglin, zoglin, and hoglin. Fixes wrapper class for zombified piglin. (093c41e0 by pseudoknight)
  • Update entity_explode to reflect changes in the underlying event. A null entity is no longer possible. (deab85b9 by pseudoknight)
  • Add support for Minecraft 1.16 (0fe660db by pseudoknight)
  • Add MCEffect.INSTANT_POTION_BREAK. Remove unused id value from enum. (bc3f00a0 by pseudoknight)
  • Make Script's 'right' field a local variable (625ea38e by pseudoknight)
  • Fix color() docs not listing color names (784191d9 by pseudoknight)
  • Static analysis optimization Increase static analysis performance by creating less unnecessary collections. (41eb7fbe by pieter12345)
  • Update portal events to reflect 1.15.1. Add creationallowed event data. Fix searchradius and creationradius support in 1.13.2. (d835316e by pseudoknight)
  • Add support for SQL Server in query and the PN (#1212) (bbd3adac by ladycailin)
  • Fix header issue in telemetry.ini Use UTC time in the telemetry event (e6fe6c2a by ladycailin)
  • Add metric for static analysis (889d8652 by ladycailin)
  • Update tree_grow event documentation (#1211) Document missing keys. (11c49181 by pietje)
  • Lazily get keyword name from annotation. The name was only used for exception messages, yet this method can be called multiple times per line, which was noticeable in profiling. This improves compile time around 6%. (7afbf9d8 by pseudoknight)
  • Fix duping when getting held item meta on block_place. The item's tags were being modified on read, causing this and probably other lesser issues. This affected shulker boxes, bee nests, beehives, and shields. (d37f1a70 by pseudoknight)
  • Re-use environment for compilation (#1209) * Re-use environment for compilation This is an optimization which uses the same environment to compile multiple msa scripts, rather than creating a new environment every time. Environment creation reads and parses a few files, so this is an expensive operation. * Create StaticRuntimeEnv for static final functionality - Create StaticRuntimeEnv and move functionality from GlobalEnv to this class if it is static and final accross compile units. - Replace reflection in RandomTests test with Mockito, as this allows for the accessed field to be made final like it should. * Use a fresh environment per script Clone the environment for every (msa) script. Since StaticRuntimeEnv returns itself when cloned, its contents act like a cache. * Move test code out of production code Use Mockito to mock unused environment objects instead. * Use cheaper newline replacement in read() There's no need to replace "\n" with "\n". (675fab07 by pietje)
  • Check for associative array usage in spawn_particle Fixes #1210 (ca0531dc by ladycailin)
  • Add new methods in BukkitMCArmorStand (726dd6a8 by ladycailin)
  • Speculative fix for case sensitivity in InjectedPlayers (cc39b8f0 by ladycailin)
  • Fix NPEs in CClassType (#1208) * Fix NPEs in CClassType The CClassType invalidType is cached in a thread-unsafe way. This causes problems when LangServ is performing an operation on the same CClassType, since one thread can start using the Mixed[1] created by the other thread before it is populated with data, getting null when reading its first element. * Switch LangServ back to cmdline mode LangServ is currently running in EMBEDDED mode, which is a refactoring mistake. This commit changes it back to CMDLINE mode. (067118a0 by pietje)
  • Static Analysis patch (#1207) * [SA] Fix exception on invalid typeless variable assign - Fix exception during scope graph generation for assign(var, val) with an invalid variable type. - For default or AUTO declarations, still require the value to be instanceof Mixed to prevent things such as void assigns. * [SA] Fix NPEs in requireIVariable() and requireClassType() Fix NPE in StaticAnalysis.requireIVariable() and StaticAnalysis.requireClassType() that occurs when passing in invalid syntax. Eventually, the parse has to catch these errors and halt compilation such that the AST in further steps only contains valid terms. For now, catch possible NPEs in the later stage and print invalid term classes instead such that it doesn't crash. (d8def74a by pietje)
  • Use cache instead of FunctionList lookups (#1206) Cache the required environments for each function in CFunction and use that for lookups where possible. Also don't do FunctionList lookups where the function is already cached. This makes the flow as follows: 1. postParseRewrite() caches all existing functions. 2. Other compiler steps use the cached functions, or get null when they don't exist. 3. checkFunctionsExist() does a lookup in the FunctionList if the function is not cached, and generates the compile exception if it doesn't exist. (1b754e6a by pietje)
  • Merge branch 'master' of github.com:EngineHub/CommandHelper (d7897501 by pseudoknight)
  • Optimize binds to get Event from BoundEvent when possible. (9f294f4e by pseudoknight)
  • Improved registering/unregistering commands. - unregister_command() will now remove all aliases and prefixed variants of the command, so it is symmetrical with register_command(). - unregister_command() now supports unregistering other plugin's commands. - register_command() will now remove aliases that are no longer in the array, and add aliases that are added to the array. - Improved documentation and examples. (ccb1a64e by pseudoknight)
  • Merge pull request #1205 from Pieter12345/master Fix exception target for single include() exceptions (3661ebd7 by michael smith)
  • Fix exception target for single include() exceptions (47a242a8 by pieter12345)
  • Static analysis (#1198) * Add basic static type checking framework This is still a WIP. A few points to work on: - A solution with less code in Function classes is preferred. - To get the type of IVariables (which are non-existent in the parse tree?), some sort of scoping simulation should be added. - Functions should be able to optimize based on the argument types that they receive. This allows for example sconcat() to not toString() its parameters when passed at least one statement that returns void. * Fix broken javadoc * Move function name validation to its own method Move function name validation out of link() and link() before optimization. * Fix or() typechecking implementation Support 0 to n arguments, rather than 2. * Add static analysis framework Functions that have scoping behavior or functions that make declarations / references to variables/procs/etc should override the linkScope() method. Variable references are already checked at this point, but declarations are not. Comes with a boolean to do or don't do static analysis. This is necessary to run optimization tests that are semantically incorrect. * Implement variable declarations - Creates declarations in the scope graph for variables passed to assign(). - Throws a compile error on variable declarations in places where that variable is already defined. - Converts typeless assigns into declarations of type AUTO when variables are not yet declared, but are being assigned to. * Implement ControlFlow scopes * Implement closure scopes * Implement bind scope * Implement proc scope Proc declarations are being made (without signature), but references are not checked yet. This commit is mainly about the proc declaration scope behavior. * Disable static analysis for 'invalid' tests These tests exist to test other things. Static analysis isn't necessary here. * Disable static analysis for composite functions Composite functions come with an inj... (5c503dbf by pietje)
  • Clean log tests (#1202) * Clean log tests * Clean tests with dyn() (3ef53379 by udartsev anatoliy)
  • Throw NPE on clear_task(null). Fixes #1201 (eeb3b33a by ladycailin)
  • Update public suffix list (cff540be by ladycailin)
  • Fix getting offline players by name in offline mode (9e938ad7 by pseudoknight)
  • Merge pull request #1199 from Anatoliy057/patch-1 Delete duplicates in entity_spec (e680b563 by michael smith)
  • Delete duplicates in entity_spec (822aa4e1 by udartsev anatoliy)
  • Correct exception message for integer() (Fixes #1193) (268cfd4e by pseudoknight)
  • Update make_effect(). This adds data support for material and facing names, and improves documentation. (010a2544 by pseudoknight)
  • Fix reflect_type, add copy button to code on site. Update jQuery. Exclude LLVMFunctions from trying to be site-deployed. Add documentation on options for bind. Rename getSuperclasses/InterfacesForType to getTypeSuperclasses/Interfaces. (53916597 by ladycailin)
  • Fix new assignment not getting the defined target. (e2ab8089 by pseudoknight)
  • Get CommandSender for executeas() and scriptas(). This allows for injected players that are currently offline, which is already a possibility for closures. Also now checks if executeas() has the minimum number of arguments and updates the docs. (Fixes 1194) (309df09d by pseudoknight)
  • Fix extraneous bare string warnings in tests (f111a7a8 by pseudoknight)
  • pass current MCCommandSender on null for executeas (#1195) * pass current MCCommandSender on null for executeas * CH syntax requirements * use current env not the closures (2c6dbab2 by luke fairchild)
  • Implement Booleanish in remaining classes (0a50d664 by ladycailin)
  • Add reflect_type, class_type, and Typing documentation. As part of writing examples for the documentation, I came across the error in #1192, which allowed me to reliably reproduce it, so this fixes #1192 also. (b8a07c42 by ladycailin)
  • Fix negative array index lookup overflow messages (Fixes #1188) (5813d34e by pseudoknight)
  • Fix incorrect ivar redefined error message in loops. (52316a72 by pseudoknight)
  • Fix documentation in reflect_pull (64bc0956 by ladycailin)
  • Add include_dir(). (1e51e2b1 by ladycailin)
  • Checkstyle (62468ea6 by ladycailin)
  • Add .msfileoption support. Add file options to reflect_pull. (324626c2 by ladycailin)
  • Add more tests for define_object (c70037a5 by ladycailin)
  • Checkstyle (095dc258 by ladycailin)
  • Procudure -> Procedure (c54b7011 by ladycailin)
  • Handle void correctly in the procedure type hinting Fixes #1191 (dd3c6627 by ladycailin)
  • Update issues link from youtrack to github (eeb36e7e by ladycailin)
  • Fix iclosure retaining unused cloned variable list. Also adds an iclosure test. (debbde05 by pseudoknight)
  • Fix error for remove_recipe() on Spigot versions earlier than 1.15.2 (bd424bfc by pseudoknight)
  • Add player prefilter to entity_damage_player event (#1189) (71e7ca23 by pseudoknight)
  • Add cmdline mode fuzzer (8ff888dd by ladycailin)
  • Create .cache folder first if it doesn't exist (afd97f94 by ladycailin)
  • Update readme (9fc14f1b by ladycailin)
  • Update readme (55ebb57a by ladycailin)
  • Add remove_recipe(). (#1187) * Add remove_recipe(). * doc clarification Co-authored-by: Lildirt <lildirt@lildirt.com> (64ef2de8 by lildirt)
  • Add pflying(), pblocking(), psprinting() and is_entity_sleeping(). These are more readable than using pinfo(). (8799c64c by pseudoknight)
  • Improve set_blockdata docs (62849f8e by pseudoknight)
  • Add entity immunity functions (1ffa65d0 by pseudoknight)
  • Add "model" item meta key for matching functions (ef8ea789 by pseudoknight)
  • Don't rely on appspot for the site to load. Need to replace this longterm with apps.methodscript.com, but this is a short term fix, and a better approach regardless of which particular site we rely on. (87bf7727 by ladycailin)
  • Nag nag nag. (08d13dc6 by ladycailin)
  • Add support for telemetry This branch adds the ability to send telemetry data to Azure Application Insights. This proxies through apps.methodscript.com however, so in addition to the basic telemetry framework, this also includes the swagger framework, which both the server and the client have autogenerated code for. See the LadyCailin/apps.methodscript.com repo for the server side of this. Telemetry is diabled by default, but nags the user to enable it where relevant. (3c799335 by ladycailin)
  • Fix cmdline file access security checks (#1183) - Bypass Security.CheckSecurity(File) checks in cmdline mode. - Move existing in-cmdline-mode checks before Security checks, since Security checks can throw an IOEx that shouldn't have to occur in cmdline mode. (596a64b5 by pietje)
  • Add missing CommandHelperEnvironments (#1184) Add CommandHelperEnvironment `@api` annotation arguments for Minecraft dependent functions, such that these functions can no longer be used in cmdline mode (and crash due to NoClassFoundDefErrors). (3a7df5ec by pietje)
  • CheckStyle (#1182) Fix CheckStyle violations. (c1fa0522 by pietje)
  • Add x_thread_join (7b89531b by ladycailin)
  • Parallelize startup and deduplicate work at startup. This shaves off about half a second on my system. (dfa23310 by ladycailin)
  • Add player prefilter to pressure_plate_activated event. (1e4034bf by pseudoknight)
  • Improve target for unexpected end curly braces. Fixes EmptyStackException when encountering more than one unexpected end curly brace. (e052ce22 by pseudoknight)
  • fix: Fix bug #1180 misspelled class name (#1181) The DuplicateObjectDefintionException.java class is misspelled, it should be DuplicateObjectDefinitionException.java This commit fixes the class name. Resolves: #1180 (d118a918 by alejandro casado quijada)
  • Finish writing my sente (7833b862 by ladycailin)
  • Add cycle tool, to test the startup and shutdown cycle (33c054cd by ladycailin)
  • Add / at the end (1be2ece4 by ladycailin)
  • Add reflect_pull('dir') (87341338 by ladycailin)
  • Checkstyle (b733ab3b by ladycailin)
  • Add initial llvm framework. This currently mostly just includes the LLVM installer, but also includes a first pass at actually compiling a simple mscript program. The biggest issue right now is actually just figuring out the llvm ir necessary, so I've short circuited this right now, making it currently unusable, but neither the wrapper IR nor the exit() function itself are properly implemented yet anyways. (2064220a by ladycailin)
  • Fix puuid() returning invalid UUID for invalid name. Optimize get_offline_players(). (dd8b5258 by pseudoknight)
  • Fix bug where errors in events in cmdline would fail to render the error properly (c86736df by ladycailin)
  • Fix hidden function issue on the site Fixes #1175 (5026fe9a by ladycailin)
  • Fix class load warnings for extension dependencies (90f7bef0 by pseudoknight)
  • Set alias functions to CommandHelperEnvironment (7592c6e8 by pseudoknight)
  • Ensure server type is set for fast startup modes (6be24775 by pseudoknight)
  • Improve clarity of player event warning. Saying it's "missing" is misleading, and the cause is unlikely to be an NPC anymore. (ef32fe0d by pseudoknight)
  • Improve API docs for clear_commands(), spawn_entity(), and player_interact (15614fde by pseudoknight)
  • Fix spelling (de11f40c by pseudoknight)
  • Add phantom size to entity_spec (b1511e00 by pseudoknight)
  • Finish work on search bar on the site (c06d22fe by ladycailin)
  • fix: pom.xml to reduce vulnerabilities (#1177) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JAVA-COMMONSCODEC-561518 (a02a5bdb by snyk bot)
  • checkstyle (c21eb045 by ladycailin)
  • Site search is 80% complete now (d7b8e99e by ladycailin)
  • Update switch() documentation (#1176) (b063add0 by pietje)
2 years ago
  • «
  • 1
  • »