diff --git a/gallery/readme.md b/gallery/readme.md index 61b38d7..51c1c2e 100644 --- a/gallery/readme.md +++ b/gallery/readme.md @@ -1,3 +1,4 @@ +# A gallery of projects made with NopSCADlib # ArduinoThermostat Arduino thermostat to control a beer fridge to use it as an environmental chamber. diff --git a/readme.md b/readme.md index 2b4994c..ce60e96 100644 --- a/readme.md +++ b/readme.md @@ -5,6 +5,10 @@ It contains lots of vitamins (the RepRap term for non-printed parts), some gener some utilities. There are also Python scripts to generate Bills of Materials (BOMs), STL files for all the printed parts and DXF files for CNC routed parts in a project. +For some of examples of what it can make see the [gallery](gallery/readme.md). + +The license is GNU General Public License v3.0, see [COPYING](COPYING). + diff --git a/scripts/gallery.py b/scripts/gallery.py index 4713847..165b772 100644 --- a/scripts/gallery.py +++ b/scripts/gallery.py @@ -39,6 +39,7 @@ def gallery(): projects = [i for i in os.listdir(project_dir) if os.path.isdir(project_dir + '/' + i + '/assemblies')] with open(output_name, 'wt') as output_file: + print("# A gallery of projects made with NopSCADlib", file = output_file) for project in projects: path = project_dir + '/' + project print(project) diff --git a/scripts/tests.py b/scripts/tests.py index 393a304..948bf07 100644 --- a/scripts/tests.py +++ b/scripts/tests.py @@ -198,6 +198,10 @@ It contains lots of vitamins (the RepRap term for non-printed parts), some gener some utilities. There are also Python scripts to generate Bills of Materials (BOMs), STL files for all the printed parts and DXF files for CNC routed parts in a project. +For some of examples of what it can make see the [gallery](gallery/readme.md). + +The license is GNU General Public License v3.0, see [COPYING](COPYING). + \n ''', file = doc_file)