-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
81 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.idea/ | ||
target/ | ||
logs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
@ECHO OFF | ||
|
||
REM 窗口 | ||
title Worship PPT Toolkit | ||
color 0F | ||
|
||
REM 介绍信息 | ||
echo --------------------------------------------------- | ||
echo. | ||
echo 一个用于自动制作主日崇拜PPT的小工具 | ||
echo 马克约瑟弟兄出品 | ||
echo. | ||
echo --------------------------------------------------- | ||
echo. | ||
|
||
REM 先检查升级 | ||
echo 正检查升级,请稍等... | ||
"jre\bin\java.exe" -Dfile.encoding=GBK -Drunning.scene=升级 -jar worship-ppt.jar | ||
|
||
REM PPT | ||
set /p file_path=请输入带有敬拜数据的ini文件的路径: | ||
"jre\bin\java.exe" -Dfile.encoding=GBK -Drunning.scene=PPT -jar worship-ppt.jar "%file_path%" | ||
|
||
echo 辛苦了 φ(゜▽゜*)? & pause>nul |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/sh | ||
|
||
echo "---------------------------------------------------" | ||
echo "" | ||
echo " 一个用于自动制作主日崇拜PPT的小工具" | ||
echo " 马克约瑟弟兄出品" | ||
echo "" | ||
echo "---------------------------------------------------" | ||
|
||
echo "" | ||
echo "正检查升级,请稍等..." | ||
./jre/Contents/Home/bin/java -Dfile.encoding=UTF-8 -Drunning.scene=升级 -jar worship-ppt.jar | ||
|
||
read -p "请输入带有敬拜数据的ini文件的路径:" file_path | ||
|
||
./jre/Contents/Home/bin/java -Dfile.encoding=UTF-8 -Drunning.scene=PPT -jar worship-ppt.jar $file_path | ||
|
||
echo "辛苦了 φ(゜▽゜*)?" |