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 Type  descSeveritySummaryStatusProgress
 35 ECMAScriptTaskLow Verify ECMAScript code Closed
100%
Task Description

Verify ECMAScript code with:
http://www.javascriptlint.com/download.htm

 64 DocumentationTaskLow Manual CSS Closed
100%
Task Description

Create some CSS to display the user manual in a professional way, similar to web site.

 78 QCAD (main)TaskLow Linux deployment: tar.gz Closed
100%
Task Description

if possible, extend create_makeself script to create a tar.gz in addition to the executable installer, so we have both in the end.

 80 DocumentationTaskLow API Doc Organization Closed
100%
Task Description

Rename everything from “RSFramework” to “QCAD Application Framework” (qcad_application_framework.pro / dox / doxyfile ...).

Add header with copyright / link to homepage.

Structure of documentation:

  • Entry (main) page
    • API (links to API doc for modules):
      • math
      • core
      • gui
      • ...
    • ECMAScript Developers (links to intros and examples):
      • ECMAScript introduction
      • ECMAScript module
 82 ECMAScriptTaskLow rename some ECMAScript classes Closed
100%
Task Description

New → FileNew
Close → FileClose
...

 83 QCAD (main)TaskLow Part Library - Find Files / Generate Files Closed
100%
Task Description

Create and extend part library.

Find Existing Files

Find files under a suitable license (e.g. creative commons) for inclusion into the QCAD part library:

  • DXF / DWG files
  • SVG files which we could convert to DXF with a command line converter or InkScape if possible.
    • DXF files produced from SVG / with InkScape contain a lot of polylines with small line segments which interpolate arcs and circles.
      • A ‘Convert Interpolating Line Segments’ tool could be used to convert line segments into arcs, ellipse arcs and circles.
        1. for c in 0...number of nodes: create arc with v[c], v[c+1], v[c+2]
        2. check if v[c+i] is also on arc for c+i<number of nodes
        3. if n nodes have been found which are all on arc and all segments have almost the same length and are relatively small compared to the whole drawing, convert them to arc
      • A ‘Simplify Polyline’ tool could be used to remove nodes that don’t add a lot of information (almost straight connected line segments).

Parameterized Items

  • Parameterized items use XDATA to let the script behind know which entities need to be changed in which way.
  • The user can choose from all supported parameters shown in a table.
  • The user can choose from options:
    • Create dimensioning
    • Create auxiliary lines
    • Create center line
    • Scaling
    • Sectional drawing
    • Hatching space
  • Disadvantage compared to automatically generated items:
    • It is not possible to add an item with it’s parameters to favorites, e.g. some specific screw often used in a drawing. To make that possible, the parameters has to be saved, too.

Links

[mostly old] Generate Items Automatically

  • Research possibilities to turn data sheets into library parts, for example attached data sheet.
    • Ideas:
      • use an XML file for data entry, use an ECMAScript to generate symbols based on the XML file.
      • Instead of writing a complete ECMAScript file to generate the geometry, it might be possible to simply draw one item and attach XDATA to the entities for information on how the item can be scaled, stretched, etc.
        • E.g. a line might have the XDATA “transform” with value “translate(length-5, 0)” which would mean that the line has to be moved ‘length-5’ to the right, where ‘length’ is the current value of the ‘length’ parameter in the XML data file. Similarly, there could be functions like “moveEndpoint”, “moveStartpoint” or even “rotate”, “mirror”, etc.
      • XML file could contain all data and refer to a .js file that is used to generate the specific drawing. E.g.:
<!-- XML document defines a name template to use for the generated parts: -->
"DIN_912_M%1_L%2""din_912.js""DXF"
	<!-- Attributes to use for the name template -->
	"d"
	"L"
 
	<!-- For each type of the specific part, we define some parameters that 
		are identical for that type (here M3): -->
	"3""5.5""2.5""3""18"
		<!-- For each of these elements, a DXF file is generated. This DXF file 
			is generated with file name "DIN_912_M3_L22.dxf" and parameters d="3" D="5.5" 
			s="2.5" k="3" b="18" L="22": -->
		"var1"
		"var2"
		"60"
 
 
	"M4""7""3""4""3""20"
		"var1"
 
 
	"var1"
		"22"
		"25"
		"30"
		"35"
		"40"
		"45"
		"50"
 
 
	"var2"
		"70"
 
 
 
 114 QCAD (main)TaskLow Create QCAD Cheat Sheet Closed
100%
Task Description

Cheat Sheet which lists all QCAD tools with icon, key code and explanation

Possibly two versions for Windows / Linux and Mac

 129 QCAD (main)TaskLow Image entity Closed
100%
Task Description

Implement RImageEntity and related classes.

DONE

Image in block

Image insertion tool:

  • change size in options tool bar: keep ratio

Image file look up:

  • absolute path
  • relative path (?)
  • same path as drawing file

Image display:

  • draft: border
  • normal: image
  • preview: border (or image for small file)

Move, rotate, ...

POSTPONED

Selection with click inside image

Move reference points to scale

 131 QCAD (main)TaskLow Create block Closed
100%
Task Description

Create block from selection

 132 QCAD (main)TaskLow Snap restrictions Closed
100%
Task Description

Implement snap restrictions

 133 QCAD (main)TaskLow Set relative zero point Closed
100%
Task Description

Set relative zero point tool.

 134 QCAD (main)TaskLow Lock relative zero Closed
100%
Task Description

Lock relative zero tool

 135 QCAD (main)TaskLow Lock layers Closed
100%
Task Description

Implement layer locking

 136 QCAD (main)TaskLow Isometric projection Closed
100%
Task Description

Implement isometric projection tool

 227 QCAD (main)TaskLow Library browser as separate tool Closed
100%
Task Description

Split up library browser as separate, QCAD independent tool.

TODO

- Potential interaction with other products / release as separate product?

DONE

- Remove DB dependency from QCAD 3.
- start-up splash screen
- avoid drop in browser widget
- app name
- menu (exit, about, preferences)
- preference dialog
- fix app icon
- window title
- library browser as single app
- raise window to the top on start

Motivation

- Make QCAD 3 more reliable to start.
- Make QCAD 3 faster to start (if library browser not used).
- Reduce memory usage if library browser not open.

Interface with QCAD 3

- Launch Library browser from menu or tool button.

QCAD launches library browser for example as:
./QCAD -autostart scripts/Tools/LibraryBrowser/LibraryBrowser.js

- Insertion of library parts with drag and drop (like so far). No change should be required for this (?).

 321 QCAD (main)TaskLow Add license to ECMAScript files Closed
100%
Task Description

Add license header for all ECMAScript files.

 347 QCAD (main)TaskLow Investigate QPainter warnings when running QCAD in -no- ...Closed
100%
Task Description

Invastiagte QPainter warnings when running QCAD in -no-gui mode

See forum:
http://www.ribbonsoft.com/rsforum/viewtopic.php?t=1653&start=45

 567 TestsTaskLow rose Closed
100%
Task Description

http://www.askweddingdress.net bridesmaid dresses under $200 sensibility. Designers have even strap matte dealing with for worry of slaying the dial even a shimmer of honor. Obsessed with valuables you must no skip! Cartier parrot ornamental enamel watches http://www.askweddingdress.net wedding dresses , colossal dial having a black blue http://www.askweddingdress.net crochet beach dress , mild blue and darkish green, forming adjacent hue examine, the diploma of tiny district sensible will be the reaching contact yellow, http://www.askweddingdress.net cheap short prom dresses the whole display all of a sudden to existence, features a elegance consciousness http://www.askweddingdress.net cheap dress clothes . colours with 5 guidelines: using the union of colour, make-up rolex, http://www.askweddingdress.net formal beach wedding dresses , dim, white, grey and further intermediate colours, hue gradient colour colour cellular place, and so on. http://www.askweddingdress.net/cocktail-dresses.html vintage cocktail dresses , the emulating five colour rule makes it possible for us to match the colour of daily existence gets easy and explicit. tone colour http://www.askweddingdress.net maxi summer dresses http://www.askweddingdress.net discount bridesmaid dresses : with much more than 3 colours far more lively attain

 568 TestsTaskLow Melissa Closed
100%
Task Description

prince to possess a content existence permanently. http://www.askweddingdress.net fuchsia bridesmaid dresses http://www.askweddingdress.net mermaid wedding dresses a bride want a best marriage ceremony dresses for church marriage ceremony, http://www.askweddingdress.net prom evening dresses she need to decide on outside and informal marriage ceremony dresses,Therefore the halter strap neckline seaside wedding ceremony dresses on-line are outstanding option. seaside wedding ceremony dresses cabin and about the refuge a location that gives accommodation quickly for that friends from your nearby men and women obviously will need an individual somewhat some kindness http://www.askweddingdress.net vintage dresses new york http://www.askweddingdress.net cocktail dress cheap , cabin beneath thirty many years outdated and rocks the home of white stone that Warung or stand It’s also utilized, comfortable drinks, beer, fruit juices http://www.askweddingdress.net/cocktail-dresses.html vintage cocktail dresses http://www.askweddingdress.net plus size dresses http://www.askweddingdress.net petite wedding gowns http://www.askweddingdress.net vintage prom dresses . Balangan the tea duration seaside wedding ceremony dresses property, the wedding ceremony few standing within the bed room about eighteen many years previous, desire to expertise remaining inside a villa Rosanzerusujoya

 569 TestsTaskLow murphy Closed
100%
Task Description

later on phase http://www.askweddingdress.net bridal evening dresses . five. http://www.askweddingdress.net maternity wedding gowns If you’re currently conscious in the quantity of one’s company who will likely be attending consult about discounted space prices, or other close by appropriate accommodation for them. http://www.askweddingdress.net beach wedding dresses cheap six. http://www.askweddingdress.net informal wedding dresses cheap If a wedding ceremony package deal is getting provided question no matter whether there’s any versatility within the checklist as a way to personalize the occasion to fit your needs or if it’s a mounted deal without any alterations permitted http://www.askweddingdress.net cheap bridesmaid dresses http://www.askweddingdress.net wedding gowns bridesmaid dresses . seven. Inquire concerning the amenities offered in the venue or inside the instant region and for anyone who is preparing to benefit from any of those what fees are concerned and in the event the venue can organize these in your behalf. eight http://www.askweddingdress.net cheap plus size bridesmaid dresses http://www.askweddingdress.net/prom-dresses.html beach brides dresses . Verify the climate ailments for that time of calendar year and time of day in the venue. If you’re preparing an http://www.askweddingdress.net inexpensive bridal dresses

 570 TestsTaskLow gary Closed
100%
Task Description

look at, http://www.askweddingdress.net tea length wedding dresses don’t blindly look for huge http://www.askweddingdress.net plus sizes cocktail dresses http://www.askweddingdress.net/evening-dresses.html long sleeve wedding gowns , and can harm the all round perception of stability http://www.askweddingdress.net formal wedding dresses cheap , http://www.askweddingdress.net classic summer dresses just the reverse http://www.askweddingdress.net flower girl dresses . For a few complicated patek philippe watches attributes the excellent embodies the knowledge with the human hand, but when a view you should dial to make exaggerated capacity to invest plenty of eyes appear obvious and distinct around the time, http://www.askweddingdress.net large size bridesmaid dresses around the opposite towards the intention in the timing in the look at. And, to get a observe dial is actually a complicated, typically call for a really formal or incredibly daring with clothes to match http://www.askweddingdress.net mother of the bride dresses , so if you are not a lot gold loved ones, http://www.askweddingdress.net informal beach wedding dresses not per day to get a observe for that requirements of the fit or perhaps a easy dial with a lot more Patek philippe observe for every day check out. Getting this superb look at normally indicates you happen to

 571 TestsTaskLow Blake Closed
100%
Task Description

industry for any marriage ceremony band that will stand the check of time http://www.askweddingdress.net beach prom dresses , or perhaps a bit of style jewellery that may create a long lasting impression, http://www.askweddingdress.net cocktail dress plus size the topic of tungsten carbide rings swiftly will come up http://www.askweddingdress.net short beach dresses http://www.askweddingdress.net inexpensive summer dresses . http://www.askweddingdress.net chian beach dresses Tungsten carbide marriage ceremony rings have develop into additional and additional preferred for a lot of reputable causes; http://www.askweddingdress.net/flower-girl-dresses.html white flower girl dresses nonetheless, just like all factors in existence they might not be for absolutely everyone http://www.askweddingdress.net mini wedding gowns . These guidlelines concerning the advantages and disadvantages of tungsten rings really should enable you to to ascertain if a wonderful tungsten marriage ceremony band will be the great match for you personally, or in case you may well uncover a greater match having a much more classic piece http://www.askweddingdress.net white bridesmaid dresses . http://www.askweddingdress.net cheap dresses The primary factor to understand about tungsten rings is the fact that in addition to

 572 TestsTaskLow Dylan Closed
100%
Task Description

http://www.askweddingdress.net black dresses http://www.askweddingdress.net discount bridesmaid dresses hour markers arms. Apart from some time indicator, this timepiece also contains a date indicator discovered on three o’clock. This look at can also be created to become appropriate for diving with its 300 meters h2o resistance. http://www.askweddingdress.net informal beach wedding dresses Although it could absence a chronograph http://www.askweddingdress.net orange bridal dresses , this really is nonetheless definitely an incredible view to get underwater http://www.askweddingdress.net/evening-dresses.html vintage gowns dress . You’ll be able to get this Longines Hydro Conquest for an approximate cost of $1 http://www.askweddingdress.net cheap dresses under http://www.askweddingdress.net formal wedding dresses cheap ,a hundred and fifty.Longines Women Diamond ConquestThe new Longines Girls Diamond Conquest quartz observe helps make the sporty timekeeper a bit little bit additional female in design, whilst preserving the robustness on the unique, nondecorated see.Developing this edition with the look at, Longines employed the timeproven recipe: to create a dressier edition of the sporty view, just just take an current design and adorn it with diamonds.As an icing within the cake, the http://www.askweddingdress.net cheap long evening dresses http://www.askweddingdress.net plus evening dresses

 573 TestsTaskLow Devin Closed
100%
Task Description

conducive to host presentations and video clip http://www.askweddingdress.net plus size beach wedding dresses , photography shooting , http://www.askweddingdress.net plus size dresses leaving a lovely second. additional affordable wedding ceremony dresses on 1luckybride 1 reader asks: What exactly are all of the legal actions and the way do you go about receiving your title altered? Is there an inventory of other things which has to alter, http://www.askweddingdress.net bridal gown dresses like your financial institution accounts, http://www.askweddingdress.net short brides dresses charge cards, insurance coverage, and so on http://www.askweddingdress.net brides mothers dresses http://www.askweddingdress.net bridal bridesmaid dresses .? I used to be gonna start into the best way to go about this when I recognized we’ve an intensive post on “How To Alter Your Surname Whenever you Get Married”on our weddings web page http://www.askweddingdress.net muslim wedding dresses . Study it it is useful! 1 factor to become conscious of, specifically in case your honeymoon is not using location appropriate following the marriage ceremony: http://www.askweddingdress.net vintage short dresses Ensure your identify lines up on all of the paperwork necessary to journey. As an example, your driver’s license http://www.askweddingdress.net/evening-dresses.html vintage gowns dress

 928 QCAD (main)TaskLow CXF font editing Closed
100%
1 Task Description

Port CXF font editor to QCAD 3.
- Load CXF fonts (load glyphs into blocks)
- Save back to CXF format

 1057 TranslationTaskLow Japanese translation missing in a couple spots .... Closed
100%
Task Description

Is the Japanese translation still in progress or is this a update Problem?

 1113 QCAD (main)TaskLow Updating spatialindex? Closed
100%
Task Description

Prompted by d9beb4 - this is actually fixed in current upstream sources (by killing bzero in favor of memset, which is the right thing to do).

It might worth considering to update the spatialindex component.

 1119 QCAD (main)TaskLow Improve presentation of linetype names in combobox Closed
100%
1 Task Description

The Linetype Names in the pull-down menu for Layer are hardly readable - it seams to me that the description is used twice (in different ways) in each row.
Till 3.6.4 the Information was short and clear.

 1120 QCAD (main)TaskLow Linetype Dropdown not useable in Linux x86_32 (and all  ...Closed
100%
Task Description

I just installed qcad-3.7.0-pro-linux-x86_32 on my up-to-date debian sid system.
When I choose the “Pen” to be visible in the toolbar, the line type is not useable at all, because the drop-down menu is far too narrow.
After deleting QCAD3.conf the drop-down menu appeared wide after the first startup of QCAD. After the second startup it appeared narrow again.
Got the same result on another 32bit installation, a 64bit installation, all debian sid/kde and the windows version 32bit (only tried with wine).

 1507 QCAD (main)TaskLow Improve arc rendering for screen-based linetypes Closed
100%
Task Description

See:
http://www.qcad.org/rsforum/viewtopic.php?f=73&t=4566

 1818 DocumentationTaskLow QCAD Reference Manual / Paste along Entity ... Closed
100%
Task Description

... describes basically the “Paste” tool and not the “Paste along Entity” tool.

2130QCAD (main)TaskLowText: Text dialog removes tabsAssigned
0%
Task Description

Text dialog (QTextEdit) strips tabs in toHtml.
If tabs can be retained, text entities could support tabs.

 2304 QCAD (main)TaskLow Printing blank page Closed
100%
Task Description

Hello,

I must have something set up wrong, prints blank both on printer and pdf....

 2219 ECMAScriptTaskVery Low Update simple_create.js addSimpleText() Closed
100%
1 Task Description

Andrew,

Reading:
https://www.qcad.org/rsforum/viewtopic.php?&t=8286

Can you update addSimpleText() as Text.Width is fixed =100

What is the noTextWidth value?

As far as I can detect ...
PrintPreviewImplPro.prototype.addDecorations uses value 1.
CrankWheel.js uses value 1.
ExText.prototype.beginEvent uses value 2.
ExDrawFonts.prototype.beginEvent uses value 1.
Counter.prototype.getOperation uses QCAD.ini or default zero.
TextAlong.prototype.getTextData usses the width of the textData from the dialog.

Regards,
CVH

 2166 QCAD (main)SuggestionMedium Text box creates wrong line break - Textbox erzeugt fal ...Closed
100%
Task Description

Englisch:
A text that ends with a line break is displayed incorrectly.

I think the \P should be passed to the program to create the line break. Unfortunately it is taken over directly into the text.

See attachment


Deutsch:
Textbox erzeugt falschen Umbruch

Ein Text der mit einen Zeilenumbruch endet, wird falsch dargestellt.

Ich denke mal das \P sollte an das Programm weitergegeben werden um den Zeilenumbruch zu erzeugen. Leider wird es direkt in den Text mit übernommen.

Siehe Anhang

1323QCAD (main)SuggestionLowImprove command line support in QCADAssigned
0%
Task Description

Hi,

As a typical command line draftsman (still using acad10 for dos, since microsoft doesn’t supoort Win NT anymore),
I noticed a severe lack on command line acces in QCAD.

For example I find the icon and pixel selecting methods within qcad very confusing and rude.

With the normal cad Select command I can select exactly what en how I want it.

I intend not to be rude, but I find my drawing screen littered all over with all kind of very specialist menu’s,
tools and options. Sorry, I just want to make a drawing at the natural intuitive way, as with a pencil.
So I use command line Commands, such as Move, Copy, Change, Select, a.s.o.
For a ‘Command scripting’ user (-batching is a different tool!-),
it seems to me logical these basic commands should be accessable.

1368QCAD (main)SuggestionLowContext Menu - suggestionsAssigned
0%
Task Description

I love using the context menu, speeding up my workflow indeed.

I would like to suggest that we have the added option to show only icons if desired and also that maybe an option to save and show commonly used tools!

Maybe the context menu could be configurable to show two columns, one for the normal last used tools and the othjer one for the user saved tools?

What do you think?

1469QCAD (main)SuggestionLowCartouche automatiqueAssigned
0%
1 Task Description

Would not it be possible to create a kind of template for printing?
We draw our room without cartridge. The cartridge will automatically appear when printed. The scaling could be automatic so that it goes in the A4 and therefore also will post the scale automatically. The name of the play could be the file name, date last saved after it the rest of the information that would be to add somehow (material index, designer, ...).

Original suggestion:

Bonjour,

Ne serait il pas possible de créer une sorte de template lors de l’impression ?
On dessine notre pièce sans cartouche. Le cartouche s’affiche automatiquement lors de son impression. La mise à l’échelle pourrais être automatique pour que ca rentre dans le A4 et donc l’échelle s’afficherai aussi en automatique. Le nom de la pièce pourrais être le nom du fichier, la date du dernier enregistrement après c’est le reste des infos qui serait à ajouter je ne sais comment (matière, indice, dessinateur, ...).

 1490 QCAD (main)SuggestionLow Text Edit Control <ESC> maps to <cancel>. If anything i ...Closed
100%
Task Description

For all the Linux VI editor geeks, can you disable the <ESC> function in the text edit mode. <ESC> maps to <cancel>. If anything it should map to <ok>. Which creates no harm as it can be later undone. I have accidentally lost edits countless times due to an unbreakable habit.

 1499 QCAD (main)SuggestionLow Add script generator for Qt 5.6.2 Closed
100%
Task Description

As it says on the tin - please add script generator for Qt 5.6.2.

 1516 QCAD (main)SuggestionLow QT style on Linux Closed
100%
Task Description

The startup script still forces a QT-style; Getting bored of that one, qcad runs fine with the system default style - probably that was a qt4 thing, that can be removed, so it blends better with the DE?

18c18 /opt/qcad/qcad
< LD_LIBRARY_PATH=”$DIR” “$binary” -style plastique “$@” —

LD_LIBRARY_PATH=”$DIR” “$binary” “$@”
1526QCAD (main)SuggestionLowExporting block attributes to CSVAssigned
0%
1 Task Description

Two useful commands make it necessary to

1-”delete all the history of the command lines without terminating QCad” ; and

2-”export attributes to the CSV file as exported to the Blocks List”

 1527 QCAD (main)SuggestionLow "Zeichnungseinheit konvertieren" translation missing .. ...Closed
100%
Task Description

... for the Option bar.

 1534 QCAD (main)SuggestionLow Headless Styling Closed
100%
Task Description

Since the launcher batch no longer requests “-style plastique” QT wants to apply the native style of the desktop environment. This fails on a headless system (or where the current user has no graphical shell to connect to) with the message “Gtk-WARNING **: cannot open display: “. Fortunately, QT provides a workaround in addtion to the new “platform=offscreen” flag.

In the tools that set -no-gui, beforehand export these variables into the environment

export QT_STYLE_OVERRIDE=""
export QT_QPA_PLATFORM=offscreen
export DISPLAY=""

PS: QT-offscreen will not find fonts; unfortunately the workaround only allows for a single directory to search them (I need helvetica):

export QT_QPA_FONTDIR="/usr/local/share/fonts/type1"

Maybe that should get reported upstream, so that like LD_LIBRARY_PATH several directories could be specified.

1678QCAD (main)SuggestionLowProperty Editor dialogAssigned
0%
Task Description

The line for “General properties”, “Layer” the line is too narrow,
so you do not see the layer name when the Property Editor is pinned to the side.
(see Forum - Suggestions and Feedback):
https://www.qcad.org/rsforum/viewtopic.php?f=31&t=5239

 1724 QCAD Community EditionSuggestionLow "OVERKILL" command Closed
100%
Task Description

Is it possible to create “OVERKILL” command like in AUTOCAD

 1728 QCAD (main)SuggestionLow Script bindings for Qt 5.9.4 Closed
100%
Task Description

Please add script bindings for Qt 5.9.4, thank you.

1740QCAD (main)SuggestionLowMake unprintable layers also hidden in print previewAssigned
0%
Task Description

Make unprintable layers also hidden in print preview

1754QCAD (main)SuggestionLowWhen Selecting multiple blocks that contain the same at...Assigned
0%
Task Description

When selecting multiple blocks that contain the same attribute names, attribute properties appear with the values of the last selected block instead of “various”. I do not know if this is a “bug” or developer option, but “various” would be better in my opinion.

1789QCAD (main)SuggestionLowApplication Preferences / General / Performance :0Assigned
0%
1 Task Description

Hi Andrew,

we know that you need to have always software performance in your mind to decide which features / tools can / should be implemented and on which way.

I really appreciate your effort to find the best middle way between software features and performance but I think also it’s a tough call to appraise worldwide the overall customer equipment to make the software workable to the best for everybody. That isn’t possible without compromise.

Maybe it would make sense to think about a new dialog in the “Application Preferences” to let the user decide what kind of feature are absolutely needed regarding to his/her work-task / equipment. I don’t mean that you need to cover every single thing but the main “performance jeopardy’s” should be covered with an on/off switch.

Yes I know - that isn’t done in 5 minutes but I think that can make your life easier in the long run and will cover even more customer.

Just my two cents. ;)

Showing tasks 1 - 50 of 2560 Page 1 of 521 - 2 - 3 - 4 - 5 - Last >>

Available keyboard shortcuts

Tasklist

Task Details

Task Editing