Skip to content

Commit

Permalink
chore: rename to M9A
Browse files Browse the repository at this point in the history
  • Loading branch information
MistEO committed Nov 28, 2023
1 parent 7b10ee1 commit 848d047
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: MAA1999-win-${{ matrix.arch }}
name: M9A-win-${{ matrix.arch }}
path: "install"

ubuntu:
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: MAA1999-linux-${{ matrix.arch }}
name: M9A-linux-${{ matrix.arch }}
path: "install"

macos:
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: MAA1999-macos-${{ matrix.arch }}
name: M9A-macos-${{ matrix.arch }}
path: "install"

release:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.21)
project(MAA1999)
project(M9A)

set_property(GLOBAL PROPERTY USE_FOLDERS ON)
set(Boost_NO_WARN_NEW_VERSIONS 1)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# MAA1999
# M9A

基于全新架构的 亿韭韭韭 小助手。图像技术 + 模拟控制,解放双手!
[MaaFramework](https://github.com/MaaAssistantArknights/MaaFramework) 强力驱动!
Expand All @@ -17,7 +17,7 @@

## How to build

**如果你要编译源码才看这节,否则直接 [下载](https://github.com/MaaAssistantArknights/MAA1999/releases) 即可**
**如果你要编译源码才看这节,否则直接 [下载](https://github.com/MaaAssistantArknights/M9A/releases) 即可**

1. 下载 MaaFramework 的 [Release 包](https://github.com/MaaAssistantArknights/MaaFramework/releases),解压到 `deps` 文件夹中
2. 配置 cmake
Expand Down
2 changes: 1 addition & 1 deletion assets/resource/properties.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"is_base": true,
"version": "MAA1999_DEBUG_VERSION"
"version": "M9A_DEBUG_VERSION"
}
8 changes: 4 additions & 4 deletions source/cli/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ else ()
link_directories(${CMAKE_SOURCE_DIR}/deps/bin)
endif ()

add_executable(MAA1999_CLI main.cpp)
target_link_libraries(MAA1999_CLI PRIVATE MaaFramework MaaToolKit)
add_executable(M9A_CLI main.cpp)
target_link_libraries(M9A_CLI PRIVATE MaaFramework MaaToolKit)

add_dependencies(MAA1999_CLI AssetsResource)
add_dependencies(M9A_CLI AssetsResource)

install(TARGETS MAA1999_CLI RUNTIME DESTINATION .)
install(TARGETS M9A_CLI RUNTIME DESTINATION .)
4 changes: 2 additions & 2 deletions source/cli/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ int main(int argc, char** argv)
void print_help()
{
std::cout << utf8_to_crt(
R"(欢迎使用 MAA 1999 CLI, 源码地址:https://github.com/MaaAssistantArknights/MAA1999
R"(欢迎使用 MAA 1999 CLI, 源码地址:https://github.com/MaaAssistantArknights/M9A
用法: MAA1999.exe [adb路径] [adb地址] [任务名(有序)]...
用法: M9A.exe [adb路径] [adb地址] [任务名(有序)]...
可以修改 config.json 来配置任务
Expand Down

0 comments on commit 848d047

Please sign in to comment.