Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
N
Neos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
Neos
Commits
34d53f09
Commit
34d53f09
authored
Sep 29, 2023
by
Chunchi Che
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix something
parent
f80a8f42
Pipeline
#23623
passed with stages
in 14 minutes and 7 seconds
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
+8
-4
src/api/strings.ts
src/api/strings.ts
+5
-1
src/ui/Match/index.tsx
src/ui/Match/index.tsx
+2
-2
src/ui/WaitRoom/index.tsx
src/ui/WaitRoom/index.tsx
+1
-1
No files found.
src/api/strings.ts
View file @
34d53f09
...
...
@@ -12,7 +12,11 @@ export async function initStrings() {
for
(
const
line
of
lineIter
)
{
if
(
!
line
.
startsWith
(
"
#
"
)
&&
line
!==
""
)
{
let
[
region
,
code
,
value
]
=
line
.
split
(
"
"
,
3
);
try
{
localStorage
.
setItem
(
`
${
region
}
_
${
code
}
`
,
value
);
}
catch
(
error
)
{
alert
(
`set item in local storage error:
${
error
}
`
);
}
}
}
}
...
...
src/ui/Match/index.tsx
View file @
34d53f09
...
...
@@ -52,7 +52,7 @@ export const Component: React.FC = () => {
if
(
matchInfo
)
{
await
connectSrvpro
({
ip
:
matchInfo
.
address
+
"
:
"
+
(
matchInfo
.
port
+
1
),
ip
:
matchInfo
.
address
+
"
:
"
+
(
matchInfo
.
port
+
1
),
// 分配给Neos的Websocket端口是TCP端口+1
player
:
user
.
username
,
passWd
:
matchInfo
.
password
,
});
...
...
@@ -69,7 +69,7 @@ export const Component: React.FC = () => {
// 初始化,然后等待后端通知成功加入房间后跳转页面
await
connectSrvpro
({
ip
:
server
,
player
:
user
?.
name
??
"
Guest
"
,
player
:
user
?.
user
name
??
"
Guest
"
,
passWd
:
"
AI
"
,
});
};
...
...
src/ui/WaitRoom/index.tsx
View file @
34d53f09
...
...
@@ -90,7 +90,7 @@ export const Component: React.FC = () => {
if
(
deck
)
{
setDeck
(
deck
);
}
else
{
alert
(
`Deck ${deckName} not found`
);
message
.
error
(
`Deck ${deckName} not found`
);
}
}
}
/>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment