prepare 1.16.12.3 release
This commit is contained in:
parent
95ece12d74
commit
5af782b884
|
@ -34,14 +34,37 @@ SetEnv SAVE HOME "Sys:home/"
|
||||||
|
|
||||||
## TODO list
|
## TODO list
|
||||||
- Free Gfx memory leak
|
- Free Gfx memory leak
|
||||||
DONE - Make the keyboard shortcuts work. Now, everything can be done with
|
|
||||||
mouse clicks at the toolbar at the bottom of the file list at the left.
|
|
||||||
DONE - If `HOME` is not set, set it to program folder on program run.
|
|
||||||
- Make the application aknowledge of the executable file name. Now it works
|
- Make the application aknowledge of the executable file name. Now it works
|
||||||
only with the filename `lite`
|
only with the filename `lite`
|
||||||
DONE - Add Amiga versioning
|
- Fix A1222 compatibility where it runs fine, until the user resize the
|
||||||
- Fix A1222 compatibility
|
window
|
||||||
|
- Fix loading a folder from terminal using the dot (.) as path.
|
||||||
- Fix the resolution of the fullscreen mode
|
- Fix the resolution of the fullscreen mode
|
||||||
- Fix load file when add an Amiga path at the search line
|
- Find a way to open it in a separated screen, if possible
|
||||||
- Add menu items
|
- Add menu items
|
||||||
|
- Add information on what needs to be done by the user to make it faster
|
||||||
|
for low end machines
|
||||||
|
- Check which extra plugins can be used
|
||||||
- Create a MorphOS port
|
- Create a MorphOS port
|
||||||
|
|
||||||
|
|
||||||
|
# Changelog
|
||||||
|
|
||||||
|
## [1.16.12.3] - 2021-12-29
|
||||||
|
### Changed
|
||||||
|
- Compiled with an experimental version of the latest Anti-Grain Geometry
|
||||||
|
library. This is might have issues and crash LiteXL
|
||||||
|
|
||||||
|
## [1.16.12.2] - 2021-12-26
|
||||||
|
### Added
|
||||||
|
- Added Amiga version. This version of LiteXL is based on v1.16.12 source code
|
||||||
|
which will not change. I will use the fourth digit to distinguish different
|
||||||
|
AmigaOS 4 releases, until a new port of the latest available source (v2.x)
|
||||||
|
is made.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- The keyboard shortcuts are now working
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Now the `HOME` ENV variable is optional. If this is not set, the LiteXL
|
||||||
|
folder will be used to create user's `.config` folder
|
||||||
|
|
|
@ -13,7 +13,6 @@ static char *getFullPath(const char *path)
|
||||||
if (pathLock)
|
if (pathLock)
|
||||||
{
|
{
|
||||||
NameFromLock(pathLock, appPath, sizeof(char) * MAX_DOS_NAME);
|
NameFromLock(pathLock, appPath, sizeof(char) * MAX_DOS_NAME);
|
||||||
// printf("DBG: getFullPath() path: %s\nappPath: %s\n", path, appPath);
|
|
||||||
UnLock(pathLock);
|
UnLock(pathLock);
|
||||||
|
|
||||||
return appPath;
|
return appPath;
|
||||||
|
@ -27,7 +26,6 @@ char *_fullpath(const char *path)
|
||||||
static char prvPath[MAX_DOS_NAME];
|
static char prvPath[MAX_DOS_NAME];
|
||||||
static char result[MAX_DOS_NAME];
|
static char result[MAX_DOS_NAME];
|
||||||
|
|
||||||
// printf("DBG: prvPath: %s\npath: %s\nresult:%s\n", prvPath, path, result);
|
|
||||||
if (!strcmp(path, prvPath))
|
if (!strcmp(path, prvPath))
|
||||||
{
|
{
|
||||||
return result;
|
return result;
|
||||||
|
@ -39,7 +37,6 @@ char *_fullpath(const char *path)
|
||||||
{
|
{
|
||||||
// TODO: Add code to get the name of the executable
|
// TODO: Add code to get the name of the executable
|
||||||
strcpy(result, getFullPath("PROGDIR:lite"));
|
strcpy(result, getFullPath("PROGDIR:lite"));
|
||||||
// printf("DBG: result:%s\n", result);
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,7 @@
|
||||||
#include <proto/dos.h>
|
#include <proto/dos.h>
|
||||||
#include <proto/exec.h>
|
#include <proto/exec.h>
|
||||||
|
|
||||||
|
#define VSTRING "Lite XL 1.16.12.3 (29.12.2021)"
|
||||||
#define VSTRING "Lite XL 1.16.12.2 (26.12.2021)"
|
|
||||||
#define VERSTAG "\0$VER: " VSTRING
|
#define VERSTAG "\0$VER: " VSTRING
|
||||||
|
|
||||||
static CONST_STRPTR stack USED = "$STACK:102400";
|
static CONST_STRPTR stack USED = "$STACK:102400";
|
||||||
|
|
Loading…
Reference in New Issue