From 532eebd8ed3081b59b123d2975baf991d3e06142 Mon Sep 17 00:00:00 2001 From: Alexander Bondarenko <486682+dpwiz@users.noreply.github.com> Date: Thu, 1 Jul 2021 00:47:23 +0300 Subject: [PATCH] Prepare Hackage release (#70) --- ChangeLog.md | 7 +++++++ README.md | 2 +- dear-imgui.cabal | 19 ++++++++++++++++++- 3 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 ChangeLog.md diff --git a/ChangeLog.md b/ChangeLog.md new file mode 100644 index 0000000..5e95db7 --- /dev/null +++ b/ChangeLog.md @@ -0,0 +1,7 @@ +# Changelog for dear-imgui + +## [1.0.0] Initial Hackage release + +Based on 1.83. + +[1.0.0]: https://github.com/haskell-game/dear-imgui.hs/tree/v1.0.0 diff --git a/README.md b/README.md index 7ad3ea5..b805728 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ OpenGL: ``` package dear-imgui - flags: +sdl +opengl + flags: +sdl +opengl3 ``` With this done, the following module is the "Hello, World!" of ImGui: diff --git a/dear-imgui.cabal b/dear-imgui.cabal index 44a9c06..922c4f6 100644 --- a/dear-imgui.cabal +++ b/dear-imgui.cabal @@ -1,10 +1,27 @@ cabal-version: 3.0 + name: dear-imgui version: 1.0.0 +author: Oliver Charles +maintainer: ollie@ocharles.org.uk, aenor.realm@gmail.com +license: BSD-3-Clause + +category: Graphics +synopsis: Haskell bindings for Dear ImGui. +description: + The package supports multiple rendering backends. + Set package flags according to your needs. + build-type: Simple -data-files: +extra-source-files: + README.md, + ChangeLog.md, imgui/imgui.h +source-repository head + type: git + location: https://github.com/haskell-game/dear-imgui.hs + flag opengl2 description: Enable OpenGL 2 backend.