![]() |
|
Convergence - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Help and Support (/forumdisplay.php?fid=33) +--- Forum: Skin Help and Support (/forumdisplay.php?fid=67) +---- Forum: Confluence (/forumdisplay.php?fid=125) +---- Thread: Convergence (/showthread.php?tid=99839) |
- mad-max - 2012-02-24 22:29 Hey mudislander, we had a request for German strings for Convergence in our German community... I translated the missing strings into German...see here: http://pastebin.com/gBYSXLYN cheers, mad-max - Mudislander - 2012-02-24 23:18 mad-max Wrote:Hey mudislander, Cheers mate, was thinking of asking for your help in translations Might still have to as have been goning through the lang file in the last couple of days to tidy it up - mad-max - 2012-02-24 23:22 Mudislander Wrote:Might still have to as have been goning through the lang file in the last couple of days to tidy it up No problem... BTW: Some strings seem to be redundant... Saw children twice and think some more... You might check it... cheers - Mudislander - 2012-02-24 23:27 mad-max Wrote:No problem... Yep, that's what I've been doing
svn update 4.0.3 - Mudislander - 2012-02-29 14:35 ![]() svn version updated to 4.0.3. Released a bit early as am still working on it, but laptop is giving problems Change log PHP Code: - Bugfix Mainmenu Addons 5 + 6 Not workingSupport added for Bug Reports Requested - Mrmills - 2012-02-29 22:01 Have to check it out.. Thanks for the buttons, cant try them out now cause im at the hospital with my 5 month old son, he just had hartsurgery so everything else in on standby..
- Angelscry - 2012-03-01 05:26 Mudislander, I have just test your skin support for Advanced Launcher. You make a good job, but I have few remarks and suggestions to improve the corresponding views. Take them as you want... that are just my opinion. For the wide list views : The launchers view (screen 1) is referring to a games list, but Advanced Launcher is not only dedicated to games but could also be used to manage comics, videos, magazines, websites, applications, etc... This view could also be used by other program add-ons. So I think using the "Items" term instead of "games" will be more appropriate. Strangely the items view is correct (screen 2). The idea of displaying a list of fanarts instead of thumbs is great. But I think that the list miss to display some informations. For example on screen 2, you can only guess that this list is related to Nintendo 64 games by the games title. It think I will be a good idea to display somewhere on the screen the items (maybe on the bottom bar). Also, I do not know if it will possible to add more information for each item (like release year, genre, ans studio) on this list. It will give more complete information. I do not know if you have also planning to add similar views displaying thumbs (tall, wide and square) instead of fanarts? For example on the (screen 3) is displaying my Iron Man comics list... A similar list this tall thumbs, will be perfect in this case. ![]() For the media info 2 views : Only tall covers are displayed correctly. There is no correct views for square covers (ex: icons, PSX games) or wide covers (ex : Nintendo 64, SNES). Also same remark than for the wide list view, it miss some useful item information (platform, genre and studio).
- Mudislander - 2012-03-01 08:09 @Angelscry - Thanks, that's brilliant. I'll work on your suggestions. I only had a few dummy applications that I'd made up to work on, and your remarks will go a long way in helping
- mikebzh44 - 2012-03-01 10:32 Hello. With RandomAndLastItems script, the way you have code it into Convergence, you can manage only Movie playlist because you don't specifie type= parameter : XBMC.RunScript(script.randomandlastitems,limit=4,method=$VAR[RandomOrLastAction],playlist=$INFO[Skin.String(UsrHomeButtonOnePlayList)],menu=UsrAddOnOne,unwatched=$VAR[RandomOrLastUnWatched]) So Movie will be use as default. If a user want to use custom menu to display TV-Shows playlist, you have to call my script this way : XBMC.RunScript(script.randomandlastitems,limit=4,method=$VAR[RandomOrLastAction],playlist=$INFO[Skin.String(UsrHomeButtonOnePlayList)],type=Episode,menu=UsrAddOnOne,unwatched=$VAR[RandomOrLastUnWatched]) So you have to set up a new option in your skin to define if custom menu is for TV shows (type=Episode) or for Movies (type=Movie) - Mudislander - 2012-03-01 10:47 @mikebzh44 - Hi, Thanks. It will get changed. I wrote that code when the script was first released and have not yet implemented the "type=Episode" yet. |