Prepare 2.0.3r3 release
This commit is contained in:
parent
da2ba3aac2
commit
a5f073d23b
|
@ -77,12 +77,12 @@ src/platform/amigaos4.o: src/platform/amigaos4.c
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
release: clean LiteXL
|
release:
|
||||||
@echo "Creating release files..."
|
@echo "Creating release files..."
|
||||||
@mkdir -p release/LiteXL2
|
@mkdir -p release/LiteXL2
|
||||||
@cp release_files/* release/LiteXL2/ -r
|
@cp -r release_files/* release/LiteXL2/
|
||||||
@mv release/LiteXL2/LiteXL2.info release/
|
@mv release/LiteXL2/LiteXL2.info release/
|
||||||
@cp data release/LiteXL2/ -r
|
@cp -r data release/LiteXL2/
|
||||||
@cp changelog.md release/LiteXL2/
|
@cp changelog.md release/LiteXL2/
|
||||||
@cp lite release/LiteXL2/
|
@cp lite release/LiteXL2/
|
||||||
@strip release/LiteXL2/lite
|
@strip release/LiteXL2/lite
|
||||||
|
|
|
@ -195,7 +195,11 @@ https://git.walkero.gr/walkero/lite-xl/issues
|
||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## [2.0.3r3] - future
|
## [2.0.3r3] - 2022-09-26
|
||||||
|
### Added
|
||||||
|
- Added plugin for AmigaGuide files
|
||||||
|
- Added plugin for Hollywood files
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fixed non existing path crashes on OS4 and MorphOS
|
- Fixed non existing path crashes on OS4 and MorphOS
|
||||||
- Fixed editor refresh whenever init.lua is changed, no matter the working
|
- Fixed editor refresh whenever init.lua is changed, no matter the working
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
-- this file is used by lite-xl to setup the Lua environment when starting
|
-- 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"
|
MOD_VERSION = "2"
|
||||||
|
|
||||||
SCALE = tonumber(os.getenv("LITE_SCALE") or os.getenv("GDK_SCALE") or os.getenv("QT_SCALE_FACTOR")) or SCALE
|
SCALE = tonumber(os.getenv("LITE_SCALE") or os.getenv("GDK_SCALE") or os.getenv("QT_SCALE_FACTOR")) or SCALE
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
#include "renderer.h"
|
#include "renderer.h"
|
||||||
|
|
||||||
#if defined(__amigaos4__) || defined(__morphos__)
|
#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
|
#define VERSTAG "\0$VER: " VSTRING
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue