2006-09-01 Stefan Jahn <stefan@lkcc.org>

* configure.ac: Released version 0.0.10 and bumped up to version
        0.0.11.

2006-09-03  Stefan Jahn  <stefan@lkcc.org>

        * qtgeneric_cz.ts, qucs_cz.ts: Added Czech translations.

2006-09-03  Stefan Jahn  <stefan@lkcc.org>

        * opt_sim.cpp (createASCOFiles): Fixed a bug occuring when
        trying to use ASCO on Win32.

note to self: this last fix should be ported to the qt4 branch to verify
that the idea works
This commit is contained in:
raimi 2006-09-04 07:49:10 +00:00
parent 01f073befc
commit ef81f0882a
7 changed files with 21 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2006-09-01 Stefan Jahn <stefan@lkcc.org>
* configure.ac: Released version 0.0.10 and bumped up to version
0.0.11.
2006-08-08 Stefan Jahn <stefan@lkcc.org>
* qucs-attenuator/qucsattenuator.cpp (slotSetText_Zin):

3
NEWS
View File

@ -23,6 +23,9 @@ This file lists user visible changes that were made between releases. For
more verbose descriptions of these and internal changes see the ChangeLog
files.
Version 0.0.11
--------------
Version 0.0.10
--------------

View File

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.57)
AC_INIT(qucs,0.0.10,qucs-bugs@lists.sourceforge.net)
AC_INIT(qucs,0.0.11,qucs-bugs@lists.sourceforge.net)
AC_CONFIG_SRCDIR([qucs/qucs.cpp])
AC_CONFIG_HEADERS([config.h])

View File

@ -1,3 +1,7 @@
2006-09-03 Stefan Jahn <stefan@lkcc.org>
* qtgeneric_cz.ts, qucs_cz.ts: Added Czech translations.
2006-08-30 Stefan Jahn <stefan@lkcc.org>
* main.cpp (main): Using ASCODIR environment variable (if set)

View File

@ -54,11 +54,11 @@ noinst_HEADERS = $(MOCHEADERS) main.h wire.h qucsdoc.h element.h \
# rules for translations
TRANSLATIONS = qucs_de.ts qucs_pl.ts qucs_fr.ts qucs_it.ts qucs_ro.ts \
qucs_pt.ts qucs_es.ts qucs_jp.ts qucs_hu.ts qucs_he.ts qucs_sv.ts \
qucs_tr.ts qucs_uk.ts qucs_ru.ts
qucs_tr.ts qucs_uk.ts qucs_ru.ts qucs_cz.ts
GENTRANSLATIONS = qtgeneric_untranslated.ts qtgeneric_de.ts qtgeneric_fr.ts \
qtgeneric_es.ts qtgeneric_ro.ts qtgeneric_jp.ts qtgeneric_hu.ts \
qtgeneric_it.ts qtgeneric_he.ts qtgeneric_sv.ts qtgeneric_pl.ts \
qtgeneric_tr.ts qtgeneric_uk.ts qtgeneric_ru.ts
qtgeneric_tr.ts qtgeneric_uk.ts qtgeneric_ru.ts qtgeneric_cz.ts
TRANSFILES = $(TRANSLATIONS:.ts=.qm)
qucs_%.ts: $(qucs_SOURCES)

View File

@ -1,3 +1,8 @@
2006-09-03 Stefan Jahn <stefan@lkcc.org>
* opt_sim.cpp (createASCOFiles): Fixed a bug occuring when
trying to use ASCO on Win32.
2006-08-30 Stefan Jahn <stefan@lkcc.org>
* opt_sim.cpp (loadASCOout): Evaluate output file of ASCO and

View File

@ -186,7 +186,7 @@ bool Optimize_Sim::createASCOFiles()
stream << "#\n\n";
stream << "# Post Processing #\n";
stream << "MEASURE_VAR:#SYMBOL#:SEARCH_FOR:'<indep " << VarName
<< "':S_COL:01:P_LINE:01:P_COL:01:20" << "\n";
<< "':S_COL:01:P_LINE:01:P_COL:01:31" << "\n";
stream << "#\n\n";
efile.close();
}