Skip to content

Commit

Permalink
Update version.json and CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mchorse committed Nov 18, 2021
1 parent 48e1bd0 commit dc951c1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## Version 0.1.3

This is a small patch update which fixes a couple of other things.

**Compatible** with McLib **2.3.5**, Blockbuster **2.3** and Metamorph **1.2.9**. It doesn't mean that future versions of McLib, Blockbuster and Metamorph would be incompatible, but older versions are most likely incompatible.

* Added `IScriptServer.getEntity(String)` scripting method
* Added Copy text context menu item to REPL messages, `clear()` function to clear all REPL messages, and `s` variable for fast `c.getSubject()` access within REPL
* Fixed player gets teleported (when they shouldn't) when using `IScriptPlayer.setRotations(float, float, float)`
* Fixed `UILayoutComponent.width(int)` not working properly with scrolling layout
* Fixed NPC ID gets erased when using `/mp npc state` command

## Version 0.1.2

This is a small patch update which fixes a couple of things.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public interface IScriptServer
* var uuid = "29a91933-86f2-4683-8a87-218084d8c927";
* var entity = c.getServer().getEntity(uuid);
*
* print(entity.getUniqueId() === uuid);
* print(entity.getUniqueId() === uuid); // true
* }</pre>
*/
public IScriptEntity getEntity(String uuid);
Expand Down
5 changes: 3 additions & 2 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"homepage": "https://www.curseforge.com/minecraft/mc-mods/mappet",
"1.12.2": {
"0.1.3": "This is a small patch update which fixes a couple of other things.",
"0.1.2": "This is a small patch update which fixes a couple of things.",
"0.1.1": "This is a small patch which also features new expression condition block.",
"0.1": "This is public release update.",
"0.1-alpha": "This first release provides tons of features: states, conditions, expressions, emitter block, trigger block, region block, crafting tables, quests, NPCs, factions, events, scripts, dialogues, quest chains, many commands, custom sound events, target selectors, global triggers, and much more."
},
"promos": {
"1.12.2-latest": "0.1.2",
"1.12.2-recommended": "0.1.2"
"1.12.2-latest": "0.1.3",
"1.12.2-recommended": "0.1.3"
}
}

0 comments on commit dc951c1

Please sign in to comment.