removed some files in favor of aboutData

svn path=/trunk/kdebase/konsole/; revision=64234
wilder-portage
Lars Doelle 26 years ago
parent c4dcf0b8f0
commit 1273abf298
  1. 44
      DEVELOPERS
  2. 15
      LICENSE.readme
  3. 3
      NEWS
  4. 3
      src/konsole.C
  5. 45
      src/main.C

@ -1,44 +0,0 @@
Konsole was initially written by
Lars Doelle <lars.doelle@on-line.de>,
who is currently maintaining it.
Partially substantial work has been
contributed by many other developers.
Amoung them are:
- Warwick Allison <warwick@troll.no>
- 16 color SGR codes (xterm-83)
- schema files seeked also in ~/.kde/share/apps/konsole
- vim.schema
- improved/fixed selections
- Lotzi Boloni <boloni@cs.purdue.edu>
- Fast switch between sessions with the same schema.
- Toolbar for switch between sessions
- Renaming sessions
- Matthias Ettrich <ettrich@kde.org>
- most of main.C donated via kvt.
- rework of the session management
- command line argument handling in main.C
- David Faure <David.Faure@insa-lyon.fr>
- dnd adjustsments
- "-e" included into session management.
- minor overall improvements.
- partification
- Sven Fischer <herpes@kawo2.rwth-aachen.de>
- bug fixing
- moved installations
- Dale M. Flaven <dflaven@netport.com>
- bug fixing
- Martin Jones <mjones@powerup.com.au>
- support for atypical kde apps dir locn.
- Lars Knoll <knoll@mpi-hd.mpg.de>
- bug fixing
- Antonio Larrosa <larrosa@kde.org>
- transparency/tint
- Dan Pilone <pilone@slac.com>
- SGI Port
- Peter Silva <peter.silva@videotron.ca>
- bug fixing
- decent marking
- Kevin Street <street@iname.com>
- FreeBSD port

@ -1,15 +0,0 @@
konsole - an X terminal emulation
Copyright (c) 1997-2000 by Lars Doelle <lars.doelle@on-line.de>
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

@ -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

@ -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 <lars.doelle@on-line.de>\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 );

@ -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.

Loading…
Cancel
Save