From fe828b6ed936dcd8d7db3d9b5cc4c1ab87108e42 Mon Sep 17 00:00:00 2001 From: Francesco Abbate Date: Thu, 27 May 2021 13:46:51 +0200 Subject: [PATCH] Update changelog and release number --- changelog.md | 16 +++++++++++++--- data/core/start.lua | 5 ++--- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/changelog.md b/changelog.md index 4c72c929..eb203747 100644 --- a/changelog.md +++ b/changelog.md @@ -1,10 +1,14 @@ -Lite XL is following closely [rxi/lite](https://github.com/rxi/lite) but with some enhancements. - This files document the changes done in Lite XL for each release. ### 1.16.11 -[#126](https://github.com/franko/lite-xl/issues/126): Implemented changing fonts per syntax group. +When opening directories with too many files lite-xl now keep diplaying files and directories in the treeview. +The application remains functional and the directories can be explored without using too much memory. +In this operating mode the files of the project are not indexed so the command "Core: Find File" will act as the "Core: Open File" command. +The "Project Search: Find" will work by searching all the files present in the project directory even if they are not indexed. + +Implemented changing fonts per syntax group by @liquidev. + Example user module snippet that makes all comments italic: ```lua @@ -15,6 +19,12 @@ local italic = renderer.font.load("italic.ttf", 14) style.syntax_fonts["comment"] = italic ``` +Improved indentation behavior by @adamharrison. + +Fix bug with close button not working in borderless window mode. + +Fix problem with normalization of filename for opened documents. + ### 1.16.10 Improved syntax highlight system thanks to @liquidev and @adamharrison. diff --git a/data/core/start.lua b/data/core/start.lua index 17e12bde..513fda22 100644 --- a/data/core/start.lua +++ b/data/core/start.lua @@ -1,6 +1,5 @@ --- this file is used by lite-xl to setup the Lua environment --- when starting -VERSION = "1.16.10" +-- this file is used by lite-xl to setup the Lua environment when starting +VERSION = "1.16.11" MOD_VERSION = "1" SCALE = tonumber(os.getenv("LITE_SCALE")) or SCALE