3 Commits

Author SHA1 Message Date
MasterAcnolo
187e3af559 fix: log transport names files local date 2026-09-27 20:03:25 +02:00
MasterAcnolo
e8c499fe23 fix: sendReport wrong IPC instance 2026-09-27 20:02:56 +02:00
MasterAcnolo
99b7164ff8 fix(update): don't check for update if the app is installed with SNAP or Flatpak 2026-09-27 16:23:28 +02:00
3 changed files with 8 additions and 2 deletions

View File

@@ -122,6 +122,7 @@ function initAutoUpdater(mainWindow) {
* Separated from init for reusability and testability. * Separated from init for reusability and testability.
*/ */
async function checkForUpdates() { async function checkForUpdates() {
if (process.env.SNAP || process.env.FLATPAK_ID) return;
if (!require("electron").app.isPackaged) return; if (!require("electron").app.isPackaged) return;
try { try {

View File

@@ -16,7 +16,12 @@ async function sendReport(params) {
if (includeLogs === "yes" && logDir) { if (includeLogs === "yes" && logDir) {
// YYYY-MM-DD // YYYY-MM-DD
const today = new Date().toISOString().split("T")[0]; const now = new Date();
const today = [
now.getFullYear(),
String(now.getMonth() + 1).padStart(2, "0"),
String(now.getDate()).padStart(2, "0")
].join("-");
const logFilePath = path.join(logDir, `LOGS-${today}.log`); const logFilePath = path.join(logDir, `LOGS-${today}.log`);

View File

@@ -76,7 +76,7 @@ class BugReportModal {
window.electronAPI.logInfo("Submitting:", data); window.electronAPI.logInfo("Submitting:", data);
try { try {
const success = await window.electronAPI.sendReport(data); const success = await window.topbarAPI.sendReport(data);
if (success) { if (success) {
localStorage.removeItem("draft_bug_title"); localStorage.removeItem("draft_bug_title");