Compare commits

...

7 Commits

Author SHA1 Message Date
lejianwen
b6bd9150d9 up web client v2 from rustdesk 2024-11-22 19:54:19 +08:00
lejianwen
96e3e3bc86 up docs 2024-11-22 19:53:49 +08:00
lejianwen
41377f41bb Split the language 2024-11-22 19:39:28 +08:00
lejianwen
fb744f81e2 up img 2024-11-20 19:33:27 +08:00
lejianwen
750c3bcbcd fix #62 2024-11-20 19:32:44 +08:00
lejianwen
d4015d7284 fix 2024-11-20 09:20:29 +08:00
lejianwen
a9bf3fda73 fix https://github.com/lejianwen/rustdesk-api/discussions/59#discussioncomment-11306760 2024-11-20 09:17:29 +08:00
9 changed files with 138879 additions and 142634 deletions

View File

@@ -1056,7 +1056,7 @@ const docTemplateapi = `{
"application/json" "application/json"
], ],
"tags": [ "tags": [
"WEBCLIENT" "WEBCLIENT_V2"
], ],
"summary": "服务配置", "summary": "服务配置",
"responses": { "responses": {

View File

@@ -1049,7 +1049,7 @@
"application/json" "application/json"
], ],
"tags": [ "tags": [
"WEBCLIENT" "WEBCLIENT_V2"
], ],
"summary": "服务配置", "summary": "服务配置",
"responses": { "responses": {

View File

@@ -869,7 +869,7 @@ paths:
- token: [] - token: []
summary: 服务配置 summary: 服务配置
tags: tags:
- WEBCLIENT - WEBCLIENT_V2
/shared-peer: /shared-peer:
post: post:
consumes: consumes:

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -32,7 +32,7 @@
<title>RustDesk</title> <title>RustDesk</title>
<script src="/webclient-config/index.js"></script> <script src="/webclient-config/index.js"></script>
<link rel="manifest" href="manifest.json" /> <link rel="manifest" href="manifest.json" />
<script type="module" crossorigin src="js/dist/index.js?v=5"></script> <script type="module" crossorigin src="js/dist/index.js?v=6"></script>
<link rel="modulepreload" href="js/dist/vendor.js?v=0b990c6e" /> <link rel="modulepreload" href="js/dist/vendor.js?v=0b990c6e" />
<style> <style>
html, html,
@@ -259,7 +259,7 @@
} }
scriptLoaded = true; scriptLoaded = true;
var scriptTag = document.createElement("script"); var scriptTag = document.createElement("script");
scriptTag.src = "main.dart.js?v=5"; scriptTag.src = "main.dart.js?v=6";
scriptTag.type = "application/javascript"; scriptTag.type = "application/javascript";
document.body.append(scriptTag); document.body.append(scriptTag);
} }

File diff suppressed because it is too large Load Diff

28121
resources/web2/js/dist/lang.js vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -58,7 +58,7 @@ export function getServerConf(token) {
return return
} }
console.log('getServerConf', token) // console.log('getServerConf', token)
if (fetching) { if (fetching) {
return return
} }

225285
resources/web2/main.dart.js vendored

File diff suppressed because one or more lines are too long