Sat, 07 Dec 2013 01:18:21 +0200 Santeri Piippo net_autoclose is now true by default changeset | files
Sat, 07 Dec 2013 01:08:52 +0200 Santeri Piippo renamed LDCndLine to LDCondLine changeset | files
Sat, 07 Dec 2013 01:03:17 +0200 Santeri Piippo more stuff changeset | files
Sat, 07 Dec 2013 00:01:20 +0200 Santeri Piippo Cleaned up download.cpp/.h, used PROPERTY. Added LIST_OPS to PROPERTY changeset | files
Fri, 06 Dec 2013 21:30:58 +0200 Santeri Piippo minor cleanup changeset | files
Fri, 06 Dec 2013 21:25:49 +0200 Santeri Piippo Renamed "quick colors" in the configuration to "color toolbar" changeset | files
Fri, 06 Dec 2013 21:13:01 +0200 Santeri Piippo - re-added the external programs to the toolbar changeset | files
Fri, 06 Dec 2013 21:09:23 +0200 Santeri Piippo updated README.md with a mention of the ring drawing changeset | files
Fri, 06 Dec 2013 21:06:48 +0200 Santeri Piippo minor cleanup changeset | files
Fri, 06 Dec 2013 20:54:34 +0200 Santeri Piippo - added build_shared to .gitignore changeset | files
Fri, 06 Dec 2013 20:53:36 +0200 Santeri Piippo - Improved coordinate rounding, replaced the hack with a proper implementation, now rounds properly and works on subfiles as well changeset | files
Fri, 06 Dec 2013 00:29:44 +0200 Santeri Piippo - Renamed common.h to main.h, split the PROPERTY macro and supporting macros to property.h changeset | files
Thu, 05 Dec 2013 23:42:39 +0200 Santeri Piippo - Changed the callback parm of PROPERTY to a stock/custom write method argument. changeset | files
Thu, 05 Dec 2013 23:20:50 +0200 Santeri Piippo - upgraded the PROPERTY macro, resulting in a major code refactor changeset | files
Thu, 05 Dec 2013 13:51:52 +0200 Santeri Piippo - ensured header files' guards start with LDFORGE_ changeset | files
Tue, 22 Oct 2013 22:14:32 +0300 Santeri Piippo removed old and unused src.pro file changeset | files
Tue, 22 Oct 2013 22:11:57 +0300 Santeri Piippo renamed the version to 0.3-alpha in the changelog changeset | files
Tue, 22 Oct 2013 22:11:32 +0300 Santeri Piippo changelog entry changeset | files
Tue, 22 Oct 2013 22:09:53 +0300 Santeri Piippo Made rotation/pan/zoom values camera-dependant (so now there's 7 sets of them instead of 1) changeset | files
Tue, 22 Oct 2013 21:42:20 +0300 Santeri Piippo updated .gitignore changeset | files
Tue, 22 Oct 2013 21:41:05 +0300 Santeri Piippo removed the legacy dir changeset | files
Tue, 22 Oct 2013 21:40:01 +0300 Santeri Piippo forgot the new icons changeset | files
Tue, 22 Oct 2013 21:39:20 +0300 Santeri Piippo - Added new actions "Hide" and "Reveal" which allow direct setting of objects' visibility setting instead of toggling it. changeset | files
Tue, 22 Oct 2013 21:03:57 +0300 Santeri Piippo added a configuration option for line anti-aliasing changeset | files
Tue, 22 Oct 2013 19:33:41 +0300 Santeri Piippo fixed: deleting objects would trigger a crash changeset | files
Tue, 22 Oct 2013 19:28:45 +0300 Santeri Piippo more minor changes changeset | files
Tue, 22 Oct 2013 19:22:15 +0300 Santeri Piippo style corrections changeset | files
Tue, 22 Oct 2013 13:53:24 +0300 Santeri Piippo i'm dumb changeset | files
Tue, 22 Oct 2013 13:49:55 +0300 Santeri Piippo also removed the if() case mentioned in the prior commit from addObjectDialog.cpp. :P changeset | files
Tue, 22 Oct 2013 13:47:41 +0300 Santeri Piippo enclosed the assert replacement in braces. In release mode, the assert is replaced with nothing and there's a little bit of code in addObjectDialog which uses it as a statement in an one-line if(). With the assert disappearing in release builds this triggered a GCC warning, as the if would be left without a body. changeset | files
Tue, 22 Oct 2013 13:40:16 +0300 Santeri Piippo - migrated selection from ForgeWindow to individual LDFiles. Should've done this long ago. changeset | files
Sat, 19 Oct 2013 02:33:08 +0300 Santeri Piippo changeProperty(): don't change the property if the value would not change, this should save some procecssing.. changeset | files
Sat, 19 Oct 2013 01:22:11 +0300 Santeri Piippo initialize GLRenderer::m_hoverpos to (0, 0, 0) changeset | files
Sat, 19 Oct 2013 01:15:57 +0300 Santeri Piippo cosmetic fixes changeset | files
Sat, 19 Oct 2013 01:11:26 +0300 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
Sat, 19 Oct 2013 00:39:09 +0300 Santeri Piippo Made the config dialog use a list widget for navigation over a tab widget. changeset | files
Fri, 18 Oct 2013 23:49:55 +0300 Santeri Piippo - added LDSharedVertex class for holding copy-on-write vertices. Will need this for future features.. changeset | files
Fri, 18 Oct 2013 22:30:08 +0300 Santeri Piippo now displays build type in the window title (unless a release build of a release), fixed some macro shenanigans changeset | files
Fri, 18 Oct 2013 22:07:26 +0300 Santeri Piippo made messagelog handle messages with newlines changeset | files
Fri, 18 Oct 2013 21:52:09 +0300 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
Fri, 18 Oct 2013 18:16:54 +0300 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
Fri, 18 Oct 2013 18:12:23 +0300 Santeri Piippo fixed a small memory leak changeset | files
Fri, 18 Oct 2013 17:57:42 +0300 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
Fri, 18 Oct 2013 17:47:05 +0300 Santeri Piippo - added debug/release build configuration. Debug builds are really useful things! changeset | files
Wed, 16 Oct 2013 23:20:35 +0300 Santeri Piippo removed some custom functions in favor of Qt implementations changeset | files
Wed, 16 Oct 2013 23:07:59 +0300 Santeri Piippo reworked the ring finder algorithm greatly, tries harder to find the optimal solution changeset | files
Wed, 16 Oct 2013 19:34:12 +0300 Santeri Piippo Added last-resort ring draw with quads changeset | files
Wed, 16 Oct 2013 17:11:16 +0300 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
Wed, 16 Oct 2013 16:47:40 +0300 Santeri Piippo Removed the List -> QList alias, use QList directly changeset | files
Wed, 16 Oct 2013 16:40:42 +0300 Santeri Piippo removed the List class in favor of QList changeset | files
Wed, 16 Oct 2013 16:05:51 +0300 Santeri Piippo removed debug prints from the ring finder changeset | files
Wed, 16 Oct 2013 16:04:56 +0300 Santeri Piippo ring finder integrated! it lives! changeset | files
Wed, 16 Oct 2013 15:32:38 +0300 Santeri Piippo Finally got the ringfinder working! Working on integrating it to ring drawing... changeset | files
Sun, 06 Oct 2013 21:37:05 +0300 Santeri Piippo Ring drawing: previewing complete changeset | files
Sat, 05 Oct 2013 15:18:47 +0300 Santeri Piippo further cleansing - removed most uses of unsigned ints, removed list reversers changeset | files
Sat, 05 Oct 2013 12:51:13 +0300 Santeri Piippo a bit more cleanup changeset | files
Thu, 03 Oct 2013 21:48:11 +0300 Santeri Piippo nuked "container_cast" changeset | files
Thu, 03 Oct 2013 21:42:48 +0300 Santeri Piippo When drawing circles, draw the radius in the middle changeset | files
Thu, 03 Oct 2013 21:08:34 +0300 Santeri Piippo further cleanup changeset | files
Thu, 03 Oct 2013 20:56:20 +0300 Santeri Piippo last code reformatting i swear changeset | files
Thu, 03 Oct 2013 18:07:06 +0300 Santeri Piippo Added a new editing mode for drawing circles. changeset | files
Sun, 22 Sep 2013 23:27:07 +0300 Santeri Piippo it's LDForge's 1st birthday! changeset | files
Mon, 09 Sep 2013 23:35:32 +0300 Santeri Piippo Stuff changeset | files
Sat, 07 Sep 2013 16:40:05 +0300 Santeri Piippo Further work on VAO rendering changeset | files
Sat, 07 Sep 2013 14:21:33 +0300 Santeri Piippo VAO rendering works now! woo! changeset | files
Sat, 07 Sep 2013 13:23:09 +0300 Santeri Piippo Merge branch 'master' into gl, reworked stuff changeset | files
Wed, 04 Sep 2013 11:54:17 +0300 Santeri Piippo For some reason, of all changesets, 4fb5763 made compiling subfiles extremely slow. WTF? Reverted the change to restore compilation speed. changeset | files
Wed, 04 Sep 2013 11:34:19 +0300 Santeri Piippo down with cmake! changeset | files
Sat, 24 Aug 2013 16:52:45 +0300 Santeri Piippo made LDFile interfacing a bit clearer changeset | files
Sat, 24 Aug 2013 16:30:30 +0300 Santeri Piippo removed unused LabeledWidget changeset | files
Sat, 24 Aug 2013 16:17:48 +0300 Santeri Piippo redirect the user to configuration if the download path is not given changeset | files
Sat, 24 Aug 2013 15:01:31 +0300 Santeri Piippo err changeset | files
Sat, 24 Aug 2013 15:00:46 +0300 Santeri Piippo rework quick color code a tad changeset | files
Fri, 23 Aug 2013 13:01:36 +0300 Santeri Piippo rename RadioBox to RadioGroup changeset | files
Fri, 23 Aug 2013 01:20:09 +0300 Santeri Piippo bit of a clarification changeset | files
Fri, 23 Aug 2013 01:04:13 +0300 Santeri Piippo fixed: couldn't open larger files because of a type mismatch in moc method calling, leading into runtime problems changeset | files
Fri, 23 Aug 2013 00:54:31 +0300 Santeri Piippo fixed: front and back camera wouldn't render anything changeset | files
Thu, 22 Aug 2013 20:39:26 +0300 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
Thu, 22 Aug 2013 20:28:57 +0300 Santeri Piippo add .kdev_include_paths to gitignore changeset | files
Thu, 22 Aug 2013 20:24:16 +0300 Santeri Piippo Changed build system from qmake to CMake. changeset | files
Thu, 22 Aug 2013 18:13:20 +0300 Santeri Piippo merged aboutDialog.cpp to dialogs.cpp changeset | files
Wed, 21 Aug 2013 14:07:02 +0300 Santeri Piippo stuff changeset | files
Wed, 21 Aug 2013 11:09:39 +0300 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
Wed, 21 Aug 2013 10:54:33 +0300 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
Wed, 21 Aug 2013 01:30:38 +0300 Santeri Piippo woo smallification! changeset | files
Wed, 21 Aug 2013 01:13:52 +0300 Santeri Piippo Added ListConfig type, using it in recent files now changeset | files
Tue, 20 Aug 2013 21:23:56 +0300 Santeri Piippo minor cleanup changeset | files
Tue, 20 Aug 2013 21:15:12 +0300 Santeri Piippo removed broken config type check changeset | files
Tue, 20 Aug 2013 21:13:59 +0300 Santeri Piippo added profile data auto-filling changeset | files
Tue, 20 Aug 2013 15:01:16 +0300 Santeri Piippo ensure that all Configs are polymorphic changeset | files
Tue, 20 Aug 2013 14:56:26 +0300 Santeri Piippo bit more cleanup changeset | files
Tue, 20 Aug 2013 14:47:21 +0300 Santeri Piippo - added "Go to line" action, renamed the config classes to proper camelcase changeset | files
Sun, 18 Aug 2013 17:53:23 +0300 Santeri Piippo Cut the Object-suffix from LDObject types, it doesn't help things at all changeset | files
Sun, 18 Aug 2013 17:38:33 +0300 Santeri Piippo Use QFlags for the inlining flags, type-safety++ changeset | files
Sun, 18 Aug 2013 17:30:58 +0300 Santeri Piippo Rewrote stud logo support, restructuring inlining stuff in the process. Logoed studs must only be used for rendering scenes, otherwise they will for instance get inlined in and that's not desired, or the vertex snapper will catch onto the logo's coordinates. changeset | files
Sun, 18 Aug 2013 16:33:38 +0300 Santeri Piippo added support for logoed studs changeset | files
Sun, 18 Aug 2013 16:04:36 +0300 Santeri Piippo more cleanup changeset | files
Sun, 18 Aug 2013 15:33:00 +0300 Santeri Piippo Code formatting: use same separators everywhere, remove extra spaces from license headers, simplified message manager api a bit changeset | files
Sat, 17 Aug 2013 11:48:27 +0300 Santeri Piippo ask the user for isecalc's path if adding edges to intersector output and no path is defined changeset | files
Sat, 17 Aug 2013 11:37:51 +0300 Santeri Piippo added missing UI file changeset | files
Sat, 17 Aug 2013 11:35:51 +0300 Santeri Piippo ask the user for ext prog paths instead of telling to go to configuration if no path is defined changeset | files
Sat, 17 Aug 2013 02:24:08 +0300 Santeri Piippo minor change changeset | files
Sat, 17 Aug 2013 02:07:49 +0300 Santeri Piippo made config dialog default to the correct tab again changeset | files
Sat, 17 Aug 2013 02:06:55 +0300 Santeri Piippo made downloaded files be stored into recent files changeset | files
Sat, 17 Aug 2013 01:17:20 +0300 Santeri Piippo Use a busy cursor while compiling all changeset | files
Sat, 17 Aug 2013 00:47:24 +0300 Santeri Piippo Use brighter text color with dark backgrounds for the message manager changeset | files
Sat, 17 Aug 2013 00:02:17 +0300 Santeri Piippo ::getIndex() should never return -1 if ::file() is not null so no check needed there.. changeset | files
Fri, 16 Aug 2013 23:59:09 +0300 Santeri Piippo fixed: LDObject's various methods still assumed that the current file wouldn't change changeset | files
Fri, 16 Aug 2013 23:24:57 +0300 Santeri Piippo Added action "add history line" for adding new history entries changeset | files
Fri, 16 Aug 2013 11:05:21 +0300 Santeri Piippo rework changeset | files
Fri, 09 Aug 2013 04:29:37 +0300 Santeri Piippo Picking now works with the VAO setup changeset | files
Fri, 09 Aug 2013 03:09:08 +0300 Santeri Piippo BIG COMMIT -- Moving from display lists to VAOs. changeset | files
Wed, 07 Aug 2013 20:50:53 +0300 Santeri Piippo camera icons now draw real tooltips instead of faking them changeset | files
Tue, 06 Aug 2013 18:50:32 +0300 Santeri Piippo fixed crashing with inlining changeset | files
Tue, 06 Aug 2013 16:23:16 +0300 Santeri Piippo updates to recent files menu changeset | files
Tue, 06 Aug 2013 13:52:32 +0300 Santeri Piippo corrected problems with the version string changeset | files
Tue, 06 Aug 2013 13:32:07 +0300 Santeri Piippo Converted configuration code to use QSettings. changeset | files
Sat, 03 Aug 2013 12:31:36 +0300 Santeri Piippo Merged PartDownloader into the prompt and renamed the prompt to PartDownloader changeset | files
Sat, 03 Aug 2013 04:44:30 +0300 Santeri Piippo now with changelog entry changeset | files
Sat, 03 Aug 2013 04:39:39 +0300 Santeri Piippo Moved the alias macro to common.h changeset | files
Sat, 03 Aug 2013 04:32:13 +0300 Santeri Piippo finalized downloading changeset | files
Sat, 03 Aug 2013 02:18:41 +0300 Santeri Piippo stability to downloading changeset | files
Sat, 03 Aug 2013 00:56:02 +0300 Santeri Piippo added config option, refined logic and regexps. This behaves coherently now. :) changeset | files
Fri, 02 Aug 2013 23:24:49 +0300 Santeri Piippo More work on downloading changeset | files
Fri, 02 Aug 2013 22:36:51 +0300 Santeri Piippo handle errors changeset | files
Fri, 02 Aug 2013 22:02:40 +0300 Santeri Piippo now actually downloads parts changeset | files
Fri, 02 Aug 2013 18:42:06 +0300 Santeri Piippo added missing files changeset | files
Fri, 02 Aug 2013 18:39:41 +0300 Santeri Piippo Begin groundwork on downloading from ldraw.org changeset | files
Fri, 02 Aug 2013 16:46:50 +0300 Santeri Piippo Create README.md changeset | files
Fri, 02 Aug 2013 16:39:46 +0300 Santeri Piippo Angles need to be reset when changing the current file too changeset | files
Fri, 02 Aug 2013 16:36:38 +0300 Santeri Piippo Fixed crash on opening a file changeset | files
Fri, 02 Aug 2013 16:33:30 +0300 Santeri Piippo style cleanup - it should be all unified now changeset | files
Fri, 02 Aug 2013 15:57:03 +0300 Santeri Piippo chglog changeset | files
Fri, 02 Aug 2013 15:55:20 +0300 Santeri Piippo If the vertex snapper finds a vertex closer than 4 pixels, it likely is the vertex being looked for and the algorithm can terminate early, hopefully this will save a few cycles on large parts. changeset | files
Fri, 02 Aug 2013 13:58:14 +0300 Santeri Piippo added support for BFC CLIP/NOCLIP changeset | files
Thu, 01 Aug 2013 17:00:14 +0300 Santeri Piippo Added an option for listing implicit files changeset | files
Thu, 01 Aug 2013 16:05:31 +0300 Santeri Piippo Added an action for creating a new, blank file, improved multi-file stability changeset | files
Thu, 01 Aug 2013 15:35:11 +0300 Santeri Piippo No need to test whether it's safe to close all when creating a new part anymore, since it no longer closes anything. changeset | files
Thu, 01 Aug 2013 03:50:13 +0300 Santeri Piippo some further little optimization changeset | files
Thu, 01 Aug 2013 03:44:38 +0300 Santeri Piippo Don't recompile everything when using quick colors, this speeds things up a little changeset | files
Thu, 01 Aug 2013 03:32:57 +0300 Santeri Piippo more cleanup changeset | files
Thu, 01 Aug 2013 03:26:47 +0300 Santeri Piippo cleanup changeset | files
Thu, 01 Aug 2013 02:49:42 +0300 Santeri Piippo Include the moc files in the source cpp files to reduce compile time changeset | files
Thu, 01 Aug 2013 02:33:07 +0300 Santeri Piippo Renamed LDOpenFile to LDFile changeset | files
Tue, 30 Jul 2013 21:31:36 +0300 Santeri Piippo - fixed: checking the hi-res option would not allow segment values over 16. changeset | files
Tue, 30 Jul 2013 21:22:47 +0300 Santeri Piippo primitive generator: added support for multiple spaces before primitive numbers, add "Hi-Res" to the names of 48/ primitives changeset | files
Tue, 30 Jul 2013 18:01:53 +0300 Santeri Piippo Separated LDConfig.ldr-specific stuff to ldconfig.cpp/h changeset | files
Tue, 30 Jul 2013 17:38:29 +0300 Santeri Piippo commentary++ changeset | files
Tue, 30 Jul 2013 17:27:04 +0300 Santeri Piippo cosmetics changeset | files
Tue, 30 Jul 2013 16:17:16 +0300 Santeri Piippo Made File::iterator private - it's used only for range-for loops so it should not be used by anything else than File itself. changeset | files
Tue, 30 Jul 2013 07:38:08 +0300 Santeri Piippo Renamed vector to List, changed it to wrap around std::deque. changeset | files
Tue, 30 Jul 2013 07:16:48 +0300 Santeri Piippo Use repaint() instead of update() when redrawing the scene after a pick so that the new scene is repainted immediately. changeset | files
Tue, 30 Jul 2013 02:27:12 +0300 Santeri Piippo Fixed crashing when closing all changeset | files
Thu, 18 Jul 2013 13:13:26 +0300 Santeri Piippo stuff changeset | files
Tue, 16 Jul 2013 21:02:12 +0300 Santeri Piippo restyle changeset | files
Tue, 16 Jul 2013 20:01:36 +0300 Santeri Piippo Apply the proper edge color in the color sector too changeset | files
Tue, 16 Jul 2013 19:38:47 +0300 Santeri Piippo restyle colorselectdialog.cpp changeset | files
Tue, 16 Jul 2013 19:35:41 +0300 Santeri Piippo Further restructure, removed GUI toolbar icon size slider (always 22x22 now) changeset | files
Tue, 16 Jul 2013 13:57:42 +0300 Santeri Piippo fixed: the list view couldn't select multiple items anymore changeset | files
Tue, 16 Jul 2013 03:12:03 +0300 Santeri Piippo some rework with closing files, not right there, seems changeset | files
Tue, 16 Jul 2013 02:47:11 +0300 Santeri Piippo change camera to top if switching to draw mode in free camera changeset | files
Tue, 16 Jul 2013 02:45:13 +0300 Santeri Piippo Finalized multi-file behavior. The future is here! :P changeset | files
Tue, 16 Jul 2013 02:09:22 +0300 Santeri Piippo behavior update changeset | files
Tue, 16 Jul 2013 02:06:30 +0300 Santeri Piippo Added actions for saving all files, closing and closing all files changeset | files
Tue, 16 Jul 2013 01:33:11 +0300 Santeri Piippo Multiple file support works now! woo! changeset | files
Mon, 15 Jul 2013 22:32:23 +0300 Santeri Piippo moved ext program action definitions to extprogs.cpp rather than proxying it through gui_editactions.cpp changeset | files
Mon, 15 Jul 2013 22:27:16 +0300 Santeri Piippo fixed config dialog crashing changeset | files
Mon, 15 Jul 2013 22:25:00 +0300 Santeri Piippo Shortcuts are now properly loaded again changeset | files
Mon, 15 Jul 2013 22:07:49 +0300 Santeri Piippo updates on file list changeset | files
Mon, 15 Jul 2013 20:45:26 +0300 Santeri Piippo File list is populated now.. changeset | files
Mon, 15 Jul 2013 19:30:16 +0300 Santeri Piippo Converted ForgeWindow to Designer UI(!) changeset | files
Mon, 15 Jul 2013 14:43:29 +0300 Santeri Piippo restructure; removed g_BBox changeset | files
Mon, 15 Jul 2013 13:52:46 +0300 Santeri Piippo Moved the bbox class to types changeset | files
Mon, 15 Jul 2013 13:50:12 +0300 Santeri Piippo Made the pointer to current file a private member of an anonymous shell class, thus getting accessors changeset | files
Sat, 13 Jul 2013 21:21:33 +0300 Santeri Piippo more formatting changeset | files
Sat, 13 Jul 2013 19:02:48 +0300 Santeri Piippo Appended 'Object' to the names of all LDObject derivatives so even though the LD prefix isn't reserved for just LDObjects anymore, these classes remain distinct changeset | files
Sat, 13 Jul 2013 17:35:38 +0300 Santeri Piippo Reformatting.. changeset | files
Wed, 10 Jul 2013 02:58:59 +0300 Santeri Piippo Bump version to 0.2.999-intern now that 0.2-alpha is out. changeset | files
Wed, 10 Jul 2013 02:18:54 +0300 Santeri Piippo Tag 0.2 alpha changeset | files
Wed, 10 Jul 2013 02:17:23 +0300 Santeri Piippo Fixed compilation under windows/qt5 changeset | files
Wed, 10 Jul 2013 01:53:33 +0300 Santeri Piippo added missing openprogress.ui changeset | files
Wed, 10 Jul 2013 01:50:24 +0300 Santeri Piippo make aborting work in the new setup changeset | files
Wed, 10 Jul 2013 01:40:59 +0300 Santeri Piippo make file loading be done properly as just a QObject rather than multi-threaded.. changeset | files
Tue, 09 Jul 2013 03:07:39 +0300 Santeri Piippo handle empty lines better changeset | files
Tue, 09 Jul 2013 03:04:31 +0300 Santeri Piippo Use system clipboard rather than an internal one changeset | files
Tue, 09 Jul 2013 02:57:11 +0300 Santeri Piippo apply the c++11 'override' keyword to overriding virtual functions changeset | files
Mon, 08 Jul 2013 02:46:55 +0300 Santeri Piippo fixed: history is supposed to be closed by default changeset | files
Mon, 08 Jul 2013 02:43:43 +0300 Santeri Piippo further work on primitive cond-lines. I think I got it now. changeset | files
Mon, 08 Jul 2013 01:36:12 +0300 Santeri Piippo Renamed the color class to LDColor for clarity changeset | files
Mon, 08 Jul 2013 01:29:28 +0300 Santeri Piippo primitive generator: add conditional lines to cylinders; improved bad color handling changeset | files
Sun, 07 Jul 2013 23:43:43 +0300 Santeri Piippo Added history functionality for swapping changeset | files
Sun, 07 Jul 2013 23:22:28 +0300 Santeri Piippo fixed: double-clicking an object and editing it that way would not register to history changeset | files
Sun, 07 Jul 2013 23:17:17 +0300 Santeri Piippo when inlining (as an action), reinterpret the inlinees so that there's not any pointer mess-ups changeset | files
Sun, 07 Jul 2013 17:45:48 +0300 Santeri Piippo more restyle/refactor changeset | files
Sun, 07 Jul 2013 16:46:30 +0300 Santeri Piippo restyle.. changeset | files
Sun, 07 Jul 2013 15:08:38 +0300 Santeri Piippo Removed the two string arrays containing object types and icon names, moved these as LDObjects' virtual functions changeset | files
Sun, 07 Jul 2013 03:36:30 +0300 Santeri Piippo Cleaned up the toolbars, removed clutter by removing most of the not-so-often-used items changeset | files
Sun, 07 Jul 2013 03:25:28 +0300 Santeri Piippo removed the history dialog, it doesn't fit in with the new history system changeset | files
Sun, 07 Jul 2013 03:19:09 +0300 Santeri Piippo Fixed: color selector prompt would crash if no default was given changeset | files
Sun, 07 Jul 2013 03:14:20 +0300 Santeri Piippo dded an action to quickly toggle BFC red/green view. changeset | files
Sun, 07 Jul 2013 03:04:40 +0300 Santeri Piippo pngout'd changeset | files
Sun, 07 Jul 2013 03:03:39 +0300 Santeri Piippo uh, stuff changeset | files
Sun, 07 Jul 2013 03:03:15 +0300 Santeri Piippo BFC icon stuff - old icon is now used for bfc red/green view-to-be changeset | files
Sat, 06 Jul 2013 04:08:57 +0300 Santeri Piippo rename: msglog.cpp/h -> messagelog.cpp/h changeset | files
Sat, 06 Jul 2013 04:00:50 +0300 Santeri Piippo fixed: stuff that was changed during file open was written to history changeset | files
Sat, 06 Jul 2013 03:54:59 +0300 Santeri Piippo astyle history.cpp changeset | files
Sat, 06 Jul 2013 03:44:04 +0300 Santeri Piippo Converted flip prompt to Designer UI changeset | files
Sat, 06 Jul 2013 03:24:39 +0300 Santeri Piippo Converted Ytruder interface to Designer UI changeset | files
Sat, 06 Jul 2013 03:06:00 +0300 Santeri Piippo Further verbosity, #ifdef the test axle pic out of release builds changeset | files
Sat, 06 Jul 2013 02:52:54 +0300 Santeri Piippo Completed Edger 2 interface changeset | files
Sat, 06 Jul 2013 02:30:48 +0300 Santeri Piippo gitignore *.dat files so I won't commit in my test files accidentally changeset | files
Sat, 06 Jul 2013 02:02:41 +0300 Santeri Piippo Update gitignore changeset | files
Sat, 06 Jul 2013 01:59:58 +0300 Santeri Piippo Added missing src/src.pro file changeset | files
Sat, 06 Jul 2013 01:41:31 +0300 Santeri Piippo Also put all generated UI headers on ignore changeset | files
Sat, 06 Jul 2013 01:40:06 +0300 Santeri Piippo remove ldforge.kdev4 and put it on ignore changeset | files
Thu, 04 Jul 2013 22:40:11 +0300 Santeri Piippo Converted ldraw path prompt changeset | files
Thu, 04 Jul 2013 21:09:19 +0300 Santeri Piippo fixed: overlays coudln't be defined for other cameras than the one used currently changeset | files
Thu, 04 Jul 2013 21:01:52 +0300 Santeri Piippo Converted overlay prompt changeset | files
Thu, 04 Jul 2013 20:12:03 +0300 Santeri Piippo Added missing what's this in edit raw prompt changeset | files
Thu, 04 Jul 2013 20:09:25 +0300 Santeri Piippo Removed more obsolete code changeset | files
Thu, 04 Jul 2013 20:08:14 +0300 Santeri Piippo Converted rotation point prompt changeset | files
Thu, 04 Jul 2013 19:18:42 +0300 Santeri Piippo Converted about dialog changeset | files
Thu, 04 Jul 2013 18:56:34 +0300 Santeri Piippo converted the raw edit prompt changeset | files
Thu, 04 Jul 2013 18:41:24 +0300 Santeri Piippo Designerified the replace coordinates action changeset | files
(0) -224 +224 tip

mercurial