From b40f39f8a13312a469406539c124f84cca8e0ef9 Mon Sep 17 00:00:00 2001 From: cnjinhao Date: Mon, 15 Dec 2014 16:09:58 +0800 Subject: [PATCH 1/4] Create README.md --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..8b7a7fb1 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# Nana C++ Library + +Nana is a C++ library designed to allow developers to easily create cross-platform GUI applications with modern C++11 style, currently it can work on Linux(X11) and Windows. The nana repository contains the entire source of library, you can browse the source code and submit your pull request for contributing. + +## License + +Nana is licensed under the [Boost Software License]. + +[Boost Software License]: http://www.boost.org/LICENSE_1_0.txt + +## Support + +The best way to get help with Nana library is by visiting htt://nanapro.org/help/index.htm From c9305784fe82a48d4882fca19085050b83550395 Mon Sep 17 00:00:00 2001 From: cnjinhao Date: Mon, 15 Dec 2014 16:48:44 +0800 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8b7a7fb1..843feff2 100644 --- a/README.md +++ b/README.md @@ -10,4 +10,4 @@ Nana is licensed under the [Boost Software License]. ## Support -The best way to get help with Nana library is by visiting htt://nanapro.org/help/index.htm +The best way to get help with Nana library is by visiting http://nanapro.org/help/index.htm From ccd74ede895df52fd663e4cee16a2a7ee47cd78e Mon Sep 17 00:00:00 2001 From: cnjinhao Date: Mon, 15 Dec 2014 16:50:47 +0800 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 843feff2..2106bb6b 100644 --- a/README.md +++ b/README.md @@ -10,4 +10,4 @@ Nana is licensed under the [Boost Software License]. ## Support -The best way to get help with Nana library is by visiting http://nanapro.org/help/index.htm +The best way to get help with Nana library is by visiting http://nanapro.org/help.htm From dd8a0a017361b7cc5efdf32ca7a796c3435a3de8 Mon Sep 17 00:00:00 2001 From: Jinhao Date: Sun, 21 Dec 2014 08:47:09 +0800 Subject: [PATCH 4/4] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 2106bb6b..3546c151 100644 --- a/README.md +++ b/README.md @@ -11,3 +11,13 @@ Nana is licensed under the [Boost Software License]. ## Support The best way to get help with Nana library is by visiting http://nanapro.org/help.htm + +## Introduction to the Repository + +There are two main branches with an infinite lifetime: +* **master** is the main branch and it is marked as every version release. +* **develop** is also another main branch where the source code reflects a state with the lastest delivered developement changes for the next release. + +Other branches: +* **features** are used to develop new features for the upcoming or a distant future release. Feature branches are named as 'feature-FEATURENAME'. +* **hotfix** is meant to prepare for a new release, and fixes some bugs from the corresponding tag on the master branch.