First commir!!!
25
.gitignore
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
.DS_Store
|
||||||
|
server/node_modules/
|
||||||
|
client/node_modules/
|
||||||
|
server/dist/
|
||||||
|
client/dist/
|
||||||
|
|
||||||
|
server/uploads/
|
||||||
|
|
||||||
|
# local env files
|
||||||
|
.env.local
|
||||||
|
.env.*.local
|
||||||
|
|
||||||
|
# Log files
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
|
# Editor directories and files
|
||||||
|
.idea
|
||||||
|
.vscode
|
||||||
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
|
*.njsproj
|
||||||
|
*.sln
|
||||||
|
*.sw*
|
4
README.md
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# Dragonroll
|
||||||
|
|
||||||
|
An open-source virtual table top for role-playing games
|
||||||
|
|
8
client/build-local.sh
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
script_full_path=$(dirname "$0")
|
||||||
|
cd $script_full_path
|
||||||
|
|
||||||
|
npm install
|
||||||
|
|
||||||
|
npm run build
|
||||||
|
serve -s dist
|
7
client/build.sh
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
script_full_path=$(dirname "$0")
|
||||||
|
cd $script_full_path
|
||||||
|
|
||||||
|
yarn vue-cli-service build --target lib src/widgets/TestWindow.vue --name TestWindow --dest dist/Widgets/
|
||||||
|
|
||||||
|
npm run build
|
19
client/index.html
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link rel="icon" href="/favicon.ico">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.css" />
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.js"></script>
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/katex.min.css" integrity="sha384-GvrOXuhMATgEsSwCs4smul74iXGOixntILdUW9XmUC6+HX0sLNAK3q71HotJqlAn" crossorigin="anonymous">
|
||||||
|
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.js" integrity="sha384-XjKyOOlGwcjNTAIQHIpgOno0Hl1YQqzUOEleOLALmuqehneUG+vnGctmUb0ZY0l8" crossorigin="anonymous"></script>
|
||||||
|
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/contrib/auto-render.min.js" integrity="sha384-+VBxd3r6XgURycqtZ117nYw44OOcIax56Z4dCRWbxyPt0Koah1uHoK0o4+/RRE05" crossorigin="anonymous"></script>
|
||||||
|
<title>Aran blog</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="app"></div>
|
||||||
|
<script type="module" src="/src/main.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
12795
client/package-lock.json
generated
Normal file
37
client/package.json
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{
|
||||||
|
"name": "aran-weblog",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"dev": "vite --port 3000 --host",
|
||||||
|
"build": "vite build",
|
||||||
|
"preview": "vite preview",
|
||||||
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@kangc/v-md-editor": "^2.3.17",
|
||||||
|
"axios": "^1.5.1",
|
||||||
|
"babel-plugin-prismjs": "^2.1.0",
|
||||||
|
"form-data": "^4.0.0",
|
||||||
|
"jquery": "^3.7.1",
|
||||||
|
"jquery-ui": "^1.13.3",
|
||||||
|
"jquery-ui-dist": "^1.13.3",
|
||||||
|
"marked": "^9.1.0",
|
||||||
|
"marked-katex-extension": "^4.0.1",
|
||||||
|
"mitt": "^3.0.1",
|
||||||
|
"prismjs": "^1.29.0",
|
||||||
|
"three": "^0.164.1",
|
||||||
|
"vue": "^3.3.4",
|
||||||
|
"vue-draggable": "^2.0.6",
|
||||||
|
"vue-router": "^4.2.4",
|
||||||
|
"vue-simplemde": "^2.1.1"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@vitejs/plugin-vue": "^4.3.4",
|
||||||
|
"@vue/cli-service": "^5.0.8",
|
||||||
|
"eslint": "^8.49.0",
|
||||||
|
"eslint-plugin-vue": "^9.17.0",
|
||||||
|
"sass": "^1.69.5",
|
||||||
|
"vite": "^4.4.9"
|
||||||
|
}
|
||||||
|
}
|
BIN
client/public/favicon.ico
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
client/public/fonts/5e/Bookinsanity Bold Italic.woff2
Normal file
BIN
client/public/fonts/5e/Bookinsanity Bold.woff2
Normal file
BIN
client/public/fonts/5e/Bookinsanity Italic.woff2
Normal file
BIN
client/public/fonts/5e/Bookinsanity Semibold Italic.woff2
Normal file
BIN
client/public/fonts/5e/Bookinsanity.woff2
Normal file
BIN
client/public/fonts/5e/Davek.woff2
Normal file
BIN
client/public/fonts/5e/Iokharic.woff2
Normal file
BIN
client/public/fonts/5e/Martel Sans Black.woff2
Normal file
BIN
client/public/fonts/5e/Mr Eaves Small Caps.woff2
Normal file
BIN
client/public/fonts/5e/Nodesto Caps Condensed Bold Italic.woff2
Normal file
BIN
client/public/fonts/5e/Nodesto Caps Condensed Bold.woff2
Normal file
BIN
client/public/fonts/5e/Nodesto Caps Condensed Italic.woff2
Normal file
BIN
client/public/fonts/5e/Nodesto Caps Condensed.woff2
Normal file
BIN
client/public/fonts/5e/Nodesto Caps Wide.woff2
Normal file
BIN
client/public/fonts/5e/Overpass Medium.woff2
Normal file
BIN
client/public/fonts/5e/Rellanic.woff2
Normal file
BIN
client/public/fonts/5e/Scaly Sans Bold Italic.woff2
Normal file
BIN
client/public/fonts/5e/Scaly Sans Bold.woff2
Normal file
BIN
client/public/fonts/5e/Scaly Sans Caps.woff2
Normal file
BIN
client/public/fonts/5e/Scaly Sans Italic.woff2
Normal file
BIN
client/public/fonts/5e/Scaly Sans.woff2
Normal file
BIN
client/public/fonts/5e/Solbera Imitation Tweak.woff2
Normal file
BIN
client/public/fonts/5e/WalterTurncoat-Regular.woff2
Normal file
143
client/public/fonts/5e/fonts.less
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
/* Main Font, serif */
|
||||||
|
@font-face {
|
||||||
|
font-family: BookInsanityRemake;
|
||||||
|
src: url('../../../fonts/5e/Bookinsanity.woff2');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: BookInsanityRemake;
|
||||||
|
src: url('../../../fonts/5e/Bookinsanity Bold.woff2');
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: BookInsanityRemake;
|
||||||
|
src: url('../../../fonts/5e/Bookinsanity Italic.woff2');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: BookInsanityRemake;
|
||||||
|
src: url('../../../fonts/5e/Bookinsanity Bold Italic.woff2');
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Notes and Tables, sans-serif */
|
||||||
|
@font-face {
|
||||||
|
font-family: ScalySansRemake;
|
||||||
|
src: url('../../../fonts/5e/Scaly Sans.woff2');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: ScalySansRemake;
|
||||||
|
src: url('../../../fonts/5e/Scaly Sans Bold.woff2');
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: ScalySansRemake;
|
||||||
|
src: url('../../../fonts/5e/Scaly Sans Italic.woff2');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: ScalySansRemake;
|
||||||
|
src: url('../../../fonts/5e/Scaly Sans Bold Italic.woff2');
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: ScalySansSmallCapsRemake;
|
||||||
|
src: url('../../../fonts/5e/Scaly Sans Caps.woff2');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: WalterTurncoat;
|
||||||
|
src: url('../../../fonts/5e/WalterTurncoat-Regular.woff2');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Headers */
|
||||||
|
@font-face {
|
||||||
|
font-family: MrEavesRemake;
|
||||||
|
src: url('../../../fonts/5e/Mr Eaves Small Caps.woff2');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Fancy Drop Cap */
|
||||||
|
@font-face {
|
||||||
|
font-family: SolberaImitationRemake; //Tweaked 5e version
|
||||||
|
src: url('../../../fonts/5e/Solbera Imitation Tweak.woff2');
|
||||||
|
font-weight: 100 1000;
|
||||||
|
font-style: normal;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Cover Page */
|
||||||
|
@font-face {
|
||||||
|
font-family: NodestoCapsCondensed;
|
||||||
|
src: url('../../../fonts/5e/Nodesto Caps Condensed.woff2');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: NodestoCapsCondensed;
|
||||||
|
src: url('../../../fonts/5e/Nodesto Caps Condensed Bold.woff2');
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: NodestoCapsCondensed;
|
||||||
|
src: url('../../../fonts/5e/Nodesto Caps Condensed Italic.woff2');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: NodestoCapsCondensed;
|
||||||
|
src: url('../../../fonts/5e/Nodesto Caps Condensed Bold Italic.woff2');
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: NodestoCapsWide;
|
||||||
|
src: url('../../../fonts/5e/Nodesto Caps Wide.woff2');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Overpass;
|
||||||
|
src: url('../../../fonts/5e/Overpass Medium.woff2');
|
||||||
|
font-weight: 500;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Davek;
|
||||||
|
src: url('../../../fonts/5e/Davek.woff2');
|
||||||
|
font-weight: 500;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Iokharic;
|
||||||
|
src: url('../../../fonts/5e/Iokharic.woff2');
|
||||||
|
font-weight: 500;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: Rellanic;
|
||||||
|
src: url('../../../fonts/5e/Rellanic.woff2');
|
||||||
|
font-weight: 500;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
BIN
client/public/icons/dynmap/anchor.png
Normal file
After Width: | Height: | Size: 831 B |
BIN
client/public/icons/dynmap/bank.png
Normal file
After Width: | Height: | Size: 771 B |
BIN
client/public/icons/dynmap/bash-logo.png
Normal file
After Width: | Height: | Size: 116 KiB |
BIN
client/public/icons/dynmap/basket.png
Normal file
After Width: | Height: | Size: 639 B |
BIN
client/public/icons/dynmap/bed.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
client/public/icons/dynmap/beer.png
Normal file
After Width: | Height: | Size: 609 B |
BIN
client/public/icons/dynmap/bighouse.png
Normal file
After Width: | Height: | Size: 756 B |
BIN
client/public/icons/dynmap/blueflag.png
Normal file
After Width: | Height: | Size: 726 B |
BIN
client/public/icons/dynmap/bomb.png
Normal file
After Width: | Height: | Size: 871 B |
BIN
client/public/icons/dynmap/bookshelf.png
Normal file
After Width: | Height: | Size: 719 B |
BIN
client/public/icons/dynmap/bricks.png
Normal file
After Width: | Height: | Size: 959 B |
BIN
client/public/icons/dynmap/bronzemedal.png
Normal file
After Width: | Height: | Size: 657 B |
BIN
client/public/icons/dynmap/bronzestar.png
Normal file
After Width: | Height: | Size: 692 B |
BIN
client/public/icons/dynmap/building.png
Normal file
After Width: | Height: | Size: 630 B |
BIN
client/public/icons/dynmap/c-logo.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
client/public/icons/dynmap/c-sharp-logo.png
Normal file
After Width: | Height: | Size: 6.4 KiB |
BIN
client/public/icons/dynmap/cake.png
Normal file
After Width: | Height: | Size: 792 B |
BIN
client/public/icons/dynmap/camera.png
Normal file
After Width: | Height: | Size: 729 B |
BIN
client/public/icons/dynmap/cart.png
Normal file
After Width: | Height: | Size: 745 B |
BIN
client/public/icons/dynmap/caution.png
Normal file
After Width: | Height: | Size: 543 B |
BIN
client/public/icons/dynmap/chest.png
Normal file
After Width: | Height: | Size: 476 B |
BIN
client/public/icons/dynmap/church.png
Normal file
After Width: | Height: | Size: 608 B |
BIN
client/public/icons/dynmap/coins.png
Normal file
After Width: | Height: | Size: 672 B |
BIN
client/public/icons/dynmap/comment.png
Normal file
After Width: | Height: | Size: 695 B |
BIN
client/public/icons/dynmap/compass.png
Normal file
After Width: | Height: | Size: 906 B |
BIN
client/public/icons/dynmap/construction.png
Normal file
After Width: | Height: | Size: 654 B |
BIN
client/public/icons/dynmap/cpp-logo.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
client/public/icons/dynmap/cross.png
Normal file
After Width: | Height: | Size: 473 B |
BIN
client/public/icons/dynmap/cross_u.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
client/public/icons/dynmap/cup.png
Normal file
After Width: | Height: | Size: 724 B |
BIN
client/public/icons/dynmap/cutlery.png
Normal file
After Width: | Height: | Size: 584 B |
BIN
client/public/icons/dynmap/default.png
Normal file
After Width: | Height: | Size: 781 B |
BIN
client/public/icons/dynmap/diamond.png
Normal file
After Width: | Height: | Size: 555 B |
BIN
client/public/icons/dynmap/dog.png
Normal file
After Width: | Height: | Size: 879 B |
BIN
client/public/icons/dynmap/door.png
Normal file
After Width: | Height: | Size: 606 B |
BIN
client/public/icons/dynmap/down.png
Normal file
After Width: | Height: | Size: 381 B |
BIN
client/public/icons/dynmap/down_u.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
client/public/icons/dynmap/drink.png
Normal file
After Width: | Height: | Size: 773 B |
BIN
client/public/icons/dynmap/exclamation.png
Normal file
After Width: | Height: | Size: 732 B |
BIN
client/public/icons/dynmap/external-black.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
client/public/icons/dynmap/external-white.png
Normal file
After Width: | Height: | Size: 7.1 KiB |
BIN
client/public/icons/dynmap/factory.png
Normal file
After Width: | Height: | Size: 710 B |
BIN
client/public/icons/dynmap/fire.png
Normal file
After Width: | Height: | Size: 637 B |
BIN
client/public/icons/dynmap/flower.png
Normal file
After Width: | Height: | Size: 920 B |
BIN
client/public/icons/dynmap/gear.png
Normal file
After Width: | Height: | Size: 777 B |
BIN
client/public/icons/dynmap/gitea.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
1
client/public/icons/dynmap/github-mark-white.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg width="98" height="96" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z" fill="#fff"/></svg>
|
After Width: | Height: | Size: 960 B |
1
client/public/icons/dynmap/github-mark.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg width="98" height="96" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z" fill="#24292f"/></svg>
|
After Width: | Height: | Size: 963 B |
BIN
client/public/icons/dynmap/gmail.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
client/public/icons/dynmap/goldmedal.png
Normal file
After Width: | Height: | Size: 664 B |
BIN
client/public/icons/dynmap/goldstar.png
Normal file
After Width: | Height: | Size: 699 B |
BIN
client/public/icons/dynmap/greenflag.png
Normal file
After Width: | Height: | Size: 722 B |
BIN
client/public/icons/dynmap/hammer.png
Normal file
After Width: | Height: | Size: 814 B |
BIN
client/public/icons/dynmap/heart.png
Normal file
After Width: | Height: | Size: 742 B |
BIN
client/public/icons/dynmap/house.png
Normal file
After Width: | Height: | Size: 727 B |
21
client/public/icons/dynmap/instagram.svg
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="132.004" height="132" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="b">
|
||||||
|
<stop offset="0" stop-color="#3771c8"/>
|
||||||
|
<stop stop-color="#3771c8" offset=".128"/>
|
||||||
|
<stop offset="1" stop-color="#60f" stop-opacity="0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="a">
|
||||||
|
<stop offset="0" stop-color="#fd5"/>
|
||||||
|
<stop offset=".1" stop-color="#fd5"/>
|
||||||
|
<stop offset=".5" stop-color="#ff543e"/>
|
||||||
|
<stop offset="1" stop-color="#c837ab"/>
|
||||||
|
</linearGradient>
|
||||||
|
<radialGradient id="c" cx="158.429" cy="578.088" r="65" xlink:href="#a" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0 -1.98198 1.8439 0 -1031.402 454.004)" fx="158.429" fy="578.088"/>
|
||||||
|
<radialGradient id="d" cx="147.694" cy="473.455" r="65" xlink:href="#b" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.17394 .86872 -3.5818 .71718 1648.348 -458.493)" fx="147.694" fy="473.455"/>
|
||||||
|
</defs>
|
||||||
|
<path fill="url(#c)" d="M65.03 0C37.888 0 29.95.028 28.407.156c-5.57.463-9.036 1.34-12.812 3.22-2.91 1.445-5.205 3.12-7.47 5.468C4 13.126 1.5 18.394.595 24.656c-.44 3.04-.568 3.66-.594 19.188-.01 5.176 0 11.988 0 21.125 0 27.12.03 35.05.16 36.59.45 5.42 1.3 8.83 3.1 12.56 3.44 7.14 10.01 12.5 17.75 14.5 2.68.69 5.64 1.07 9.44 1.25 1.61.07 18.02.12 34.44.12 16.42 0 32.84-.02 34.41-.1 4.4-.207 6.955-.55 9.78-1.28 7.79-2.01 14.24-7.29 17.75-14.53 1.765-3.64 2.66-7.18 3.065-12.317.088-1.12.125-18.977.125-36.81 0-17.836-.04-35.66-.128-36.78-.41-5.22-1.305-8.73-3.127-12.44-1.495-3.037-3.155-5.305-5.565-7.624C116.9 4 111.64 1.5 105.372.596 102.335.157 101.73.027 86.19 0H65.03z" transform="translate(1.004 1)"/>
|
||||||
|
<path fill="url(#d)" d="M65.03 0C37.888 0 29.95.028 28.407.156c-5.57.463-9.036 1.34-12.812 3.22-2.91 1.445-5.205 3.12-7.47 5.468C4 13.126 1.5 18.394.595 24.656c-.44 3.04-.568 3.66-.594 19.188-.01 5.176 0 11.988 0 21.125 0 27.12.03 35.05.16 36.59.45 5.42 1.3 8.83 3.1 12.56 3.44 7.14 10.01 12.5 17.75 14.5 2.68.69 5.64 1.07 9.44 1.25 1.61.07 18.02.12 34.44.12 16.42 0 32.84-.02 34.41-.1 4.4-.207 6.955-.55 9.78-1.28 7.79-2.01 14.24-7.29 17.75-14.53 1.765-3.64 2.66-7.18 3.065-12.317.088-1.12.125-18.977.125-36.81 0-17.836-.04-35.66-.128-36.78-.41-5.22-1.305-8.73-3.127-12.44-1.495-3.037-3.155-5.305-5.565-7.624C116.9 4 111.64 1.5 105.372.596 102.335.157 101.73.027 86.19 0H65.03z" transform="translate(1.004 1)"/>
|
||||||
|
<path fill="#fff" d="M66.004 18c-13.036 0-14.672.057-19.792.29-5.11.234-8.598 1.043-11.65 2.23-3.157 1.226-5.835 2.866-8.503 5.535-2.67 2.668-4.31 5.346-5.54 8.502-1.19 3.053-2 6.542-2.23 11.65C18.06 51.327 18 52.964 18 66s.058 14.667.29 19.787c.235 5.11 1.044 8.598 2.23 11.65 1.227 3.157 2.867 5.835 5.536 8.503 2.667 2.67 5.345 4.314 8.5 5.54 3.054 1.187 6.543 1.996 11.652 2.23 5.12.233 6.755.29 19.79.29 13.037 0 14.668-.057 19.788-.29 5.11-.234 8.602-1.043 11.656-2.23 3.156-1.226 5.83-2.87 8.497-5.54 2.67-2.668 4.31-5.346 5.54-8.502 1.18-3.053 1.99-6.542 2.23-11.65.23-5.12.29-6.752.29-19.788 0-13.036-.06-14.672-.29-19.792-.24-5.11-1.05-8.598-2.23-11.65-1.23-3.157-2.87-5.835-5.54-8.503-2.67-2.67-5.34-4.31-8.5-5.535-3.06-1.187-6.55-1.996-11.66-2.23-5.12-.233-6.75-.29-19.79-.29zm-4.306 8.65c1.278-.002 2.704 0 4.306 0 12.816 0 14.335.046 19.396.276 4.68.214 7.22.996 8.912 1.653 2.24.87 3.837 1.91 5.516 3.59 1.68 1.68 2.72 3.28 3.592 5.52.657 1.69 1.44 4.23 1.653 8.91.23 5.06.28 6.58.28 19.39s-.05 14.33-.28 19.39c-.214 4.68-.996 7.22-1.653 8.91-.87 2.24-1.912 3.835-3.592 5.514-1.68 1.68-3.275 2.72-5.516 3.59-1.69.66-4.232 1.44-8.912 1.654-5.06.23-6.58.28-19.396.28-12.817 0-14.336-.05-19.396-.28-4.68-.216-7.22-.998-8.913-1.655-2.24-.87-3.84-1.91-5.52-3.59-1.68-1.68-2.72-3.276-3.592-5.517-.657-1.69-1.44-4.23-1.653-8.91-.23-5.06-.276-6.58-.276-19.398s.046-14.33.276-19.39c.214-4.68.996-7.22 1.653-8.912.87-2.24 1.912-3.84 3.592-5.52 1.68-1.68 3.28-2.72 5.52-3.592 1.692-.66 4.233-1.44 8.913-1.655 4.428-.2 6.144-.26 15.09-.27zm29.928 7.97c-3.18 0-5.76 2.577-5.76 5.758 0 3.18 2.58 5.76 5.76 5.76 3.18 0 5.76-2.58 5.76-5.76 0-3.18-2.58-5.76-5.76-5.76zm-25.622 6.73c-13.613 0-24.65 11.037-24.65 24.65 0 13.613 11.037 24.645 24.65 24.645C79.617 90.645 90.65 79.613 90.65 66S79.616 41.35 66.003 41.35zm0 8.65c8.836 0 16 7.163 16 16 0 8.836-7.164 16-16 16-8.837 0-16-7.164-16-16 0-8.837 7.163-16 16-16z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 4.2 KiB |
BIN
client/public/icons/dynmap/java-logo.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
client/public/icons/dynmap/js-logo.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
client/public/icons/dynmap/key.png
Normal file
After Width: | Height: | Size: 664 B |
BIN
client/public/icons/dynmap/king.png
Normal file
After Width: | Height: | Size: 691 B |
BIN
client/public/icons/dynmap/left.png
Normal file
After Width: | Height: | Size: 371 B |
BIN
client/public/icons/dynmap/lightbulb.png
Normal file
After Width: | Height: | Size: 685 B |
BIN
client/public/icons/dynmap/lighthouse.png
Normal file
After Width: | Height: | Size: 781 B |
BIN
client/public/icons/dynmap/linkedin-white.png
Executable file
After Width: | Height: | Size: 835 B |
BIN
client/public/icons/dynmap/linkedin.png
Executable file
After Width: | Height: | Size: 1.1 KiB |
BIN
client/public/icons/dynmap/lock.png
Normal file
After Width: | Height: | Size: 689 B |
BIN
client/public/icons/dynmap/lua-logo.png
Normal file
After Width: | Height: | Size: 128 KiB |
BIN
client/public/icons/dynmap/minecart.png
Normal file
After Width: | Height: | Size: 2.9 KiB |