From 40c74cab1f8d498f08dcb60a47481cda6dc12d2a Mon Sep 17 00:00:00 2001 From: vurtun Date: Thu, 21 Jan 2016 18:52:03 +0100 Subject: [PATCH] updated contributing --- CONTRIBUTING.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c4e887a..358e6ab 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -26,9 +26,10 @@ If you have an idea for new features just [open an issue](https://github.com/vur * Seperator widget is currently bugged and does not work as intended * Text handling is still a little bit janky and probably needs to be further tested and polished * Text pixel width is bugged at the moment if you edit text with enabled font baking and vertex buffer API. + * `zr_edit_buffer` with multiline flag is bugged for '\n', need to differentiate between visible and non-visible characters * `zr_layout_space_xxx` with `ZR_DYNAMIC` currently does not work -## Coding conventions +## Coding conventions * Only use C89 (ANSI C) * Do not use any compiler specific extensions * For indent use four spaces @@ -41,4 +42,4 @@ If you have an idea for new features just [open an issue](https://github.com/vur * Only use fixed size types (zr_uint, zr_size, ...) if you really need to and use basic types otherwise * Do not include any header files in either zahnrad.h or zahnrad.c * Do not add dependencies rather write your own version if possible - + * Write correct commit messages: (http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)