diff --git a/README.md b/README.md index 103d09e8..ad5d697c 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,10 @@ GUI for D programming language, written in D. * Supports highly customizable UI themes and styles * Hardware acceleration using OpenGL (when built with USE_OPENGL) * Fallback to Win32 API / XCB when OpenGL is not available +* Actually it's a port (with major refactoring) of GUI library for cross platform OpenGL based implementation of Cool Reader app prokeject from C++. +* Almost ready for 2D games development +* Goal: provide set of widgets suitable for building of IDE. + Win32 builds ------------ @@ -38,3 +42,6 @@ Third party components used * DerelictGL3 - for OpenGL support * DerelictFT + FreeType library support under linux and optionally under Windows. * DerelictFI + FreeImage library support for decoding of images +* WindowsAPI bindings from http://www.dsource.org/projects/bindings/wiki/WindowsApi (patched) +* XCB and X11 bindings (patched) TODO: provide links + diff --git a/dub.json b/dub.json new file mode 100644 index 00000000..d8797e9d --- /dev/null +++ b/dub.json @@ -0,0 +1,18 @@ +{ + "name": "dlangui", + "description": "D language GUI library", + "homepage": "https://github.com/buggins/dlangui", + "license": "Boost", + "authors": [ + "Vadim Lopatin" + ], + + "targetName": "dlangui", + "targetPath": "lib", + + "dependencies": { + "derelict-gl3": "~master", + "derelict-fi": "~master", + "derelict-ft": "~master" + } +}