aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar BlindSight2015-10-27 11:09:59 -0400
committerGravatar BlindSight2015-10-27 11:09:59 -0400
commit60c8e9b2e5b4041dd0ec2394a9f03ecf3d5f7479 (patch)
tree536564ab825a2eee54e664dbe4faa242ac672773
parentOptionsWidget_servers: connect button window unfocus state color adjustments ... (diff)
parentAbout Entries: add blindsight and tweak. (diff)
downloadKVIrc-60c8e9b2e5b4041dd0ec2394a9f03ecf3d5f7479.tar.gz
KVIrc-60c8e9b2e5b4041dd0ec2394a9f03ecf3d5f7479.tar.bz2
KVIrc-60c8e9b2e5b4041dd0ec2394a9f03ecf3d5f7479.zip
Merge pull request #1697 from un1versal/Mary-Poppins
cosmetics and about text additon
-rw-r--r--CMakeLists.txt60
-rw-r--r--src/modules/about/ENTRIES28
-rw-r--r--src/modules/about/abouttext.inc48
3 files changed, 75 insertions, 61 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ad62c911a..b37c35ace 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,7 +1,5 @@
###############################################################################
-##
## KVIrc CMake global configuration file.
-##
###############################################################################
##
## Conventions for variables:
@@ -185,10 +183,9 @@ endif()
list(APPEND CMAKE_KVIRC_BUILD_FLAGS CMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX})
###############################################################################
-#
# Release type
-#
###############################################################################
+
option(WANT_ENV_FLAGS "Don't try to set CMAKE_C(XX)_FLAGS; instead, use the ones from environment variables" OFF)
option(WANT_DEBUG "Compile debug symbols" OFF)
@@ -285,9 +282,7 @@ else()
endif()
###############################################################################
-#
# Verbose Makefile
-#
###############################################################################
option(WANT_VERBOSE "Generate verbose Makefiles" OFF)
@@ -301,9 +296,7 @@ endif()
###############################################################################
-#
-# Version compatibility switch: appends VERSION_MAJOR to kvirc and kvilib
-#
+# Version compatibility switch: appends VERSION_MAJOR to KVIrc and kvilib
###############################################################################
option(WANT_COEXISTENCE "Append version to binaries to maintain compatibility with older versions" OFF)
@@ -318,9 +311,7 @@ else()
endif()
###############################################################################
-#
-# Module install path: kvirc needs to know where they are installed
-#
+# Module install path: KVIrc needs to know where they are installed
###############################################################################
if(UNIX)
@@ -338,9 +329,7 @@ elseif(WIN32)
endif()
###############################################################################
-#
# System checks
-#
###############################################################################
include(CheckTypeSize)
@@ -367,10 +356,8 @@ else()
endif()
###############################################################################
-#
# Library and tool checks, in order. First the required ones
# in order of dependency, then the optional ones.
-#
###############################################################################
# ignore sigalarm
@@ -794,7 +781,7 @@ if(WIN32)
endif()
############################################################################
-# Check for MacOS X universal binary
+# Check for OS X universal binary
############################################################################
if(APPLE)
@@ -881,7 +868,7 @@ else()
endif()
############################################################################
-# Do we want pseudo-transparency ?
+# Do we want pseudo-transparency?
############################################################################
option(WANT_TRANSPARENCY "Compile Transparency Support" ON)
@@ -949,6 +936,7 @@ endif()
############################################################################
# Enchant (spell checker) support
############################################################################
+
option(WANT_SPELLCHECKER "Compile Spell-Checker Support" ON)
if(WANT_SPELLCHECKER)
find_package(PkgConfig)
@@ -968,6 +956,7 @@ endif()
############################################################################
# IPC (inter-process communication) support
############################################################################
+
option(WANT_IPC "Compile Inter-Process Communication Support" ON)
if(WANT_IPC)
set(CMAKE_STATUS_IPC_SUPPORT "Yes")
@@ -1003,6 +992,7 @@ endif()
############################################################################
# SetEnv/PutEnv support
############################################################################
+
CHECK_FUNCTION_EXISTS("setenv" HAVE_SETENV_EXISTS)
# what systems lack this!?
if(HAVE_SETENV_EXISTS)
@@ -1018,6 +1008,7 @@ endif()
############################################################################
# GSM support
############################################################################
+
option(WANT_GSM "Compile GSM Support" ON)
if(WANT_GSM)
set(COMPILE_USE_GSM 1)
@@ -1041,6 +1032,7 @@ endif()
############################################################################
# DCC voice support
############################################################################
+
CHECK_INCLUDE_FILE(linux/soundcard.h CMAKE_HAVE_LINUX_SOUNDCARD_H)
CHECK_INCLUDE_FILE(sys/soundcard.h CMAKE_HAVE_SYS_SOUNDCARD_H)
CHECK_INCLUDE_FILE(soundcard.h CMAKE_HAVE_SOUNDCARD_H)
@@ -1066,8 +1058,9 @@ else()
endif()
############################################################################
-# Dcc video support + extended webcam support (LibV4L2)
+# DCC video support + extended webcam support (LibV4L2)
############################################################################
+
option(WANT_DCC_VIDEO "Compile DCC Video Support" OFF)
if(WANT_DCC_VIDEO AND CMAKE_RESULT_USING_QT5)
@@ -1090,6 +1083,7 @@ endif()
############################################################################
# Ogg/Vorbis and Ogg/Theora support
############################################################################
+
option(WANT_OGG_THEORA "Compile Ogg/Vorbis+Theora Support" OFF)
if(WANT_OGG_THEORA)
@@ -1110,6 +1104,7 @@ endif()
############################################################################
# Memory profiling support
############################################################################
+
option(WANT_MEMORY_PROFILE "Compile Memory Profiling Support" OFF)
if(WANT_MEMORY_PROFILE)
set(COMPILE_MEMORY_PROFILE 1)
@@ -1121,6 +1116,7 @@ endif()
############################################################################
# Memory checks support
############################################################################
+
option(WANT_MEMORY_CHECKS "Compile Memory Checking Support" OFF)
if(WANT_MEMORY_CHECKS)
set(COMPILE_MEMORY_CHECKS 1)
@@ -1132,6 +1128,7 @@ endif()
############################################################################
# Platform Specific checks
############################################################################
+
if(WIN32)
add_definitions(-D_WIN32_WINNT=0x501 -DWINVER=0x501 -DWIN32_LEAN_AND_MEAN)
endif()
@@ -1160,6 +1157,7 @@ endif()
############################################################################
# Very important checks
############################################################################
+
option(WANT_PIZZA "Pizza for everyone" OFF)
if(WANT_PIZZA)
message(STATUS "Checking for mozzarella...")
@@ -1192,10 +1190,9 @@ if(WANT_GTKSTYLE)
endif()
###############################################################################
-#
# Translation (GetText) checks
-#
###############################################################################
+
option(WANT_GETTEXT "Whether to use GetText to generate translations" ON)
if(WANT_GETTEXT)
find_program(GETTEXT_MSGMERGE_EXECUTABLE msgmerge)
@@ -1250,20 +1247,18 @@ else()
set(CMAKE_STATUS_GETTEXT_SUPPORT "No")
endif()
-# Search for subdirectories; under osx, data _MUST_ be before src (to get Info.plist installed before the main executable's fixup_bundle step)
+# Search for subdirectories; under OS X, data _MUST_ be before src (to get Info.plist installed before the main executable's fixup_bundle step)
subdirs(data doc po scripts src)
#install additional resources for win32
if(WIN32)
add_subdirectory(win32build)
endif()
+
###############################################################################
-#
# The API documentation target
-#
###############################################################################
-
option(WANT_DOXYGEN "Whether to use Doxygen to generate documentation" ON)
if(WANT_DOXYGEN)
find_package(Doxygen)
@@ -1288,9 +1283,7 @@ else()
endif()
###############################################################################
-#
-# The User documentation target (kvirc internal help)
-#
+# The User documentation target (KVIrc internal help)
###############################################################################
#currently WIP
@@ -1302,9 +1295,7 @@ endif()
#endif()
###############################################################################
-#
# We want the "distclean" target
-#
###############################################################################
if(UNIX)
@@ -1341,7 +1332,7 @@ endif()
###############################################################################
# System configuration is now split into 2 files
-# kvi_sysconfig.h contains the "saveable" configuration: stuff that
+# kvi_sysconfig.h contains the "savable" configuration: stuff that
# may be preserved between multiple cmake runs (and thus may save compilation time)
# kvi_sysbuildinfo.h contains the configuration that changes at every
# cmake run and must be recompiled every time. Extra care is taken
@@ -1409,6 +1400,7 @@ mark_as_advanced(FORCE EXECUTABLE_OUTPUT_PATH)
###############################################################################
list(APPEND LIBS "${ADDITIONAL_LINK_FLAGS}")
+
###############################################################################
# FINAL OUTPUT
###############################################################################
@@ -1418,7 +1410,7 @@ if(UNIX)
if(APPLE)
set(KVIRC_BIN_PATH ${CMAKE_INSTALL_PREFIX}/Contents/MacOS/)
else()
- # Assume linux
+ # Assume Linux
set(KVIRC_BIN_PATH ${CMAKE_INSTALL_PREFIX}/bin/)
endif()
elseif(WIN32)
@@ -1430,7 +1422,7 @@ if(UNIX)
if(APPLE)
set(KVIRC_LIB_PATH ${CMAKE_INSTALL_PREFIX}/Contents/MacOS/)
else()
- # Assume linux
+ # Assume Linux
set(KVIRC_LIB_PATH ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/)
endif()
elseif(WIN32)
@@ -1452,7 +1444,7 @@ endif()
# Man path
if(UNIX)
if(APPLE)
- # does MacOS X use man pages? <= yes!
+ # does OS X use man pages? <= yes!
else()
# Assume GNU/Linux
set(KVIRC_MAN_PATH ${CMAKE_INSTALL_PREFIX}/${MANDIR_PREFIX}/)
diff --git a/src/modules/about/ENTRIES b/src/modules/about/ENTRIES
index 2518a3622..29f15b6e6 100644
--- a/src/modules/about/ENTRIES
+++ b/src/modules/about/ENTRIES
@@ -36,7 +36,7 @@ NAME: Fabio Bas
NICK: CtrlAltCa
MAIL: ctrlaltca at gmail dot com
ROLE: Bugfixing, coding, mingw32 port, user support
-TEXT: Can i haz KVIrc?
+TEXT: Can I haz KVIrc?
NAME: Thomas Kalla
NICK: |Tom|@IrcNet
@@ -46,7 +46,7 @@ NAME: Voker57
NICK: Voker57
MAIL: voker57 at gmail dot com
ROLE: Bugfixing, cmake, kde4, other new stuff
-TEXT: I'm not sure how i did it, but it works
+TEXT: I'm not sure how I did it, but it works
NAME: TheXception
NICK: TheXception
@@ -63,6 +63,12 @@ TEXT: As Debian's Co-Maintainer of KVIrc I have a Debian-centric
TEXT: view on some things, which is - apart from bugs reported to
TEXT: Debian - the main force driving me to improve KVIrc.
+NAME: Matt Ullman
+NICK: BlindSight
+MAIL: matt at airraidsirens dot com
+ROLE: Development and bug fixing
+TEXT: Codes with his paws.
+
SECTION: Translators
NAME: José Melo
@@ -118,11 +124,11 @@ NICK: Andidas
ROLE: Splash screen Artist :)
MAIL: http://www.andidas.com
-NAME: universal
-MAIL: universal at dot dot dot
-ROLE: Designer
+NAME: un1versal
+ROLE: Design, Spellchecking, bug-hunting and minor development.
TEXT: Icon set, themes and graphics for KVIrc v4.3.x
-
+TEXT: Kudos to all the KVIrc translators.
+TEXT: Translating gibberish is never easy. :D
SECTION: Packagers
@@ -142,14 +148,12 @@ ROLE: Webmaster, bughunter, snapshot mantainer
ROLE: support gay^Wguy :o) and the man that gives
ROLE: you KVIrc through IPv6.
-
SECTION: Contributors
NAME: Tomasz Moń
NICK: desowin
MAIL: desowin at gmail dot com
-
SECTION: Historic project staff
NAME: Luk De Ketelaere
@@ -210,7 +214,7 @@ NICK: Drosha@Undernet
ROLE: Beta testing
ROLE: Ideator of www.kvirc.org
TEXT: This free project is better that shareware
-TEXT: mIrc for windows even in alpha stage
+TEXT: mIRC for windows even in alpha stage
NAME: Ted Podgurski
NICK: alch3m1st
@@ -234,7 +238,7 @@ NAME: Charles Samuels
NICK: Njaard
MAIL: charles at altair dot dhs dot org
ROLE: The KDE man! Making sure that KVirc has a reason to have a K in the beginning
-TEXT: Could I please make KVirc a pure KDE application today?? Pleeease...
+TEXT: Could I please make KVIrc a pure KDE application today?? Pleeease...
NAME: BuTi
NICK: BuTi@OpenProjects
@@ -255,7 +259,7 @@ TEXT: prepare yourselves..
TEXT: #include <iostream.h>
TEXT: class testing {...
TEXT: <oehansen> I must admit, I'm getting confused :-)
-TEXT: <Pragma> Me too , at this point :)
+TEXT: <Pragma> Me too, at this point :)
NAME: Giovanni Ferri
NICK: marl
@@ -283,7 +287,7 @@ ROLE: Italian translations, code improvements and many useful suggestions
NAME: Eva Schaller
NICK: Penny
ROLE: Italian translation, bug hunting, moral support :))))
-TEXT: KVirc ? Ah! Il dinosauro...
+TEXT: KVIrc ? Ah! Il dinosauro...
NAME: Christoph Thielecke
NICK: Crissi
diff --git a/src/modules/about/abouttext.inc b/src/modules/about/abouttext.inc
index 2f5ab7564..c0db06731 100644
--- a/src/modules/about/abouttext.inc
+++ b/src/modules/about/abouttext.inc
@@ -9,7 +9,7 @@ static const char * g_szAboutText = "" \
"contributed in some way to the KVIrc project.<br><br>" \
"Honor and glory to:<br>" \
"</h4>" \
-"<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">" \
+"<br><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">" \
"<tr><td align=\"center\">" \
"<font color=\"#000000\" size=\"+3\"><b>Core developers</b></font>" \
"</td></tr>" \
@@ -121,7 +121,7 @@ static const char * g_szAboutText = "" \
"Bugfixing, coding, mingw32 port, user support" \
"</font></td></tr>" \
"<tr><td align=\"center\"><font color=\"#606060\"><i>" \
-"\"Can i haz KVIrc?\"" \
+"\"Can I haz KVIrc?\"" \
"</i></font></td></tr>" \
"</table><br><br>" \
"<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">" \
@@ -151,7 +151,7 @@ static const char * g_szAboutText = "" \
"Bugfixing, cmake, kde4, other new stuff" \
"</font></td></tr>" \
"<tr><td align=\"center\"><font color=\"#606060\"><i>" \
-"\"I'm not sure how i did it, but it works\"" \
+"\"I'm not sure how I did it, but it works\"" \
"</i></font></td></tr>" \
"</table><br><br>" \
"<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">" \
@@ -198,6 +198,25 @@ static const char * g_szAboutText = "" \
"\"Debian - the main force driving me to improve KVIrc.\"" \
"</i></font></td></tr>" \
"</table><br><br>" \
+"<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">" \
+"<tr><td align=\"center\">" \
+"<font color=\"#000000\" size=\"+2\"><b>Matt Ullman</b></font>" \
+"</td></tr>" \
+"<tr><td align=\"center\"><font color=\"#800020\" size=\"+2\"> (" \
+"BlindSight" \
+")</font></td></tr>" \
+"<tr><td align=\"center\"><font color=\"#0000FF\" size=\"+1\">" \
+"[" \
+"matt at airraidsirens dot com" \
+"]" \
+"</font></td></tr>" \
+"<tr><td align=\"center\"><font color=\"#303030\">" \
+"Development and bug fixing" \
+"</font></td></tr>" \
+"<tr><td align=\"center\"><font color=\"#606060\"><i>" \
+"\"Codes with his paws.\"" \
+"</i></font></td></tr>" \
+"</table><br><br>" \
"<br><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">" \
"<tr><td align=\"center\">" \
"<font color=\"#000000\" size=\"+3\"><b>Translators</b></font>" \
@@ -373,18 +392,17 @@ static const char * g_szAboutText = "" \
"</table><br><br>" \
"<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">" \
"<tr><td align=\"center\">" \
-"<font color=\"#000000\" size=\"+2\"><b>universal</b></font>" \
+"<font color=\"#000000\" size=\"+2\"><b>un1versal</b></font>" \
"</td></tr>" \
-"<tr><td align=\"center\"><font color=\"#0000FF\" size=\"+1\">" \
-"[" \
-"universal at dot dot dot" \
-"]" \
-"</font></td></tr>" \
"<tr><td align=\"center\"><font color=\"#303030\">" \
-"Designer" \
+"Design, Spellchecking, bug-hunting and minor development." \
"</font></td></tr>" \
"<tr><td align=\"center\"><font color=\"#606060\"><i>" \
-"Icon set, themes and graphics for KVIrc v4.3.x" \
+"\"Icon set, themes and graphics for KVIrc v4.3.x\"" \
+"<br>" \
+"\"Kudos to all the KVIrc translators.\"" \
+"<br>" \
+"\"Translating gibberish is never easy. :D\"" \
"</i></font></td></tr>" \
"</table><br><br>" \
"<br><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">" \
@@ -627,7 +645,7 @@ static const char * g_szAboutText = "" \
"<tr><td align=\"center\"><font color=\"#606060\"><i>" \
"\"This free project is better that shareware\"" \
"<br>" \
-"\"mIrc for windows even in alpha stage\"" \
+"\"mIRC for windows even in alpha stage\"" \
"</i></font></td></tr>" \
"</table><br><br>" \
"<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">" \
@@ -696,7 +714,7 @@ static const char * g_szAboutText = "" \
"The KDE man! Making sure that KVirc has a reason to have a K in the beginning" \
"</font></td></tr>" \
"<tr><td align=\"center\"><font color=\"#606060\"><i>" \
-"\"Could I please make KVirc a pure KDE application today?? Pleeease...\"" \
+"\"Could I please make KVIrc a pure KDE application today?? Pleeease...\"" \
"</i></font></td></tr>" \
"</table><br><br>" \
"<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">" \
@@ -757,7 +775,7 @@ static const char * g_szAboutText = "" \
"<br>" \
"\"&lt;oehansen&gt; I must admit, I'm getting confused :-)\"" \
"<br>" \
-"\"&lt;Pragma&gt; Me too , at this point :)\"" \
+"\"&lt;Pragma&gt; Me too, at this point :)\"" \
"</i></font></td></tr>" \
"</table><br><br>" \
"<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">" \
@@ -835,7 +853,7 @@ static const char * g_szAboutText = "" \
"Italian translation, bug hunting, moral support :))))" \
"</font></td></tr>" \
"<tr><td align=\"center\"><font color=\"#606060\"><i>" \
-"\"KVirc ? Ah! Il dinosauro...\"" \
+"\"KVIrc ? Ah! Il dinosauro...\"" \
"</i></font></td></tr>" \
"</table><br><br>" \
"<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">" \