Skip to content

Commit

Permalink
v0.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
solvedDev committed Apr 17, 2019
1 parent cd50bb9 commit 39430d1
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 72 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bridge",
"productName": "bridge.",
"version": "0.12.1",
"version": "0.12.2",
"author": "solvedDev <[email protected]>",
"description": "A powerful add-on editor",
"license": null,
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/scripts/constants/app_version.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
* Version number is in a dedicated file because it's also used by the main thread.
* Otherwise, any changes to the main constant file would completely restart "bridge." (in development mode).
*/
export default "v0.12.1";
export default "v0.12.2";
140 changes: 70 additions & 70 deletions static/data/file_definitions.json
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,20 @@
}
}
},
{
"includes": "functions",
"id": "function",

"file_creator": {
"icon": "mdi-function",
"title": "Function",
"extension": "mcfunction",
"path": "functions/",
"templates": {
"Example Function": "# My Comment\nsay Hello World!"
}
}
},
{
"includes": "items",
"id": "item",
Expand Down Expand Up @@ -184,6 +198,40 @@
}
}
},
{
"includes": "loot_tables",
"id": "loot_table",
"start_state": "loot_table/main",
"highlighter": {
"set": {},
"define": {
"keywords": [ "minecraft", "pools", "entries" ],
"titles": [ "type" ],
"symbols": [ "functions", "conditions", "tiers", "rolls" ]
}
},
"file_creator": {
"icon": "mdi-skull",
"title": "Loot Table",
"extension": "json",
"path": "loot_tables/",
"templates": {
"Blank Loot Table": {
"pools": [
{
"rolls": {},
"entries": [
{
"type": "item",
"name": ""
}
]
}
]
}
}
}
},
{
"includes": "recipes",
"id": "recipe",
Expand Down Expand Up @@ -215,35 +263,36 @@
}
},
{
"includes": "loot_tables",
"id": "loot_table",
"start_state": "loot_table/main",
"includes": "spawn_rules",
"id": "spawn_rule",
"start_state": "spawn_rule/main",
"highlighter": {
"set": {},
"define": {
"keywords": [ "minecraft", "pools", "entries" ],
"titles": [ "type" ],
"symbols": [ "functions", "conditions", "tiers", "rolls" ]
"keywords": [ "minecraft", "conditions", "description" ],
"titles": [ "format_version" ],
"symbols": [ "identifier", "population_control" ]
}
},
"file_creator": {
"icon": "mdi-skull",
"title": "Loot Table",
"icon": "mdi-format-list-checks",
"title": "Spawn Rule",
"extension": "json",
"path": "loot_tables/",
"path": "spawn_rules/",
"templates": {
"Blank Loot Table": {
"pools": [
{
"rolls": {},
"entries": [
{
"type": "item",
"name": ""
}
]
}
]
"Blank Spawn Rule": {
"format_version": {},
"minecraft:spawn_rules": {
"description": {
"identifier": "",
"population_control": ""
},
"conditions": [
{

}
]
}
}
}
}
Expand Down Expand Up @@ -294,54 +343,5 @@
}
}
}
},
{
"includes": "spawn_rules",
"id": "spawn_rule",
"start_state": "spawn_rule/main",
"highlighter": {
"set": {},
"define": {
"keywords": [ "minecraft", "conditions", "description" ],
"titles": [ "format_version" ],
"symbols": [ "identifier", "population_control" ]
}
},
"file_creator": {
"icon": "mdi-format-list-checks",
"title": "Spawn Rule",
"extension": "json",
"path": "spawn_rules/",
"templates": {
"Blank Spawn Rule": {
"format_version": {},
"minecraft:spawn_rules": {
"description": {
"identifier": "",
"population_control": ""
},
"conditions": [
{

}
]
}
}
}
}
},
{
"includes": "functions",
"id": "function",

"file_creator": {
"icon": "mdi-function",
"title": "Function",
"extension": "mcfunction",
"path": "functions/",
"templates": {
"Example Function": "# My Comment\nsay Hello World!"
}
}
}
]

0 comments on commit 39430d1

Please sign in to comment.