Skip to content

Commit

Permalink
Merge pull request #76 from fa0311/develop-v5
Browse files Browse the repository at this point in the history
v5.0.0
  • Loading branch information
fa0311 authored Aug 24, 2023
2 parents e2e64e6 + 50d1887 commit 1e298a6
Show file tree
Hide file tree
Showing 54 changed files with 8,634 additions and 661 deletions.
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,12 @@
__pycache__
*.exe
*.bytes
/.venv
/.venv



/data

/windows/assets

assets/text/LICENSE
31 changes: 27 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,36 @@
"name": "DMMGamePlayerFastLauncher",
"type": "python",
"request": "launch",
"program": "DMMGamePlayerFastLauncher.py",
"program": "DMMGamePlayerFastLauncher/DMMGamePlayerFastLauncher.py",
"console": "integratedTerminal",
"justMyCode": true,
"justMyCode": false,
"env": {
"ENV": "DEVELOP"
},
"args": ["umamusume", "--non-bypass-uac"]
}
},
{
"name": "GameLauncher",
"type": "python",
"request": "launch",
"program": "DMMGamePlayerFastLauncher/DMMGamePlayerFastLauncher.py",
"console": "integratedTerminal",
"justMyCode": false,
"args": ["aa"],
"env": {
"ENV": "DEVELOP"
}
},
{
"name": "LaunchLauncher",
"type": "python",
"request": "launch",
"program": "DMMGamePlayerFastLauncher/DMMGamePlayerFastLauncher.py",
"console": "integratedTerminal",
"justMyCode": false,
"args": ["a", "--type", "launcher"],
"env": {
"ENV": "DEVELOP"
}
}
]
}
18 changes: 18 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
{
"flake8.args": ["--ignore=E501,E731"],
"markdownlint.config": {
"MD033": false
},
"python.analysis.typeCheckingMode": "basic",
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"black-formatter.args": ["--line-length=180"],
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},

"files.exclude": {
"**/__pycache__": true,
"**/build": true,
"**/dist": true,
// "**/data": true,
"**/*.spec": true,
"**/.venv": true
}
}
Loading

0 comments on commit 1e298a6

Please sign in to comment.