Madsonic - Mashup Mod (old Support Thread)

Madsonic Mashup Mod is a fork of the Subsonic 4.7 Server Build 3090 with some Subsonic Data schema modifications!

Moderator: moderators

Final: Madsonic Mashup Mod 4.7

Postby MadEvil » Tue Sep 25, 2012 4:43 pm

New Builds: 3130

Build 3130SE
NEW: Special Build: Reverted to Java 1.6 compiled version

Build 3130
NEW: Feature: Use 4 different Index Styles for each Music folder Content viewtopic.php?f=3&t=10229#p46236
NEW: Update: common.io 2.4
NEW: Update: junit 4.8.2
FIX: Update Starred Queries for speedup
FIX: Update some Theme issues

Download look @ first Post -> viewtopic.php?f=8&t=9187
Madsonic Developer
User avatar
MadEvil
 
Posts: 354
Joined: Wed Nov 09, 2011 8:35 pm
Location: Vienna

Re: Final: Madsonic Mashup Mod 4.7

Postby jdubso » Tue Sep 25, 2012 8:22 pm

MadEvil,

You are amazing, the addition of different index styles is great. Thanks for your work.
jdubso
 
Posts: 40
Joined: Tue Mar 15, 2011 11:55 am
Location: United States

Re: Final: Madsonic Mashup Mod 4.7

Postby MadEvil » Tue Sep 25, 2012 9:38 pm

jdubso wrote:MadEvil, you are amazing, the addition of different index styles is great. Thanks for your work.

thank you, nice to hear you can need it! :)
best regards
Madsonic Developer
User avatar
MadEvil
 
Posts: 354
Joined: Wed Nov 09, 2011 8:35 pm
Location: Vienna

Re: Final: Madsonic Mashup Mod 4.7

Postby GJ51 » Tue Sep 25, 2012 9:54 pm

I've got 2 Madsonic sites up. One is build 3120 and the similar Artists feature works. the other is build 3130 and the similar artists aren't showing - Show what others are playing and Show chat messages are both checked.

I'm not sure what's going on.
Gary J

http://bios-mods.com
http://www.maplegrovepartners.com
http://theaverageguy.tv/category/tagpodcasts/cyberfrontiers/
User avatar
GJ51
 
Posts: 3492
Joined: Wed Oct 20, 2010 11:58 pm
Location: Western New York

Re: Final: Madsonic Mashup Mod 4.7

Postby j3tblk » Tue Sep 25, 2012 11:24 pm

Does anyone know what code I would need to modify to fix this random underscore that shows up?
I can't figure it out!!!
Image

It has got to be something in here:
Code: Select all
function toggleStar(mediaFileId, imageId) {
        if ($(imageId).attr("src").indexOf("<spring:theme code="ratingOnImage"/>") != -1) {
            $(imageId).attr("src", "<spring:theme code="ratingOffImage"/>");
            starService.unstar(mediaFileId);
        }
        else if ($(imageId).attr("src").indexOf("<spring:theme code="ratingOffImage"/>") != -1) {
            $(imageId).attr("src", "<spring:theme code="ratingOnImage"/>");
            starService.star(mediaFileId);
        }
    }



OR

Code: Select all
<a href="#" onclick="toggleStar(${model.dir.id}, '#starImage'); return false;">
        <c:choose>
            <c:when test="${not empty model.dir.starredDate}">
                <img id="starImage" src="<spring:theme code="ratingOnImage"/>" alt="">
            </c:when>
            <c:otherwise>
                <img id="starImage" src="<spring:theme code="ratingOffImage"/>" alt="">
            </c:otherwise>
        </c:choose>
    </a>
j3tblk
 
Posts: 117
Joined: Thu Jun 03, 2010 3:51 pm

Re: Final: Madsonic Mashup Mod 4.7

Postby MadEvil » Wed Sep 26, 2012 12:23 am


New Build: 3132


NEW: Feature: Append/Save Starred Items to Playlist
FIX: Update Theme issues

Download look @ first Post -> viewtopic.php?f=8&t=9187

Image

CRLg3.jpg
Madsonic Developer
User avatar
MadEvil
 
Posts: 354
Joined: Wed Nov 09, 2011 8:35 pm
Location: Vienna

Re: Final: Madsonic Mashup Mod 4.7

Postby j3tblk » Wed Sep 26, 2012 2:14 am

Is there a way to turn off the sliders?
I've had two people (out of four) complain about them being too sensitive...it is hard to use even for me and I don't need custom sliders.
Thanks!
j3tblk
 
Posts: 117
Joined: Thu Jun 03, 2010 3:51 pm

Re: Final: Madsonic Mashup Mod 4.7

Postby jonnymnemo » Wed Sep 26, 2012 6:46 am

GJ51 wrote:I've got 2 Madsonic sites up. One is build 3120 and the similar Artists feature works. the other is build 3130 and the similar artists aren't showing - Show what others are playing and Show chat messages are both checked.

I'm not sure what's going on.


I have build 3130.
This feature works for me in firefox, but not in chrome !
User avatar
jonnymnemo
 
Posts: 70
Joined: Thu Apr 12, 2012 8:11 am

Re: Final: Madsonic Mashup Mod 4.7

Postby jonnymnemo » Wed Sep 26, 2012 7:00 am

Hi Madevil !
Thank you for your incredible work !

Do you think there would be a way to make the login page more secure, and add a feature to register new users (like the sparkyRih mod, but without external sql) ?
User avatar
jonnymnemo
 
Posts: 70
Joined: Thu Apr 12, 2012 8:11 am

Re: Final: Madsonic Mashup Mod 4.7

Postby MadEvil » Wed Sep 26, 2012 7:44 am

jonnymnemo wrote:
GJ51 wrote:I've got 2 Madsonic sites up. One is build 3120 and the similar Artists feature works. the other is build 3130 and the similar artists aren't showing - Show what others are playing and Show chat messages are both checked.

I'm not sure what's going on.


I have build 3130.
This feature works for me in firefox, but not in chrome !


Maybe if you use https a crossover call to the similar artist http server is blocked -> look with browser Console (STRG + SHIFT + J)

workarounds:

*) turn off https
*) use chrome switch

Just right-click the Google Chrome icon on your desktop, or inside the Windows Start Menu, choose Properties
and add the switch “–allow-running-insecure-content” to the target box.
Restart Chrome to apply the changes.

best regards
Madsonic Developer
User avatar
MadEvil
 
Posts: 354
Joined: Wed Nov 09, 2011 8:35 pm
Location: Vienna

Re: Final: Madsonic Mashup Mod 4.7

Postby MadEvil » Wed Sep 26, 2012 7:48 am

j3tblk wrote:Is there a way to turn off the sliders?
I've had two people (out of four) complain about them being too sensitive...it is hard to use even for me and I don't need custom sliders.
Thanks!


i know the problem, but this can be fixed in your mouse control panel - you can take back the sensitivity for scrolling with the wheel.

best regards
Madsonic Developer
User avatar
MadEvil
 
Posts: 354
Joined: Wed Nov 09, 2011 8:35 pm
Location: Vienna

Re: Final: Madsonic Mashup Mod 4.7

Postby MadEvil » Wed Sep 26, 2012 7:52 am

jonnymnemo wrote:Hi Madevil !
Thank you for your incredible work !

Do you think there would be a way to make the login page more secure, and add a feature to register new users (like the sparkyRih mod, but without external sql) ?

thanks jonnymnemo,

yes for the 4.8 branch i plan some new feature

*) Upgrade to Spring framework 3.1 Security (password decode security)
*) internal Registration Engine
*) visual Login Rework
*) Facebook Login

best regards
Madsonic Developer
User avatar
MadEvil
 
Posts: 354
Joined: Wed Nov 09, 2011 8:35 pm
Location: Vienna

Re: Final: Madsonic Mashup Mod 4.7

Postby GJ51 » Wed Sep 26, 2012 7:59 am

MadEvil wrote:
jonnymnemo wrote:
GJ51 wrote:I've got 2 Madsonic sites up. One is build 3120 and the similar Artists feature works. the other is build 3130 and the similar artists aren't showing - Show what others are playing and Show chat messages are both checked.

I'm not sure what's going on.


I have build 3130.
This feature works for me in firefox, but not in chrome !


Maybe if you use https a crossover call to the similar artist http server is blocked -> look with browser Console (STRG + SHIFT + J)

workarounds:

*) turn off https
*) use chrome switch

Just right-click the Google Chrome icon on your desktop, or inside the Windows Start Menu, choose Properties
and add the switch “–allow-running-insecure-content” to the target box.
Restart Chrome to apply the changes.

best regards


Yup, that's it - I just put the site that isn't dis[laying similar artists on SSL.
Gary J

http://bios-mods.com
http://www.maplegrovepartners.com
http://theaverageguy.tv/category/tagpodcasts/cyberfrontiers/
User avatar
GJ51
 
Posts: 3492
Joined: Wed Oct 20, 2010 11:58 pm
Location: Western New York

Re: Final: Madsonic Mashup Mod 4.7

Postby jonnymnemo » Wed Sep 26, 2012 9:20 am

Yes, SSL was the issue. I prefered to allow insecure content only for subsonic (small icon at the right of the address bar) rather than allowing it for every site !
User avatar
jonnymnemo
 
Posts: 70
Joined: Thu Apr 12, 2012 8:11 am

Re: Final: Madsonic Mashup Mod 4.7

Postby jonnymnemo » Wed Sep 26, 2012 2:56 pm

Aktarus wrote:Hello,

I'd unchecked the two checbox .... but still no Similar Artist displayed anywhere !!! Not in the right frame .... not in the social icon !!! What can I do ??

MERCI :)


Hi !
I think the answer could be in the previous posts (previous page) ! :wink:
Which browser are you using ? Is SSL activated ?
User avatar
jonnymnemo
 
Posts: 70
Joined: Thu Apr 12, 2012 8:11 am

PreviousNext

Return to Madsonic

Who is online

Users browsing this forum: No registered users and 1 guest