summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2009-10-12[controls] Add new bitmap label pluginbitmap-label-controlCharlie Brej1-0/+1
This is like the existing label plugin, but it has a small ascii fixed builtin fontset and doesn't pull in any pango, cairo, fontconfig, or freetype dependencies.
2009-10-04[renderer] Add start of X11 pluginCharlie Brej1-0/+1
This renderer is useful for testing plymouth splash plugins without leaving X. It simulates a multi-head display by creating two X windows each representing one monitor.
2009-09-28Bump to 0.8.0Ray Strode1-1/+1
Next release will be 0.8.0 (it's a bit off though)
2009-09-28[drm] Add initial support for nvidia cardsRay Strode1-1/+1
2009-09-28[drm] Add initial support for radeon cardsRay Strode1-1/+1
2009-09-28[drm] Add initial support for intel cardsRay Strode1-1/+1
2009-09-28[drm] Add start of a drm pluginRay Strode1-0/+5
This commit adds most of the non-driver specific bits necessary for backing a renderer plugin. Subsequent commits will add the driver specific bits.
2009-09-28[renderer] Add start of frame-buffer pluginRay Strode1-0/+2
Much of this code comes directly from ply-frame-buffer in libply, but shoehorned to fit into the renderer plugin interface. One improvement over the old code is it tracks VT changes, and stops drawing when the wrong VT is active.
2009-09-28[configure] Bump to 0.7.20.7.2Ray Strode1-1/+1
2009-08-25[configure] Bump to 0.7.10.7.1Ray Strode1-1/+1
2009-08-11allow to change system release filename with configure optionFrederic Crozat1-0/+5
2009-08-07[configure] Add AS_AC_EXPAND for configured dirsRay Strode1-4/+4
We want the .pc file to have the full expanded paths, so it doesn't end up with unexpanded datarootdir, etc. To achieve this we copy in the AS_AC_EXPAND macro that thomasvs did a while ago.
2009-08-07[configure] Specify plugin path in one placeRay Strode1-0/+3
Currently it's hardcoded all over the place in various Makefiles. This commit consolidates its definition to configure.ac
2009-08-06[configure] Add goo to turn on silent buildRay Strode1-0/+1
Automake 1.11 has a new feature that's all the rage these days. It makes build output look like: CC plymouthd-ply-boot-server.o CC plymouthd-ply-boot-splash.o CC plymouthd-main.o CCLD plymouthd instead of the usual field gcc gunk. This commit turns it on for those who have it.
2009-07-24Initial scripted plugin supportCharlie Brej1-0/+2
This is an initial support for the scripted plugin. There are _many_ FIXMEs and the whole code is reather unstable. The formatting is completely incorrect and will be changed soon. There are scripts which are converted using a perl to an C embeddable string.
2009-05-20[splash] Rename fade-in plugin to fade-throbberRay Strode1-3/+3
We're trying to keep a distinction between plugin and theme.
2009-05-20[splash] Rename solar plugin to space-flaresRay Strode1-1/+1
We're trying to keep a distinction between plugin and theme.
2009-05-20[splash] Rename spinfinity plugin to throbgressRay Strode1-1/+1
It's the theme that makes it spinfinity, not the plugin. The plugin is more generic.
2009-05-20[splash] Rename glow plugin to two-stepRay Strode1-1/+1
Now the "glow" theme is just one possible manifestation of the "two-step" plugin.
2009-05-20[splash] Drop pulser pluginRay Strode1-3/+0
It's ugly and doesn't pass the quality sniff test.
2009-05-20[splash] Split splashes into plugins and themesRay Strode1-0/+11
Some of the plugins (well, the glow plugin) would be a lot more versatile if they could be reused for multiple splashes with different images. This commit splits boot splashes into two parts, the plugin engine which does all the dirty work, and the theme which says which plugin to use and optionally how the plugin should work (using plugin specific key/value pairs)
2009-03-04fix the help text for the color stopsWilliam Jon McCann1-2/+2
Make the help text use the proper argument name.
2009-03-04add a glow pluginWilliam Jon McCann1-0/+3
This plugin will progress through a sequence of images until the progress reaches 90% complete. At that point it will run an animation sequence.
2009-02-26add option to enable more compiler warningsWilliam Jon McCann1-0/+77
Compiler warnings are helpful for finding latent bugs.
2008-11-25Post release bump to 0.7.0Ray Strode1-1/+1
2008-10-23bump so nameRay Strode1-1/+1
2008-10-06Move plymouth client/daemon/libply out of /usrRay Strode1-2/+14
Since we may be calling plymouth before /usr is mounted we need to make sure it's not in /usr. The daemon could technically stay in /usr/libexec, but if we're moving the client, should move the daemon, too, I guess.
2008-10-06Move ply-image to libplybootsplashRay Strode1-2/+2
We don't want libply linking against libs in /usr since /usr might not be separate than / and not be available early in the boot process.
2008-10-01Add solar plugin to configure and MakefileRay Strode1-0/+1
Apparently, I forgot to do this before.
2008-09-28Use clock_gettime instead of gettimeofdayRay Strode1-1/+1
The latter gets all screwy during boot up.
2008-09-28add "pulser" to list of acceptable default pluginsRay Strode1-0/+1
2008-09-28Add new "text" plugin from Adam JacksonRay Strode1-0/+1
This one is prettier than the previous one that's been deemed "cylon" and "kit" before.
2008-09-28Rename "text" plugin to "pulser"Ray Strode1-1/+1
This is in preparation for merging ajax's new text plugin.
2008-09-26Make pango an optional build time dependencyDennis Gilmore1-3/+8
Default to needing it.
2008-09-23Tell GDM to do a smooth transition for spinfinityRay Strode1-0/+6
If spinfinity ran and we end up exiting with it still on screen, tell GDM so that it can open X up on the same display and do a smooth transition.
2008-09-11Fix the build order of scripts/ and images/Christoph Brill1-1/+1
The image needs to be installed before it can be processed with the script.
2008-08-27Add start of font rendering supportRay Strode1-0/+2
We now have a plugin that we load after / is mounted. It links against pango for text support. In libplybootsplash we have a new label control that will call into the plugin if it's loaded or render invisible otherwise.
2008-08-27add Pango check to configureRay Strode1-0/+4
We're going to need it to render text
2008-08-27Move splash-plugins to plugins/splashRay Strode1-5/+6
We're going to have non-splash plugins shortly.
2008-08-19bump configure.ac version to 0.6.0Ray Strode1-1/+1
Should do another release soon.
2008-08-12Ship a gdm autostart file with viewerRay Strode1-0/+4
This way when there is an error the user can see it at the login screen.
2008-08-12Add initial boot log viewer from MatthiasRay Strode1-0/+5
Since plymouth conceals boot messages from the user during boot up, it should provide a way for users to get at the boot messages after login. In particular, if there was a problem during boot up, the user should get notified at the login screen. This commit adds the first cut at a log viewer without any of the login screen integration bits.
2008-07-01Bump version to 0.5.00.5.0Ray Strode1-1/+1
2008-06-26bump configure version to 0.4.50.4.5Ray Strode1-1/+1
2008-06-26Make default color mid between default gradient color stopsRay Strode1-1/+1
2008-06-22Bump version to 0.4.00.4.0Ray Strode1-1/+1
2008-06-16Bump version to 0.3.20.3.2Ray Strode1-1/+1
2008-06-12Update version to 0.3.1Ray Strode1-1/+1
2008-06-12Bump version to 0.3.0Ray Strode1-1/+1
2008-06-11Install symlink pointing graphical.so to the default pluginRay Strode1-0/+8