From a41f995c081b74b14ae305ca38be0c5a77eb1c59 Mon Sep 17 00:00:00 2001 From: b-tsammmons <233864410+b-tsammons@users.noreply.github.com> Date: Wed, 12 Nov 2025 20:58:15 -1000 Subject: [PATCH] Updated Project Structure moved imgs --- README.md | 21 ++++++++++++------ SETUP.md | 11 +++++++-- .../app_components/assets}/flow-diagram.png | Bin .../assets}/github_pulse_img.png | Bin .../assets}/pulse_logo_gray_no_bkg.png | Bin .../assets}/pulse_logo_white_no_bkg.png | Bin .../pulse_logo_white_no_bkg_github.png | Bin .../assets}/pulse_logo_white_w_black_bkg.png | Bin 8 files changed, 23 insertions(+), 9 deletions(-) rename {media => application/app_components/assets}/flow-diagram.png (100%) rename {media => application/app_components/assets}/github_pulse_img.png (100%) rename {media => application/app_components/assets}/pulse_logo_gray_no_bkg.png (100%) rename {media => application/app_components/assets}/pulse_logo_white_no_bkg.png (100%) rename {media => application/app_components/assets}/pulse_logo_white_no_bkg_github.png (100%) rename {media => application/app_components/assets}/pulse_logo_white_w_black_bkg.png (100%) diff --git a/README.md b/README.md index 4fcbe36..0011ac7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ![GitHub Pulse Logo](media/pulse_logo_white_no_bkg_github.png) +# ![GitHub Pulse Logo](application/app_components/assets/pulse_logo_white_no_bkg_github.png) A Python-based GUI application for GitHub automation workflows and AI assisted workflows. @@ -6,20 +6,27 @@ A Python-based GUI application for GitHub automation workflows and AI assisted w > This project is currently in active development. Features and functionality may change frequently. Bug reports and contributions are welcome and encouraged! > Please be aware that some features may be incomplete or unstable. -![GitHub Pulse img](media/github_pulse_img.png) +![GitHub Pulse img](assets/github_pulse_img.png) ## Pulse Workflow -![Pulse Workflow img](media/flow-diagram.png) +![Pulse Workflow img](assets/flow-diagram.png) ## Project Structure ```text github_pulse/ -├── application/ # Main application directory +├── application/ # Main application directory │ ├── app.py # Application entry point │ ├── requirements.txt # Python dependencies │ └── app_components/ # Application modules +│ ├── assets/ # Images and assets +│ │ ├── flow-diagram.png # Workflow diagram +│ │ ├── github_pulse_img.png # GitHub Pulse image +│ │ ├── pulse_logo_gray_no_bkg.png # GitHub Pulse logo +│ │ ├── pulse_logo_white_no_bkg_github.png # Pulse logo +│ │ ├── pulse_logo_white_no_bkg.png # Pulse logo with background +│ │ └── pulse_logo_white_w_black_bkg.png # GitHub Pulse logo with background │ ├── __init__.py # Package initializer │ ├── ai_manager.py # AI provider integration │ ├── cache_manager.py # Caching functionality @@ -31,9 +38,9 @@ github_pulse/ │ ├── settings_manager.py # Settings management │ ├── utils.py # Utility functions │ └── workflow.py # Workflow processing -├── media/ # Images and assets -├── README.md # This file -├── SETUP.md # Setup guide +├── assets/ # Images and assets +├── README.md # Readme file +├── SETUP.md # This file └── LICENSE # License information ``` diff --git a/SETUP.md b/SETUP.md index 61d3211..198ec79 100644 --- a/SETUP.md +++ b/SETUP.md @@ -79,10 +79,17 @@ The project is organized as follows: ```text github_pulse/ -├── application/ # Main application directory +├── application/ # Main application directory │ ├── app.py # Application entry point │ ├── requirements.txt # Python dependencies │ └── app_components/ # Application modules +│ ├── assets/ # Images and assets +│ │ ├── flow-diagram.png # Workflow diagram +│ │ ├── github_pulse_img.png # GitHub Pulse image +│ │ ├── pulse_logo_gray_no_bkg.png # GitHub Pulse logo +│ │ ├── pulse_logo_white_no_bkg_github.png # Pulse logo +│ │ ├── pulse_logo_white_no_bkg.png # Pulse logo with background +│ │ └── pulse_logo_white_w_black_bkg.png # GitHub Pulse logo with background │ ├── __init__.py # Package initializer │ ├── ai_manager.py # AI provider integration │ ├── cache_manager.py # Caching functionality @@ -94,7 +101,7 @@ github_pulse/ │ ├── settings_manager.py # Settings management │ ├── utils.py # Utility functions │ └── workflow.py # Workflow processing -├── media/ # Images and assets +├── assets/ # Images and assets ├── README.md # Readme file ├── SETUP.md # This file └── LICENSE # License information diff --git a/media/flow-diagram.png b/application/app_components/assets/flow-diagram.png similarity index 100% rename from media/flow-diagram.png rename to application/app_components/assets/flow-diagram.png diff --git a/media/github_pulse_img.png b/application/app_components/assets/github_pulse_img.png similarity index 100% rename from media/github_pulse_img.png rename to application/app_components/assets/github_pulse_img.png diff --git a/media/pulse_logo_gray_no_bkg.png b/application/app_components/assets/pulse_logo_gray_no_bkg.png similarity index 100% rename from media/pulse_logo_gray_no_bkg.png rename to application/app_components/assets/pulse_logo_gray_no_bkg.png diff --git a/media/pulse_logo_white_no_bkg.png b/application/app_components/assets/pulse_logo_white_no_bkg.png similarity index 100% rename from media/pulse_logo_white_no_bkg.png rename to application/app_components/assets/pulse_logo_white_no_bkg.png diff --git a/media/pulse_logo_white_no_bkg_github.png b/application/app_components/assets/pulse_logo_white_no_bkg_github.png similarity index 100% rename from media/pulse_logo_white_no_bkg_github.png rename to application/app_components/assets/pulse_logo_white_no_bkg_github.png diff --git a/media/pulse_logo_white_w_black_bkg.png b/application/app_components/assets/pulse_logo_white_w_black_bkg.png similarity index 100% rename from media/pulse_logo_white_w_black_bkg.png rename to application/app_components/assets/pulse_logo_white_w_black_bkg.png