2004-04-30 Stefan Jahn <stefan@lkcc.org>

* configure.ac: Added no-define directive to AM_INIT_AUTOMAKE,
        changed all callers of the VERSION #define to use PACKAGE_VERSION.

2004-05-01  Stefan Jahn  <stefan@lkcc.org>

        * qucs_it.ts: Applied changes made by Gorgio.  Thanks.
This commit is contained in:
ela 2004-04-30 22:32:03 +00:00
parent e569387540
commit 858dafd564
7 changed files with 456 additions and 350 deletions

View File

@ -1,3 +1,8 @@
2004-04-30 Stefan Jahn <stefan@lkcc.org>
* configure.ac: Added no-define directive to AM_INIT_AUTOMAKE,
changed all callers of the VERSION #define to use PACKAGE_VERSION.
2004-02-09 Stefan Jahn <stefan@lkcc.org>
* configure.ac: Substituting the variable PATHXFORM depending

View File

@ -9,7 +9,7 @@ AC_CONFIG_HEADERS([config.h])
AC_CANONICAL_BUILD
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE(1.7.0)
AM_INIT_AUTOMAKE([no-define])
AM_MAINTAINER_MODE
# Checks for programs.

View File

@ -1,3 +1,7 @@
2004-05-01 Stefan Jahn <stefan@lkcc.org>
* qucs_it.ts: Applied changes made by Gorgio. Thanks.
2004-04-26 Stefan Jahn <stefan@lkcc.org>
* docs/en/Makefile.am (PIC): Added 'mathfunc.html' and

View File

@ -60,7 +60,7 @@
QucsApp::QucsApp()
{
setCaption("Qucs " VERSION);
setCaption("Qucs " PACKAGE_VERSION);
if(!loadSettings())
resize(600,400);
@ -141,7 +141,7 @@ void QucsApp::saveSettings()
QString Line;
QTextStream stream(&file);
stream << "Settings file, Qucs " VERSION "\n";
stream << "Settings file, Qucs " PACKAGE_VERSION "\n";
stream << "Position=" << x() << "," << y() << "\n";
stream << "Size=" << width() << "," << height() << "\n";
file.close();
@ -1253,7 +1253,7 @@ void QucsApp::slotGettingStarted()
void QucsApp::slotHelpAbout()
{
QMessageBox::about(this,tr("About..."),
tr("Qucs Version ")+VERSION+tr("\nQt universal circuit simulator\n")+
tr("Qucs Version ")+PACKAGE_VERSION+tr("\nQt universal circuit simulator\n")+
tr("Copyright (C) 2003,2004 by Michael Margraf\nSimulator by Stefan Jahn\n")+
tr("Special thanks to Jens Flucke\n\n")+
tr("Translations:\n")+
@ -1414,7 +1414,7 @@ void QucsApp::slotSimulate()
QStringList com;
com << BINARYDIR "qucsator" << "-i" << "netlist.txt";
com << "-o" << view->Docs.current()->DataSet;
com << "-o" << view->Docs.current()->DataSet;
if(!sim->startProcess(com)) {
sim->ErrText->insert(tr("ERROR: Cannot start simulator!"));
sim->errorSimEnded();
@ -1612,7 +1612,7 @@ int QucsApp::testFile(const QString& DocName)
return -3;
}
QString s = VERSION;
QString s = PACKAGE_VERSION;
s.remove('.');
Line = Line.mid(16, Line.length()-17);
Line.remove('.');
@ -1689,7 +1689,7 @@ void QucsApp::OpenProject(const QString& Path, const QString& Name)
Content->firstChild()->setOpen(true); // show schematics
ProjName = Name; // remember the name of project
setCaption("Qucs " VERSION + tr(" - Project: ")+Name); // show name in title of main window
setCaption("Qucs " PACKAGE_VERSION + tr(" - Project: ")+Name); // show name in title of main window
}
// #######################################################################

File diff suppressed because it is too large Load Diff

View File

@ -2304,7 +2304,7 @@ bool QucsDoc::createNetlist(QFile *NetlistFile)
if(!NetlistFile->open(IO_WriteOnly)) return false;
QTextStream stream(NetlistFile);
stream << "# Qucs " << VERSION << " " << DocName << "\n"; // first line is docu
stream << "# Qucs " << PACKAGE_VERSION << " " << DocName << "\n"; // first line is docu
if(!giveNodeNames(&stream)) {

View File

@ -55,7 +55,7 @@ QString QucsFile::createClipboardFile()
Painting *pp;
Component *pc;
QString s("<Qucs Schematic " VERSION ">\n");
QString s("<Qucs Schematic " PACKAGE_VERSION ">\n");
// Build element document.
s += "<Components>\n";
@ -99,7 +99,7 @@ bool QucsFile::pasteFromClipboard(QTextStream *stream, QPtrList<Element> *pe)
return false;
}
QString s = VERSION;
QString s = PACKAGE_VERSION;
Line = Line.mid(16, Line.length()-17);
if(Line != s) { // wrong version number ?
QMessageBox::critical(0, QObject::tr("Error"),
@ -139,7 +139,7 @@ int QucsFile::save()
QTextStream stream(&file);
stream << "<Qucs Schematic " << VERSION << ">\n";
stream << "<Qucs Schematic " << PACKAGE_VERSION << ">\n";
stream << "<Properties>\n";
stream << " <View=" << Doc->ViewX1<<","<<Doc->ViewY1<<","<<Doc->ViewX2<<","<<Doc->ViewY2;
@ -449,7 +449,7 @@ bool QucsFile::load()
return false;
}
QString s = VERSION;
QString s = PACKAGE_VERSION;
s.remove('.');
Line = Line.mid(16, Line.length()-17);
Line.remove('.');