1
0
Fork 0

add back FreeSewing to descriptions

This commit is contained in:
bobgeorgethe3rd 2023-04-18 13:29:54 +00:00
parent 4b186f1654
commit 5f15d10bbf

View file

@ -240,7 +240,7 @@ function validatePluginName(name) {
function createDesign(name, type) { function createDesign(name, type) {
const template = ['config', 'templates', 'design'] const template = ['config', 'templates', 'design']
const design = ['designs', name] 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) const capitalized_name = name.charAt(0).toUpperCase() + name.slice(1)
// Add to designs config file // Add to designs config file
@ -280,7 +280,7 @@ function createDesign(name, type) {
function createPlugin(name) { function createPlugin(name) {
const pluginName = 'plugin-' + name const pluginName = 'plugin-' + name
const template = ['config', 'templates', 'plugin'] 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 plugin = ['plugins', pluginName]
const capitalized_name = name.charAt(0).toUpperCase() + name.slice(1) const capitalized_name = name.charAt(0).toUpperCase() + name.slice(1)