Search found 1309 matches

by sir_mud
Oct 22, 2014 2:24
Forum: Community Discussion
Topic: Extended Library 0.5.0 is out!
Replies: 13
Views: 8485

Re: Extended Library 0.5.0 is out!

I'm gonna take a look this weekend and try to get everything working with 1.0. I've been pretty busy lately, with work, family and making a game with dr_d. I've had a chance to briefly look over the changelog and it looks like it should be fairly easy to get it going again. I also have a standalone ...
by sir_mud
Mar 21, 2014 15:57
Forum: Community Discussion
Topic: Extended Library 0.5.0 is out!
Replies: 13
Views: 8485

Re: Extended Library 0.5.0 is out!

libext-z-win32.a is just a statically compiled zlib for windows, it is used by default unless you define the option FBEXT_USE_ZLIB_DLL, again you would need to have ext's bin dir in the compiler search path (with -p) or put bin/*.a in fb's lib dir. As for the linking error, the issue there is with ....
by sir_mud
Mar 19, 2014 1:20
Forum: Community Discussion
Topic: Extended Library 0.5.0 is out!
Replies: 13
Views: 8485

Re: Extended Library 0.5.0 is out!

All third-party libraries are in the bin directory. I think there may have been an issue with library linking that has been fixed in master.
by sir_mud
Feb 08, 2014 17:27
Forum: Community Discussion
Topic: Until the html entities in code is resolved
Replies: 5
Views: 2165

Until the html entities in code is resolved

Here is a small program to decode all html entities found in a file. Tested with .24 and up, on windows compile then just drop a file on the exe, everywhere else just call the executable with the path to the file to fix.

https://gist.github.com/mudhairless/8887091
by sir_mud
Feb 08, 2014 16:30
Forum: Libraries Questions
Topic: TTS to file??
Replies: 8
Views: 3539

Re: TTS to file??

glove wrote:What's up with the #40; and the #41; being inserted in this code. It makes the code unusable. What's going on?
( = left parentheses, ) = right parentheses, the issue is being sorted out.
by sir_mud
Feb 08, 2014 16:26
Forum: Linux
Topic: freebasic.lang for gedit?
Replies: 7
Views: 4370

Re: freebasic.lang for gedit?

I made one a while ago (without checking whether one already existed), just uploaded here: https://gist.github.com/dkl/8852322 I would have sent it upstream, but I couldn't get the preprocessor directive highlighting to work even though I was 100% sure to have used the same code as done in the lang...
by sir_mud
Feb 06, 2014 20:28
Forum: Community Discussion
Topic: [solved] If XP updates ends ?
Replies: 5
Views: 1756

Re: [solved] If XP updates ends ?

Windows update itself will still work for XP for the forseeable future, there just won't be new updates. This is how it worked for 98/2000 so I don't see why they would change it. If you know the KB numbers for the updates you can download them manually direct from microsoft.
by sir_mud
Jan 30, 2014 18:10
Forum: Community Discussion
Topic: fbc-ng
Replies: 10
Views: 3312

Re: fbc-ng

chrowle wrote:I would consider joining the project, if you made it support Linux.

EDIT: Never mind, seems to be compiling fine. How do I join?
Join me on IRC http://ext.freebasic.net/page/support
by sir_mud
Jan 27, 2014 17:56
Forum: Linux
Topic: curses/ncurses
Replies: 50
Views: 20808

Re: curses/ncurses

skystrick wrote:Any progress on this?
I'm investigating.
by sir_mud
Jan 27, 2014 17:48
Forum: General
Topic: <Shift>+<Tab> not working?
Replies: 17
Views: 4959

Re: <Shift>+<Tab> not working?

Shift tab seems to be handled by the terminal emulator here, multikey works properly though: #include once "fbgfx.bi" while not multikey(fb.SC_ESCAPE) var x = inkey() if len(x) > 0 then for n as integer = 0 to len(x)-1 if x[n] = 0 then print n & ": NULL" else print n & &q...
by sir_mud
Jan 24, 2014 21:55
Forum: Beginners
Topic: zoom very slow(Solved)
Replies: 13
Views: 3336

Re: zoom very slow

PSET has a fair bit of overhead and should be avoided in tight loops, search these forums for fast pset and you'll come up with a good option.
by sir_mud
Jan 24, 2014 21:53
Forum: Beginners
Topic: Screen and console
Replies: 5
Views: 2388

Re: Screen and console

AnotherLife wrote:But it doesn't look as cool as it did before, got to fix that hehe.
Window's default console font is not pretty, but you can click the icon to get a menu and change it.
by sir_mud
Jan 24, 2014 19:49
Forum: Beginners
Topic: Screen and console
Replies: 5
Views: 2388

Re: Screen and console

If you're only doing text you don't have to use the screen statement, then you can resize your console and scrollback to your heart's content.
by sir_mud
Jan 23, 2014 18:31
Forum: Linux
Topic: Linux Notepad
Replies: 15
Views: 5443

Re: Linux Notepad

Looks like i missed the end quotes on the Linux and DOS tracks there, that would explain the error. With xdg-open you can check it's return value and try a different command automatically, man xdg-open will show you the possible values it will return, mine seems to exclude 0 which would mean no error.
by sir_mud
Jan 23, 2014 18:22
Forum: Community Discussion
Topic: Extended Library 0.5.0 is out!
Replies: 13
Views: 8485

Re: Extended Library 0.5.0 is out!

I'm pleased to announce as of today the current development version of ext fully works with the current git version of freebasic. Unfortunatly ext will never be compatible with 0.90.x because of incompatible changes to the preprocessor in this version but those issues have been identified and resolv...