From a726d6803accdd83afaef07c40b5ce78355f5273 Mon Sep 17 00:00:00 2001 From: Vexatos Date: Thu, 19 Oct 2023 17:41:59 +0200 Subject: [PATCH 1/3] Fix typo in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 26183d60..5b0729d3 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Lönn is a visual level maker and editor for the game Celeste. It allows editing map binaries, creating new ones, adding rooms, and filling the rooms with anything your heart desires (as long as what your heart desires is possible within the realms of the game). The generated map binaries can be loaded in the stock game or using [Everest](https://everestapi.github.io/), although the use of Everest is highly recommended. For use without Everest, you can replace a map in `Content/Maps` (remember backups), otherwise, you can place it in `Mods//Maps` with Everest and use the custom chapter loading (refer to the [Mod Structure guide](https://github.com/EverestAPI/Resources/wiki/Mod-Structure)). -The program is still in an early state, many things are still missing and it is under active development. If you spot something that is missing, it will most likely be added some time in the near future. If you spot a bug or the program crashes, please report it. +The program is still in an early state, some things are still missing and it is under active development. If you spot something that is missing, it will most likely be added some time in the near future. If you spot a bug or the program crashes, please report it. Lönn is a successor to [Ahorn][ahorn], a visual level maker based on [Maple][maple]. If you want to be able to generate and edit maps using code, give Maple a try. @@ -152,7 +152,7 @@ A player is able to move from one room to another if the rooms are directly adja **So, I made a map. What now? How do I load it?** -While you can load maps without, it is _highly_ recommended to install [Everest](https://github.com/EverestAPI/Everest). Once Everest is installed, place your map binary in `Mods//Maps` in your Celeste installtion directory. It should now be accessible from inside the game. +While you can load maps without, it is _highly_ recommended to install [Everest](https://github.com/EverestAPI/Everest). Once Everest is installed, place your map binary in `Mods//Maps` in your Celeste installation directory. It should now be accessible from inside the game. **Something is broken!** From b03ddc58c8ed7f1062c26ae129437872633885ee Mon Sep 17 00:00:00 2001 From: Cruor Date: Thu, 19 Oct 2023 18:07:13 +0200 Subject: [PATCH 2/3] Fixed tileset name cleanup on Windows --- src/brushes.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/brushes.lua b/src/brushes.lua index 4a8f9079..cbf055df 100644 --- a/src/brushes.lua +++ b/src/brushes.lua @@ -250,7 +250,7 @@ function brushHelper.cleanMaterialPath(path, layer, displayName) -- Remove path and humanize just the filename - path = utils.filename(path) or path + path = utils.filename(utils.convertToUnixPath(path), "/") or path if layer == "tilesBg" then path = path:match("^bg(.*)") or path From 0a7eec1f10e7689fc561d5989f6bfe28901ec690 Mon Sep 17 00:00:00 2001 From: Cruor Date: Thu, 19 Oct 2023 18:14:59 +0200 Subject: [PATCH 3/3] Changed area flip hotkey defaults to match Ahorn --- src/defaults/config/hotkeys.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/defaults/config/hotkeys.lua b/src/defaults/config/hotkeys.lua index 0f16df99..1b62e32e 100644 --- a/src/defaults/config/hotkeys.lua +++ b/src/defaults/config/hotkeys.lua @@ -30,8 +30,8 @@ local defaultHotkeys = { -- Selection itemsSelectAll = "ctrl + a", - itemAreaFlipVertical = "ctrl + shift + v", - itemAreaFlipHorizontal = "ctrl + shift + h", + itemAreaFlipVertical = "shift + v", + itemAreaFlipHorizontal = "shift + h", -- Room Resizing roomResizeLeftGrow = false,