diff --git a/README-FR.md b/README-FR.md index c0480fa..3fb3968 100644 --- a/README-FR.md +++ b/README-FR.md @@ -2,11 +2,11 @@ -![Static Badge](https://img.shields.io/badge/Release-1.2.2-blue?style=flat&logo=Test) +![Static Badge](https://img.shields.io/badge/Release-1.2.3-blue?style=flat&logo=Test) -![Static Badge](https://img.shields.io/badge/Build-1.2.3--beta-yellow?style=flat&logo=Test) +![Static Badge](https://img.shields.io/badge/Build-1.2.4--beta-yellow?style=flat&logo=Test) > Ce projet a pour but de permettre le téléchargement de contenu Vidéo/Audio de manière gratuite, open source et libre. diff --git a/README.md b/README.md index 308e4c9..39e9f53 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,11 @@ -![Static Badge](https://img.shields.io/badge/Release-1.2.2-blue?style=flat&logo=Test) +![Static Badge](https://img.shields.io/badge/Release-1.2.3-blue?style=flat&logo=Test) -![Static Badge](https://img.shields.io/badge/Build-1.2.3--beta-yellow?style=flat&logo=Test) +![Static Badge](https://img.shields.io/badge/Build-1.2.4--beta-yellow?style=flat&logo=Test) > This project aims to enable free, open-source, and unrestricted downloading of Video/Audio content. diff --git a/main.js b/main.js index b84315f..a948439 100644 --- a/main.js +++ b/main.js @@ -40,7 +40,7 @@ async function createWindow() { } mainWindow = new BrowserWindow({ - title: "Freedom Loader 1.2.2", // A Changer à chaque Version + title: "Freedom Loader 1.2.3", // A Changer à chaque Version width: 750, height: 800, minWidth: 750, diff --git a/package-lock.json b/package-lock.json index 8ae53f4..5fc0b92 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2987,9 +2987,9 @@ } }, "node_modules/detect-libc": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.0.tgz", - "integrity": "sha512-vEtk+OcP7VBRtQZ1EJ3bdgzSfBjgnEalLTp5zjJrS+2Z1w2KZly4SBdac/WDU3hhsNAZ9E8SC96ME4Ey8MZ7cg==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.1.tgz", + "integrity": "sha512-ecqj/sy1jcK1uWrwpR67UhYrIFQ+5WlGxth34WquCbamhFA6hkkwiu37o6J5xCHdo1oixJRfVRw+ywV+Hq/0Aw==", "dev": true, "license": "Apache-2.0", "engines": { @@ -5152,9 +5152,9 @@ } }, "node_modules/jiti": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.5.1.tgz", - "integrity": "sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.0.tgz", + "integrity": "sha512-VXe6RjJkBPj0ohtqaO8vSWP3ZhAKo66fKrFNCll4BTcwljPLz03pCbaNKfzGP5MbrCYcbJ7v0nOYYwUzTEIdXQ==", "dev": true, "license": "MIT", "bin": { diff --git a/package.json b/package.json index f89c845..91b3748 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "freedom-loader", "productName": "Freedom Loader", - "version": "1.2.2", + "version": "1.2.3", "author": "MasterAcnolo", "description": "Freedom Loader", "main": "main.js", @@ -50,8 +50,8 @@ "to": "confirm-icon.png" }, { - "from": "ressources/yt-dlp 2025.08.27.exe", - "to": "yt-dlp 2025.08.27.exe" + "from": "ressources/yt-dlp 2025.09.23.exe", + "to": "yt-dlp 2025.09.23.exe" }, { "from": "ressources/ffmpeg.exe", diff --git a/public/styles/theme/spicy-theme.css b/public/styles/theme/spicy-theme.css index a3046e7..948f133 100644 --- a/public/styles/theme/spicy-theme.css +++ b/public/styles/theme/spicy-theme.css @@ -43,8 +43,9 @@ body.spicy { /* Optionnel: background piments */ body.spicy { - background-image: url('../../assets/images/Spicy.webp'); + background-image: url('../../assets/images/spicy.webp'); background-size:contain; background-position: center; background-attachment: fixed; -} + background-repeat: no-repeat; +} \ No newline at end of file diff --git a/ressources/yt-dlp 2025.09.23.exe b/ressources/yt-dlp 2025.09.23.exe new file mode 100644 index 0000000..dbd201f Binary files /dev/null and b/ressources/yt-dlp 2025.09.23.exe differ diff --git a/server/routes/download.js b/server/routes/download.js index 21e818b..7a87032 100644 --- a/server/routes/download.js +++ b/server/routes/download.js @@ -23,7 +23,7 @@ const logger = require("../logger").logger; // Path vers le fichier exécutable yt-dlp (outil tiers pour le téléchargement) // const ytDlpPath = path.join(process.resourcesPath, '../../yt-dlp.exe'); -const ytDlpPath = path.join(process.resourcesPath, 'yt-dlp 2025.08.27.exe'); +const ytDlpPath = path.join(process.resourcesPath, 'yt-dlp 2025.09.23.exe'); router.post("/", (req, res) => { try { diff --git a/server/routes/info.js b/server/routes/info.js index 0150a30..e0641c9 100644 --- a/server/routes/info.js +++ b/server/routes/info.js @@ -24,7 +24,7 @@ const fs = require("fs"); const { logger } = require("../logger"); // On récupère ton logger Winston // Path absolu vers l'exécutable yt-dlp -const ytDlpPath = path.join(__dirname, '../../ressources/yt-dlp 2025.08.27.exe'); +const ytDlpPath = path.join(__dirname, '../../ressources/yt-dlp 2025.09.23.exe'); // Vérification que yt-dlp.exe existe bien au lancement du module if (!fs.existsSync(ytDlpPath)) {