Skip to content

Commit b0b9052

Browse files
authored
Merge pull request #1 from korarei/chore/newline
Chore: Change line endings from LF to CRLF
2 parents 8b2c9b2 + 508d62a commit b0b9052

4 files changed

Lines changed: 17 additions & 20 deletions

File tree

.gitattributes

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
*.lua text eol=crlf linguist-language=Lua working-tree-encoding=cp932
1+
* text=auto
2+
23
*.obj text eol=crlf linguist-language=Lua working-tree-encoding=cp932
34
*.anm text eol=crlf linguist-language=Lua working-tree-encoding=cp932
45
*.scn text eol=crlf linguist-language=Lua working-tree-encoding=cp932
56
*.cam text eol=crlf linguist-language=Lua working-tree-encoding=cp932
67
*.tra text eol=crlf linguist-language=Lua working-tree-encoding=cp932
8+
9+
*.obj2 text eol=crlf linguist-language=Lua working-tree-encoding=utf-8
710
*.anm2 text eol=crlf linguist-language=Lua working-tree-encoding=utf-8
8-
*.hlsl text eol=crlf linguist-language=hlsl working-tree-encoding=utf-8
9-
*.h text eol=crlf linguist-language=C working-tree-encoding=utf-8
10-
*.c text eol=crlf linguist-language=C working-tree-encoding=utf-8
11-
*.hpp text eol=crlf linguist-language=C++ working-tree-encoding=utf-8
12-
*.cpp text eol=crlf linguist-language=C++ working-tree-encoding=utf-8
13-
*.json text eol=crlf linguist-language=json working-tree-encoding=utf-8
14-
*.py text eol=crlf linguist-language=Python working-tree-encoding=utf-8
11+
*.scn2 text eol=crlf linguist-language=Lua working-tree-encoding=utf-8
12+
*.cam2 text eol=crlf linguist-language=Lua working-tree-encoding=utf-8
13+
*.tra2 text eol=crlf linguist-language=Lua working-tree-encoding=utf-8
14+
15+
*.jpg binary
16+
*.png binary
17+
*.gif binary

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ AviUtl ExEdit2のカメラ操作感を変更するスクリプト群.
3030

3131
### 導入
3232

33-
1. 同梱の`*.cam2``.*dll``%ProgramData%`内の`aviutl2\\Script`フォルダまたはその子フォルダに入れる.
33+
1. 同梱の`*.cam2``*.dll``%ProgramData%`内の`aviutl2\\Script`フォルダまたはその子フォルダに入れる.
3434

3535
`beta4`以降では`aviutl2.exe`と同じ階層内の`data\\Script`フォルダ内でも可.
3636

@@ -174,5 +174,8 @@ LICENSEファイルに記載.
174174

175175
## Change Log
176176

177+
- **v1.0.1**
178+
- 改行コードをCRLFに変更.
179+
177180
- **v1.0.0**
178181
- Release

dll_src/CMakeLists.txt

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
11
cmake_minimum_required(VERSION 3.20.0)
2-
project(CameraTransform_K VERSION 1.0.0 LANGUAGES CXX)
3-
4-
# Set the project version.
5-
set(PROJECT_VERSION_SUFFIX "" CACHE STRING "Version suffix (e.g., alpha, beta, rc, etc.)")
6-
7-
if(PROJECT_VERSION_SUFFIX)
8-
set(FULL_VERSION "${PROJECT_VERSION} - ${PROJECT_VERSION_SUFFIX}")
9-
else()
10-
set(FULL_VERSION "${PROJECT_VERSION}")
11-
endif()
2+
project(CameraTransform_K VERSION 1.0.1 LANGUAGES CXX)
123

134
# Main target definition.
145
add_library(${PROJECT_NAME} SHARED

tools/libs

Submodule libs updated from 1032e64 to 977c244

0 commit comments

Comments
 (0)