From dd45ff83e1abb60ce2e08f34c22a0da73096793a Mon Sep 17 00:00:00 2001 From: Rentlau Date: Tue, 6 Oct 2015 23:32:05 +0200 Subject: [PATCH] release 2015_10_06: 1- bug on start_WF.FCMacro due to change in file names corrected. 2- copy of 2 missing icons --- WorkFeature/Icons/WF_Beam.svg | 454 ++++++++++++++ WorkFeature/Icons/WF_objectJointFaces.svg | 726 ++++++++++++++++++++++ start_WF.FCMacro | 6 +- 3 files changed, 1183 insertions(+), 3 deletions(-) create mode 100644 WorkFeature/Icons/WF_Beam.svg create mode 100644 WorkFeature/Icons/WF_objectJointFaces.svg diff --git a/WorkFeature/Icons/WF_Beam.svg b/WorkFeature/Icons/WF_Beam.svg new file mode 100644 index 0000000..381ab55 --- /dev/null +++ b/WorkFeature/Icons/WF_Beam.svg @@ -0,0 +1,454 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/WorkFeature/Icons/WF_objectJointFaces.svg b/WorkFeature/Icons/WF_objectJointFaces.svg new file mode 100644 index 0000000..2d924f9 --- /dev/null +++ b/WorkFeature/Icons/WF_objectJointFaces.svg @@ -0,0 +1,726 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/start_WF.FCMacro b/start_WF.FCMacro index a3b2218..59ab6c7 100644 --- a/start_WF.FCMacro +++ b/start_WF.FCMacro @@ -4,7 +4,7 @@ import os.path try: # try import - import WorkFeature + import WorkFeature.WF_2015 as WF except: # get the path of the current python script m_current_path = os.path.realpath(__file__) @@ -13,6 +13,6 @@ except: if not sys.path.__contains__(str(m_current_path)): sys.path.append(str(m_current_path)) # retry import now - import WorkFeature + import WorkFeature.WF_2015 as WF -WorkFeature.myDialog = WorkFeature.WorkFeatureTab() +WF.myDialog = WF.WorkFeatureTab()