Skip to content

Commit

Permalink
Updating infos for release 1.4.4 #107
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhard-thiele committed Mar 19, 2016
1 parent 61436bf commit e79a285
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 13 deletions.
29 changes: 23 additions & 6 deletions Modelica_DeviceDrivers/UsersGuide.mo
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,19 @@ First public version of the library.
</ul>
</html>"));
end Version_1_4_0;

class Version_1_4_4 "Version 1.4.4 (March 19, 2016)"
extends Modelica.Icons.ReleaseNotes;

annotation (Documentation(info="<html>
<ul>
<li>Bugfix release, no new features.</li>
<li>Uses latest version of Modelica Standard Library (version 3.2.2), but still works with previous version.</li>
<li>Changed license of external C code and header files to Simplified BSD License terms.</li>
<li>Cleaned up diverse minor issues, e.g., outdated documentation.</li>
</ul>
</html>"));
end Version_1_4_4;
annotation (Documentation(info="<html>
<p>
This section summarizes the changes that have been performed
Expand Down Expand Up @@ -666,22 +679,26 @@ of the library:
</p>
<table border=1 cellspacing=0 cellpadding=2>
<tr><td valign=\"top\"><b>Miguel Neves</b> </td>
<td valign=\"top\">&nbsp;</td>
<td valign=\"top\">Human readable error codes for the Softing CAN interface.</td>
</tr>
<tr><td valign=\"top\"><b>Dominik Sommer</b> </td>
<td valign=\"top\"> </td>
<td valign=\"top\"> Blocks.Communication.SerialPortReceive<br>
Blocks.Communication.SerialPortSend<br>
Communication.SerialPort<br>
Communication.SerialPort_</td>
</tr>
<tr><td valign=\"top\"><b>Rangarajan Varadan</b> </td>
<td valign=\"top\">&nbsp;</td>
<td valign=\"top\">Code for Windows serial port support..</td>
</tr>
<tr><td valign=\"top\"><b>Dietmar Winkler</b> </td>
<td valign=\"top\"><a href=\"https://github.com/dietmarw\">at Github</a></td>
<td valign=\"top\">Github project setup and service integration etc.</td>
<td valign=\"top\">Github project setup, development services integration etc.</td>
</tr>
<tr><td valign=\"top\"><b>Miguel Neves</b> </td>
<td valign=\"top\">&nbsp;</td>
<td valign=\"top\">Human readable error codes for the Softing CAN interface.</td>
</tr>
</table>
</html>"));
end Contact;
Expand Down
6 changes: 3 additions & 3 deletions Modelica_DeviceDrivers/libraryinfo.mos
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ LibraryInfoMenuCommand(
category="libraries",
text="Modelica Device Drivers",
reference="Modelica_DeviceDrivers",
version="1.4.3",
version="1.4.4",
isModel=true,
description="Modelica Device Drivers library (version 1.4.3)",
ModelicaVersion="3.2.1",
description="Modelica Device Drivers library (version 1.4.4)",
ModelicaVersion="3.2.2",
pos=106)
13 changes: 11 additions & 2 deletions Modelica_DeviceDrivers/package.mo
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,20 @@ within ;
package Modelica_DeviceDrivers "Modelica_DeviceDrivers - A collection of drivers interfacing hardware like input devices, communication devices, shared memory, analog-digital converters and else"
extends Modelica.Icons.Package;










annotation (preferredView="info",
uses(Modelica_Synchronous(version="0.92.1"),
Modelica(version="3.2.2")),
version="1.4.3",
versionDate="2015-10-04",
version="1.4.4",
versionDate="2016-03-19",
Documentation(info="<html>
<p>
Library <b>Modelica_DeviceDrivers</b> is a Modelica package
Expand Down
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ Download [Modelica_DeviceDrivers latest release](../../releases/latest)
Please note that currently (2015-09-01) the library is known to work with Dymola (preferable Dymola 2013FD01 and later) and with SimulationX (with `userBufferSize` all non-clocked communication blocks are working in SimulationX, but `autoBufferSize` only works for external solvers CVode and Fixed Step solver and fails for BDF and MEBDF solvers, see [#54 (comment)](https://github.com/modelica/Modelica_DeviceDrivers/issues/54#issuecomment-76032325)). If you tested the library successfully with another Modelica tool, please contact [Bernhard Thiele](https://github.com/bernhard-thiele) or send a [pull request](https://github.com/modelica/Modelica_DeviceDrivers/pulls) that updates this README.md.

#### Release notes
Bugfix releases usually won't have release notes, so please use the download link from above to get the latest release including bugfixes.
* [Version v1.4.4 (2016-03-19)](../../releases/tag/v1.4.4)
* Bugfix release, no new features.
* Uses latest version of Modelica Standard Library (version 3.2.2), but still works with previous version.
* Changed license of external C code and header files to liberal [Simplified BSD License terms](Modelica_DeviceDrivers/Resources/License.txt) (the Modelica package parts remain under [Modelica License 2](https://modelica.org/licenses/ModelicaLicense2)).
* Cleaned up diverse minor issues, e.g., outdated documentation
* [Version v1.4.0 (2015-09-01)](../../releases/tag/v1.4.0)
* Switched to [semantic versioning](http://semver.org).
* Migrated to new release process motivated by [impact-on-library-developers](https://github.com/xogeny/impact/blob/master/resources/docs/modelica2015/paper/impact.md#impact-on-librarydevelopers).
Expand Down Expand Up @@ -82,5 +88,7 @@ You may report any issues with using the [Issues](https://github.com/modelica/Mo
Contributions in shape of [Pull Requests](https://github.com/modelica/Modelica_DeviceDrivers/pulls) are always welcome.

The following people have directly contributed to the implementation of the library (many more have contributed by providing feedback and suggestions):
* [Dominik Sommer](mailto:[email protected]), code for Linux serial port support.
* [Rangarajan Varadan](mailto:[email protected]), code for Windows serial port support.
* Miguel Neves, human readable error codes for the Softing CAN interface.
* Dominik Sommer, code for Linux serial port support.
* Rangarajan Varadan, code for Windows serial port support.
* [Dietmar Winkler](https://github.com/dietmarw), Github project setup, development services integration etc.

0 comments on commit e79a285

Please sign in to comment.