2011-03-18 Stefan Jahn <stefan@lkcc.org>

* configure.ac: Released version 0.0.16 and bumped up to version
	0.0.17.

2011-03-18  Stefan Jahn  <stefan@lkcc.org>

	* qucsdigilib.bat, qucsdigi.bat: Fixing digital simulation
	scripts.


git-svn-id: https://qucs.svn.sourceforge.net/svnroot/qucs/trunk@1833 b5b04e8c-4942-46c9-ab4f-83783d557d1c
This commit is contained in:
ela 2011-03-18 17:58:17 +00:00
parent b7f84248c4
commit 5c8fd5cd12
9 changed files with 29 additions and 14 deletions

View File

@ -1,3 +1,8 @@
2011-03-18 Stefan Jahn <stefan@lkcc.org>
* configure.ac: Released version 0.0.16 and bumped up to version
0.0.17.
2009-04-27 Stefan Jahn <stefan@lkcc.org>
* qucs-filter-v2: Added preliminary 2nd version of qucs-filter

4
NEWS
View File

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

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.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])

View File

@ -1,7 +1,7 @@
;
; freehdl.iss - inno Setup script file
;
; Copyright (C) 2006, 2008 Stefan Jahn <stefan@lkcc.org>
; Copyright (C) 2006, 2008, 2009, 2011 Stefan Jahn <stefan@lkcc.org>
;
; 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"

View File

@ -1,7 +1,7 @@
;
; qucs.iss - inno Setup script file
;
; Copyright (C) 2005, 2006, 2007, 2008 Stefan Jahn <stefan@lkcc.org>
; Copyright (C) 2005-2011 Stefan Jahn <stefan@lkcc.org>
;
; 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"

View File

@ -1,3 +1,8 @@
2011-03-18 Stefan Jahn <stefan@lkcc.org>
* qucsdigilib.bat, qucsdigi.bat: Fixing digital simulation
scripts.
2011-03-10 Stefan Jahn <stefan@lkcc.org>
* dialogs/settingsdialog.cpp (SettingsDialog): Fixed position of

View File

@ -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);
}
// ------------------------------------------------------------------------

View File

@ -3,7 +3,7 @@
REM
REM qucsdigi.bat - wrapper script for digital simulation
REM
REM Copyright (C) 2005, 2006, 2009 Stefan Jahn <stefan@lkcc.org>
REM Copyright (C) 2005, 2006, 2009, 2011 Stefan Jahn <stefan@lkcc.org>
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

View File

@ -3,7 +3,7 @@
REM
REM qucsdigilib.bat - wrapper script for digital modules and libraries
REM
REM Copyright (C) 2009 Stefan Jahn <stefan@lkcc.org>
REM Copyright (C) 2009, 2011 Stefan Jahn <stefan@lkcc.org>
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