2013-10-18 Santeri Piippo fixed: the file loader would skip every 300th line. And I thought I was going nuts when my quads kept disappearing... changeset | files
2013-10-18 Santeri Piippo Made the config dialog use a list widget for navigation over a tab widget. changeset | files
2013-10-18 Santeri Piippo - added LDSharedVertex class for holding copy-on-write vertices. Will need this for future features.. changeset | files
2013-10-18 Santeri Piippo now displays build type in the window title (unless a release build of a release), fixed some macro shenanigans changeset | files
2013-10-18 Santeri Piippo made messagelog handle messages with newlines changeset | files
2013-10-18 Santeri Piippo Added a crash catcher which trigger under Linux. It calls GDB and tries to get a backtrace. Also integrated assertion failure handling to this new system. Removed the print() function in the process (because the new bomb box uses a text edit and QTextDocuments's print method clashes with the macro and I figured it was a good idea to rid it anyway) and replaced all calls with log(). changeset | files
2013-10-18 Santeri Piippo fixed: LDForge would crash if message log got full - the older lines would be removed with ::erase, which now expects an iterator because of the recent transition to QList. Why does QList::iterator allow 0 to be passed? changeset | files
2013-10-18 Santeri Piippo fixed a small memory leak changeset | files
2013-10-18 Santeri Piippo Fixed: LDForge would sometimes crash over unitialized data in the GL renderer. This crash sure eluded me for a while. Turned out zoomToFit(), which uses m_width and m_height is called before resizeGL() which initializes these variables. This data is used in an operator new[] call. changeset | files
2013-10-18 Santeri Piippo - added debug/release build configuration. Debug builds are really useful things! changeset | files
2013-10-16 Santeri Piippo removed some custom functions in favor of Qt implementations changeset | files
2013-10-16 Santeri Piippo reworked the ring finder algorithm greatly, tries harder to find the optimal solution changeset | files
2013-10-16 Santeri Piippo Added last-resort ring draw with quads changeset | files
2013-10-16 Santeri Piippo Ring draw: maintain separate polygons for the ring circles and draw them separately of the ring fill to prevent artifact lines from being drawn changeset | files
2013-10-16 Santeri Piippo Removed the List -> QList alias, use QList directly changeset | files
2013-10-16 Santeri Piippo removed the List class in favor of QList changeset | files
2013-10-16 Santeri Piippo removed debug prints from the ring finder changeset | files
2013-10-16 Santeri Piippo ring finder integrated! it lives! changeset | files
2013-10-16 Santeri Piippo Finally got the ringfinder working! Working on integrating it to ring drawing... changeset | files
2013-10-06 Santeri Piippo Ring drawing: previewing complete changeset | files
2013-10-05 Santeri Piippo further cleansing - removed most uses of unsigned ints, removed list reversers changeset | files
2013-10-05 Santeri Piippo a bit more cleanup changeset | files
2013-10-03 Santeri Piippo nuked "container_cast" changeset | files
2013-10-03 Santeri Piippo When drawing circles, draw the radius in the middle changeset | files
2013-10-03 Santeri Piippo further cleanup changeset | files
2013-10-03 Santeri Piippo last code reformatting i swear changeset | files
2013-10-03 Santeri Piippo Added a new editing mode for drawing circles. changeset | files
2013-09-22 Santeri Piippo it's LDForge's 1st birthday! changeset | files
2013-09-09 Santeri Piippo Stuff changeset | files
2013-09-07 Santeri Piippo Further work on VAO rendering changeset | files
2013-09-07 Santeri Piippo VAO rendering works now! woo! changeset | files
2013-09-07 Santeri Piippo Merge branch 'master' into gl, reworked stuff changeset | files
2013-09-04 Santeri Piippo For some reason, of all changesets, 4fb5763 made compiling subfiles extremely slow. WTF? Reverted the change to restore compilation speed. changeset | files
2013-09-04 Santeri Piippo down with cmake! changeset | files
2013-08-24 Santeri Piippo made LDFile interfacing a bit clearer changeset | files
2013-08-24 Santeri Piippo removed unused LabeledWidget changeset | files
2013-08-24 Santeri Piippo redirect the user to configuration if the download path is not given changeset | files
2013-08-24 Santeri Piippo err changeset | files
2013-08-24 Santeri Piippo rework quick color code a tad changeset | files
2013-08-23 Santeri Piippo rename RadioBox to RadioGroup changeset | files
2013-08-22 Santeri Piippo bit of a clarification changeset | files
2013-08-22 Santeri Piippo fixed: couldn't open larger files because of a type mismatch in moc method calling, leading into runtime problems changeset | files
2013-08-22 Santeri Piippo fixed: front and back camera wouldn't render anything changeset | files
2013-08-22 Santeri Piippo Apparently CMake requires the moc files to be compiled separately.. qt4_wrap_cpp does nothing if I don't include the results in the executable... why? changeset | files
2013-08-22 Santeri Piippo add .kdev_include_paths to gitignore changeset | files
2013-08-22 Santeri Piippo Changed build system from qmake to CMake. changeset | files
2013-08-22 Santeri Piippo merged aboutDialog.cpp to dialogs.cpp changeset | files
2013-08-21 Santeri Piippo stuff changeset | files
2013-08-21 Santeri Piippo Fixed crash with closing: since logoed studs are now loaded, the first file in g_loadedFiles is not explicit anymore. the closing code assumed this changeset | files
2013-08-21 Santeri Piippo more changes. Spawn the config prompt on first start, on the profile tab. gl_colorbfc and gl_blackedges now default to false. changeset | files
2013-08-20 Santeri Piippo woo smallification! changeset | files
2013-08-20 Santeri Piippo Added ListConfig type, using it in recent files now changeset | files
2013-08-20 Santeri Piippo minor cleanup changeset | files
2013-08-20 Santeri Piippo removed broken config type check changeset | files
2013-08-20 Santeri Piippo added profile data auto-filling changeset | files
2013-08-20 Santeri Piippo ensure that all Configs are polymorphic changeset | files
2013-08-20 Santeri Piippo bit more cleanup changeset | files
2013-08-20 Santeri Piippo - added "Go to line" action, renamed the config classes to proper camelcase changeset | files
2013-08-18 Santeri Piippo Cut the Object-suffix from LDObject types, it doesn't help things at all changeset | files
2013-08-18 Santeri Piippo Use QFlags for the inlining flags, type-safety++ changeset | files
(0) -300 -100 -60 +60 +100 +300 tip

mercurial