Skip to content

Commit

Permalink
1.5.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulSquires committed Feb 5, 2018
1 parent 43f5082 commit 47e62b3
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 2 deletions.
Binary file modified WinFBE.wfbe
Binary file not shown.
Binary file modified WinFBE32.exe
Binary file not shown.
Binary file modified WinFBE64.exe
Binary file not shown.
3 changes: 3 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 1.5.8 (February 5, 2018)
- Fixed: In non-project situations, file would get loaded into File Explorer multiple times after each F4 Function selection.

Version 1.5.7 (February 4, 2018)
- Added: Dual pane split screen file editing.
- Added: Multiline comment support to scintilla dll editing component. /' '/
Expand Down
2 changes: 1 addition & 1 deletion src/WinFBE.bas
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Using Afx

#Define APPNAME WStr("WinFBE - FreeBASIC Editor")
#Define APPNAMESHORT WStr("WinFBE")
#Define APPVERSION WStr("1.5.7")
#Define APPVERSION WStr("1.5.8")

'#Define USE_VISUAL_DESIGNER 1

Expand Down
2 changes: 1 addition & 1 deletion src/frmMain.inc
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ Function frmMain_OpenFileSafely( ByVal HWnd As HWnd, _
' Need to determine if the document is already part of an open project
' because if it is then we don't want to add the file to the current
' project thus making a dual link.
for i as long = 1 to ubound(gApp.Projects)
for i as long = lbound(gApp.Projects) to ubound(gApp.Projects)
if gApp.Projects(i).InUse = true THEN
pDoc = gApp.Projects(i).GetDocumentPtrByFilename(pwszName)
if pDoc then
Expand Down

0 comments on commit 47e62b3

Please sign in to comment.