{"id":30071297,"url":"https://github.com/sunpodder/relay-pc","last_synced_at":"2025-09-02T17:19:37.151Z","repository":{"id":307506113,"uuid":"1029749837","full_name":"SunPodder/relay-pc","owner":"SunPodder","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-31T14:27:57.000Z","size":39,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-31T18:13:37.524Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SunPodder.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-31T14:10:26.000Z","updated_at":"2025-07-31T14:28:01.000Z","dependencies_parsed_at":"2025-07-31T18:25:30.983Z","dependency_job_id":null,"html_url":"https://github.com/SunPodder/relay-pc","commit_stats":null,"previous_names":["sunpodder/relay-pc"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/SunPodder/relay-pc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SunPodder%2Frelay-pc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SunPodder%2Frelay-pc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SunPodder%2Frelay-pc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SunPodder%2Frelay-pc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SunPodder","download_url":"https://codeload.github.com/SunPodder/relay-pc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SunPodder%2Frelay-pc/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269423687,"owners_count":24414612,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-08T02:00:09.200Z","response_time":72,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-08-08T12:40:30.877Z","updated_at":"2025-08-08T12:40:32.146Z","avatar_url":"https://github.com/SunPodder.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Relay PC - Android Notification Center\n\nA desktop notification center that receives and displays notifications from your Android device in real-time.\n\n## Features\n\n- **Automatic Discovery**: Finds your Android server automatically using mDNS\n- **Real-time Notifications**: Displays notifications from your Android device instantly\n- **Modern Interface**: Clean, semi-transparent notification panel\n- **System Tray Integration**: Access via system tray icon\n- **Popup Notifications**: Temporary popup windows for new notifications\n- **Interactive Actions**: Reply to messages and trigger notification actions\n\n## Requirements\n\n- Qt6 (Core, Widgets, Network, DBus)\n- C++17 compatible compiler\n- Linux desktop environment\n- Android device with compatible notification server app\n\n## Installation \u0026 Building\n\n1. **Install Dependencies**:\n   ```bash\n   # Ubuntu/Debian\n   sudo apt install qt6-base-dev qt6-tools-dev build-essential\n   \n   # Fedora\n   sudo dnf install qt6-qtbase-devel qt6-qttools-devel gcc-c++\n   \n   # Arch Linux\n   sudo pacman -S qt6-base qt6-tools gcc\n   ```\n\n2. **Build the Application**:\n   ```bash\n   git clone https://github.com/SunPodder/relay-pc\n   cd relay-pc\n   qmake6 relay-pc.pro\n   make\n   ```\n\n3. **Run**:\n   ```bash\n   ./relay-pc\n   ```\n\n## Usage\n\n### Getting Started\n\n1. **Install the Android App**: Install the compatible notification server app on your Android device\n2. **Connect to Same Network**: Ensure both your PC and Android device are on the same WiFi network\n3. **Launch Relay PC**: The app will automatically discover and connect to your Android device\n4. **Access Panel**: Click the system tray icon or use `Ctrl+Shift+N` to show/hide notifications\n\n### Command Line Options\n\n```bash\n./relay-pc                                    # Normal mode with auto-discovery\n./relay-pc --direct \u003cip-address\u003e [port]      # Connect directly to specific server\n./relay-pc --verbose                         # Enable debug logging\n./relay-pc --help                           # Show help information\n```\n\n### Controls\n\n- **System Tray**: Click to toggle notification panel\n- **Hotkey**: `Ctrl+Shift+N` to show/hide panel\n- **Remove**: Click × on notification cards to dismiss\n- **Actions**: Click ⌄ on cards to expand available actions (Reply, Mark as Read, etc.)\n\n## Troubleshooting\n\n### Connection Issues\n\nIf the app can't find your Android device:\n\n1. **Check Network**: Ensure both devices are on the same WiFi network\n2. **Firewall**: Make sure your firewall allows mDNS traffic (port 5353 UDP)\n3. **Direct Connection**: Try connecting directly:\n   ```bash\n   ./relay-pc --direct \u003candroid-device-ip\u003e 8080\n   ```\n4. **Verbose Logging**: Enable debug output to see connection details:\n   ```bash\n   ./relay-pc --verbose\n   ```\n\n### Common Solutions\n\n- **Restart WiFi** on both devices\n- **Check Android app** is running and properly configured\n- **Try direct IP connection** if mDNS discovery fails\n- **Disable VPN** temporarily as it may interfere with local network discovery\n\n## Android Server Setup\n\n[https://github.com/SunPodder/Relay](https://github.com/SunPodder/Relay)\n\nCheck the Android app documentation for specific setup instructions.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunpodder%2Frelay-pc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsunpodder%2Frelay-pc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunpodder%2Frelay-pc/lists"}