Commit 87f52f3b authored by sumpfralle's avatar sumpfralle

fixed all references to pycamGUI (now: pycam)


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@590 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent 73933b28
...@@ -35,7 +35,7 @@ Features: ...@@ -35,7 +35,7 @@ Features:
RUNNING: RUNNING:
extract the archive and run "python pycamGUI" extract the archive and run "python pycam"
......
man/pycamGUI.1 man/pycam.1
...@@ -2,11 +2,11 @@ diff -Nur -x '*.orig' -x '*~' pycam-0.2.2//setup.py pycam-0.2.2.new//setup.py ...@@ -2,11 +2,11 @@ diff -Nur -x '*.orig' -x '*~' pycam-0.2.2//setup.py pycam-0.2.2.new//setup.py
--- pycam-0.2.2//setup.py 2010-03-20 12:57:16.000000000 +0100 --- pycam-0.2.2//setup.py 2010-03-20 12:57:16.000000000 +0100
+++ pycam-0.2.2.new//setup.py 2010-03-20 13:07:53.026518970 +0100 +++ pycam-0.2.2.new//setup.py 2010-03-20 13:07:53.026518970 +0100
@@ -43,7 +43,7 @@ @@ -43,7 +43,7 @@
"pycam.PathGenerators", "pycam.Toolpath",
"pycam.Simulation" "pycam.Physics",
], ],
- scripts = ['pycamGUI', 'pycam_win32_postinstall.py'], - scripts = ['pycam', 'pycam_win32_postinstall.py'],
+ scripts = ['pycamGUI'], + scripts = ['pycam'],
data_files=[("share/doc/python-pycam",[ data_files=[("share/doc/python-pycam",[
"COPYING.TXT", "COPYING.TXT",
"HOWTO.TXT", "HOWTO.TXT",
...@@ -4,7 +4,7 @@ index 3046304..9f66f6d 100755 ...@@ -4,7 +4,7 @@ index 3046304..9f66f6d 100755
+++ b/setup.py +++ b/setup.py
@@ -45,13 +45,9 @@ setup( @@ -45,13 +45,9 @@ setup(
], ],
scripts = ['pycamGUI', 'pycam_win32_postinstall.py'], scripts = ['pycam', 'pycam_win32_postinstall.py'],
data_files=[("share/doc/python-pycam",[ data_files=[("share/doc/python-pycam",[
- "COPYING.TXT", - "COPYING.TXT",
"HOWTO.TXT", "HOWTO.TXT",
......
...@@ -3,7 +3,7 @@ Version=1.0 ...@@ -3,7 +3,7 @@ Version=1.0
Name=PyCAM Name=PyCAM
GenericName=Toolpath Generator GenericName=Toolpath Generator
Comment=Toolpath Generation for 3-Axis CNC machining Comment=Toolpath Generation for 3-Axis CNC machining
Exec=pycamGUI Exec=pycam
Terminal=false Terminal=false
Type=Application Type=Application
Categories=Development;Engineering;Robotics; Categories=Development;Engineering;Robotics;
.TH PyCAM 1 "April 02010" "PyCAM" "PyCAM manual" .TH PyCAM 1 "April 02010" "PyCAM" "PyCAM manual"
.SH NAME .SH NAME
pycamGUI \- start the graphical user interface of the \fBPyCAM\fR Toolpath Generator pycam \- start the graphical user interface of the \fBPyCAM\fR Toolpath Generator
for 3-Axis CNC machining for 3-Axis CNC machining
.SH SYNOPSIS .SH SYNOPSIS
.B pycamGUI .B pycam
[\fIoptions\fR] [\fISTL_input\fR [\fIGCode_output\fR]] [\fIoptions\fR] [\fISTL_input\fR [\fIGCode_output\fR]]
.SH DESCRIPTION .SH DESCRIPTION
.PP .PP
......
...@@ -44,8 +44,7 @@ START_MENU_SUBDIR = os.path.join(START_MENU_BASEDIR, "PyCAM") ...@@ -44,8 +44,7 @@ START_MENU_SUBDIR = os.path.join(START_MENU_BASEDIR, "PyCAM")
# create a start menu item for pycam # create a start menu item for pycam
PYTHON_EXE = os.path.join(distutils.sysconfig.EXEC_PREFIX, "pythonw.exe") PYTHON_EXE = os.path.join(distutils.sysconfig.EXEC_PREFIX, "pythonw.exe")
START_SCRIPT = os.path.join(distutils.sysconfig.EXEC_PREFIX, "Scripts", "pycamGUI") START_SCRIPT = os.path.join(distutils.sysconfig.EXEC_PREFIX, "Scripts", "pycam")
RUN_TARGET = '%s "%s"' % (PYTHON_EXE, START_SCRIPT)
PYTHON_DATA_DIR = os.path.join(distutils.sysconfig.PREFIX, "share", "python-pycam") PYTHON_DATA_DIR = os.path.join(distutils.sysconfig.PREFIX, "share", "python-pycam")
......
1) update the version and the changelog 1) update the version and the changelog
- in "Changelog" (version, release date, changes) - in "Changelog" (version, release date, changes)
- in "pycam/__init__.py" (version) - in "src/pycam/__init__.py" (version)
- commit the changes - commit the changes
2) create the archives 2) create the archives
......
...@@ -76,7 +76,7 @@ Basically you will need Python, GTK and OpenGL. ...@@ -76,7 +76,7 @@ Basically you will need Python, GTK and OpenGL.
"pycam.Toolpath", "pycam.Toolpath",
"pycam.Physics", "pycam.Physics",
], ],
scripts = ['pycamGUI', 'pycam_win32_postinstall.py'], scripts = ['pycam', 'pycam_win32_postinstall.py'],
data_files=[("share/doc/python-pycam",[ data_files=[("share/doc/python-pycam",[
"COPYING.TXT", "COPYING.TXT",
"HOWTO.TXT", "HOWTO.TXT",
......
...@@ -22,5 +22,5 @@ along with PyCAM. If not, see <http://www.gnu.org/licenses/>. ...@@ -22,5 +22,5 @@ along with PyCAM. If not, see <http://www.gnu.org/licenses/>.
__all__=["Cutters","Exporters","Geometry","Gui","Importers","PathGenerators","PathProcessors","Utils"] __all__=["Cutters","Exporters","Geometry","Gui","Importers","PathGenerators","PathProcessors","Utils"]
VERSION = "0.2.5" VERSION = "0.3RC1"
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