mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-17 09:55:29 +08:00
AlasGG
This commit is contained in:
165
config/deploy.template-AidLux-cn.yaml
Normal file
165
config/deploy.template-AidLux-cn.yaml
Normal file
@@ -0,0 +1,165 @@
|
||||
Deploy:
|
||||
Git:
|
||||
# URL of AzurLaneAutoScript repository
|
||||
# [CN user] Use 'git://git.lyoko.io/AzurLaneAutoScript' for faster and more stable download
|
||||
# [Other] Use 'https://github.com/LmeSzinc/AzurLaneAutoScript'
|
||||
Repository: git://git.lyoko.io/AzurLaneAutoScript
|
||||
# Branch of Alas
|
||||
# [Developer] Use 'dev', 'app', etc, to try new features
|
||||
# [Other] Use 'master', the stable branch
|
||||
Branch: master
|
||||
# Filepath of git executable `git.exe`
|
||||
# [Easy installer] Use './toolkit/Git/mingw64/bin/git.exe'
|
||||
# [Other] Use you own git
|
||||
GitExecutable: /usr/bin/git
|
||||
# Set git proxy
|
||||
# [CN user] Use your local http proxy (http://127.0.0.1:{port}) or socks5 proxy (socks5://127.0.0.1:{port})
|
||||
# [Other] Use null
|
||||
GitProxy: null
|
||||
# Set SSL Verify
|
||||
# [In most cases] Use true
|
||||
# [Other] Use false to when connected to an untrusted network
|
||||
SSLVerify: true
|
||||
# Update Alas at startup
|
||||
# [In most cases] Use true
|
||||
AutoUpdate: true
|
||||
# Whether to keep local changes during update
|
||||
# User settings, logs and screenshots will be kept, no mather this is true or false
|
||||
# [Developer] Use true, if you modified the code
|
||||
# [Other] Use false
|
||||
KeepLocalChanges: false
|
||||
|
||||
Python:
|
||||
# Filepath of python executable `python.exe`
|
||||
# [Easy installer] Use './toolkit/python.exe'
|
||||
# [Other] Use you own python, and its version should be 3.7.6 64bit
|
||||
PythonExecutable: /usr/bin/python
|
||||
# URL of pypi mirror
|
||||
# [CN user] Use 'https://pypi.tuna.tsinghua.edu.cn/simple' for faster and more stable download
|
||||
# [Other] Use null
|
||||
PypiMirror: https://pypi.tuna.tsinghua.edu.cn/simple
|
||||
# Install dependencies at startup
|
||||
# [In most cases] Use true
|
||||
InstallDependencies: true
|
||||
# Path to requirements.txt
|
||||
# [In most cases] Use 'requirements.txt'
|
||||
# [In AidLux] Use './deploy/AidLux/{version}/requirements.txt', version is default to 0.92
|
||||
RequirementsFile: ./deploy/AidLux/0.92/requirements.txt
|
||||
|
||||
Adb:
|
||||
# Filepath of ADB executable `adb.exe`
|
||||
# [Easy installer] Use './toolkit/Lib/site-packages/adbutils/binaries/adb.exe'
|
||||
# [Other] Use you own latest ADB, but not the ADB in your emulator
|
||||
AdbExecutable: /usr/bin/adb
|
||||
# Whether to replace ADB
|
||||
# Chinese emulators (NoxPlayer, LDPlayer, MemuPlayer, MuMuPlayer) use their own ADB, instead of the latest.
|
||||
# Different ADB servers will terminate each other at startup, resulting in disconnection.
|
||||
# For compatibility, we have to replace them all.
|
||||
# This will do:
|
||||
# 1. Terminate current ADB server
|
||||
# 2. Rename ADB from all emulators to *.bak and replace them by the AdbExecutable set above
|
||||
# 3. Brute-force connect to all available emulator instances
|
||||
# [In most cases] Use true
|
||||
# [In few cases] Use false, if you have other programs using ADB.
|
||||
ReplaceAdb: true
|
||||
# Brute-force connect to all available emulator instances
|
||||
# [In most cases] Use true
|
||||
AutoConnect: true
|
||||
# Re-install uiautomator2
|
||||
# [In most cases] Use true
|
||||
InstallUiautomator2: true
|
||||
|
||||
Ocr:
|
||||
# Run Ocr as a service, can reduce memory usage by not import mxnet everytime you start an alas instance
|
||||
|
||||
# Whether to use ocr server
|
||||
# [Default] false
|
||||
UseOcrServer: false
|
||||
# Whether to start ocr server when start GUI
|
||||
# [Default] false
|
||||
StartOcrServer: false
|
||||
# Port of ocr server runs by GUI
|
||||
# [Default] 22268
|
||||
OcrServerPort: 22268
|
||||
# Address of ocr server for alas instance to connect
|
||||
# [Default] 127.0.0.1:22268
|
||||
OcrClientAddress: 127.0.0.1:22268
|
||||
|
||||
Update:
|
||||
# Use auto update and builtin updater feature
|
||||
# This may cause problem https://github.com/LmeSzinc/AzurLaneAutoScript/issues/876
|
||||
EnableReload: true
|
||||
# Check update every X minute
|
||||
# [Disable] 0
|
||||
# [Default] 5
|
||||
CheckUpdateInterval: 5
|
||||
# Scheduled restart time
|
||||
# If there are updates, Alas will automatically restart and update at this time every day
|
||||
# and run all alas instances that running before restarted
|
||||
# [Disable] null
|
||||
# [Default] 03:50
|
||||
AutoRestartTime: 03:50
|
||||
|
||||
Misc:
|
||||
# Enable discord rich presence
|
||||
DiscordRichPresence: false
|
||||
|
||||
RemoteAccess:
|
||||
# Enable remote access (using ssh reverse tunnel serve by https://github.com/wang0618/localshare)
|
||||
# ! You need to set Password below to enable remote access since everyone can access to your alas if they have your url.
|
||||
# See here (http://app.azurlane.cloud/en.html) for more infomation.
|
||||
EnableRemoteAccess: false
|
||||
# Username when login into ssh server
|
||||
# [Default] null (will generate a random one when startup)
|
||||
SSHUser: null
|
||||
# Server to connect
|
||||
# [Default] null
|
||||
# [Format] host:port
|
||||
SSHServer: null
|
||||
# Filepath of SSH executable `ssh.exe`
|
||||
# [Default] ssh (find ssh in system PATH)
|
||||
# If you don't have one, install OpenSSH or download it here (https://github.com/PowerShell/Win32-OpenSSH/releases)
|
||||
SSHExecutable: ssh
|
||||
|
||||
Webui:
|
||||
# --host. Host to listen
|
||||
# [Use IPv6] '::'
|
||||
# [In most cases] Default to '0.0.0.0'
|
||||
WebuiHost: 0.0.0.0
|
||||
# --port. Port to listen
|
||||
# You will be able to access webui via `http://{host}:{port}`
|
||||
# [In most cases] Default to 22267
|
||||
WebuiPort: 22267
|
||||
# Language to use on web ui
|
||||
# 'zh-CN' for Chinese simplified
|
||||
# 'en-US' for English
|
||||
# 'ja-JP' for Japanese
|
||||
# 'zh-TW' for Chinese traditional
|
||||
Language: zh-CN
|
||||
# Theme of web ui
|
||||
# 'default' for light theme
|
||||
# 'dark' for dark theme
|
||||
Theme: default
|
||||
# Follow system DPI scaling
|
||||
# [In most cases] true
|
||||
# [In few cases] false to make Alas smaller, if you have a low resolution but high DPI scaling.
|
||||
DpiScaling: true
|
||||
# --key. Password of web ui
|
||||
# Useful when expose Alas to the public network
|
||||
Password: null
|
||||
# --cdn. Use jsdelivr cdn for pywebio static files (css, js).
|
||||
# 'true' for jsdelivr cdn
|
||||
# 'false' for self host cdn (automatically)
|
||||
# 'https://path.to.your/cdn' to use custom cdn
|
||||
CDN: false
|
||||
# --run. Auto-run specified config when startup
|
||||
# 'null' default no specified config
|
||||
# '["alas"]' specified "alas" config
|
||||
# '["alas","alas2"]' specified "alas" "alas2" configs
|
||||
Run: null
|
||||
# To update app.asar
|
||||
# [In most cases] true
|
||||
AppAsarUpdate: true
|
||||
# --no-sandbox. https://github.com/electron/electron/issues/30966
|
||||
# Some Windows systems cannot call the GPU normally for virtualization, and you need to manually turn off sandbox mode
|
||||
NoSandbox: false
|
||||
165
config/deploy.template-AidLux.yaml
Normal file
165
config/deploy.template-AidLux.yaml
Normal file
@@ -0,0 +1,165 @@
|
||||
Deploy:
|
||||
Git:
|
||||
# URL of AzurLaneAutoScript repository
|
||||
# [CN user] Use 'git://git.lyoko.io/AzurLaneAutoScript' for faster and more stable download
|
||||
# [Other] Use 'https://github.com/LmeSzinc/AzurLaneAutoScript'
|
||||
Repository: https://github.com/LmeSzinc/AzurLaneAutoScript
|
||||
# Branch of Alas
|
||||
# [Developer] Use 'dev', 'app', etc, to try new features
|
||||
# [Other] Use 'master', the stable branch
|
||||
Branch: master
|
||||
# Filepath of git executable `git.exe`
|
||||
# [Easy installer] Use './toolkit/Git/mingw64/bin/git.exe'
|
||||
# [Other] Use you own git
|
||||
GitExecutable: /usr/bin/git
|
||||
# Set git proxy
|
||||
# [CN user] Use your local http proxy (http://127.0.0.1:{port}) or socks5 proxy (socks5://127.0.0.1:{port})
|
||||
# [Other] Use null
|
||||
GitProxy: null
|
||||
# Set SSL Verify
|
||||
# [In most cases] Use true
|
||||
# [Other] Use false to when connected to an untrusted network
|
||||
SSLVerify: true
|
||||
# Update Alas at startup
|
||||
# [In most cases] Use true
|
||||
AutoUpdate: true
|
||||
# Whether to keep local changes during update
|
||||
# User settings, logs and screenshots will be kept, no mather this is true or false
|
||||
# [Developer] Use true, if you modified the code
|
||||
# [Other] Use false
|
||||
KeepLocalChanges: false
|
||||
|
||||
Python:
|
||||
# Filepath of python executable `python.exe`
|
||||
# [Easy installer] Use './toolkit/python.exe'
|
||||
# [Other] Use you own python, and its version should be 3.7.6 64bit
|
||||
PythonExecutable: /usr/bin/python
|
||||
# URL of pypi mirror
|
||||
# [CN user] Use 'https://pypi.tuna.tsinghua.edu.cn/simple' for faster and more stable download
|
||||
# [Other] Use null
|
||||
PypiMirror: null
|
||||
# Install dependencies at startup
|
||||
# [In most cases] Use true
|
||||
InstallDependencies: true
|
||||
# Path to requirements.txt
|
||||
# [In most cases] Use 'requirements.txt'
|
||||
# [In AidLux] Use './deploy/AidLux/{version}/requirements.txt', version is default to 0.92
|
||||
RequirementsFile: ./deploy/AidLux/0.92/requirements.txt
|
||||
|
||||
Adb:
|
||||
# Filepath of ADB executable `adb.exe`
|
||||
# [Easy installer] Use './toolkit/Lib/site-packages/adbutils/binaries/adb.exe'
|
||||
# [Other] Use you own latest ADB, but not the ADB in your emulator
|
||||
AdbExecutable: /usr/bin/adb
|
||||
# Whether to replace ADB
|
||||
# Chinese emulators (NoxPlayer, LDPlayer, MemuPlayer, MuMuPlayer) use their own ADB, instead of the latest.
|
||||
# Different ADB servers will terminate each other at startup, resulting in disconnection.
|
||||
# For compatibility, we have to replace them all.
|
||||
# This will do:
|
||||
# 1. Terminate current ADB server
|
||||
# 2. Rename ADB from all emulators to *.bak and replace them by the AdbExecutable set above
|
||||
# 3. Brute-force connect to all available emulator instances
|
||||
# [In most cases] Use true
|
||||
# [In few cases] Use false, if you have other programs using ADB.
|
||||
ReplaceAdb: true
|
||||
# Brute-force connect to all available emulator instances
|
||||
# [In most cases] Use true
|
||||
AutoConnect: true
|
||||
# Re-install uiautomator2
|
||||
# [In most cases] Use true
|
||||
InstallUiautomator2: true
|
||||
|
||||
Ocr:
|
||||
# Run Ocr as a service, can reduce memory usage by not import mxnet everytime you start an alas instance
|
||||
|
||||
# Whether to use ocr server
|
||||
# [Default] false
|
||||
UseOcrServer: false
|
||||
# Whether to start ocr server when start GUI
|
||||
# [Default] false
|
||||
StartOcrServer: false
|
||||
# Port of ocr server runs by GUI
|
||||
# [Default] 22268
|
||||
OcrServerPort: 22268
|
||||
# Address of ocr server for alas instance to connect
|
||||
# [Default] 127.0.0.1:22268
|
||||
OcrClientAddress: 127.0.0.1:22268
|
||||
|
||||
Update:
|
||||
# Use auto update and builtin updater feature
|
||||
# This may cause problem https://github.com/LmeSzinc/AzurLaneAutoScript/issues/876
|
||||
EnableReload: true
|
||||
# Check update every X minute
|
||||
# [Disable] 0
|
||||
# [Default] 5
|
||||
CheckUpdateInterval: 5
|
||||
# Scheduled restart time
|
||||
# If there are updates, Alas will automatically restart and update at this time every day
|
||||
# and run all alas instances that running before restarted
|
||||
# [Disable] null
|
||||
# [Default] 03:50
|
||||
AutoRestartTime: 03:50
|
||||
|
||||
Misc:
|
||||
# Enable discord rich presence
|
||||
DiscordRichPresence: false
|
||||
|
||||
RemoteAccess:
|
||||
# Enable remote access (using ssh reverse tunnel serve by https://github.com/wang0618/localshare)
|
||||
# ! You need to set Password below to enable remote access since everyone can access to your alas if they have your url.
|
||||
# See here (http://app.azurlane.cloud/en.html) for more infomation.
|
||||
EnableRemoteAccess: false
|
||||
# Username when login into ssh server
|
||||
# [Default] null (will generate a random one when startup)
|
||||
SSHUser: null
|
||||
# Server to connect
|
||||
# [Default] null
|
||||
# [Format] host:port
|
||||
SSHServer: null
|
||||
# Filepath of SSH executable `ssh.exe`
|
||||
# [Default] ssh (find ssh in system PATH)
|
||||
# If you don't have one, install OpenSSH or download it here (https://github.com/PowerShell/Win32-OpenSSH/releases)
|
||||
SSHExecutable: ssh
|
||||
|
||||
Webui:
|
||||
# --host. Host to listen
|
||||
# [Use IPv6] '::'
|
||||
# [In most cases] Default to '0.0.0.0'
|
||||
WebuiHost: 0.0.0.0
|
||||
# --port. Port to listen
|
||||
# You will be able to access webui via `http://{host}:{port}`
|
||||
# [In most cases] Default to 22267
|
||||
WebuiPort: 22267
|
||||
# Language to use on web ui
|
||||
# 'zh-CN' for Chinese simplified
|
||||
# 'en-US' for English
|
||||
# 'ja-JP' for Japanese
|
||||
# 'zh-TW' for Chinese traditional
|
||||
Language: en-US
|
||||
# Theme of web ui
|
||||
# 'default' for light theme
|
||||
# 'dark' for dark theme
|
||||
Theme: default
|
||||
# Follow system DPI scaling
|
||||
# [In most cases] true
|
||||
# [In few cases] false to make Alas smaller, if you have a low resolution but high DPI scaling.
|
||||
DpiScaling: true
|
||||
# --key. Password of web ui
|
||||
# Useful when expose Alas to the public network
|
||||
Password: null
|
||||
# --cdn. Use jsdelivr cdn for pywebio static files (css, js).
|
||||
# 'true' for jsdelivr cdn
|
||||
# 'false' for self host cdn (automatically)
|
||||
# 'https://path.to.your/cdn' to use custom cdn
|
||||
CDN: false
|
||||
# --run. Auto-run specified config when startup
|
||||
# 'null' default no specified config
|
||||
# '["alas"]' specified "alas" config
|
||||
# '["alas","alas2"]' specified "alas" "alas2" configs
|
||||
Run: null
|
||||
# To update app.asar
|
||||
# [In most cases] true
|
||||
AppAsarUpdate: true
|
||||
# --no-sandbox. https://github.com/electron/electron/issues/30966
|
||||
# Some Windows systems cannot call the GPU normally for virtualization, and you need to manually turn off sandbox mode
|
||||
NoSandbox: false
|
||||
165
config/deploy.template-cn.yaml
Normal file
165
config/deploy.template-cn.yaml
Normal file
@@ -0,0 +1,165 @@
|
||||
Deploy:
|
||||
Git:
|
||||
# URL of AzurLaneAutoScript repository
|
||||
# [CN user] Use 'git://git.lyoko.io/AzurLaneAutoScript' for faster and more stable download
|
||||
# [Other] Use 'https://github.com/LmeSzinc/AzurLaneAutoScript'
|
||||
Repository: git://git.lyoko.io/AzurLaneAutoScript
|
||||
# Branch of Alas
|
||||
# [Developer] Use 'dev', 'app', etc, to try new features
|
||||
# [Other] Use 'master', the stable branch
|
||||
Branch: master
|
||||
# Filepath of git executable `git.exe`
|
||||
# [Easy installer] Use './toolkit/Git/mingw64/bin/git.exe'
|
||||
# [Other] Use you own git
|
||||
GitExecutable: ./toolkit/Git/mingw64/bin/git.exe
|
||||
# Set git proxy
|
||||
# [CN user] Use your local http proxy (http://127.0.0.1:{port}) or socks5 proxy (socks5://127.0.0.1:{port})
|
||||
# [Other] Use null
|
||||
GitProxy: null
|
||||
# Set SSL Verify
|
||||
# [In most cases] Use true
|
||||
# [Other] Use false to when connected to an untrusted network
|
||||
SSLVerify: true
|
||||
# Update Alas at startup
|
||||
# [In most cases] Use true
|
||||
AutoUpdate: true
|
||||
# Whether to keep local changes during update
|
||||
# User settings, logs and screenshots will be kept, no mather this is true or false
|
||||
# [Developer] Use true, if you modified the code
|
||||
# [Other] Use false
|
||||
KeepLocalChanges: false
|
||||
|
||||
Python:
|
||||
# Filepath of python executable `python.exe`
|
||||
# [Easy installer] Use './toolkit/python.exe'
|
||||
# [Other] Use you own python, and its version should be 3.7.6 64bit
|
||||
PythonExecutable: ./toolkit/python.exe
|
||||
# URL of pypi mirror
|
||||
# [CN user] Use 'https://pypi.tuna.tsinghua.edu.cn/simple' for faster and more stable download
|
||||
# [Other] Use null
|
||||
PypiMirror: https://pypi.tuna.tsinghua.edu.cn/simple
|
||||
# Install dependencies at startup
|
||||
# [In most cases] Use true
|
||||
InstallDependencies: true
|
||||
# Path to requirements.txt
|
||||
# [In most cases] Use 'requirements.txt'
|
||||
# [In AidLux] Use './deploy/AidLux/{version}/requirements.txt', version is default to 0.92
|
||||
RequirementsFile: requirements.txt
|
||||
|
||||
Adb:
|
||||
# Filepath of ADB executable `adb.exe`
|
||||
# [Easy installer] Use './toolkit/Lib/site-packages/adbutils/binaries/adb.exe'
|
||||
# [Other] Use you own latest ADB, but not the ADB in your emulator
|
||||
AdbExecutable: ./toolkit/Lib/site-packages/adbutils/binaries/adb.exe
|
||||
# Whether to replace ADB
|
||||
# Chinese emulators (NoxPlayer, LDPlayer, MemuPlayer, MuMuPlayer) use their own ADB, instead of the latest.
|
||||
# Different ADB servers will terminate each other at startup, resulting in disconnection.
|
||||
# For compatibility, we have to replace them all.
|
||||
# This will do:
|
||||
# 1. Terminate current ADB server
|
||||
# 2. Rename ADB from all emulators to *.bak and replace them by the AdbExecutable set above
|
||||
# 3. Brute-force connect to all available emulator instances
|
||||
# [In most cases] Use true
|
||||
# [In few cases] Use false, if you have other programs using ADB.
|
||||
ReplaceAdb: true
|
||||
# Brute-force connect to all available emulator instances
|
||||
# [In most cases] Use true
|
||||
AutoConnect: true
|
||||
# Re-install uiautomator2
|
||||
# [In most cases] Use true
|
||||
InstallUiautomator2: true
|
||||
|
||||
Ocr:
|
||||
# Run Ocr as a service, can reduce memory usage by not import mxnet everytime you start an alas instance
|
||||
|
||||
# Whether to use ocr server
|
||||
# [Default] false
|
||||
UseOcrServer: false
|
||||
# Whether to start ocr server when start GUI
|
||||
# [Default] false
|
||||
StartOcrServer: false
|
||||
# Port of ocr server runs by GUI
|
||||
# [Default] 22268
|
||||
OcrServerPort: 22268
|
||||
# Address of ocr server for alas instance to connect
|
||||
# [Default] 127.0.0.1:22268
|
||||
OcrClientAddress: 127.0.0.1:22268
|
||||
|
||||
Update:
|
||||
# Use auto update and builtin updater feature
|
||||
# This may cause problem https://github.com/LmeSzinc/AzurLaneAutoScript/issues/876
|
||||
EnableReload: true
|
||||
# Check update every X minute
|
||||
# [Disable] 0
|
||||
# [Default] 5
|
||||
CheckUpdateInterval: 5
|
||||
# Scheduled restart time
|
||||
# If there are updates, Alas will automatically restart and update at this time every day
|
||||
# and run all alas instances that running before restarted
|
||||
# [Disable] null
|
||||
# [Default] 03:50
|
||||
AutoRestartTime: 03:50
|
||||
|
||||
Misc:
|
||||
# Enable discord rich presence
|
||||
DiscordRichPresence: false
|
||||
|
||||
RemoteAccess:
|
||||
# Enable remote access (using ssh reverse tunnel serve by https://github.com/wang0618/localshare)
|
||||
# ! You need to set Password below to enable remote access since everyone can access to your alas if they have your url.
|
||||
# See here (http://app.azurlane.cloud/en.html) for more infomation.
|
||||
EnableRemoteAccess: false
|
||||
# Username when login into ssh server
|
||||
# [Default] null (will generate a random one when startup)
|
||||
SSHUser: null
|
||||
# Server to connect
|
||||
# [Default] null
|
||||
# [Format] host:port
|
||||
SSHServer: null
|
||||
# Filepath of SSH executable `ssh.exe`
|
||||
# [Default] ssh (find ssh in system PATH)
|
||||
# If you don't have one, install OpenSSH or download it here (https://github.com/PowerShell/Win32-OpenSSH/releases)
|
||||
SSHExecutable: ssh
|
||||
|
||||
Webui:
|
||||
# --host. Host to listen
|
||||
# [Use IPv6] '::'
|
||||
# [In most cases] Default to '0.0.0.0'
|
||||
WebuiHost: 0.0.0.0
|
||||
# --port. Port to listen
|
||||
# You will be able to access webui via `http://{host}:{port}`
|
||||
# [In most cases] Default to 22267
|
||||
WebuiPort: 22267
|
||||
# Language to use on web ui
|
||||
# 'zh-CN' for Chinese simplified
|
||||
# 'en-US' for English
|
||||
# 'ja-JP' for Japanese
|
||||
# 'zh-TW' for Chinese traditional
|
||||
Language: zh-CN
|
||||
# Theme of web ui
|
||||
# 'default' for light theme
|
||||
# 'dark' for dark theme
|
||||
Theme: default
|
||||
# Follow system DPI scaling
|
||||
# [In most cases] true
|
||||
# [In few cases] false to make Alas smaller, if you have a low resolution but high DPI scaling.
|
||||
DpiScaling: true
|
||||
# --key. Password of web ui
|
||||
# Useful when expose Alas to the public network
|
||||
Password: null
|
||||
# --cdn. Use jsdelivr cdn for pywebio static files (css, js).
|
||||
# 'true' for jsdelivr cdn
|
||||
# 'false' for self host cdn (automatically)
|
||||
# 'https://path.to.your/cdn' to use custom cdn
|
||||
CDN: false
|
||||
# --run. Auto-run specified config when startup
|
||||
# 'null' default no specified config
|
||||
# '["alas"]' specified "alas" config
|
||||
# '["alas","alas2"]' specified "alas" "alas2" configs
|
||||
Run: null
|
||||
# To update app.asar
|
||||
# [In most cases] true
|
||||
AppAsarUpdate: true
|
||||
# --no-sandbox. https://github.com/electron/electron/issues/30966
|
||||
# Some Windows systems cannot call the GPU normally for virtualization, and you need to manually turn off sandbox mode
|
||||
NoSandbox: false
|
||||
165
config/deploy.template-docker-cn.yaml
Normal file
165
config/deploy.template-docker-cn.yaml
Normal file
@@ -0,0 +1,165 @@
|
||||
Deploy:
|
||||
Git:
|
||||
# URL of AzurLaneAutoScript repository
|
||||
# [CN user] Use 'git://git.lyoko.io/AzurLaneAutoScript' for faster and more stable download
|
||||
# [Other] Use 'https://github.com/LmeSzinc/AzurLaneAutoScript'
|
||||
Repository: git://git.lyoko.io/AzurLaneAutoScript
|
||||
# Branch of Alas
|
||||
# [Developer] Use 'dev', 'app', etc, to try new features
|
||||
# [Other] Use 'master', the stable branch
|
||||
Branch: master
|
||||
# Filepath of git executable `git.exe`
|
||||
# [Easy installer] Use './toolkit/Git/mingw64/bin/git.exe'
|
||||
# [Other] Use you own git
|
||||
GitExecutable: /usr/bin/git
|
||||
# Set git proxy
|
||||
# [CN user] Use your local http proxy (http://127.0.0.1:{port}) or socks5 proxy (socks5://127.0.0.1:{port})
|
||||
# [Other] Use null
|
||||
GitProxy: null
|
||||
# Set SSL Verify
|
||||
# [In most cases] Use true
|
||||
# [Other] Use false to when connected to an untrusted network
|
||||
SSLVerify: true
|
||||
# Update Alas at startup
|
||||
# [In most cases] Use true
|
||||
AutoUpdate: true
|
||||
# Whether to keep local changes during update
|
||||
# User settings, logs and screenshots will be kept, no mather this is true or false
|
||||
# [Developer] Use true, if you modified the code
|
||||
# [Other] Use false
|
||||
KeepLocalChanges: false
|
||||
|
||||
Python:
|
||||
# Filepath of python executable `python.exe`
|
||||
# [Easy installer] Use './toolkit/python.exe'
|
||||
# [Other] Use you own python, and its version should be 3.7.6 64bit
|
||||
PythonExecutable: /usr/local/bin/python
|
||||
# URL of pypi mirror
|
||||
# [CN user] Use 'https://pypi.tuna.tsinghua.edu.cn/simple' for faster and more stable download
|
||||
# [Other] Use null
|
||||
PypiMirror: https://pypi.tuna.tsinghua.edu.cn/simple
|
||||
# Install dependencies at startup
|
||||
# [In most cases] Use true
|
||||
InstallDependencies: true
|
||||
# Path to requirements.txt
|
||||
# [In most cases] Use 'requirements.txt'
|
||||
# [In AidLux] Use './deploy/AidLux/{version}/requirements.txt', version is default to 0.92
|
||||
RequirementsFile: ./deploy/docker/requirements.txt
|
||||
|
||||
Adb:
|
||||
# Filepath of ADB executable `adb.exe`
|
||||
# [Easy installer] Use './toolkit/Lib/site-packages/adbutils/binaries/adb.exe'
|
||||
# [Other] Use you own latest ADB, but not the ADB in your emulator
|
||||
AdbExecutable: /usr/bin/adb
|
||||
# Whether to replace ADB
|
||||
# Chinese emulators (NoxPlayer, LDPlayer, MemuPlayer, MuMuPlayer) use their own ADB, instead of the latest.
|
||||
# Different ADB servers will terminate each other at startup, resulting in disconnection.
|
||||
# For compatibility, we have to replace them all.
|
||||
# This will do:
|
||||
# 1. Terminate current ADB server
|
||||
# 2. Rename ADB from all emulators to *.bak and replace them by the AdbExecutable set above
|
||||
# 3. Brute-force connect to all available emulator instances
|
||||
# [In most cases] Use true
|
||||
# [In few cases] Use false, if you have other programs using ADB.
|
||||
ReplaceAdb: true
|
||||
# Brute-force connect to all available emulator instances
|
||||
# [In most cases] Use true
|
||||
AutoConnect: true
|
||||
# Re-install uiautomator2
|
||||
# [In most cases] Use true
|
||||
InstallUiautomator2: true
|
||||
|
||||
Ocr:
|
||||
# Run Ocr as a service, can reduce memory usage by not import mxnet everytime you start an alas instance
|
||||
|
||||
# Whether to use ocr server
|
||||
# [Default] false
|
||||
UseOcrServer: false
|
||||
# Whether to start ocr server when start GUI
|
||||
# [Default] false
|
||||
StartOcrServer: false
|
||||
# Port of ocr server runs by GUI
|
||||
# [Default] 22268
|
||||
OcrServerPort: 22268
|
||||
# Address of ocr server for alas instance to connect
|
||||
# [Default] 127.0.0.1:22268
|
||||
OcrClientAddress: 127.0.0.1:22268
|
||||
|
||||
Update:
|
||||
# Use auto update and builtin updater feature
|
||||
# This may cause problem https://github.com/LmeSzinc/AzurLaneAutoScript/issues/876
|
||||
EnableReload: true
|
||||
# Check update every X minute
|
||||
# [Disable] 0
|
||||
# [Default] 5
|
||||
CheckUpdateInterval: 5
|
||||
# Scheduled restart time
|
||||
# If there are updates, Alas will automatically restart and update at this time every day
|
||||
# and run all alas instances that running before restarted
|
||||
# [Disable] null
|
||||
# [Default] 03:50
|
||||
AutoRestartTime: 03:50
|
||||
|
||||
Misc:
|
||||
# Enable discord rich presence
|
||||
DiscordRichPresence: false
|
||||
|
||||
RemoteAccess:
|
||||
# Enable remote access (using ssh reverse tunnel serve by https://github.com/wang0618/localshare)
|
||||
# ! You need to set Password below to enable remote access since everyone can access to your alas if they have your url.
|
||||
# See here (http://app.azurlane.cloud/en.html) for more infomation.
|
||||
EnableRemoteAccess: false
|
||||
# Username when login into ssh server
|
||||
# [Default] null (will generate a random one when startup)
|
||||
SSHUser: null
|
||||
# Server to connect
|
||||
# [Default] null
|
||||
# [Format] host:port
|
||||
SSHServer: null
|
||||
# Filepath of SSH executable `ssh.exe`
|
||||
# [Default] ssh (find ssh in system PATH)
|
||||
# If you don't have one, install OpenSSH or download it here (https://github.com/PowerShell/Win32-OpenSSH/releases)
|
||||
SSHExecutable: ssh
|
||||
|
||||
Webui:
|
||||
# --host. Host to listen
|
||||
# [Use IPv6] '::'
|
||||
# [In most cases] Default to '0.0.0.0'
|
||||
WebuiHost: 0.0.0.0
|
||||
# --port. Port to listen
|
||||
# You will be able to access webui via `http://{host}:{port}`
|
||||
# [In most cases] Default to 22267
|
||||
WebuiPort: 22267
|
||||
# Language to use on web ui
|
||||
# 'zh-CN' for Chinese simplified
|
||||
# 'en-US' for English
|
||||
# 'ja-JP' for Japanese
|
||||
# 'zh-TW' for Chinese traditional
|
||||
Language: zh-CN
|
||||
# Theme of web ui
|
||||
# 'default' for light theme
|
||||
# 'dark' for dark theme
|
||||
Theme: default
|
||||
# Follow system DPI scaling
|
||||
# [In most cases] true
|
||||
# [In few cases] false to make Alas smaller, if you have a low resolution but high DPI scaling.
|
||||
DpiScaling: true
|
||||
# --key. Password of web ui
|
||||
# Useful when expose Alas to the public network
|
||||
Password: null
|
||||
# --cdn. Use jsdelivr cdn for pywebio static files (css, js).
|
||||
# 'true' for jsdelivr cdn
|
||||
# 'false' for self host cdn (automatically)
|
||||
# 'https://path.to.your/cdn' to use custom cdn
|
||||
CDN: false
|
||||
# --run. Auto-run specified config when startup
|
||||
# 'null' default no specified config
|
||||
# '["alas"]' specified "alas" config
|
||||
# '["alas","alas2"]' specified "alas" "alas2" configs
|
||||
Run: null
|
||||
# To update app.asar
|
||||
# [In most cases] true
|
||||
AppAsarUpdate: true
|
||||
# --no-sandbox. https://github.com/electron/electron/issues/30966
|
||||
# Some Windows systems cannot call the GPU normally for virtualization, and you need to manually turn off sandbox mode
|
||||
NoSandbox: false
|
||||
165
config/deploy.template-docker.yaml
Normal file
165
config/deploy.template-docker.yaml
Normal file
@@ -0,0 +1,165 @@
|
||||
Deploy:
|
||||
Git:
|
||||
# URL of AzurLaneAutoScript repository
|
||||
# [CN user] Use 'git://git.lyoko.io/AzurLaneAutoScript' for faster and more stable download
|
||||
# [Other] Use 'https://github.com/LmeSzinc/AzurLaneAutoScript'
|
||||
Repository: https://github.com/LmeSzinc/AzurLaneAutoScript
|
||||
# Branch of Alas
|
||||
# [Developer] Use 'dev', 'app', etc, to try new features
|
||||
# [Other] Use 'master', the stable branch
|
||||
Branch: master
|
||||
# Filepath of git executable `git.exe`
|
||||
# [Easy installer] Use './toolkit/Git/mingw64/bin/git.exe'
|
||||
# [Other] Use you own git
|
||||
GitExecutable: /usr/bin/git
|
||||
# Set git proxy
|
||||
# [CN user] Use your local http proxy (http://127.0.0.1:{port}) or socks5 proxy (socks5://127.0.0.1:{port})
|
||||
# [Other] Use null
|
||||
GitProxy: null
|
||||
# Set SSL Verify
|
||||
# [In most cases] Use true
|
||||
# [Other] Use false to when connected to an untrusted network
|
||||
SSLVerify: true
|
||||
# Update Alas at startup
|
||||
# [In most cases] Use true
|
||||
AutoUpdate: true
|
||||
# Whether to keep local changes during update
|
||||
# User settings, logs and screenshots will be kept, no mather this is true or false
|
||||
# [Developer] Use true, if you modified the code
|
||||
# [Other] Use false
|
||||
KeepLocalChanges: false
|
||||
|
||||
Python:
|
||||
# Filepath of python executable `python.exe`
|
||||
# [Easy installer] Use './toolkit/python.exe'
|
||||
# [Other] Use you own python, and its version should be 3.7.6 64bit
|
||||
PythonExecutable: /usr/local/bin/python
|
||||
# URL of pypi mirror
|
||||
# [CN user] Use 'https://pypi.tuna.tsinghua.edu.cn/simple' for faster and more stable download
|
||||
# [Other] Use null
|
||||
PypiMirror: null
|
||||
# Install dependencies at startup
|
||||
# [In most cases] Use true
|
||||
InstallDependencies: true
|
||||
# Path to requirements.txt
|
||||
# [In most cases] Use 'requirements.txt'
|
||||
# [In AidLux] Use './deploy/AidLux/{version}/requirements.txt', version is default to 0.92
|
||||
RequirementsFile: ./deploy/docker/requirements.txt
|
||||
|
||||
Adb:
|
||||
# Filepath of ADB executable `adb.exe`
|
||||
# [Easy installer] Use './toolkit/Lib/site-packages/adbutils/binaries/adb.exe'
|
||||
# [Other] Use you own latest ADB, but not the ADB in your emulator
|
||||
AdbExecutable: /usr/bin/adb
|
||||
# Whether to replace ADB
|
||||
# Chinese emulators (NoxPlayer, LDPlayer, MemuPlayer, MuMuPlayer) use their own ADB, instead of the latest.
|
||||
# Different ADB servers will terminate each other at startup, resulting in disconnection.
|
||||
# For compatibility, we have to replace them all.
|
||||
# This will do:
|
||||
# 1. Terminate current ADB server
|
||||
# 2. Rename ADB from all emulators to *.bak and replace them by the AdbExecutable set above
|
||||
# 3. Brute-force connect to all available emulator instances
|
||||
# [In most cases] Use true
|
||||
# [In few cases] Use false, if you have other programs using ADB.
|
||||
ReplaceAdb: true
|
||||
# Brute-force connect to all available emulator instances
|
||||
# [In most cases] Use true
|
||||
AutoConnect: true
|
||||
# Re-install uiautomator2
|
||||
# [In most cases] Use true
|
||||
InstallUiautomator2: true
|
||||
|
||||
Ocr:
|
||||
# Run Ocr as a service, can reduce memory usage by not import mxnet everytime you start an alas instance
|
||||
|
||||
# Whether to use ocr server
|
||||
# [Default] false
|
||||
UseOcrServer: false
|
||||
# Whether to start ocr server when start GUI
|
||||
# [Default] false
|
||||
StartOcrServer: false
|
||||
# Port of ocr server runs by GUI
|
||||
# [Default] 22268
|
||||
OcrServerPort: 22268
|
||||
# Address of ocr server for alas instance to connect
|
||||
# [Default] 127.0.0.1:22268
|
||||
OcrClientAddress: 127.0.0.1:22268
|
||||
|
||||
Update:
|
||||
# Use auto update and builtin updater feature
|
||||
# This may cause problem https://github.com/LmeSzinc/AzurLaneAutoScript/issues/876
|
||||
EnableReload: true
|
||||
# Check update every X minute
|
||||
# [Disable] 0
|
||||
# [Default] 5
|
||||
CheckUpdateInterval: 5
|
||||
# Scheduled restart time
|
||||
# If there are updates, Alas will automatically restart and update at this time every day
|
||||
# and run all alas instances that running before restarted
|
||||
# [Disable] null
|
||||
# [Default] 03:50
|
||||
AutoRestartTime: 03:50
|
||||
|
||||
Misc:
|
||||
# Enable discord rich presence
|
||||
DiscordRichPresence: false
|
||||
|
||||
RemoteAccess:
|
||||
# Enable remote access (using ssh reverse tunnel serve by https://github.com/wang0618/localshare)
|
||||
# ! You need to set Password below to enable remote access since everyone can access to your alas if they have your url.
|
||||
# See here (http://app.azurlane.cloud/en.html) for more infomation.
|
||||
EnableRemoteAccess: false
|
||||
# Username when login into ssh server
|
||||
# [Default] null (will generate a random one when startup)
|
||||
SSHUser: null
|
||||
# Server to connect
|
||||
# [Default] null
|
||||
# [Format] host:port
|
||||
SSHServer: null
|
||||
# Filepath of SSH executable `ssh.exe`
|
||||
# [Default] ssh (find ssh in system PATH)
|
||||
# If you don't have one, install OpenSSH or download it here (https://github.com/PowerShell/Win32-OpenSSH/releases)
|
||||
SSHExecutable: ssh
|
||||
|
||||
Webui:
|
||||
# --host. Host to listen
|
||||
# [Use IPv6] '::'
|
||||
# [In most cases] Default to '0.0.0.0'
|
||||
WebuiHost: 0.0.0.0
|
||||
# --port. Port to listen
|
||||
# You will be able to access webui via `http://{host}:{port}`
|
||||
# [In most cases] Default to 22267
|
||||
WebuiPort: 22267
|
||||
# Language to use on web ui
|
||||
# 'zh-CN' for Chinese simplified
|
||||
# 'en-US' for English
|
||||
# 'ja-JP' for Japanese
|
||||
# 'zh-TW' for Chinese traditional
|
||||
Language: en-US
|
||||
# Theme of web ui
|
||||
# 'default' for light theme
|
||||
# 'dark' for dark theme
|
||||
Theme: default
|
||||
# Follow system DPI scaling
|
||||
# [In most cases] true
|
||||
# [In few cases] false to make Alas smaller, if you have a low resolution but high DPI scaling.
|
||||
DpiScaling: true
|
||||
# --key. Password of web ui
|
||||
# Useful when expose Alas to the public network
|
||||
Password: null
|
||||
# --cdn. Use jsdelivr cdn for pywebio static files (css, js).
|
||||
# 'true' for jsdelivr cdn
|
||||
# 'false' for self host cdn (automatically)
|
||||
# 'https://path.to.your/cdn' to use custom cdn
|
||||
CDN: false
|
||||
# --run. Auto-run specified config when startup
|
||||
# 'null' default no specified config
|
||||
# '["alas"]' specified "alas" config
|
||||
# '["alas","alas2"]' specified "alas" "alas2" configs
|
||||
Run: null
|
||||
# To update app.asar
|
||||
# [In most cases] true
|
||||
AppAsarUpdate: true
|
||||
# --no-sandbox. https://github.com/electron/electron/issues/30966
|
||||
# Some Windows systems cannot call the GPU normally for virtualization, and you need to manually turn off sandbox mode
|
||||
NoSandbox: false
|
||||
165
config/deploy.template-linux-cn.yaml
Normal file
165
config/deploy.template-linux-cn.yaml
Normal file
@@ -0,0 +1,165 @@
|
||||
Deploy:
|
||||
Git:
|
||||
# URL of AzurLaneAutoScript repository
|
||||
# [CN user] Use 'git://git.lyoko.io/AzurLaneAutoScript' for faster and more stable download
|
||||
# [Other] Use 'https://github.com/LmeSzinc/AzurLaneAutoScript'
|
||||
Repository: git://git.lyoko.io/AzurLaneAutoScript
|
||||
# Branch of Alas
|
||||
# [Developer] Use 'dev', 'app', etc, to try new features
|
||||
# [Other] Use 'master', the stable branch
|
||||
Branch: master
|
||||
# Filepath of git executable `git.exe`
|
||||
# [Easy installer] Use './toolkit/Git/mingw64/bin/git.exe'
|
||||
# [Other] Use you own git
|
||||
GitExecutable: /usr/bin/git
|
||||
# Set git proxy
|
||||
# [CN user] Use your local http proxy (http://127.0.0.1:{port}) or socks5 proxy (socks5://127.0.0.1:{port})
|
||||
# [Other] Use null
|
||||
GitProxy: null
|
||||
# Set SSL Verify
|
||||
# [In most cases] Use true
|
||||
# [Other] Use false to when connected to an untrusted network
|
||||
SSLVerify: true
|
||||
# Update Alas at startup
|
||||
# [In most cases] Use true
|
||||
AutoUpdate: true
|
||||
# Whether to keep local changes during update
|
||||
# User settings, logs and screenshots will be kept, no mather this is true or false
|
||||
# [Developer] Use true, if you modified the code
|
||||
# [Other] Use false
|
||||
KeepLocalChanges: false
|
||||
|
||||
Python:
|
||||
# Filepath of python executable `python.exe`
|
||||
# [Easy installer] Use './toolkit/python.exe'
|
||||
# [Other] Use you own python, and its version should be 3.7.6 64bit
|
||||
PythonExecutable: python
|
||||
# URL of pypi mirror
|
||||
# [CN user] Use 'https://pypi.tuna.tsinghua.edu.cn/simple' for faster and more stable download
|
||||
# [Other] Use null
|
||||
PypiMirror: https://pypi.tuna.tsinghua.edu.cn/simple
|
||||
# Install dependencies at startup
|
||||
# [In most cases] Use true
|
||||
InstallDependencies: true
|
||||
# Path to requirements.txt
|
||||
# [In most cases] Use 'requirements.txt'
|
||||
# [In AidLux] Use './deploy/AidLux/{version}/requirements.txt', version is default to 0.92
|
||||
RequirementsFile: ./deploy/headless/requirements.txt
|
||||
|
||||
Adb:
|
||||
# Filepath of ADB executable `adb.exe`
|
||||
# [Easy installer] Use './toolkit/Lib/site-packages/adbutils/binaries/adb.exe'
|
||||
# [Other] Use you own latest ADB, but not the ADB in your emulator
|
||||
AdbExecutable: /usr/bin/adb
|
||||
# Whether to replace ADB
|
||||
# Chinese emulators (NoxPlayer, LDPlayer, MemuPlayer, MuMuPlayer) use their own ADB, instead of the latest.
|
||||
# Different ADB servers will terminate each other at startup, resulting in disconnection.
|
||||
# For compatibility, we have to replace them all.
|
||||
# This will do:
|
||||
# 1. Terminate current ADB server
|
||||
# 2. Rename ADB from all emulators to *.bak and replace them by the AdbExecutable set above
|
||||
# 3. Brute-force connect to all available emulator instances
|
||||
# [In most cases] Use true
|
||||
# [In few cases] Use false, if you have other programs using ADB.
|
||||
ReplaceAdb: false
|
||||
# Brute-force connect to all available emulator instances
|
||||
# [In most cases] Use true
|
||||
AutoConnect: true
|
||||
# Re-install uiautomator2
|
||||
# [In most cases] Use true
|
||||
InstallUiautomator2: true
|
||||
|
||||
Ocr:
|
||||
# Run Ocr as a service, can reduce memory usage by not import mxnet everytime you start an alas instance
|
||||
|
||||
# Whether to use ocr server
|
||||
# [Default] false
|
||||
UseOcrServer: false
|
||||
# Whether to start ocr server when start GUI
|
||||
# [Default] false
|
||||
StartOcrServer: false
|
||||
# Port of ocr server runs by GUI
|
||||
# [Default] 22268
|
||||
OcrServerPort: 22268
|
||||
# Address of ocr server for alas instance to connect
|
||||
# [Default] 127.0.0.1:22268
|
||||
OcrClientAddress: 127.0.0.1:22268
|
||||
|
||||
Update:
|
||||
# Use auto update and builtin updater feature
|
||||
# This may cause problem https://github.com/LmeSzinc/AzurLaneAutoScript/issues/876
|
||||
EnableReload: true
|
||||
# Check update every X minute
|
||||
# [Disable] 0
|
||||
# [Default] 5
|
||||
CheckUpdateInterval: 5
|
||||
# Scheduled restart time
|
||||
# If there are updates, Alas will automatically restart and update at this time every day
|
||||
# and run all alas instances that running before restarted
|
||||
# [Disable] null
|
||||
# [Default] 03:50
|
||||
AutoRestartTime: 03:50
|
||||
|
||||
Misc:
|
||||
# Enable discord rich presence
|
||||
DiscordRichPresence: false
|
||||
|
||||
RemoteAccess:
|
||||
# Enable remote access (using ssh reverse tunnel serve by https://github.com/wang0618/localshare)
|
||||
# ! You need to set Password below to enable remote access since everyone can access to your alas if they have your url.
|
||||
# See here (http://app.azurlane.cloud/en.html) for more infomation.
|
||||
EnableRemoteAccess: false
|
||||
# Username when login into ssh server
|
||||
# [Default] null (will generate a random one when startup)
|
||||
SSHUser: null
|
||||
# Server to connect
|
||||
# [Default] null
|
||||
# [Format] host:port
|
||||
SSHServer: null
|
||||
# Filepath of SSH executable `ssh.exe`
|
||||
# [Default] ssh (find ssh in system PATH)
|
||||
# If you don't have one, install OpenSSH or download it here (https://github.com/PowerShell/Win32-OpenSSH/releases)
|
||||
SSHExecutable: /usr/bin/ssh
|
||||
|
||||
Webui:
|
||||
# --host. Host to listen
|
||||
# [Use IPv6] '::'
|
||||
# [In most cases] Default to '0.0.0.0'
|
||||
WebuiHost: 0.0.0.0
|
||||
# --port. Port to listen
|
||||
# You will be able to access webui via `http://{host}:{port}`
|
||||
# [In most cases] Default to 22267
|
||||
WebuiPort: 22267
|
||||
# Language to use on web ui
|
||||
# 'zh-CN' for Chinese simplified
|
||||
# 'en-US' for English
|
||||
# 'ja-JP' for Japanese
|
||||
# 'zh-TW' for Chinese traditional
|
||||
Language: zh-CN
|
||||
# Theme of web ui
|
||||
# 'default' for light theme
|
||||
# 'dark' for dark theme
|
||||
Theme: default
|
||||
# Follow system DPI scaling
|
||||
# [In most cases] true
|
||||
# [In few cases] false to make Alas smaller, if you have a low resolution but high DPI scaling.
|
||||
DpiScaling: true
|
||||
# --key. Password of web ui
|
||||
# Useful when expose Alas to the public network
|
||||
Password: null
|
||||
# --cdn. Use jsdelivr cdn for pywebio static files (css, js).
|
||||
# 'true' for jsdelivr cdn
|
||||
# 'false' for self host cdn (automatically)
|
||||
# 'https://path.to.your/cdn' to use custom cdn
|
||||
CDN: false
|
||||
# --run. Auto-run specified config when startup
|
||||
# 'null' default no specified config
|
||||
# '["alas"]' specified "alas" config
|
||||
# '["alas","alas2"]' specified "alas" "alas2" configs
|
||||
Run: null
|
||||
# To update app.asar
|
||||
# [In most cases] true
|
||||
AppAsarUpdate: true
|
||||
# --no-sandbox. https://github.com/electron/electron/issues/30966
|
||||
# Some Windows systems cannot call the GPU normally for virtualization, and you need to manually turn off sandbox mode
|
||||
NoSandbox: false
|
||||
165
config/deploy.template-linux.yaml
Normal file
165
config/deploy.template-linux.yaml
Normal file
@@ -0,0 +1,165 @@
|
||||
Deploy:
|
||||
Git:
|
||||
# URL of AzurLaneAutoScript repository
|
||||
# [CN user] Use 'git://git.lyoko.io/AzurLaneAutoScript' for faster and more stable download
|
||||
# [Other] Use 'https://github.com/LmeSzinc/AzurLaneAutoScript'
|
||||
Repository: https://github.com/LmeSzinc/AzurLaneAutoScript
|
||||
# Branch of Alas
|
||||
# [Developer] Use 'dev', 'app', etc, to try new features
|
||||
# [Other] Use 'master', the stable branch
|
||||
Branch: master
|
||||
# Filepath of git executable `git.exe`
|
||||
# [Easy installer] Use './toolkit/Git/mingw64/bin/git.exe'
|
||||
# [Other] Use you own git
|
||||
GitExecutable: /usr/bin/git
|
||||
# Set git proxy
|
||||
# [CN user] Use your local http proxy (http://127.0.0.1:{port}) or socks5 proxy (socks5://127.0.0.1:{port})
|
||||
# [Other] Use null
|
||||
GitProxy: null
|
||||
# Set SSL Verify
|
||||
# [In most cases] Use true
|
||||
# [Other] Use false to when connected to an untrusted network
|
||||
SSLVerify: true
|
||||
# Update Alas at startup
|
||||
# [In most cases] Use true
|
||||
AutoUpdate: true
|
||||
# Whether to keep local changes during update
|
||||
# User settings, logs and screenshots will be kept, no mather this is true or false
|
||||
# [Developer] Use true, if you modified the code
|
||||
# [Other] Use false
|
||||
KeepLocalChanges: false
|
||||
|
||||
Python:
|
||||
# Filepath of python executable `python.exe`
|
||||
# [Easy installer] Use './toolkit/python.exe'
|
||||
# [Other] Use you own python, and its version should be 3.7.6 64bit
|
||||
PythonExecutable: python
|
||||
# URL of pypi mirror
|
||||
# [CN user] Use 'https://pypi.tuna.tsinghua.edu.cn/simple' for faster and more stable download
|
||||
# [Other] Use null
|
||||
PypiMirror: null
|
||||
# Install dependencies at startup
|
||||
# [In most cases] Use true
|
||||
InstallDependencies: true
|
||||
# Path to requirements.txt
|
||||
# [In most cases] Use 'requirements.txt'
|
||||
# [In AidLux] Use './deploy/AidLux/{version}/requirements.txt', version is default to 0.92
|
||||
RequirementsFile: ./deploy/headless/requirements.txt
|
||||
|
||||
Adb:
|
||||
# Filepath of ADB executable `adb.exe`
|
||||
# [Easy installer] Use './toolkit/Lib/site-packages/adbutils/binaries/adb.exe'
|
||||
# [Other] Use you own latest ADB, but not the ADB in your emulator
|
||||
AdbExecutable: /usr/bin/adb
|
||||
# Whether to replace ADB
|
||||
# Chinese emulators (NoxPlayer, LDPlayer, MemuPlayer, MuMuPlayer) use their own ADB, instead of the latest.
|
||||
# Different ADB servers will terminate each other at startup, resulting in disconnection.
|
||||
# For compatibility, we have to replace them all.
|
||||
# This will do:
|
||||
# 1. Terminate current ADB server
|
||||
# 2. Rename ADB from all emulators to *.bak and replace them by the AdbExecutable set above
|
||||
# 3. Brute-force connect to all available emulator instances
|
||||
# [In most cases] Use true
|
||||
# [In few cases] Use false, if you have other programs using ADB.
|
||||
ReplaceAdb: false
|
||||
# Brute-force connect to all available emulator instances
|
||||
# [In most cases] Use true
|
||||
AutoConnect: true
|
||||
# Re-install uiautomator2
|
||||
# [In most cases] Use true
|
||||
InstallUiautomator2: true
|
||||
|
||||
Ocr:
|
||||
# Run Ocr as a service, can reduce memory usage by not import mxnet everytime you start an alas instance
|
||||
|
||||
# Whether to use ocr server
|
||||
# [Default] false
|
||||
UseOcrServer: false
|
||||
# Whether to start ocr server when start GUI
|
||||
# [Default] false
|
||||
StartOcrServer: false
|
||||
# Port of ocr server runs by GUI
|
||||
# [Default] 22268
|
||||
OcrServerPort: 22268
|
||||
# Address of ocr server for alas instance to connect
|
||||
# [Default] 127.0.0.1:22268
|
||||
OcrClientAddress: 127.0.0.1:22268
|
||||
|
||||
Update:
|
||||
# Use auto update and builtin updater feature
|
||||
# This may cause problem https://github.com/LmeSzinc/AzurLaneAutoScript/issues/876
|
||||
EnableReload: true
|
||||
# Check update every X minute
|
||||
# [Disable] 0
|
||||
# [Default] 5
|
||||
CheckUpdateInterval: 5
|
||||
# Scheduled restart time
|
||||
# If there are updates, Alas will automatically restart and update at this time every day
|
||||
# and run all alas instances that running before restarted
|
||||
# [Disable] null
|
||||
# [Default] 03:50
|
||||
AutoRestartTime: 03:50
|
||||
|
||||
Misc:
|
||||
# Enable discord rich presence
|
||||
DiscordRichPresence: false
|
||||
|
||||
RemoteAccess:
|
||||
# Enable remote access (using ssh reverse tunnel serve by https://github.com/wang0618/localshare)
|
||||
# ! You need to set Password below to enable remote access since everyone can access to your alas if they have your url.
|
||||
# See here (http://app.azurlane.cloud/en.html) for more infomation.
|
||||
EnableRemoteAccess: false
|
||||
# Username when login into ssh server
|
||||
# [Default] null (will generate a random one when startup)
|
||||
SSHUser: null
|
||||
# Server to connect
|
||||
# [Default] null
|
||||
# [Format] host:port
|
||||
SSHServer: null
|
||||
# Filepath of SSH executable `ssh.exe`
|
||||
# [Default] ssh (find ssh in system PATH)
|
||||
# If you don't have one, install OpenSSH or download it here (https://github.com/PowerShell/Win32-OpenSSH/releases)
|
||||
SSHExecutable: /usr/bin/ssh
|
||||
|
||||
Webui:
|
||||
# --host. Host to listen
|
||||
# [Use IPv6] '::'
|
||||
# [In most cases] Default to '0.0.0.0'
|
||||
WebuiHost: 0.0.0.0
|
||||
# --port. Port to listen
|
||||
# You will be able to access webui via `http://{host}:{port}`
|
||||
# [In most cases] Default to 22267
|
||||
WebuiPort: 22267
|
||||
# Language to use on web ui
|
||||
# 'zh-CN' for Chinese simplified
|
||||
# 'en-US' for English
|
||||
# 'ja-JP' for Japanese
|
||||
# 'zh-TW' for Chinese traditional
|
||||
Language: en-US
|
||||
# Theme of web ui
|
||||
# 'default' for light theme
|
||||
# 'dark' for dark theme
|
||||
Theme: default
|
||||
# Follow system DPI scaling
|
||||
# [In most cases] true
|
||||
# [In few cases] false to make Alas smaller, if you have a low resolution but high DPI scaling.
|
||||
DpiScaling: true
|
||||
# --key. Password of web ui
|
||||
# Useful when expose Alas to the public network
|
||||
Password: null
|
||||
# --cdn. Use jsdelivr cdn for pywebio static files (css, js).
|
||||
# 'true' for jsdelivr cdn
|
||||
# 'false' for self host cdn (automatically)
|
||||
# 'https://path.to.your/cdn' to use custom cdn
|
||||
CDN: false
|
||||
# --run. Auto-run specified config when startup
|
||||
# 'null' default no specified config
|
||||
# '["alas"]' specified "alas" config
|
||||
# '["alas","alas2"]' specified "alas" "alas2" configs
|
||||
Run: null
|
||||
# To update app.asar
|
||||
# [In most cases] true
|
||||
AppAsarUpdate: true
|
||||
# --no-sandbox. https://github.com/electron/electron/issues/30966
|
||||
# Some Windows systems cannot call the GPU normally for virtualization, and you need to manually turn off sandbox mode
|
||||
NoSandbox: false
|
||||
165
config/deploy.template.yaml
Normal file
165
config/deploy.template.yaml
Normal file
@@ -0,0 +1,165 @@
|
||||
Deploy:
|
||||
Git:
|
||||
# URL of AzurLaneAutoScript repository
|
||||
# [CN user] Use 'git://git.lyoko.io/AzurLaneAutoScript' for faster and more stable download
|
||||
# [Other] Use 'https://github.com/LmeSzinc/AzurLaneAutoScript'
|
||||
Repository: https://github.com/LmeSzinc/AzurLaneAutoScript
|
||||
# Branch of Alas
|
||||
# [Developer] Use 'dev', 'app', etc, to try new features
|
||||
# [Other] Use 'master', the stable branch
|
||||
Branch: master
|
||||
# Filepath of git executable `git.exe`
|
||||
# [Easy installer] Use './toolkit/Git/mingw64/bin/git.exe'
|
||||
# [Other] Use you own git
|
||||
GitExecutable: ./toolkit/Git/mingw64/bin/git.exe
|
||||
# Set git proxy
|
||||
# [CN user] Use your local http proxy (http://127.0.0.1:{port}) or socks5 proxy (socks5://127.0.0.1:{port})
|
||||
# [Other] Use null
|
||||
GitProxy: null
|
||||
# Set SSL Verify
|
||||
# [In most cases] Use true
|
||||
# [Other] Use false to when connected to an untrusted network
|
||||
SSLVerify: true
|
||||
# Update Alas at startup
|
||||
# [In most cases] Use true
|
||||
AutoUpdate: true
|
||||
# Whether to keep local changes during update
|
||||
# User settings, logs and screenshots will be kept, no mather this is true or false
|
||||
# [Developer] Use true, if you modified the code
|
||||
# [Other] Use false
|
||||
KeepLocalChanges: false
|
||||
|
||||
Python:
|
||||
# Filepath of python executable `python.exe`
|
||||
# [Easy installer] Use './toolkit/python.exe'
|
||||
# [Other] Use you own python, and its version should be 3.7.6 64bit
|
||||
PythonExecutable: ./toolkit/python.exe
|
||||
# URL of pypi mirror
|
||||
# [CN user] Use 'https://pypi.tuna.tsinghua.edu.cn/simple' for faster and more stable download
|
||||
# [Other] Use null
|
||||
PypiMirror: null
|
||||
# Install dependencies at startup
|
||||
# [In most cases] Use true
|
||||
InstallDependencies: true
|
||||
# Path to requirements.txt
|
||||
# [In most cases] Use 'requirements.txt'
|
||||
# [In AidLux] Use './deploy/AidLux/{version}/requirements.txt', version is default to 0.92
|
||||
RequirementsFile: requirements.txt
|
||||
|
||||
Adb:
|
||||
# Filepath of ADB executable `adb.exe`
|
||||
# [Easy installer] Use './toolkit/Lib/site-packages/adbutils/binaries/adb.exe'
|
||||
# [Other] Use you own latest ADB, but not the ADB in your emulator
|
||||
AdbExecutable: ./toolkit/Lib/site-packages/adbutils/binaries/adb.exe
|
||||
# Whether to replace ADB
|
||||
# Chinese emulators (NoxPlayer, LDPlayer, MemuPlayer, MuMuPlayer) use their own ADB, instead of the latest.
|
||||
# Different ADB servers will terminate each other at startup, resulting in disconnection.
|
||||
# For compatibility, we have to replace them all.
|
||||
# This will do:
|
||||
# 1. Terminate current ADB server
|
||||
# 2. Rename ADB from all emulators to *.bak and replace them by the AdbExecutable set above
|
||||
# 3. Brute-force connect to all available emulator instances
|
||||
# [In most cases] Use true
|
||||
# [In few cases] Use false, if you have other programs using ADB.
|
||||
ReplaceAdb: true
|
||||
# Brute-force connect to all available emulator instances
|
||||
# [In most cases] Use true
|
||||
AutoConnect: true
|
||||
# Re-install uiautomator2
|
||||
# [In most cases] Use true
|
||||
InstallUiautomator2: true
|
||||
|
||||
Ocr:
|
||||
# Run Ocr as a service, can reduce memory usage by not import mxnet everytime you start an alas instance
|
||||
|
||||
# Whether to use ocr server
|
||||
# [Default] false
|
||||
UseOcrServer: false
|
||||
# Whether to start ocr server when start GUI
|
||||
# [Default] false
|
||||
StartOcrServer: false
|
||||
# Port of ocr server runs by GUI
|
||||
# [Default] 22268
|
||||
OcrServerPort: 22268
|
||||
# Address of ocr server for alas instance to connect
|
||||
# [Default] 127.0.0.1:22268
|
||||
OcrClientAddress: 127.0.0.1:22268
|
||||
|
||||
Update:
|
||||
# Use auto update and builtin updater feature
|
||||
# This may cause problem https://github.com/LmeSzinc/AzurLaneAutoScript/issues/876
|
||||
EnableReload: true
|
||||
# Check update every X minute
|
||||
# [Disable] 0
|
||||
# [Default] 5
|
||||
CheckUpdateInterval: 5
|
||||
# Scheduled restart time
|
||||
# If there are updates, Alas will automatically restart and update at this time every day
|
||||
# and run all alas instances that running before restarted
|
||||
# [Disable] null
|
||||
# [Default] 03:50
|
||||
AutoRestartTime: 03:50
|
||||
|
||||
Misc:
|
||||
# Enable discord rich presence
|
||||
DiscordRichPresence: false
|
||||
|
||||
RemoteAccess:
|
||||
# Enable remote access (using ssh reverse tunnel serve by https://github.com/wang0618/localshare)
|
||||
# ! You need to set Password below to enable remote access since everyone can access to your alas if they have your url.
|
||||
# See here (http://app.azurlane.cloud/en.html) for more infomation.
|
||||
EnableRemoteAccess: false
|
||||
# Username when login into ssh server
|
||||
# [Default] null (will generate a random one when startup)
|
||||
SSHUser: null
|
||||
# Server to connect
|
||||
# [Default] null
|
||||
# [Format] host:port
|
||||
SSHServer: null
|
||||
# Filepath of SSH executable `ssh.exe`
|
||||
# [Default] ssh (find ssh in system PATH)
|
||||
# If you don't have one, install OpenSSH or download it here (https://github.com/PowerShell/Win32-OpenSSH/releases)
|
||||
SSHExecutable: ssh
|
||||
|
||||
Webui:
|
||||
# --host. Host to listen
|
||||
# [Use IPv6] '::'
|
||||
# [In most cases] Default to '0.0.0.0'
|
||||
WebuiHost: 0.0.0.0
|
||||
# --port. Port to listen
|
||||
# You will be able to access webui via `http://{host}:{port}`
|
||||
# [In most cases] Default to 22267
|
||||
WebuiPort: 22267
|
||||
# Language to use on web ui
|
||||
# 'zh-CN' for Chinese simplified
|
||||
# 'en-US' for English
|
||||
# 'ja-JP' for Japanese
|
||||
# 'zh-TW' for Chinese traditional
|
||||
Language: en-US
|
||||
# Theme of web ui
|
||||
# 'default' for light theme
|
||||
# 'dark' for dark theme
|
||||
Theme: default
|
||||
# Follow system DPI scaling
|
||||
# [In most cases] true
|
||||
# [In few cases] false to make Alas smaller, if you have a low resolution but high DPI scaling.
|
||||
DpiScaling: true
|
||||
# --key. Password of web ui
|
||||
# Useful when expose Alas to the public network
|
||||
Password: null
|
||||
# --cdn. Use jsdelivr cdn for pywebio static files (css, js).
|
||||
# 'true' for jsdelivr cdn
|
||||
# 'false' for self host cdn (automatically)
|
||||
# 'https://path.to.your/cdn' to use custom cdn
|
||||
CDN: false
|
||||
# --run. Auto-run specified config when startup
|
||||
# 'null' default no specified config
|
||||
# '["alas"]' specified "alas" config
|
||||
# '["alas","alas2"]' specified "alas" "alas2" configs
|
||||
Run: null
|
||||
# To update app.asar
|
||||
# [In most cases] true
|
||||
AppAsarUpdate: true
|
||||
# --no-sandbox. https://github.com/electron/electron/issues/30966
|
||||
# Some Windows systems cannot call the GPU normally for virtualization, and you need to manually turn off sandbox mode
|
||||
NoSandbox: false
|
||||
101
config/template.fpy.json
Normal file
101
config/template.fpy.json
Normal file
@@ -0,0 +1,101 @@
|
||||
{
|
||||
"Fpy": {
|
||||
"FpyEmulator": {
|
||||
"Serial": "127.0.0.1:5555",
|
||||
"LaunchPath": "/absolute_path_to_FGO-py/deploy/AzurLaneAutoScript"
|
||||
},
|
||||
"Emulator": {
|
||||
"ServerName": "disabled"
|
||||
},
|
||||
"Error": {
|
||||
"SaveError": false,
|
||||
"OnePushConfig": "provider: null"
|
||||
},
|
||||
"Optimization": {
|
||||
"WhenTaskQueueEmpty": "stay_there"
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"FpyHeartbeat": {
|
||||
"Scheduler": {
|
||||
"Enable": true,
|
||||
"NextRun": "2023-01-01 05:00:00",
|
||||
"Command": "FpyHeartbeat",
|
||||
"SuccessInterval": 60,
|
||||
"FailureInterval": 120,
|
||||
"ServerUpdate": "05:00"
|
||||
},
|
||||
"FpyInterval": {
|
||||
"Interval": "00:05"
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"FpyMain": {
|
||||
"Scheduler": {
|
||||
"Enable": false,
|
||||
"NextRun": "2023-01-01 05:00:00",
|
||||
"Command": "FpyMain",
|
||||
"SuccessInterval": 60,
|
||||
"FailureInterval": 120,
|
||||
"ServerUpdate": "05:00"
|
||||
},
|
||||
"FpyTeam": {
|
||||
"Index": 0
|
||||
},
|
||||
"FpyApple": {
|
||||
"AppleKind": "gold",
|
||||
"AppleCount": 0,
|
||||
"EatOnce": true,
|
||||
"AppleTotal": 999
|
||||
},
|
||||
"FpyLimit": {
|
||||
"Defeated": true,
|
||||
"KizunaReisou": true,
|
||||
"SpecialDrop": 999
|
||||
},
|
||||
"FpyInterval": {
|
||||
"Interval": "07:00"
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"FpyDailyFpSummon": {
|
||||
"Scheduler": {
|
||||
"Enable": false,
|
||||
"NextRun": "2023-01-01 05:00:00",
|
||||
"Command": "FpyDailyFpSummon",
|
||||
"SuccessInterval": 60,
|
||||
"FailureInterval": 120,
|
||||
"ServerUpdate": "00:00"
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"FpyBattle": {
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"FpyBenchmark": {
|
||||
"FpyBenchmark": {
|
||||
"BenchOption": "all"
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"FpyCall": {
|
||||
"FpyCall": {
|
||||
"Function": "lottery"
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
2048
config/template.json
Normal file
2048
config/template.json
Normal file
File diff suppressed because it is too large
Load Diff
270
config/template.maa.json
Normal file
270
config/template.maa.json
Normal file
@@ -0,0 +1,270 @@
|
||||
{
|
||||
"Maa": {
|
||||
"MaaEmulator": {
|
||||
"Serial": "127.0.0.1:5555",
|
||||
"PackageName": "Official",
|
||||
"MaaPath": "D:/Program Files/MAA",
|
||||
"TouchMethod": "minitouch",
|
||||
"DeploymentWithPause": false
|
||||
},
|
||||
"MaaRecord": {
|
||||
"ReportToPenguin": false,
|
||||
"PenguinID": null,
|
||||
"ReportToYiTuLiu": false
|
||||
},
|
||||
"Emulator": {
|
||||
"ServerName": "disabled"
|
||||
},
|
||||
"Error": {
|
||||
"SaveError": false,
|
||||
"OnePushConfig": "provider: null"
|
||||
},
|
||||
"Optimization": {
|
||||
"WhenTaskQueueEmpty": "stay_there"
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"MaaStartup": {
|
||||
"Scheduler": {
|
||||
"Enable": true,
|
||||
"NextRun": "2020-01-01 04:00:00",
|
||||
"Command": "MaaStartup",
|
||||
"SuccessInterval": 0,
|
||||
"FailureInterval": 0,
|
||||
"ServerUpdate": "04:00"
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"MaaAnnihilation": {
|
||||
"Scheduler": {
|
||||
"Enable": false,
|
||||
"NextRun": "2020-01-01 04:00:00",
|
||||
"Command": "MaaAnnihilation",
|
||||
"SuccessInterval": 60,
|
||||
"FailureInterval": 120,
|
||||
"ServerUpdate": "04:00"
|
||||
},
|
||||
"MaaFight": {
|
||||
"Stage": "custom",
|
||||
"CustomStage": "Annihilation",
|
||||
"MedicineTactics": "no_use",
|
||||
"Medicine": 0,
|
||||
"Stone": 0,
|
||||
"Times": 5,
|
||||
"Series": 1,
|
||||
"Drops": null,
|
||||
"DrGrandet": false
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"MaaMaterial": {
|
||||
"Scheduler": {
|
||||
"Enable": false,
|
||||
"NextRun": "2020-01-01 04:00:00",
|
||||
"Command": "MaaMaterial",
|
||||
"SuccessInterval": 60,
|
||||
"FailureInterval": 240,
|
||||
"ServerUpdate": "04:00"
|
||||
},
|
||||
"MaaFight": {
|
||||
"Stage": "last",
|
||||
"CustomStage": null,
|
||||
"MedicineTactics": "no_use",
|
||||
"Medicine": null,
|
||||
"Stone": null,
|
||||
"Times": null,
|
||||
"Series": 1,
|
||||
"Drops": null,
|
||||
"DrGrandet": false
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"MaaFight": {
|
||||
"Scheduler": {
|
||||
"Enable": false,
|
||||
"NextRun": "2020-01-01 04:00:00",
|
||||
"Command": "MaaFight",
|
||||
"SuccessInterval": 240,
|
||||
"FailureInterval": 120,
|
||||
"ServerUpdate": "04:00"
|
||||
},
|
||||
"MaaFight": {
|
||||
"Stage": "last",
|
||||
"CustomStage": null,
|
||||
"MedicineTactics": "no_use",
|
||||
"Medicine": null,
|
||||
"Stone": null,
|
||||
"Times": null,
|
||||
"Series": 1,
|
||||
"Drops": null,
|
||||
"DrGrandet": false
|
||||
},
|
||||
"MaaFightWeekly": {
|
||||
"Enable": true,
|
||||
"Monday": "default",
|
||||
"Tuesday": "default",
|
||||
"Wednesday": "default",
|
||||
"Thursday": "default",
|
||||
"Friday": "default",
|
||||
"Saturday": "default",
|
||||
"Sunday": "default"
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"MaaRecruit": {
|
||||
"Scheduler": {
|
||||
"Enable": false,
|
||||
"NextRun": "2020-01-01 04:00:00",
|
||||
"Command": "MaaRecruit",
|
||||
"SuccessInterval": 180,
|
||||
"FailureInterval": 120,
|
||||
"ServerUpdate": "04:00"
|
||||
},
|
||||
"MaaRecruit": {
|
||||
"Refresh": true,
|
||||
"SkipRobot": true,
|
||||
"Select3": true,
|
||||
"Select4": true,
|
||||
"Select5": true,
|
||||
"Level3ShortTime": true,
|
||||
"Times": 4,
|
||||
"Expedite": false,
|
||||
"FirstTags": null,
|
||||
"ExtraTagsMode": 0
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"MaaInfrast": {
|
||||
"Scheduler": {
|
||||
"Enable": false,
|
||||
"NextRun": "2020-01-01 04:00:00",
|
||||
"Command": "MaaInfrast",
|
||||
"SuccessInterval": 60,
|
||||
"FailureInterval": 120,
|
||||
"ServerUpdate": "04:00"
|
||||
},
|
||||
"MaaInfrast": {
|
||||
"Facility": "Training > Mfg > Trade > Power > Control > Reception > Office > Dorm",
|
||||
"Drones": "Money",
|
||||
"WorkThreshold": 12,
|
||||
"ShiftThreshold": 4,
|
||||
"Notstationed": true,
|
||||
"Trust": true,
|
||||
"Replenish": false,
|
||||
"ContinueTraining": false
|
||||
},
|
||||
"MaaCustomInfrast": {
|
||||
"Enable": false,
|
||||
"BuiltinConfig": "custom",
|
||||
"Filename": null,
|
||||
"CustomPeriod": "16, 4, 4",
|
||||
"PlanIndex": 0
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"MaaMall": {
|
||||
"Scheduler": {
|
||||
"Enable": false,
|
||||
"NextRun": "2020-01-01 04:00:00",
|
||||
"Command": "MaaMall",
|
||||
"SuccessInterval": 60,
|
||||
"FailureInterval": 120,
|
||||
"ServerUpdate": "04:00"
|
||||
},
|
||||
"MaaMall": {
|
||||
"CreditFight": false,
|
||||
"Shopping": true,
|
||||
"ForceShoppingIfCreditFull": false,
|
||||
"OnlyBuyDiscount": false,
|
||||
"ReserveMaxCredit": false,
|
||||
"BuyFirst": "招聘许可",
|
||||
"BlackList": "碳 > 家具 > 加急许可"
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"MaaAward": {
|
||||
"Scheduler": {
|
||||
"Enable": false,
|
||||
"NextRun": "2020-01-01 04:00:00",
|
||||
"Command": "MaaAward",
|
||||
"SuccessInterval": 60,
|
||||
"FailureInterval": 120,
|
||||
"ServerUpdate": "04:00, 16:00"
|
||||
},
|
||||
"MaaAward": {
|
||||
"Mail": false,
|
||||
"Recruit": false,
|
||||
"Orundum": false,
|
||||
"Specialaccess": false
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"MaaRoguelike": {
|
||||
"Scheduler": {
|
||||
"Enable": false,
|
||||
"NextRun": "2020-01-01 04:00:00",
|
||||
"Command": "MaaRoguelike",
|
||||
"SuccessInterval": 60,
|
||||
"FailureInterval": 120,
|
||||
"ServerUpdate": "04:00"
|
||||
},
|
||||
"MaaRoguelike": {
|
||||
"Theme": "Sami",
|
||||
"Mode": 0,
|
||||
"StartsCount": 9999999,
|
||||
"InvestmentsCount": 9999999,
|
||||
"StopWhenInvestmentFull": false,
|
||||
"Squad": "指挥分队",
|
||||
"Roles": "取长补短",
|
||||
"CoreChar": null,
|
||||
"Support": "no_use",
|
||||
"startWithEliteTwo": "no_use",
|
||||
"refreshTraderWithDice": false
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"MaaReclamationAlgorithm": {
|
||||
"Scheduler": {
|
||||
"Enable": false,
|
||||
"NextRun": "2020-01-01 04:00:00",
|
||||
"Command": "MaaReclamationAlgorithm",
|
||||
"SuccessInterval": 60,
|
||||
"FailureInterval": 120,
|
||||
"ServerUpdate": "04:00"
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
},
|
||||
"MaaCopilot": {
|
||||
"MaaCopilot": {
|
||||
"FileName": null,
|
||||
"Identify": false,
|
||||
"Formation": false,
|
||||
"Cycle": 1
|
||||
},
|
||||
"Storage": {
|
||||
"Storage": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user