Skip to content

Commit ca2e1e8

Browse files
committed
🔧 Update GitHub repository username across project
Change GitHub repository username from 'hyperbliss' to 'hyperb1iss' - Update repository URLs in documentation files - Fix repository links in pyproject.toml configuration - Update repository name in release script constants - Modify GitHub Pages deployment URL in mkdocs.yml - Remove status badge from documentation index
1 parent 4b9671d commit ca2e1e8

File tree

6 files changed

+12
-13
lines changed

6 files changed

+12
-13
lines changed

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,8 @@ jobs:
203203
push: true
204204
platforms: linux/amd64,linux/arm64
205205
tags: |
206-
hyperbliss/droidmind:latest
207-
hyperbliss/droidmind:${{ steps.get_version.outputs.VERSION }}
206+
hyperb1iss/droidmind:latest
207+
hyperb1iss/droidmind:${{ steps.get_version.outputs.VERSION }}
208208
ghcr.io/${{ github.repository }}:latest
209209
ghcr.io/${{ github.repository }}:${{ steps.get_version.outputs.VERSION }}
210210
labels: |

docs/docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Docker provides a convenient way to run DroidMind in a containerized, consistent
77
- **Docker**: Ensure Docker Desktop (for Mac/Windows) or Docker Engine (for Linux) is installed and running on your system. [Get Docker](https://docs.docker.com/get-docker/).
88
- **DroidMind Source Code**: You'll need the DroidMind source code, specifically the `Dockerfile`, to build the image. If you haven't already, clone the repository:
99
```bash
10-
git clone https://github.com/hyperbliss/droidmind.git
10+
git clone https://github.com/hyperb1iss/droidmind.git
1111
cd droidmind
1212
```
1313

docs/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
[![Python 3.13+](https://img.shields.io/badge/python-3.13+-9D00FF.svg?style=for-the-badge&logo=python&logoColor=white)](https://www.python.org/downloads/)
88
[![License](https://img.shields.io/badge/license-Apache_2.0-FF00FF.svg?style=for-the-badge&logo=apache&logoColor=white)](license.md)
9-
[![Status](https://img.shields.io/badge/status-active_development-39FF14.svg?style=for-the-badge&logo=githubactions&logoColor=white)](plan.md)
109
[![Code Style](https://img.shields.io/badge/code_style-ruff-00FFFF.svg?style=for-the-badge&logo=ruff&logoColor=white)](https://github.com/astral-sh/ruff)
1110
[![Type Check](https://img.shields.io/badge/type_check-pyright-FFBF00.svg?style=for-the-badge&logo=typescript&logoColor=white)](https://github.com/microsoft/pyright)
1211
[![MCP](https://img.shields.io/badge/protocol-MCP-E6E6FA.svg?style=for-the-badge&logo=anthropic&logoColor=white)](https://modelcontextprotocol.io/)

mkdocs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
site_name: DroidMind Documentation
2-
site_url: https://hyperbliss.github.io/droidmind/
2+
site_url: https://hyperb1iss.github.io/droidmind/
33
site_author: Stefanie Jane 🌠
44
site_description: >-
55
DroidMind - Control Android devices with AI through the Model Context Protocol.
66
77
# Repository
8-
repo_name: hyperbliss/droidmind
9-
repo_url: https://github.com/hyperbliss/droidmind
8+
repo_name: hyperb1iss/droidmind
9+
repo_url: https://github.com/hyperb1iss/droidmind
1010
edit_uri: "edit/main/docs/"
1111

1212
# Copyright
13-
copyright: Copyright © 2024 Stefanie Jane Kondik
13+
copyright: Copyright © 2025 Stefanie Jane
1414

1515
# Theme
1616
theme:
@@ -148,6 +148,6 @@ watch:
148148
# extra:
149149
# social:
150150
# - icon: fontawesome/brands/github
151-
# link: https://github.com/hyperbliss
151+
# link: https://github.com/hyperb1iss
152152
# - icon: fontawesome/solid/book
153153
# link: https://www.mkdocs.org

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ dev = [
5555
sse = ["uvicorn>=0.27.0", "starlette>=0.46.0"]
5656

5757
[project.urls]
58-
Homepage = "https://github.com/hyperbliss/droidmind"
59-
Issues = "https://github.com/hyperbliss/droidmind/issues"
60-
Documentation = "https://github.com/hyperbliss/droidmind#readme"
58+
Homepage = "https://github.com/hyperb1iss/droidmind"
59+
Issues = "https://github.com/hyperb1iss/droidmind/issues"
60+
Documentation = "https://github.com/hyperb1iss/droidmind#readme"
6161

6262
[project.scripts]
6363
droidmind = "droidmind.server:main"

scripts/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
# Constants
2727
PROJECT_NAME = "DroidMind"
28-
REPO_NAME = "hyperbliss/droidmind"
28+
REPO_NAME = "hyperb1iss/droidmind"
2929
PROJECT_LINK = f"https://github.com/{REPO_NAME}"
3030
ISSUE_TRACKER = f"{PROJECT_LINK}/issues"
3131

0 commit comments

Comments
 (0)