Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
mycard
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
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
syntax_j
mycard
Commits
a47c6d3e
Commit
a47c6d3e
authored
Aug 10, 2021
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
apps.json type
parent
35525669
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
121 additions
and
245 deletions
+121
-245
app/apps-json-type.ts
app/apps-json-type.ts
+102
-0
app/apps.service.ts
app/apps.service.ts
+3
-3
tools/apps-json-type.js
tools/apps-json-type.js
+0
-3
tools/apps-json-type.js.map
tools/apps-json-type.js.map
+0
-1
tools/apps-json-type.ts
tools/apps-json-type.ts
+0
-222
tools/patch-linux-wine.js.map
tools/patch-linux-wine.js.map
+1
-1
tools/patch-linux-wine.ts
tools/patch-linux-wine.ts
+15
-15
No files found.
app/apps-json-type.ts
0 → 100644
View file @
a47c6d3e
export
namespace
AppsJson
{
export
enum
Locale
{
zh_CN
=
'
zh-CN
'
,
en_US
=
'
en-US
'
,
ja_JP
=
'
ja-JP
'
,
ko_KR
=
'
ko-KR
'
,
pt_BR
=
'
pt-BR
'
,
zh_HK
=
'
zh-HK
'
,
zh_TW
=
'
zh-TW
'
,
}
export
enum
Platform
{
Linux
=
'
linux
'
,
macOS
=
'
darwin
'
,
Windows
=
'
win32
'
,
}
export
type
LocaleWise
<
T
>
=
Record
<
Locale
,
T
>
;
export
type
PlatformWise
<
T
>
=
Record
<
Platform
,
T
>
;
export
interface
Developer
{
name
:
string
;
url
:
string
;
}
export
interface
Trailer
{
type
:
string
;
url
:
string
;
url2
?:
string
;
}
export
interface
Action
{
interpreter
?:
string
;
execute
:
string
;
args
:
any
[];
env
:
Record
<
string
,
string
>
;
open
?:
string
;
}
export
type
PlatformAction
=
Record
<
string
,
Action
>
;
export
interface
News
{
url
:
string
;
image
:
string
;
title
:
string
;
text
:
string
;
updated_at
:
string
;
}
export
interface
NetworkServer
{
id
:
string
;
url
:
string
;
}
export
interface
Network
{
protocol
:
string
;
port
:
number
;
servers
:
NetworkServer
[];
}
export
interface
Syncable
{
sync
:
boolean
;
}
export
interface
Price
{
cny
:
number
;
usd
:
number
;
}
export
interface
App
{
id
:
string
;
key
?:
string
;
name
?:
LocaleWise
<
string
>
;
description
?:
LocaleWise
<
string
>
;
developers
?:
LocaleWise
<
Developer
[]
>
;
publishers
?:
LocaleWise
<
Developer
[]
>
;
released_at
?:
string
;
category
?:
string
;
tags
?:
string
[];
trailer
?:
Trailer
[];
dependencies
?:
PlatformWise
<
string
[]
>
;
references
?:
PlatformWise
<
string
[]
>
;
author
?:
string
;
homepage
?:
string
;
locales
?:
string
[];
actions
?:
PlatformWise
<
PlatformAction
>
;
version
?:
PlatformWise
<
string
>
;
news
?:
LocaleWise
<
News
[]
>
;
conference
?:
string
;
icon
?:
string
;
cover
?:
string
;
background
?:
string
;
parent
?:
string
;
network
?:
Network
;
updated_at
?:
string
;
files
?:
Record
<
string
,
Syncable
>
;
data
?:
Record
<
string
,
LocaleWise
<
string
[]
>>
;
price
?:
Price
;
}
}
app/apps.service.ts
View file @
a47c6d3e
...
...
@@ -7,18 +7,18 @@ import {remote} from 'electron';
import
*
as
sudo
from
'
electron-sudo
'
;
import
*
as
fs
from
'
fs
'
;
import
*
as
glob
from
'
glob
'
;
import
*
as
ini
from
'
ini
'
;
import
*
as
path
from
'
path
'
;
import
*
as
readline
from
'
readline
'
;
import
'
rxjs/Rx
'
;
import
{
Observable
,
Observer
}
from
'
rxjs/Rx
'
;
import
{
A
ction
,
A
pp
,
AppStatus
}
from
'
./app
'
;
import
{
App
,
AppStatus
}
from
'
./app
'
;
import
{
AppLocal
}
from
'
./app-local
'
;
import
{
DownloadService
,
DownloadStatus
}
from
'
./download.service
'
;
import
{
InstallOption
}
from
'
./install-option
'
;
import
{
LoginService
}
from
'
./login.service
'
;
import
{
SettingsService
}
from
'
./settings.sevices
'
;
import
{
ComparableSet
}
from
'
./shared/ComparableSet
'
;
import
{
AppsJson
}
from
'
./apps-json-type
'
;
import
Timer
=
NodeJS
.
Timer
;
import
ReadableStream
=
NodeJS
.
ReadableStream
;
...
...
@@ -86,7 +86,7 @@ export class AppsService {
try
{
let
data
=
await
this
.
http
.
get
(
appsURL
)
.
timeout
(
5000
)
.
map
((
response
)
=>
response
.
json
()).
toPromise
();
.
map
((
response
)
=>
response
.
json
()).
toPromise
<
AppsJson
.
App
[]
>
();
let
keys_data
=
await
this
.
http
.
get
(
keysURL
,
{
search
:
{
user_id
:
this
.
loginService
.
user
.
email
...
...
tools/apps-json-type.js
deleted
100644 → 0
View file @
35525669
"
use strict
"
;
Object
.
defineProperty
(
exports
,
"
__esModule
"
,
{
value
:
true
});
//# sourceMappingURL=apps-json-type.js.map
\ No newline at end of file
tools/apps-json-type.js.map
deleted
100644 → 0
View file @
35525669
{"version":3,"file":"apps-json-type.js","sourceRoot":"","sources":["apps-json-type.ts"],"names":[],"mappings":""}
\ No newline at end of file
tools/apps-json-type.ts
deleted
100644 → 0
View file @
35525669
export
namespace
AppsJson
{
export
interface
Name
{
'
zh-CN
'
:
string
;
'
en-US
'
:
string
;
}
export
interface
Description
{
'
zh-CN
'
:
string
;
'
en-US
'
:
string
;
}
export
interface
ZhCN
{
name
:
string
;
url
:
string
;
}
export
interface
Developers
{
'
zh-CN
'
:
ZhCN
[];
}
export
interface
ZhCN2
{
name
:
string
;
url
:
string
;
}
export
interface
Publishers
{
'
zh-CN
'
:
ZhCN2
[];
}
export
interface
Trailer
{
type
:
string
;
url
:
string
;
url2
:
string
;
}
export
interface
Dependencies
{
win32
:
string
[];
darwin
:
string
[];
linux
:
any
[];
}
export
interface
References
{
win32
:
string
[];
darwin
:
string
[];
}
export
interface
Env
{
}
export
interface
Action
{
interpreter
?:
string
;
execute
:
string
;
args
:
any
[];
env
:
Record
<
string
,
string
>
;
open
:
string
;
}
export
interface
Env2
{
}
export
interface
Custom
{
execute
:
string
;
args
:
any
[];
env
:
Env2
;
}
export
interface
Install
{
execute
:
string
;
args
:
string
[];
}
export
interface
Env3
{
}
export
interface
Network
{
execute
:
string
;
args
:
any
[];
env
:
Env3
;
}
export
interface
Env4
{
LANG
:
string
;
WINEDEBUG
:
string
;
}
export
interface
Main2
{
execute
:
string
;
args
:
any
[];
open
:
string
;
env
:
Env4
;
}
export
interface
Env5
{
LANG
:
string
;
}
export
interface
Custom2
{
execute
:
string
;
args
:
any
[];
open
:
string
;
env
:
Env5
;
}
export
interface
Install2
{
execute
:
string
;
args
:
string
[];
open
:
string
;
}
export
interface
Env6
{
LANG
:
string
;
}
export
interface
Network2
{
execute
:
string
;
args
:
any
[];
open
:
string
;
env
:
Env6
;
}
export
interface
Env7
{
}
export
interface
Main3
{
execute
:
string
;
args
:
any
[];
env
:
Env7
;
}
export
interface
Linux
{
main
:
Main3
;
}
export
type
PlatformAction
=
Record
<
string
,
Action
>
;
export
interface
Actions
{
win32
:
PlatformAction
;
darwin
:
PlatformAction
;
linux
:
PlatformAction
;
}
export
interface
Version
{
win32
:
string
;
darwin
:
string
;
linux
:
string
;
}
export
interface
Server
{
id
:
string
;
url
:
string
;
}
export
interface
Network3
{
protocol
:
string
;
port
:
number
;
servers
:
Server
[];
}
export
interface
DeckYdk
{
sync
:
boolean
;
}
export
interface
SingleLua
{
sync
:
boolean
;
}
export
interface
ReplayYrp
{
sync
:
boolean
;
}
export
interface
Files
{
'
deck/*.ydk
'
:
DeckYdk
;
'
single/*.lua
'
:
SingleLua
;
'
replay/*.yrp
'
:
ReplayYrp
;
}
export
interface
Windbot
{
'
zh-CN
'
:
string
[];
'
en-US
'
:
string
[];
}
export
interface
Data
{
windbot
:
Windbot
;
}
export
interface
Price
{
cny
:
number
;
usd
:
number
;
}
export
interface
App
{
id
:
string
;
name
:
Name
;
description
:
Description
;
developers
:
Developers
;
publishers
:
Publishers
;
released_at
:
string
;
category
:
string
;
tags
:
string
[];
trailer
:
Trailer
[];
dependencies
:
Dependencies
;
references
:
References
;
author
:
string
;
homepage
:
string
;
locales
:
string
[];
actions
:
Actions
;
version
:
Version
;
news
:
any
;
conference
:
string
;
icon
:
string
;
cover
:
string
;
background
:
string
;
parent
:
string
;
network
:
Network3
;
updated_at
:
string
;
files
:
Files
;
data
:
Data
;
price
:
Price
;
}
}
tools/patch-linux-wine.js.map
View file @
a47c6d3e
{"version":3,"file":"patch-linux-wine.js","sourceRoot":"","sources":["patch-linux-wine.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,2BAAoC;AAEpC,4BAA4B;AAE5B;;QACC,MAAM,IAAI,GAAmB,IAAI,CAAC,KAAK,CAAC,MAAM,aAAE,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC;QACrF,KAAK,MAAM,GAAG,IAAI,IAAI,EAAE;YACvB,OAAO,CAAC,GAAG,CAAC,WAAW,GAAG,CAAC,EAAE,EAAE,CAAC,CAAC;YACjC,MAAM,OAAO,GAAG,GAAG,CAAC,OAAO,CAAC;YAC5B,OAAO,CAAC,KAAK,GAAG,CAAC,CAAC,SAAS,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;YAC5C,KAAK,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;gBACjE,IAAI,MAAM,CAAC,IAAI,KAAK,MAAM,EAAE;oBAC3B,OAAO,CAAC,GAAG,CAAC,yBAAyB,GAAG,CAAC,EAAE,IAAI,UAAU,EAAE,CAAC,CAAC;oBAC7D,MAAM,CAAC,IAAI,GAAG,SAAS,CAAC;oBACxB,MAAM,CAAC,WAAW,GAAG,MAAM,CAAC;iBAC5B;aACD;SACD;QACD,MAAM,aAAE,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;IACpE,CAAC;CAAA;AACD,IAAI,EAAE,CAAC"}
\ No newline at end of file
{"version":3,"file":"patch-linux-wine.js","sourceRoot":"","sources":["patch-linux-wine.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,2BAAoC;AAEpC,4BAA4B;AAE5B;;QACI,MAAM,IAAI,GAAmB,IAAI,CAAC,KAAK,CAAC,MAAM,aAAE,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC;QACrF,KAAK,MAAM,GAAG,IAAI,IAAI,EAAE;YACpB,OAAO,CAAC,GAAG,CAAC,WAAW,GAAG,CAAC,EAAE,EAAE,CAAC,CAAC;YACjC,MAAM,OAAO,GAAG,GAAG,CAAC,OAAO,CAAC;YAC5B,OAAO,CAAC,KAAK,GAAG,CAAC,CAAC,SAAS,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;YAC5C,KAAK,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;gBAC9D,IAAI,MAAM,CAAC,IAAI,KAAK,MAAM,EAAE;oBACxB,OAAO,CAAC,GAAG,CAAC,yBAAyB,GAAG,CAAC,EAAE,IAAI,UAAU,EAAE,CAAC,CAAC;oBAC7D,MAAM,CAAC,IAAI,GAAG,SAAS,CAAC;oBACxB,MAAM,CAAC,WAAW,GAAG,MAAM,CAAC;iBAC/B;aACJ;SACJ;QACD,MAAM,aAAE,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;IACvE,CAAC;CAAA;AACD,IAAI,EAAE,CAAC"}
\ No newline at end of file
tools/patch-linux-wine.ts
View file @
a47c6d3e
import
{
promises
as
fs
}
from
'
fs
'
;
import
{
AppsJson
}
from
'
./apps-json-type
'
;
import
{
AppsJson
}
from
'
.
./app
/apps-json-type
'
;
import
*
as
_
from
'
lodash
'
;
async
function
main
()
{
const
apps
:
AppsJson
.
App
[]
=
JSON
.
parse
(
await
fs
.
readFile
(
process
.
argv
[
2
],
'
utf-8
'
));
for
(
const
app
of
apps
)
{
console
.
log
(
`Reading
${
app
.
id
}
`
);
const
actions
=
app
.
actions
;
actions
.
linux
=
_
.
cloneDeep
(
actions
.
darwin
);
for
(
const
[
actionName
,
action
]
of
Object
.
entries
(
actions
.
linux
))
{
if
(
action
.
open
===
'
wine
'
)
{
console
.
log
(
`Patching Linux action
${
app
.
id
}
-
${
actionName
}
`
);
action
.
open
=
undefined
;
action
.
interpreter
=
'
wine
'
;
}
}
}
await
fs
.
writeFile
(
process
.
argv
[
2
],
JSON
.
stringify
(
apps
,
null
,
2
));
const
apps
:
AppsJson
.
App
[]
=
JSON
.
parse
(
await
fs
.
readFile
(
process
.
argv
[
2
],
'
utf-8
'
));
for
(
const
app
of
apps
)
{
console
.
log
(
`Reading
${
app
.
id
}
`
);
const
actions
=
app
.
actions
;
actions
.
linux
=
_
.
cloneDeep
(
actions
.
darwin
);
for
(
const
[
actionName
,
action
]
of
Object
.
entries
(
actions
.
linux
))
{
if
(
action
.
open
===
'
wine
'
)
{
console
.
log
(
`Patching Linux action
${
app
.
id
}
-
${
actionName
}
`
);
action
.
open
=
undefined
;
action
.
interpreter
=
'
wine
'
;
}
}
}
await
fs
.
writeFile
(
process
.
argv
[
2
],
JSON
.
stringify
(
apps
,
null
,
2
));
}
main
();
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