@sdetweil
I managed to figure it out.
Just had to play around with the font-size and now it’s as I like it,
Thanks for your patience.
Read the statement by Michael Teeuw here.
Latest posts made by p1lspeda
-
RE: MMM-CalendarExt3
-
RE: MMM-CalendarExt3
I am sorry :(
Might need some new glasses after all -
RE: MMM-CalendarExt3
@sdetweil
I could narrow it down to cellWeather but I cannot find any css-styles in the module’s *.css :/
This means I am lost as to where to start testing :( -
RE: MMM-CalendarExt3
@sdetweil
We are getting there !
The module - without custom.css settings - already triggers my OCD -
RE: MMM-CalendarExt3
@sdetweil
not that I can remember as this would mess up things.
Luckily I found a back up my “old” (pre-fresh install) MMM-CalendarExt3.css and my “new” (post-fresh install) MMM-CalendarExt3.css.
And they are a match, so there is no difference.Any ideas ?
-
RE: MMM-CalendarExt3
Hi folks,
it’s me again with a (probably) simple solution.
After I did a complete fresh install and re-added my custom.css, my Calendar looks a little odd - it triggers my OCD.I guess I do not need to explain what is bothering me.
Why is the weather info centered on monday ?
How do I get CW, Weather and Current Day in 1 single line ?This is my current custom.css for MMM-CalendarExt3
.CX3 .cw { color: white; } .CX3 .weekend_2 { color: white; } .CX3 .weekend_1 { color: white; } .CX3 .event { border: none; } .CX3 .cell { border: none; background-color: rgba(255,255,255,0); } .CX3 .cellHeader .cellDate { flex-grow: 0; } .CX3 .cw::before { content: "CW"; margin-right: 0px; }
Ideas/Tips/Hints are much appreciated.
What I do not understand is, that this has changed after I did a fresh install but re-added my backed up custom.css :-/ -
RE: MMM-PublicTransportHafas - Error when loading - DeparturFetcher.mjs
@sdetweil
good to know for the future. Thanks.
I was unaware of the “force” parameter, that’s why I never tried it. -
RE: MMM-PublicTransportHafas - Error when loading - DeparturFetcher.mjs
@sdetweil
I removed the entire MagicMirror directory before reinstalling MM.
I didn’t make a backup, so I cannot provide the log. Sorry.For updating I tried
bash -c "$(curl -sL https://raw.githubusercontent.com/sdetweil/MagicMirror_scripts/master/upgrade-script.sh)"
and
bash -c "$(curl -sL https://raw.githubusercontent.com/sdetweil/MagicMirror_scripts/master/upgrade-script.sh)" apply
and the fresh install was achieved by using
bash -c "$(curl -sL https://raw.githubusercontent.com/sdetweil/MagicMirror_scripts/master/raspberry.sh)"
-
RE: MMM-PublicTransportHafas - Error when loading - DeparturFetcher.mjs
@KristjanESPERANTO
Thanks for your patience,Edit: did a complete reinstall and now it works. I must have misconfigured something and could not remember what or how.
#############################
This is what I have done:- I switched to the master branch yesterday and ran @sdetweil 's update script no change
- I’ve done a fresh module install - no change
- I’ve ran @sdetweil 's upgrade script - no change
pi@magicmirror:~/MagicMirror $ git branch _fix_clipping * master pi@magicmirror:~/MagicMirror $ cd modules/MMM-PublicTransportHafas/ pi@magicmirror:~/MagicMirror/modules/MMM-PublicTransportHafas $ npm ci --omit=dev > mmm-publictransporthafas@3.1.11 prepare > [ -f node_modules/.bin/husky ] && husky || echo husky is not installed. husky is not installed. added 63 packages, and audited 64 packages in 20s 19 packages are looking for funding run `npm fund` for details found 0 vulnerabilities pi@magicmirror:~/MagicMirror/modules/MMM-PublicTransportHafas $ pi@magicmirror:~/MagicMirror $ grep version package.json "version": "2.31.0",
Here’s my config.js
{ module: "MMM-PublicTransportHafas", position: "top_right", config: { stationID: "000405041", // Replace with your stationID! stationName: "Höfchen/Listmann", // Replace with your station name! direction: "", // Show only departures heading to this station. (A station ID.) ignoredLines: [], // Which lines should be ignored? (comma-separated list of line names) excludedTransportationTypes: [], // Which transportation types should not be shown on the mirror? (comma-separated list of types) possible values: StN for > timeToStation: 10, // How long do you need to walk to the next Station? showColoredLineSymbols: true, // Want colored line symbols? useColorForRealtimeInfo: true, // Want colored real time information (timeToStation, early)? showTableHeadersAsSymbols: true, // Table Headers as symbols or text? maxUnreachableDepartures: 0, // How many unreachable departures should be shown? maxReachableDepartures: 10, // How many reachable departures should be shown? customLineStyles: "", // Prefix for the name of the custom css file. ex: Leipzig-lines.css (case sensitive) showOnlyLineNumbers: false // Display only the line number instead of the complete name, i. e. "11" instead of "STR 11" } },
The error still occurs.
At this point I’m completely clueless -
RE: MMM-PublicTransportHafas - Error when loading - DeparturFetcher.mjs
@KristjanESPERANTO
I’ve upgraded to the latest MM Versionpi@magicmirror:~/MagicMirror $ grep version package.json "version": "2.31.0-develop",
[2025-05-07 09:57:22.742] [INFO] System information: ### SYSTEM: manufacturer: ; model: ; virtual: false ### OS: platform: linux; distro: Debian GNU/Linux; release: 12; arch: arm64; kernel: 6.12.20+rpt-rpi-v8 ### VERSIONS: electron: 32.2.7; used node: 22.14.0; installed node: 22.14.0; npm: 10.9.2; pm2: 5.4.3 ### OTHER: timeZone: Europe/Berlin; ELECTRON_ENABLE_GPU: undefined
And I still get this error
[2025-05-07 09:57:19.297] [ERROR] Error when loading MMM-PublicTransportHafas: require() of ES Module /home/pi/MagicMirror/modules/MMM-PublicTransportHafas/core/DepartureFetcher.mjs not supported. Instead change the require of /home/pi/MagicMirror/modules/MMM-PublicTransportHafas/core/DepartureFetcher.mjs to a dynamic import() which is available in all CommonJS modules.
My module version:
pi@magicmirror:~/MagicMirror/modules/MMM-PublicTransportHafas $ grep version package.json "version": "3.1.11", pi@magicmirror:~/MagicMirror/modules/MMM-PublicTransportHafas $ git pull Already up to date.
I do not know what else I can do or what I have missed