View Full Version : Advanced Configuration Tool 2.1 with extensible tweaks - Open to contributors
schaps
08-02-2008, 11:37 PM
Hi, as you know I recently updated Advanced Config. with a lot of changes since 2.x major version. The most interesting changes concern tweak list which is now extensible, localizable and adaptable to any device.
Many of you asked me to translate my tool into their own language or to add some device specific tweaks, unfortunately I didn't have enough time to care of it... But things changed since 2.x releases, now you can add your own tweaks or translate Advanced Config. by yourself using XML files!
So I decided to create this thread to ask if there are some people willing to help me to improve Advanced Configuration Tool. You can post your tweaks and translations here and I will add them to future releases.
XML configuration files are named AdvancedConfig_XXXX.xml where XXXX is Locale ID (English and French available at the moment). They contain list of registry tweaks organized by categories.
Here is XML configuration file structure, which is quite simple:
<advancedconfig>
<category name="Category name" icon="Icon index">
<setting key="Registry key path" name="Registry value name" type="Registry value type">
<title>Tweak title</title>
<description>Tweak description</description>
<values default="Default value">
<value data="Value data 1">Value description 1</value>
<value data="Value data 2">Value description 1</value>
</values>
<restrict>
<value key="Registry key path" />
<value key="Registry key path" name="Registry value name"/>
<value key="Registry key path" name="Registry value name" data="Value data" />
<value key="Registry key path" name="Registry value name" data1="Value data 1" data2="Value data 2" data3="Value data 3" />
<devices>
<model>Device model 1</model>
<model>Device model 2</model>
</devices>
</restrict>
</setting>
</category>
</advancedconfig>
Supported value types : integer, string, file, folder.
<values> tag can contain predefined value data for the tweak, which will be displayed in a list in Advanced Config.
<restrict> tag allows you to display the tweak only if it satisfies all the conditions bellow. In this example: Registry key must exist AND Registry value must exist AND value data must equal to specified data AND value data must equal one of those 3 value data AND device model must be one of those 2 models.
Don't hesitate to ask me if something is not enough clear.
You can download here English and French XML configuration files of the lastest Advanced Config. release (2.1.0.0), which is available in this sticky: http://forum.xda-developers.com/showthread.php?t=317070.
Have fun playing with Advanced Config. and thanks in advance to contributors! :)
nicromant
08-02-2008, 11:39 PM
Hi, as you know I recently updated Advanced Config. with a lot of changes since 2.x major version. The most interesting changes concern tweak list which is now extensible, localizable and adaptable to any device.
Many of you asked me to translate my tool into their own language or to add some device specific tweaks, unfortunately I didn't have enough time to care of it... But things changed since 2.x releases, now you can add your own tweaks or translate Advanced Config. by yourself using XML files!
So I decided to create this thread to ask if there are some people willing to help me to improve Advanced Configuration Tool. You can post your tweaks and translations here and I will add them to future releases.
XML configuration files are named AdvancedConfig_XXXX.xml where XXXX is Locale ID (English and French available at the moment). They contain list of registry tweaks organized by categories.
Here is XML configuration file structure, which is quite simple:
<advancedconfig>
<category name="Category name" icon="Icon index">
<setting key="Registry key path" name="Registry value name" type="Registry value type">
<title>Tweak title</title>
<description>Tweak description</description>
<values default="Default value">
<value data="Value data 1">Value description 1</value>
<value data="Value data 2">Value description 1</value>
</values>
<restrict>
<value key="Registry key path" />
<value key="Registry key path" name="Registry value name"/>
<value key="Registry key path" name="Registry value name" data="Value data" />
<value key="Registry key path" name="Registry value name" data1="Value data 1" data2="Value data 2" data3="Value data 3" />
<devices>
<model>Device model 1</model>
<model>Device model 2</model>
</devices>
</restrict>
</setting>
</category>
</advancedconfig>
Supported value types : integer, string, file, folder.
<values> tag can contain predefined value data for the tweak, which will be displayed in a list in Advanced Config.
<restrict> tag allows you to display the tweak only if it satisfies all the conditions bellow. In this example: Registry key must exist AND Registry value must exist AND value data must equal to specified data AND value data must equal one of those 3 value data AND device model must be one of those 2 models.
Don't hesitate to ask me if something is not enough clear.
You can download here English and French XML configuration files of the lastest Advanced Config. release (2.1.0.0), which is available in this sticky: http://forum.xda-developers.com/showthread.php?t=317070.
Have fun playing with Advanced Config. and thanks in advance to contributors! :)
great thanks
i will give it a shot
petervbeck
09-02-2008, 01:36 AM
great work schaps, as usal.
Will try to translate into german this weekend and also post here
Solid Snake84
09-02-2008, 02:08 AM
the translation in Italian I do her/it me if for you it is all right;)
voland_
14-02-2008, 10:28 AM
Schaps, how correctly localize menus of application? I can't find any related resources
Thank you!
schaps
14-02-2008, 12:23 PM
Schaps, how correctly localize menus of application? I can't find any related resources
Thank you!
I didn't make resources for localization of application UI, but if there are several people willing to translate it into their own language I will do it.
voland_
14-02-2008, 01:41 PM
I didn't make resources for localization of application UI, but if there are several people willing to translate it into their own language I will do it.
OK, we are ready to translate them to the Russain. .xml file is already translated and verified at the moment.
olimo
22-02-2008, 12:41 AM
Hi! Here is the Russian .xml file. Could you please prepare the other resources for translation? As far as I see, the French version is completely localized...
Decentboi
24-02-2008, 08:32 PM
I have tried to create a custom tweak as below:
<category name="Calender" icon="Icon index">
<setting key="HKLM\Software\Microsoft\Today\Items\Calendar\Flags" name="Flags" type="integer" >
<title>Calender</title>
<description>Tweak description</description>
<values default="0">
<value data="1">Show Upcoming Appointments and today's "All Day" event</value>
<value data="2">Show Next Appointment</value>
<value data="3">Show Next Appointment and today's "All Day" event</value>
<value data="4">see tomorrow's Appointments on the Calendar Today item WITHOUT today's All Day event</value>
<value data="5">see tomorrow's Appointments on the Calendar Today item WITH today's All Day event</value>
</values>
</setting>
</category>
However i can seem to import the xml into advance config.
Am i doing something wrong?
Need your help greatly
doedoe
24-02-2008, 08:52 PM
Handy tool here: http://forum.xda-developers.com/showthread.php?t=371828
gajotnt
26-02-2008, 11:02 PM
</setting>
<setting key="HKEY_CURRENT_USER\Software\Microsoft\Inbox\Setting s\OEM" name="SMSInboxThreadingDisabled" type="integer">
<title>Old Style SMS</title>
<description>Disable the Chat/Threaded view in SMS messages on WM6.1</description>
<values default="0">
<value data="0">Disable</value>
<value data="1">Enable</value>
</values>
</setting>
schaps
04-03-2008, 04:53 PM
Thanks a lot for your translation and tweaks, I will look at this and will probably include them in next Advanced Config version.
nikagl
04-03-2008, 09:42 PM
Dear all,
Being the main contributor to the new versions of the KaiserTweak.xml I can't refrain from contributing to the AdvancedConfig.xml too ;)
Attached English version contains the following changes:
* Minor spelling error modifications
* Added "Polaris" model to the "Phone sleep during call" and "Fast sleep during call" tweaks
* Changed the key location of "EnableFastDormantDisplayDuringCall" which was invalid
* Added "Threaded SMS" tweak from KaiserTweak
* Added "Log Clean Period" tweak from KaiserTweak
* Added "Ringtone" tweak from KaiserTweak
* Added "Ringtone (custom)" tweak from my brain ;)
* Decentboi's Calendar tweak - I was having trouble with the long lines btw, so I changed the text to:
<value data="1">Upcoming Appt's WITH today's All Day events</value>
<value data="2">Next Appt only</value>
<value data="3">Next Appt WITH today's All Day events</value>
<value data="4">Tomorrow's Appt's WITHOUT today's All Day event</value>
<value data="5">Tomorrow's Appt's WITH today's All Day event</value>
Other suggestions are welcome :)
I will try to convert some of the other KasierTweak tweaks as well, but the main problem with AdvancedConfig I have right now is:
One thing I can do with KaiserTweak is set multiple registry keys from one tweak. For instance:
It is possible to set the keypad buttons of the dialer to "vibrate". For that you need to set the Sound for each button ("HKCU\ControlPanel\Sounds\dtmf?\Sound") to "*vibrate*". When changing it back to the default it needs to be the number of the actual button...
The xml-code for KaiserTweak explains this a little better (I'm sure you'll understand as soon as you see it):
<tweak>
<title>Dialer Button behaviour</title>
<value default="default" disabled="disabled" advised="advised" value="0">Tones</value>
<value value="*vibrate*">Vibrate</value>
<key type="string">HKCU\ControlPanel\Sounds\dtmf0\Sound</key>
<key mode="set" setvalue="0" when="disabled">HKCU\ControlPanel\Sounds\dtmf0\Sound</key>
<key mode="set" setvalue="1" when="disabled">HKCU\ControlPanel\Sounds\dtmf1\Sound</key>
<key mode="set" setvalue="2" when="disabled">HKCU\ControlPanel\Sounds\dtmf2\Sound</key>
<key mode="set" setvalue="3" when="disabled">HKCU\ControlPanel\Sounds\dtmf3\Sound</key>
<key mode="set" setvalue="4" when="disabled">HKCU\ControlPanel\Sounds\dtmf4\Sound</key>
<key mode="set" setvalue="5" when="disabled">HKCU\ControlPanel\Sounds\dtmf5\Sound</key>
<key mode="set" setvalue="6" when="disabled">HKCU\ControlPanel\Sounds\dtmf6\Sound</key>
<key mode="set" setvalue="7" when="disabled">HKCU\ControlPanel\Sounds\dtmf7\Sound</key>
<key mode="set" setvalue="8" when="disabled">HKCU\ControlPanel\Sounds\dtmf8\Sound</key>
<key mode="set" setvalue="9" when="disabled">HKCU\ControlPanel\Sounds\dtmf9\Sound</key>
<key mode="set" setvalue="10" when="disabled">HKCU\ControlPanel\Sounds\dtmf*\Sound</key>
<key mode="set" setvalue="11" when="disabled">HKCU\ControlPanel\Sounds\dtmf#\Sound</key>
<key type="string" mode="set" setvalue="*vibrate*" when="enabled">HKCU\ControlPanel\Sounds\dtmf0\Sound</key>
<key type="string" mode="set" setvalue="*vibrate*" when="enabled">HKCU\ControlPanel\Sounds\dtmf1\Sound</key>
<key type="string" mode="set" setvalue="*vibrate*" when="enabled">HKCU\ControlPanel\Sounds\dtmf2\Sound</key>
<key type="string" mode="set" setvalue="*vibrate*" when="enabled">HKCU\ControlPanel\Sounds\dtmf3\Sound</key>
<key type="string" mode="set" setvalue="*vibrate*" when="enabled">HKCU\ControlPanel\Sounds\dtmf4\Sound</key>
<key type="string" mode="set" setvalue="*vibrate*" when="enabled">HKCU\ControlPanel\Sounds\dtmf5\Sound</key>
<key type="string" mode="set" setvalue="*vibrate*" when="enabled">HKCU\ControlPanel\Sounds\dtmf6\Sound</key>
<key type="string" mode="set" setvalue="*vibrate*" when="enabled">HKCU\ControlPanel\Sounds\dtmf7\Sound</key>
<key type="string" mode="set" setvalue="*vibrate*" when="enabled">HKCU\ControlPanel\Sounds\dtmf8\Sound</key>
<key type="string" mode="set" setvalue="*vibrate*" when="enabled">HKCU\ControlPanel\Sounds\dtmf9\Sound</key>
<key type="string" mode="set" setvalue="*vibrate*" when="enabled">HKCU\ControlPanel\Sounds\dtmf*\Sound</key>
<key type="string" mode="set" setvalue="*vibrate*" when="enabled">HKCU\ControlPanel\Sounds\dtmf#\Sound</key>
<description>Set the phonepad to vibrate or use tones.</description>
</tweak>
Can this be done with AdvancedConfig, and if not, can you change AdvancedConfig to support this? That way we can use the nicer interface (I'm being real honest here ) of AdvancedConfig...
Regards,
Nika.
PS. Is this the way you want tweaks to be contributed, Schaps, or you prefer the "CODE" sections only?
Simplified Chinese Translation
flaviopac
02-04-2008, 08:37 PM
Could someone post the tweak (I'd need to know the specific registry key) to make my device auto-disconnect GPRS connection??
Thanks in advance...
nikagl
03-04-2008, 11:21 PM
Could someone post the tweak (I'd need to know the specific registry key) to make my device auto-disconnect GPRS connection??
Thanks in advance...
Ehrm... which of the tweaks in Advanced Config do you mean? I don't think this is available in Advanced Config?
It is available in KaiserTweak, and there it's the "HKLM\Comm\ConnMgr\Planner\Settings\CacheTime" key (amount of seconds when it disconnects)... Off course it depends on the applications trying to connect to the internet...
Also, autodisconnect will only work if "HKLM\Comm\ConnMgr\Planner\Settings\SuspendResume" is not set to "~GPRS!" but to "GPRS_bye_if_device_off"... (according to KaiserTweak - I have no idea who invented the tweak, or why these settings need to be set)
Read more here (thank you google ;)):
http://forum.xda-developers.com/showthread.php?t=305332
Regards,
Nika.
l3v5y
07-04-2008, 11:07 PM
I've just made a modified xml with the ability to hide/lock the Extended ROM. It works on a Prophet, but I don't know whether other devices have the same Extended ROM setup...
jfran
23-04-2008, 06:43 PM
Pls Ignore
kachoperro
27-04-2008, 10:07 PM
It's a very usefull tool for my Polaris.
I wil try to translate into Spanish as soon as possible
nir36
27-04-2008, 11:06 PM
if you just tell me what i need to do ill make a hebrew translation
Stratos74
30-04-2008, 01:13 PM
Hi all...
here my italian translation, please tell me if something's wrong
Piranha1
06-05-2008, 11:48 AM
Here (http://www.ppc-welt.info/community/attachment.php?attachmentid=28798&d=1210062307)the german version.
craneG19
08-05-2008, 07:48 PM
I linked to this thread with a Suggestion.
Just downloaded the tool - and love it!
A suggestion would be to have control over MMS notifications as well as SMS.
Currently MMS notify's are not affected, only SMS.
Thanks!
AnthonyB
09-05-2008, 04:25 AM
I'd love to see the Comm Manager (http://forum.xda-developers.com/showthread.php?t=376051) button config added in.
I just had to downgrade to Advanced Config 1.1 to reconfig the buttons the upgrade back to 2.1.0.0.
Codie
14-05-2008, 08:50 AM
http://i44.photobucket.com/albums/f33/Codiemk/Handphone%20ETC/Capture004.jpg
Is it able to remove the battery icon with the % on the traybar (Top, right hand. Beside the volume icon)
gguyaz
20-05-2008, 08:57 AM
http://i44.photobucket.com/albums/f33/Codiemk/Handphone%20ETC/Capture004.jpg
Is it able to remove the battery icon with the % on the traybar (Top, right hand. Beside the volume icon)
I think that you use QuickMenu, and this is the battery icon of QuickMenu ;)
You must then modify QuickMenu.
yingzhou
10-06-2008, 11:55 AM
how to import the language I have translate to my current using Advanced config?
l3v5y
10-06-2008, 12:12 PM
how to import the language I have translate to my current using Advanced config?
You need to replace the advanced config XML file (should be in \Windows) with your translated version.
nikagl
14-06-2008, 01:26 AM
Hi Schaps,
Will you still perform some development on Advanced Config? I am currently porting all Kaiser Tweak settings to Advanced Config, but really miss two features:
Delete keys (some options are disabled by deleting keys only, like HKEY_LOCAL_MACHINE\Comm\Tcpip\Parms -> TcpMaxDataRetransmissions)
Set multiple keys (see my example before for enabling vibrating buttons in dialer)
Make more categories (I had difficulties to place certain features under a category, so I added them to Miscellaneous)
Use double quotes in registry keys (for instance for the following key: HKEY_LOCAL_MACHINE\Software\Microsoft\Today\Items\"Wireless"
Also be able to manually modify values that have a list of preset values (not part of KaiserTweak, but might be nice)
I've been able to succesfully port the following tweaks:
Set Date format
Calendar Event Text
Fullscreen Mode Windows Media Player
Cleartype Landscape
Cleartype PocketIE
Title Bar - Clock Settings
Backlight LockLevel
Suggest Words
Show ALS Page
Show 3G Long Prefix
Volume Change Beeps - Loudest
Volume Change Beeps - Quietest
Volume Change Beeps - Standard
Bluetooth Receive Files
Enable/disable HSDPA
Proxy AutoDetect
Encode photos in portrait mode
Capture Key Delay
Key Delay
Capture Key Delay Time
Finger Pressure
Lock position Spb Mobile Shell
Scroll, Zoom and Rotate in HTC Album
Wifi Certificate Message
TCP Connect Resends
TCP Data Resends
TCP Window Size
And the ones that still remain due to the above restrictions are:
Dialer Button behaviour
XT9
Wifi standby mode
Bitpool (as the advised setting would be to delete the key!)
SampleRate
TCP Data Resends
Backlight On Tap
3MP Panorma Shot (ie. 6MP Camera)
Low Battery Notification
Date Display
Wireless Today
Music Tab
Saved Audio
Saved Video
Saved Images
Empty Start Menu
Default QuickGPS Settings
Voice Speed Dialer as 6th HTCHomePlug icon
Additionally, I think I've fixed the Power Management issues some people were having - for some it crashed at the Power Management category, which may have been caused by the "Irsir1" tweak - it was checking for "AsyncMac1" key to be available, and would then set this tweak (also if it would not be available...).
Last but not least, if you have no time for building the new cab files, send me .inf, .pfx and signature.xml and I can build new versions myself and distribute them (like I do for KaiserTweak).
Regards,
Nika.
PS. See attached! :)
ov2rey
14-06-2008, 01:59 AM
Hi Schaps,
Will you still perform some development on Advanced Config? I am currently porting all Kaiser Tweak settings to Advanced Config, but really miss two features:
Delete keys (some options are disabled by deleting keys only, like HKEY_LOCAL_MACHINE\Comm\Tcpip\Parms -> TcpMaxDataRetransmissions)
Set multiple keys (see my example before for enabling vibrating buttons in dialer)
Make more categories (I had difficulties to place certain features under a category, so I added them to Miscellaneous)
Use double quotes in registry keys (for instance for the following key: HKEY_LOCAL_MACHINE\Software\Microsoft\Today\Items\"Wireless"
Also be able to manually modify values that have a list of preset values (not part of KaiserTweak, but might be nice)
I've been able to succesfully port the following tweaks:
Set Date format
Calendar Event Text
Fullscreen Mode Windows Media Player
Cleartype Landscape
Cleartype PocketIE
Title Bar - Clock Settings
Backlight LockLevel
Suggest Words
Show ALS Page
Show 3G Long Prefix
Volume Change Beeps - Loudest
Volume Change Beeps - Quietest
Volume Change Beeps - Standard
Bluetooth Receive Files
Enable/disable HSDPA
Proxy AutoDetect
Encode photos in portrait mode
Capture Key Delay
Key Delay
Capture Key Delay Time
Finger Pressure
Lock position Spb Mobile Shell
Scroll, Zoom and Rotate in HTC Album
Wifi Certificate Message
TCP Connect Resends
TCP Data Resends
TCP Window Size
And the ones that still remain due to the above restrictions are:
Dialer Button behaviour
XT9
Wifi standby mode
SampleRate
TCP Data Resends
Backlight On Tap
3MP Panorma Shot (ie. 6MP Camera)
Low Battery Notification
Date Display
Wireless Today
Music Tab
Saved Audio
Saved Video
Saved Images
Empty Start Menu
Default QuickGPS Settings
Voice Speed Dialer as 6th HTCHomePlug icon
Additionally, I think I've fixed the Power Management issues some people were having - for some it crashed at the Power Management category, which may have been caused by the "Irsir1" tweak - it was checking for "AsyncMac1" key to be available, and would then set this tweak (also if it would not be available...).
Last but not least, if you have no time for building the new cab files, send me .inf, .pfx and signature.xml and I can build new versions myself and distribute them (like I do for KaiserTweak).
Regards,
Nika.
PS. See attached! :)
may i know the file is replace where?? which folder?
tramane
14-06-2008, 01:59 AM
i have noticed that when using advancd config it automatically makes my Hermes Pocket IE goto 4way dpad navigation
Which i do not like
Even if i change it back to disabled it stays?
WIERD!!
Anyone else noticed this?
MarkAtHome
14-06-2008, 04:50 AM
Hi Nika -- between Shap's Configuration Tool and Kaiser Tweek is there a setting that enables me to go into lock mode without the lock mode hibernating/shutting_off (?) my current wi-fi or bluetooth. I find that when I unlock my ATT Tilt, it looks like it's re-establishing any wi-fi or bluetooth connection that was on prior to locking it.
When I put the phone in my pocket, I lock it, with bluetooth on, so I know if I'm getting a call via my bluetooth headset (Z9). Oftentimes, I miss a call (using MSVC) and notice that when I unlock the phone bluetooth enabling looks to be occurring (I'm not absolutely certain). Any thoughts?
nikagl
14-06-2008, 09:47 AM
may i know the file is replace where?? which folder?
Put the xml file in the \Windows folder of your mobile phone...
i have noticed that when using advancd config it automatically makes my Hermes Pocket IE goto 4way dpad navigation
Which i do not like
Even if i change it back to disabled it stays?
WIERD!!
Anyone else noticed this?
Definately haven't noticed it (turning it on makes mail open halfway the mail, so I'd notice it immediately). Can you send us the value of the following key (or export):
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Navigation
4-Way Nav
Read here to see how to export your registry on your phone:
http://wiki.xda-developers.com/index.php?pagename=RegistryExport
It should be set to 0. If it's set to 0, please let us know why you think 4way nav is on...maybe send a screenshot, read here to see how:
http://wiki.xda-developers.com/index.php?pagename=ScreenShot
Hi Nika -- between Shap's Configuration Tool and Kaiser Tweek is there a setting that enables me to go into lock mode without the lock mode hibernating/shutting_off (?) my current wi-fi or bluetooth. I find that when I unlock my ATT Tilt, it looks like it's re-establishing any wi-fi or bluetooth connection that was on prior to locking it.
When I put the phone in my pocket, I lock it, with bluetooth on, so I know if I'm getting a call via my bluetooth headset (Z9). Oftentimes, I miss a call (using MSVC) and notice that when I unlock the phone bluetooth enabling looks to be occurring (I'm not absolutely certain). Any thoughts?
Hi Mark,
My wifi definately stays active (I receive mail), and my Bluetooth too (my carkit rings when I am called). You could try play around with the Power Management section in Advanced Config (alle enabled + set to 60 secs for me), or the "Wifi standby mode" in KaiserTweak (disabled for me)?
Regards,
Nika.
schaps
14-06-2008, 03:11 PM
Hi Schaps,
Will you still perform some development on Advanced Config? I am currently porting all Kaiser Tweak settings to Advanced Config, but really miss two features:
Delete keys (some options are disabled by deleting keys only, like HKEY_LOCAL_MACHINE\Comm\Tcpip\Parms -> TcpMaxDataRetransmissions)
Set multiple keys (see my example before for enabling vibrating buttons in dialer)
Make more categories (I had difficulties to place certain features under a category, so I added them to Miscellaneous)
Use double quotes in registry keys (for instance for the following key: HKEY_LOCAL_MACHINE\Software\Microsoft\Today\Items\"Wireless"
Also be able to manually modify values that have a list of preset values (not part of KaiserTweak, but might be nice)
I've been able to succesfully port the following tweaks:
Set Date format
Calendar Event Text
Fullscreen Mode Windows Media Player
Cleartype Landscape
Cleartype PocketIE
Title Bar - Clock Settings
Backlight LockLevel
Suggest Words
Show ALS Page
Show 3G Long Prefix
Volume Change Beeps - Loudest
Volume Change Beeps - Quietest
Volume Change Beeps - Standard
Bluetooth Receive Files
Enable/disable HSDPA
Proxy AutoDetect
Encode photos in portrait mode
Capture Key Delay
Key Delay
Capture Key Delay Time
Finger Pressure
Lock position Spb Mobile Shell
Scroll, Zoom and Rotate in HTC Album
Wifi Certificate Message
TCP Connect Resends
TCP Data Resends
TCP Window Size
And the ones that still remain due to the above restrictions are:
Dialer Button behaviour
XT9
Wifi standby mode
SampleRate
TCP Data Resends
Backlight On Tap
3MP Panorma Shot (ie. 6MP Camera)
Low Battery Notification
Date Display
Wireless Today
Music Tab
Saved Audio
Saved Video
Saved Images
Empty Start Menu
Default QuickGPS Settings
Voice Speed Dialer as 6th HTCHomePlug icon
Additionally, I think I've fixed the Power Management issues some people were having - for some it crashed at the Power Management category, which may have been caused by the "Irsir1" tweak - it was checking for "AsyncMac1" key to be available, and would then set this tweak (also if it would not be available...).
Last but not least, if you have no time for building the new cab files, send me .inf, .pfx and signature.xml and I can build new versions myself and distribute them (like I do for KaiserTweak).
Regards,
Nika.
PS. See attached! :)
Thank you for all those tweaks!
I plan to release soon a new version of Advanced Config with new tweaks and features like configuration export/restoration, so if I have enough time I will look at configuration file structure to consider those limitations.
nikagl
14-06-2008, 11:58 PM
Thank you for all those tweaks!
I plan to release soon a new version of Advanced Config with new tweaks and features like configuration export/restoration, so if I have enough time I will look at configuration file structure to consider those limitations.
Well... I can only hope my contribution in tweaks helps you provide a new release sooner :). If you need any help programming - I don't mind picking up parts of the development (for free of course)...
nikagl
15-06-2008, 03:20 PM
Some of the people in the Kaiser Tweak thread asked whether I'd be able to add the "Advised" indication for each tweak. That's one of the nice features of Kaiser Tweak as it enables users that do not exactly know what the tweak does, set it to whatever is advised by the people in the forums... In attached version I have added these indications just like Kaiser Tweak would set them - please let me know whether you agree with this and can use them in your next version...
Regards,
Nika.
nikagl
15-06-2008, 11:04 PM
Hi Schaps and others,
As I am trying to get the Kaiser Tweak users over to use Advanced Config, I've made it easier for them by providing a cab that installs my latest xml. See the post here:
http://forum.xda-developers.com/showpost.php?p=2305713&postcount=1382
Am I allowed to do this? Should I start a new thread?
Please give me some feedback on this :)
Regards,
Nika.
PS. If you have advice for me how to sign cabs, and how to install to "Device" only, let me know :)
mings
16-06-2008, 04:19 AM
Dear Schaps,
Nice program, Is it possible to make toggle/switch to choose
status when we connect to PC as Active Sync or as memory Storage
(such as Softick Card Export), Thanks
nikagl
16-06-2008, 02:12 PM
Dear Schaps,
Nice program, Is it possible to make toggle/switch to choose
status when we connect to PC as Active Sync or as memory Storage
(such as Softick Card Export), Thanks
Nope, you'll have to use Third Party tools (like Softick or WM5Torage).
Regards,
Nika.
zim2dive
17-06-2008, 05:02 PM
Volume Change Beeps - Loudest
Volume Change Beeps - Quietest
[Volume Change Beeps - Standard
Does "Quietest" == off?
Disabling the in-call volume change noise is the only reason I keep a copy of HTweakC around. Would love to see that rolled in to Advanced Config.
2 tweaks are listed on http://wiki.xda-developers.com/index.php?pagename=Hermes_Registry for
Disable annoying beeps when changing in-call volume
Disable annoying beeps when hanging up or call drops
nikagl
17-06-2008, 05:20 PM
Does "Quietest" == off?
Disabling the in-call volume change noise is the only reason I keep a copy of HTweakC around. Would love to see that rolled in to Advanced Config.
2 tweaks are listed on http://wiki.xda-developers.com/index.php?pagename=Hermes_Registry for
Disable annoying beeps when changing in-call volume
Disable annoying beeps when hanging up or call drops
Hi zim2dive,
No "Quietest" is the beep it makes when turning the volume down during a call, and "Loudest" is the beep when turning it up. As Advanced Config is not capable of setting multiple registry keys at the same time, like KaiserTweak and HTweakC (didn't know that one, thanks! :)), I had to split them up into two tweaks.
So - if you want to get rid of HTweakC, use Advanced Config to change all three options. Plus I'll add the drop calls one as a bonus :)
See attached ;)
Regards,
Nika.
ov2rey
17-06-2008, 05:25 PM
Hi zim2dive,
No "Quietest" is the beep it makes when turning the volume down during a call, and "Loudest" is the beep when turning it up. As Advanced Config is not capable of setting multiple registry keys at the same time, like KaiserTweak and HTweakC (didn't know that one, thanks! :)), I had to split them up into two tweaks.
So - if you want to get rid of HTweakC, use Advanced Config to change all three options. Plus I'll add the drop calls one as a bonus :)
See attached ;)
Regards,
Nika.
the attached issit he latest version?
nikagl
17-06-2008, 05:44 PM
the attached issit he latest version?
Yes, it's the latest version. Please note that Schap's latest version is 2.1 and does not contain the before mentioned tweaks. Mine contains all new tweaks ported from KaiserTweak, plus the "Advices" on what to set, plus the drop call sound mentioned in the HTweakC... You can either install it by copying the XML to your \WINDOWS folder on your phone, or install the CAB on your phone which automatically installs it to your WINDOWS folder (make sure to select Device, not Storage Card!).
Regards,
Nika.
MarkAtHome
17-06-2008, 05:45 PM
Some of the people in the Kaiser Tweak thread asked whether I'd be able to add the "Advised" indication for each tweak. That's one of the nice features of Kaiser Tweak as it enables users that do not exactly know what the tweak does, set it to whatever is advised by the people in the forums... In attached version I have added these indications just like Kaiser Tweak would set them - please let me know whether you agree with this and can use them in your next version...
Yes! That's what I was missing in Advanced Configuration Tool. When in doubt, choose advised... !
zim2dive
17-06-2008, 06:53 PM
Hi zim2dive,
No "Quietest" is the beep it makes when turning the volume down during a call, and "Loudest" is the beep when turning it up. As Advanced Config is not capable of setting multiple registry keys at the same time, like KaiserTweak and HTweakC (didn't know that one, thanks! :)), I had to split them up into two tweaks.
So - if you want to get rid of HTweakC, use Advanced Config to change all three options. Plus I'll add the drop calls one as a bonus :)
See attached ;)
Regards,
Nika.
Super.. thanks!!!
ufoss
20-06-2008, 06:10 PM
Hi;
i installed "pcm keyboard" how can i make default keyboard. because after soft reset i have to choice again..
nikagl
22-06-2008, 11:06 PM
Hi;
i installed "pcm keyboard" how can i make default keyboard. because after soft reset i have to choice again..
Download and install SIPChange:
http://forum.xda-developers.com/showthread.php?t=271008
BARBOSS
23-06-2008, 07:19 AM
Hi;
i installed "pcm keyboard" how can i make default keyboard. because after soft reset i have to choice again..
[HKEY_CURRENT_USER\ControlPanel\Sip]
"DefaultIm"="{BB25F2EB-688C-4698-ADFC-F422A148AD4F}"
ufoss
23-06-2008, 05:52 PM
thanks for answer
jeannot61
25-06-2008, 12:13 AM
how to uninstall cleanly advanced configuration tool v. 2.1? because this program does not permit the operation of my camera.
zim2dive
26-06-2008, 04:19 PM
This might be an interesting addition:
http://forum.xda-developers.com/showpost.php?p=2343331&postcount=6
nikagl
28-06-2008, 01:32 AM
how to uninstall cleanly advanced configuration tool v. 2.1? because this program does not permit the operation of my camera.
I hadn't seen this post - what do you mean? AdvancedConfig can be removed by Removing it using Settings -> Remove Programs. Or you can delete the AdvancedConfig files from the Windows folder (be careful not to delete anything else). Reverting back to the old settings is not possible - there's no backup/restore feature in AdvancedConfig - remember which settings you change and test whether all is still ok before continuing with a next setting (unless you know what you are doing)...
nikagl
28-06-2008, 01:37 AM
This might be an interesting addition:
http://forum.xda-developers.com/showpost.php?p=2343331&postcount=6
Love it...plus, judging from my registry it could also change the ringtone when you are roaming (RoamingRing0)...but... Advanced Config has no options to copy/paste keys or set multiple keys at the same time. The only thing I could do is add it in three sections where you'd have to modify each section to make it work (ie. set the ringtone, set the script and set the category which I'm not sure is needed). Do you want me to add it? Or Schaps... will you come with a newer version which does allow those kind of edits?
Regards,
Nika.
NotLutzik
28-06-2008, 10:13 PM
Will SlideWakeup work on mogul?
asbjorn
01-07-2008, 02:42 PM
Stupid question here..
Where to put the AdvancedConfig_0409.xml?, I put it in the same folder as KaiserTweak, but it did not find it?
My Kaiser do have norwegian language, do I need to rename som file or?
Picsman
02-07-2008, 03:22 AM
Stupid question here..
Where to put the AdvancedConfig_0409.xml?, I put it in the same folder as KaiserTweak, but it did not find it?
My Kaiser do have norwegian language, do I need to rename som file or?You could have looked earlier on this thread for your answer. Or you could have searched for your answer. :mad:
Kaiser Tweak and Advanced Config have nothing to do with each other except they each make changes to the registry.
Here's your answer: The XML file for AdvancedConfig, AdvancedConfig_0409.xml, goes in the same place as does its executable file, that is, \Windows (on the device itself) and replaces the same-named file already there.
nikagl
07-07-2008, 11:36 PM
Hi all,
I've created a Wiki that contains the install instructions for Advanced Config, and the latest updates to my XML file (for Advanced Config):
http://wiki.xda-developers.com/index.php?pagename=AdvancedConfig
Give me some feedback :)
Regards,
Nika.
nikagl
08-07-2008, 12:41 AM
Will SlideWakeup work on mogul?
No, it's enabled for Kaiser and Diamond - I added "Mogul" to the latest XML, can you try it and let me know? See the Wiki (in my signature) to find out how to install the latest XML...
Picsman
08-07-2008, 02:36 AM
Give me some feedback :) Nika.Okay; here it comes. Stand back. Don't look directly into the lights.
You're Awesome! :D :cool:
nikagl
09-07-2008, 12:26 AM
Hi Schaps,
For your new version, can you also support REG_MULTI_SZ (multi line string registry keys) - read this post:
http://forum.xda-developers.com/showpost.php?p=2384244&postcount=24
It seems that specific key cannot be read and set due to a multi-line regkey not being compatible?
I've used the following XML code:
<setting key="HKEY_LOCAL_MACHINE\Comm\ConnMgr\Planner\Settings" name="SuspendResume" type="string">
<title>GPRS auto disconnect</title>
<description>Disconnects GPRS after (delay specified in previous tweak).</description>
<values default="~GPRS!">
<value data="GPRS_bye_if_device_off">Yes (Advised)</value>
<value data="~GPRS!">No (Default)</value>
</values>
</setting>
Did I do something wrong?
Regards,
Nika.
craigiecraigie4
09-07-2008, 01:12 PM
Hi guys,
How do I add a tweak that requires a key and several sub-keys? I am working on all the Diamond scroll wheel apps and each one requires that I add the following:
[HKEY_LOCAL_MACHINE\Software\HTC\SmartTouch\AppClas s]
"ClassName"="AppClass"
"WheelCount"=dword:00000002
"Mode"=dword:00000004
That tweak ensures that the scrollwheel now works for ONE application called "AppClass". I need to create an XML file that will allow users to enable their choice of MANY apps where the XML file will store the AppClass which most users battle to determine.
Any help would be appreciated.
nikagl
09-07-2008, 11:59 PM
Hi guys,
How do I add a tweak that requires a key and several sub-keys? I am working on all the Diamond scroll wheel apps and each one requires that I add the following:
[HKEY_LOCAL_MACHINE\Software\HTC\SmartTouch\AppClas s]
"ClassName"="AppClass"
"WheelCount"=dword:00000002
"Mode"=dword:00000004
That tweak ensures that the scrollwheel now works for ONE application called "AppClass". I need to create an XML file that will allow users to enable their choice of MANY apps where the XML file will store the AppClass which most users battle to determine.
Any help would be appreciated.
That's not possible - see my previous comment about not being able to set multiple keys for one tweak - only way would be to split it up in three tweaks....
schaps
10-07-2008, 07:33 AM
Hi guys,
How do I add a tweak that requires a key and several sub-keys? I am working on all the Diamond scroll wheel apps and each one requires that I add the following:
[HKEY_LOCAL_MACHINE\Software\HTC\SmartTouch\AppClas s]
"ClassName"="AppClass"
"WheelCount"=dword:00000002
"Mode"=dword:00000004
That tweak ensures that the scrollwheel now works for ONE application called "AppClass". I need to create an XML file that will allow users to enable their choice of MANY apps where the XML file will store the AppClass which most users battle to determine.
Any help would be appreciated.
Unfortunately it's not possible to do this via XML file, but if this feature may be interesting I could make a more conveignent interface available from Advanced Config menu.
Do you know what are the values for WheelCount and Mode? I tried to add scroll wheel support to an app but I can't figure out how to use those values...
schaps
10-07-2008, 07:41 AM
Hi Schaps,
For your new version, can you also support REG_MULTI_SZ (multi line string registry keys) - read this post:
http://forum.xda-developers.com/showpost.php?p=2384244&postcount=24
It seems that specific key cannot be read and set due to a multi-line regkey not being compatible?
I've used the following XML code:
<setting key="HKEY_LOCAL_MACHINE\Comm\ConnMgr\Planner\Settings" name="SuspendResume" type="string">
<title>GPRS auto disconnect</title>
<description>Disconnects GPRS after (delay specified in previous tweak).</description>
<values default="~GPRS!">
<value data="GPRS_bye_if_device_off">Yes (Advised)</value>
<value data="~GPRS!">No (Default)</value>
</values>
</setting>
Did I do something wrong?
Regards,
Nika.
Yes, I don't think I added REG_MULTI_SZ support, so I will do it in next version. But isn't this tweak already implemented in Advanced Config (connection settings menu) ?
Thank you again Nika for Advanced Config Wiki and all your work around Advanced Config. I will prepare a new version maybe this week-end or next week-end (v3 will have "finger-friendly" interface :)).
Could you also take a look at this thread: http://forum.xda-developers.com/showthread.php?t=406681.
NotLutzik
10-07-2008, 07:57 AM
No, it's enabled for Kaiser and Diamond - I added "Mogul" to the latest XML, can you try it and let me know? See the Wiki (in my signature) to find out how to install the latest XML...
I did try...Latest XML. Dont see SlideWakeup as an option in Advanced Config.
davidchiu
10-07-2008, 08:11 AM
[QUOTE=xxx;2389149 Donn't support WM standard .[/QUOTE]
It's good tool,but why didn't support wm standard? We need it.:confused:
l3v5y
10-07-2008, 04:44 PM
It's good tool,but why didn't support wm standard? We need it.:confused:
I'd guess some of the UI elements don't function well without a touch screen.
nikagl
10-07-2008, 09:25 PM
I did try...Latest XML. Dont see SlideWakeup as an option in Advanced Config.
Hmmm... I guess the program does not recognise your phone as a "Mogul"... Hope Schap's can help to identify how he recognises the phone type... What does your phone have in "Model. No." when you go to Settings -> System -> Device Information -> Identity???
Regards,
Nika.
nikagl
10-07-2008, 10:18 PM
Yes, I don't think I added REG_MULTI_SZ support, so I will do it in next version. But isn't this tweak already implemented in Advanced Config (connection settings menu) ?
Thank you again Nika for Advanced Config Wiki and all your work around Advanced Config. I will prepare a new version maybe this week-end or next week-end (v3 will have "finger-friendly" interface :)).
Could you also take a look at this thread: http://forum.xda-developers.com/showthread.php?t=406681.
Hi Schaps,
Thanks, sounds good. I'm waiting anxiously. I've also looked at boinger's Diamond tweak xml-file, added it to the wiki, and ported some of the tweaks to my xml, but as they seem to be for Diamond only I've restricted them (tested on Kaiser) to Diamond only...
That reminds me - how do you check for the phone? I've had someone with a tweak for a Mogul and it didn't recognise that restriction...
Regards,
Nika.
l3v5y
10-07-2008, 11:07 PM
Yes, I don't think I added REG_MULTI_SZ support, so I will do it in next version. But isn't this tweak already implemented in Advanced Config (connection settings menu) ?
Thank you again Nika for Advanced Config Wiki and all your work around Advanced Config. I will prepare a new version maybe this week-end or next week-end (v3 will have "finger-friendly" interface :)).
Could you also take a look at this thread: http://forum.xda-developers.com/showthread.php?t=406681.
That sounds awesome!
l3v5y
10-07-2008, 11:10 PM
EDIT: Wrong thread...
schaps
10-07-2008, 11:10 PM
Hi Schaps,
That reminds me - how do you check for the phone? I've had someone with a tweak for a Mogul and it didn't recognise that restriction...
Nika.
I use OEM device model returned by system, normally it should be the same as Device Model name in Settings>Device Info.
Wim Nagtegaal
13-07-2008, 12:38 PM
Hallo,
Is it possible to include an option to export (and import) the settings. This would be great after doing a ROM update.
Wim Nagtegaal
13-07-2008, 01:06 PM
Hallo,
When I set 'Show SIM contacts' to No, it works Ok. But after a soft reset it reverts back to 'Show SIM contacts: yes', any idea why and can this be corrected?
nikagl
13-07-2008, 02:53 PM
Hallo Wim,
See below for answers to your questions.
Hallo,
Is it possible to include an option to export (and import) the settings. This would be great after doing a ROM update.
I was wondering about the same and searched for it, and found AdvancedConfigXMLConverter (http://forum.xda-developers.com/showthread.php?t=371828) - that should do it. Not from AdvancedConfig directly, but using your pc, should be sufficient too :)
Hallo,
When I set 'Show SIM contacts' to No, it works Ok. But after a soft reset it reverts back to 'Show SIM contacts: yes', any idea why and can this be corrected?
This too has been covered before on the xda-forums, it's caused by some ROMs automatically reverting certain registry keys with soft reset. The only thing that solves this is an application that resets those keys when the phone is booting, which is not a feature of AdvancedConfig either. Currently there's several keys that may show this behaviour, here's two applications that solve it for the ones that I know:
Backlight LockLevel tweak:
BrightLock.cab (http://forum.xda-developers.com/showthread.php?t=371072) and BrightLockInstaller.CAB (http://rapidshare.com/files/93584152/BrightLockInstaller.CAB)
Show SIM contacts tweak:
KaiserSimFix.cab (http://forum.xda-developers.com/showpost.php?p=1563935&postcount=5)
Regards,
Nika.
PS. I'll add this to the wiki too :)
boinger66
15-07-2008, 04:47 PM
Hi guys,
How do I add a tweak that requires a key and several sub-keys? I am working on all the Diamond scroll wheel apps and each one requires that I add the following:
[HKEY_LOCAL_MACHINE\Software\HTC\SmartTouch\AppClas s]
"ClassName"="AppClass"
"WheelCount"=dword:00000002
"Mode"=dword:00000004
That tweak ensures that the scrollwheel now works for ONE application called "AppClass". I need to create an XML file that will allow users to enable their choice of MANY apps where the XML file will store the AppClass which most users battle to determine.
Any help would be appreciated.
the way i did this in the diamond advanced config was via cab file
i set the cab file to insert the keys that dont change
then i had seperate tweaks for enable/ disable and wheel sensitivity
http://forum.xda-developers.com/showthread.php?t=406681
this thread should contain a solution
and schaps i too would like to help with advanced config as i been maintaining the diamond tweaks for it ... so if you need my help / anything from me im willing to help
Wim Nagtegaal
15-07-2008, 11:22 PM
Thanks for the suggestions. I'll give it a try. But it would be nice if the export/import was part of the Advanced Settings application, it makes it more complete :)
SeaDweller
16-07-2008, 11:35 PM
When installing the AdvConfig tool to my Samsung i780, I get the error message "failed to correctly parse settings" or similar. However, a lot of the utility still works welll although it is incomplete.
Is this because it is specific to xda devices?
Might I be better with an older version of this excellent application?
nikagl
17-07-2008, 12:42 AM
When installing the AdvConfig tool to my Samsung i780, I get the error message "failed to correctly parse settings" or similar. However, a lot of the utility still works welll although it is incomplete.
Is this because it is specific to xda devices?
Might I be better with an older version of this excellent application?
Which XML did you use or didn't you install anything else than AdvancedConfig? What version of AdvancedConfig? What is the last tweak that appears in your tweaks list after you get the Failed to Parse Settings message?
Regards,
Nika.
SeaDweller
17-07-2008, 01:41 AM
Thanks for the response, Nika.
I installed v2.1.0.0.
I did not install anything other than AdvConfig.
The last tweak that is available is "glyph cache" under Performances. Just below this the "Power Management" category is visible but no items are available in or below it.
However, all the tools available via the menu (key mapping etc) do work.
This is on WM6 Pro.
All I'm keen to do is to alter things like ending data connections after a short period, and a few other similar useful tweaks.
I do understand that the XML allows you to alter the AdvConfig to suit specific devices but I am not confident in using this. Should I give it a go?
Ta for any advice
S
nikagl
17-07-2008, 04:18 PM
Thanks for the response, Nika.
I installed v2.1.0.0.
I did not install anything other than AdvConfig.
The last tweak that is available is "glyph cache" under Performances. Just below this the "Power Management" category is visible but no items are available in or below it.
However, all the tools available via the menu (key mapping etc) do work.
This is on WM6 Pro.
All I'm keen to do is to alter things like ending data connections after a short period, and a few other similar useful tweaks.
I do understand that the XML allows you to alter the AdvConfig to suit specific devices but I am not confident in using this. Should I give it a go?
Ta for any advice
S
Hi SeaDweller,
I've fixed the Power Management issue in my XML, see the Wiki in my signature and download my XML from the nikagl-xml thread. Install it, and let me know whether it works because so-far no-one has confirmed that it was fixed by my xml ;)
Regards,
Nika.
SeaDweller
18-07-2008, 01:12 AM
Hi Nika
OK I installed the XML as suggested, thanks.
Now the list of possible tweaks goes all the way down and ends at Tools > Voice speed dialer. Power management is in there OK.
However, I now seem to be missing the upper part of the list!
The first options I see are Call > Fast sleep etc and I can see where it is truncated, in other words part of the tree is visible so that I can see there is more up above that I cannot access.
Is this to do with the i780's odd screen size?
Simon
nikagl
18-07-2008, 01:31 AM
Hi Simon,
That sounds really strange - can you make a screenprint so I can actually see what you mean? See the following wiki for tips on making screenprints:
http://wiki.xda-developers.com/index.php?pagename=ScreenPrints
Regards,
Nika.
SeaDweller
19-07-2008, 03:25 AM
Hi Nika
Sorry for the delay.
This is what is displayed when I first open Kaisertweak:
http://img.photobucket.com/albums/v138/Chickenhawk66/Screen01.jpg
It looks as if I should be able to scroll further up, if you see what I mean.
It is possible I have got this all wrong and that I am in fact seeing all I am supposed to see. :)
Getting back to the issue of tweaks, and aside from the fact that it does not work fully in this device (the parsing problem), what I really wanted to do with Kaiser tweak was to enable and configure "long press send key", "long press end" (which is enabled but only for phone lock), and "long press power key". Any thoughts as to how I can do this with the xml or otherwise?
Thanks again
Simon
austinsnyc
19-07-2008, 05:33 AM
you can't scroll any more up that is the first tweak in KaiserTweak I just looked to make sure for you. It probably has to do with the app being coded for the standard screen size which your is not correct?
Shap...
Any news on this new AdvancedConfig3.x, I am really looking forward to 3.x this is one of the best apps made for Windows Mobile Phones! If the same tweaks as KaiserTweaks could be implemented like stated above this would be the best customization app around ever!
nikagl
21-07-2008, 10:23 PM
Hi Schaps,
Is it possible to add a switch for tweaks that have a list of choices to also change the value in a custom value? See this post for more info:
http://forum.xda-developers.com/showpost.php?p=2432235&postcount=134
Regards,
Nika.
SeaDweller
22-07-2008, 12:41 AM
Are there likely to be any developments with this as regards the problem shown in my screenshot above?
nikagl
22-07-2008, 11:15 AM
Are there likely to be any developments with this as regards the problem shown in my screenshot above?
Hi Simon,
With regards to your screenshot there won't be any development. As austinsnyc mentioned it's just a display problem - all your tweaks should be there. KaiserTweak application won't be changed as AdvancedConfig is the application to use nowadays. The only "development" I can do for you is add or change tweaks in the xml, but that has nothing to do with the display issue you have.
Regards,
Nika.
SeaDweller
22-07-2008, 03:07 PM
Thanks Nika - sorry I see now that austinsync has made it clear that I can in fact access all the tweaks.
Cheers for all the help.
I've just got myself SPB mobile shell so I am going to play with that and see where I go from there.
schaps
23-07-2008, 01:20 PM
Hi Schaps,
Is it possible to add a switch for tweaks that have a list of choices to also change the value in a custom value? See this post for more info:
http://forum.xda-developers.com/showpost.php?p=2432235&postcount=134
Regards,
Nika.
Ok, I will think about it! :)
Picsman
25-07-2008, 06:52 AM
I think I installed 2.1.0.0. But, the "about" page says I installed 2.02.1.00.
Have I found a nit :confused: or did I grab the wrong file? :mad:
Thanks.
outkasted
30-07-2008, 07:14 AM
@schaps m8 when are we going to try our hands on the version 3 of ur spectacular and ultra practical app ... which will be a finger friendly version for the Touch Diamond....
looking forward to it soon in the future...
with rgrds n TC
nikagl
04-08-2008, 01:41 AM
I think I installed 2.1.0.0. But, the "about" page says I installed 2.02.1.00.
Have I found a nit :confused: or did I grab the wrong file? :mad:
Thanks.
Mine says that too...
nikagl
04-08-2008, 01:46 AM
Hi Schaps,
I've been looking over the following tweak over and over again, but for some reason it does not work (anymore) on the most current ROMs. Can you explain what could cause a parse of the settings file to fail with the tweak below?
<setting key="HKEY_LOCAL_MACHINE\Software\Microsoft\Bluetooth\A2 DP\Settings" name="BitPool" type="integer">
<title>Bitpool</title>
<description>Configure the SBC bitpool settings. A lower bitpool value improves system performance, a higher value improves audio quality.</description>
<values default="48">
<value data="76">76 (Very High)</value>
<value data="70">70 (High)</value>
<value data="64">64 (Medium)</value>
<value data="48">48 (Low)</value>
<value data="30">30 (Very Low)</value>
</values>
<restrict>
<value key="HKEY_LOCAL_MACHINE\Software\Microsoft\Bluetooth\A2 DP" />
</restrict>
</setting>
Regards,
Nika.
MarkAtHome
04-08-2008, 02:01 AM
HTC TyTN II (Kaiser)
ROM Version: ROMeOS v4.1 (http://forum.xda-developers.com/showthread.php?t=411692)
Radio: 1.65.24.36 (http://forum.xda-developers.com/showthread.php?t=398177)
Protocol: 25.94.40.06H
SPL: HardSPL v3.56 (http://forum.xda-developers.com/showthread.php?t=396922)
OS: 5.2.20273 (build 20273.1.1.1) WM6.1
HTC TyTN II (Kaiser)
Nika.
Dab-nabbit. I can't keep up with you, Nika. Now you're with ROMeOS (new video drivers worth the switch?) ... sigh... :) I've a Tilt, HardSPL v3.56, 165.20.29, 5.2.19214 and my trigger finger might not make it to ATT's proported almost released ROM... Maybe I'll just nap until the Tilt III or IV comes out and stress out then. What think you? :eek:
JonMorgan
04-08-2008, 11:32 AM
I'm making my own .xml for the Uni. However I am finding that the following is writing the value as a REG_SZ, not REG_DWORD.
(Even if I use the original xml, changing something like the 'maximum supported bitpool' also changes it to string)
Has this problem been cured or anyone any knowledge on this?
<setting key="HKEY_LOCAL_MACHINE\System\GWE" name="cxVScr" type="integer">
<title>Vertical scrollbar width</title>
<description>Define vertical scrollbar width in pixels. (Default 13)</description>
<values default="13" />
</setting>
sayad
04-08-2008, 11:56 AM
I have even raed in a place
""""""""""""
Adobe Reader LE extends Adobe PDF software to mobile phones and consumer electronics devices. Mobile users can now reliably view rich, high-impact, more secure content on a variety of devices, including handsets from Nokia, NTT DoCoMo and other leading manufacturers, car navigation systems, printers, eBook devices, and more.
Reasons to put Adobe Reader LE on a handset or consumer electronics device
Viewing and navigating rich PDF content on a device provides a great user experience.
Adobe Reader LE enables you to access the same PDF files you view on your desktop anytime, anywhere, without conversion.
The application offers superior performance, including quick rendering and navigation.
Adobe Reader LE is suitable for devices with a small footprint and low memory.
PDF usage drives ARPU for operators.
Cross-platform portability enables faster time-to-market.
It's reliable, extensible, and offers many advanced security features.
Getting Reader LE on your device
""""""""""""""""""""
This thing says that adobe is behind the real improvemeent on the new tweak tools.
nikagl
04-08-2008, 12:52 PM
Dab-nabbit. I can't keep up with you, Nika. Now you're with ROMeOS (new video drivers worth the switch?) ... sigh... :) I've a Tilt, HardSPL v3.56, 165.20.29, 5.2.19214 and my trigger finger might not make it to ATT's proported almost released ROM... Maybe I'll just nap until the Tilt III or IV comes out and stress out then. What think you? :eek:
Lol, little offtopic in this thread, but don't worry too much about ROM updating. I like to try all ROMs but usually the change isn't that big. If you're happy and used to your current ROM don't change it. I often change many things back to what I like it to be, for instance:
1. Run all tweaks from AdvancedConfig & KaiserTweak
2. Use the 6button Diamond Comm Manager with bottom two buttons changed to ActiveSync & 3G
3. Use the Dual Touch Dialer (provided by Dutty and Nadavi, easiest quick dialling, but a bit slower than other dialers)
4. Latest version of HTC Home on my Today screen
5. Many default registry tweaks and settings for programs
6. Many different other applications & cabs
Items 5 and 6 are all installed using an application called SASHIMI - if you are ever going to ROM Upgrade and do it more often remember that name, it's better than UC although UC also has some features which I still use ;)
Regards,
Nika.
llecaroz
04-08-2008, 12:58 PM
Does one of you know how to add SIP Configuration or if it is possible throught the xml file with Advacned configuration tool ?
As it is a nice tool, it could be cool to add this feature in it & because sipconftool developement was stopped if i am correct.
thx in advance
Louis
nikagl
04-08-2008, 12:59 PM
I'm making my own .xml for the Uni. However I am finding that the following is writing the value as a REG_SZ, not REG_DWORD.
(Even if I use the original xml, changing something like the 'maximum supported bitpool' also changes it to string)
Has this problem been cured or anyone any knowledge on this?
<setting key="HKEY_LOCAL_MACHINE\System\GWE" name="cxVScr" type="integer">
<title>Vertical scrollbar width</title>
<description>Define vertical scrollbar width in pixels. (Default 13)</description>
<values default="13" />
</setting>
I haven't seen that behaviour. It might be caused by not specifying default values? In my xml's almost each setting has a list of default values to make it easier for the users.
Although it turned out that my previous issue was caused by the field being a string. So BitPool was a string in my ROM (guess the cook of this ROM has some reasons for that) and contained a dash. Therefore it couldn't parse the settings-file at that point (AdvancedConfig reads the setting as integer, but a string-value "-" is returned which makes it fail).
Maybe this helps?
Regards,
Nika.
nikagl
04-08-2008, 01:06 PM
I have even raed in a place
""""""""""""
Adobe Reader LE extends Adobe PDF software to mobile phones and consumer electronics devices. Mobile users can now reliably view rich, high-impact, more secure content on a variety of devices, including handsets from Nokia, NTT DoCoMo and other leading manufacturers, car navigation systems, printers, eBook devices, and more.
Reasons to put Adobe Reader LE on a handset or consumer electronics device
Viewing and navigating rich PDF content on a device provides a great user experience.
Adobe Reader LE enables you to access the same PDF files you view on your desktop anytime, anywhere, without conversion.
The application offers superior performance, including quick rendering and navigation.
Adobe Reader LE is suitable for devices with a small footprint and low memory.
PDF usage drives ARPU for operators.
Cross-platform portability enables faster time-to-market.
It's reliable, extensible, and offers many advanced security features.
Getting Reader LE on your device
""""""""""""""""""""
This thing says that adobe is behind the real improvemeent on the new tweak tools.
That's only "superior performance, including quick rendering and navigation" when reading a PDF document - it does not change your device so it's quicker in other respects...
nikagl
04-08-2008, 01:16 PM
Does one of you know how to add SIP Configuration or if it is possible throught the xml file with Advacned configuration tool ?
As it is a nice tool, it could be cool to add this feature in it & because sipconftool developement was stopped if i am correct.
thx in advance
Louis
Default SIP settings are changed with every reboot - it needs to be either cooked in the ROM or a supporting application (like "SIP Change") that changes the default SIP after reboot...
Regards,
Nika.
llecaroz
05-08-2008, 05:50 PM
I don't understand about what you are talking or maybe, I was unclear in my sentence :( ?
Let's take a look into SIpConfTool 2.0.x.x, which is started onetime to set your SIP parametes & after this is never restarted until you need to re-change your parameters... ? could it not be possible as its development is stopped to include its sourcecode into the Advanced Configuration Tool ? I supposed that SIP parameters are not based on the registry & so, needs the "Advanced Configuration Tool" needs to be modified in its core to add this feature.
By the way, "Advanced Configuration Tool" will be the UNIQUE tool of the world for all Win? advanced settings like also SIPs. You will be the tool of the year ;)
llecaroz
05-08-2008, 05:56 PM
& What about to add these parameters in ACT (for sure if possible after having checked that MS Voice Command is well installed, otherwise these settings should be hidden) :
http://www.modaco.com/content/smartphone-software-applications/250775/microsoft-voicecommand-1-6-guide/
nikagl
05-08-2008, 06:10 PM
I don't understand about what you are talking or maybe, I was unclear in my sentence :( ?
Let's take a look into SIpConfTool 2.0.x.x, which is started onetime to set your SIP parametes & after this is never restarted until you need to re-change your parameters... ? could it not be possible as its development is stopped to include its sourcecode into the Advanced Configuration Tool ? I supposed that SIP parameters are not based on the registry & so, needs the "Advanced Configuration Tool" needs to be modified in its core to add this feature.
By the way, "Advanced Configuration Tool" will be the UNIQUE tool of the world for all Win? advanced settings like also SIPs. You will be the tool of the year ;)
Ah... SIP as in Session Initiation Protocol (ie. VoIP) and not SIP as in Secondary Input Panel (ie. onscreen keyboard). I'm affraid Schap's is the one that needs to answer that ;)
llecaroz
06-08-2008, 12:17 AM
Ah... SIP as in Session Initiation Protocol (ie. VoIP) and not SIP as in Secondary Input Panel (ie. onscreen keyboard). I'm affraid Schap's is the one that needs to answer that ;)
Yes, sorry, I was talking about SIP (ie VoIP), let me apologize ;)
Simple but useful tweak for me would be
"Keep copies of sent items in Sent Folder - PERMANENTLY OFF"
I know you can do this in messaging settings, however it always defaults to saving a copy after a soft reset - really annoying
nikagl
12-08-2008, 05:39 PM
Simple but useful tweak for me would be
"Keep copies of sent items in Sent Folder - PERMANENTLY OFF"
I know you can do this in messaging settings, however it always defaults to saving a copy after a soft reset - really annoying
This sounds like you have a problem with your ROM - did you try a newer ROM? If not, for some reason the registry key is reset after softreset, so you'll need somekind of program that changes it back - AdvancedConfig does not do this for you, so you won't be able to use it (unless Schap's builds a feature that does that in the new version).
Regards,
Nika.
I have the official o2 WM6 rom.
It used to stay switched off but seems to reset each time now
nikagl
13-08-2008, 12:55 AM
I have the official o2 WM6 rom.
It used to stay switched off but seems to reset each time now
Hardreset, reinstall your stuff - issue fixed? Sounds your rom has become unstable, which is not something that should be answered in this thread...
I'm new to this sorry. All I can find are 2 .xml files. Where's the original install cab file? As the links I find link to a page for downloading the latest .xml files not the program.
Or have I missed something?
schaps
20-08-2008, 05:20 PM
I'm new to this sorry. All I can find are 2 .xml files. Where's the original install cab file? As the links I find link to a page for downloading the latest .xml files not the program.
Or have I missed something?
You can download the lastest Advanced Config CAB on www.touchxperience.com.
Ahh thanks! I thought the massive download button was for the tool above it not all of them.
How do I install the cab file? Do I copy it somewhere then restart the phone?
Ahh you just execute it :)
How do you install the Microsoft .NET Compact Framework 3.5 file (.msi) as it's giving me an error saying it's not associated with anything :(
sommozx
20-08-2008, 06:09 PM
How do you install the Microsoft .NET Compact Framework 3.5 file (.msi) as it's giving me an error saying it's not associated with anything :(
I have the same problem
l3v5y
20-08-2008, 07:17 PM
How do you install the Microsoft .NET Compact Framework 3.5 file (.msi) as it's giving me an error saying it's not associated with anything :(
Are you trying to launch it on your PPC?
It needs to be installed on your PC!
WM_69
21-08-2008, 06:02 AM
Is there any tweak to display all the calendar events available for a day in the home screen. Currently touch flow 3d home can display only 1 event, even if there are multiple events available for a day.
irsaioliver
21-08-2008, 10:23 AM
Hi,
I have tried to install the app, but I have some problems ruinning it.
Probably with the .NET framework... When I would start the app, an error window comes up and says that I need a newer version of the .NET framework. Yes, I tried to install the 3.5 version, everything went well, but I suppose it did not install anything to my PDA (HTC P3300 Artemis. I even tried to install the 3.5 framework from a CAB file on my device, but I could not succed...
Anyone to know maybe some kind of solution?
Thank You in advance!
(Otherwise, it would be a great util!)
MarkAtHome
21-08-2008, 11:07 PM
There seems to be different versions of .NET 3.5 floating around.
What worked for me, with my ATT Tilt, CE OS 5.219214, SPL-3.56.Hard is attached -- well, not -- the file exceeded the forum's size limit (2.6M). I do have access to rapidshare (sorry folks) and it can be gotten here:
http://rapidshare.com/files/139082366/NETCFv35.wm.armv4i.cab
irsaioliver
22-08-2008, 11:00 AM
Thanks!!! Works fine! :)
Hi,
I just have a little problem with your program and the Samsung Omnia I 900. The tool works fine, but when I try to change the "Locations" using the Button "Browse" I get an Error Message and the program quits.
Any idea why this happens? Anything else works fine.
iammaz
24-10-2008, 04:39 AM
Schapps mate,
Your site gives a bandwith exceeded message. I assume you're deliberately not mirroring your tools to get money from ads? Or maybe this is a ploy to get more donations? And why not? You deserve it! I'll chuck some cash your way and I'll keep an eye for when your site is back.
What day does the new month roll over with your hosting company or is it calendar months?
let us know when it'll be back?
Maz
foakgul
11-11-2008, 11:14 AM
hey guys, here's the thing:
I installed
.net CF 3.5
adv. config 3.3
on my sprint touch pro BUT it doesn't work!
Error message:
advancedconfig.exe
exception
at microsoft.AGL.Common.MISC.HandleAr()
at System.Windows.Forms.ImageList..ctor()
at AdvancedConfig. .()
at AdvancedConfig. ..ctor()
at AdvancedConfig. .()
Any help?
Thanks
Kynyo
03-12-2008, 12:45 PM
a variant of xml files in eng?
Kynyo
03-12-2008, 12:47 PM
i found it:D
Ghinda
03-12-2008, 02:31 PM
Hi everyone!
Good job!!!!
But what should I do with this files?
How I install this on my Diamond?
Sorry I'm
new here
vBulletin® v3.7.0, Copyright ©2000-2008, Jelsoft Enterprises Ltd.