Skip to content

Commit

Permalink
2.0.0 update
Browse files Browse the repository at this point in the history
  • Loading branch information
jomarcenter-mjm committed Aug 21, 2020
1 parent 4d3689b commit cc79a17
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log

All notable changes to the "rmmvpluginsnippet" extension will be documented in this file.
All notable changes to the "rmjspluginsnippet" extension will be documented in this file.
## [2.0.0]
- upgrade to 2.0.0 version in line with the RPG maker MZ release
- now renamed to RPGMaker Javascript plugin snippet
- added @target for MZ plugin Developement

## [1.4.4]
- Temporary removing broken snippets
Expand Down
5 changes: 5 additions & 0 deletions Prefix.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All snippet always start with "!rmmv" and @type
## Content

This list all the content so you can easily start making the plugin

### Initial set
!rmmvStart - This create the body of the plugin
!rmmvStructContent - This create the initial Struct (please put this at the bottom)
Expand Down Expand Up @@ -55,3 +56,7 @@ this is the list of parameters you can use in MV Plugin
### Misc
@parent - This create "@parent" parameters, why it is separate, well you tell me
@text - creates a "@text" parameter, why it is separate, well you tell me

### MZ Only
List of snippets code that can only run on MZ
@target - added @target only works on MZ
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# rmmvpluginsnippet README
# RPG Maker Javascript pluginsnippet README

This is a code Snippet for RPG Maker MV Plugin.
a code Snippet for RPG Maker MV and MZ Plugin developement.

Official Website: https://mjmcreativeworks.wordpress.com/
Contacts:
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "rmmvpluginsnippet",
"displayName": "RPGMaker MV Plugin Snippet",
"description": "Make Coding RPG Maker MV Plugin simplier",
"version": "1.4.4",
"displayName": "RPGMaker Javascript Plugin Snippet",
"description": "Make Coding RPG Maker MV and MZ Plugin simplier",
"version": "2.0.0",
"publisher": "MJMCreativeWorksAndIdea",
"repository": {
"type": "git",
Expand Down
Binary file added rmjspluginsnippet-2.0.0.vsix
Binary file not shown.
Binary file added rmmvpluginsnippet-2.0.0.vsix
Binary file not shown.
7 changes: 7 additions & 0 deletions snippets/snippets.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@
],
"description": "creates the initial set of information and functions"
},
"Include MZ": {
"prefix" : "@target",
"body" : [
"* @target"
],
"description": "[MZ ONLY]creates target for pointing out MV or MZ "
},
"Code Block Comment": {
"prefix": "!rmmvComment",
"body": [
Expand Down

0 comments on commit cc79a17

Please sign in to comment.