diff --git a/DEVELOPERS b/DEVELOPERS deleted file mode 100644 index 1fbfff31..00000000 --- a/DEVELOPERS +++ /dev/null @@ -1,44 +0,0 @@ -Konsole was initially written by -Lars Doelle , -who is currently maintaining it. - -Partially substantial work has been -contributed by many other developers. -Amoung them are: - -- Warwick Allison - - 16 color SGR codes (xterm-83) - - schema files seeked also in ~/.kde/share/apps/konsole - - vim.schema - - improved/fixed selections -- Lotzi Boloni - - Fast switch between sessions with the same schema. - - Toolbar for switch between sessions - - Renaming sessions -- Matthias Ettrich - - most of main.C donated via kvt. - - rework of the session management - - command line argument handling in main.C -- David Faure - - dnd adjustsments - - "-e" included into session management. - - minor overall improvements. - - partification -- Sven Fischer - - bug fixing - - moved installations -- Dale M. Flaven - - bug fixing -- Martin Jones - - support for atypical kde apps dir locn. -- Lars Knoll - - bug fixing -- Antonio Larrosa - - transparency/tint -- Dan Pilone - - SGI Port -- Peter Silva - - bug fixing - - decent marking -- Kevin Street - - FreeBSD port diff --git a/LICENSE.readme b/LICENSE.readme deleted file mode 100644 index 53238126..00000000 --- a/LICENSE.readme +++ /dev/null @@ -1,15 +0,0 @@ -konsole - an X terminal emulation -Copyright (c) 1997-2000 by Lars Doelle - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License Version 2 as -published by the Free Software Foundation. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/NEWS b/NEWS index 08a97354..0c1fd6fa 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,6 @@ -New in 0.9.13 +New in 1.0.1 +- partial partification - Shift-(Left|Right) changes sessions New in 0.9.12 diff --git a/src/konsole.C b/src/konsole.C index 64271d13..bb468134 100644 --- a/src/konsole.C +++ b/src/konsole.C @@ -346,6 +346,7 @@ void Konsole::makeMenu() m_options->insertItem( i18n("Save &Options"), 8); connect(m_options, SIGNAL(activated(int)), SLOT(opt_menu_activated(int))); // Help and about menu +/* QString aboutAuthor = i18n("%1 version %2 - an X terminal\n" "Copyright (c) 1997-2000 by\n" "Lars Doelle \n" @@ -355,6 +356,8 @@ void Konsole::makeMenu() "and comes WITHOUT ANY WARRANTY.\n" "See 'LICENSE.readme' for details.").arg(PACKAGE).arg(VERSION); KPopupMenu* m_help = helpMenu(aboutAuthor, false); +*/ + KPopupMenu* m_help = helpMenu(0, FALSE); m_help->insertItem( i18n("&Technical Reference"), this, SLOT(tecRef()), 0, -1, 1); m_options->installEventFilter( this ); diff --git a/src/main.C b/src/main.C index f478607e..a8131b42 100644 --- a/src/main.C +++ b/src/main.C @@ -54,9 +54,52 @@ int main(int argc, char* argv[]) const char* wname = PACKAGE; KAboutData aboutData( PACKAGE, I18N_NOOP("Konsole"), - VERSION, description, KAboutData::License_GPL, + VERSION, description, KAboutData::License_GPL_V2, "(c) 1997-2000, Lars Doelle"); aboutData.addAuthor("Lars Doelle",0, "lars.doelle@on-line.de"); + aboutData.addCredit("Peter Silva", + "decent marking", + "peter.silva@videotron.ca"); + aboutData.addCredit("Lotzi Boloni", + "partification\n" + "Toolbar and session names", + "boloni@cs.purdue.edu"); + aboutData.addCredit("David Faure", + "partification\n" + "overall improvements", + "David.Faure@insa-lyon.fr"); + aboutData.addCredit("Antonio Larrosa", + "transparency", + "larrosa@kde.org"); + aboutData.addCredit("Matthias Ettrich", + "most of main.C donated via kvt\n" + "overall improvements", + "ettrich@kde.org"); + aboutData.addCredit("Warwick Allison", + "schema and selection improvements", + "warwick@troll.no"); + aboutData.addCredit("Dan Pilone", + "SGI Port", + "pilone@slac.com"); + aboutData.addCredit("Kevin Street", + "FreeBSD port", + "street@iname.com"); + aboutData.addCredit("Sven Fischer", + "bug fixing", + "herpes@kawo2.rwth-aachen.de"); + aboutData.addCredit("Dale M. Flaven", + "bug fixing", + "dflaven@netport.com"); + aboutData.addCredit("Martin Jones", + "bug fixing", + "mjones@powerup.com.au"); + aboutData.addCredit("Lars Knoll", + "bug fixing", + "knoll@mpi-hd.mpg.de"); + aboutData.addCredit("Thanks to many other", + "The above list only reflects the contributors\n" + "i mananged to keep track for."); + KCmdLineArgs::init( argc, argv, &aboutData ); KCmdLineArgs::addCmdLineOptions( options ); // Add our own options.