Lioncash
2d313df844
Forgot one other leak case
2014-05-23 19:42:17 -04:00
Kevin Lange
ad303097d3
Merge pull request #47 from lioncash/dat-overflow-doe
...
Fix a sprintf size typo which would overwrite the error buffer in bim's open_file func
2014-05-21 18:06:38 -07:00
Lioncash
b3ba650ac2
Fix a sprintf size typo which would overwrite the error buffer in bim's open_file func
2014-05-21 21:03:45 -04:00
Kevin Lange
29e7f0def1
Fix null pointer trying to alt-tab without windows
2014-05-19 18:38:16 -07:00
Kevin Lange
dcdf53db89
Make a bunch of apps respond to session end message
2014-05-19 18:34:05 -07:00
Kevin Lange
ce0dacb912
Use spinlock.h instead of continually definign this as static in a bunch of apps
2014-05-18 19:34:49 -07:00
Kevin Lange
0cdfcf766e
Support frameless non-fullscreen terminals
2014-05-18 19:23:05 -07:00
Kevin Lange
dde993c79c
Store decoration theme settings in /etc/passwd
2014-05-18 18:13:14 -07:00
Kevin Lange
71946d8a97
Invert resize rounding behavior for terminal
2014-05-18 18:10:18 -07:00
Kevin Lange
a1e8a40b22
More gridding options
2014-05-18 18:08:34 -07:00
Kevin Lange
4c99c387f5
Expose pc speaker as device file
2014-05-18 16:11:14 -07:00
Kevin Lange
6379aa19ff
Bring a few more apps up to speed with new yutani features
2014-05-18 13:57:33 -07:00
Kevin Lange
068f933a71
Kill some excessive debug output in the terminal
2014-05-18 12:24:17 -07:00
Kevin Lange
2675532013
Add a terminal option to disable rounding resizes to cell widths
2014-05-18 12:18:34 -07:00
Kevin Lange
6e028b6550
left-right tiling
2014-05-18 12:15:18 -07:00
Kevin Lange
3cb7b18c60
Client-initiated window drag
2014-05-18 11:54:20 -07:00
Kevin Lange
d9830f7989
Major refactor of panel
2014-05-12 20:11:58 -07:00
Kevin Lange
c231d1c090
Cleanup some direct system calls in userspace
2014-05-11 17:40:16 -07:00
Kevin Lange
4d310b3c03
Make sure wallpaper and panel clean up dead children
2014-05-10 20:09:16 -07:00
Kevin Lange
bcb86108ce
Fix terminal damage rects
2014-05-10 14:02:49 -07:00
Kevin Lange
c042d04fc0
remove extraneous debug output
2014-05-09 23:04:30 -07:00
Kevin Lange
0061105b29
Make the alt-tab slick and operate as expected
2014-05-09 23:03:47 -07:00
Kevin Lange
d3273d934a
Simple key binding system, plus alt-tab and ctrl-alt-t
2014-05-09 22:01:24 -07:00
Kevin Lange
e6418d3b92
cheap integration test with expect
2014-05-08 21:13:44 -07:00
Kevin Lange
ee9ff92b60
Clean up some legacy /etc stuff
2014-05-07 00:10:34 -07:00
Kevin Lange
50824abdec
And actually load the right file...
2014-05-05 22:03:57 -07:00
Kevin Lange
4bcd567bb5
Uh, draw the logout button for the logout button
2014-05-05 22:00:20 -07:00
Kevin Lange
2fbc220546
Cleanup panel
2014-05-05 21:47:45 -07:00
Kevin Lange
c6dd91a113
Maintain window ordering in panel list
2014-05-05 21:18:13 -07:00
Kevin Lange
1bef69e527
Panel icons for game and julia fractals
2014-05-03 17:51:33 -07:00
Kevin Lange
49aebbbb8d
advertise windows in ttk
2014-05-03 17:28:53 -07:00
Kevin Lange
0947432963
Actually make an effort to release textures from closed windows
2014-05-03 15:41:16 -07:00
Kevin Lange
a4b70a6cda
Rudimentary fullscreen shortcut
2014-05-03 15:36:09 -07:00
Kevin Lange
6a8281611d
+ is totally valid in names, let's be silly
2014-05-03 14:06:55 -07:00
Kevin Lange
15ff21f104
Support icons other than the precached ones
2014-05-03 13:51:37 -07:00
Kevin Lange
9fce12f10c
Only used scaled rendering if icon is not correct size
2014-05-03 13:22:40 -07:00
Kevin Lange
601768c4bf
Panel icon support
2014-05-03 13:20:16 -07:00
Kevin Lange
d55c5953e1
Handle focused windows properly
2014-05-03 12:22:16 -07:00
Kevin Lange
2070d255e2
New window advertisement format
2014-05-03 12:07:03 -07:00
Kevin Lange
2d7b15b231
Don't readvertise RPG window every time
2014-05-02 23:20:48 -07:00
Kevin Lange
e3a23bad5b
Brand new Makefile-based userspace build system
2014-05-02 22:38:39 -07:00
Kevin Lange
04435920fe
Yutani client library does not depend on pthreads
2014-05-02 19:33:22 -07:00
Kevin Lange
0cdc07b021
Update nyancat to 1.4.4
2014-05-01 11:17:22 -07:00
Kevin Lange
5d4b0df120
Make sure toast daemon doesn't block its death signal
2014-04-29 00:52:31 -07:00
Kevin Lange
74d710fe5f
Supplementary plane support (emojis)
2014-04-29 00:29:19 -07:00
Kevin Lange
29841b03fc
Fix waitpid calls to account for EINTR
2014-04-29 00:28:41 -07:00
Kevin Lange
4d8335ad75
Implement proper wait/waitpid.
...
This is a pretty big commit, so let's run through it in parts:
- All of the userspace changes are to switch away from syscall_wait
Mostly, this is to waitpid; some things were tweaked to do things
"properly" instead of waiting for particular processes. Init has
been fixed to do a proper spin wait.
- syscall_wait is gone - as are its uses. newlib bindings have been
using just waitpid for a while now.
- waitpid now performs like a Unix waitpid
- process reaping is no longer a "do this on next change thing":
it happens when a process is waited on, like it should
(That means we can have real zombies: terminated processes that
have not yet been waited on)
- Reparenting of children to init has been implemented, so you
can fork-daemonize!
Overall, this is pretty big... So I hope it doesn't break everything.
2014-04-27 01:37:33 -07:00
Kevin Lange
cb19356d50
Break out some magic numbers in toast daemon
2014-04-26 18:05:56 -07:00
Kevin Lange
d79bd92b6c
Updated toast theme
2014-04-25 23:16:58 -07:00
Kevin Lange
29065dd94c
Fix bad divide in premultiply
2014-04-25 19:47:27 -07:00