7
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 4 hours ago. based on code collected about 4 hours ago.
Feb 17, 2025 — Feb 17, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
EBN/Krazy fixes. More... almost 19 years ago
EBN/Krazy fixes. More... almost 19 years ago
Use same value for parent as before More... almost 19 years ago
EBN/Krazy and include fixes. More... almost 19 years ago
Clean include More... almost 19 years ago
Replace some kapp call by qapp call More... almost 19 years ago
SVN_SILENT made messages (.desktop file) More... almost 19 years ago
Polishing of the undo/redo: make sure the current state is saved when something happens. More... almost 19 years ago
Speed up differential equation calculating by several hundred percent. The main lesson learnt today is to be wary of Qt's implicit sharing: Although it speeds up some usages, repeatedly freeing memory (on operator=) and then allocating memory (on detach()) can be overall a lot slower. More... almost 19 years ago
Make sure the buttons stay nice sizes when the equation editor is made large. More... almost 19 years ago
Move the coordinates dialog from the edit menu to the view menu; I think it's more appropriate here. More... almost 19 years ago
Don't bother trying to be clever about the order that functions/constats are loaded in (see bug 143747); instead just reparse everything once everything is loaded. This solves complex dependencies such as constants being defined in terms of functions, etc etc. More... almost 19 years ago
Small tweaks to the UI. More... almost 19 years ago
Fix extraction of variables in functions when they contain spaces (e.g. "f( x )" instead of "f(x)"), also add a "k" variable for parameters when the expression is of the form "y = ..." (instead of "f(x) = ..." or "f(x,k) = ...") so that parameters can still be used. More... almost 19 years ago
Fix some crashes when an empty string is entered for a function, and some optimizations for parsing expressions. More... almost 19 years ago
Added a quick and simple calculator. This replaces the "plot value" tool. More... almost 19 years ago
Improved sliders dialog: the min/max values for each slider can be edited in place (instead of right-clicking), and allow full expressions for the values. More... almost 19 years ago
Some fixes for parsing expressions where names of constants may be the start of a function name, or vice versa. For example, if there was a constant "s", then "sin(x)" would be parsed as "s*in(x)". More... almost 19 years ago
Fix printing; some internal change in kprinter caused the extra option values to default to zero, which unfortunately included the width and height of the output image. More... almost 19 years ago
Give icons to some more buttons. More... almost 19 years ago
Improvements to the parameter list editor: - Given icons to buttons. - Added "move up" and "move down" actions to change ordering of parameters. - Allow scrolling through the parameters with up/down keys. More... almost 19 years ago
Lots of small cosmetic improvements. More... almost 19 years ago
Use the new QSvgGenerator from Qt 4.3 for exporting to SVG. This means that kmplot is now qt3 free! More... almost 19 years ago
Fix a couple of bugs when saving functions that depend on each other: - Give functions an id *before* the rest of them is loaded, not after. This fixes dependency checking. - Save the functions in such an order that functions required by others will be loaded first. More... almost 19 years ago
Improvements to drawing of axis labels (make sure they aren't truncated at the edge of the view, make sure they don't overlap the axes for large font sizes). More... almost 19 years ago
Replace "Coordinate System {I,II,III}" actions with "Reset View". The three actions were excessive since the coordinates can be changed quickly anyway; one action to reset the view is enough. More... almost 19 years ago
Generic app icons should be installed to the hicolor dir, not the crystalsvg dir. More... almost 19 years ago
Remove mimetypes More... almost 19 years ago
Replaced fixed-size array for parsed expression with QByteArray. This allows arbitrarily long expressions. More... almost 19 years ago
Fix infinite recursion when Ok or Apply are clicked in the coords config dialog. More... almost 19 years ago