Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-03-06 | Base: Tweak Katica and Katica Bold glyphs. | Andreas Kling | |
2019-03-06 | Add a bold variant of Katica and make that the system's default bold font. | Andreas Kling | |
..and do some minor tweaks to the font rendering code. | |||
2019-03-02 | FileManager: Add "up to parent directory" action to toolbar. | Andreas Kling | |
It's not actually hooked up to anything yet, I just wanted to add something more to the toolbar. :^) | |||
2019-03-01 | FileManager: Allow launching processes by activating an executable file. | Andreas Kling | |
2019-03-01 | Base: Add Csilla Bold 7x10 variant. | Andreas Kling | |
It's nice to have a thin and a bold variant to complement each other. | |||
2019-03-01 | Base: Import a new font, Csilla Thin (7x10). | Andreas Kling | |
I wanted to do a bitmap font with an odd number of columns for a while and I finally got around to it. This really looks rather nice, so I'm making it the default system font for now. :^) | |||
2019-02-28 | ProcessManager: Tweak icons. | Andreas Kling | |
2019-02-28 | ProcessManager: Use icons for the process priorities. | Andreas Kling | |
2019-02-28 | ProcessManager: Add "continue" action that sends SIGCONT. | Andreas Kling | |
2019-02-28 | ProcessManager: Add a "stop" action that sends SIGSTOP to a process. | Andreas Kling | |
2019-02-28 | Ignore .data files in Base/res/icons/. | Andreas Kling | |
These are just temporaries that I sometimes spill when converting icons. | |||
2019-02-28 | ProcessManager: Start working on a graphical process manager. | Andreas Kling | |
I need a table view widget for this thing, so I'm also using this to prototype a model/view thingy. | |||
2019-02-27 | Base: Improve FileManager's trash icon slightly. | Andreas Kling | |
2019-02-21 | Kernel+Userland: Implement setuid() and setgid() and add /bin/su | Andreas Kling | |
Also show setuid and setgid bits in "ls -l" output. :^) | |||
2019-02-20 | LibGUI: Add a GToolBar class that can be populated with GActions. | Andreas Kling | |
The same action can be added to both a menu and a toolbar. Use this to put a toolbar into FileManager. This is pretty neat. :^) | |||
2019-02-19 | FileManager: Add an icon for socket files. | Andreas Kling | |
2019-02-19 | Base: Remove an unused icon. | Andreas Kling | |
2019-02-12 | Base: Adjust the OS logo icon a little bit. | Andreas Kling | |
2019-02-12 | Add a little About app and hook it up to the system menu's "About..." entry. | Andreas Kling | |
Added icons and customizable text alignment to GLabel. | |||
2019-02-12 | Base: Add some human-friendly spaces to font names. | Andreas Kling | |
"LizaRegular" => "Liza Regular", etc. | |||
2019-02-12 | Base: Rename Liza8x10 to LizaThin8x10. | Andreas Kling | |
2019-02-12 | WindowServer: Made a slightly nicer icon for the system menu. | Andreas Kling | |
2019-02-11 | WindowServer: Let's have a cute little symbol for the system menu. | Andreas Kling | |
2019-02-10 | Base: Rename /users to /home. | Andreas Kling | |
I didn't like seeing /users next to /usr. /home looks nicer. | |||
2019-02-10 | Base: Add an app icon for FileManager. | Andreas Kling | |
2019-02-10 | Base: Improved FontEditor icon. | Andreas Kling | |
2019-02-09 | FileManager: Start building a file manager. | Andreas Kling | |
2019-02-08 | Let's have two wallpapers installed so we can test switching. | Andreas Kling | |
2019-02-08 | WindowServer: Support desktop wallpapers. | Andreas Kling | |
For now, you don't get to choose the wallpaper, but it's still pretty cool. | |||
2019-02-07 | Start working on a simple Launcher app. | Andreas Kling | |
Let GButton have an optional icon (GraphicsBitmap) that gets rendered in the middle of the button if present. Also add GraphicsBitmap::load_from_file() which allows mmap'ed RGBA32 files. I wrote a little program to take "raw" files from GIMP and swizzle them into the correct byte order. | |||
2019-02-05 | LizaRegular8x10: Tweak some glyphs. | Andreas Kling | |
2019-02-05 | Rename LizaBold to LizaRegular and LizaBlack to LizaBold. | Andreas Kling | |
LizaRegular is quickly becoming my favorite bitmap font. It's so pretty :^) | |||
2019-02-05 | LizaBlack8x10: Tweak some glyphs. | Andreas Kling | |
2019-02-04 | LizaBlack8x10: Import a very heavy variant of Liza. | Andreas Kling | |
2019-02-04 | LizaBold8x10: Import a bold variant of Liza8x10 and make it the default bold. | Andreas Kling | |
Start using it right away for window titles. | |||
2019-02-03 | Liza8x10: Tweak some glyphs. | Andreas Kling | |
2019-02-03 | Liza8x10: Tweak some glyphs. | Andreas Kling | |
2019-02-02 | Support font files. | Andreas Kling | |
This only works with the userspace build of SharedGraphics so far. It's also very slow at loading fonts, but that's easy to fix. Let's put fonts in /res/fonts/. | |||
2019-01-30 | Rename the default user to "anon" and give him a home directory. | Andreas Kling | |
2019-01-24 | Let userland retain the window backing store while drawing into it. | Andreas Kling | |
To start painting, call: gui$get_window_backing_store() Then finish up with: gui$release_window_backing_store() Process will retain the underlying GraphicsBitmap behind the scenes. This fixes racing between the WindowServer and GUI clients. This patch also adds a WSWindowLocker that is exactly what it sounds like. | |||
2018-11-17 | Make bash-2.05b build with minimal changes. | Andreas Kling | |
This is really neat. :^) | |||
2018-11-06 | Add getgrent() family of functions. | Andreas Kling | |
2018-10-31 | Add getpwent() family of functions to LibC. | Andreas Kling | |
Also add a little /etc/passwd database. There's just me in there. |