diff --git a/.gitignore b/.gitignore index a0031ec..6d9ffdc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ node_modules/ package-lock.json .vscode -public \ No newline at end of file +public +.DS_Store diff --git a/assets/Mojangles.ttf b/assets/Mojangles.ttf new file mode 100644 index 0000000..e7b87e9 Binary files /dev/null and b/assets/Mojangles.ttf differ diff --git a/assets/mojangles.ttf b/assets/mojangles.ttf new file mode 100644 index 0000000..e7b87e9 Binary files /dev/null and b/assets/mojangles.ttf differ diff --git a/index.html b/index.html index d0b1f10..1ade374 100644 --- a/index.html +++ b/index.html @@ -7,6 +7,10 @@ font-family: minecraft; src: url(minecraftia.woff); } + @font-face { + font-family: mojangles; + src: url(mojangles.ttf); + } html { overflow: hidden; } @@ -52,7 +56,7 @@ margin: 0px; line-height: 100%; text-shadow: 4px 4px 0px #3f3f3f; - font-family: minecraft, monospace; + font-family: mojangles, minecraft, monospace; width: 100%; max-height: calc(90px * 8) } diff --git a/package.json b/package.json index 3068e9b..4d3c05d 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,10 @@ "client" ], "author": "Romain Beaumont", + "contributors" : [ + {"name":"AwesomestCode"}, + {"name":"circuit10"} + ], "license": "MIT", "bin": { "prismarine-web-client": "./server.js" diff --git a/webpack.config.js b/webpack.config.js index 9cfa762..0e4a159 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -62,7 +62,8 @@ const config = { { from: path.join(__dirname, '/node_modules/prismarine-viewer/public/textures/'), to: './textures/' }, { from: path.join(__dirname, '/node_modules/prismarine-viewer/public/worker.js'), to: './' }, { from: path.join(__dirname, '/node_modules/prismarine-viewer/public/supportedVersions.json'), to: './' }, - { from: path.join(__dirname, 'assets/minecraftia.woff'), to: './' } + { from: path.join(__dirname, 'assets/minecraftia.woff'), to: './' }, + { from: path.join(__dirname, 'assets/mojangles.ttf'), to: './' } ] }), new webpack.optimize.ModuleConcatenationPlugin(),