Tinypad 4.1: upgrade version number for previous revision, add changes to history.txt

git-svn-id: svn://kolibrios.org@5636 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Kirill Lipatov (Leency) 2015-07-31 22:23:18 +00:00
parent b43c39f2f1
commit bbf365e371
2 changed files with 187 additions and 183 deletions

View File

@ -1,6 +1,9 @@
HISTORY: HISTORY:
4.1 (17/07/2015, Pathoswithin)
- various fixes
4.0.8 (22/01/2014, Marat Zakiyanov aka Mario79, aka Mario) 4.0.8 (22/01/2014, Marat Zakiyanov aka Mario79, aka Mario)
new features: new features:
- Support for kernel clipboard (f.54) - Support for kernel clipboard (f.54)

View File

@ -2,16 +2,17 @@
; project name: TINYPAD ; project name: TINYPAD
; compiler: flat assembler 1.67.21 ; compiler: flat assembler 1.67.21
; memory to compile: 3.0/9.0 MBytes (without/with size optimizations) ; memory to compile: 3.0/9.0 MBytes (without/with size optimizations)
; version: SVN (4.0.8) ; version: SVN (4.1)
; last update: 2014-01-22 (Jan 22, 2014) ; last update: 2015-07-17 (Jul 17, 2015)
; minimal kernel: revision #4199 (svn://kolibrios.org/kernel/trunk) ; minimal kernel: revision #4199 (svn://kolibrios.org/kernel/trunk)
;----------------------------------------------------------------------------- ;-----------------------------------------------------------------------------
; originally by: Ville Michael Turjanmaa >> villemt@aton.co.jyu.fi ; originally by: Ville Michael Turjanmaa >> villemt@aton.co.jyu.fi
; maintained by: Mike Semenyako >> mike.dld@gmail.com ; maintained by: Mike Semenyako >> mike.dld@gmail.com
; Ivan Poddubny >> ivan-yar@bk.ru ; Ivan Poddubny >> ivan-yar@bk.ru
; Marat Zakiyanov aka Mario79 ; Marat Zakiyanov aka Mario79
; Pathoswithin
;----------------------------------------------------------------------------- ;-----------------------------------------------------------------------------
; TODO (4.1.0): ; TODO:
; - add vertical selection, undo, goto position, overwrite mode, smart tabulation ; - add vertical selection, undo, goto position, overwrite mode, smart tabulation
; - improve window drawing with small dimensions ; - improve window drawing with small dimensions
; - save/load settings to/from ini file, not executable ; - save/load settings to/from ini file, not executable
@ -36,7 +37,7 @@ include 'tinypad.inc'
header '01',1,@CODE,TINYPAD_END,STATIC_MEM_END,MAIN_STACK,@PARAMS,ini_path header '01',1,@CODE,TINYPAD_END,STATIC_MEM_END,MAIN_STACK,@PARAMS,ini_path
APP_VERSION equ 'SVN (4.0.8)' APP_VERSION equ '4.1'
TRUE = 1 TRUE = 1
FALSE = 0 FALSE = 0