From ad2590f34163cf6d25e4c56b913ffd974547c420 Mon Sep 17 00:00:00 2001
From: Aria Horak <147880431+aweeri@users.noreply.github.com>
Date: Sat, 27 Sep 2025 01:45:20 +0200
Subject: [PATCH 1/3] updated image
---
README.md | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index c7ec3ba..1f3a068 100644
--- a/README.md
+++ b/README.md
@@ -21,10 +21,11 @@ Fill out the required information and test your webhook. If that works - you're
### What it looks like in reality
-
+
+
### Contributors
- [aweeri](https://github.com/aweeri) – Original creator
- [TotallyAm](https://github.com/TotallyAm) – Fuel cost & distance calculation feature
-- [SweetJonnySauce](https://github.com/SweetJonnySauce) – Ubuntu compatibility fix
\ No newline at end of file
+- [SweetJonnySauce](https://github.com/SweetJonnySauce) – Ubuntu compatibility fix
From 52db131be61500d56270471a73c949e8436c1353 Mon Sep 17 00:00:00 2001
From: Aria Horak <147880431+aweeri@users.noreply.github.com>
Date: Sat, 27 Sep 2025 01:49:28 +0200
Subject: [PATCH 2/3] just for you
---
README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/README.md b/README.md
index 1f3a068..315b842 100644
--- a/README.md
+++ b/README.md
@@ -29,3 +29,4 @@ Fill out the required information and test your webhook. If that works - you're
- [aweeri](https://github.com/aweeri) – Original creator
- [TotallyAm](https://github.com/TotallyAm) – Fuel cost & distance calculation feature
- [SweetJonnySauce](https://github.com/SweetJonnySauce) – Ubuntu compatibility fix
+- [MrTagnan](https://github.com/MrTagnan) – "pls add me" + contributed imagery and minimal design adjustments
From a51d93f115a370394e5de117e5d07941033a250f Mon Sep 17 00:00:00 2001
From: SweetJonnySauce
Date: Tue, 30 Dec 2025 16:19:29 -0800
Subject: [PATCH 3/3] Updates to make FCDN compatible with EDMC 6.0.0
---
load.py | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/load.py b/load.py
index 076fc73..b264e73 100644
--- a/load.py
+++ b/load.py
@@ -4,6 +4,7 @@
"""
import tkinter as tk
+from tkinter import ttk
from pathlib import Path
from typing import Optional, Dict, Any
from datetime import datetime, timedelta
@@ -105,6 +106,8 @@ def plugin_app(parent: tk.Frame) -> Optional[tk.Frame]:
def plugin_prefs(parent: nb.Notebook, cmdr: str, is_beta: bool) -> Optional[tk.Frame]:
frame = nb.Frame(parent)
frame.columnconfigure(1, weight=1)
+
+ entry_widget = getattr(nb, "Entry", ttk.Entry)
current_row = 0
@@ -127,7 +130,7 @@ def plugin_prefs(parent: nb.Notebook, cmdr: str, is_beta: bool) -> Optional[tk.F
for label, attr in settings:
current_row += 1
nb.Label(frame, text=label).grid(row=current_row, column=0, padx=10, pady=5, sticky=tk.W)
- entry = nb.Entry(frame, width=60)
+ entry = entry_widget(frame, width=60)
entry.grid(row=current_row, column=1, padx=10, pady=5, sticky=tk.EW)
setattr(config_state, attr, entry)
@@ -583,4 +586,4 @@ def journal_entry(cmdr: str, is_beta: bool, system: str, station: str,
return "FCDN: Discord webhook error."
except Exception as e:
logger.error(f"Error sending to Discord: {e}")
- return "FCDN: Error sending to Discord."
\ No newline at end of file
+ return "FCDN: Error sending to Discord."