summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BUGS4
-rw-r--r--plugin/Makefile.mingw32.in1
-rw-r--r--plugingui/Makefile.am1
-rw-r--r--plugingui/abouttab.cc9
-rw-r--r--plugingui/abouttab.h1
5 files changed, 16 insertions, 0 deletions
diff --git a/BUGS b/BUGS
new file mode 100644
index 0000000..a26deed
--- /dev/null
+++ b/BUGS
@@ -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"};
};