This repository has been archived by the owner on Dec 29, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update gitpython from 3.0.7 to 3.1.0 (#68) * Release 3.3 Stable (#69) * Init downloader * Add init UI * Edit Object name of Initializer * Add support for selecting scrcpy executable * Fix Toolbar appearance (panel holder) * Update version * Add desktop file support for Linux OS * Amend requirements, add dependency * PEP8 and Flake8 Fixes * Remove unnecessary imports in setup.py * Add dependency pywin32 to windows systems * Fix desktop function for Windows and Linux * Fix font manager * Change modes * Add windows tools * update version in version.txt * update version in ver.py * Update guiscrcpy_windows spec file * Fix #75. Fix FileNotFoundError * Fix mapper to port for Override Resolutions #74 * Remove dependency psutil for MacOS * Add conditional launching of psutil depending on its installed or not * Prepare release 3.5 Signed-off-by: Srevin Saju <[email protected]> * Prepare release 3.5 * Fix appimage config file * Fix version * Postpone appimage Co-authored-by: pyup.io bot <[email protected]>
- Loading branch information
1 parent
a907e87
commit fe45e9f
Showing
37 changed files
with
887 additions
and
449 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Empty file.
Empty file.
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,9 +1,10 @@ | ||
[Desktop Entry] | ||
Name=guiscrcpy | ||
Version=3.5 | ||
Exec=python3 bin/guiscrcpy | ||
Type=Application | ||
Icon=guiscrcpy_logo | ||
Terminal=false | ||
Categories=Application;Development; | ||
Keywords=Python;Screen;Mirroring;Android | ||
StartupWMClass=guiscrcpy | ||
StartupWMClass=guiscrcpy |
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,14 @@ | ||
import os | ||
import sys | ||
from PyQt5.QtWidgets import QFileDialog | ||
|
||
|
||
def openFileNameDialog(parent, appname): | ||
options = QFileDialog.Options() | ||
options |= QFileDialog.DontUseNativeDialog | ||
fileName, _ = \ | ||
QFileDialog.getOpenFileName(parent, "{} could not be found. Please locate it manually".format(appname), | ||
"", "Valid {} executable (*);;".format(appname), options=options) | ||
if fileName: | ||
print(fileName) | ||
return fileName |
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
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 |
---|---|---|
|
@@ -30,8 +30,10 @@ def shellify(args): | |
else: | ||
return shlex.split(args) | ||
|
||
|
||
_ = shellify | ||
|
||
|
||
def decode(raw_output): | ||
pass | ||
|
||
|
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
""" | ||
|
||
|
||
__version__ = '3.2-raw' | ||
__version__ = '3.4-raw' | ||
import logging | ||
try: | ||
import git | ||
|
Oops, something went wrong.