-
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.
Merge pull request #3 from karpitony/dev
Dev
- Loading branch information
Showing
7 changed files
with
72 additions
and
19 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
build |
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,11 @@ | ||
# eft-where-am-i | ||
- `Tarkov-Market`의 `Maps` 기능을 손쉽게 사용할 수 있도록 도와주는 Python + GUI 프로그램입니다. | ||
- [Rok님의 게시글 및 소스코드](https://gall.dcinside.com/m/eft/2143712)를 기반으로 작성했습니다. | ||
- 본 프로그램은 `MIT 라이선스`이며 **본 프로그램으로 인한 어떠한 피해에도 책임지지 않습니다.** | ||
|
||
## 사용 방법 | ||
![screenshot01](assets/screenshot01.png) | ||
- **맵을 고른 후 꼭 `적용` 버튼을 눌러주세요!** | ||
- ~~이 앱은 스크린샷 키가 눌릴 때 작동합니다. **타르코프의 기본 스크린샷 키는 `PrtSc` 키입니다.**~~ | ||
- 코딩 이슈로 일단 스샷을 찍고 `Force Run` 버튼을 눌러주세요. | ||
- Press to Record` 버튼을 통해 원하는 키로 변경이 가능하며 이 설정은 계속 유지됩니다! |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
keyboard==0.13.5 | ||
pyinstaller==6.6.0 | ||
pyinstaller-hooks-contrib==2024.6 | ||
cx-Freeze==7.0.0 | ||
selenium==4.20.0 |
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,26 @@ | ||
from cx_Freeze import setup, Executable | ||
|
||
name = "EFT Where am I" | ||
version = "1.1" | ||
description = "Description of EFT Where am I" | ||
|
||
executables = [ | ||
Executable("main.py", base="Win32GUI", target_name="EFT_Where_am_I.exe") | ||
] | ||
|
||
options = { | ||
'build_exe': { | ||
'packages': ["keyboard", "selenium"], | ||
'includes': [], | ||
'include_files': [], | ||
'excludes': [], | ||
} | ||
} | ||
|
||
setup( | ||
name=name, | ||
version=version, | ||
description=description, | ||
options=options, | ||
executables=executables | ||
) |