You need the new skin, since the About section is hard coded to 1.0.1 in the old version.
I think you can just delete the skin directory, and it'll load the new one automatically, but you'll need to download the new skin if you want to make any modifications.
Hi there!, well, actually I upgraded my DS-X to 1.0.2, BUT the "About" still states 1.0.1 on my DS. I didn't had any problems when flashing it.
Hi!, actually no, you don't need do download anything the adjustments are really easy, you can edit this file:
DRIVERLETTER:\skin\default\dialogs\aboutDialog.xml
2
DS-Xtreme OS V1.0.1
clip
center
middle
There are other Tags you can atually edit like: , and , there is acutally a post on the
official ds-x forum.
I really really suggest you only change the values inside the labels, or just backup your "skin" directory before making any changes
Well it's not just changed from "DS-Xtreme OS V1.0.1" to "DS-Xtreme OS V1.0.2" or something. It's now coded that it'll set the version of the firmware there automatically.
CODE Â
ÂÂÂÂÂ
 Â
 Â2
 Â
 Â
 ÂDS-Xtreme OS
 Âclip
 Âcenter
 Âmiddle
ÂÂÂÂÂ
Â
is the xml style code.
But the OnInit function now sets the number there:
CODE
ÂÂÂÂÂfunction OnInit()
ÂÂÂÂÂ{
 Âlocal event = Application.getEvent();
 Âlocal scene = event.getTarget();
 Âlocal button1 = scene.findWidget("dialog.buttonActive");
 Âlocal myCard = scene.findWidget("main.myCard");
 Âlocal myMedia = scene.findWidget("main.myMedia");
  Â
 Â
 Â// Hook the events of the buttons
 Âbutton1.onFocusGained(OnButtonFocusGained);
 Âbutton1.onFocusLost(OnButtonFocusLost);
 Âbutton1.onButtonClick(OnOkClick);
 Â
 Â
 ÂSceneEffects.dialogMove = MoveToEffect();
 ÂSceneEffects.dialogMove.setTarget(scene);
 ÂSceneEffects.dialogMove.setDuration(300);
 Â
 Âscene.onBegin(OnBegin);
 Âscene.onEnd(OnEnd);
 Âlocal osVersion = scene.findWidget("osVersion");
 ÂosVersion.setText("DS-Xtreme OS " + Application.getOSVersion() );
ÂÂÂÂÂ}