Skip to content

Commit

Permalink
update to version 1.0.0
Browse files Browse the repository at this point in the history
fix in c code generation for tabs truncating the generated code
  • Loading branch information
dmcoles committed Feb 8, 2024
1 parent 12782d7 commit 3a6d2bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cSourceGen.e
Original file line number Diff line number Diff line change
Expand Up @@ -1349,7 +1349,7 @@ PROC makeList3(start:PTR TO CHAR,reactionLists:PTR TO stdlist, listid) OF cSrcGe
FOR i:=0 TO listitem.items.count()-1
totsize:=totsize+EstrLen(listitem.items.item(i))+22
ENDFOR
res:=String(totsize+30)
res:=String(totsize+35)
StrCopy(res,start)
StrAdd(res,'\n {\n')
FOR i:=0 TO listitem.items.count()-1
Expand Down
4 changes: 2 additions & 2 deletions rebuild.e
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ OPT OSVERSION=37,LARGE
'*getColorObject','*gradSliderObject','*tapeDeckObject','*textEditorObject','*ledObject','*listViewObject',
'*virtualObject','*sketchboardObject','*tabsObject'

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

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

0 comments on commit 3a6d2bb

Please sign in to comment.