Index: trunk/Changelog =================================================================== --- trunk/Changelog (revision 1038) +++ trunk/Changelog (revision 1039) @@ -1,3 +1,17 @@ +pcb-rnd 1.0.7 +~~~~~~~~~~~~~ + -Cleanup: src/ should compile in c89 - no more // comments and variables declared in for() + -Cleanup: const correctness in src/ + -Cleanup: missing #includes in src/ + -Cleanup: unified, tab based indentation all over src/ + -Cleanup: move dmalloc include to central config.h + -Cleanup: move gts to src/3rd + -Cleanup: remove old/obsolete files inherited from the fork + -Cleanup: rename doc/ to doc-orig/ to avoid confusion and make it compile + -Fix: poly pin bounding box calculation adds clearance as rtree expects ([square]) + -Fix: loading default.pcb shouldn't override cursor pos and board sizes and shoudln't cause file date to be changed in the gui hids since it is loading a "misc" file + -Add: README in each main directory to explain what the directory is for + pcb-rnd 1.0.6 ~~~~~~~~~~~~~ [cycdrag] Index: trunk/Release_notes =================================================================== --- trunk/Release_notes (revision 1038) +++ trunk/Release_notes (revision 1039) @@ -1,4 +1,11 @@ -pcb-rnd 1.0.6 +pcb-rnd 1.0.7 ~~~~~~~~~~~~~ -The new release features cycle drag and footprint pin renumbering, among -with a set of bugfixes that removes some of the GNU and locale dependency. +1.0.7 is a large scale cleanup release that touches most source files. +The three major changes: + - remove non-c89 features (// comments, variable declaration in for()), + - unify indentation and code formatting + - reorganize the directory structure + +It also features a lot of smaller fixes and removes most compiler warnings. + + Index: trunk/debian/changelog =================================================================== --- trunk/debian/changelog (revision 1038) +++ trunk/debian/changelog (revision 1039) @@ -1,3 +1,9 @@ +pcb-rnd (1.0.4-r1038) unstable; urgency=low + + * New upstream release (1.0.7) + + -- Tibor Palinkas Wed, 17 Feb 2016 08:43:01 +0100 + pcb-rnd (1.0.4-r980) unstable; urgency=low * New upstream release (1.0.6) Index: trunk/doc-rnd/TODO =================================================================== --- trunk/doc-rnd/TODO (revision 1038) +++ trunk/doc-rnd/TODO (revision 1039) @@ -1,3 +1,9 @@ +CLEANUP + - move autorouters in plugins + - create a separate plugin source dir + - remove libstroke or move it in a plugin? + - warnings in util/ + BACK ANNOTATION - renumbering action disabled; grep for BA_TODO @@ -4,9 +10,6 @@ BUGS - gpmi (and other buildings/plugins) not showing up in the about box -CLEANUP - - remove libstroke? - FEATURES - UI: trace length calculation {small} - UI: be able to manually change text line width {small} Index: trunk/scconfig/hooks.c =================================================================== --- trunk/scconfig/hooks.c (revision 1038) +++ trunk/scconfig/hooks.c (revision 1039) @@ -9,7 +9,7 @@ #include "tmpasm_scconfig.h" #include "util/arg_auto_set.h" -#define version "1.0.6" +#define version "1.0.7" const char *gui_list[] = { "GTK", "libs/gui/gtk2/presents",