diff --git a/README.md b/README.md index 2c1e96b..b48bccc 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@

🛰️ S H A D O W B R O K E R

Global Threat Intercept — Real-Time Geospatial Intelligence Platform

- +

@@ -188,7 +188,7 @@ volumes: 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. -2. Download the `ShadowBroker_v0.1.zip` file. +2. Download the `ShadowBroker_v0.2.zip` file. 3. Extract the folder to your computer. 4. **Windows:** Double-click `start.bat`. **Mac/Linux:** Open terminal, type `chmod +x start.sh`, and run `./start.sh`. diff --git a/frontend/package.json b/frontend/package.json index 280988d..dc8ac53 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "0.1.0", + "version": "0.2.0", "private": true, "scripts": { "dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"", diff --git a/zip_repo.py b/zip_repo.py index 8ceb6ef..092864b 100644 --- a/zip_repo.py +++ b/zip_repo.py @@ -2,7 +2,7 @@ import os import zipfile 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_files = {zip_name, 'zip_repo.py', '.env', '.env.local'}