Page 183 of 262

Re: What does your OS look like? (Screen Shots..)

Posted: Thu Jan 05, 2017 9:04 am
by Sik
I guess it's probably better to just take a cue from nearly every other windowed GUI and just color the entire titlebar. Makes it much more obvious.

Re: What does your OS look like? (Screen Shots..)

Posted: Fri Jan 06, 2017 4:42 am
by BrightLight

Re: What does your OS look like? (Screen Shots..)

Posted: Fri Jan 06, 2017 8:30 am
by klange
I also made a video with some recently-added features of my OS.

Re: What does your OS look like? (Screen Shots..)

Posted: Fri Jan 06, 2017 1:13 pm
by crunch
klange wrote:I also made a video with some recently-added features of my OS.
You guys both have very impressive projects

Re: What does your OS look like? (Screen Shots..)

Posted: Sat Jan 07, 2017 2:16 pm
by BrightLight
I'll always love posting here...
Wrote a basic widget library; supports buttons and labels as you can see in the screenshot and abstracts as much of the WM functionality from the user as possible. ;)
Next up on my to-do list is the textbox, so I can write a basic calculator which will be the first "real" or useful application for my OS.
EDIT: Forgot to mention; the widget library is written entirely in userspace.
Image

Re: What does your OS look like? (Screen Shots..)

Posted: Mon Jan 09, 2017 8:15 am
by klange
Image

One of the things on my TODO list for my 1.0 release was to build a documentation viewer. I spent a lot of time building this formatted text engine, which I had originally designed for text labels like the one in the "About ToaruOS" window on the right, but it was fast enough to support larger amounts of formatted text, so it worked out quite nicely for this project. I moved all of the licenses for third-party things that I ship with my CDs into formated files so you can read through all of them from the help browser. It supports various formatting hints with an HTML-like syntax, scrolling, reflows text to fit the page, and all of the blue text is links to other files. Now I just need to write some documentation to put *in* the browser...

Re: What does your OS look like? (Screen Shots..)

Posted: Mon Jan 09, 2017 12:50 pm
by BrightLight
I wrote a calculator. See it in action (YouTube.)
Image

Image

Re: What does your OS look like? (Screen Shots..)

Posted: Tue Jan 10, 2017 6:31 am
by bzt
Finished with my internal debugger :-) Now I can finally debug what's wrong with my task switcher :-)

Re: What does your OS look like? (Screen Shots..)

Posted: Tue Jan 10, 2017 6:33 am
by bzt
And another 3 shoots.

Re: What does your OS look like? (Screen Shots..)

Posted: Tue Jan 10, 2017 12:10 pm
by dozniak
bzt wrote:Finished with my internal debugger :-) Now I can finally debug what's wrong with my task switcher :-)
Really nice tool!

Re: What does your OS look like? (Screen Shots..)

Posted: Tue Jan 10, 2017 4:34 pm
by bzt
dozniak wrote:Really nice tool!
Thanks! It's also very useful! It's quite difficult to debug task switches with gdb as it does not know about memory mappings. On the other hand gdb can show you the source as execution runs through, while my debugger can't as it has no access to the C files. But I'm thinking of displaying the filename and the line at least.

Re: What does your OS look like? (Screen Shots..)

Posted: Tue Jan 10, 2017 4:37 pm
by Octacone
bzt wrote:Finished with my internal debugger :-) Now I can finally debug what's wrong with my task switcher :-)
Quite impressive! How does it handle faults? Do is auto dump or you have to load logs manually? Great color scheme btw.

Re: What does your OS look like? (Screen Shots..)

Posted: Tue Jan 10, 2017 7:38 pm
by crunch
bzt wrote:And another 3 shoots.
The disassembler looks very impressive. Did you write it yourself?

Re: What does your OS look like? (Screen Shots..)

Posted: Wed Jan 11, 2017 3:06 am
by DixiumOS
Image

Re: What does your OS look like? (Screen Shots..)

Posted: Wed Jan 11, 2017 9:58 am
by bzt
octacone wrote:Quite impressive! How does it handle faults? Do is auto dump or you have to load logs manually? Great color scheme btw.
Thanks! It's called from the exception handler ISR. Yep, the color scheme is a retro C=64 :-) If it were a panic it would be in shades of red.