|
||
---|---|---|
docs | ||
minigui_addons | ||
LICENSE | ||
README.md | ||
apng.d | ||
archive.d | ||
argon2.d | ||
arsd.ddoc | ||
audio.d | ||
blendish.d | ||
bmp.d | ||
cgi.d | ||
characterencodings.d | ||
cidr.d | ||
color.d | ||
com.d | ||
comhelpers.d | ||
csv.d | ||
curl.d | ||
database.d | ||
database_generation.d | ||
dbus.d | ||
dds.d | ||
declarativeloader.d | ||
dom.d | ||
dub.json | ||
email.d | ||
engine.d | ||
english.d | ||
eventloop.d | ||
exception.d | ||
fibersocket.d | ||
game.d | ||
gamehelpers.d | ||
gpio.d | ||
hmac.d | ||
html.d | ||
htmltotext.d | ||
htmlwidget.d | ||
http.d | ||
http2.d | ||
image.d | ||
imageresize.d | ||
jni.d | ||
joystick.d | ||
jpeg.d | ||
jpg.d | ||
jsvar.d | ||
libeay32.dll | ||
libssh2.d | ||
libssh2.dll | ||
libssh2.lib | ||
mailserver.d | ||
mangle.d | ||
midi.d | ||
minigui.d | ||
minigui_xml.d | ||
mp3.d | ||
mssql.d | ||
mvd.d | ||
mysql.d | ||
nanovega.d | ||
nukedopl3.d | ||
oauth.d | ||
package.d | ||
pcx.d | ||
png.d | ||
postgres.d | ||
querygenerator.d | ||
reggaefile.d | ||
rpc.d | ||
rss.d | ||
rtud.d | ||
screen.d | ||
script.d | ||
sha.d | ||
simpleaudio.d | ||
simpledisplay.d | ||
sqlite.d | ||
sslsocket.d | ||
stb_truetype.d | ||
svg.d | ||
targa.d | ||
terminal.d | ||
terminalemulator.d | ||
ttf.d | ||
vorbis.d | ||
wav.d | ||
web.d | ||
web.d.php | ||
webtemplate.d | ||
webview.d | ||
wmutil.d | ||
xwindows.d |
README.md
About
This is a collection of modules that I've released over the years (the oldest module in here was originally written in 2006, pre-D1!) for a wide variety of purposes. Most of them stand alone, or have just one or two dependencies in here, so you don't have to download this whole repo. Feel free to email me, destructionator@gmail.com or ping me as adam_d_ruppe
on the #d IRC channel if you want to ask me anything.
I'm always adding to it, but my policy on dependencies means you can ignore what you don't need. I am also committed to long-term support. Even the obsolete modules I haven't used for years I usually keep compiling at least, and the ones I do use I am very hesitant to break backward compatibility on. My semver increases are very conservative.
See the full list of (at least slightly) documented module here: http://arsd-official.dpldocs.info/arsd.html and refer to https://code.dlang.org/packages/arsd-official for the list of dub
-enabled subpackages.
Links
I have a patreon and my (almost) weekly blog you can check out if you'd like to financially support this work or see the updates and tips I write about.
Breaking Changelog
This only lists changes that broke things and got a major version bump. I didn't start keeping track here until 9.0.
9.0
simpledisplay's OperatingSystemFont, which is also used by terminalemulator.d (which is used by terminal.d's -version=TerminalDirectToEmulator function) would previously only load X Core Fonts. It now prefers TrueType fonts via Xft. This loads potentially different fonts and the sizes are interpreted differently, so you may need to adjust your preferences there. To restore previous behavior, prefix your font name strings with "core:".
http2.d's "connection refused" handler used to throw an exception for any pending connection. Now it instead just sets that connection to aborted
and carries on with other ones. When you are doing a request, be sure to check response.code
. It may be < 100 if connection refused and other errors. You should already have been checking the http response code, but now some things that were exceptions are now codes, so it is even more important to check this properly.
Credits
Thanks go to Nick Sabalausky, Trass3r, Stanislav Blinov, ketmar, maartenvd, and many others over the years for input and patches.
Several of the modules are also ports of other C code, see the comments in those files for their original authors.
Conventions
Many http-based functions in the lib also support unix sockets as an alternative to tcp.
With cgi.d, use
--host unix:/path/here
or, on Linux:
--host abstract:/path/here
after compiling with -version=embedded_httpd_thread
to serve http on the given socket. (abstract:
does a unix socket in the Linux-specific abstract namespace).
With http2.d, use
Uri("http://whatever_host/path?args").viaUnixSocket("/path/here")
any time you are constructing a client. Note that navigateTo
may lose the unix socket unless you specify it again.