MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. Kelemvor
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    K
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 24
    • Posts 63
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: MMM-CalendarExt3Agenda - Can I Make it show more events?

      @sdetweil Hi,

      I ran it via npm start and got this. There are always hundreds of events since it’s my, my wife’s, my daughter’s, etc calendars.

      cadd0f37-53a6-4f56-9369-d3a484aeb1e7-image.png

      It still looks like it did in my above pictures where it only goes partway own the screen.

      posted in Troubleshooting
      K
      Kelemvor
    • RE: MMM-CalendarExt3Agenda - Can I Make it show more events?

      Sorry I haven’t had time to work on this until now. I pasted in your CSS info, and changed the maximumEntries to 99 in the default calendar area, but it didn’t change the events. I used the CSS from up above, and even changed the max-height to 1850, just to use a really big number.

      These are the various CSS entries I have for this module:

      .CX3A {
        font-size: 20px; /* default was 16px */
      	min-width: 440px;
      	max-width: 440px;
      	overflow-y: unset;
      	text-align: left;
      	position: relative;
      	color: var(--color-text);
      	--todayColor: BurlyWood;
      	padding: 5px 5px;
      	max-height: 1850px;
      }
      
      .CX3A .event .description,
      .CX3A .event .location {
        display: none;
      }
      
      .CX3A .cw {
        display: none;
      }
      
      .CX3A .relativeDay {
        display:none;
      }
      
      .CX3A .relativeDay.relativeDay_0 {
        display: inline-block;
      }
      

      The only thing I have for the Config for the default calendar module is:

      config: {
      	maximumEntries: 99,
      	calendars: [...
      

      And here’s the config section for this module:

      	{
      		module: "MMM-CalendarExt3Agenda",
      		position: "top_right",
      		title: "My Agenda",
      		config: {
      			weatherPayload: (payload) => {
      				if (Array.isArray(payload?.forecastArray)) {
      					payload.forecastArray = payload.forecastArray.map((f) => {
      						f.maxTemperature = Math.round(f.maxTemperature * 9 / 5 + 32)
      						f.minTemperature = Math.round(f.minTemperature * 9 / 5 + 32)
      						return f
      					})
      				}
      				return payload
      			},
      			waitFetch: 180000,
      			instanceId: "basicCalendar",
      			locale: 'en-US',
      			firstDayOfWeek: 0,
      			startDayIndex: 0,
      			miniMonthWeekdayOptions: { weekday: 'short' },
      			endDayIndex: 10,
      			skipDuplicated: true,
      			calendarSet: ['m', 'c', 'e', 'n', 'packers', 'volleyball'],
      		}
      	},
      

      I still only have the events going about halfway down the screen. I’m trying ot get it to go down and fill in the area in the red box.

      1381057a-1e8b-44b1-bd5a-b09f21c98db4-image.png

      posted in Troubleshooting
      K
      Kelemvor
    • RE: MMM-CalendarExt3Agenda - Can I Make it show more events?

      @BKeyport said in MMM-CalendarExt3Agenda - Can I Make it show more events?:

      max-height: 850px;

      Well, I tried setting min-height to a really high number. This made the box go down off the screen, but the data still stopped where it did before. When I watch the text as MM is loading, I can see it’s loading 100+ entries for each calendar. I’m pretty sure the events are there, it’s just not displaying them.

      Here’s what I see currently. My modules have shading behind them to make them easier to read…
      PXL_20240120_210735901.jpg

      posted in Troubleshooting
      K
      Kelemvor
    • MMM-CalendarExt3Agenda - Can I Make it show more events?

      Hi,

      I’m not sure if this is a module thing, or a MM thing, but I have MMM-CalendarExt3Agenda setup as the only thing in my top_right location. I want it to go all the way down the side of my screen until it gets to the one thing I have in the Bottom_bar area. However, it’s stopping just over halfway down the screen.

      Is there a way I can tell the module to show more events so it uses more of the screen? Or maybe I have to do something with the MM layout sections to make top_right go down further and MMM-CalendarExt3Agenda will then take up more space?

      Thanks for any ideas.

      posted in Troubleshooting
      K
      Kelemvor
    • Can I hard code the widths for the top_left and top_right columns?

      Hi,
      I have a MM module that expands to take up too much of the screen. Instead of using max_width for that one module, is there a way I can hard code the width of both the left and right columns (fields, locations, whatever you call it).

      I’d like to specify the width of the blank space that goes all the way around the display (or at last the left and right edges), and the width of the left and right columns. I assume this would go in the CSS file somewhere, but I don’t know the names of what I’d need to specify.

      Thanks.

      posted in Troubleshooting
      K
      Kelemvor
    • RE: MMM-CalendarExt3Agenda no longer working after MM update

      @MMRIZE Hi. The version in Packages.json is 1.4.1.

      Thanks.

      posted in Troubleshooting
      K
      Kelemvor
    • RE: MMM-CalendarExt3Agenda no longer working after MM update

      THe vk thing doesn’t seem to be affecting anything so I’ll make a new thread about that if somethign comes up.

      MM is still telling me that there’s an update available for CalendarExt3Agenda.

      I previously ran:

      cd ~/MagicMirror/modules/MMM-CalendarExt3Agenda
      git pull
      npm update
      

      But it still tells me there’s an update. Is there some other command I need to run? I ran it before running the commands you pasted in above so maybe I just need to run these commands again?

      Thanks.

      posted in Troubleshooting
      K
      Kelemvor
    • RE: MMM-CalendarExt3Agenda no longer working after MM update

      @sdetweil Thanks!

      I ran that and it seemed to fix the problem. It still tells me there’s an update for Ext3Agenta. Do I now need to run the Upgrade commands from Git again?

      cd ~/MagicMirror/modules/MMM-CalendarExt3Agenda
      git pull
      npm update
      

      Also, at the end of everything loading I see this. Not sure what it means or if it’s important or not.
      b63ab704-e615-4b9d-ae09-6c95ccc0bb16-image.png

      Thoughts?

      posted in Troubleshooting
      K
      Kelemvor
    • MMM-CalendarExt3Agenda no longer working after MM update

      Hi,
      I installed the new version of MM and now this module isn’t working properly. I get some data but not much. I do see a notification that there’s an update, but when I run git pull and npm install, it gives me a warning about committing changes for a json file and then says aborted. (not sure if that’s important or not).

      Updating d1d25b3…e0adcbf
      error: Your local changes to the following files would be overwritten by merge:
      package-lock.json
      Please commit your changes or stash them before you merge.
      Aborting

      up to date, audited 1 package in 2s

      When I run MM, the calendar info shows but only a few items and doesn’t grab all the calendars in the list.

      Anyone know why this might not be working and how I update it properly if that’s the issue?

      Thanks!

      posted in Troubleshooting
      K
      Kelemvor
    • How can I increase the font size for some modules?

      Hi,

      My MM is connected to a ~24" screen in portrait mode. Some of the modules are easily readable, but some could be a bit bigger. Is there an easy way to increase the font size for them?

      I’ve never been good with the Developer view to figure out which tags are on which elements.

      I’m using the default Weather module and the Forecast section could stand to be a bit larger all around. I’m also using the CalendarExt3Agenda and everything there could stand to be a bit bigger as well.

      Any help would be great.
      Thanks!

      c1b768f4-4962-4049-b130-0909932f2245-image.png

      posted in Troubleshooting
      K
      Kelemvor
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 3 / 7