Commit e7733c0d authored by sumpfralle's avatar sumpfralle

added "release_info" describing the release process

updated changelog
removed debug output


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@190 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent 85c9ca8f
Version 0.2 - UNRELEASED Version 0.2 - UNRELEASED
* added an alternative GTK interface with additional features: * added an alternative GTK interface with additional features:
* configurable 3D view settings: model / toolpath / axis / drill progress / frame skip * configurable 3D view settings: model / toolpath / axis / drill progress / frame rate / colors
* manipulation of the model: rotation, flip, swap, scale, move * manipulation of the model: rotation, flip, swap, scale, move
* saving the model to an ascii STL file * saving the model to an ascii STL file
* load/save processing settings from/to a file * load/save processing settings from/to a file
* handling of multiple processing templates (e.g. "Rough", "Semi-finish" and "Finish") * handling of multiple processing templates (e.g. "Rough", "Semi-finish" and "Finish")
* configure "material allowance" for a minimum distance between drill and model * configure "material allowance" for a minimum distance between drill and model
* configure the "safety height" for the machine * configure the "safety height" for the machine
* allow to manage and export (gcode) multiple toolpaths * allow to manage and export (gcode) multiple toolpaths at once
* based on GtkGlExt (for OpenGL) * based on GtkGlExt (for OpenGL)
* visualize conflicting processing settings * visualize invalid processing setting combinations
* configure "overlap" instead of "lines" and "samples" * configure "overlap" instead of "lines" and "samples"
* configure "maximum step down" instead of "layers" * configure "maximum step down" instead of "layers"
* show a progress bar during calculations * show a progress bar during calculations
* basic lightning for the OpenGL view
* improved performance by (optionally) using the "Open Dynamics Engine" (ODE) for * improved performance by (optionally) using the "Open Dynamics Engine" (ODE) for
collision detection collision detection
* added basic lightning to the OpenGL view
Version 0.1.11b - 2010-02-25
* fix minor release mistake (missing "STLExporter")
Version 0.1.11 - 2010-02-19 Version 0.1.11 - 2010-02-19
* fix detection of binary STL * fix detection of binary STL
......
...@@ -444,7 +444,6 @@ class ProjectGui: ...@@ -444,7 +444,6 @@ class ProjectGui:
obj.connect("color-set", self.update_view) obj.connect("color-set", self.update_view)
# pre-define the colors # pre-define the colors
for name in COLORS.keys(): for name in COLORS.keys():
print "Set: %s / %s" % (name, COLORS[name])
self.settings.set(name, COLORS[name]) self.settings.set(name, COLORS[name])
# set the availability of ODE # set the availability of ODE
if GuiCommon.is_ode_available(): if GuiCommon.is_ode_available():
......
svn co http://... pycam-0.1.11
cd pycam-0.1.11
1) Update the version numbers
- in "Makefile"
- in "pycam/Gui/gtk-interface/pycam-project.ui" ("version" in "GtkAboutDialog")
- in "changelog.txt" (including a summary of changes)
2) commit & tag
- svn commit trunk
- svn cp trunk tags/release-0.x.y && svn commit
3) create the archives
- "make dist-ver"
4) upload files to sourceforge
- https://sourceforge.net/project/admin/explorer.php?group_id=237831
- "Upload File"
5) announcements
- create a project news items at sourceforge
- create a new release at http://freshmeat.net
- post the new release at http://www.cnczone.com/forums/showthread.php?t=63716
- ?
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment