Search found 229 matches

by TIV73
Fri Feb 11, 2022 2:40 pm
Forum: Beta testing, bugs, and feature requests - MMW5
Topic: [REQ] Searching for ISRC [#18834]
Replies: 2
Views: 705

Re: [REQ] Searching for ISRC

I can find tracks by searching for their ISRC just fine, so while there's no explicit setting to activate or deactivate it in the options menu, it looks like the field is still considered when using the global search.
by TIV73
Thu Feb 03, 2022 10:22 am
Forum: Need Help with MMW5 Addons?
Topic: Code Monkey - A customizable dark skin inspired by Visual Studio
Replies: 71
Views: 24920

Re: Code Monkey - A customizable dark skin inspired by Visual Studio

If that is responding to me, I don't understand what you are saying. Just to be clear I am running MM 5.0.3.2604 (ie. including the mod you are waiting for) And I am running your updated 3.0.58, which I obtained from Github. Yes, I understand that. What I'm saying is that the version you are using ...
by TIV73
Thu Feb 03, 2022 9:00 am
Forum: Need Help with MMW5 Addons?
Topic: Code Monkey - A customizable dark skin inspired by Visual Studio
Replies: 71
Views: 24920

Re: Code Monkey - A customizable dark skin inspired by Visual Studio

Peke wrote: Wed Feb 02, 2022 7:38 pm Many more fixes will be done before that.
That's fine, I'm in no particular hurry to release the new skin version.
by TIV73
Thu Feb 03, 2022 8:58 am
Forum: Need Help with MMW5 Addons?
Topic: Code Monkey - A customizable dark skin inspired by Visual Studio
Replies: 71
Views: 24920

Re: Code Monkey - A customizable dark skin inspired by Visual Studio

The latest skin version removed the progress bar container to utilize the new implementation upcoming in 5.0.3, so the skin is completely unaware of where the progress bar is, or if it's there at all.
by TIV73
Wed Feb 02, 2022 5:30 am
Forum: Need Help with MMW5 Addons?
Topic: Code Monkey - A customizable dark skin inspired by Visual Studio
Replies: 71
Views: 24920

Re: Code Monkey - A customizable dark skin inspired by Visual Studio

Barry4679 wrote: Wed Feb 02, 2022 5:28 am The requisite MM5 version has now been released as a beta.
Is this what you are waiting for?
Yes, but I'm waiting for the relase version.
by TIV73
Mon Jan 31, 2022 11:11 am
Forum: Beta testing, bugs, and feature requests - MMW5
Topic: Collection nodes cannot be unpinned [#16967 ]
Replies: 4
Views: 996

Re: Collection nodes cannot be unpinned [#16967 ]

Awesome, thanks a lot! In 2604 unpinning now seems to work for most collection, except for entire library, home, and playing nodes. Reading the ticket I understand that not being able to pin them may be intentional, so not being to unpin them is a logical side effect since they are not expected to b...
by TIV73
Wed Jan 26, 2022 6:02 pm
Forum: Beta testing, bugs, and feature requests - MMW5
Topic: Collection nodes cannot be unpinned [#16967 ]
Replies: 4
Views: 996

Collection nodes cannot be unpinned [#16967 ]

Hi, once the collection nodes are pinned, they cannot be removed again since the unpin it option is missing from their context menu: https://i.imgur.com/9l8l7jH.png https://i.imgur.com/mWUHa3X.png To reproduce drag a collection over the Pinned collection to pin it. Once the item is pinned it cannot ...
by TIV73
Sun Jan 23, 2022 4:36 pm
Forum: Need Help with MMW5 Addons?
Topic: Code Monkey - A customizable dark skin inspired by Visual Studio
Replies: 71
Views: 24920

Re: Code Monkey - A customizable dark skin inspired by Visual Studio

I just created a new release for the progress bar changes. The new minimum MM version for the addon is now 5.0.3 so I'll only publish it to the addon directory once 5.0.3 is released, but the mmip can be downloaded from github . The change is, technically speaking, backwards compatible since it just...
by TIV73
Sat Jan 22, 2022 3:03 pm
Forum: Need Help with MMW5 Addons?
Topic: Code Monkey - A customizable dark skin inspired by Visual Studio
Replies: 71
Views: 24920

Re: Code Monkey - A customizable dark skin inspired by Visual Studio

Yeah, we had a short talk and 5.0.3 will feature a new implementation for the progress bar which should solve the problem. I'll wait until a test build with the fix is available so I can make sure that the skin works fine with the changes and will release a new version after that.
by TIV73
Thu Jan 20, 2022 5:00 am
Forum: Need Help with MMW5 Addons?
Topic: Code Monkey - A customizable dark skin inspired by Visual Studio
Replies: 71
Views: 24920

Re: Code Monkey - A customizable dark skin inspired by Visual Studio

I think that you are saying that there is auto-fall-back, where MM creates a "temporary progress back that can overlap with other elements" in a situation where the skin hasn't done something proactive ...I have not seen any evidence of that, ie. in Monkey Groove, or the current version o...
by TIV73
Wed Jan 19, 2022 11:05 am
Forum: Need Help with MMW5 Addons?
Topic: Code Monkey - A customizable dark skin inspired by Visual Studio
Replies: 71
Views: 24920

Re: Code Monkey - A customizable dark skin inspired by Visual Studio

This is a situation that involves rocks and hard places. The problem is basically that mediamonkey expects a container with a certain ID to display the progress bar. If a skin defines said container (like codemonkey and monkey groove do) mediamonkey will use it, otherwise it just creates a new one a...
by TIV73
Thu Jan 06, 2022 5:14 pm
Forum: MediaMonkey 5 developer forum
Topic: Capturing Currently Playing Track
Replies: 3
Views: 1485

Re: Capturing Currently Playing Track

You don't actually need to go through the dom. The player object should be globally available in js, as are the methods to attach event listeners: function displayTrack(event) { if(event == 'trackChanged'){ var track = app.player.getCurrentTrack(); uitools.toastMessage.show(track.title, { disableUnd...
by TIV73
Wed Jan 05, 2022 6:06 am
Forum: MediaMonkey 5 developer forum
Topic: [SOLVED] Code snippet for timestamp Now()
Replies: 8
Views: 2267

Re: Code snippet for timestamp Now()

Please disregard the previous snippet. While the code posted works for some fields using dates, the lastTimePlayed field wants a full timestamp with time, not a date. Also make sure to lock the tracks you are trying to update, just writing the properties won't work. Here's the full snippet: var trac...
by TIV73
Tue Jan 04, 2022 11:46 am
Forum: Need Help with MMW5 Addons?
Topic: Code Monkey - A customizable dark skin inspired by Visual Studio
Replies: 71
Views: 24920

Re: Code Monkey - A customizable dark skin inspired by Visual Studio

There are a couple of things I consider a core part of the skin e.g. the overall color scheme where everything is a shade of dark (or maybe in the future bright) grays with accent colors to highlight elements. The font is the same since it has a major impact on the overall look and feel of the skin....
by TIV73
Tue Jan 04, 2022 5:34 am
Forum: MediaMonkey 5 developer forum
Topic: [SOLVED] Code snippet for timestamp Now()
Replies: 8
Views: 2267

Re: Code snippet for timestamp Now()

Try one of these

Code: Select all

track.lastTimePlayed =  app.utils.myDecodeDate((new Date()).toISOString().substring(0, 10))
track.lastTimePlayed = app.utils.myDecodeDate(app.utils.dateTime2Timestamp((new Date())))