mirror of
https://github.com/MasterAcnolo/Freedom-Loader.git
synced 2026-09-27 20:11:15 +02:00
remove: project structure from README
This commit is contained in:
84
README.md
84
README.md
@@ -35,7 +35,6 @@ The primary goal is to make media downloading accessible to users who want offli
|
|||||||
- [Usage](#usage)
|
- [Usage](#usage)
|
||||||
- [Preview](#preview)
|
- [Preview](#preview)
|
||||||
- [Configuration](#configuration)
|
- [Configuration](#configuration)
|
||||||
<!-- - [Project Structure](#project-structure) -->
|
|
||||||
- [Theme Workshop](#Theme-Workshop)
|
- [Theme Workshop](#Theme-Workshop)
|
||||||
- [Technology Stack](#technology-stack)
|
- [Technology Stack](#technology-stack)
|
||||||
- [Development](#development)
|
- [Development](#development)
|
||||||
@@ -285,89 +284,6 @@ Freedom Loader can be configured either through the settings panel in the UI or
|
|||||||
> [!NOTE]
|
> [!NOTE]
|
||||||
> Some configuration changes may require an application restart to take effect.
|
> Some configuration changes may require an application restart to take effect.
|
||||||
|
|
||||||
<!-- ## Project Structure
|
|
||||||
|
|
||||||
```
|
|
||||||
Freedom-Loader/
|
|
||||||
├── app/ # Electron main process modules
|
|
||||||
│ ├── autoUpdater.js
|
|
||||||
│ ├── dependencyCheck.js
|
|
||||||
│ ├── discordRPC.js
|
|
||||||
│ ├── ipcHandlers.js
|
|
||||||
│ ├── pathValidator.js
|
|
||||||
│ ├── splashManager.js
|
|
||||||
│ ├── themeManager.js
|
|
||||||
│ ├── tray.js
|
|
||||||
│ ├── windowManager.js
|
|
||||||
│ └── ytDlpUpdater.js
|
|
||||||
├── build/ # Build resources and assets
|
|
||||||
│ ├── app-icon.ico
|
|
||||||
│ ├── app-icon.png
|
|
||||||
│ ├── banner.png
|
|
||||||
│ └── ...
|
|
||||||
├── config/ # Configuration files
|
|
||||||
│ ├── config.default.json
|
|
||||||
│ └── config.dev.json # Configuration Used when i dev mode
|
|
||||||
├── dist/ # Compiled executables (.exe, .AppImage, .deb, .rpm, .snap)
|
|
||||||
├── public/ # Frontend assets and UI
|
|
||||||
│ ├── index.html
|
|
||||||
│ ├── splash.html # Splash Screen (Start of the application)
|
|
||||||
│ ├── assets/
|
|
||||||
│ │ ├── icon/ # Application icons
|
|
||||||
│ │ └── logo/ # Logo assets
|
|
||||||
│ ├── script/ # Frontend JavaScript modules
|
|
||||||
│ │ ├── appVersion.js
|
|
||||||
│ │ ├── clipboardPaste.js
|
|
||||||
│ │ ├── custompath.js
|
|
||||||
│ │ ├── customthemes.js
|
|
||||||
│ │ ├── downloadstatus.js
|
|
||||||
│ │ ├── fetchinfo.js
|
|
||||||
│ │ ├── progressBar.js
|
|
||||||
│ │ ├── settingsPanel.js
|
|
||||||
│ │ ├── toast.js
|
|
||||||
│ │ └── topbar.js
|
|
||||||
│ └── styles/ # CSS stylesheets
|
|
||||||
│ ├── styles.css
|
|
||||||
│ ├── variables.css
|
|
||||||
│ ├── components/ # Component-specific styles
|
|
||||||
│ └── layout/ # Layout styles
|
|
||||||
├── resources/ # Internal resources (binaries : yt-dlp, ffmpeg...)
|
|
||||||
├── server/ # Express backend server
|
|
||||||
│ ├── logger.js
|
|
||||||
│ ├── server.js
|
|
||||||
│ ├── controller/ # Request handlers
|
|
||||||
│ │ ├── download.controller.js
|
|
||||||
│ │ └── info.controller.js
|
|
||||||
│ ├── helpers/ # Utility functions
|
|
||||||
│ │ ├── buildArgs.helpers.js
|
|
||||||
│ │ ├── getBrowser.helpers.js
|
|
||||||
│ │ ├── notify.helpers.js
|
|
||||||
│ │ ├── parseInfo.helpers.js
|
|
||||||
│ │ ├── path.helpers.js
|
|
||||||
│ │ ├── rateLimit.helpers.js
|
|
||||||
│ │ └── validation.helpers.js
|
|
||||||
│ ├── routes/ # API route definitions
|
|
||||||
│ │ ├── download.route.js
|
|
||||||
│ │ └── info.route.js
|
|
||||||
│ └── services/ # Business logic layer
|
|
||||||
│ ├── download.services.js
|
|
||||||
│ └── info.services.js
|
|
||||||
├── theme/ # Theme system
|
|
||||||
│ ├── template.theme.json # Theme template
|
|
||||||
│ ├── Dark/ # Default dark theme
|
|
||||||
│ └── Light/ # Default light theme
|
|
||||||
├── BINARIES.md # External dependencies & binaries documentation
|
|
||||||
├── CODE_OF_CONDUCT.md # Community guidelines
|
|
||||||
├── config.js # Global configuration loader
|
|
||||||
├── CONTRIBUTING.md # Contribution guidelines
|
|
||||||
├── jest.config.js # Unit testing configuration
|
|
||||||
├── LICENSE # GPLv3 license
|
|
||||||
├── main.js # Electron main process entry point
|
|
||||||
├── package.json # Project metadata and dependencies
|
|
||||||
├── preload.js # Electron preload script (IPC bridge)
|
|
||||||
└── README.md # This file
|
|
||||||
``` -->
|
|
||||||
|
|
||||||
### Architecture Overview
|
### Architecture Overview
|
||||||
|
|
||||||
Freedom Loader uses a client-server architecture within a single Electron application:
|
Freedom Loader uses a client-server architecture within a single Electron application:
|
||||||
|
|||||||
Reference in New Issue
Block a user