<?xml version="1.0" ?><rss version="2.0">
  <channel>
    <title>Flyspray::</title>
    <lastBuildDate>Thu, 16 May 2013 18:40:30 +0200</lastBuildDate>
    <description>Flyspray::QCAD: Recently closed tasks</description>
    <link>http://www.ribbonsoft.com/bugtracker/</link>
        <item>
      <title>FS#623: C++ plugin interface</title>
      <author>Andrew</author>
      <pubDate>Mon, 11 Jun 2012 12:07:41 +0200</pubDate>
      <description><![CDATA[C++ plugin interface to add functionality from existing C / C++ libraries to QCAD.]]></description>
      <link>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=623</link>
      <guid>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=623</guid>
    </item>
        <item>
      <title>FS#806: File - Print , not working</title>
      <author>--</author>
      <pubDate>Mon, 13 May 2013 19:35:49 +0200</pubDate>
      <description><![CDATA[Windows 7-64<br />
<br />
Selecting print from Main menu &gt; File &gt; Print - not working.<br />
<br />
Print function only working from selecting the Print icon button from within the Print preview stage!]]></description>
      <link>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=806</link>
      <guid>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=806</guid>
    </item>
        <item>
      <title>FS#711: Drawing preferences dialog too large</title>
      <author>Andrew</author>
      <pubDate>Wed, 07 Nov 2012 23:02:14 +0100</pubDate>
      <description><![CDATA[See forum at:<br />
http://www.ribbonsoft.com/rsforum/viewtopic.php?f=11&amp;t=2249&amp;view=unread#unread]]></description>
      <link>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=711</link>
      <guid>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=711</guid>
    </item>
        <item>
      <title>FS#803: Pan and Zoom with touch pad are hard to use (wrong buffer handling)</title>
      <author>Matthias Melcher</author>
      <pubDate>Mon, 29 Apr 2013 18:03:33 +0200</pubDate>
      <description><![CDATA[Version:<br />
V 3.0.9 and earlier.<br />
<br />
How to reproduce:<br />
Go into App Preferences, in Graphics View-&gt;Navigation, enable pan gesture. Now add any drawing and pan around for ten seconds quickly, not taking the fingers off the mouse/touch pad. Take the fingers off the pad now. <br />
<br />
What goes wrong:<br />
QCad will pan around the drawing for another 30 seconds or so, dutifully executing all the buffered mouse moves.<br />
<br />
Suggested solution:<br />
Qt buffers more mouse pan-moves than QCad can handle. QCad executes every move in the buffer, making the pan feature close to unusable. The zoom function has the same bug, but it much less pronounced. <br />
<br />
This is easily solved: when receiving a pan event (two finger scroll), just check if there are more events in the queue. If there are, accumulate the effect, but don&#039;t draw yet. As soon as the buffer is empty, kick off the redraw. The result is a *much* more fluent and responsive user interface.<br />
<br />
Please fix soon. This wonderful feature makes life so easy, but currently it is unusable. Thanks. Matthias.]]></description>
      <link>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=803</link>
      <guid>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=803</guid>
    </item>
        <item>
      <title>FS#804: &quot;Color by Layer&quot; uses wrong Layer for Blocks</title>
      <author>Matthias Melcher</author>
      <pubDate>Mon, 29 Apr 2013 18:10:26 +0200</pubDate>
      <description><![CDATA[Not sure whether this is intentional, but IMHO it is not logical and wrong:<br />
<br />
When loading a block that has a drawing set to &quot;color by layer&quot; into any layer but &quot;0&quot;, it will still always show the color of the &quot;0&quot; layer.<br />
<br />
However, it should show the color of the layer that this Block is in (this is likely true for all the other attributes).]]></description>
      <link>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=804</link>
      <guid>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=804</guid>
    </item>
        <item>
      <title>FS#149: SIGABRT when trying to use entiy.setColor()</title>
      <author>Martin</author>
      <pubDate>Wed, 27 Jul 2011 14:31:24 +0200</pubDate>
      <description><![CDATA[Script context:<br />
Compare.js#413:<br />
<br />
Compare.markDifferences = function(newAndMissingIds) {<br />
...<br />
            entity = Compare.doc1.queryEntity(id);<br />
            entity.setColor(new RColor(&quot;green&quot;));<br />
            op = new RModifyObjectOperation(entity.data());<br />
            Compare.di1.applyOperation(op);<br />
<br />
<br />
ECMA code:<br />
<br />
         QScriptValue<br />
        REcmaSharedPointerEntity::setColor<br />
        (QScriptContext* context, QScriptEngine* engine) <br />
        {<br />
            QScriptValue result = engine-&gt;undefinedValue();<br />
                    // public function: can be called from ECMA wrapper of ECMA shell:<br />
                    REntity* self = <br />
                        getSelf(&quot;setColor&quot;, context);<br />
=&gt;               Q_ASSERT(self!=NULL);              <br />
<br />
<br />
Stacktrace:<br />
<br />
Thread [1] 18673 (Suspended : Signal : SIGABRT:Aborted)	<br />
	__kernel_vsyscall() at 0xffffe424	<br />
	raise() at 0xb4efc8df	<br />
	abort() at 0xb4efe220	<br />
	RMainWindow::messageHandler() at RMainWindow.cpp:63 0x8f3917a	<br />
	qt_message_output() at 0xb5356f65	<br />
	0xb53571ab	<br />
	qFatal() at 0xb53572c9	<br />
	qt_assert() at 0xb5357355	<br />
	REcmaSharedPointerEntity::setColor() at REcmaSharedPointerEntity.cpp:1,360 0x8bc0602	<br />
	0xb6bd813c	<br />
	0xb6ac1f68	<br />
	0xb6a9164c	<br />
	0xa622afd2	<br />
	0xb6a423e3	<br />
	0xb6af06e0	<br />
	0xb6ac201e	<br />
	0xb6be0cd3	<br />
	0xb6be11a9	<br />
	QMetaObject::metacall() at 0xb5478c83	<br />
	QMetaObject::activate() at 0xb5489134	<br />
		<br />
<br />
]]></description>
      <link>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=149</link>
      <guid>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=149</guid>
    </item>
        <item>
      <title>FS#801: Different solid appearence in Autocad and Qcad</title>
      <author>Mikhail</author>
      <pubDate>Mon, 22 Apr 2013 20:29:22 +0200</pubDate>
      <description><![CDATA[Hi,<br />
<br />
It seems that QCAD and Autocad treat solid fills differently. Here is attached<br />
example and its view in QCAD and autocadws.com web service. I found that order <br />
of vertices is important.<br />
<br />
Thank you<br />
Mikhail ]]></description>
      <link>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=801</link>
      <guid>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=801</guid>
    </item>
        <item>
      <title>FS#800: Configurable auto snap</title>
      <author>Andrew</author>
      <pubDate>Mon, 22 Apr 2013 11:20:38 +0200</pubDate>
      <description><![CDATA[Enable / disable individual snaps for use with auto snap.]]></description>
      <link>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=800</link>
      <guid>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=800</guid>
    </item>
        <item>
      <title>FS#799: Detect duplicates not working properly</title>
      <author>--</author>
      <pubDate>Wed, 17 Apr 2013 15:21:04 +0200</pubDate>
      <description><![CDATA[Windows 7-64<br />
3.0.9<br />
Detect duplicates tool not working properly.<br />
Selecting this tool causes program to lag endlessly and malfunctions.<br />
To reproduce bug:<br />
1. Select all entities.<br />
2. Select duplicates tool.<br />
3. Nothing happens.<br />
4. Select duplicate tool again and...bug!]]></description>
      <link>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=799</link>
      <guid>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=799</guid>
    </item>
        <item>
      <title>FS#777: Spline display error</title>
      <author>Andrew</author>
      <pubDate>Fri, 01 Mar 2013 09:52:05 +0100</pubDate>
      <description><![CDATA[Splines produced by Illustrator are not correctly imported or displayed.<br />
<br />
See:<br />
http://www.qcad.org/rsforum/viewtopic.php?f=11&amp;t=2344]]></description>
      <link>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=777</link>
      <guid>http://www.ribbonsoft.com/bugtracker/index.php?do=details&amp;task_id=777</guid>
    </item>
      </channel>
</rss>
