INTERACT FORUM
More => Old Versions => JRiver Media Center 20 for Windows => Topic started by: CountryBumkin on November 13, 2014, 02:58:17 pm
-
Mojave,
You mentioned in another post that you customized your display in Standard View to show the complete MC version number (such as to show "MC 20.0.38". This is very useful when you have multiple computers running MC and you want to keep them on the same versions (saves time from having to open the Help>About dropdown).
How do you do this customization?
-
I'm not mojave, but I can help.
Put [MC.Version] in the text and it'll be replaced with the version. The trailing zero on the version is going to be removed next build.
-
That's handy, thank you !
-
Thanks.
I think that feature would be useful for everyone. Maybe the next time Jim asks for a list of "quick enhancements" - I can get that one submitted. :)
-
I'm not mojave, but I can help.
Put [MC.Version] in the text and it'll be replaced with the version. The trailing zero on the version is going to be removed next build.
2.0.33.0 Registered
I'd love to see the word "Registered" removed too. I suspect when not registered, it says "Trial" or something to indicated it's not a paid version. But once paid....
-
Just use Left([MC.Version], 7) if you don't want the word registered.
-
Just use Left([MC.Version], 7) if you don't want the word registered.
Thanks.... works great !
-
You can also put any text you want in front of it:
JRiver Media Center Left([MC.Version], 7)
Only ~math(175-Mid([mc.version],5,2)) builds until MC21!
JRiver Media Center 20.0.38
Only ~137 Builds Until MC21! ;D
-
Am I missing something? why so complicated?
JRiver Media Center [App Version]
this has always worked for me and never had registered or trailing 0s ?
(http://i.imgur.com/KWAqcEP.png)
-
I believe [App Version] used to just display "20" rather than "20.0.xx"
And [MC.Version] displayed "20.0.xx.0"
-
I believe [App Version] used to just display "20" rather than "20.0.xx"
And [MC.Version] displayed "20.0.xx.0"
I don't think I changed that since version 15, but hey never really thought about it .. it works though :D
-
I add a nice blue font to compliment the musical note icons!
-
Now if i could just figure out the text on the bottom in standard view, playing a playlist, lists the first song played but then never changes again?
-
LOL...
"Left([MC.Version], 7)"
no longer works with 20.0.100
needs to be
"Left([MC.Version], 8)" // that is an 8 then a right paren
I've switched to [App Version]
-
Nice. I've now switched to:
removeright([App Name], 3) [App Version]
As [App Name] returns "JRiver Media Center 20" (without quotes), and [App Version] returns "20.0.100", I'm trimming characters from the end of [App Name] to avoid the repeat.
Actually I am removing three characters from [App Name] and then adding in a space so that when MC gets to version 100 this will still work! (Just with an extra space in there.)
To be really correct, the code should trim from the last space in [App Name] to the end, to be future proof and retain a single space. But I leave that to someone else to work out the code. ;D
I know, I could just put the name in as text, as above, but the name may change one day!