3 Commits
1.2.3 ... 1.2.4

Author SHA1 Message Date
MasterAcnolo
4be5c14999 Merge pull request #16 from MasterAcnolo/build-branch
1.2.4
2025-09-27 11:15:41 +02:00
MasterAcnolo
b92ffebdb4 YT-DLP Maj Automatique 2025-09-27 11:10:34 +02:00
MasterAcnolo
7b6e48b09e Préparation 1.2.4 2025-09-26 07:50:09 +02:00
8 changed files with 18 additions and 10 deletions

View File

@@ -2,11 +2,11 @@
<!-- Release -->
![Static Badge](https://img.shields.io/badge/Release-1.2.3-blue?style=flat&logo=Test)
![Static Badge](https://img.shields.io/badge/Release-1.2.4-blue?style=flat&logo=Test)
<!-- Build (Next Release) -->
![Static Badge](https://img.shields.io/badge/Build-1.2.4--beta-yellow?style=flat&logo=Test)
![Static Badge](https://img.shields.io/badge/Build-1.2.5--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.

View File

@@ -2,11 +2,11 @@
<!-- Release -->
![Static Badge](https://img.shields.io/badge/Release-1.2.3-blue?style=flat&logo=Test)
![Static Badge](https://img.shields.io/badge/Release-1.2.4-blue?style=flat&logo=Test)
<!-- Build (Next Release) -->
![Static Badge](https://img.shields.io/badge/Build-1.2.4--beta-yellow?style=flat&logo=Test)
![Static Badge](https://img.shields.io/badge/Build-1.2.5--beta-yellow?style=flat&logo=Test)
> This project aims to enable free, open-source, and unrestricted downloading of Video/Audio content.

View File

@@ -40,7 +40,7 @@ async function createWindow() {
}
mainWindow = new BrowserWindow({
title: "Freedom Loader 1.2.3", // A Changer à chaque Version
title: "Freedom Loader 1.2.4", // A Changer à chaque Version
width: 750,
height: 800,
minWidth: 750,

View File

@@ -1,7 +1,7 @@
{
"name": "freedom-loader",
"productName": "Freedom Loader",
"version": "1.2.3",
"version": "1.2.4",
"author": "MasterAcnolo",
"description": "Freedom Loader",
"main": "main.js",
@@ -50,8 +50,8 @@
"to": "confirm-icon.png"
},
{
"from": "ressources/yt-dlp 2025.09.23.exe",
"to": "yt-dlp 2025.09.23.exe"
"from": "ressources/yt-dlp.exe",
"to": "yt-dlp.exe"
},
{
"from": "ressources/ffmpeg.exe",

Binary file not shown.

View File

@@ -23,7 +23,15 @@ 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.09.23.exe');
const ytDlpPath = path.join(process.resourcesPath, 'yt-dlp.exe');
execFile(ytDlpPath, ["-U"], (err, stdout, stderr) => {
if (err) {
logger.error("Erreur update yt-dlp:", err);
return;
}
logger.info(`Update yt-dlp : ${stdout}`);
});
router.post("/", (req, res) => {
try {

View File

@@ -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.09.23.exe');
const ytDlpPath = path.join(__dirname, '../../ressources/yt-dlp.exe');
// Vérification que yt-dlp.exe existe bien au lancement du module
if (!fs.existsSync(ytDlpPath)) {