Compare commits
87 Commits
1.0
...
afed42de49
Author | SHA1 | Date | |
---|---|---|---|
afed42de49 | |||
9ac3228f5d | |||
106ef97ede | |||
552188c8a9 | |||
ce70fa2e6f | |||
5591e75c86 | |||
1236c2ca2d | |||
9cbbfe9393 | |||
f6dd2ea1c4 | |||
70fb352d7f | |||
67cc06abdf | |||
3ad55c7fc4 | |||
0a355ff2bd | |||
16addf0bca | |||
5cb339483a | |||
7daa47bb64 | |||
8ed371d5fb | |||
a45215dce1 | |||
a03dad2a0e | |||
18cd1ecdc9 | |||
7a866c9d50 | |||
fe7b851157 | |||
53225dffd4 | |||
0c9d6e7975 | |||
640eddc365 | |||
190064497e | |||
d0d17ccd3d | |||
d479573f41 | |||
012b56f184 | |||
0e727716a3 | |||
7523286236 | |||
2c3685f594 | |||
cbe770ecd7 | |||
328f463cdb | |||
9a6d24193d | |||
0ccb76345e | |||
33c11dd391 | |||
420f4b141e | |||
9c7834f443 | |||
800e45fe96 | |||
3963f6decf | |||
9ff510a9f6 | |||
3c43788494 | |||
8d07256c57 | |||
fb0cdf5d8e | |||
11a30e2dba | |||
1369660e64 | |||
d9e4891510 | |||
e2cb8e20fa | |||
f64844c132 | |||
79b3c9a2f7 | |||
ceaad77b35 | |||
979edda905 | |||
18f9796365 | |||
ededd0b292 | |||
100b447633 | |||
45ab9887cf | |||
4f27e8dd16 | |||
38d4b7d961 | |||
30f394c116 | |||
f26324c866 | |||
1c3ca5013a | |||
d134d03fb7 | |||
7114ca2479 | |||
2b4b0d082c | |||
378a5f807c | |||
9c2331846b | |||
92fbe53008 | |||
6c2da805f0 | |||
6b0dceeac0 | |||
3bcb2d6090 | |||
28d31a865c | |||
c5d64fd196 | |||
8a8a58fe88 | |||
23bc01d46f | |||
b6369e56c0 | |||
12ea324367 | |||
25b05e9b31 | |||
7fc45c1bb5 | |||
1916168ba1 | |||
4b040fa87b | |||
f3ef7b65a8 | |||
85828dd983 | |||
![]() |
0e29652651 | ||
![]() |
4464d92e81 | ||
![]() |
1c178404ab | ||
f2a8e483c4 |
@@ -1,3 +0,0 @@
|
|||||||
> 1%
|
|
||||||
last 2 versions
|
|
||||||
not dead
|
|
@@ -1,10 +0,0 @@
|
|||||||
root = true
|
|
||||||
|
|
||||||
[*]
|
|
||||||
end_of_line = lf
|
|
||||||
insert_final_newline = true
|
|
||||||
|
|
||||||
[*.{js,json,yml}]
|
|
||||||
charset = utf-8
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 2
|
|
15
.eslintrc.cjs
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
/* eslint-env node */
|
||||||
|
require("@rushstack/eslint-patch/modern-module-resolution");
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
"root": true,
|
||||||
|
"extends": [
|
||||||
|
"plugin:vue/vue3-essential",
|
||||||
|
"eslint:recommended",
|
||||||
|
"@vue/eslint-config-typescript/recommended",
|
||||||
|
"@vue/eslint-config-prettier"
|
||||||
|
],
|
||||||
|
"env": {
|
||||||
|
"vue/setup-compiler-macros": true,
|
||||||
|
}
|
||||||
|
}
|
17
.eslintrc.js
@@ -1,17 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
root: true,
|
|
||||||
env: {
|
|
||||||
node: true
|
|
||||||
},
|
|
||||||
'extends': [
|
|
||||||
'plugin:vue/vue3-essential',
|
|
||||||
'eslint:recommended'
|
|
||||||
],
|
|
||||||
parserOptions: {
|
|
||||||
parser: 'babel-eslint'
|
|
||||||
},
|
|
||||||
rules: {
|
|
||||||
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
||||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
||||||
}
|
|
||||||
}
|
|
7
.gitignore
vendored
@@ -3,6 +3,7 @@
|
|||||||
|
|
||||||
### Linux ###
|
### Linux ###
|
||||||
*~
|
*~
|
||||||
|
.env
|
||||||
|
|
||||||
# temporary files which can be created if a process still has a handle open of a deleted file
|
# temporary files which can be created if a process still has a handle open of a deleted file
|
||||||
.fuse_hidden*
|
.fuse_hidden*
|
||||||
@@ -89,7 +90,7 @@ web_modules/
|
|||||||
.yarn-integrity
|
.yarn-integrity
|
||||||
|
|
||||||
# dotenv environment variables file
|
# dotenv environment variables file
|
||||||
.env
|
.env.local
|
||||||
.env.test
|
.env.test
|
||||||
.env.production
|
.env.production
|
||||||
|
|
||||||
@@ -220,7 +221,7 @@ fabric.properties
|
|||||||
# Editor-based Rest Client
|
# Editor-based Rest Client
|
||||||
.idea/httpRequests
|
.idea/httpRequests
|
||||||
|
|
||||||
# Android studio 3.1+ serialized cache file
|
# Android studio 3.1+ serialized cche file
|
||||||
.idea/caches/build_file_checksums.ser
|
.idea/caches/build_file_checksums.ser
|
||||||
|
|
||||||
### WebStorm+all Patch ###
|
### WebStorm+all Patch ###
|
||||||
@@ -283,4 +284,4 @@ $RECYCLE.BIN/
|
|||||||
|
|
||||||
# End of https://www.toptal.com/developers/gitignore/api/webstorm+all,yarn,windows,linux,node,vuejs
|
# End of https://www.toptal.com/developers/gitignore/api/webstorm+all,yarn,windows,linux,node,vuejs
|
||||||
|
|
||||||
|
a
|
||||||
|
341
.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
vendored
631
.yarn/releases/yarn-3.0.2.cjs
vendored
785
.yarn/releases/yarn-3.2.0.cjs
vendored
Normal file
@@ -4,4 +4,4 @@ plugins:
|
|||||||
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
|
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
|
||||||
spec: "@yarnpkg/plugin-interactive-tools"
|
spec: "@yarnpkg/plugin-interactive-tools"
|
||||||
|
|
||||||
yarnPath: .yarn/releases/yarn-3.0.2.cjs
|
yarnPath: .yarn/releases/yarn-3.2.0.cjs
|
||||||
|
13
README.md
@@ -1,7 +1,16 @@
|
|||||||
# CSGOW.TF
|
# CSGOW.TF
|
||||||
[](https://git.harting.dev/CSGOWTF/csgowtf/src/branch/master/LICENSE) [](https://liberapay.com/CSGOWTF/)
|
|
||||||
|
|
||||||
Statistics for CS:GO matchmaking matches.
|
[](https://vuejs.org/)
|
||||||
|
[](https://go.dev/)
|
||||||
|
[](https://git.harting.dev/CSGOWTF/csgowtf/src/branch/master/LICENSE)
|
||||||
|
[](https://liberapay.com/CSGOWTF/)
|
||||||
|
[](https://liberapay.com/CSGOWTF/)
|
||||||
|
[](https://csgow.tf/)
|
||||||
|
<!--[](https://www.typescriptlang.org/)-->
|
||||||
|
|
||||||
|
### Statistics for CS:GO matchmaking matches.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## Backend
|
## Backend
|
||||||
This is the frontend to the [csgowtfd](https://git.harting.dev/CSGOWTF/csgowtfd) backend.
|
This is the frontend to the [csgowtfd](https://git.harting.dev/CSGOWTF/csgowtfd) backend.
|
||||||
|
@@ -1,5 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
presets: [
|
|
||||||
'@vue/cli-plugin-babel/preset'
|
|
||||||
]
|
|
||||||
}
|
|
62
index.html
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta content="IE=edge" http-equiv="X-UA-Compatible">
|
||||||
|
<meta content="width=device-width,initial-scale=1.0" name="viewport">
|
||||||
|
|
||||||
|
<meta content="Track your CSGO matches and see your match details."
|
||||||
|
name="description">
|
||||||
|
<meta content="index, follow, archive"
|
||||||
|
name="robots">
|
||||||
|
<meta content="Track your CSGO matches and see your match details."
|
||||||
|
property="st:section">
|
||||||
|
<meta content="csgoWTF - Open source CSGO data platform"
|
||||||
|
name="twitter:title">
|
||||||
|
<meta content="Track your CSGO matches and see your match details."
|
||||||
|
name="twitter:description">
|
||||||
|
<meta content="summary_large_image"
|
||||||
|
name="twitter:card">
|
||||||
|
<meta content="https://csgow.tf/"
|
||||||
|
property="og:url">
|
||||||
|
<meta content="csgoWTF - Open source CSGO data platform"
|
||||||
|
property="og:title">
|
||||||
|
<meta content="Track your CSGO matches and see your match details."
|
||||||
|
property="og:description">
|
||||||
|
<meta content="website"
|
||||||
|
property="og:type">
|
||||||
|
<meta content="en_US"
|
||||||
|
property="og:locale">
|
||||||
|
<meta content="csgoWTF - Open source CSGO data platform"
|
||||||
|
property="og:site_name">
|
||||||
|
<meta content="https://csgow.tf/images/logo.png"
|
||||||
|
name="twitter:image">
|
||||||
|
<meta content="https://csgow.tf/images/logo.png"
|
||||||
|
property="og:image">
|
||||||
|
<meta content="1024"
|
||||||
|
property="og:image:width">
|
||||||
|
<meta content="526"
|
||||||
|
property="og:image:height">
|
||||||
|
<meta content="https://csgow.tf/images/logo.png"
|
||||||
|
property="og:image:secure_url">
|
||||||
|
|
||||||
|
<link href="/images/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180">
|
||||||
|
<link href="/images/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png">
|
||||||
|
<link href="/images/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png">
|
||||||
|
|
||||||
|
<link href="/site.webmanifest" rel="manifest">
|
||||||
|
|
||||||
|
<link rel="preconnect" href="https://steamcdn-a.akamaihd.net" crossorigin>
|
||||||
|
<link rel="dns-prefetch" href="https://steamcdn-a.akamaihd.net">
|
||||||
|
<link rel="preconnect" href="https://api.csgow.tf" crossorigin>
|
||||||
|
<link rel="dns-prefetch" href="https://api.csgow.tf">
|
||||||
|
<link rel="preconnect" href="https://piwik.harting.hosting" crossorigin>
|
||||||
|
<link rel="dns-prefetch" href="https://piwik.harting.hosting">
|
||||||
|
|
||||||
|
<title>csgoWTF</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="app"></div>
|
||||||
|
<script type="module" src="/src/main.ts"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
60
package.json
@@ -1,41 +1,49 @@
|
|||||||
{
|
{
|
||||||
"name": "csgowtf",
|
"name": "csgowtf",
|
||||||
"version": "1.0.0",
|
"version": "1.0.7",
|
||||||
"private": true,
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"serve": "vue-cli-service serve",
|
"dev": "vite",
|
||||||
"build": "vue-cli-service build --mode production",
|
"host": "vite --host",
|
||||||
"lint": "vue-cli-service lint"
|
"build": "vue-tsc --noEmit && vite build",
|
||||||
|
"preview": "vite preview --port 5050",
|
||||||
|
"typecheck": "vue-tsc --noEmit",
|
||||||
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@popperjs/core": "^2.11.2",
|
"@popperjs/core": "^2.11.4",
|
||||||
"axios": "^0.25.0",
|
"axios": "^0.26.1",
|
||||||
"bootstrap": "^5.1.3",
|
"bootstrap": "^5.1.3",
|
||||||
"core-js": "^3.20.3",
|
"bootstrap-icons": "^1.8.1",
|
||||||
"dotenv-webpack": "^7.1.0",
|
"csgo-sharecode": "^3.0.1",
|
||||||
"echarts": "^5.3.0",
|
"echarts": "^5.3.1",
|
||||||
"fork-awesome": "^1.2.0",
|
"fork-awesome": "^1.2.0",
|
||||||
|
"http-status-codes": "^2.2.0",
|
||||||
|
"iso-639-1": "^2.1.13",
|
||||||
"jquery": "^3.6.0",
|
"jquery": "^3.6.0",
|
||||||
"luxon": "^2.3.0",
|
"luxon": "^2.3.1",
|
||||||
"string-sanitizer": "^2.0.2",
|
"pinia": "^2.0.12",
|
||||||
"vue": "^3.2.29",
|
"vue": "^3.2.31",
|
||||||
"vue-matomo": "^4.1.0",
|
"vue-matomo": "^4.1.0",
|
||||||
"vue-router": "^4.0.12",
|
"vue-router": "^4.0.14",
|
||||||
"vue3-cookies": "^1.0.6",
|
"vue3-cookies": "^1.0.6",
|
||||||
"vuex": "^4.0.2"
|
"vuex": "^4.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@vue/cli-plugin-babel": "~4.5.15",
|
"@rushstack/eslint-patch": "^1.1.1",
|
||||||
"@vue/cli-plugin-eslint": "~4.5.15",
|
"@types/echarts": "^4.9.13",
|
||||||
"@vue/cli-plugin-router": "~4.5.15",
|
"@types/luxon": "^2.3.1",
|
||||||
"@vue/cli-plugin-vuex": "~4.5.15",
|
"@types/node": "^16.11.26",
|
||||||
"@vue/cli-service": "~4.5.15",
|
"@vitejs/plugin-vue": "^2.2.4",
|
||||||
"@vue/compiler-sfc": "^3.2.29",
|
"@vue/eslint-config-prettier": "^7.0.0",
|
||||||
"babel-eslint": "^10.1.0",
|
"@vue/eslint-config-typescript": "^10.0.0",
|
||||||
"eslint": "^6.8.0",
|
"@vue/tsconfig": "^0.1.3",
|
||||||
"eslint-plugin-vue": "^7.20.0",
|
"eslint": "^8.11.0",
|
||||||
"sass": "^1.49.0",
|
"eslint-plugin-vue": "^8.5.0",
|
||||||
"sass-loader": "^10.2.1"
|
"prettier": "^2.6.0",
|
||||||
|
"sass": "^1.49.9",
|
||||||
|
"typescript": "~4.6.2",
|
||||||
|
"vite": "^2.8.6",
|
||||||
|
"vue-tsc": "^0.33.2"
|
||||||
},
|
},
|
||||||
"packageManager": "yarn@3.0.2"
|
"packageManager": "yarn@3.2.0"
|
||||||
}
|
}
|
||||||
|
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 7.0 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 504 B After Width: | Height: | Size: 504 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.5 MiB |
Before Width: | Height: | Size: 8.0 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 6.1 KiB |
BIN
public/images/logo.png
Normal file
After Width: | Height: | Size: 9.5 KiB |
@@ -2,14 +2,14 @@
|
|||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
<svg
|
<svg
|
||||||
width="490.6875"
|
width="495.6875"
|
||||||
height="249.58194"
|
height="254.58194"
|
||||||
viewBox="0 0 490.6875 249.58193"
|
viewBox="0 0 495.6875 254.58193"
|
||||||
version="1.1"
|
version="1.1"
|
||||||
id="svg5"
|
id="svg5"
|
||||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
|
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||||
sodipodi:docname="csgo-wtf_alt.svg"
|
sodipodi:docname="logo.svg"
|
||||||
inkscape:export-filename="/home/harting/csgo-wtf.png"
|
inkscape:export-filename="/home/cnachtigall/git/WebStorm/csgowtf/public/logo.png"
|
||||||
inkscape:export-xdpi="127.88531"
|
inkscape:export-xdpi="127.88531"
|
||||||
inkscape:export-ydpi="127.88531"
|
inkscape:export-ydpi="127.88531"
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
@@ -31,14 +31,14 @@
|
|||||||
fit-margin-right="0"
|
fit-margin-right="0"
|
||||||
fit-margin-bottom="0"
|
fit-margin-bottom="0"
|
||||||
inkscape:zoom="1.2304688"
|
inkscape:zoom="1.2304688"
|
||||||
inkscape:cx="337.67618"
|
inkscape:cx="274.2857"
|
||||||
inkscape:cy="221.05396"
|
inkscape:cy="223.8984"
|
||||||
inkscape:window-width="1916"
|
inkscape:window-width="1916"
|
||||||
inkscape:window-height="1142"
|
inkscape:window-height="1026"
|
||||||
inkscape:window-x="320"
|
inkscape:window-x="1920"
|
||||||
inkscape:window-y="18"
|
inkscape:window-y="52"
|
||||||
inkscape:window-maximized="1"
|
inkscape:window-maximized="1"
|
||||||
inkscape:current-layer="text2740" />
|
inkscape:current-layer="layer1" />
|
||||||
<defs
|
<defs
|
||||||
id="defs2">
|
id="defs2">
|
||||||
<rect
|
<rect
|
||||||
@@ -52,27 +52,26 @@
|
|||||||
inkscape:label="Layer 1"
|
inkscape:label="Layer 1"
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
id="layer1"
|
id="layer1"
|
||||||
transform="translate(-13.465942,-34.701904)">
|
transform="translate(-10.965942,-32.201904)">
|
||||||
<g
|
<g
|
||||||
aria-label="CSGO
|
aria-label="CSGO "
|
||||||
"
|
|
||||||
id="text2740"
|
id="text2740"
|
||||||
style="font-size:192px;line-height:0;letter-spacing:0px;word-spacing:0px">
|
style="font-size:192px;line-height:0;letter-spacing:0px;word-spacing:0px;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill">
|
||||||
<path
|
<path
|
||||||
d="m 124.74719,127.60815 q -1.59375,22.03125 -16.3125,34.6875 -14.624998,12.65625 -38.624998,12.65625 -26.25,0 -41.34375,-17.625 -15,-17.71875 -15,-48.5625 v -8.34375 q 0,-19.687496 6.9375,-34.687496 6.9375,-15 19.78125,-22.96875 12.9375,-8.0625 30,-8.0625 23.625,0 38.062498,12.65625 14.4375,12.65625 16.6875,35.53125 H 96.809692 q -1.03125,-13.21875 -7.40625,-19.125 -6.28125,-6 -19.21875,-6 -14.0625,0 -21.09375,10.125 -6.9375,10.03125 -7.125,31.21875 v 10.312496 q 0,22.125 6.65625,32.34375 6.75,10.21875 21.1875,10.21875 13.03125,0 19.40625,-5.90625 6.46875,-6 7.40625,-18.46875 z"
|
d="m 124.74719,127.60815 q -1.59375,22.03125 -16.3125,34.6875 -14.624998,12.65625 -38.624998,12.65625 -26.25,0 -41.34375,-17.625 -15,-17.71875 -15,-48.5625 v -8.34375 q 0,-19.687496 6.9375,-34.687496 6.9375,-15 19.78125,-22.96875 12.9375,-8.0625 30,-8.0625 23.625,0 38.062498,12.65625 14.4375,12.65625 16.6875,35.53125 H 96.809692 q -1.03125,-13.21875 -7.40625,-19.125 -6.28125,-6 -19.21875,-6 -14.0625,0 -21.09375,10.125 -6.9375,10.03125 -7.125,31.21875 v 10.312496 q 0,22.125 6.65625,32.34375 6.75,10.21875 21.1875,10.21875 13.03125,0 19.40625,-5.90625 6.46875,-6 7.40625,-18.46875 z"
|
||||||
style="font-weight:bold;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';text-align:end;baseline-shift:baseline;text-anchor:end;fill:#c3a235"
|
style="font-weight:bold;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';text-align:end;baseline-shift:baseline;text-anchor:end;fill:#c3a235;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||||
id="path3650" />
|
id="path3650" />
|
||||||
<path
|
<path
|
||||||
d="m 213.99719,137.2644 q 0,-7.96875 -5.625,-12.1875 -5.625,-4.3125 -20.25,-9 -14.625,-4.78125 -23.15625,-9.375 -23.25,-12.562496 -23.25,-33.843746 0,-11.0625 6.1875,-19.6875 6.28125,-8.71875 17.90625,-13.59375 11.71875,-4.875 26.25,-4.875 14.625,0 26.0625,5.34375 11.4375,5.25 17.71875,14.90625 6.375,9.65625 6.375,21.9375 h -28.125 q 0,-9.375 -5.90625,-14.53125 -5.90625,-5.25 -16.59375,-5.25 -10.3125,0 -16.03125,4.40625 -5.71875,4.3125 -5.71875,11.4375 0,6.65625 6.65625,11.15625 6.75,4.5 19.78125,8.4375 24,7.21875 34.96875,17.906246 10.96875,10.6875 10.96875,26.625 0,17.71875 -13.40625,27.84375 -13.40625,10.03125 -36.09375,10.03125 -15.75,0 -28.6875,-5.71875 -12.9375,-5.8125 -19.78125,-15.84375 -6.75,-10.03125 -6.75,-23.25 h 28.21875 q 0,22.59375 27,22.59375 10.03125,0 15.65625,-4.03125 5.625,-4.125 5.625,-11.4375 z"
|
d="m 213.99719,137.2644 q 0,-7.96875 -5.625,-12.1875 -5.625,-4.3125 -20.25,-9 -14.625,-4.78125 -23.15625,-9.375 -23.25,-12.562496 -23.25,-33.843746 0,-11.0625 6.1875,-19.6875 6.28125,-8.71875 17.90625,-13.59375 11.71875,-4.875 26.25,-4.875 14.625,0 26.0625,5.34375 11.4375,5.25 17.71875,14.90625 6.375,9.65625 6.375,21.9375 h -28.125 q 0,-9.375 -5.90625,-14.53125 -5.90625,-5.25 -16.59375,-5.25 -10.3125,0 -16.03125,4.40625 -5.71875,4.3125 -5.71875,11.4375 0,6.65625 6.65625,11.15625 6.75,4.5 19.78125,8.4375 24,7.21875 34.96875,17.906246 10.96875,10.6875 10.96875,26.625 0,17.71875 -13.40625,27.84375 -13.40625,10.03125 -36.09375,10.03125 -15.75,0 -28.6875,-5.71875 -12.9375,-5.8125 -19.78125,-15.84375 -6.75,-10.03125 -6.75,-23.25 h 28.21875 q 0,22.59375 27,22.59375 10.03125,0 15.65625,-4.03125 5.625,-4.125 5.625,-11.4375 z"
|
||||||
style="font-weight:bold;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';text-align:end;baseline-shift:baseline;text-anchor:end;fill:#c3a235"
|
style="font-weight:bold;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';text-align:end;baseline-shift:baseline;text-anchor:end;fill:#c3a235;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||||
id="path3652" />
|
id="path3652" />
|
||||||
<path
|
<path
|
||||||
d="m 369.24719,155.8269 q -7.59375,9.09375 -21.46875,14.15625 -13.875,4.96875 -30.75,4.96875 -17.71875,0 -31.125,-7.6875 -13.3125,-7.78125 -20.625,-22.5 -7.21875,-14.71875 -7.40625,-34.59375 v -9.28125 q 0,-20.437496 6.84375,-35.343746 6.9375,-15 19.875,-22.875 13.03125,-7.96875 30.46875,-7.96875 24.28125,0 37.96875,11.625 13.6875,11.53125 16.21875,33.65625 h -27.375 q -1.875,-11.71875 -8.34375,-17.15625 -6.375,-5.4375 -17.625,-5.4375 -14.34375,0 -21.84375,10.78125 -7.5,10.78125 -7.59375,32.062496 v 8.71875 q 0,21.46875 8.15625,32.4375 8.15625,10.96875 23.90625,10.96875 15.84375,0 22.59375,-6.75 V 122.0769 h -25.59375 v -20.71875 h 53.71875 z"
|
d="m 369.24719,155.8269 q -7.59375,9.09375 -21.46875,14.15625 -13.875,4.96875 -30.75,4.96875 -17.71875,0 -31.125,-7.6875 -13.3125,-7.78125 -20.625,-22.5 -7.21875,-14.71875 -7.40625,-34.59375 v -9.28125 q 0,-20.437496 6.84375,-35.343746 6.9375,-15 19.875,-22.875 13.03125,-7.96875 30.46875,-7.96875 24.28125,0 37.96875,11.625 13.6875,11.53125 16.21875,33.65625 h -27.375 q -1.875,-11.71875 -8.34375,-17.15625 -6.375,-5.4375 -17.625,-5.4375 -14.34375,0 -21.84375,10.78125 -7.5,10.78125 -7.59375,32.062496 v 8.71875 q 0,21.46875 8.15625,32.4375 8.15625,10.96875 23.90625,10.96875 15.84375,0 22.59375,-6.75 V 122.0769 h -25.59375 v -20.71875 h 53.71875 z"
|
||||||
style="font-weight:bold;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';text-align:end;baseline-shift:baseline;text-anchor:end;fill:#c3a235"
|
style="font-weight:bold;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';text-align:end;baseline-shift:baseline;text-anchor:end;fill:#c3a235;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||||
id="path3654" />
|
id="path3654" />
|
||||||
<path
|
<path
|
||||||
d="m 504.15344,107.92065 q 0,20.15625 -7.125,35.34375 -7.125,15.1875 -20.4375,23.4375 -13.21875,8.25 -30.375,8.25 -16.96875,0 -30.28125,-8.15625 -13.3125,-8.15625 -20.625,-23.25 -7.3125,-15.1875 -7.40625,-34.875 v -6.75 q 0,-20.156246 7.21875,-35.437496 7.3125,-15.375 20.53125,-23.53125 13.3125,-8.25 30.375,-8.25 17.0625,0 30.28125,8.25 13.3125,8.15625 20.53125,23.53125 7.3125,15.28125 7.3125,35.343746 z m -28.5,-6.1875 q 0,-21.468746 -7.6875,-32.624996 -7.6875,-11.15625 -21.9375,-11.15625 -14.15625,0 -21.84375,11.0625 -7.6875,10.96875 -7.78125,32.249996 v 6.65625 q 0,20.90625 7.6875,32.4375 7.6875,11.53125 22.125,11.53125 14.15625,0 21.75,-11.0625 7.59375,-11.15625 7.6875,-32.4375 z"
|
d="m 504.15344,107.92065 q 0,20.15625 -7.125,35.34375 -7.125,15.1875 -20.4375,23.4375 -13.21875,8.25 -30.375,8.25 -16.96875,0 -30.28125,-8.15625 -13.3125,-8.15625 -20.625,-23.25 -7.3125,-15.1875 -7.40625,-34.875 v -6.75 q 0,-20.156246 7.21875,-35.437496 7.3125,-15.375 20.53125,-23.53125 13.3125,-8.25 30.375,-8.25 17.0625,0 30.28125,8.25 13.3125,8.15625 20.53125,23.53125 7.3125,15.28125 7.3125,35.343746 z m -28.5,-6.1875 q 0,-21.468746 -7.6875,-32.624996 -7.6875,-11.15625 -21.9375,-11.15625 -14.15625,0 -21.84375,11.0625 -7.6875,10.96875 -7.78125,32.249996 v 6.65625 q 0,20.90625 7.6875,32.4375 7.6875,11.53125 22.125,11.53125 14.15625,0 21.75,-11.0625 7.59375,-11.15625 7.6875,-32.4375 z"
|
||||||
style="font-weight:bold;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';text-align:end;baseline-shift:baseline;text-anchor:end;fill:#c3a235"
|
style="font-weight:bold;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';text-align:end;baseline-shift:baseline;text-anchor:end;fill:#c3a235;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||||
id="path3656" />
|
id="path3656" />
|
||||||
</g>
|
</g>
|
||||||
<text
|
<text
|
||||||
@@ -82,18 +81,18 @@
|
|||||||
<g
|
<g
|
||||||
aria-label="WTF"
|
aria-label="WTF"
|
||||||
id="text36805"
|
id="text36805"
|
||||||
style="font-size:133.333px;line-height:1.25;letter-spacing:0px;word-spacing:0px">
|
style="font-size:133.333px;line-height:1.25;letter-spacing:0px;word-spacing:0px;stroke:#000000;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill">
|
||||||
<path
|
<path
|
||||||
d="m 204.87102,256.94016 12.76039,-67.44774 h 19.46609 l -21.02859,94.79142 H 196.4075 l -15.42964,-63.41129 -15.42965,63.41129 H 145.8868 l -21.02859,-94.79142 h 19.46609 l 12.82549,67.31754 15.62496,-67.31754 h 16.53642 z"
|
d="m 204.87102,256.94016 12.76039,-67.44774 h 19.46609 l -21.02859,94.79142 H 196.4075 l -15.42964,-63.41129 -15.42965,63.41129 H 145.8868 l -21.02859,-94.79142 h 19.46609 l 12.82549,67.31754 15.62496,-67.31754 h 16.53642 z"
|
||||||
style="font-weight:bold;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#ffffff"
|
style="font-weight:bold;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#ffffff;stroke:#000000;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||||
id="path3643" />
|
id="path3643" />
|
||||||
<path
|
<path
|
||||||
d="m 319.90979,205.31269 h -29.03638 v 78.97115 h -19.5312 v -78.97115 h -28.64576 v -15.82027 h 77.21334 z"
|
d="m 319.90979,205.31269 h -29.03638 v 78.97115 h -19.5312 v -78.97115 h -28.64576 v -15.82027 h 77.21334 z"
|
||||||
style="font-weight:bold;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#ffffff"
|
style="font-weight:bold;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#ffffff;stroke:#000000;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||||
id="path3645" />
|
id="path3645" />
|
||||||
<path
|
<path
|
||||||
d="m 388.07367,245.54696 h -37.4999 v 38.73688 h -19.5312 v -94.79142 h 61.71859 v 15.82027 h -42.18739 v 24.47911 h 37.4999 z"
|
d="m 388.07367,245.54696 h -37.4999 v 38.73688 h -19.5312 v -94.79142 h 61.71859 v 15.82027 h -42.18739 v 24.47911 h 37.4999 z"
|
||||||
style="font-weight:bold;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#ffffff"
|
style="font-weight:bold;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#ffffff;stroke:#000000;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||||
id="path3647" />
|
id="path3647" />
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 8.0 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 52 KiB |
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 214 KiB After Width: | Height: | Size: 214 KiB |
Before Width: | Height: | Size: 210 KiB After Width: | Height: | Size: 210 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
2054
public/images/map_icons/map_icon_cs_climb.svg
Normal file
After Width: | Height: | Size: 212 KiB |
Before Width: | Height: | Size: 217 KiB After Width: | Height: | Size: 217 KiB |
Before Width: | Height: | Size: 214 KiB After Width: | Height: | Size: 214 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 209 KiB After Width: | Height: | Size: 209 KiB |
Before Width: | Height: | Size: 212 KiB After Width: | Height: | Size: 212 KiB |
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 211 KiB After Width: | Height: | Size: 211 KiB |
Before Width: | Height: | Size: 214 KiB After Width: | Height: | Size: 214 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 211 KiB After Width: | Height: | Size: 211 KiB |
Before Width: | Height: | Size: 208 KiB After Width: | Height: | Size: 208 KiB |
Before Width: | Height: | Size: 212 KiB After Width: | Height: | Size: 212 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 213 KiB After Width: | Height: | Size: 213 KiB |
Before Width: | Height: | Size: 278 KiB After Width: | Height: | Size: 278 KiB |
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 61 KiB |
Before Width: | Height: | Size: 213 KiB After Width: | Height: | Size: 213 KiB |
2061
public/images/map_icons/map_icon_de_crete.svg
Normal file
After Width: | Height: | Size: 212 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 231 KiB After Width: | Height: | Size: 231 KiB |
Before Width: | Height: | Size: 212 KiB After Width: | Height: | Size: 212 KiB |
Before Width: | Height: | Size: 212 KiB After Width: | Height: | Size: 212 KiB |
Before Width: | Height: | Size: 214 KiB After Width: | Height: | Size: 214 KiB |
Before Width: | Height: | Size: 210 KiB After Width: | Height: | Size: 210 KiB |
Before Width: | Height: | Size: 211 KiB After Width: | Height: | Size: 211 KiB |
2053
public/images/map_icons/map_icon_de_hive.svg
Normal file
After Width: | Height: | Size: 212 KiB |
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 87 KiB |
2051
public/images/map_icons/map_icon_de_iris.svg
Normal file
After Width: | Height: | Size: 212 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 211 KiB After Width: | Height: | Size: 211 KiB |
Before Width: | Height: | Size: 211 KiB After Width: | Height: | Size: 211 KiB |
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 69 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 211 KiB After Width: | Height: | Size: 211 KiB |
Before Width: | Height: | Size: 211 KiB After Width: | Height: | Size: 211 KiB |
Before Width: | Height: | Size: 208 KiB After Width: | Height: | Size: 208 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 212 KiB After Width: | Height: | Size: 212 KiB |
Before Width: | Height: | Size: 214 KiB After Width: | Height: | Size: 214 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 69 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 208 KiB After Width: | Height: | Size: 208 KiB |