Search found 965 matches

by drakinite
Sat Feb 10, 2024 8:43 pm
Forum: MediaMonkey 5 developer forum
Topic: Targeting the CSS of a specific menu item
Replies: 4
Views: 275

Re: Targeting the CSS of a specific menu item

No prob!

You can also use less's lighten/darken functions if you want to lighten or darken an existing color, btw: https://lesscss.org/functions/#color-operations-lighten
by drakinite
Sat Feb 10, 2024 7:26 pm
Forum: MediaMonkey 5 developer forum
Topic: Targeting the CSS of a specific menu item
Replies: 4
Views: 275

Re: Targeting the CSS of a specific menu item

Do you mean this radio button here? https://i.imgur.com/Sj3xXmp.png If so, unfortunately I don't think it's possible to uniquely identify the View -> Skin submenu in CSS. As far as I'm aware, if you want to change the color of this radio button, you'd have to change the color of all radio buttons ac...
by drakinite
Tue Nov 21, 2023 4:24 pm
Forum: Need Help with MMW5 Addons?
Topic: Minilyrics support?
Replies: 27
Views: 18607

Re: Minilyrics support?

Adding MiniLyrics support back is on the to-do list, but we don't have a ton of development resources and it may take a while. I don't want to presume, but if you made the lyrics window detachable in the same way as visualization, then it could float amidst the main screen, and that might be a good...
by drakinite
Tue Nov 21, 2023 4:22 pm
Forum: MediaMonkey 5 developer forum
Topic: [REQ] Extension to Bomb Rating addon
Replies: 1
Views: 4373

Re: [REQ] Extension to Bomb Rating addon

This would be a good thing to add to the Addon & Skin Requests thread: viewtopic.php?t=101064
by drakinite
Tue Nov 21, 2023 4:19 pm
Forum: Need Help with MMW5 Addons?
Topic: CustomNodes and SQL
Replies: 2
Views: 1569

Re: CustomNodes and SQL

I think you just had a syntax error, because you have un-escaped apostrophes inside your string. When editing customNodesDefiniton.js in an IDE like Visual Studio Code, it'll usually show you when there's an error in your JS syntax. https://i.imgur.com/GaT5qF7.png Simplest fix is to just replace ' w...
by drakinite
Tue Nov 21, 2023 4:12 pm
Forum: Need Help with MMW5 Addons?
Topic: [REQ] Show Links Addon - can Beatport be added? [#20406]
Replies: 2
Views: 1353

Re: Show Links Addon - can Beatport be added?

Instead of adding Beatport to the list of default engines, because then we'd have to edit the hard-coded URL if Beatport changes their site (which I noticed Napster has done, which was the example custom URL), it makes more sense to me to just support multiple custom search engines. Tracked as: http...
by drakinite
Sun Nov 05, 2023 4:40 pm
Forum: Need Help with MMW5 Addons?
Topic: Essential Now Playing (MM to OBS/txt file) alternative?
Replies: 5
Views: 2139

Re: Essential Now Playing (MM to OBS/txt file) alternative?

Sorry, I thought I made sure all my OneDrive links on the forum were still working when I was deleting/moving files in my OneDrive a few weeks ago. This one must have slipped through the cracks. This link should work. https://1drv.ms/u/s!AqHzUrf30uprqIxNkbmeORTh9kqsLw?e=ygdDfJ Let me know if the add...
by drakinite
Tue Oct 24, 2023 1:05 pm
Forum: Need Help with MMW5 Addons?
Topic: Plex API Sync
Replies: 9
Views: 4202

Re: Plex API Sync

Since my last reply on this thread, I've actually set up my own Plex server on my NAS, so I'm more familiar with how Plex works. If you can set up some kind of file syncing between your PC and your server (for example: Nextcloud or MediaMonkeyServer), you could potentially add that synced folder as ...
by drakinite
Wed Oct 18, 2023 12:06 am
Forum: MediaMonkey 5 developer forum
Topic: pack-mmip, an automatic MMIP packer using Node.js
Replies: 10
Views: 36799

Re: pack-mmip, an automatic MMIP packer using Node.js

New release, v1.3.0: Major archive bugfix + minor improvements Updated dependencies, including a new version of archiver which seems to fix the occasional issue where the archive gets corrupted When there's an error creating a symlink ( pack-mmip --create-symlink ), it'll now open the problematic fo...
by drakinite
Sun Oct 08, 2023 12:55 pm
Forum: Need Help with MMW5 Addons?
Topic: JustListAlbums report for MMW5?
Replies: 2
Views: 1450

Re: JustListAlbums report for MMW5?

What does the addon do exactly? If it literally just exports a list of all your library's albums, it would probably be pretty simple to recreate for MM5.
by drakinite
Thu Oct 05, 2023 7:42 pm
Forum: MediaMonkey 5 developer forum
Topic: CSS to swap artwork alignment to top
Replies: 7
Views: 1809

Re: CSS to swap artwork alignment to top

Gotcha, that makes sense (I think!) thank you :D I'll have a play around later and experiment. Would I be wasting my time trying to write some simple code that dynamically resizes the pane height to fit the artwork plus the text for artist/album etc above it? So for albums with longer titles/artist...
by drakinite
Wed Oct 04, 2023 11:02 am
Forum: MediaMonkey 5 developer forum
Topic: CSS to swap artwork alignment to top
Replies: 7
Views: 1809

Re: CSS to swap artwork alignment to top

No prob. If you don't know yet how to package an addon, check the main page on https://www.mediamonkey.com/docs/apinew/ (it was copied over from the wiki but my plan is to put everything MM5 addon-related there) - and since the code snippet modifies ArtWindow, put the code in controls/artWindow_add....
by drakinite
Tue Oct 03, 2023 7:34 pm
Forum: MediaMonkey 5 developer forum
Topic: CSS to swap artwork alignment to top
Replies: 7
Views: 1809

Re: CSS to swap artwork alignment to top

Unfortunately the text & image positioning of the artwork window are hardcoded in the HTML (see controls/artWindow.js, function _createlayout()) But you can override it in JS with an addon. Example: // override the ArtWindow constructor ArtWindow.prototype.override({ // specifically override the...
by drakinite
Fri Sep 29, 2023 2:35 pm
Forum: Beta testing, bugs, and feature requests - MMW5
Topic: display problems when using two monitors with different resolutions [#17552]
Replies: 57
Views: 25646

Re: display problems when using two monitors with different resolutions [#17552]

Peke wrote: Thu Sep 28, 2023 3:56 pm Hi,
Have you tried https://www.thewindowsclub.com/virtual- ... windows-10
That looks like it just rearranges windows to help you organize your workspace; it doesn't seem like it simulates an extra display.
by drakinite
Thu Sep 28, 2023 1:42 pm
Forum: Beta testing, bugs, and feature requests - MMW5
Topic: display problems when using two monitors with different resolutions [#17552]
Replies: 57
Views: 25646

Re: display problems when using two monitors with different resolutions [#17552]

To make it easier for us to test different display configurations, does anyone here know if it's possible to simulate a multi-display setup in a development environment? Say, for example, that I only have one monitor that's 1920x1080, but someone experienced a bug where they have two 2560x1440 scree...