Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
89bf501a2f | ||
|
|
6f85e223d0 | ||
|
|
ac31b7fb7a | ||
|
|
99272676cb | ||
|
|
7d38564107 | ||
|
|
93063e125c | ||
|
|
00f6016311 | ||
|
|
a6e75006e6 | ||
|
|
8bdfc2586a | ||
|
|
b26a971de1 | ||
|
|
9b7bf03e1c | ||
|
|
2f272e48e6 | ||
|
|
6d1c0d0d22 | ||
|
|
f35196ab4a | ||
|
|
51fbc60036 | ||
|
|
76b56c62ce | ||
|
|
10cf90bcf3 | ||
|
|
45cf95aa22 | ||
|
|
c17d9c4a73 | ||
|
|
288920ded8 | ||
|
|
0dbcadf0cf | ||
|
|
1e28a11007 | ||
|
|
e1394ce66c | ||
|
|
e489783022 | ||
|
|
5d330970c1 | ||
|
|
097afd085f | ||
|
|
78e3c6864b | ||
|
|
46a94b7898 | ||
|
|
72105b3a4c | ||
|
|
9764f65cf6 | ||
|
|
c565d1593b | ||
|
|
9446d7ec15 | ||
|
|
fb6684820b | ||
|
|
41b6ea08f9 | ||
|
|
388d9877b0 | ||
|
|
727a1d8e11 | ||
|
|
8e8408b2f8 | ||
|
|
14110c89e4 | ||
|
|
76db4c262d | ||
|
|
6c7a502785 | ||
|
|
e48ae26c51 | ||
|
|
ffd0db46d9 | ||
|
|
55312a19ff | ||
|
|
a97e088a52 | ||
|
|
b4d9749025 | ||
|
|
71698cd31c | ||
|
|
54aaff2f74 | ||
|
|
0d6cb316a3 | ||
|
|
5d5a39ab2a | ||
|
|
a8aa64d18b | ||
|
|
deb9db2704 | ||
|
|
9bce40819d | ||
|
|
b1a43aa7d4 | ||
|
|
155b8a1946 | ||
|
|
ef7806da03 | ||
|
|
f3b6779641 | ||
|
|
1eef943a0f | ||
|
|
cf2dba3648 | ||
|
|
52c45e53b8 | ||
|
|
224880dfc0 | ||
|
|
bf37a31802 | ||
|
|
1c583122f8 | ||
|
|
32ccc5cb39 | ||
|
|
c95590931f | ||
|
|
341f81a6a5 | ||
|
|
2f5bbca42c | ||
|
|
0cbd5a0ef2 | ||
|
|
fdcfff2554 | ||
|
|
d55897964c | ||
|
|
5850f086df | ||
|
|
2b130f052a | ||
|
|
2d0d9e3a88 | ||
|
|
488169889c | ||
|
|
f6f3427e33 | ||
|
|
cd96631b9f | ||
|
|
089fef92b1 | ||
|
|
1d2682111d | ||
|
|
c64e85e039 | ||
|
|
933f421313 | ||
|
|
c2227bffff | ||
|
|
376fa73220 | ||
|
|
aa12b6fed6 | ||
|
|
87d06fa25c | ||
|
|
45a8582aa4 | ||
|
|
b01958b1be | ||
|
|
db59284b6f | ||
|
|
61979d4aa9 | ||
|
|
4d8421529e | ||
|
|
1a16bb369b | ||
|
|
008c5a799a | ||
|
|
ef060980f7 | ||
|
|
dc772a2dab | ||
|
|
7755022227 |
@@ -3,3 +3,9 @@ indent_style = space
|
||||
indent_size = 2
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
[*.{js,jsx,ts,tsx,vue}]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
@@ -1,18 +1,24 @@
|
||||
module.exports = {
|
||||
root: true,
|
||||
|
||||
env: {
|
||||
node: true
|
||||
},
|
||||
|
||||
extends: [
|
||||
'plugin:vue/vue3-essential',
|
||||
'@vue/standard',
|
||||
'@vue/typescript/recommended'
|
||||
],
|
||||
|
||||
parserOptions: {
|
||||
ecmaVersion: 2020
|
||||
},
|
||||
|
||||
rules: {
|
||||
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||||
'@typescript-eslint/indent': ['error', 2],
|
||||
camelcase: 0
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
|
||||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
|
||||
|
||||
name: Node.js CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master" ]
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
id-token: write
|
||||
pages: write
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [18.x]
|
||||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
cache: 'npm'
|
||||
- run: npm ci --force
|
||||
- run: npm run build --if-present
|
||||
- name: Upload GitHub Pages artifact
|
||||
uses: actions/upload-pages-artifact@v1.0.8
|
||||
with:
|
||||
path: dist
|
||||
|
||||
- name: Deploy GitHub Pages site
|
||||
uses: actions/deploy-pages@v2.0.1
|
||||
@@ -21,3 +21,5 @@ pnpm-debug.log*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
|
||||
dist
|
||||
|
Before Width: | Height: | Size: 4.2 KiB |
@@ -1 +0,0 @@
|
||||
<!doctype html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><meta content="Tone API" property="og:title"/><meta content="Northstar kill statistics" property="og:description"/><meta content="https://toneapi.github.io/ToneAPI_webclient/" property="og:url"/><meta content="https://toneapi.github.io/ToneAPI_webclient/og_image.png" property="og:image"/><meta name="twitter:card" content="summary_large_image"><link rel="icon" href="/ToneAPI_webclient/favicon.ico"><title>toneapi_webclient</title><script defer="defer" src="/ToneAPI_webclient/js/chunk-vendors.3f4f208d.js"></script><script defer="defer" src="/ToneAPI_webclient/js/app.13330013.js"></script><link href="/ToneAPI_webclient/css/app.a9b40eb3.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but toneapi_webclient doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html>
|
||||
|
Before Width: | Height: | Size: 276 KiB |
@@ -26,9 +26,9 @@
|
||||
"@typescript-eslint/eslint-plugin": "^5.4.0",
|
||||
"@typescript-eslint/parser": "^5.4.0",
|
||||
"@vue/cli-plugin-babel": "~5.0.0",
|
||||
"@vue/cli-plugin-eslint": "~5.0.0",
|
||||
"@vue/cli-plugin-eslint": "~5.0.8",
|
||||
"@vue/cli-plugin-router": "~5.0.0",
|
||||
"@vue/cli-plugin-typescript": "~5.0.0",
|
||||
"@vue/cli-plugin-typescript": "~5.0.8",
|
||||
"@vue/cli-plugin-vuex": "~5.0.0",
|
||||
"@vue/cli-service": "~5.0.0",
|
||||
"@vue/eslint-config-standard": "^6.1.0",
|
||||
@@ -40,4 +40,4 @@
|
||||
"eslint-plugin-vue": "^8.0.3",
|
||||
"typescript": "~4.5.5"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -4,11 +4,11 @@
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<meta content="Tone API" property="og:title" />
|
||||
<meta content="Northstar kill statistics" property="og:description" />
|
||||
<meta content="Players : Tone API" property="og:title" />
|
||||
<meta content="Northstar players kills statistics" property="og:description" />
|
||||
<meta content="https://toneapi.github.io/ToneAPI_webclient/" property="og:url" />
|
||||
<meta content="https://toneapi.github.io/ToneAPI_webclient/og_image.png" property="og:image" />
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||
</head>
|
||||
|
||||
|
After Width: | Height: | Size: 308 KiB |
|
After Width: | Height: | Size: 2.4 MiB |
|
After Width: | Height: | Size: 257 KiB |
|
After Width: | Height: | Size: 261 KiB |
|
After Width: | Height: | Size: 240 KiB |
|
After Width: | Height: | Size: 2.2 MiB |
|
After Width: | Height: | Size: 246 KiB |
|
After Width: | Height: | Size: 237 KiB |
|
After Width: | Height: | Size: 210 KiB |
|
After Width: | Height: | Size: 283 KiB |
|
After Width: | Height: | Size: 253 KiB |
|
After Width: | Height: | Size: 253 KiB |
|
After Width: | Height: | Size: 2.5 MiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 223 KiB |
|
After Width: | Height: | Size: 227 KiB |
|
After Width: | Height: | Size: 1.9 MiB |
|
After Width: | Height: | Size: 245 KiB |
|
After Width: | Height: | Size: 2.3 MiB |
|
After Width: | Height: | Size: 289 KiB |
|
After Width: | Height: | Size: 2.5 MiB |
|
After Width: | Height: | Size: 272 KiB |
|
After Width: | Height: | Size: 2.4 MiB |
|
After Width: | Height: | Size: 241 KiB |
|
After Width: | Height: | Size: 2.3 MiB |
|
After Width: | Height: | Size: 248 KiB |
|
After Width: | Height: | Size: 2.2 MiB |
|
After Width: | Height: | Size: 238 KiB |
|
After Width: | Height: | Size: 2.5 MiB |
|
After Width: | Height: | Size: 287 KiB |
|
After Width: | Height: | Size: 2.2 MiB |
|
After Width: | Height: | Size: 272 KiB |
|
After Width: | Height: | Size: 2.4 MiB |
|
After Width: | Height: | Size: 287 KiB |
|
After Width: | Height: | Size: 2.4 MiB |
|
Before Width: | Height: | Size: 276 KiB After Width: | Height: | Size: 280 KiB |
|
After Width: | Height: | Size: 512 KiB |
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<meta content="Servers : Tone API" property="og:title" />
|
||||
<meta content="Northstar servers kills statistics" property="og:description" />
|
||||
<meta content="https://toneapi.github.io/ToneAPI_webclient/servers" property="og:url" />
|
||||
<meta content="https://toneapi.github.io/ToneAPI_webclient/server_og_image.png?" property="og:image" />
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>
|
||||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
||||
</noscript>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
</body>
|
||||
</html>
|
||||
|
After Width: | Height: | Size: 47 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 9.5 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 9.3 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 40 KiB |