summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIra Rice <irarice@gmail.com>2008-11-04 21:50:00 +0000
committerIra Rice <irarice@gmail.com>2008-11-04 21:50:00 +0000
commit5c7340cf1e87745129e121309f0cdcb1f2e28b4b (patch)
tree1cac6336b3651391877a7d955347c05d0c953638
parente7bec61d89e2fb60bd89a51e0475f16a0956945e (diff)
downloadMana-5c7340cf1e87745129e121309f0cdcb1f2e28b4b.tar.gz
Mana-5c7340cf1e87745129e121309f0cdcb1f2e28b4b.tar.bz2
Mana-5c7340cf1e87745129e121309f0cdcb1f2e28b4b.tar.xz
Mana-5c7340cf1e87745129e121309f0cdcb1f2e28b4b.zip
Committed an extension to the San Serif font by Vargavind on TMW so that
it contains the complete ISO-8859-15 character set, as well as made a few other smaller fixes towards fixing make dist.
-rw-r--r--CMakeLists.txt2
-rwxr-xr-xconfigure.ac2
-rw-r--r--data/graphics/gui/sansserif8.pngbin1261 -> 2134 bytes
-rw-r--r--src/gui/gui.cpp14
4 files changed, 14 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index df745a7c..7ac379de 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,6 +1,6 @@
PROJECT(AETHYRA)
-SET(VERSION 0.0.24.1)
+SET(VERSION 0.0.27)
# where to look for cmake modules
SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMake/Modules)
diff --git a/configure.ac b/configure.ac
index d24b00be..ac227410 100755
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ(2.59)
-AC_INIT([Aethyra], [Aethyra SVN 0.0.27], [irarice@gmail.com], [aethyra])
+AC_INIT([Aethyra], [SVN-0.0.27], [irarice@gmail.com], [aethyra])
AC_CONFIG_HEADERS([config.h:config.h.in])
AC_LANG_CPLUSPLUS
diff --git a/data/graphics/gui/sansserif8.png b/data/graphics/gui/sansserif8.png
index 7eae7a1b..a4738548 100644
--- a/data/graphics/gui/sansserif8.png
+++ b/data/graphics/gui/sansserif8.png
Binary files differ
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp
index e386a85c..f72f544c 100644
--- a/src/gui/gui.cpp
+++ b/src/gui/gui.cpp
@@ -113,8 +113,18 @@ Gui::Gui(Graphics *graphics):
// Set global font
try {
mGuiFont = new gcn::ImageFont("graphics/gui/sansserif8.png",
- " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ["
- "\\]^_`abcdefghijklmnopqrstuvwxyz{|}~|áÁéÉßøèÈ"
+ " !\"#$%&'()*+,-./"
+ "0123456789:;<=>?"
+ "@ABCDEFGHIJKLMNO"
+ "PQRSTUVWXYZ[\\]^_"
+ "`abcdefghijklmno"
+ "pqrstuvwxyz{|}~|"
+ " ¡¢£¤¥¦§¨©ª«¬­®¯"
+ "°±²³´µ¶·¸¹º»¼½¾¿"
+ "ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏ"
+ "ÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞß"
+ "àáâãäåæçèéêëìíîï"
+ "ðñòóôõö÷øùúûüýþÿ"
);
}
catch (gcn::Exception e)