Skip to content

Commit

Permalink
refactor: 变更名称
Browse files Browse the repository at this point in the history
  • Loading branch information
msojocs committed Oct 7, 2024
1 parent 4ab5d0d commit dce783e
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
# Artifact name
name: yukihana-${{ matrix.arch }}.build-win
name: yui-${{ matrix.arch }}.build-win
path: tmp/build

build-linux:
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
# Artifact name
name: yukihana-${{ matrix.arch }}.build-linux
name: yui-${{ matrix.arch }}.build-linux
path: tmp/build

build-mac-x86:
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
# Artifact name
name: yukihana-${{ matrix.arch }}.build-mac
name: yui-${{ matrix.arch }}.build-mac
path: tmp/build

build-mac-arm64:
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
# Artifact name
name: yukihana-${{ matrix.arch }}.build-mac
name: yui-${{ matrix.arch }}.build-mac
path: tmp/build

upload:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.15)
cmake_policy(SET CMP0091 NEW)
cmake_policy(SET CMP0042 NEW)

project("yukihana_patch" VERSION 1.0.4)
project("yui_patch" VERSION 1.0.4)
if(APPLE)
message("MAC Processor: " ${CMAKE_SYSTEM_PROCESSOR})
set(CMAKE_OSX_ARCHITECTURES ${CMAKE_SYSTEM_PROCESSOR})
Expand Down
8 changes: 4 additions & 4 deletions README.MD
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Yukihana-Patch
# Yui-Patch

适用于Telecord的底层模块
适用于Yui的底层模块

## 功能

1. 拦截Telecord的文件验证
1. 拦截国内知名聊天软件的文件验证,下文称之为 Telecord (Telegram + Discord)

## 逻辑

Expand Down Expand Up @@ -52,7 +52,7 @@

> ~~如果放置于Telecord官方安装目录,会由于权限问题无法正常使用。~~
>
> ~~但是Yukihana项目使用的Telecord程序是直接解压exe的,所以没有权限问题。(将来会变更为使用临时文件目录的方法,以支持官方安装目录)~~
> ~~但是Yui项目使用的Telecord程序是直接解压exe的,所以没有权限问题。(将来会变更为使用临时文件目录的方法,以支持官方安装目录)~~
>
> 目前已使用临时文件目录的方法,以支持官方安装目录。

Expand Down
2 changes: 1 addition & 1 deletion src/dbghelp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ target_link_libraries(dbghelp PRIVATE spdlog::spdlog)
target_link_libraries(dbghelp PRIVATE JsonCpp::JsonCpp)

set_target_properties(dbghelp PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
# SET_TARGET_PROPERTIES(dbghelp PROPERTIES RUNTIME_OUTPUT_DIRECTORY "D:\\GitHub\\Yukihana\\program")
# SET_TARGET_PROPERTIES(dbghelp PROPERTIES RUNTIME_OUTPUT_DIRECTORY "D:\\GitHub\\Yui\\program")
2 changes: 1 addition & 1 deletion tools/linux/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ mkdir -p "$root_dir/tmp/build"
for file in "$root_dir/build/"*.so
do
name=$(basename $file)
mv $file "$root_dir/tmp/build/yukihana-${name%.*}-linux-$arch-$tag.so"
mv $file "$root_dir/tmp/build/yui-${name%.*}-linux-$arch-$tag.so"
done
2 changes: 1 addition & 1 deletion tools/mac/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ mkdir -p "$root_dir/tmp/build"
for file in "$root_dir/build/"*.dylib
do
name=$(basename $file)
mv $file "$root_dir/tmp/build/yukihana-${name%.*}-mac-$arch-$tag.dylib"
mv $file "$root_dir/tmp/build/yui-${name%.*}-mac-$arch-$tag.dylib"
done
2 changes: 1 addition & 1 deletion tools/windows/ci.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ try
$Name = $_.BaseName
$FullName = $_.FullName
Write-Host $FullName
mv "$FullName" "$root_dir/tmp/build/yukihana-$Name-win32-$arch-$tag.dll"
mv "$FullName" "$root_dir/tmp/build/yui-$Name-win32-$arch-$tag.dll"
}catch{
Write-Host $_
}
Expand Down

0 comments on commit dce783e

Please sign in to comment.