Skip to content

Commit 9fe5728

Browse files
Cleanup
1 parent 7b748d6 commit 9fe5728

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 azazelm3dj3d
3+
Copyright (c) 2022-2024 battleoverflow
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Droid
22

3-
<img src="https://raw.githubusercontent.com/azazelm3dj3d/droid/main/.github/assets/droid_logo.png" />
3+
<img src="https://raw.githubusercontent.com/battleoverflow/droid/main/.github/assets/droid_logo.png" />
44

55
Droid is a desktop application created to communicate with Android devices on the local network over the Android debug bridge (adb). You can access the Android device directly over USB or connect to the device through Droid via `adb`. Droid allows you to completely control the Android device using multiple options, including a CLI and a GUI.
66

@@ -14,7 +14,7 @@ Droid can be installed via `pip`
1414
pip install droid
1515
```
1616

17-
You can also download the executable from `itch.io`: https://0xazazelm3dj3d.itch.io/droid
17+
You can also download the executable from `itch.io`: https://battleoverflow.itch.io/droid
1818

1919
## GUI
2020

@@ -30,7 +30,7 @@ droid -g
3030

3131
Current state of the user interface
3232

33-
<img src="https://raw.githubusercontent.com/azazelm3dj3d/droid/main/.github/assets/gui.png" />
33+
<img src="https://raw.githubusercontent.com/battleoverflow/droid/main/.github/assets/gui.png" />
3434

3535
## Simple usage (CLI)
3636

@@ -114,4 +114,4 @@ droid -ip 127.0.0.1 -sl -o screenshot
114114

115115
A wiki for common Android snippets is also available. This wiki shows examples of how Droid can used with the Android operating system
116116

117-
Wiki: https://github.com/azazelm3dj3d/droid/wiki/Helpful-Android-Snippets
117+
Wiki: https://github.com/battleoverflow/droid/wiki/Helpful-Android-Snippets

build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
function Build-Droid {
44
$loggedInUser = ([System.Environment]::UserName)
5-
$version = "1.4.21"
5+
$version = "1.4.22"
66

77
if (((Get-CimInstance -ClassName CIM_OperatingSystem).OSArchitecture) == "ARM 64-bit Processor") {
88
$arch = "arm_64"

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ function build_droid() {
44
echo "Generating executable..."
55

66
user=$(whoami)
7-
version="1.4.21"
7+
version="1.4.22"
88

99
if [[ "$OSTYPE" == "linux-gnu"* ]]
1010
then

droid/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Owner: azazelm3dj3d (https://github.com/azazelm3dj3d)
3-
Project: Droid (https://github.com/azazelm3dj3d/droid)
2+
Owner: battleoverflow (https://github.com/battleoverflow)
3+
Project: Droid (https://github.com/battleoverflow/droid)
44
License: MIT
55
"""

droid/main.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
Owner: azazelm3dj3d (https://github.com/azazelm3dj3d)
3-
Project: Droid (https://github.com/azazelm3dj3d/droid)
2+
Owner: battleoverflow (https://github.com/battleoverflow)
3+
Project: Droid (https://github.com/battleoverflow/droid)
44
License: MIT
55
"""
66

@@ -34,8 +34,8 @@
3434

3535
args = parser.parse_args()
3636

37-
author = "azazelm3dj3d"
38-
version = "1.4.21"
37+
author = "battleoverflow"
38+
version = "1.4.22"
3939

4040
# Default Android Debug Bridge (adb) location on specific platforms
4141
if platform.system() == 'Darwin':

droid/view.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
Owner: azazelm3dj3d (https://github.com/azazelm3dj3d)
3-
Project: Droid (https://github.com/azazelm3dj3d/droid)
2+
Owner: battleoverflow (https://github.com/battleoverflow)
3+
Project: Droid (https://github.com/battleoverflow/droid)
44
License: MIT
55
"""
66

setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
Owner: azazelm3dj3d (https://github.com/azazelm3dj3d)
3-
Project: Droid (https://github.com/azazelm3dj3d/droid)
2+
Owner: battleoverflow (https://github.com/battleoverflow)
3+
Project: Droid (https://github.com/battleoverflow/droid)
44
License: MIT
55
"""
66

@@ -11,12 +11,12 @@
1111

1212
setuptools.setup(
1313
name = "droid",
14-
version = "1.4.21",
15-
author = "azazelm3dj3d",
14+
version = "1.4.22",
15+
author = "battleoverflow",
1616
description = "Droid is a remote communication application created to communicate with Android devices on the local network over the Android debug bridge (adb). Available as a CLI or GUI.",
1717
long_description = long_description,
1818
long_description_content_type = "text/markdown",
19-
url = "https://github.com/azazelm3dj3d/droid",
19+
url = "https://github.com/battleoverflow/droid",
2020
classifiers = [
2121
"Programming Language :: Python :: 3",
2222
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)