QCAD Bugtracker

QCAD - 2D CAD System.

Click here for a documentation of the DokuWiki formatting syntax that can be used in reports

Please search for existing tasks (also closed ones) before opening a new task.

Please make sure that you are using the latest Version of QCAD before posting a bug (menu Help > Check for Updates)

IDCategoryTask TypeSeverity  ascSummaryStatusProgress
 2 QCAD (main)Feature RequestLow PDF Export Closed
100%
Task Description

Add PDF export from print preview.

 3 BookFeature RequestLow Automatically generate images for "CAD Introduction" Closed
100%
Task Description

QCAD introduction Book

  • automatically generate screen shots of book in desired language
  • don’t use absolute paths in URLs
  • SVN:set up a new version for QCAD3
    1. start dialog → PNG
    2. set PNG resolution
    3. set PNG non-alpha-channel format
  • languages en/de/es/fr
  • script: $ generate_book_images.sh [en|de|es|fr]
  • Try to switch on / off antialiasing to render text / circles (whichever prints better):
 

User Reference Manual

done

  • paste/doc/description.html:
<p>
			The paste command inserts
			the entities previously copied to the
			clipboard. Paste is
...
  • ReferenceManual.js:
    • insert description HTML file under section “description”
    • save HTML files in right folder → paste/doc/Paste_de.xhtml
    • merge all HTML files to a reference manual
      • /home/martin/workspace/rsframework/support/doc/manual/qcad_user_manual.qhp
  • Iterate through all actions:
var actions = RGuiAction.getActions()
  • generate high-res PNG for every SVG tool icon:
BiLibrary.createAndSaveButton(iconSvgFile, pngFile);
  • generate some basic HTML for every tool:
<h2>[Title]</h2>
<b>Toolbar:</b>
[icon]
<b>Menu:</b> [Top menu] - [Menu entry]
<b>Hotkey:</b> [two letter code or hotkey]
 51 QCAD (main)Bug ReportLow Text Dialog: remember last used settings Closed
100%
Task Description

Remember last used settings (text size, font, ...)

 189 QCAD (main)Feature RequestLow Grid settings Closed
100%
Task Description

Make grid configurable.
Switch on / off grid visibility.

 213 QCAD (main)Feature RequestLow Edit Block from reference, how get back to the original ...Closed
100%
Task Description

It might be an oversight from my side, but when I do Edit Block from reference, I don’t see how I can go back to the original drawing.

 218 QCAD (main)Bug ReportLow Angle dimension shows arrows (no ticks) Closed
100%
Task Description

Angle dimension shows always arrows instead of architectural ticks.

 219 QCAD (main)Bug ReportLow Library browser not in View - Toolbars menu Closed
100%
Task Description

Library browser not in View - Toolbars menu

 235 QCAD (main)Feature RequestLow Trial version: dockable with links, etc. Closed
100%
Task Description

Trial version: dockable with static web page (links, special offers, ...)

 254 QCAD (main)Bug ReportLow Snap to ellipse / ellipse intersections Closed
100%
Task Description

Snap to ellipse / ellipse intersections

 255 QCAD (main)Feature RequestLow Trim ellipses Closed
100%
Task Description

Trim ellipses

 256 QCAD (main)Feature RequestLow Break out segments of ellipses Closed
100%
Task Description

Break out segments of ellipses

 263 QCAD (main)Bug ReportLow Hide layer / block should deselect entities on it Closed
100%
Task Description

Hide layer / block should deselect entities on it

 303 QCAD (main)Bug ReportLow Hatch with spline boundary Closed
100%
Task Description

If spline boundary has fit points, hatch is loaded with visible inaccuracy.

 307 QCAD (main)Bug ReportLow Library Browser DB File Locked Closed
100%
Task Description

Handle situation in which DB file is locked (from previous crash, ...).

Currently, the debugger is shown repeatedly.

 314 QCAD (main)Bug ReportLow Polyline from segments puts result in layer 0 Closed
100%
Task Description

A polyline or polygon created from segments always ends up in layer 0, shouldn’t it stay in the same layer as the segments have been?

 315 QCAD (main)Feature RequestLow SVG PG export polylines Closed
100%
Task Description

Polylines may consist of lines and arcs. The SVG PG exporter writes them as all straight lines. A better mapping than polyline then was path, as is done with arcs now.

 317 QCAD (main)Bug ReportLow Debugger with -always-load-scripts Closed
100%
Task Description

Starting qcad Beta 3 with command line argument -always-load-scripts will bring up debugger:

Uncaught exception at /opt/qcad-3.0.0-beta3-prof-linux/scripts/library.js:2: RangeError: Maximum call stack size exceeded.
2 include(”sprintf.js”);

 318 QCAD (main)Bug ReportLow Text of dimensions label in SVG PG export  Closed
100%
Task Description

The labels of dimensions in PG exporter are moved half text-height. Thats a bit much, and actually, no such movement looks more true to the display of same in QCAD itself.

--- SvgExporterPG.js.orig	2011-10-15 18:57:29.994666881 +0200
+++ SvgExporterPG.js	2011-10-15 18:57:39.284666834 +0200
@@ -434,7 +434,7 @@
         //debugger;
         var angle = this.text.getAngle();
         //this.text.setAngle(entity.getAngle());
-        var offset = RVector.createPolar(this.text.getHeight()/2, angle + Math.PI/2);
+        var offset = RVector.createPolar(0, angle + Math.PI/2);
         this.text.move(offset);
         this.textColor = entity.getColor();
         this.exportText();
 321 QCAD (main)TaskLow Add license to ECMAScript files Closed
100%
Task Description

Add license header for all ECMAScript files.

 322 QCAD (main)Bug ReportLow Line type scaling with print scale factor Closed
100%
Task Description

In QCAD 2, line type patterns are scaled according to the print preview drawing scale, also in model space.
This is not the case in QCAD 3 and possibly needs a different solution.

Possible solutions:

  • two different LTSCALEs for model space and print preview
  • same behavior as QCAD 2
 323 ECMAScriptFeature RequestLow Exceptions in headless scripts Closed
100%
Task Description

The capability of running headless, ie. without GUI, is a very welcome addition to QCAD. I suggest one more improvement:

When an exception occurs in a script (running from autostart) and no-gui was opted for on the command line, QCAD should not try to bring up the debugger ever (regardless of any preferences), but print the message of the exception and possibly a backtrace instead.

Otherwise all errors will produce the same message…

 325 QCAD (main)Bug ReportLow Layer renaming: changing name from lower case to upper  ...Closed
100%
Task Description

Layer renaming: changing name from lower case to upper case

 326 QCAD (main)Feature RequestLow Print preview: auto center / scale Closed
100%
Task Description

Print preview: auto center / scale

 327 QCAD (main)Feature RequestLow Text tool: options tool bar Closed
100%
Task Description

Text tool: options tool bar with text, angle, text height.

 328 QCAD (main)Bug ReportLow Persistent selections Closed
100%
Task Description

Preference for persistent selections

 329 QCAD (main)Feature RequestLow PDF Export: from file menu Closed
100%
Task Description

PDF Export: from file menu

 330 QCAD (main)Bug ReportLow Text Edit command replaces \U+00B0 with %%[dD] Closed
100%
Task Description

when editing text which contains the degree symbol the proper escape sequence is \U+00B0
Qcad 3Beta3 replaces \U+00B0 with %%[dD]

 331 QCAD (main)Bug ReportLow Snap buttons doubled Closed
100%
Task Description

1. For some reason on the Window machine, the snap toolbar buttons are doubled for all functions. I therefore have two buttons for each type of snap and cannot access the bottom snaps unless I undoc the toolbar.

For some reason, this is still fine in the Linux Beta 3. Single buttons like always.

Reported by: koosjr

 332 QCAD (main)Feature RequestLow Modify - divide should remain active after one use Closed
100%
Task Description

1. When selecting the Scissors function, it deactivates after the cut is done. One can therefore not continuously select lines and cut it at the selected point. Each time the function has to be activated from the start.

 333 QCAD (main)Bug ReportLow Add layer: new layer should be active one Closed
100%
Task Description

Add layer: new layer should be active one

 336 QCAD (main)Bug ReportLow Tool bars with tools without icon Closed
100%
Task Description

Some tool bars (e.g. ‘Block’ tool bar) contain tools without an icon (empty button).
Not all tools are available in tool bars.

 346 QCAD (main)Feature RequestLow Set up fixed grid Closed
100%
Task Description

Set up fixed grid without any auto scaling or adjusting or meta grid at all.

 351 QCAD (main)Bug ReportLow Simple text: position, simple text flag Closed
100%
Task Description

Simple text tool does not create simple text but mtext.
When changed to simple in property editor, position does not work

 361 QCAD (main)Bug ReportLow New from template: save saves template Closed
100%
Task Description

- New from template
- Choose template
- File - Save

→ Template is overwritten instead of the “Save As” dialog being shown.

 364 QCAD (main)Bug ReportLow Default paper with default unit inch Closed
100%
Task Description

Default paper might be configured as 210×297 inches if inch is chosen as default unit.

 365 QCAD (main)Bug ReportLow Auto fit to paper fails with some drawings in inches Closed
100%
Task Description

Auto fit to paper fails with some drawings in inches

e.g. Bathroom mod 2.dxf

 370 QCAD (main)Bug ReportLow Canceling quit leaves windows in half-closed state Closed
100%
Task Description
  1. File - New
  2. File - New
  3. Draw line
  4. Quit
  5. Cancel
  6. Switch to first tab
 371 QCAD (main)Bug ReportLow Ctrl-P not working in print preview Closed
100%
Task Description

Ctrl-P not working in print preview

Linux only.

 372 QCAD (main)Bug ReportLow Loading QCAD 3 layer names with international character ...Closed
100%
Task Description

Loading QCAD 3 layer names with international characters fails in QCAD 2.

e.g. æøå

 374 QCAD (main)Bug ReportLow Text: spaces at beginning of line does not indent Closed
100%
Task Description

Text: non-breaking spaces (\~) at beginning of line does not indent.

See aeg_koe_1_H0_A.dxf

 375 QCAD (main)Bug ReportLow Text: white text shown as white on white in text dialog Closed
100%
Task Description

Text: white text shown as white on white in text dialog

See: aeg_koe_1_H0_A.dxf

 376 QCAD (main)Bug ReportLow Text: alignment: simple text starting with spaces Closed
100%
Task Description

Text: alignment: simple text starting with spaces or ending in spaces is not aligned correctly.

 377 QCAD (main)Bug ReportLow Text: empty lines do not cause enough line spacing Closed
100%
Task Description

Text: empty lines do not cause enough line spacing

 379 QCAD (main)Bug ReportLow Dimension: move label when label is beside dimension li ...Closed
100%
Task Description

Dimension: moving label when label is beside dimension line not possible with drag and drop.

 393 QCAD (main)Feature RequestLow Scrolling with arrow keys Closed
100%
Task Description

Scrolling with arrow keys

 399 QCAD (main)Bug ReportLow Exception when disabling splash with non-english UI lan ...Closed
100%
Task Description

Exception when disabling splash with non-english UI language

See also:
http://ribbonsoft.com/rsforum/viewtopic.php?p=5172#5172

'splash'"Loading plugin translations...""\n"
 419 QCAD (main)Bug ReportLow Uncaught exception: GridSettings.js Closed
100%
Task Description

Uncaught exception at C:/Program Files/QCad Professional\\scripts/Edit/DrawingPreferences/GridSettings/GridSettings.js:40: TypeError: Result of expression \’GridSettings.widgets[\”GridSpacingXUnit\”]\’ [undefined] is not an object.

After the closure of qt debuger another message then qcad finally start
It\’s only at the first start of qcad.

See also:
http://www.ribbonsoft.com/rsforum/viewtopic.php?t=1746

 429 QCAD (main)Bug ReportLow Dotted/dashed lines show as solid lines. Closed
100%
Task Description

The red and green lines on the attached drawing, created in 3.0 RC3 under WinXP SP3, don’t show as dashed lines. I have verified this under Linux version 3.0RC2. Opening the file in Qcad 2.2.2.0 under WinXP or Linux ver shows dashed lines.

 439 QCAD (main)Bug ReportLow Help crashes Closed
100%
Task Description

Vista 32bit, SP2

See also:
http://www.ribbonsoft.com/rsforum/viewtopic.php?t=1767

 450 QCAD (main)Bug ReportLow Linetype scale: QCAD 2 compatibility mode Closed
100%
Task Description

Import line type scales from QCAD 2 to display the same way as in QCAD 2 if possible.

See:
http://www.ribbonsoft.com/rsforum/viewtopic.php?t=1599

Showing tasks 1 - 50 of 84 Page 1 of 21 - 2 -

Available keyboard shortcuts

Tasklist

Task Details

Task Editing