Skip to content

Commit 3a6d2bb

Browse files
committed
update to version 1.0.0
fix in c code generation for tabs truncating the generated code
1 parent 12782d7 commit 3a6d2bb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cSourceGen.e

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1349,7 +1349,7 @@ PROC makeList3(start:PTR TO CHAR,reactionLists:PTR TO stdlist, listid) OF cSrcGe
13491349
FOR i:=0 TO listitem.items.count()-1
13501350
totsize:=totsize+EstrLen(listitem.items.item(i))+22
13511351
ENDFOR
1352-
res:=String(totsize+30)
1352+
res:=String(totsize+35)
13531353
StrCopy(res,start)
13541354
StrAdd(res,'\n {\n')
13551355
FOR i:=0 TO listitem.items.count()-1

rebuild.e

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ OPT OSVERSION=37,LARGE
5353
'*getColorObject','*gradSliderObject','*tapeDeckObject','*textEditorObject','*ledObject','*listViewObject',
5454
'*virtualObject','*sketchboardObject','*tabsObject'
5555

56-
#define vernum '0.10.0-beta'
57-
#date verstring '$VER:Rebuild 0.10.0-%Y%m%d%h%n%s-beta'
56+
#define vernum '1.0.0'
57+
#date verstring '$VER:Rebuild 1.0.0-%Y%m%d%h%n%s'
5858

5959
#ifndef EVO_3_7_0
6060
FATAL 'Rebuild should only be compiled with E-VO Amiga E Compiler v3.7.0 or higher'

0 commit comments

Comments
 (0)