From 4be57f31288e2d611fa43bfe39a4fddac9d90475 Mon Sep 17 00:00:00 2001 From: mattmcw Date: Mon, 21 Aug 2023 19:31:20 -0400 Subject: [PATCH] Update part names for CPC connectors --- app/data/cfg.json | 2 +- app/package-lock.json | 2 +- app/package.json | 2 +- data/cfg.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- processing/mcopy/cfg.json | 2 +- scad/cpc_connectors.scad | 10 +++++----- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/app/data/cfg.json b/app/data/cfg.json index db147ac..87156f5 100644 --- a/app/data/cfg.json +++ b/app/data/cfg.json @@ -1,5 +1,5 @@ { - "version": "1.8.4", + "version": "1.8.5", "ext_port": 1111, "profiles": { "mcopy": { diff --git a/app/package-lock.json b/app/package-lock.json index 795fae0..b393d17 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -1,6 +1,6 @@ { "name": "mcopy-app", - "version": "1.8.4", + "version": "1.8.5", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/app/package.json b/app/package.json index 710b10e..7f0ac38 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "mcopy-app", - "version": "1.8.4", + "version": "1.8.5", "description": "GUI for the mcopy small gauge film optical printer platform", "main": "main.js", "scripts": { diff --git a/data/cfg.json b/data/cfg.json index db147ac..87156f5 100644 --- a/data/cfg.json +++ b/data/cfg.json @@ -1,5 +1,5 @@ { - "version": "1.8.4", + "version": "1.8.5", "ext_port": 1111, "profiles": { "mcopy": { diff --git a/package-lock.json b/package-lock.json index 583e111..bb87660 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mcopy", - "version": "1.8.4", + "version": "1.8.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "mcopy", - "version": "1.8.4", + "version": "1.8.5", "license": "MIT", "dependencies": { "arduino": "file:app/lib/arduino", diff --git a/package.json b/package.json index 5d50c5a..d2dc655 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mcopy", - "version": "1.8.4", + "version": "1.8.5", "description": "Small gauge film optical printer platform", "main": "build.js", "directories": { diff --git a/processing/mcopy/cfg.json b/processing/mcopy/cfg.json index db147ac..87156f5 100644 --- a/processing/mcopy/cfg.json +++ b/processing/mcopy/cfg.json @@ -1,5 +1,5 @@ { - "version": "1.8.4", + "version": "1.8.5", "ext_port": 1111, "profiles": { "mcopy": { diff --git a/scad/cpc_connectors.scad b/scad/cpc_connectors.scad index 0ba73b5..59f5509 100644 --- a/scad/cpc_connectors.scad +++ b/scad/cpc_connectors.scad @@ -4,7 +4,7 @@ include <./common/common.scad>; -PART="cpc_9pin_socket"; +PART="9pin_socket"; FN = 120; @@ -163,13 +163,13 @@ module debug () { } } -if (PART == "cpc_9pin_plug") { +if (PART == "9pin_plug") { cpc_9pin_plug(); -} else if (PART == "cpc_9pin_plug_collar") { +} else if (PART == "9pin_plug_collar") { cpc_9pin_plug_collar(); -} else if (PART == "cpc_9pin_plug_back") { +} else if (PART == "9pin_plug_back") { cpc_9pin_plug_back(); -} else if (PART == "cpc_9pin_socket") { +} else if (PART == "9pin_socket") { cpc_9pin_socket(); } else { debug();