OSDev.org
https://forum.osdev.org/

Ghost 0.5.3 - Lots of changes!
https://forum.osdev.org/viewtopic.php?f=2&t=30361
Page 1 of 2

Author:  max [ Fri May 13, 2016 1:41 pm ]
Post subject:  Ghost 0.5.3 - Lots of changes!

Hey guys!

Again, quite some stuff has happened since the last demo release. 0.4.1 is really quite long ago - almost too many changes to put them all here :P

Quick overview of changes
- lot of work on the kernel, new scheduler, major refactoring, various enhancements on the VFS
- new tools in the userspace (including process lister, PCI tool and a fancy GUI calculator)
- complete window server rewrite, using cairo graphics for rendering now
- added a user space interface & library for creating GUI elements
- added PCI support and a userspace tool for listing devices
- finally started documentation! can be rendered with ASCIIdoc
- added a kernel debugging interface that can be used to debug the kernel over the COM1 serial port

On the website you can follow the blog posts to see more details on the development.


ISO image
You can download the demo image on the website. The terminal will show up and there is a README file with some things to play around with. Have fun! :)

Screenshots
Attachment:
File comment: Using the proc tool
screenie2.png
screenie2.png [ 7.67 KiB | Viewed 11906 times ]

Attachment:
File comment: Listing PCI devices
screenie3.png
screenie3.png [ 10.45 KiB | Viewed 11906 times ]

Attachment:
File comment: Launch the GUI and play with the calculator!
calculator.png
calculator.png [ 8.85 KiB | Viewed 11829 times ]


Greets!

Author:  Techel [ Fri May 13, 2016 3:13 pm ]
Post subject:  Re: Ghost 0.5.3 - Lots of changes!

Show some GUI!

Author:  max [ Fri May 13, 2016 4:53 pm ]
Post subject:  Re: Ghost 0.5.3 - Lots of changes!

Techel wrote:
Show some GUI!
lol :mrgreen: Sorry to say that I didn't focus *that* much on the UI in this release. I will do so for the next one though.

Anyway, here is a screenshot of my scrollpane implementation work-in-progress, added a nice wallpaper and high resolution so you have some candy for your eyes :wink:

Image

Author:  Techel [ Fri May 13, 2016 5:58 pm ]
Post subject:  Re: Ghost 0.5.3 - Lots of changes!

Looks fantastic! Nice.

Author:  Kevin [ Sat May 14, 2016 12:22 pm ]
Post subject:  Re: Ghost 0.5.3 - Lots of changes!

Good job, I didn't manage to crash it.

But I have one urgent feature request: Please make the right shift key work. I never get paths typed correctly in the first attempt. ;)

Author:  Techel [ Sat May 14, 2016 12:54 pm ]
Post subject:  Re: Ghost 0.5.3 - Lots of changes!

I'll give it a try on my hardware.
Is it possible to boot from usb stick?

Author:  max [ Sat May 14, 2016 3:25 pm ]
Post subject:  Re: Ghost 0.5.3 - Lots of changes!

Kevin wrote:
Good job, I didn't manage to crash it.

But I have one urgent feature request: Please make the right shift key work. I never get paths typed correctly in the first attempt. ;)
Yay! That's good. :)

Sorry, I'll add it haha :mrgreen:

Techel wrote:
I'll give it a try on my hardware.
Is it possible to boot from usb stick?
Cool, thanks! Yes it's possibly, but I have only done it on Mac OS so far - see the instructions here: https://github.com/maxdev1/ghost/blob/m ... SBSTICK.md
Basically convert the ISO to UDRO and then write it to the stick with dd. I think it should be similar on Linux/something else.

Author:  mariuszp [ Sun May 15, 2016 3:04 pm ]
Post subject:  Re: Ghost 0.5.3 - Lots of changes!

max wrote:
Kevin wrote:
Good job, I didn't manage to crash it.

But I have one urgent feature request: Please make the right shift key work. I never get paths typed correctly in the first attempt. ;)
Yay! That's good. :)

Sorry, I'll add it haha :mrgreen:

Techel wrote:
I'll give it a try on my hardware.
Is it possible to boot from usb stick?
Cool, thanks! Yes it's possibly, but I have only done it on Mac OS so far - see the instructions here: https://github.com/maxdev1/ghost/blob/m ... SBSTICK.md
Basically convert the ISO to UDRO and then write it to the stick with dd. I think it should be similar on Linux/something else.

I don't know if it'd work the same way, but if I simply "dd" the glidix ISO to a USB stick it simply boots, without converting to UDRO etc.

Author:  Ycep [ Mon May 16, 2016 7:00 am ]
Post subject:  Re: Ghost 0.5.3 - Lots of changes!

Just use kill task command to crash it.

Author:  max [ Mon May 16, 2016 4:40 pm ]
Post subject:  Re: Ghost 0.5.3 - Lots of changes!

lukaandjelkovic wrote:
Just use kill task command to crash it.
Crash? I'm near sure you didn't crash it. You are be able to kill both the PS/2 driver and the terminal program, but that only kills the input/the program that processes input, not the kernel :P

Author:  BrightLight [ Fri May 20, 2016 8:34 pm ]
Post subject:  Re: Ghost 0.5.3 - Lots of changes!

Sorry if I'm late -- I've just tried it now.
The system overall is cool, but the key mappings need tweaks. For example, the slash (/) next to the right shift makes a dash (-). Shift+7 makes (/) instead of (&) and other small tweaks. I've changed the mapping to en-US and it's still the same.
Performance of the GUI of quite good. Good luck in your project!

Author:  max [ Sat May 21, 2016 8:25 am ]
Post subject:  Re: Ghost 0.5.3 - Lots of changes!

Hey omar,

thanks for the testing. The keyboard layout is for german keyboards only, the en-US layout is just a copy of the german one with y and z swapped that I made only for testing :mrgreen: I will add a proper one for the future.

Thanks! :)

Author:  Ycep [ Wed May 25, 2016 10:48 am ]
Post subject:  Re: Ghost 0.5.3 - Lots of changes!

max wrote:
lukaandjelkovic wrote:
Just use kill task command to crash it.
Crash? I'm near sure you didn't crash it. You are be able to kill both the PS/2 driver and the terminal program, but that only kills the input/the program that processes input, not the kernel :P

OK... Anyways it's pretty cool!

Author:  NunoLava1998 [ Wed Dec 07, 2016 12:42 pm ]
Post subject:  Re: Ghost 0.5.3 - Lots of changes!

max wrote:
Kevin wrote:
Good job, I didn't manage to crash it.

But I have one urgent feature request: Please make the right shift key work. I never get paths typed correctly in the first attempt. ;)
Yay! That's good. :)

Sorry, I'll add it haha :mrgreen:

Techel wrote:
I'll give it a try on my hardware.
Is it possible to boot from usb stick?
Cool, thanks! Yes it's possibly, but I have only done it on Mac OS so far - see the instructions here: https://github.com/maxdev1/ghost/blob/m ... SBSTICK.md
Basically convert the ISO to UDRO and then write it to the stick with dd. I think it should be similar on Linux/something else.


I'll try to use it using RUFUS on my hardware

Author:  obiwac [ Tue Apr 11, 2017 1:23 pm ]
Post subject:  Re: Ghost 0.5.3 - Lots of changes!

Candy!
Maybe it's just me, but I don't think that the cursor fits with your OS. It's probably just personal taste. Otherwise, I love the UI! It's so beautiful and consistent. I just love it. Keep up the good work!

Page 1 of 2 All times are UTC - 6 hours
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/