FreeBasic IDE-poseidonFB(Update 2024.03.03)

User projects written in or related to FreeBASIC.
Post Reply
noop
Posts: 130
Joined: Sep 18, 2006 10:29

Re: FreeBasic IDE-poseidonFB

Post by noop »

Drag&Dropping works, also the keyboard shortcuts.

However sth. else has gone wrong which might have to do with the temporary file you create:
Compiling now creates a temporary file but doesn't actually compile anything.

Also: If I create a new tab, I'm still prompted to specify a new file.

More Shortcut-Requests:
CTRL+N: New tab --> temporary file, which should be deleted as soon as I save the code.
CTRL+TAB: Switch to next tab.
CTRL+SHIFT+TAB: Switch to previous tab.
Kuan Hsu
Posts: 586
Joined: Sep 16, 2007 15:12
Location: Taiwan

Re: FreeBasic IDE-poseidonFB

Post by Kuan Hsu »

noop wrote:However sth. else has gone wrong which might have to do with the temporary file you create:
Compiling now creates a temporary file but doesn't actually compile anything.
(1)Fixed.(Because my stupid mistake, "Comilpe" = "Quick Run")
noop wrote:Also: If I create a new tab, I'm still prompted to specify a new file.
(2)I need modify many code, maybe later....
noop wrote:More Shortcut-Requests:
CTRL+N: New tab --> temporary file, which should be deleted as soon as I save the code.
CTRL+TAB: Switch to next tab.
CTRL+SHIFT+TAB: Switch to previous tab.
(3)The second and third is more easy to create, but the first is a problem, I have no idea how to catch the key message without any document.
Maybe using Alt+F->N to create a new file, then....like(2), maybe later....
noop
Posts: 130
Joined: Sep 18, 2006 10:29

Re: FreeBasic IDE-poseidonFB

Post by noop »

Kuan Hsu wrote:
noop wrote: Bug report:
1) Compiling/Executing doesn't allow spaces in path names.
2) Only Quick-Running works. Pressing "Compile File" doesn't create an executable.
3) The current working directory is always set to the path from which Poseidon is run.
Bug:
1. I forgot pass " " to run command, it's easy to fix(DONE)
2. "Compile" means create a obj file, I'll change to create excute file(DONE)
3. Change current workiing directory is for....?(DONE)
This works now.

However I noticed that I cannot run programmes in textmode window (i.e. "screen 0").
Kuan Hsu
Posts: 586
Joined: Sep 16, 2007 15:12
Location: Taiwan

Re: FreeBasic IDE-poseidonFB

Post by Kuan Hsu »

noop wrote:However I noticed that I cannot run programmes in textmode window (i.e. "screen 0").
Fixed.
noop wrote:More Shortcut-Requests:
CTRL+N: New tab --> temporary file, which should be deleted as soon as I save the code.
CTRL+TAB: Switch to next tab.
CTRL+SHIFT+TAB: Switch to previous tab.
Except "New Tab", others be done.
c-sanchez
Posts: 145
Joined: Dec 06, 2012 0:38

Re: FreeBasic IDE-poseidonFB

Post by c-sanchez »

Hi Kuan Hsu, thank you very much for make and maintaining this ide :D

Bugs:
*poseidonFB closes when...
Image
*Ctrl + Shift + Z for undo not work
Features request:
* Remember the window size/state(windowed/maxmized).
* When a new file is create and saved, continue with the same file saved, without open the "new one".
Image
* Higlight matching braces
* Add close braces
* Translations support
* Apply button for Preference window (to see the changes without close the Preference window)
* Besides the position of the cursor, show the selection size
Kuan Hsu
Posts: 586
Joined: Sep 16, 2007 15:12
Location: Taiwan

Re: FreeBasic IDE-poseidonFB

Post by Kuan Hsu »

c-sanchez wrote:Hi Kuan Hsu, thank you very much for make and maintaining this ide :D
Bugs:
*poseidonFB closes when...
Image
*Ctrl + Shift + Z for undo not work
*poseidonFB closes when...... ??
*Ctrl + Shift + Z for undo not work......Fixed
* When a new file is create and saved, continue with the same file saved, without open the "new one"......Fixed
*Higlight matching braces......DONE
c-sanchez
Posts: 145
Joined: Dec 06, 2012 0:38

Re: FreeBasic IDE-poseidonFB

Post by c-sanchez »

Bugs:
*poseidonFB closes when...: ??
* Closes when clicking on a tree item and then on the root node. (fixed on 0.118)
* Closes when change the default font
* Closes when set the compiler and press ok

* Apparently it closes when change anything in options and press ok

* The tabulation i think has a problem.
Image

* can i suggest keeping the default font for the ide MONOSPACED?
http://s6.postimg.org/9i0du30dt/poseidon_FBfont01.png
http://s6.postimg.org/5zodxozht/poseido ... 1_Mono.png
http://s6.postimg.org/p666em5dd/poseidon_FBfont02.png
http://s6.postimg.org/h1y29viy9/poseido ... 2_Mono.png

When the IDE crashes could you make it show an error... or let it show the default windows crash handler, instead of just close the app?
Last edited by c-sanchez on Oct 20, 2015 17:09, edited 1 time in total.
Kuan Hsu
Posts: 586
Joined: Sep 16, 2007 15:12
Location: Taiwan

Re: FreeBasic IDE-poseidonFB

Post by Kuan Hsu »

c-sanchez wrote:Bugs:
*poseidonFB closes when...: ??
* Closes when clicking on a tree item and then on the root node. (fixed on 0.118)
* Closes when change the default font
* Closes when set the compiler and press ok

* Apparently it closes when change anything in options and press ok

* The tabulation i think has a problem.
Image

* can i suggest keeping the default font for the ide MONOSPACED?
http://s6.postimg.org/x7oushodt/image.png
http://s6.postimg.org/i08v84wj5/image.png
http://s6.postimg.org/yy7vtz5wx/image.png
http://s6.postimg.org/9j9cx7ru9/image.png

When the IDE crashes could you make it show an error... or let it show the default windows crash handler, instead of just close the app?
The images are too small......@@

About the crash and the tabulation problem, please check the iup.dll and iup_scintilla.dll version, poseidonFB now using IUP v3.15 build by vc++9.0(win32), those files were created at 2015/07/06 04:40PM(iup.dll) and 2015/07/06 04:51PM(iup_scintilla.dll) and included in poseidonFB.7z

If the dll version are correct, next release I'll add some code try to catch the crash message and make the "Default Font" option is available.
c-sanchez
Posts: 145
Joined: Dec 06, 2012 0:38

Re: FreeBasic IDE-poseidonFB

Post by c-sanchez »

The images are too small......@@
I dont understand, I see the images fine. Anyway it does not matter much, They are only images comparing the IDE with the default font and a monospaced font.
About the crash and the tabulation problem, please check the iup.dll and iup_scintilla.dll version, poseidonFB now using IUP v3.15 build by vc++9.0(win32), those files were created at 2015/07/06 04:40PM(iup.dll) and 2015/07/06 04:51PM(iup_scintilla.dll) and included in poseidonFB.7z
Yeah, They are the same that I have (poseidonFB v0.120 - 2015.10.19)
If the dll version are correct, next release I'll add some code try to catch the crash message and make the "Default Font" option is available.
Thank you very much for considering my requests.
Kuan Hsu
Posts: 586
Joined: Sep 16, 2007 15:12
Location: Taiwan

Re: FreeBasic IDE-poseidonFB

Post by Kuan Hsu »

c-sanchez wrote:
The images are too small......@@
I dont understand, I see the images fine. Anyway it does not matter much, They are only images comparing the IDE with the default font and a monospaced font.
About the crash and the tabulation problem, please check the iup.dll and iup_scintilla.dll version, poseidonFB now using IUP v3.15 build by vc++9.0(win32), those files were created at 2015/07/06 04:40PM(iup.dll) and 2015/07/06 04:51PM(iup_scintilla.dll) and included in poseidonFB.7z
Yeah, They are the same that I have (poseidonFB v0.120 - 2015.10.19)
If the dll version are correct, next release I'll add some code try to catch the crash message and make the "Default Font" option is available.
Thank you very much for considering my requests.
Dear Sanchez, please test V0.121, Thanks~~
noop
Posts: 130
Joined: Sep 18, 2006 10:29

Re: FreeBasic IDE-poseidonFB

Post by noop »

Bug: Searching and then closing the search dialog crashes the IDE.

Feature Request: Holding CTRL and clicking on sth. like

Code: Select all

#include "stuff.bas"
or

Code: Select all

'$include "stuff.bas"
opens the respective file in FBIde. I really like that feature.
Kuan Hsu
Posts: 586
Joined: Sep 16, 2007 15:12
Location: Taiwan

Re: FreeBasic IDE-poseidonFB

Post by Kuan Hsu »

noop wrote:Bug: Searching and then closing the search dialog crashes the IDE.
Fixed.
noop wrote:Feature Request: Holding CTRL and clicking on sth. like
Added, but just support the includes, Ctrl+click equal the short-cut: "Goto Defintion".
Kot
Posts: 336
Joined: Dec 28, 2006 10:34

Re: FreeBasic IDE-poseidonFB

Post by Kot »

Just a quick glimpse and... Options->Preferences->Editor->word warp... Beam me up, Scotty ;-)
c-sanchez
Posts: 145
Joined: Dec 06, 2012 0:38

Re: FreeBasic IDE-poseidonFB

Post by c-sanchez »

IMHO, i think you can do better the default settings for PoseidonFB.
For example, for "Document" as I said, would be better a monospace font, like Courier New, Lucida Console, etc. check this image.
Image
other tiny detail, the color syntax highlight of numbers and comments are the same.

Why those points on the edge of the menus? they are really needed?
The window "View> Message" It is not completely hidden
Image
Kuan Hsu
Posts: 586
Joined: Sep 16, 2007 15:12
Location: Taiwan

Re: FreeBasic IDE-poseidonFB

Post by Kuan Hsu »

Kot wrote:Just a quick glimpse and... Options->Preferences->Editor->word warp... Beam me up, Scotty ;-)
Beam me up, Scotty???? I need google to realize it...^^
It will fix at V0.124
c-sanchez wrote:for "Document" as I said, would be better a monospace font, like Courier New, Lucida Console
The default font of document is Consolas....
c-sanchez wrote:The window "View> Message" It is not completely hidden Image
It will fix at V0.124(But just hidden......)
Post Reply