Code

replace super-linear complexity stacked C stirng concatenations with O(1) append...
[inkscape.git] / ChangeLog
index 197a7c855993534e3e56f80edee29e66af93f8ef..e7ce13d050ab1a9d3b9c25844070186ac9931c6a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,45 @@
+2006-05-22  MenTaLguY  <mental@rydia.net>
+
+       * src/extension/internal/svg.cpp:
+
+         replace EXTREMELY inefficient (O(n^2), I think?) stacked C string
+         concatenations with appends to a std::vector, which is amortized O(1)
+
+2006-05-21  Marco Scholten  <mscholtn@xs4all.nl>
+
+       * src/ui/dialog/inkscape-preferences.cpp, 
+      src/ui/dialog/inkscape-preferences.h: 
+         Added 'Show close button on dialogs' option.
+
+2006-05-21  MenTaLguY  <mental@rydia.net>
+
+       * src/ui/view/view-widget.cpp:
+       
+         request collection pass after destruction of a view widget
+
+2006-05-21  MenTaLguY  <mental@rydia.net>
+
+       * src/gc-core.h, src/gc.cpp:
+       
+         add GC::request_early_collection() to force a collection from the idle
+         loop at opportune times
+
+       * src/dialogs/filedialog.cpp:
+
+         call GC::request_early_collection() after switching preview images
+
+2006-05-21  Jon A. Cruz  <jon@joncruz.org>
+
+       * src/layer-manager.cpp, src/layer-manager.h,
+         src/dialogs/layers-panel.cpp, src/dialogs/layers-panel.h:
+         Adding notification when managed layers change.
+
+2006-05-21  Michael Wybrow  <mjwybrow@users.sourceforge.net>
+
+       * src/extension/internal/pdf.cpp: Compilation fix.  For versions
+         of glib older that 2.9.0, use g_date_set_time() instead of
+         g_date_set_time_t().
+
 2006-05-20  MenTaLguY  <mental@rydia.net>
 
        * src/extensin/internal/ps.cpp: