diff --git a/ChangeLog b/ChangeLog index 00d27cc0..ea6cf0e6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-03-18 Stefan Jahn + + * configure.ac: Released version 0.0.16 and bumped up to version + 0.0.17. + 2009-04-27 Stefan Jahn * qucs-filter-v2: Added preliminary 2nd version of qucs-filter diff --git a/NEWS b/NEWS index 1c5efeae..f85e8866 100644 --- a/NEWS +++ b/NEWS @@ -23,6 +23,10 @@ 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.17 +-------------- + + Version 0.0.16 -------------- diff --git a/configure.ac b/configure.ac index 874ec769..f8cf9496 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.57) -AC_INIT(qucs,0.0.16,qucs-bugs@lists.sourceforge.net) +AC_INIT(qucs,0.0.17,qucs-bugs@lists.sourceforge.net) AC_CONFIG_SRCDIR([qucs/qucs.cpp]) AC_CONFIG_HEADERS([config.h]) diff --git a/contrib/innosetup/freehdl.iss b/contrib/innosetup/freehdl.iss index 0253c316..641debdf 100644 --- a/contrib/innosetup/freehdl.iss +++ b/contrib/innosetup/freehdl.iss @@ -1,7 +1,7 @@ ; ; freehdl.iss - inno Setup script file ; -; Copyright (C) 2006, 2008 Stefan Jahn +; Copyright (C) 2006, 2008, 2009, 2011 Stefan Jahn ; ; This is free software; you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by @@ -23,10 +23,10 @@ ; NOTE: additional files: bin/libregex.dll lib/libregex.a ; -#define RELEASE "0.0.7" +#define RELEASE "0.0.8" #define BASENAME "freehdl" #define APPNAME "FreeHDL" -#define APPVERNAME "FreeHDL 0.0.7 binary package for Win32" +#define APPVERNAME "FreeHDL 0.0.8 binary package for Win32" #define URL "http://www.freehdl.seul.org" #define TREE "C:\home\freetree" diff --git a/contrib/innosetup/qucs.iss b/contrib/innosetup/qucs.iss index 459b3dd6..3840e6fb 100644 --- a/contrib/innosetup/qucs.iss +++ b/contrib/innosetup/qucs.iss @@ -1,7 +1,7 @@ ; ; qucs.iss - inno Setup script file ; -; Copyright (C) 2005, 2006, 2007, 2008 Stefan Jahn +; Copyright (C) 2005-2011 Stefan Jahn ; ; This is free software; you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by @@ -19,10 +19,10 @@ ; Boston, MA 02110-1301, USA. ; -#define RELEASE "0.0.14" +#define RELEASE "0.0.16" #define BASENAME "qucs" #define APPNAME "Qucs" -#define APPVERNAME "Quite Universal Circuit Simulator 0.0.14 binary package for Win32" +#define APPVERNAME "Quite Universal Circuit Simulator 0.0.16 binary package for Win32" #define URL "http://qucs.sourceforge.net" #define TREE "C:\home\qucstree" diff --git a/qucs/ChangeLog b/qucs/ChangeLog index 418031e7..6b487b6d 100644 --- a/qucs/ChangeLog +++ b/qucs/ChangeLog @@ -1,3 +1,8 @@ +2011-03-18 Stefan Jahn + + * qucsdigilib.bat, qucsdigi.bat: Fixing digital simulation + scripts. + 2011-03-10 Stefan Jahn * dialogs/settingsdialog.cpp (SettingsDialog): Fixed position of diff --git a/qucs/octave_window.cpp b/qucs/octave_window.cpp index abc60ddf..43d27c63 100644 --- a/qucs/octave_window.cpp +++ b/qucs/octave_window.cpp @@ -106,9 +106,10 @@ void OctaveWindow::sendCommand(const QString& cmd) { int par = output->paragraphs() - 1; int idx = output->paragraphLength(par); - output->insertAt(cmd + "\n", par, idx); - octProcess.writeToStdin(cmd + "\n"); + QString cmdstr = cmd + "\n"; + output->insertAt(cmdstr, par, idx); output->scrollToBottom(); + octProcess.writeToStdin(cmdstr); } // ------------------------------------------------------------------------ diff --git a/qucs/qucsdigi.bat b/qucs/qucsdigi.bat index c02ec192..ca3ca872 100644 --- a/qucs/qucsdigi.bat +++ b/qucs/qucsdigi.bat @@ -3,7 +3,7 @@ REM REM qucsdigi.bat - wrapper script for digital simulation REM -REM Copyright (C) 2005, 2006, 2009 Stefan Jahn +REM Copyright (C) 2005, 2006, 2009, 2011 Stefan Jahn REM REM This is free software; you can redistribute it and/or modify REM it under the terms of the GNU General Public License as published by @@ -21,7 +21,7 @@ REM the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, REM Boston, MA 02110-1301, USA. REM -if not exist "%6" goto usage +if "X%6"=="X" goto usage set NAME=%1 set NAMEOUT=%2 diff --git a/qucs/qucsdigilib.bat b/qucs/qucsdigilib.bat index 2d148db1..596fc1da 100644 --- a/qucs/qucsdigilib.bat +++ b/qucs/qucsdigilib.bat @@ -3,7 +3,7 @@ REM REM qucsdigilib.bat - wrapper script for digital modules and libraries REM -REM Copyright (C) 2009 Stefan Jahn +REM Copyright (C) 2009, 2011 Stefan Jahn REM REM This is free software; you can redistribute it and/or modify REM it under the terms of the GNU General Public License as published by @@ -21,7 +21,7 @@ REM the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, REM Boston, MA 02110-1301, USA. REM -if not exist "%4" goto usage +if "X%4"=="X" goto usage set NAME=%1 set DIR=%2 @@ -51,7 +51,7 @@ echo compiling functions... %CXX% %CXXFLAGS% -c %NAME%.cc echo copying modules to VHDL directory... -copy %NAME%.o vhdl/%LIBRARY% +copy %NAME%.o vhdl\%LIBRARY% > NUL echo updating VHDL library... %AR% cru vhdl/lib%LIBRARY%.a vhdl/%LIBRARY%/*.o