From fe613b517237357575e9cb6eee565231d1833746 Mon Sep 17 00:00:00 2001 From: Edward Date: Mon, 16 Aug 2021 10:45:41 -0400 Subject: ignore macOS system files --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 46f8691..6eb3c45 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ *.scad /target .idea/ +.DS_Store *.FCStd1 debug_* */__pycache__/* -- cgit v1.2.3 From 3a74bee2fcd1561f5cf23a4f57fe41062203313e Mon Sep 17 00:00:00 2001 From: Edward Date: Thu, 19 Aug 2021 15:40:34 -0400 Subject: allow multiple config files generate_configuration.py now only generates a configuration file; it no longer also runs dactyl_manuform.py. it will save the generated configuration file to the configs directory, and it will be named according to the config_name. passing a --config= argument to the script will set the config_name and save_dir. dactyl_manuform.py now also accepts a --config= argument. if non is passed, the default values from generate_configuration.py are used. otherwise, the defaults will be overridden by the values from the config specified. because of these changes, i removed run_config.json. it should have default values anyway, so it seemed reduandant and confusing. the run command has also been updated to allow for the config changes, and some bugs have also been fixed. --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 6eb3c45..41ac558 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ debug_* */__pycache__/* *~$* things/ +configs/*.json \ No newline at end of file -- cgit v1.2.3 From 9e2c0c3b72eb0bb27210bf19d76e7e4b6f5ce295 Mon Sep 17 00:00:00 2001 From: Joshua Shreve Date: Sat, 21 Aug 2021 20:31:07 -0400 Subject: Added config update to add new parameters to config. Retained ability to run the run_config.json file if there are no CLI arguments. Retained ability to run the run_config.json file if there are no CLI arguments. Will eventually deprecate run_config in favor of the configs directory, but don't want to mess up existing configs until they have time to migrate. Un-ignored configs. Would like to build a set of user configs through PRs to see variety. Add gallery directory for those with submit configs for people to see examples. All PRs for configs are expected to have identically named files (with some suffix for multiple) to show example images. --- .gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 41ac558..969b9fe 100644 --- a/.gitignore +++ b/.gitignore @@ -14,5 +14,4 @@ debug_* */__pycache__/* *~$* -things/ -configs/*.json \ No newline at end of file +things/ \ No newline at end of file -- cgit v1.2.3 From 33302b07c3ec3c5f887f43d269f0b2ca5145a4f9 Mon Sep 17 00:00:00 2001 From: Joshua Shreve Date: Sun, 22 Aug 2021 13:49:28 -0400 Subject: trying to fix all workflows to work. --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 969b9fe..6cc67ea 100644 --- a/.gitignore +++ b/.gitignore @@ -14,4 +14,6 @@ debug_* */__pycache__/* *~$* -things/ \ No newline at end of file +things/*.scad +things/*.step +things/*.stl \ No newline at end of file -- cgit v1.2.3