summaryrefslogtreecommitdiff
path: root/plugingui
diff options
context:
space:
mode:
authorAndré Nusser <andre.nusser@googlemail.com>2018-06-15 19:57:32 +0200
committerAndré Nusser <andre.nusser@googlemail.com>2018-06-15 19:57:32 +0200
commit5b734d237890fd73504c8d9684f32a116b1cbdec (patch)
treefe970c98fbebf188e1342615a2c79c97582a30e3 /plugingui
parent8d0ad1fe0d71100ab07a60b2d7824a4a2e6a3ce0 (diff)
Add BUGS file in root dir and also in the about tab.
Diffstat (limited to 'plugingui')
-rw-r--r--plugingui/Makefile.am1
-rw-r--r--plugingui/abouttab.cc9
-rw-r--r--plugingui/abouttab.h1
3 files changed, 11 insertions, 0 deletions
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"};
};