bmp impl for MemoryImage
Provides a uniform server-side API for CGI, FastCGI, SCGI, and HTTP web applications.
This is meant to help get data from the wild into utf8 strings so you can work with them easily inside D.
curl wrapper, it sux
This is an html DOM implementation, started with cloning what the browser offers in Javascript, but going well beyond it in convenience.
The base class from which a game engine should inherit.
crappy event loop for linux
A draft of a better way to do exceptions
An add-on for simpledisplay.d, joystick.d, and simpleaudio.d that includes helper functions for writing games (and perhaps other multimedia programs). Whereas simpledisplay works with an event-driven framework, gamehelpers always uses a consistent timer for updates.
This module includes functions to work with HTML and CSS.
This module has a lot of dependencies
Old version of my http implementation.
This is version 2 of my http/1.1 client implementation.
HIGH LEVEL NOTES
Loads a JPEG image from a memory buffer or a file. req_comps can be 1 (grayscale), 3 (RGB), or 4 (RGBA). On return, width/height will be set to the image's dimensions, and actual_comps will be set to the either 1 (grayscale) or 3 (RGB). Requesting a 8 or 32bpp image is currently a little faster than 24bpp because the jpeg_decoder class itself currently always unpacks to either 8 or 32bpp.
jsvar provides a D type called var that works similarly to the same in Javascript.
Small wrapper for libssh2 just link with it on Linux it'll need a couple dlls and a lib on windows.
minigui is a smallish GUI widget library, aiming to be on par with at least HTML4 forms and a few other expected gui components. It uses native controls on Windows and does its own thing on Linux (Mac is not currently supported but may be later, and should use native controls) to keep size down. The Linux appearance is similar to Windows 95 and avoids using images to maintain network efficiency on remote X connections.
This package consists of additional widgets for arsd.minigui.
A small extension module to arsd.minigui that adds functions for creating widgets and windows from short XML descriptions.
NOTE: If you're using MySQL client library v5.0 or less, you must pass this to dmd: -version=Less_Than_MySQL_51 This is important - otherwise you will see bizarre segfaults!
PNG file handling for color.d's Image interfaces
minimal libpq wrapper
Create SQL queries from string containing D expressions.
This provides a kind of real time updates that can be consumed by javascript (and probably other things eventually).
A small script interpreter that builds on arsd.jsvar to be easily embedded inside and to have has easy two-way interop with the host D program. The script language it implements is based on a hybrid of D and Javascript. The type the language uses is based directly on var from arsd.jsvar.
homemade sha 1 and sha2 impls. beware of bugs.
The purpose of this module is to provide audio functions for things like playback, capture, and volume on both Windows (via the mmsystem calls)and Linux (through ALSA).
simpledisplay.d provides basic cross-platform GUI-related functionality, including creating windows, drawing on them, working with the clipboard, timers, OpenGL, and more. However, it does NOT provide high level GUI widgets. See my minigui.d, an extension to this module, for that functionality.
Compile with version=sqlite_extended_metadata_available if your sqlite is compiled with the SQLITE_ENABLE_COLUMN_METADATA C-preprocessor symbol.
Module for interacting with the user's terminal, including color output, cursor manipulation, and full-featured real-time mouse and keyboard input. Also includes high-level convenience methods, like Terminal.getline, which gives the user a line editor with history, completion, etc. See the examples.
TrueType Font rendering.
magic web wrapper
This module is obsolete. Its functionality has been merged into simpledisplay.d. You can use it instead and abandon this.