bump: release v0.2.0

Former-commit-id: f7d0972057
This commit is contained in:
anoracleofra-code
2026-03-08 14:27:54 -06:00
parent ffb3041a2b
commit c8f3812fbf
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -188,7 +188,7 @@ volumes:
If you just want to run the dashboard without dealing with terminal commands: If you just want to run the dashboard without dealing with terminal commands:
1. Go to the **[Releases](../../releases)** tab on the right side of this GitHub page. 1. Go to the **[Releases](../../releases)** tab on the right side of this GitHub page.
2. Download the `ShadowBroker_v0.1.zip` file. 2. Download the `ShadowBroker_v0.2.zip` file.
3. Extract the folder to your computer. 3. Extract the folder to your computer.
4. **Windows:** Double-click `start.bat`. 4. **Windows:** Double-click `start.bat`.
**Mac/Linux:** Open terminal, type `chmod +x start.sh`, and run `./start.sh`. **Mac/Linux:** Open terminal, type `chmod +x start.sh`, and run `./start.sh`.
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "frontend", "name": "frontend",
"version": "0.1.0", "version": "0.2.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"", "dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
+1 -1
View File
@@ -2,7 +2,7 @@ import os
import zipfile import zipfile
def create_clean_zip(): def create_clean_zip():
zip_name = 'ShadowBroker_v0.1.zip' zip_name = 'ShadowBroker_v0.2.zip'
exclude_dirs = {'.git', 'node_modules', 'venv', '.next', '__pycache__'} exclude_dirs = {'.git', 'node_modules', 'venv', '.next', '__pycache__'}
exclude_files = {zip_name, 'zip_repo.py', '.env', '.env.local'} exclude_files = {zip_name, 'zip_repo.py', '.env', '.env.local'}