Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
113 changes: 113 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
name: Release

on:
push:
tags:
- 'v*'

permissions:
contents: write

jobs:
build:
name: Build on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'

- name: Install system dependencies (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y xvfb libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xfixes0

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pyinstaller

- name: Build executable (Windows)
if: runner.os == 'Windows'
run: |
pyinstaller --onefile --windowed --name "QoderResetTool" qoder_reset_gui.py

- name: Build executable (macOS)
if: runner.os == 'macOS'
run: |
pyinstaller --onefile --windowed --name "QoderResetTool" qoder_reset_gui.py

- name: Build executable (Linux)
if: runner.os == 'Linux'
run: |
pyinstaller --onefile --windowed --name "QoderResetTool" qoder_reset_gui.py

- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: qoder-reset-tool-${{ runner.os }}
path: dist/

release:
name: Create GitHub Release
needs: [build]
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Download all artifacts
uses: actions/download-artifact@v4

- name: Create release archives
run: |
cd qoder-reset-tool-Linux && tar -czf ../qoder-reset-tool-linux.tar.gz * && cd ..
cd qoder-reset-tool-Windows && zip -r ../qoder-reset-tool-windows.zip * && cd ..
cd qoder-reset-tool-macOS && tar -czf ../qoder-reset-tool-macos.tar.gz * && cd ..

- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
name: "Qoder-Free ${{ github.ref_name }}"
body: |
## Qoder-Free ${{ github.ref_name }}

### ✨ Features
- One-click reset functionality for Qoder application data
- Machine ID reset with UUID generation
- Telemetry data cleanup and privacy protection
- Deep identity cleanup with comprehensive file removal
- Hardware fingerprint reset for advanced anti-detection
- Multi-language support (English, Vietnamese, Chinese, Russian)
- Cross-platform compatibility (Windows, macOS, Linux)
- Modern PyQt5-based GUI with professional styling
- Version display in status bar

### 📦 Downloads
- **Windows**: `qoder-reset-tool-windows.zip`
- **macOS**: `qoder-reset-tool-macos.tar.gz`
- **Linux**: `qoder-reset-tool-linux.tar.gz`

### 📋 Requirements
- Python 3.7+ (if running from source)
- PyQt5 >= 5.15.0
- requests >= 2.25.0
files: |
qoder-reset-tool-linux.tar.gz
qoder-reset-tool-windows.zip
qoder-reset-tool-macos.tar.gz
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12 changes: 6 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added
- Initial release preparation
- Professional documentation
- GitHub Actions workflow

## [1.0.0] - 2024-08-31
## [1.0.0] - 2025-03-05

### Added
- **Core Features**
Expand All @@ -22,6 +17,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Deep identity cleanup with comprehensive file removal
- Hardware fingerprint reset for advanced anti-detection

- **Version Management**
- Added `__version__` constant for programmatic version access
- Version display in GUI status bar
- GitHub Actions release workflow for automated releases on tag push

- **Multi-Language Support**
- English (en) - Full support
- Vietnamese (vi) - Tiếng Việt
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Qoder Reset Tool 🔒

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Version](https://img.shields.io/badge/version-1.0.0-blue.svg)](https://github.com/locfaker/Qoder-Free/releases/tag/v1.0.0)
[![Python 3.7+](https://img.shields.io/badge/python-3.7+-blue.svg)](https://www.python.org/downloads/)
[![PyQt5](https://img.shields.io/badge/GUI-PyQt5-green.svg)](https://pypi.org/project/PyQt5/)
[![Platform](https://img.shields.io/badge/platform-Windows%20%7C%20macOS%20%7C%20Linux-lightgrey.svg)](https://github.com/locfaker/Qoder-Free)
Expand Down
12 changes: 12 additions & 0 deletions qoder_reset_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
Implemented using PyQt5, fully designed according to user prototype
"""

__version__ = "1.0.0"

import os
import sys
import json
Expand Down Expand Up @@ -435,6 +437,16 @@ def init_ui(self):
}
""")

# Status bar with version info
self.statusBar().showMessage(f"Qoder-Free v{__version__}")
self.statusBar().setStyleSheet("""
QStatusBar {
background-color: #ecf0f1;
color: #7f8c8d;
font-size: 12px;
}
""")

# Initialize status check
self.initialize_status_check()

Expand Down
Loading