From aeb518558e7d6e9db028a3827fe09fb65f5bbaf9 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Tue, 14 Dec 2021 22:03:47 -0500 Subject: [PATCH 1/3] clib: Add MIT license --- clib.json | 1 + 1 file changed, 1 insertion(+) diff --git a/clib.json b/clib.json index 65aa3eb..43215ed 100644 --- a/clib.json +++ b/clib.json @@ -4,5 +4,6 @@ "repo": "Immediate-Mode-UI/Nuklear", "description": "A small ANSI C gui toolkit", "keywords": ["gl", "ui", "toolkit"], + "license": "MIT", "src": ["nuklear.h"] } From 146676d376ecec484eafe65f41d078bf3bef3a17 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Wed, 15 Dec 2021 17:39:18 -0500 Subject: [PATCH 2/3] utils: Add EditorConfig to manage editor whitespace (#376) [EditorConfig](https://editorconfig.org) is a utility for various code editors which will automatically configure the editor to manage whitespace as desired. --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..4ce28c3 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# EditorConfig: https://EditorConfig.org + +root = true + +[*] +indent_style = space +charset = utf-8 +end_of_line = lf +indent_size = 4 +insert_final_newline = true +trim_trailing_whitespace = true + +[clib.json] +indent_size = 2 From 368e184ebcdee66c3c57318bf12bd3ec0676111a Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Thu, 16 Dec 2021 00:59:09 -0500 Subject: [PATCH 3/3] clib: Add Unlicense --- clib.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clib.json b/clib.json index 43215ed..49b122d 100644 --- a/clib.json +++ b/clib.json @@ -4,6 +4,6 @@ "repo": "Immediate-Mode-UI/Nuklear", "description": "A small ANSI C gui toolkit", "keywords": ["gl", "ui", "toolkit"], - "license": "MIT", + "license": "MIT, Unlicense", "src": ["nuklear.h"] }