Prepare 2.0.3r3 release

This commit is contained in:
George Sokianos 2022-09-26 15:44:38 +01:00
parent da2ba3aac2
commit a5f073d23b
4 changed files with 10 additions and 6 deletions

View File

@ -77,12 +77,12 @@ src/platform/amigaos4.o: src/platform/amigaos4.c
release: clean LiteXL
release:
@echo "Creating release files..."
@mkdir -p release/LiteXL2
@cp release_files/* release/LiteXL2/ -r
@cp -r release_files/* release/LiteXL2/
@mv release/LiteXL2/LiteXL2.info release/
@cp data release/LiteXL2/ -r
@cp -r data release/LiteXL2/
@cp changelog.md release/LiteXL2/
@cp lite release/LiteXL2/
@strip release/LiteXL2/lite

View File

@ -195,7 +195,11 @@ https://git.walkero.gr/walkero/lite-xl/issues
# Changelog
## [2.0.3r3] - future
## [2.0.3r3] - 2022-09-26
### Added
- Added plugin for AmigaGuide files
- Added plugin for Hollywood files
### Fixed
- Fixed non existing path crashes on OS4 and MorphOS
- Fixed editor refresh whenever init.lua is changed, no matter the working

View File

@ -1,5 +1,5 @@
-- this file is used by lite-xl to setup the Lua environment when starting
VERSION = "2.0.3r2"
VERSION = "2.0.3r3"
MOD_VERSION = "2"
SCALE = tonumber(os.getenv("LITE_SCALE") or os.getenv("GDK_SCALE") or os.getenv("QT_SCALE_FACTOR")) or SCALE

View File

@ -6,7 +6,7 @@
#include "renderer.h"
#if defined(__amigaos4__) || defined(__morphos__)
#define VSTRING "Lite XL 2.0.3r2 (18.06.2022)"
#define VSTRING "Lite XL 2.0.3r3 (26.09.2022)"
#define VERSTAG "\0$VER: " VSTRING
#endif