Skip to content

Commit

Permalink
release 1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Sadret committed Feb 1, 2021
1 parent 5736e36 commit 256115a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
1.1.5
------------------------------------------------------------------------
- Feature: Footpath addition brush for benches, litter bins, etc.
- Removed: "Absolute Height" option for pasting.
- Updated: Copyright 2020-2021.
- Fix: [#10] "Error on missing element" option now working as intended.
- Fix: [#11][#14] Removed deprecated raw data access of the plug-in API.

1.1.4
------------------------------------------------------------------------
- Fix: Rotating a template with missing elements results in a crash.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scenery-manager",
"version": "1.1.4",
"version": "1.1.5",
"description": "Scenery Manager",
"scripts": {
"build": "rollup -c && babel ./build/scenery-manager.js --out-file ./build/scenery-manager.js"
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import SceneryManager from "./SceneryManager"

registerPlugin({
name: "scenery-manager",
version: "1.1.4",
version: "1.1.5",
authors: ["Sadret"],
type: "local",
licence: "GPL-3.0",
Expand Down
3 changes: 2 additions & 1 deletion src/widgets/Research.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@ class Research {
}

private content(builder: BoxBuilder) {
builder.addLabel({ text: "Version: 1.1.4" });
builder.addLabel({ text: "Version: 1.1.5" });
builder.addSpace(0);
{
const group = builder.getGroupBox(builder.padding, builder.margin);

group.addLabel({ text: "- Brush for benches, litter bins, etc." });
group.addLabel({ text: "- [BETA] Trackitecture is now supported." });
group.addLabel({ text: "- Custom scenery is now supported." });

Expand Down

0 comments on commit 256115a

Please sign in to comment.