xbox-scene.com - your xbox news information source
Quick Links: Main Forums | Xbox360 Forums | Xbox1 Forums | PS3 Forums
Xbox-Scene Forum Help  Search Xbox-Scene Forums   Xbox-Scene Forum Members   Xbox-Scene Calendar

Giganews Usenet Offers: +1150 days binary retention, 99%+ Completion, and Unlimited Speed/Access!

360 ODD Emulators: X360 Key $99 | Wasabi360 FAT $99 | Wasabi360 Slim $99
C4E's iXtreme Burner MAX Drive: LiteOn iHAS124 DROPPED TO JUST $17


Welcome Guest ( Log In | Register )

 Forum Rules Rules
3 Pages V  1 2 3 >  
Reply to this topicStart new topic
> Wip Build 557, Build 557 is up
unleashx
post Apr 10 2005, 07:36 PM
Post #1


X-S Freak
*****

Group: Members
Posts: 1330
Joined: 3-November 03
Member No.: 71701
Xbox Version: v1.1
360 version: unknown



Thread reuse for WIP Build 557.
-Same as 556 with fix for the skin manager bug.

=======================
Note from Build 556
=======================
Hey folks, WIP Build 556 is up. I had quite some free time so I managed to come up with this one. 551 was a crappy release and I hope to make it up with this one.

Here's what's new:

*Fixed an issue with the Xml parser. It failes to parse out an xml document if a comment element contains ">"
*Slideshow is now random.
*Added a few more items to the language file
-STR_AUDIO_OPTIONS = Audio Options
-STR_AUDIO_PLAYDISC = Play Disc
-STR_AUDIO_MANAGETRACKS = Manage Tracks
-STR_AUDIO_OPENFILE = Open File...
-STR_AUDIO_OPENPLAYLIST = Open Playlist

-STR_AUDIO_SELECTOPTION = Select Audio Track
-STR_AUDIO_CD = Audio CD
-STR_AUDIO_PLAY = Play

-STR_EDIT = Edit
-STR_MOVE_UP = Move Up
-STR_MOVE_DOWN = Move Down
-STR_AUDIO_NEWTRACK = New Soundtrack...
-STR_MSG_DELETEST_ASK = Are you sure that you want to delete '%s'?

Note that the above item is in Xml, please see release notes for 551 for exact format.
*Added Xbox soundtrack management. The same usual stuff found in MS Dash. Copy, edit, rename, delete...etc, except CDDA to WMA or CD ripping. Currently facing a blank wall with the wma encoder.
*Removed the extra info when selecting a partition in FTP server. This causes all other ftp client except FlashFxp to crap out when listing directory. It seems these clients only honor the comment directive (220-) when logging in.
*Fixed the problem with WMV playback introduced in 551
*Fixed the problem with Audio CD playback introduced in 551
*Improved Skinning support.
-Items can now be stacked/ordered by adding the zIndex attribute, i.e., zIndex="5". Items with the same zIndex value will be drawn in the order they are found. zIndex don't have to be continuous, meaning you can use 1,2,3,5,8,10...n. This means that you can now draw in this manner: text, image, shape, text, text, image...etc. However, menu item is still on top of everything else.
-Fonts collection. You can now have a fonts collection and use them where they're possible. So, it is now possible to create Text items using different fonts. Format is:
<Fonts>
<Font Name="MyFont">mycoolfont.xpr</Font>
<Font Name="MyOtherFont">whatever.xpr</Font>
</Fonts>

Then use them like this:
<Text Left="180" Top="142" Source="SongTime" Font="MyFont" zIndex="2" />

-Added a few more items for text source
-SongTrack - concatenation of song and soundtrack
-SongBitRate - 128 KBPS...etc
-SongLength - 5:12
-SongFrequency - 44.1KHz (Almost always)
-SongChannel - Audio CD, Stereo or Mono

-Added a few more items to the color scheme for the media player (see more later)

*Music player is now fully skinnable and there are two ways to do it:
-1) Change the colors for the default music player skin. Refer to the following image for more info:
user posted image
-2) Change everything and not just the color. Like the following:
user posted image

-With the new music player, you can use everything that is available for skin (Text, Image, Shapes) including the new zIndex and Font attributes. The only thing that might prove challenging is the image for the buttons (Play, Stop...etc). This is composed of a single image subdivided into column of 8 by 4. Here's the image I used for the default skin and the one above:
user posted image
user posted image

Of course, the grid should not be included. The grid size don't have to be square. The default skin for music player comprises of exactly one image and the rest are all shapes and texts. The second image is a cheap ripped off of a skin from WMP, but that's the best I can do to demo the new feature. I think most of you know that graphic just ain't my thing cool.gif

The new build comes with a sample skin. You can find it in your UX folder after you install it and it's named MPlayer.rar. Expand it and check skin.xml out. It should be farely commented. Here's the portion for music player:

CODE

<MusicPlayer Left="138" Top="20" Width="364" Height="215" >
 <BackGround>main_back.png</BackGround>
 
 <!-- back image of the peak meter and mask for the volume -->
 <!-- Progress and volume must be under this image, hence zIndex > 0 -->
 <Image Left="277" Top="70" Width="167" Height="115" zIndex="1">vizbg.png</Image>
 <!-- cover image must be drawn on top of everything, zIndex=10 should be fine -->
 <Image Left="253" Top="48" Width="206" Height="152" zIndex="10">viz_cover.png</Image>


 <ButtonMap>ButtonMap.png</ButtonMap>
 <!-- Buttons -->
 <Element Type="Prev" Left="189" Top="186" Width="30" Height="36" />
 <Element Type="Play" Left="219" Top="186" Width="30" Height="36" />
 <Element Type="Pause" Left="249" Top="186" Width="30" Height="36" />
 <Element Type="Stop" Left="279" Top="186" Width="30" Height="36" />
 <Element Type="Next" Left="309" Top="186" Width="30" Height="36" />
 <Element Type="PrevTrack" Left="339" Top="186" Width="30" Height="36" />
 <Element Type="NextTrack" Left="369" Top="186" Width="30" Height="36" />
 <!-- Random and mute must be drawn on top of vizbg, zIndex = 2 -->
 <Element Type="Random" Left="334" Top="168" Width="30" Height="18" zIndex="2" />
 <Element Type="Mute" Left="372" Top="168" Width="30" Height="18" zIndex="2" />
 <Element Type="Progress" Left="303" Top="89" Width="122" Height="12" />
 <Element Type="Volume" Left="280" Top="148" Width="162" Height="16" />

 <!-- Meter must be drawn on top of vizbg, zIndex = 2 -->
 <Element Type="Meter" Left="298" Top="98" Width="134" Height="58" zIndex="2" />
 <Element Type="SongStatus" Left="288" Top="135" Width="10" Height="10" zIndex="2" />
 <!-- Other possible types:
  PlayStatus, PauseStatus, StopStatus -These are the symbols which are either dimmed or lit
  SongStatus, could be Playing, Paused or Stopped symbol
  -->

 <!-- Text must be drawn on top of vizbg, zIndex = 2 -->
 <Text Left="180" Top="142" Width="55" Height="20" Color="0xFFf9920f" Source="SongTime" Font="Agency" zIndex="2" ScaleX="200" ScaleY="200" Align="MiddleCenter" />
 <!-- New feature Alert:
  New Source for Text element
  SongTrack - concat of song and soundtrack
  SongBitRate - 128KBPS
  SongLength - 5:12
  SongFrequency - 44.1KHz
  SongChannel - Audio CD, Stereo or Mono
 -->
 <Text Left="313" Top="76" Width="108" Height="12" Color="0xFFf9920f" Source="SongTrack" Scroll="2" Align="Bottom" Font="Agency" zIndex="2"/>

 <Playlist Top="235" Left="125" Width="390" Height="225" OffsetX="22" OffsetY="24">
  <BackGround>pl_back.png</BackGround>
 </Playlist>
 
</MusicPlayer>


Pretty straight-forward, I think. The skin file came from Kthulu's OrangeShapes Xml-only skin. Of course, with the new files, it's not so much of an xml-only skin now, is it? smile.gif

I thinks that's about it. Most of the reported bugs from the previous version should be fixed now, except for the LiveUpdate and Proxy issue. Sorry guys, I tried a few proxy servers and I just can't replicate the issue. If you can capture the first 1kb from the packet and send it to me, I'll see what I can do about it.

As usual, please post anything you find in here. Enjoy folks, have a good day!

This post has been edited by unleashx: Apr 11 2005, 02:15 PM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
isaac_24
post Apr 10 2005, 09:55 PM
Post #2


X-S Senior Member
**

Group: Members
Posts: 279
Joined: 17-November 03
Member No.: 74945



This sounds like an awesome release! Can't wait to try it out. Also unleashx, is there a skin tag for Artist? I've been looking for one and haven't come across anything besides Album and Song Title. Thanks again.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
nj12nets
post Apr 10 2005, 10:06 PM
Post #3


X-S Freak
*****

Group: Members
Posts: 1330
Joined: 20-February 05
From: brooklyn all day!
Member No.: 200150
Xbox Version: v1.0
360 version: v1 (xenon)



sorry but is this build in the usual places or somewhere else?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
isaac_24
post Apr 10 2005, 10:13 PM
Post #4


X-S Senior Member
**

Group: Members
Posts: 279
Joined: 17-November 03
Member No.: 74945



These are private builds to beta testers.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Jezz_X
post Apr 11 2005, 12:06 AM
Post #5


X-S Knowledgebase
********

Group: Moderator
Posts: 4531
Joined: 22-July 03
From: Australia
Member No.: 51477
Xbox Version: v1.1
360 version: none



Well i got a big ass bug any time I try and select a skin UnleashX just reboots and then after that just trying to go into the skin menu will reboot it

Seems that my whole skin menu is buggered up maybe a bad compile

This post has been edited by Jezz_X: Apr 11 2005, 12:10 AM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Jezz_X
post Apr 11 2005, 12:18 AM
Post #6


X-S Knowledgebase
********

Group: Moderator
Posts: 4531
Joined: 22-July 03
From: Australia
Member No.: 51477
Xbox Version: v1.1
360 version: none



Check out the errors in the screen shot of the skin menu click to get it bigger
user posted image

Going to try down grading and reupdateing Oh and I'm not upgradeing from build 551 if that makes any difference

-------------------------------
EDIT:

Well downgraded and re upgraded again and got the excact same thing of the skin menu being corrupt with other stuff (Not always the same stuff either) anybody else got this problem or is it just me

This post has been edited by Jezz_X: Apr 11 2005, 12:32 AM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
isaac_24
post Apr 11 2005, 02:23 AM
Post #7


X-S Senior Member
**

Group: Members
Posts: 279
Joined: 17-November 03
Member No.: 74945



I get the same thing with the xbox rebooting when selecting the Skin menu. Sometimes it freezes too. I guess I have to get used to the same skin for a while. smile.gif Also, the time elapsed on the Audio player is missing a digit. For example, when the time is 00:35, it only shows as 00:3. Kinda like the mp3 info (bitrate, etc) is covering it. Either that or the font is too big.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
unleashx
post Apr 11 2005, 11:55 AM
Post #8


X-S Freak
*****

Group: Members
Posts: 1330
Joined: 3-November 03
Member No.: 71701
Xbox Version: v1.1
360 version: unknown



Got the same thing. I'm working on it and will be releasing an update once I figure it out.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
incognegro
post Apr 11 2005, 01:05 PM
Post #9


X-S Hacker
******

Group: XS-BANNED
Posts: 2519
Joined: 23-August 04
Member No.: 141039
Xbox Version: v1.0
360 version: unknown



Hey mr. unleashx i don't want to sound like a bother but don't you think it's time for a public release? I'm reading about these Wip releases and notice that your adding alot of cool features but theyre introducing new bugs. So can't you use this new free time to clean up the bugs and make a public release and leave any other advancements you have planned for the next build for the next Wip build? We're starving here! Thanx for your time. biggrin.gif
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
unleashx
post Apr 11 2005, 01:10 PM
Post #10


X-S Freak
*****

Group: Members
Posts: 1330
Joined: 3-November 03
Member No.: 71701
Xbox Version: v1.1
360 version: unknown



I'm working on it. The features I'm adding is too insignificant, rest assured, I'm concentrating on major bugs to come up with a beter version.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
unleashx
post Apr 11 2005, 02:18 PM
Post #11


X-S Freak
*****

Group: Members
Posts: 1330
Joined: 3-November 03
Member No.: 71701
Xbox Version: v1.1
360 version: unknown



Build 557 is up. Fixed Skin Manager bug. Please post bugs here.

Please keep posts in this thread related to subject matter only. Any other post with different subject should be on new/another thread.

Thanks all.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Jezz_X
post Apr 11 2005, 11:30 PM
Post #12


X-S Knowledgebase
********

Group: Moderator
Posts: 4531
Joined: 22-July 03
From: Australia
Member No.: 51477
Xbox Version: v1.1
360 version: none



Ok It's probably old news but

I couldn't update from build 556 to 557 probably due to the error also working its way into the live update code. It would download and then compile and reboot but the validating screen would not appear and i was stuck in the old build.

I had to downgrade to 548 to update to 557 succesfully

Just thought I'd post it for all the people who updated to 556 and might have this error

And maybe incase its still there in 557
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
isaac_24
post Apr 12 2005, 04:02 AM
Post #13


X-S Senior Member
**

Group: Members
Posts: 279
Joined: 17-November 03
Member No.: 74945



I couldn't update either to 557 from 556 and had a hell of a time making 548 update to 557. smile.gif All good now.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
tweaqr
post Apr 12 2005, 04:10 PM
Post #14


X-S Genius
****

Group: Members
Posts: 780
Joined: 16-October 03
From: Okinawa Japan
Member No.: 68322
Xbox Version: v1.0



I didn't have any problems upgrading from 556 to 557.

Open file manager browse to my Music folder and press A on any MP3 file, plays fine the first time but back out (B or Back) and tri to play another one and the xbox frezzes.
Haven't tried this with any other file type.

keep up the great work, but only if you enjoy it. smile.gif

User is offlineProfile CardPM
Go to the top of the page
+Quote Post
moviecut
post Apr 12 2005, 04:26 PM
Post #15


X-S Senior Member
**

Group: Members
Posts: 186
Joined: 19-July 04
Member No.: 131447



great release!!
just one (maybe stupid question): can i use the mplayer skin with another unleashx-skin? or is it always packed together?
the ftp-bugs seem to be fixed, no need to switch to avalaunch any longer!!
have to say that you did an outstanding work here, unleash! thank you so much!!
will test the ftp thing with a friend for xbox2xbox transfers...
User is offlineProfile CardPM
Go to the top of the page
+Quote Post





3 Pages V  1 2 3 >
Reply to this topicStart new topic

 

Lo-Fi Version Time is now: 24th May 2013 - 03:20 AM