From 711ed275184661cdf2eb8dac73866276af141929 Mon Sep 17 00:00:00 2001 From: "armando.alonso" Date: Sat, 19 Aug 2023 07:52:41 -0400 Subject: [PATCH] Update placeholder properties used for the cli to fill out --- behaviors/src/behaviorConfig.js | 6 +++--- effects/src/effectConfig.js | 6 +++--- plugins/src/pluginConfig.js | 6 +++--- themes/src/themeConfig.js | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/behaviors/src/behaviorConfig.js b/behaviors/src/behaviorConfig.js index 57ff1e2..59120b9 100644 --- a/behaviors/src/behaviorConfig.js +++ b/behaviors/src/behaviorConfig.js @@ -1,15 +1,15 @@ // WARNING: DO NOT EDIT THIS FILE, IT IS AUTOGENERATED module.exports = { addonType: "behavior", - id: "behavior_id", - name: "My Behavior", + id: "<@ADDON_ID>", + name: "<@ADDON_NAME>", version: "1.0.0.0", category: // "attributes", // "movements", // "other", "general", - author: "skymen", + author: "<@ADDON_AUTHOR>", website: "https://www.construct.net", documentation: "https://www.construct.net", description: "Description", diff --git a/effects/src/effectConfig.js b/effects/src/effectConfig.js index 52b2120..b6b1498 100644 --- a/effects/src/effectConfig.js +++ b/effects/src/effectConfig.js @@ -1,8 +1,8 @@ // WARNING: DO NOT EDIT THIS FILE, IT IS AUTOGENERATED module.exports = { addonType: "effect", - id: "effect_id", - name: "My Effect", + id: "<@ADDON_ID>", + name: "<@ADDON_NAME>", version: "1.0.0.0", category: // "blend", @@ -11,7 +11,7 @@ module.exports = { // "tiling", // "other", "color", - author: "skymen", + author: "<@ADDON_AUTHOR>", website: "https://www.construct.net", documentation: "https://www.construct.net", description: "Description", diff --git a/plugins/src/pluginConfig.js b/plugins/src/pluginConfig.js index da2a255..29e4cb9 100644 --- a/plugins/src/pluginConfig.js +++ b/plugins/src/pluginConfig.js @@ -1,8 +1,8 @@ // WARNING: DO NOT EDIT THIS FILE, IT IS AUTOGENERATED module.exports = { addonType: "plugin", - id: "plugin_id", - name: "My Plugin", + id: "<@ADDON_ID>", + name: "<@ADDON_NAME>", version: "1.0.0.0", category: // "3d", @@ -15,7 +15,7 @@ module.exports = { // "web", // "other" "general", - author: "skymen", + author: "<@ADDON_AUTHOR>", website: "https://www.construct.net", documentation: "https://www.construct.net", description: "Description", diff --git a/themes/src/themeConfig.js b/themes/src/themeConfig.js index a2d230d..5812baf 100644 --- a/themes/src/themeConfig.js +++ b/themes/src/themeConfig.js @@ -1,10 +1,10 @@ // WARNING: DO NOT EDIT THIS FILE, IT IS AUTOGENERATED module.exports = { addonType: "theme", - id: "theme_id", - name: "My Theme", + id: "<@ADDON_ID>", + name: "<@ADDON_NAME>", version: "1.0.0.0", - author: "skymen", + author: "<@ADDON_AUTHOR>", website: "https://www.construct.net", documentation: "https://www.construct.net", description: "Description",