- Thread starter
- #21
That's the one I took and had to modify as per my previous posts so there isn't a newer one then!
That's OK - as long as I know I have the latest to work from.
That's the one I took and had to modify as per my previous posts so there isn't a newer one then!
I'm not sure I have the required skills for that. I'm happy to tinker with this skin and try to get it working as intended but I'm unable to find any documentation about developing skins other than the very simple page here...I can make a separate repository for the skin and you can make a PR for other people.
Well, I'm in the same situation as you. I looked at all the skins that exist and tried to do it by analogy, Visual Studio helped a little, Google a little.I'd just be fumbling in the dark!
After I compiled the x64 version, that version of the skin worked for me. But I didn't check it much.That's the one I took and had to modify as per my previous posts so there isn't a newer one then!
I think it's a JQuery / Bootleg 2.3.2 issue - when the href target is '#'.Well, I'm in the same situation as you. I looked at all the skins that exist and tried to do it by analogy, Visual Studio helped a little, Google a little.
After I compiled the x64 version, that version of the skin worked for me. But I didn't check it much.
<dt>Duration:</dt>
<dd>@(String.Format("{0:mm}", (Model.EndTime - Model.StartTime))) min.</dd>
@{
DateTimeOffset dtos = new DateTimeOffset(Model.StartTime);
DateTimeOffset dtoe = new DateTimeOffset(Model.EndTime);
var mins = (dtoe.ToUnixTimeSeconds() - dtos.ToUnixTimeSeconds()) / 60;
}
<dt>Duration:</dt>
@if (mins == 1)
{
<dd>@mins min</dd>
}
else
{
<dd>@mins mins</dd>
}
$('#groupbutton').click(function() {
//wordt uitgezet
if($(this).hasClass('active')) {
$('#grouplist ul.group').hide();
$('#grouplist li').removeClass("open");
}else {
$('#grouplist ul.group').fadeIn();
$('#grouplist li').addClass("open");
forceImageLoading('#grouplist ul.group');
}
});
$('#groupbutton').click(function() {
//wordt uitgezet
if($(this).hasClass('active')) {
$(this).html('Expand Groups');
$('#grouplist ul.group').hide();
$('#grouplist li').removeClass('open');
} else {
$(this).html('Collapse Groups');
$('#grouplist ul.group').fadeIn();
$('#grouplist li').addClass('open');
forceImageLoading('#grouplist ul.group');
}
});
You can always publish files here on the forum, if there are many changes and there is interest from other users, I will make a repository and I will be able to merge your changes into it. But when you make changes, it is better to also take a screenshot so that people understand what is happening.I'm not sure I have the required skills for that.
I’ll bear that in mind. I kinda have the skin where I want it now as I only use it for TV Recordings as everything else is done thru Plex.You can always publish files here on the forum, if there are many changes and there is interest from other users, I will make a repository and I will be able to merge your changes into it. But when you make changes, it is better to also take a screenshot so that people understand what is happening.