summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-06-09 20:28:03 +0300
committerAndrei Karas <akaras@inbox.ru>2011-06-09 20:28:03 +0300
commit252f04e191d5fd754122db195dd2bffe38858a74 (patch)
treeac5bfd6b6c6e204d3acb03d9a5a2077ced5490b2
parentf80a1b2de6ec5a09c2116eadd07b34265c473946 (diff)
downloadplus-252f04e191d5fd754122db195dd2bffe38858a74.tar.gz
plus-252f04e191d5fd754122db195dd2bffe38858a74.tar.bz2
plus-252f04e191d5fd754122db195dd2bffe38858a74.tar.xz
plus-252f04e191d5fd754122db195dd2bffe38858a74.zip
Add more texts to "did you know" window.
-rw-r--r--data/help/tips/7.txt2
-rw-r--r--data/help/tips/8.txt1
-rw-r--r--data/help/tips/CMakeLists.txt1
-rw-r--r--data/help/tips/Makefile.am3
-rw-r--r--src/gui/didyouknowwindow.cpp2
5 files changed, 7 insertions, 2 deletions
diff --git a/data/help/tips/7.txt b/data/help/tips/7.txt
new file mode 100644
index 000000000..d86adf1d2
--- /dev/null
+++ b/data/help/tips/7.txt
@@ -0,0 +1,2 @@
+You can see other player equiped items,
+by right click on player and select in context menu "Show Items".
diff --git a/data/help/tips/8.txt b/data/help/tips/8.txt
new file mode 100644
index 000000000..de000705a
--- /dev/null
+++ b/data/help/tips/8.txt
@@ -0,0 +1 @@
+About yellow bar you can read here: http://manaplus.evolonline.org/yellowbar
diff --git a/data/help/tips/CMakeLists.txt b/data/help/tips/CMakeLists.txt
index b0b1b7947..0fb66d6b4 100644
--- a/data/help/tips/CMakeLists.txt
+++ b/data/help/tips/CMakeLists.txt
@@ -7,6 +7,7 @@ SET(FILES
4.txt
5.txt
6.txt
+ 7.txt
)
INSTALL(FILES ${FILES} DESTINATION ${DATA_DIR}/help/tips)
diff --git a/data/help/tips/Makefile.am b/data/help/tips/Makefile.am
index 1c7e6550e..626577881 100644
--- a/data/help/tips/Makefile.am
+++ b/data/help/tips/Makefile.am
@@ -9,7 +9,8 @@ helptips_DATA = \
3.txt \
4.txt \
5.txt \
- 6.txt
+ 6.txt \
+ 7.txt
EXTRA_DIST = \
$(helptips_DATA) \
diff --git a/src/gui/didyouknowwindow.cpp b/src/gui/didyouknowwindow.cpp
index 24731d58a..5d8142be8 100644
--- a/src/gui/didyouknowwindow.cpp
+++ b/src/gui/didyouknowwindow.cpp
@@ -41,7 +41,7 @@
#include "debug.h"
static const int minTip = 1;
-static const int maxTip = 6;
+static const int maxTip = 8;
DidYouKnowWindow::DidYouKnowWindow():
Window(_("Did You Know?"))