From 5f15d10bbfe0fb9a7edac05cfbb0e979ae027724 Mon Sep 17 00:00:00 2001 From: bobgeorgethe3rd Date: Tue, 18 Apr 2023 13:29:54 +0000 Subject: [PATCH] add back FreeSewing to descriptions --- scripts/add-software.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/add-software.mjs b/scripts/add-software.mjs index 715ba974a3c..60112455137 100644 --- a/scripts/add-software.mjs +++ b/scripts/add-software.mjs @@ -240,7 +240,7 @@ function validatePluginName(name) { function createDesign(name, type) { const template = ['config', 'templates', 'design'] const design = ['designs', name] - const description = 'A pattern that needs a description' + const description = 'A FreeSewing pattern that needs a description' const capitalized_name = name.charAt(0).toUpperCase() + name.slice(1) // Add to designs config file @@ -280,7 +280,7 @@ function createDesign(name, type) { function createPlugin(name) { const pluginName = 'plugin-' + name const template = ['config', 'templates', 'plugin'] - const description = 'A plugin that needs a description' + const description = 'A FreeSewing plugin that needs a description' const plugin = ['plugins', pluginName] const capitalized_name = name.charAt(0).toUpperCase() + name.slice(1)