Update release version

This commit is contained in:
Mathias Gumz 2015-01-03 14:07:34 +01:00
parent 354e59f547
commit 376ed523cb
12 changed files with 15 additions and 11 deletions

View file

@ -1,7 +1,7 @@
fbrun(1) fbrun(1)
======== ========
Jim Ramsay <i.am@jimramsay.com> Jim Ramsay <i.am@jimramsay.com>
v1.3.5, 13 February 2013 v1.3.6, 03 January 2015
:man source: fbrun.txt :man source: fbrun.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual

View file

@ -1,7 +1,7 @@
fbsetbg(1) fbsetbg(1)
========== ==========
Jim Ramsay <i.am@jimramsay.com> Jim Ramsay <i.am@jimramsay.com>
v1.3.5, 13 February 2013 v1.3.6, 03 January 2015
:man source: fbsetbg.txt :man source: fbsetbg.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual

View file

@ -1,7 +1,7 @@
fbsetroot(1) fbsetroot(1)
============ ============
Jim Ramsay <i.am@jimramsay.com> Jim Ramsay <i.am@jimramsay.com>
v1.3.5, 13 February 2013 v1.3.6, 03 January 2015
:man source: fbsetroot.txt :man source: fbsetroot.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual

View file

@ -1,7 +1,7 @@
fluxbox-apps(5) fluxbox-apps(5)
=============== ===============
Jim Ramsay <i.am@jimramsay.com> Jim Ramsay <i.am@jimramsay.com>
v1.3.5, 13 February 2013 v1.3.6, 03 January 2015
:man source: fluxbox-apps.txt :man source: fluxbox-apps.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual

View file

@ -1,7 +1,7 @@
fluxbox-keys(5) fluxbox-keys(5)
=============== ===============
Jim Ramsay <i.am@jimramsay.com> Jim Ramsay <i.am@jimramsay.com>
v1.3.5, 13 February 2013 v1.3.6, 03 January 2015
:man source: fluxbox-keys.txt :man source: fluxbox-keys.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual

View file

@ -1,7 +1,7 @@
fluxbox-remote(1) fluxbox-remote(1)
================= =================
Mark Tiefenbruck <mark@fluxbox.org> Mark Tiefenbruck <mark@fluxbox.org>
v1.3.5, 13 February 2013 v1.3.6, 03 February 2015
:man source: fluxbox-remote.txt :man source: fluxbox-remote.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual

View file

@ -1,7 +1,7 @@
fluxbox-style(5) fluxbox-style(5)
================ ================
Henrik Kinnunen <fluxgen@fluxbox.org> Henrik Kinnunen <fluxgen@fluxbox.org>
v1.3.5, 13 February 2013 v1.3.6, 03 January 2015
:man source: fluxbox-style.txt :man source: fluxbox-style.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual

View file

@ -1,7 +1,7 @@
fluxbox(1) fluxbox(1)
========== ==========
Henrik Kinnunen <fluxgen@fluxbox.org> Henrik Kinnunen <fluxgen@fluxbox.org>
v1.3.5, 13 February 2013 v1.3.6, 03 January 2015
:man source: fluxbox.txt :man source: fluxbox.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual

View file

@ -137,7 +137,7 @@ int FluxboxCli::Options::parse(int argc, char** argv) {
"-help\t\t\t\tdisplay this help text and exit.\n\n", "-help\t\t\t\tdisplay this help text and exit.\n\n",
"Main usage string. Please lay it out nicely. There is one %s that is given the version").c_str(), "Main usage string. Please lay it out nicely. There is one %s that is given the version").c_str(),
__fluxbox_version, "2001-2014"); __fluxbox_version, "2001-2015");
return EXIT_SUCCESS; return EXIT_SUCCESS;
} else if (arg == "-info" || arg == "-i" || arg == "--info") { } else if (arg == "-info" || arg == "-i" || arg == "--info") {
FluxboxCli::showInfo(cout); FluxboxCli::showInfo(cout);

View file

@ -53,6 +53,10 @@
#include <sys/wait.h> #include <sys/wait.h>
#endif // HAVE_SYS_WAIT_H #endif // HAVE_SYS_WAIT_H
#ifdef HAVE_SIGNAL_H
#include <signal.h>
#endif
#include <iostream> #include <iostream>
#include <stdexcept> #include <stdexcept>

View file

@ -48,7 +48,7 @@ using std::endl;
using std::string; using std::string;
void showUsage(const char *progname) { void showUsage(const char *progname) {
cerr<<"fbrun 1.5 : (c) 2002-2014 Henrik Kinnunen"<<endl; cerr<<"fbrun 1.5 : (c) 2002-2015 Henrik Kinnunen"<<endl;
cerr<<"Usage: "<< cerr<<"Usage: "<<
progname<<" [arguments]"<<endl<< progname<<" [arguments]"<<endl<<
"Arguments: "<<endl<< "Arguments: "<<endl<<

View file

@ -360,7 +360,7 @@ void fbsetroot::gradient() {
*/ */
void fbsetroot::usage(int exit_code) { void fbsetroot::usage(int exit_code) {
_FB_USES_NLS; _FB_USES_NLS;
cout << m_app_name << " 2.3 : (c) 2003-2014 Fluxbox Development Team" << endl; cout << m_app_name << " 2.3 : (c) 2003-2015 Fluxbox Development Team" << endl;
cout << m_app_name << " 2.1 : (c) 2002 Claes Nasten" << endl; cout << m_app_name << " 2.1 : (c) 2002 Claes Nasten" << endl;
cout << m_app_name << " 2.0 : (c) 1997-2000 Brad Hughes\n" << endl; cout << m_app_name << " 2.0 : (c) 1997-2000 Brad Hughes\n" << endl;
cout << _FB_CONSOLETEXT(fbsetroot, Usage, cout << _FB_CONSOLETEXT(fbsetroot, Usage,