Skip to content

Commit b33aea4

Browse files
committed
v13.7
1 parent 6c1d139 commit b33aea4

16 files changed

+321
-68
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
.vs/
3+
ghost_terminal.vcxproj.user

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "my-gists"]
2-
path = my-gists
2+
path = src/my-gists
33
url = [email protected]:steve02081504/my-gists.git

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
- [JP](./README_JP.md)
2-
- [CN](./README_CN.md)
3-
- [EN](./README_EN.md)
1+
- [JP](docs/README_JP.md)
2+
- [CN](docs/README_CN.md)
3+
- [EN](docs/README_EN.md)
44

55
# ghost_terminal
66

7-
![preview image](./preview.png)
7+
![preview image](docs/preview.png)
88
Original trial product, now finding it somewhat useful (
99

1010
## Usage

builds/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
Release/
3+
Debug/

builds/auto_upx.bat

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
cd Release
2+
upx --ultra-brute --no-align --best --compress-resources=1 ghost_terminal.exe
3+
copy ghost_terminal.exe ghost_terminal_NUPX.exe
4+
upx -d ghost_terminal_NUPX.exe
5+
cd ..
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

ghost_terminal.sln

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.6.33706.43
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ghost_terminal", "ghost_terminal.vcxproj", "{3B424F09-7045-477B-B682-66CA2569793A}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|x64 = Debug|x64
11+
Debug|x86 = Debug|x86
12+
Release|x64 = Release|x64
13+
Release|x86 = Release|x86
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{3B424F09-7045-477B-B682-66CA2569793A}.Debug|x64.ActiveCfg = Debug|x64
17+
{3B424F09-7045-477B-B682-66CA2569793A}.Debug|x64.Build.0 = Debug|x64
18+
{3B424F09-7045-477B-B682-66CA2569793A}.Debug|x86.ActiveCfg = Debug|Win32
19+
{3B424F09-7045-477B-B682-66CA2569793A}.Debug|x86.Build.0 = Debug|Win32
20+
{3B424F09-7045-477B-B682-66CA2569793A}.Release|x64.ActiveCfg = Release|x64
21+
{3B424F09-7045-477B-B682-66CA2569793A}.Release|x64.Build.0 = Release|x64
22+
{3B424F09-7045-477B-B682-66CA2569793A}.Release|x86.ActiveCfg = Release|Win32
23+
{3B424F09-7045-477B-B682-66CA2569793A}.Release|x86.Build.0 = Release|Win32
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {CE4BACCC-D8C3-46EB-B349-439C3B51D6AF}
30+
EndGlobalSection
31+
EndGlobal

0 commit comments

Comments
 (0)