<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent posts to news</title><link href="https://sourceforge.net/p/minicomputer/news/" rel="alternate"/><link href="https://sourceforge.net/p/minicomputer/news/feed.atom" rel="self"/><id>https://sourceforge.net/p/minicomputer/news/</id><updated>2010-02-07T13:20:14Z</updated><subtitle>Recent posts to news</subtitle><entry><title>version numbering</title><link href="https://sourceforge.net/p/minicomputer/news/2010/02/version-numbering/" rel="alternate"/><published>2010-02-07T13:20:14Z</published><updated>2010-02-07T13:20:14Z</updated><author><name>Malte Steiner</name><uri>https://sourceforge.net/u/herrsteiner/</uri></author><id>https://sourceforge.nete9b7a338f3e322842e1d4de2aa27cf0dc2de4a85</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;1.41 is out and I am glad to see that packages for some distributions become available, for instance Ubuntu and Fedora. The package maintainer for Fedora pointed out that with the number 1.41 it would be difficult when I name the next version 1.5 as I originally intended. It would be less and so buried behind the 1.41. So the next version will be 1.50, hopefully in this year, bringing a polyphonic mode. Stay tuned...&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>binary package for Ubuntu Karmic</title><link href="https://sourceforge.net/p/minicomputer/news/2010/02/binary-package-for-ubuntu-karmic/" rel="alternate"/><published>2010-02-02T23:37:05Z</published><updated>2010-02-02T23:37:05Z</updated><author><name>Malte Steiner</name><uri>https://sourceforge.net/u/herrsteiner/</uri></author><id>https://sourceforge.netd4a898273c2183be45759fef0c80ea80467776af</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;For the current version 1.41 there is a binary package for Ubuntu Karmic (thats Ubuntu 9.10). I stay away from providing binarys but someone Jeremy uploaded that to&lt;/p&gt;
&lt;p&gt;&lt;a href="https://launchpad.net/~philip5/+archive/extra/+sourcepub/948759/+listing-archive-extra" rel="nofollow"&gt;https://launchpad.net/~philip5/+archive/extra/+sourcepub/948759/+listing-archive-extra&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>new release version 1.4</title><link href="https://sourceforge.net/p/minicomputer/news/2010/01/new-release-version-14/" rel="alternate"/><published>2010-01-30T18:49:44Z</published><updated>2010-01-30T18:49:44Z</updated><author><name>Malte Steiner</name><uri>https://sourceforge.net/u/herrsteiner/</uri></author><id>https://sourceforge.net8c7d994a388a0a778442c57147b8c0324bb51bdd</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;its another year and here is a new release, fixing some bugs:&lt;/p&gt;
&lt;p&gt;- fix: names of patches and multis where displayed only the last letters which are usually blanks&lt;br /&gt;
- fix: change so that it can be now compiled without being in C99 mode&lt;br /&gt;
- new: using alsaseq eventfilter to receive only events that are processed&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>version 1.3 released</title><link href="https://sourceforge.net/p/minicomputer/news/2009/01/version-13-released/" rel="alternate"/><published>2009-01-20T00:21:54Z</published><updated>2009-01-20T00:21:54Z</updated><author><name>Malte Steiner</name><uri>https://sourceforge.net/u/herrsteiner/</uri></author><id>https://sourceforge.net19fde5dc705e13b18bb00fb9ae8ca10ce47337ee</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Today the new version 1.3 is released. Main changes are a better compatibility to current gcc compilers and better envelopes. They are now sort of exponential and have a better punch imho.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>gcc 4.3 and Minicomputer</title><link href="https://sourceforge.net/p/minicomputer/news/2008/05/gcc-43-and-minicomputer/" rel="alternate"/><published>2008-05-31T12:33:01Z</published><updated>2008-05-31T12:33:01Z</updated><author><name>Malte Steiner</name><uri>https://sourceforge.net/u/herrsteiner/</uri></author><id>https://sourceforge.net63c066233ae168ef04a17b309e68d2ad193ae8e7</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Today I added the patch Leslie P. Polzer sent me a while ago concerning some legacy includes which doesn't work with gcc/g++ 4.3 and onwards (I still have a slightly older version which doesnt give me any trouble) . I reworked some headers and commit it to the SVN. Expect a 1.2.1 version soon, which is just a maintenance release.&lt;/p&gt;
&lt;p&gt;Here is the patch anyway, thanks Leslie!:&lt;/p&gt;
&lt;h1 id="index-editormemoryh"&gt;Index: editor/Memory.h&lt;/h1&gt;
&lt;p&gt;--- editor/Memory.h    (revision 92)&lt;br /&gt;
+++ editor/Memory.h (working copy)&lt;br /&gt;
@@ -25,11 +25,13 @@&lt;br /&gt;
#include &amp;lt;string&amp;gt; //string&lt;br /&gt;
//#include &amp;lt;boost/archive/text_oarchive.hpp&amp;gt;&lt;br /&gt;
//#include &amp;lt;boost/archive/text_iarchive.hpp&amp;gt;&lt;br /&gt;
-#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
-#include &amp;lt;stdlib.h&amp;gt;&lt;br /&gt;
+#include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
+#include &amp;lt;cstdlib&amp;gt;&lt;br /&gt;
+#include &amp;lt;cerrno&amp;gt; &lt;br /&gt;
+#include &amp;lt;cstring&amp;gt;&lt;/p&gt;
&lt;p&gt;-    #include &amp;lt;unistd.h&amp;gt;&lt;br /&gt;
-    #include &amp;lt;errno.h&amp;gt; &lt;br /&gt;
+#include &amp;lt;unistd.h&amp;gt;&lt;br /&gt;
+&lt;br /&gt;
#include &amp;quot;../common.h&amp;quot;&lt;br /&gt;
using namespace std;&lt;br /&gt;
//#include &amp;quot;patch.h&amp;quot;&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>1.2 released</title><link href="https://sourceforge.net/p/minicomputer/news/2008/05/12-released/" rel="alternate"/><published>2008-05-01T14:35:01Z</published><updated>2008-05-01T14:35:01Z</updated><author><name>Malte Steiner</name><uri>https://sourceforge.net/u/herrsteiner/</uri></author><id>https://sourceforge.net2604f0d0d6db73f0922ae293bee939871b28ca2e</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Version 1.2 is released today. Highlights are an included installer/deinstaller which install it to /usr/local/bin and an unified behaviour, you now only need to start only one application. Several bugfixes of course too.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>step closer to a unified behaviour</title><link href="https://sourceforge.net/p/minicomputer/news/2008/04/step-closer-to-a-unified-behaviour/" rel="alternate"/><published>2008-04-29T20:36:38Z</published><updated>2008-04-29T20:36:38Z</updated><author><name>Malte Steiner</name><uri>https://sourceforge.net/u/herrsteiner/</uri></author><id>https://sourceforge.netc3a9559d46be7bcae80cc5fcfc1ca6f183966567</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;In the svn repo I commited changes which make the editor starting and stopping the synthcore so it looks more like a monolitic application. But for now it has to be in the same directory and the editor has to be started from within. It screams for a healthy installer and deinstaller so the apps resides in a bin/ file and this is comming next.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>optimization for 1.1</title><link href="https://sourceforge.net/p/minicomputer/news/2008/03/optimization-for-11/" rel="alternate"/><published>2008-03-19T15:40:50Z</published><updated>2008-03-19T15:40:50Z</updated><author><name>Malte Steiner</name><uri>https://sourceforge.net/u/herrsteiner/</uri></author><id>https://sourceforge.net26c89caaa78de8effc30c5d8c1b877f576d9233e</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;I got a chance to check out Minicomputer on Intel platform with Ubuntustudio and discoverd a bug which made low latency impossible in this setup. Maybe AMD is more tolerant but I had to change the sleep time of the new Midithread in the engine main.c . It behaves much better. The change is for now only in the repository but will be in the next release.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>back from Musik Messe</title><link href="https://sourceforge.net/p/minicomputer/news/2008/03/back-from-musik-messe/" rel="alternate"/><published>2008-03-19T15:37:41Z</published><updated>2008-03-19T15:37:41Z</updated><author><name>Malte Steiner</name><uri>https://sourceforge.net/u/herrsteiner/</uri></author><id>https://sourceforge.neta2b5fb28bdbee5b70123b0c033f9f2c83af10b83</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;On Sunday I came back from the Frankfurt Musik Messe which was an exhausting but cool experience. I got the chance to exhibit Minicomputer and Linux as an audio platform in general at the booth of Synthesizer Magazin for which I write articles. At least some coverage happend, Matrixsynth posted about it and its in the video by Sonic State along with a ride through our booth.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://matrixsynth.blogspot.com/2008/03/industrial-grade-digital-synthesizer.html" rel="nofollow"&gt;http://matrixsynth.blogspot.com/2008/03/industrial-grade-digital-synthesizer.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.sonicstate.com/news/shownews.cfm?newsid=6327" rel="nofollow"&gt;http://www.sonicstate.com/news/shownews.cfm?newsid=6327&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>version 1.1 released</title><link href="https://sourceforge.net/p/minicomputer/news/2008/03/version-11-released/" rel="alternate"/><published>2008-03-09T23:02:01Z</published><updated>2008-03-09T23:02:01Z</updated><author><name>Malte Steiner</name><uri>https://sourceforge.net/u/herrsteiner/</uri></author><id>https://sourceforge.net0384507dcd590e58d68d37ef55f42d61ca333769</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Today I released the version 1.1 which should fix some bugs like wrong colors in the editor and jack zombification of the engine, which happen to some users.&lt;br /&gt;
A new feature is in it anyway, now you can specify the port number for OSC connection so its now possible to run more then one instance of Minicomputer.&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>