diff options
author | André Nusser <andre.nusser@googlemail.com> | 2018-06-15 19:57:32 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2018-06-15 19:57:32 +0200 |
commit | 5b734d237890fd73504c8d9684f32a116b1cbdec (patch) | |
tree | fe970c98fbebf188e1342615a2c79c97582a30e3 | |
parent | 8d0ad1fe0d71100ab07a60b2d7824a4a2e6a3ce0 (diff) |
Add BUGS file in root dir and also in the about tab.
-rw-r--r-- | BUGS | 4 | ||||
-rw-r--r-- | plugin/Makefile.mingw32.in | 1 | ||||
-rw-r--r-- | plugingui/Makefile.am | 1 | ||||
-rw-r--r-- | plugingui/abouttab.cc | 9 | ||||
-rw-r--r-- | plugingui/abouttab.h | 1 |
5 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,4 @@ +If something is not working as expected, it's probably our fault and we don't +know about it yet. So, if you happen to find a bug, please report it to us +by either writing an email or joining us on IRC: +https://webchat.freenode.net/?channels=drumgizmo diff --git a/plugin/Makefile.mingw32.in b/plugin/Makefile.mingw32.in index 3fe5933..d224bcf 100644 --- a/plugin/Makefile.mingw32.in +++ b/plugin/Makefile.mingw32.in @@ -154,6 +154,7 @@ RES = \ resources/widget.png \ ../ABOUT \ ../AUTHORS \ + ../BUGS \ ../COPYING all: diff --git a/plugingui/Makefile.am b/plugingui/Makefile.am index 12ffdf0..94e8a7c 100644 --- a/plugingui/Makefile.am +++ b/plugingui/Makefile.am @@ -25,6 +25,7 @@ RES = \ resources/widget.png \ ../ABOUT \ ../AUTHORS \ + ../BUGS \ ../COPYING resource_data.cc : rcgen $(RES) diff --git a/plugingui/abouttab.cc b/plugingui/abouttab.cc index f731100..7e330cb 100644 --- a/plugingui/abouttab.cc +++ b/plugingui/abouttab.cc @@ -71,6 +71,15 @@ std::string AboutTab::getAboutText() "\n"); about_text.append(std::string(VERSION) + "\n"); + // Bugs + about_text.append( + "\n" + "=============\n" + " Bugs\n" + "=============\n" + "\n"); + about_text.append(bugs.data()); + // Authors about_text.append( "\n" diff --git a/plugingui/abouttab.h b/plugingui/abouttab.h index ecec13a..eda23da 100644 --- a/plugingui/abouttab.h +++ b/plugingui/abouttab.h @@ -51,6 +51,7 @@ private: int margin{10}; Resource about{":../ABOUT"}; + Resource bugs{":../BUGS"}; Resource authors{":../AUTHORS"}; Resource gpl{":../COPYING"}; }; |