diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d1dfc6..cfa4ef9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Recipe Changelog +## 1.0.6 - 2018.02.01 +### Added +* Renamed the composer package name to `craft-recipe` + ## 1.0.5 - 2017.12.06 ### Changed * Updated to require craftcms/cms `^3.0.0-RC1` diff --git a/README.md b/README.md index f457a75..fe93af6 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This plugin requires Craft CMS 3.0.0-RC1 or later. To install Recipe, follow these steps: -1. Install with Composer via `composer require nystudio107/craft3-recipe` +1. Install with Composer via `composer require nystudio107/craft-recipe` 2. Install plugin in the Craft Control Panel under Settings > Plugins Recipe works on Craft 3.x. diff --git a/composer.json b/composer.json index ab509be..b9dda34 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,8 @@ { - "name": "nystudio107/craft3-recipe", + "name": "nystudio107/craft-recipe", "description": "A comprehensive recipe FieldType for Craft CMS that includes metric/imperial conversion, portion calculation, and JSON-LD microdata support", "type": "craft-plugin", - "version": "1.0.5", + "version": "1.0.6", "keywords": [ "craft", "cms", @@ -11,10 +11,10 @@ "recipe" ], "support": { - "docs": "https://github.com/nystudio107/craft3-recipe/blob/master/README.md", - "issues": "https://github.com/nystudio107/craft3-recipe/issues" + "docs": "https://github.com/nystudio107/craft-recipe/blob/master/README.md", + "issues": "https://github.com/nystudio107/craft-recipe/issues" }, - "license": "proprietary", + "license": "MIT", "authors": [ { "name": "nystudio107", @@ -35,7 +35,7 @@ "schemaVersion": "1.0.0", "hasCpSettings": false, "hasCpSection": false, - "changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft3-recipe/master/CHANGELOG.md", + "changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft-recipe/master/CHANGELOG.md", "class": "nystudio107\\recipe\\Recipe" } } diff --git a/src/templates/welcome.twig b/src/templates/welcome.twig index e8088a1..c8133e2 100644 --- a/src/templates/welcome.twig +++ b/src/templates/welcome.twig @@ -2,7 +2,7 @@ {% set title = 'Welcome to Recipe!' %} {% set linkGetStarted = url('settings/fields') %} -{% set docsUrl = "https://github.com/nystudio107/craft3-recipe/blob/master/README.md" %} +{% set docsUrl = "https://github.com/nystudio107/craft-recipe/blob/master/README.md" %} {% do view.registerAssetBundle("nystudio107\\recipe\\assetbundles\\recipe\\RecipeAsset") %} {% set baseAssetsUrl = view.getAssetManager().getPublishedUrl('@nystudio107/recipe/assetbundles/recipe/dist', true) %}