Skip to content

Commit

Permalink
feat(ux): Improve bb import/export, add audio handling. add validation (
Browse files Browse the repository at this point in the history
#46)

* fix(dependencies): Remove unused dependencies

* feat(ux): Improve bb import/export, add audio handling. add validation

* feat(valservice): Add validation over HTTP

- Add basic validation-over-http mode
- Add and fix tests

* feat(editor): Entity visual/audio controller editing

* feat(editors): Modify render controller editor

- Start support to separate out education edition targeting
- Blockbench export

* fix(ci): Update build script

* fix(links): Canonicalize texture path

* fix(val): Temporarily disable unlinked info generator as it is not comprehensive enough

* fix(ux): Fix issue with new project creation

* fix(actions): Fix image links

* fix(docs): Update contributing
  • Loading branch information
mammerla authored Nov 20, 2024
1 parent d62fc60 commit 43e3af8
Show file tree
Hide file tree
Showing 174 changed files with 24,476 additions and 2,155 deletions.
3 changes: 3 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Contributing

Unfortunately, we are not able to accept pull request contributions from the broader community at this time.
24 changes: 24 additions & 0 deletions NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,30 @@ Copyright 2024 Mojang AB

This repository incorporates material as listed below or described in the code.

### waveform-playlist

#### MIT License

Copyright (c) 2015 Naomi

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

### Noto Sans Font

#### SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# Minecraft Creator Tools

This is project is a work in progress for a set of web-based tools for Minecraft Creators.
This project is a work in progress for a set of web-based and command line tools for Minecraft creators.

Visit the [documentation](https://mctools.dev/docs/) for more information on Minecraft Creator Tools and the current set of capabilities.

See the [changelog](CHANGELOG.md) for detailed updates and notes. If you have issues, please create a [GitHub issue](https://github.com/Mojang/minecraft-creator-tools/issues).

See the [Project Structure](ProjectStructure.md) file for a look at the structure of the codebase including a tour of major types.

Please note that, at this time, we are not able to accept pull request contributions from the broader community.

## Using Creator Tools

Visit this web app via <https://mctools.dev>.
Expand Down
14 changes: 14 additions & 0 deletions app/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,20 @@
"runtimeArgs": ["--nolazy", "--max-old-space-size=32768"],
"outFiles": ["${workspaceFolder}/toolbuild/jsn/**/*.js"]
},
{
"name": "cli (serve)",
"cwd": "${workspaceRoot}/",
"args": ["serve", "basicwebservices", "-once", "-adminpc", "admn-psco"],
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/src/cli/index.ts",
"preLaunchTask": "gulp: jsncorebuild",
"sourceMaps":true,
"runtimeExecutable": null,
"localRoot": "${workspaceRoot}/src",
"runtimeArgs": ["--nolazy"],
"outFiles": ["${workspaceFolder}/toolbuild/jsn/**/*.js"]
},
{
"name": "cli (create)",
"cwd": "${workspaceRoot}/",
Expand Down
8 changes: 7 additions & 1 deletion app/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ const versionSource = ["toolbuild/jsn/package.json"];

const mcreslistsigs = ["reslist/schemas.resources.json"];
const mcreslistvanillasigs = ["reslist/packs.resources.json"];
const mcreslistpreviewvanillasigs = ["reslist/packs-preview.resources.json"];
const mcreslistsamplesigs = ["reslist/samples.resources.json"];
const mcreslistscriptsamplesigs = ["reslist/scriptsamples.resources.json"];
const mcreslistgametestsigs = ["reslist/gametestsamples.resources.json"];
Expand Down Expand Up @@ -265,7 +266,11 @@ function runDownloadGameTests() {
}

function runDownloadVanillaResources() {
return gulp.src(mcreslistvanillasigs, { base: "" }).pipe(downloadResources("public/res/latest/van/"));
return gulp.src(mcreslistvanillasigs, { base: "" }).pipe(downloadResources("public/res/latest/van/release/"));
}

function runDownloadVanillaPreviewResources() {
return gulp.src(mcreslistpreviewvanillasigs, { base: "" }).pipe(downloadResources("public/res/latest/van/preview/"));
}

gulp.task("jsnwebbuild", gulp.series("clean-jsnwebbuild", compileJsnWebBuild, "postclean-jsnwebbuild"));
Expand Down Expand Up @@ -298,6 +303,7 @@ gulp.task(
runDownloadScriptSamples,
runDownloadGameTests,
runDownloadVanillaResources,
runDownloadVanillaPreviewResources,
copyCheckedInRes
)
)
Expand Down
Loading

0 comments on commit 43e3af8

Please sign in to comment.