-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
887 additions
and
341 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,42 @@ | ||
# Configurations for MaaCore | ||
[core] | ||
channel = "Beta" | ||
test_time = 0 | ||
channel = "Beta" # update channel of MaaCore, can be "Alpha", "Beta" or "Stable" | ||
test_time = 0 # time to test the speed of mirrors, 0 to disable | ||
# url of the MaaCore version api, used to get the latest version of MaaCore, | ||
# leave it empty to use the default url | ||
api_url = "https://github.com/MaaAssistantArknights/MaaRelease/raw/main/MaaAssistantArknights/api/version/" | ||
|
||
# Configurations for whether to install given components of MaaCore | ||
[core.components] | ||
library = true | ||
resource = true | ||
library = true # whether to install libraries of MaaCore | ||
resource = true # whether to install resources of MaaCore | ||
|
||
# Configurations for maa-cli | ||
[cli] | ||
channel = "Alpha" | ||
# the double v in @vversion is necessary instead of a typo | ||
channel = "Alpha" # update channel of maa-cli, can be "Alpha", "Beta" or "Stable" | ||
# url of the maa-cli version api, used to get the latest version of maa-cli, | ||
# if you want to use jsdelivr, the double v in @vversion is necessary instead of a typo | ||
api_url = "https://cdn.jsdelivr.net/gh/MaaAssistantArknights/maa-cli@vversion/" | ||
# url to download latest version of maa-cli, leave it empty to use the default url | ||
download_url = "https://github.com/MaaAssistantArknights/maa-cli/releases/download/" | ||
|
||
# Configurations for whether to install given components of maa-cli | ||
[cli.components] | ||
binary = false | ||
binary = false # whether to install binary of maa-cli | ||
|
||
# Configurations for hot update of resource | ||
# Note: this is different from `core.components.resource`, this is for hot update of resource | ||
# while this is hot update resource of MaaCore | ||
# You can not use this to hot update without any base resource | ||
[resource] | ||
auto_update = true # whether to auto update resource each time run maa task | ||
|
||
# Configurations for remote git repository of resource | ||
[resource.remote] | ||
protocol = "https" # protocol of remote resource repository, can be "http" or "https" | ||
host = "github.com" # host of remote resource repository | ||
owner = "MaaAssistantArknights" # owner of remote resource repository | ||
repo = "MaaResource" # repository name of remote resource repository | ||
branch = "main" # branch of remote resource repository | ||
# url of remote resource repository, leave it empty to contruct it from protocol, host, owner, repo | ||
url = "[email protected]:MaaAssistantArknights/MaaResource.git" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.