This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
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
9 changed files
with
124 additions
and
21 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,7 +1,9 @@ | ||
PySteamAuth/maFiles/ | ||
PySteamAuth/PyUIs/* | ||
bin/ | ||
build/ | ||
build/PySteamAuth.build/ | ||
build/PySteamAuth.dist/ | ||
dist/ | ||
pkg/ | ||
*.pro.user | ||
cacert.pem | ||
page.html |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>English</string> | ||
<key>CFBundleExecutable</key> | ||
<string>PySteamAuth</string> | ||
<key>CFBundleIconFile</key> | ||
<string>Icon.icns</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.${USERNAME}.PySteamAuth</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>PySteamAuth</string> | ||
<key>CFBundlePackageType</key> | ||
<string>APPL</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleVersion</key> | ||
<string>${VERSION}</string> | ||
<key>CFBundleDisplayName</key> | ||
<string>PySteamAuth</string> | ||
</dict> | ||
</plist> |
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,21 @@ | ||
<!--- Property List Template - from http://www.apple.com/DTDs/PropertyList-1.0.dtd --> | ||
<!ENTITY % plistObject "(array | data | date | dict | real | integer | string | true | false )" > | ||
|
||
<!ELEMENT plist %plistObject;> | ||
<!ATTLIST plist version CDATA "1.0" > | ||
|
||
<!-- Collections --> | ||
<!ELEMENT array (%plistObject;)*> | ||
<!ELEMENT dict (key, %plistObject;)*> | ||
<!ELEMENT key (#PCDATA)> | ||
|
||
<!--- Primitive types --> | ||
<!ELEMENT string (#PCDATA)> | ||
<!ELEMENT data (#PCDATA)> <!-- Contents interpreted as Base-64 encoded --> | ||
<!ELEMENT date (#PCDATA)> <!-- Contents should conform to a subset of ISO 8601 (in particular, YYYY '-' MM '-' DD 'T' HH ':' MM ':' SS 'Z'. Smaller units may be omitted with a loss of precision) --> | ||
|
||
<!-- Numerical primitives --> | ||
<!ELEMENT true EMPTY> <!-- Boolean constant true --> | ||
<!ELEMENT false EMPTY> <!-- Boolean constant false --> | ||
<!ELEMENT real (#PCDATA)> <!-- Contents should represent a floating point number matching ("+" | "-")? d+ ("."d*)? ("E" ("+" | "-") d+)? where d is a digit 0-9. --> | ||
<!ELEMENT integer (#PCDATA)> <!-- Contents should represent a (possibly signed) integer number in base 10 --> |
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,4 @@ | ||
PyQt5 | ||
requests | ||
pyinstaller | ||
https://github.com/Nuitka/Nuitka/archive/fc25e8c25a573b98abed6123e86f9b08ab729a62.zip | ||
https://github.com/ValvePython/steam/archive/fcb584f205a5e3f120cf39642676d59ccb4cfadb.zip |