Cingular ROM users: PTT function hacked! - 8525, TyTN, MDA Vario II, JasJam Software Upgradin

This little app replaces the Cingular PTT service and adds customizable launch capabilities back to that useless PTT button on your Cingular ROM equipped Hermes. This patch initially maps the PTT button to the built in Voice Dialer, but you can re-map the push as well as the hold functions to the application of your choice.
Version History
v1.07 09/20/07
Now compatible with the latest AT&T WM6 ROM!
v1.06 06/05/07
Now compatible with the latest AT&T AKU3.5 ROM!
Smartdialer issue fixed
Phone Settings lockup issue fixed
v1.05 02/26/07
Smartdialer functionality restored on AKU3.x ROMs.
v1.04 02/21/07
PTTFix now disables the built in PTTServiceWrapper on Cingular AKU3.x ROMs. Backward compatability with AKU2.x ROMs has been maintained. Warning: this version also disables smart dialing on aku3.x ROMs. Will be fixed in v1.05
v1.03 02/16/07
Bugfix: PTTFix now de-registers PTTServiceWndClass before attempting registration. This corrects a timing issue on the new AKU3.3 ROM where the Cingular built-in PTT subsystem was registering this at boot time.
v1.02 11/14/06
Most of the built-in features have been implemented. PTTFix now handles everything except <Left Softkey>, <Right Softkey> and <Context Menu>
v1.01 11/10/06
<Start Menu> feature implemented. Choosing this option for any button 5 setting in the button editor will now launch the start menu.
v1.0 11/03/06
ButtonPressLaunchValue and ButtonHoldLaunchValue registry settings have been de-implemented because....
Full integration with the existing button editor in personal settings->buttons (button 5 settings are back!) has been implemented. No need to use a registry editor to change settings any more
Enhancement 10/24/06
For all you brand new 8525 owners: the whole shebang is now a simple CAB based installation!
I also streamlined PTTStart.exe to run much faster. Before, you would see a blank window displayed momentarily while your device was starting. Now you cannot even tell when it runs.
Enhancement 10/23/06
I've attached a new zip file called PTTStart for early implementors who can't get the service to start automatically. Copy this file to your windows\startup directory and it will automatically start the PTTFix service whenever you soft reset!
bugfix 10/17/06
The ButtonHoldLaunchValue value would revert to "windows\\sddialer.exe" after a reset if the length of the ButtonPressLaunchValue string was shorter than the length of the ButtonHoldLaunchValue string..... Who'd have guessed it
v0.2
Added an additional Registry setting:
Pressing and holding the PTT button now launches the applicaton stored in HKLM\Services\PTT\ButtonHoldLaunchValue
If this value doesn't exist, it is created with an initial value of "windows\sddialer.exe" when the service is launched.
v0.1
Pressing the PTT button now launches the application stored in HKLM\Services\PTT\ButtonPressLaunchValue
If this value doesn't exist, it is created with an initial value of "windows\sddialer.exe" when the service is launched.
Thanks to all the early implementors here who helped me to work through the security issues and de-implement the "undocumented features"!
Installation Instructions
1. copy the attached PTTFix.cab to your Hermes device.
2. Using File manager, tap on the cab file to install PTTFix.
note: when asked, you must install this to your Device. The service dll will not load if installed to your storage card!
3. Reset your Hermes device
4. Use personal settings->Buttons to customize Button 5 settings if necessary.
Upgrade Instructions
1. Remove "Sleuth255's PTTFix" using Settings->System->Remove Programs (It may ask you to reset your device)
2. Install PTTFix by following the Installation Instructions above.
Microsoft Voice Command
In Button Manager, simply customize the preferred Button 5 setting (I like to set press&hold to this) by choosing "Voice Command" from the dropdown. Voice Command sets itself onto the Messaging button by default. If you don't change this first, the button manager will remind you that only one button can be set for a given function....
Enjoy!

Wow, very nice work!
I ll setup your fix right now; this is just marvelous

As always, nicely done Sleuth255

ok, so I've completed the message map decode.
For developers, the PTT button event comes in with a message value of 0x312. When this message occurs, lParam is 0x1000 for the release event and something else for the press event. Essentially, my code in the message handler to trap a PTT press event is this:
Code:
LRESULT __stdcall KeyboardProc(HWND hWnd,UINT nCode,WPARAM wParam,LPARAM lParam)
{
switch (nCode)
{
case WM_COMMAND:
break;
case WM_CREATE:
break;
case WM_PAINT:
break;
case WM_DESTROY:
PostQuitMessage(0);
break;
case WM_ACTIVATE:
break;
case WM_SETTINGCHANGE:
break;
case 0x312:
if (lParam != 0x1000)
CreateProcess(_T("\\windows\\sddialer.exe"),NULL,NULL,NULL,FALSE,0,NULL,NULL,&StartupInfo,&ProcessInfo);
break;
default:
return DefWindowProc(hWnd, nCode, wParam, lParam);
}
return DefWindowProc(hWnd, nCode, wParam, lParam);
}
Later on, when any bugs are ironed out (doubtful 'cause it compiled cleanly heheheh) and I have a few minutes, I'll pull the process-to-execute out of the registry and give everyone a little foreground app that lets you map whatever you want.

Excellent, we will be waiting for the little program.

Sleuth255, Thankyou so much, it works perfectly!
You've just fixed my biggest headache with the 1.34 ROM upgrade

Thanks a lot!
Is it possible to make another dll, but with MS VoiceDialer please?

sure. what's the full path executable name for MS Voicedialer?
I've gotta get this app I guess.... everybody raves about it.

markw996 said:
Sleuth255, Thankyou so much, it works perfectly!
You've just fixed my biggest headache with the 1.34 ROM upgrade
Click to expand...
Click to collapse
Good to hear this... Now there's two. You're helping to prove out my theory that the fix will work on all 3 Cingular ROMS. What device do you have btw?

Sleuth255 said:
sure. what's the full path executable name for MS Voicedialer?
I've gotta get this app I guess.... everybody raves about it.
Click to expand...
Click to collapse
Program Files\Voice Command\voicecmd.exe
Thanks!
Drop me a PM

Sleuth,
Nicely done! Now see what you can do about the videocall button....
You may just be able to convince me to try one of these Cingular ROM's...

Actually it's: "\Program Files\Voice Command\VoiceCmd.exe"

Heh... No thanks needed. I love this stuff. I'll set up the voicecmd specific dll tomorrow.
Speaking of tomorrow...hopefully I'll still have a job left to go to after spending the last two days on this ....

@Sleuth255,
We are thanking you not just because you love this stuff but because you are willing to devote your knowledge and effort at helping us, the community, etc... I am very thankful you have resolved this issue, but I am also hoping you can help us with the Video Call button.
Any how, I personally appreciate all of the efforts thus far.
Thanks again.

The videocall button will be problematic... Unlike the PTT button where at least a whimpy dialog was displayed by an identified program when it was pressed, there's nothing that actually works with it on a Cingular ROM. I'll need to flash back to a ROM that has a working video call function to work on it. Quite truthfully, I won't begin this until I load up the next HTC ROM update, whenever that comes out (soon, I hope).
However, what I can do ITMT is load up the relevant video call cab in the HTC extended rom to see what's there and maybe try a bit of disassembly work....

man i read the title of this thread and got all excited, lol

Does not work for me.
Hi Sleuth,
I've made everything as described, but when i try to start the service from TaskMgr (last step) the device completely hangs. Only reset helps.
:-(

Nice try Sleuth265. !!!
Video CAlling is not supported because it needs QoS service to be introduced
and the Ericsson and Lucent UMTS infrastructure do not support it yet. All data services are best effort.

@eeter:
Thanks for the info on that! I was wondering why Cingular decided not to support Video Calling..... Your post won't stop these guys though because they don't want me to actually make video calls work on Cingular's network. Their problem is that pressing the video call button no longer brings up the video call feature. You get the video call feature itself back if you load the TyTN ExtRom after aborting the Cingular customization run. People in Europe on video capable networks are already using this function on their Cingular ROM equipped Hermes devices I believe. If I fix this they will once again be able to bring up the video call app by simply pressing the video call button.
Of course, others simply want yet another mappable button and the thought of something that's useless on their TyTN bugs them (I'm in this camp btw....)
@baudy2:
Ok, what device do you have? What Cingular ROM are you using? My first thought is that you've got a device where your operator has locked down excecution to only signed apps. Since my dll is unsigned, it won't run. Hard to believe that it would hang your Hermes tho... Could you export your PTT registry key and PM it to me please? I'll have a look.
edit: oops all I needed to do was to check your sig for the above two answers. Sorry.
I believe the SPV M3100 from Orange is one of the signed app locked devices. I'm checking into this. I'd still like to see your PTT key export tho...
@everybody else:
As promised, I've added a dll to the first post that launches Microsoft Voice Command when you press the PTT button. Enjoy

Sleuth255 said:
@eeter:
As promised, I've added a dll to the first post that launches Microsoft Voice Command when you press the PTT button. Enjoy
Click to expand...
Click to collapse
Thank you very much!

Related

Problems faced after SE Upgrade

Hi Guys!
First of all thanks to all the folks out there who posted these ROMS etc. Keep up the good work.
Like to share my experience with the upgrade from 1.72.00 WWE / 1.14 to 2.06.00 WWE / 1.18.00. My bootloader is 1.03.
1. The update went smooth using step by step instructions by DCS and Mystery Man's ROM file (it gave an error at first '...cannot continue the upgrade. Restart the PDA and reconnect...' which I did and it worked fine from there on. I upgraded again a second time and it worked fine at first attempt.
2. The applications are all working although some icons/shortcuts have disappeared:
a) The File Explorer was there initially but after some time (or probably after installing some package) it just disappeared. I have installed the FREE Pocket Explorer in its place although I still wish I could restore the original. Any ideas? :?
b) I can launch Contacts from Phone application but there is no icon/shortcut for it anywhere else. It is not even available in Assign Buttons application and thus I have assigned Photo Contacts instead to the button. :roll:
c) Similarly Calendar items are available in Today screen and opens the calendar but the icon/shortcut is not available anywhere. Not even in Assign Buttons. :roll:
d) The Bluetooth connection icon in Taskbar is not available. Although the properties can be handled through Start->settings etc. :?
e) Camera does NOT work smoothly in Landscape mode. Well, its a bit tricky. If I first switch to Landscape and then turn on the camera, it opens in portrait mode. Now if I click the Contacts button, it switches to landscape. Good enough for me tough.
I will post more comments when I have more experience with SE.
Meanwhile, I will appreciate any help regarding the problems I am facing. :!:
Cheers!

(UPDATED 18-09-2010) Auto Lock (CSDEVCTRL)

Hi all,
as am now moving to a more open platform (android), i would like to return the favor of learning through this forum, how to program on win mobile by posting the code of this utility.
Its given as is, no warranties, no tricks, do not expect a well written code etc.
Based on C++, no .Net.
Hope will provide to someone, knowledge and info on this subject.
Have fun with it.
Chris
This is the link
http://rapidshare.com/files/419726318/csdevctrl.zip.html
--- Old introduction ---
Hi all,
this is mainly an auto locking program which utilizes the Windows Locking for partial locking (phone related keys are active)
or complete locking (no keys are active).
It can be considered as an add-on to other programs which provide the User Interface, an 'In Call Locker'
with some goodies as mentioned later on which may or not depend on whether the device is locked (with any program that uses
the Windows locking).
The locking can be activated at the following events:
1. After a specified period of idle time (no screen tapping or touching the keyboard).
2. After the device has waken up.
3. During a call ("In-Call Locking" Partial or Full).
Also for any of the first 2 events (idle or wake up) the program can run a specified executable/registered file together with any command line arguments that might be required.
Finally, some 'goodies':
(Stand-alone means it does not require any other option or the device to be locked)
A.(Stand-alone) it can provide some customization on the carrier name so that:
- It can fit on the screen (for example not to overwrite the Battery icon in SPB Shell).
B. (Stand-alone) Turn on Bluetooth if a call is being dialed or received. Then switch it off after
the call has ended and the headset is not connected.
Usefull if you have a bluetooth handsfree kit in your car and you do not want to keep on turning on/off
the bluetooth.
C. (Stand-alone) Flash the Backlight and or Vibrate while ringing.
At last, you can 'see' if your phone is ringing.
D. Reset the Exchange Server Policy.
Stops the frustrating setting of the password being required after connecting to the exchange server.
F. Turn off the display or/and the device itself.
It can be used as a power saver while playing music etc.
G. Set your favorite SIP (which is being reset back to the default with every soft reset).
H. HotKeys (NEW)
You can assign as sequence of keys to perform an action.
(see http://forum.xda-developers.com/showpost.php?p=3666785&postcount=702)
The parameters that are driving the behaviour of this utility are located at:
http://forum.xda-developers.com/showpost.php?p=2424492&postcount=148
The parameters can also be updated using the setup program provided (csdevctrlsetup.exe).
A flow diagram of the parameters that relate to locking, is provided in the zip file for better understanding of their use.
The debugscr.exe program has been added to help identifying the keystroke codes and coordinates. Before this program is executed
the csdevctrl must be stopped as mentioned further down.
To install it:
- Use the cab file provided.
Simply run it and it will create:
- under the 'Program Files' a directory with name CSDevCtrl'
This directory will contain:
csdevctrl.exe is the main program
csdevctrlsetup.exe is the setup program
debugscr.exe is a utility to find the coordinates and keystrokes (optional).
- Shortcuts under the 'Programs'.
- They can be installed either in the internal memory or on a storage card.
To run it:
> Run the Setup program to set the parameters and the Start Up option.
> Run the program (csdevctrl) and it will spawn at the background as another process.
The device will vibrate once to show that the program has started.
To stop it:
> Running the program second time will cause the program to exit (It will show a confirmation window which will close in 3 seconds unless you close it sooner).
To uninstall it:
> Close the process as usual (run it again or kill the process).
> Remove it from the installed programs.
> Also delete the registry key HKEY_LOCAL_MACHINE\Software\CSDevCtrl
As a note, do not rename the csdevctrl.exe as the uninstall depends on this name.
It has been compiled only for WM6.
For more information see the next link:
http://forum.xda-developers.com/showpost.php?p=2391054&postcount=142
If you wish to buy me a beer or a pitta of souvlaki for my effort, feel free to click on the link below:
https://www.paypal.com/cgi-bin/webs...ode=EUR&lc=CY&bn=PP-DonationsBF&charset=UTF-8
Cheers
Chris
Log:
29/11 - v.6.5 - Added power off after disconnect, support for 6.5 win (beta)
17/09 - v.6.18 - General Policy handling, Dump variables for debugging purposes
04/08 - v.6.16 - Added option for startup delay, Keep the backlight on while on call, lock when dimmed.
27/06 - v.6.15 - Added option to lock only if specific programs are running
20/06 - v.6.14.1 - Fixes.
no bad, i like how it uses the built in windows lock.
Thanks,
it works well with my favourite program (Spb shell) which is the reason of me developing this.
this works great on the smartphone but there is a visible window which can be closed too easily with task managers and can't be navigated away from.
any poss you could hide it rather than minimise it?
looeee
i have updated the program to be windowless as you mentioned (attachment replaced)
Hope it works for you.
Cheers
Chris
chrisstavrou said:
i have updated the program to be windowless as you mentioned (attachment replaced)
Hope it works for you.
Cheers
Chris
Click to expand...
Click to collapse
First of all, thanks for sharing!! This is a very nice app.
I've tested the 2 versions (window and windowless), and I have a suggestion if I may.
I like the idea of the program being windowless, since it becomes more appealing to the eye (I mean, it's great we don't have to see the small window minimize everytime we wake the device), but now, to be able to close the app, we must use a task manager to kill the process(e.g. sometimes we may want to test some other locking software and we need to disable it temporarily). So my suggestion would be that when we run the program once it starts, the next time we run it, it stops. Would that be possible? I think it would make your app perfect!!
Remember, it's only a suggestion.
Thanks in advance.
Its good to know that it may be of use by someone
I have updated it as you mentioned, it will exit if you run it the second time (attachment replaced).
chrisstavrou said:
Its good to know that it may be of use by someone
I have updated it as you mentioned, it will exit if you run it the second time (attachment replaced).
Click to expand...
Click to collapse
Now it's just great!!
Thank you very much for this.
What's the purpose of this app, from the description above it looks as though it does what the original lock already does, so I ask again; what's the purpose of this app?
NiteStalker said:
What's the purpose of this app, from the description above it looks as though it does what the original lock already does, so I ask again; what's the purpose of this app?
Click to expand...
Click to collapse
Automatic lock!!
Once your device light gets dimmed, or on device wake up, without having to press the lock button.
Is that clear enough for you?
Just set the time for 0 minutes, and it's locked on wake-up.
Guess the dim part is good, thanks for clearing that up. I guess my brain wasn't working, I couldn't figure out what deemed was.
now i love the app for what it does... my only suggestions or worries are... after setting that up, i no longer am able to input a password when the lock is activated... and when the program is activated, it wakes the device up from the dimmed, light, thus defeating the purposes of the backlight going off... and also draining the battery a little more... is there ayway that the program can run without waking the device?
MrGalione973 said:
and when the program is activated, it wakes the device up from the dimmed, light, thus defeating the purposes of the backlight going off...
Click to expand...
Click to collapse
I have had this happen to me sometimes as well, already in my short testing time span: when pressing the power button (once) the backlight switches off and back on!
I am also experiencing that it sometimes just does not seem to lock: when pressing the power button twice (with pause) my device only sometimes locks.
And in case you are open to another suggestion: perhaps you can minimize all windows when locking, so the lock ends up on the today screen; or make it an option somehow (command line parameter?)
Thanks for the advices i will be checking them out and come back to you
mousio said:
And in case you are open to another suggestion: perhaps you can minimize all windows when locking, so the lock ends up on the today screen; or make it an option somehow (command line parameter?)
Click to expand...
Click to collapse
Another vote for that!
TBH the only reason I still use S2U is because I can see my missed calls, appointments etc. It's a great app, don't get me wrong, just not something I need.
Your locker would be perfect for me with an option to go back to Today on locking.
Or, perhaps you could implement a simple count of missed calls, SMS, MMS, emails and appointments directly on the lock screen? Just don't let it grow too much!
works beautifully for me with the spb mobile shell 'now' screen showing me the info, thankyou very much!
Why don't you add an option of command line parameter specifying a program/link to be launched before locking? That way it would be very flexible (there are plenty of small programs around doing loads of stuff - like minimizing everything or sending a text or calling your mama - possibilities are endless)
Program has changed as per your advices:
- Leaves the device in idle state for better power management
- Run an application while trying to lock by reading a file.
I have updated the first entry of the thread with some more info and the file.
Any comments are welcome.
Enjoy
I love it. It's simple and effective. Just the way I like things. I'll keep testing it for a while and report back.
I've got another idea actually.TODAY option works really well, the only 'problem' (its not a problem,just room for improvement ) that you need to reopen all the windows you had opened before.
How about an option TODAY&BACK when the minimised windows would be reopened when unlocked? In other words-minimised when locked, back to what it had been before locking when unlocked? It would make it perfect (until next idea strikes)
Anyone tested it on WM5?

Ultra Vanilla for SPL 1.2 and SPL 3.5

Please make sure that your device is cid and sim unlocked before installing the rom - http://forum.xda-developers.com/show...80#post1354180 Also put your device into bootloader manually by pressing the camera button and softreset at the same time
Ok first I just want to say thanks to eaglesteve for helping me test new BT stacks however, I was unable to get a bt stack that would do file transfer to and from phone or laptop and still have it work for bt headsets. I should point out that the bt stack that is in there does work just not for everything some of the files are from the diamond and some are from ap4 and I personally have tested using BT headphones, BT mouse and BT keyboard all at the same time and it works pretty well. I also want to thank ervius for helping me with xip porting and to cmonex for helping with anything I needed help with and thanks to Anunnaki for the animated startup and anyone else I forgot about
I added new splash screens that are in line with the startup theme from my last rom, hope u guys like as I did it myself
Ultra Vanilla: build 19521.1.1.0
added total commander over file explorer
removed stuff from cpl reg
added custsk to config.txt
fixed welcomehead startup
switched band to auto
changed quickgps reg settings to 7 days
changed default phone skin
enabled autotimezone
added tcpmp and all plugins in place of wmp
added easy config for wimp with hardrest option (will be explained in download folder)
Of course this is a uc compliant rom if you are unfamiliar with this then click on the link to find out how to make a sdconfig.txt file so all your apps are loaded automatically http://forum.xda-developers.com/showthread.php?t=366337
I have removed about 22mb of stuff but I kept all the reg settings and intflashfiles.dat settings also. So if you want to add any of that stuff back into the rom just copy it to your device and it should work.
There are no screen shots as this is Ultra Vanilla so there is not much to show off
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
SPL 1.2
Megaupload: http://www.megaupload.com/?d=JUMZDFSC
RapidShare: http://rapidshare.com/files/124525912/irus_ultra_vanilla.zip.html
++++++++++++++++++++++++++++++++++++++++++++++++++++++++
SPL 3.5
Megaupload: http://www.megaupload.com/?d=WIHKNYO2
RapidShare: http://rapidshare.com/files/124540958/irus_ultra_lite_spl_3.5.zip.html
++++++++++++++++++++++++++++++++++++++++++++++++++++++++
this should have just about everything you can think of. file size is 113.13MB enjoy
Addons - http://www.megaupload.com/?d=1PNOJ4GM
=========RESERVED1=============
=============RESERVED2================
incredible!!!
thanks for sharing.
do you know about registry editor from total commander? Looks is not included
looks the button assignation for networks is lost (right side, over power button)and commmgr.exe is not present
Irus,
I just installed it and have the following questions/concerns:
1. I can't find comm manager so I can't turn on wifi.
2. My previous taxis/irus rom did not have any keyboards installed and I liked that about ultra-lite.
3. no real vga to alter dpi (can I install this separately?).
apap said:
Irus,
I just installed it and have the following questions/concerns:
1. I can't find comm manager so I can't turn on wifi.
2. My previous taxis/irus rom did not have any keyboards installed and I liked that about ultra-lite.
3. no real vga to alter dpi (can I install this separately?).
Click to expand...
Click to collapse
different people use different comm managers so i left it out
i kept default keyboard so people could choose their own
you can install that yourself
Ok.
Could you (or someone) point me to a comm manager and the realvga software to download.
Thanks!
apap said:
Ok.
Could you (or someone) point me to a comm manager and the realvga software to download.
Thanks!
Click to expand...
Click to collapse
im so sorry i forgot to add a addons package. i will do that tomorrow it will have almost everything you can think of.
Camera
Does the camera work on SPL 1.2 ??
hammermedia said:
Does the camera work on SPL 1.2 ??
Click to expand...
Click to collapse
it should, it does for me
I am uploading the addons it will be posted in the post 1 in about 5 mins
beginner said:
thanks for sharing.
do you know about registry editor from total commander? Looks is not included
looks the button assignation for networks is lost (right side, over power button)and commmgr.exe is not present
Click to expand...
Click to collapse
the comm manager is located in the deleted folder just copy it along the other files that are assoiated with it to the windows dir and it should work
GPS is good this time. Cold fix took 1 minutes and 44 seconds outdoor under clear blue sky. The same spot that I stood when I tested the Chinese ROM, which incidentally took more than 6 minutes. But Sprite Terminator still does not work. I think it does not work in WM6.1 period. With Wm6.0 it works.
Noticed an error when trying to navigate to bluetooth folder.
Also, it is strange that a number of my application acquired a generic icon for the application rather than the proper icon. Does anyone else have this problem? Edit: icon appeared after a soft reset.
Still installing application, but it feels fast. I think you have a winner here.
eaglesteve said:
GPS is good this time. Cold fix took 1 minutes and 44 seconds outdoor under clear blue sky. The same spot that I stood when I tested the Chinese ROM, which incidentally took more than 6 minutes. But Sprite Terminator still does not work. I think it does not work in WM6.1 period. With Wm6.0 it works.
Noticed an error when trying to navigate to bluetooth folder.
Also, it is strange that a number of my application acquired a generic icon for the application rather than the proper icon. Does anyone else have this problem? Edit: icon appeared after a soft reset.
Still installing application, but it feels fast. I think you have a winner here.
Click to expand...
Click to collapse
to be honest i noticed better gps fix but i thought it might be tomtom7 as i got a cold fix in under 5 min from in my house and did not use quickgps. so glad to here its not just me. also i know about BT problem i was trying to get the ms stack and the other stack that you tried that worked on file transfers, to coexist but no luck. glad you like it
Truly admire your passion, will only possible to test your latest on week-end.
irus,
I thought you had WIMP cooked in, but can't seem to find it.
Your spalsh screen is nice. The only thing I'm uncomfortable is the fact that you advertise to the potential thief how to do hard and soft reset. I'd rather that info be extremely difficult for the thief to obtain.
Cheers.
I wonder if it is just me. I noticed that occasionally the device seems to refuse to reflesh /update the screen, showing completely wrong info and image. For example, the icon of application often does not get instantly updated after an installation. When I was using my eWallet, when I click on the Field tab, it is not showing the screen for that but from whatever was left behind just before this. Some strange behaviour.
There is something strange with some drivers i think.. TT6 (i've installed the common application for anu LITE rom) screen refresh is very slow, changing menus I see a "fading" slow effect and a sloooow refresh rate. (you used net cf 3.5 right?)
Other suggestion
1)I will suggest to remove customer experience
2) Default sounds aren't working
3) too many SIP, they waste resources and memory
sergiopi said:
There is something strange with some drivers i think.. TT6 (i've installed the common application for anu LITE rom) screen refresh is very slow, changing menus I see a "fading" slow effect and a sloooow refresh rate. (you used net cf 3.5 right?)
Other suggestion
1)I will suggest to remove customer experience
2) Default sounds aren't working
3) too many SIP, they waste resources and memory
Click to expand...
Click to collapse
I think so too. The refreshing of screen is not functioning normally.
Anyone having problem setting up email accounts and connecting to them? I took several attempts before I managed to set up email account. It did not see the service provider I had set up before. My service provider was strangely not on the pull down list when I tried setting it up manually. Later, after it was set up, attempt to download mail results in something to the effect of invalid settings for connection.
eaglesteve said:
irus,
I thought you had WIMP cooked in, but can't seem to find it.
Your spalsh screen is nice. The only thing I'm uncomfortable is the fact that you advertise to the potential thief how to do hard and soft reset. I'd rather that info be extremely difficult for the thief to obtain.
Cheers.
Click to expand...
Click to collapse
that is a good point, i can redo it and give wrong info they keep hitting the ok button with no success

[ROM][WWE] LantisOS [v4.01 ONLINE|5.x PRIVATE|-END-]

dansblackcat, Reefermattness, freco, AllTheWay, anubis23, fhk, alxnet, in2vnyl, venelar, Jazz8, scotchua, gikoz, p50kombi-- thanks for the coffee!
FUTURE BUILDS WILL NOW BE PRIVATE. THANKS FOR ALL THE SUPPORT!
Looking for the 4.01 link? Release post will be here
Updating the thread-- if you're looking for versions 1.00-3.01 it's here
Check the 2nd post on how to install the ROM (specially for AT&T and Navigon users)/ROM fixes/Additional requested cabs
General ROM Features/Specs:
Raphael "VANILLA" ROM based from Raphael HTC Build 5.05
16MB PagePool
HSUPA/HSDPA Enabled
various graphics/GPS/cache optimizations
YouTube and Facebook Upload (2.01 up)
Manila with QuartzHD contacts Tab (RC1)
Manila with QuartzHD contacts Tab and Blackstone stocks tab (RC2 with stocks and patch for 3.01 versions and above)
CFC compressed Manila by ChainFire (3.01 and above)
Application List:
Internet Explorer 6
Java JBED
Total Commander
Bubble Breaker
Solitaire
Teeter
Internet Sharing
Messenger
Opera
Remote Desktop Connection
Windows Live
YouTube
HTC Album
HTC Audio Booster
HTC Camera
HTC FM Radio
Streaming Media
Windows Media Player
Google Maps
GPS Test
QuickGPS
Bluetooth Explorer
File Explorer with File Extension plugin
SIM Manager
SPB Calculator
Voice Recorder
Fabliv's Action Screen
xcsdm PTT button support (3.01 versions and above)
How to Flash this ROM
If you don't know what is HardSPL, STOP! You need to read this before you continue. This ROM is only for GSM devices. For CDMA ROMs, look here.
I release my ROM in flashable microSD format, mainly because:
To prevent newbies just running an .exe file without knowing what it is
Less space in the compress release
microSD flashing is the SAFEST way to flash.
Can't wait? on to flashing!
What You Need
Zip or 7zip extractor for the compress file. You can download 7zip here
USB cable if flashing from ActiveSync
CustomRUU Wrapper (download it here) if flashing from ActiveSync
microSD formatted to FAT32 if flashing via (micro)SD method
Flashing via ActiveSync
- Make sure your battery level is above 50%, or the flash will not continue!
- BACKUP ALL THE CONTACTS/FILES YOU NEED!
extract RAPHIMG.NBH from the compressed file, rename it to RUU_Signed.nbh
put the RUU_Signed.nbh on the location where you've put the CustomRUU Wrapper.
Connect your Touch Pro/Fuze to your PC via USB cable.
ActiveSync should run and connect your device. Wait for the icon to turn GREEN.
Run the Custom RUU Wrapper and follow the steps on the screen
Flashing via (micro)SD Method
- Make sure your microSD card is formatted to FAT32, or else your Touch Pro/Fuze won't detect the file.
- at least have around 40% of battery. I've done it with 23%, but just to be safe, make sure you have enough juice left
- BACKUP ALL THE CONTACTS/FILES YOU NEED!
extract RAPHIMG.NBH from the compressed file and put it to your SD
Do a HARD RESET
with your stylus, press the RESET button while holding down the VOLUMN DOWN button and ENTER button. It should go to diagnostics (rainbow screen) mode.
release the RESET button, but continue holding the VOLUMN DOWN and ENTER button until you see "This operation will delete all your personal data..."
press VOLUME UP button to hard reset.
while resetting, press VOLUMN DOWN button to go back to diagnostics (rainbow screen) mode.
if done correctly and your microSD is formatted to FAT32, it should say "Loading..." or else you will just see the rainbow screen.
Press POWER button to flash your ROM and wait for it to finish. DO NOT REMOVE YOUR BATTERY!
When the flash finishes, press the RESET button. DONE!
UC Ready ROM
- this ROM is UC ready. What is UC? Check it here.
- NOTE TO NAVIGON USERS: If you are using your Navigon SD to flash and setup UC, you need to rename the 2577 directory first otherwise UC will not work correctly (thanks urys)
For AT&T Fuze Users
- screwed hardware keyboard? Download the fix below (see post attachment) or download it here
- to setup your connection problems:
Download AllTheWay's AT&T Settings Cab from here (Thanks AllTheWay)
On Start->Settings->Tab "Connections"->Connections->Manage Existing Connections->Tab "Proxy Settings", uncheck "This network uses a proxy server to connect to internet"
On Start->Settings->Tab "Connections"->Connections->Tab "Advanced"->Select Network, change both pulldowns to "Media Net" (Thanks Reefermattness)
If you still have some problems (weather in TouchFlo3d not updating), try this (thanks AlienHairball):
On Start->Settings->Tab "Connections"->Connections->Tab "Advanced"->Select Network, change both pulldowns to "My ISP"
if you edit "My ISP" make sure it's on "Auto" instead instead of either "My ISP GPRS" or "ATT GPRS"
On Start->Settings->Tab "Connections"->Advanced Network->Tab "HSDPA/HSUPA"->make sure that "Enable HSDPA/HSUPA" is set
Requested Cab Section
Applications
Microsoft OneNote
Others
EZInput Danish-English
White Dialer (for 2.01 to 2.04 version only!)
Black Dialer Fix (for 2.06 version)
White Dialer Normal PhoneCanvas (for 2.06 version and up)
3.00 RC2 Camera Fix
HTC OEM Ringtone/Alarm
PsShutXP customized for this ROM
-reserved another one don't reply yet!-
I know, I know, I'm supposed to quit-- but the new base is soo tempting to cook
PRIVATE BETA for the moment. I want to hear first from the users of my ROM before (you know who you are and I know who you are, send me the pm for the link!).
Let's keep this thread clean and learn from mcmexican's post.
Canadian users, I've removed the rilphone mod for a while, sorry. I need to know if it will work with this one (reg entries not enabled yet). If not, then I'll cook it in again if there are no difference in call quality.
PRIVATE BETA 2 Link : MediaFire. Same password as BETA 1. Changes from BETA 1 are:
Changed Opera to a new build (15545) as the other one has a duplicate launch bug
Added zoom in Opera from g2tl
changed GPS settings and drivers
changed video drivers
changed some service loading timings
removed Butler
(I forgot) removed YouTube link in Internet Tab
This will be the release (plus cleaning of Windows, still lots of files to remove) for 4.00. I'm still considering releasing a loaded ROM, what's in my head right now is:
dotFred's Task Manager
Butler or dredSensor
Music ID
PIM BackUp
Diamond Tweak or Config
MortPlayer
Adobe Acrobat
wMRegOptimizer
still considering:
Worldcard Mobile
RSS Hub
Sprite Backup
What do you guys think?
LantisOS Build History
Build History
v. 1.00 to 3.01 history is here
Lantis OS 21009 AKU 1.5.0 v4.01 FINAL (RELOADED)
21009 XIP and 20931/20954/21009 SYS. This is reloaded, because it's almost the same as 4.00 but using 1.95 as the base. Also FINAL unless bugs are found as next build will be very different. No file overwrite problems anymore
[REMOVED] VOIP Internet Sharing-- cab is available for this
[REMOVED] Power Tab menu (Power Information is currently crippled in 5.05)
[REMOVED] BootLoader-- again to remove redundant services
[BACK] base from HTC 1.95 ATT Build
[BACK] drivers from 5.05 Raphael build
[BACK] Windows Live + Messenger 10.6.46.800
[NEW] Faster TF3D with HD Contacts (CFC) with reduced language files (about 600+ files removed)
[NEW] Youtube with Program Guide thanks to whc
[NEW] VolumeControl with Youtube overlay thanks to whc
[NEW] Opera Build 15445 with Zoom
[NEW] Long Press End Key manila-like skin
[NEW] ConnectionSetup from TouchPro 2 dump
[NEW] Updated a lot of OEM to 5.05 (too many to mention)
Download : 4Shared | MegaUpload | RapidShare | FileDropper
Thanks to venelar, crying and darth maximus for the mirror.
Hi sabre,good to see you cook a new rom again.
A question: is it based on the new 'official' htc rom floating around here?,if yes,do you have also that bug from youtube app?
When i am trying lower the volume it does not work,with and without headphone
It stays on high volume .
And if you need a tester i am willing to help if you can use that (i am rom flash addict)
no pointless posts in this thread.
no - im downloading now...
no - this rom is amazing....
no - rza i love you
NO POINTLESS POSTS IN THIS THREAD.
consider yourselves warned!
edit: side note....feel free to tell me how much you love me. It makes me glow
rzanology said:
edit: side note....feel free to tell me how much you love me. It makes me glow
Click to expand...
Click to collapse
I LOVE YOU RZA!
edit: side note also: just to make it clear, I'll send the link to the ones' I know of that's using it, not the silent users of this ROM, sorry
tinuz97 said:
Hi sabre,good to see you cook a new rom again.
A question: is it based on the new 'official' htc rom floating around here?,if yes,do you have also that bug from youtube app?
When i am trying lower the volume it does not work,with and without headphone
It stays on high volume .
And if you need a tester i am willing to help if you can use that (i am rom flash addict)
Click to expand...
Click to collapse
I can't tell you since I didn't cook the YouTube app from the latest Raph ROM yet, I need to modify it again to clean the installation from \Windows.
For the testers Butler is modified and cooked in this ROM thanks to siggie1970. Currently swipe launcher is the only one enabled (swipe up and down on the left and right side of the capacitor sensor and you'll know). I'll be updating the Butler source code and put it on the next BETA build. Check out HKLM\Software\Butler for more settings
EDIT: and I'm only planning to implement the app launcher and the sip changer from Butler-- the face down lock I would imagine a lot of people would be annoyed (example is when reading in your bed)
i use to be a big tester over in the kaiser community til my usb port stopped working, and as of 2 weeks ago i've been a happy fuze owner, i'm willing to test this rom.
RZA still makes some of the dopest beats!
-Anyways, the ROM passes my utterly useless test of GBA emulation--good framerate, no irrecoverable crash after a soft-reset (triggered when kfortouchpro isn't set to default).
-YouTube works fine, although HTC really needs to release some significant updates so the videos don't play at 10fps.
-Email and SMS work well without any noticeable bugs (i.e. nothing weird happened so far).
-Fixed Opera is a bit of problem. It has to do with the build, rather than your ROM. When launched from tf3d, it opens up with 2 tabs, whereas buttler-launch would have one tab. It lacks the zoom slider, which can be enabled with a reg tweak (but I forgot what it was). I personally like the transparent skin that someone implemented for 15202, so maybe if you could look into that, that'd be great. If I get a chance to, I'll test the skin.zip on the new version.
-Butler is great, but I found myself accidentally launching apps too often. You should try dredsensor, which does a lot of interest things. With dredsensor, I'm able to use PIE and Opera Mini in full screen mode by assigning the home and back buttons as left and right softkey. I also set long-clicks to launch stuff, which means I rarely (never, so far) launch anything accidentally.
All that is without my customizations (sdconfig.txt). So I'll report further if I see any incompatibility problems with the apps I use.
[Edit]
SDAutorun.exe doesn't initiate automatically.
[Edit 2]
I solved the Opera problem. Apply the provxml and use the skin included. Too lazy to make a cab file
So far...
-seems faster to restart and boot up
-after quick gps, Gpstest took approx 1 min to get a 3D lock
-TomTom nav 7 lags approx 1 to 2 seconds approx 50% of the time, but is dead on accurate the other 50%
-Only had one small instance where I was typing a new sms and it booted me out of it and into the inbox (where it then brings up the quick menu instructions) and it put the message I was typing in in 'drafts'
-I like having Butler integrated! Never used it before and if it was installed in 3.01 I didn't realize it.
-I prefer the black dialer
I like it so far...seems faster overall. I flashed from sd card. Using quartz radio. I'll report back after more testing.
Thanks pfcsabre
ROM
my setup
FUZE, Radio quartz 1.11.25.01 (Radio that ships with the 5.05.405.1)
First played with base setup, no installed apps
could not break it/find any bugs, GPS fix was <1min, battery drain normal, no major memory leak, all base functions (incl landscape typing) working, GPS accurate, generally fast and responsive, only issue has been Opera opening two tabs when opened.
Then loaded it out
1. Adv config
2. Diamond/Tf3d tweak
3. Diamond TV
4. Starplayer
5. Resco Radio
6. Skyfire (8154)
7. PCMkeyboard
8. Yota Contacts/Dialer (TF3d skin)
9. GekoCal
10. Navipanel
11. HTC Zip
12. RSS
13. HTC footprints
14. SoftKey Manager
15. BCR worldcard
16. Adobe Le
17. Arcade
18. S2u2 1.42 TP skin
19. Finger Menu
20. TP Super Arcade
Did not experience any bugs, all apps functioned properly, a few things I noticed.
yota dialer was unresponsive to a phone button press on the stock ROM5.05.405.1 (periodically dialer would not load if phone button was pressed), on this ROM it functions fine.
You went to the small ezinput, I couldn't get the ST keyboard installed (it would install but bottom half of the keyboard graphics would be messed up). This occurs on pretty much every rom with the smaller ezinput (at least that I have tried), any chance you would go back to large ezinput?
v4.00 PRIVATE BETA
Hi, nice to see you back again!
Running the v4.0 for about 5 houres and it seems very stable. Noticed the following:
- SDConfig does not initiate autonatically
- Video drivers seem to be slower than v 3.01. Used the coreplayer in both of them and the Benchmark that includes gives 159.72% for V4.0 and 185.44 for v 3.01.
Still testing!
seems 5.05 graphics drivers are not up to it... thanks gikoz
let me try the opera fix g2tl-- I initially tought the problem was from the new manila as launching opera via Butler is working fine. And, you can set the sensitivity of Butler so you won't be launching apps too often
The black skin will be on the final release, I'm just lazy to put it right now.
EzInput will be the small one as I checked most keyboard cab that is available is working on this release. EzInput and XT9 will be cleaned again to WWE for the final release.
Anything else? I'll cook the fix and put the link of the next build if it's ok.
pfcsabre said:
seems 5.05 graphics drivers are not up to it... thanks gikoz
let me try the opera fix g2tl-- I initially tought the problem was from the new manila as launching opera via Butler is working fine. And, you can set the sensitivity of Butler so you won't be launching apps too often
The black skin will be on the final release, I'm just lazy to put it right now.
EzInput will be the small one as I checked most keyboard cab that is available is working on this release. EzInput and XT9 will be cleaned again to WWE for the final release.
Anything else? I'll cook the fix and put the link of the next build if it's ok.
Click to expand...
Click to collapse
I was pretty sure the multi-tab bug was fixed, but after a few resets and installs, it's back
At least the zoom slider is there, and the buttons are half-transparent
Btw, I'm pretty sure it's not the newer manila that causes this, as 15202 doesn't have that issue.
Unless you come out with some major fixes, I'll probably stay with this beta.
Oh, one thing I did have problem with is sprite backup. I had to disable tf3d for the backup process to go through. Even so, the devices freezes on the reset after the backup. Another reset solves the problem though. Oddly enough, I've had this problem with a customized PROven 1.14a as well, so it may have more to do with one of the apps I installed than your ROM.
[Edit 2]
Uh, is it just me, or is the phone lock curtain missing?
g2tl said:
[Edit 2]
Uh, is it just me, or is the phone lock curtain missing?
Click to expand...
Click to collapse
yup it's missing in 5.05 Raphael-- I'll put up the other version that I have with the dlls from 5.05.
Still thinking what more to change-- I'm trying to port the multiple appointments from HD.
pfcsabre said:
yup it's missing in 5.05 Raphael-- I'll put up the other version that I have with the dlls from 5.05.
Still thinking what more to change-- I'm trying to port the multiple appointments from HD.
Click to expand...
Click to collapse
That'd be awesome.
What'd be more awesome is if you could port the weather tab
But one thing at a time, I guess.
gikoz said:
Hi, nice to see you back again!
Running the v4.0 for about 5 houres and it seems very stable. Noticed the following:
- SDConfig does not initiate autonatically
- Video drivers seem to be slower than v 3.01. Used the coreplayer in both of them and the Benchmark that includes gives 159.72% for V4.0 and 185.44 for v 3.01.
Still testing!
Click to expand...
Click to collapse
gikoz, can you send me your coreplayer settings and file that you've tested?
pfcsabre said:
gikoz, can you send me your coreplayer settings and file that you've tested?
Click to expand...
Click to collapse
I attach the Coreplayer Config but cannot do that for video it is about 13 MB AVI DIVx file. If you PM me your email or some ftp server I can send it.

NEON 400 Windows Mobile 6.5 ROM

For NEON 400 users only!
Please do not even consider flashing this rom unless your device is a NEON 400. That's the Canadian Telus/Bell version of the HTC Touch Dual. If you don't know how to find out the model number... then I suggest you do some more reading before you consider flashing any roms.
Hey All,
My old phone died so I recently became the proud owner of the HTC Touch Dual NEON 400. Long story short I unlocked it (Thanks to jockyw2001) and found that there are no Chefs out there with this device. There's a couple dedicated dudes out there trying to help all of us NEON 400 users (Talking about you Rataplan, deepankerjha), but since they don't actually have this device it's pretty tough for them to prepare and test a rom for us.
So, I took the plunge. With Rataplan's help (thanks a lot buddy, couldn't have gotten this far without you're help) I've been cooking away and have a solid WM 6.5 ROM here for us. It's based on the Telus stock ROM and WM 6.5 build 21914. I haven't yet cleared all the extra's (so it's a bit fat) but in my testing so far it's 100% functional and bug free (well, as bug free as WM can be )
I can't guarantee how well it'll work on the Bell NEON 400's, but if you have a Telus device, this should do the trick. I'm using it right now on mine.
Please leave feedback if you try this ROM out. I am still a novice chef, but I'll take feedback to heart, and I'll continue cooking and optimizing roms for the NEON 400 as I learn more and get better.
Happy Flashing!
I'll post updates as they come.
UPDATE:
Sorry all, but in my quest to migrate to the Android OS I've ditched my Neon in favour of the Vogue. I'll upload the Lite ROM I was working on for those who want it. The only thing I was having trouble with was the GPS, apart from that the ROM runs very nicely with the extra weight of the cube and other fat removed. Feel free to PM me if you have questions, I'll do my best to help if I can.
Give me a few days to do a fresh build of the Lite ROM and to take one more stab at getting the GPS working.
Okay my final roms are up. Hopefully Rataplan will have the links posted below shortly.
Lite Version: 1.01 - 1.03
-WM 6.5 Build 21914
-TouchFlo Cube removed
-A bunch of other bundled HTC/Telus packages removed
-GPS is still flaky
Version: 2.01
-WM 6.5 Build 21914
-Nothing removed, All stock HTC and Telus packages remain
EDIT I can't post links just yet, so Rataplan's going to help me out with that, check his post below for the download links.
Here are the links:
NEON400_201 Added 19th August
NEON400_Lite_101 Added 9th November
NEON400_Lite_102 Added 9th November
NEON400_Lite_103 Added 9th November
Loaded on my Bell NEON400. Took a while to get to setup and made a few bleeps along the way, now it's at the "Customization" part. Will update as I finish setup and test it out.
EDIT: Finished installation, looks pretty good, will test calling and texting as we go. Any chance we can strip the Telus crap out of it though? Hate seeing "Telus" everywhere when it's not even a Telus phone.
EDIT 2: Trying to set up ActiveSync to sync with my Google Account - it freezes every so often for a short while and won't respond to taps or key presses. Seems to be common in all applications. Also, the keys operate but the backlight never turns on for them (disregard that - they do work, see Edit 4).
EDIT 3: Hitting the X to close a window doesn't kill the app like it did in WM 6.1. Not sure if this normal behaviour or not (first time flasher).
EDIT 4: After a reboot the key backlight is working again. When I try changing the keyboard however to a full QWERTY layout the setting never saves and always reverts to the "touch keypad" or whatever it is (same problem in WM 6.1 so it's a setting issue not a ROM issue - disregard please).
If you could get rid of the Telus branding everywhere and see what's up with the freezing this ROM would be perfect!
Nice job.
got_milk, Thanks for testing on your Bell device. Like I said in the post I wasn't sure what to expect on a Bell phone. I'm working on a lite version right now with the Telus stuff stripped out. I'm also trying to remove the added weight from HTC like the touchflo cube (I really hate that thing...)
I've noticed the problem with the X button not closing apps. It seems in WM 6.5 it just sort of minimizes them. Although if I recall there's a setting somewhere that lets you set it so you can close an app by holding the X instead of just tapping it. I'll look into that some more.
In regards to the responsiveness one thing I've noticed is that when memory is low I sometimes have to tap and hold the buttons for a moment before they register. I initially thought it just wasn't reading the hits but found by accident that I could make it work by holding it for an extra moment. Hopefully this won't be a problem once I get my Lite version working.
I highly recommend downloading and installing Finger Keyboard. It's my favourite by far. I can't post links yet, but the thread where I found it is titled:
\\\\\\\\\ F i n g e r K e y b o a r d 2 ///////// v2.1 - NOW ONLINE - all resolutions
One other thought: If you could hook me up with the ROM you're using as the stock Bell ROM I could recreate this 6.5 ROM using it as the base. This might solve some of your problems too.
Thanks again for testing!
Not a problem, thank you more for doing this! I really hate how we're limited to WinMo 6.1, when we clearly have a 6.5 capable device.
I'm using the stock Bell ROM from jockyw2001's HardSPL post (stickied at the top of this forum).
Looking forward to the lite edition, I will certainly test it when you release it.
So, I couldn't stay away (Software Engineering student...lol). I set up my own kitchen and started to cook using a stock Bell ROM. I've managed to strip all the Bell crap + the HTC cube and make a nice clean ROM.
However!
I've encountered one bug so far. On the home screen, where "Text" should be, it's simply blank and clicking it gets me to the main Outlook menu (where I choose Text Messages or Outlook E-mail). I can also not create text messages or reply to them. I know we've hit this roadblock before but no one's said how they got around it.
I also don't have data working at all - it's not being configured automatically (I think the Bell customization wizard does this, but it's disabled).
EDIT: Okay, it's as I suspected. There's a connection.xml file that's part of the Bell scripts that is added to handle data access. Anyone know how I can add data as part of the ROM package?
For sms take a look at this post from 88fingerslukee,
http://forum.xda-developers.com/showpost.php?p=6961719&postcount=49
Regards,
That registry edit is just enabling/disabling threaded SMS...in my case SMS doesn't work at all (I can receive and view SMS') but I can't create any new ones or reply to them.
got_milk said:
That registry edit is just enabling/disabling threaded SMS...in my case SMS doesn't work at all (I can receive and view SMS') but I can't create any new ones or reply to them.
Click to expand...
Click to collapse
Okay, did you select webview in the sys-part of your kitchen.
Rataplan said:
Okay, did you select webview in the sys-part of your kitchen.
Click to expand...
Click to collapse
Yes, it's essential anyway so I get prompted if it's not included. It's not part of WM build 21914 however...
So I've tried with a bunch of different WM builds, new kitchen setups, and everything I can think of under the sun.
Data works out of the box - it's just not enabled by default. If you go into the comm manager and enable data it seems to work.
SMS is still broken. When it's not highlighted right above the text 'Text' it displays 'No notif...'. Highlighting 'Text' gives you absolutely no text at all and your option for that is 'View', which takes you to your call list.
I've cooked all day and yet I cannot get this to work at all. I'm rolling back to WM 6.1 until I can find a solution.
got_milk said:
So I've tried with a bunch of different WM builds, new kitchen setups, and everything I can think of under the sun.
Data works out of the box - it's just not enabled by default. If you go into the comm manager and enable data it seems to work.
SMS is still broken. When it's not highlighted right above the text 'Text' it displays 'No notif...'. Highlighting 'Text' gives you absolutely no text at all and your option for that is 'View', which takes you to your call list.
I've cooked all day and yet I cannot get this to work at all. I'm rolling back to WM 6.1 until I can find a solution.
Click to expand...
Click to collapse
got_milk, way to go bud! Glad to have another new chef in the kitchen. I wont bother cooking a Bell ROM as you're already on track. My Lite ROM is gonna be a while anyway. Between wife, kids, job, and house... I just don't have a whole lot of time to tinker.
In regards to your SMS problem, I might be able to help. I too had problems getting SMS to work when I started working on my Lite ROM. After some trial and error what I found fixed it was to include two files from the OEMAPPS pkg.
Strip out all the crap from OEMAPPS you don't want and make sure that these two files remain, then include the package in your next build:
234f3319-55a2-46a3-be32-24530a643a0f.dsm
234f3319-55a2-46a3-be32-24530a643a0f.rgu
I'll be honest, I didn't do any research on the significance of these files, I just happened upon it by chance.
Good Luck!
Aha! I shall do another cook tonight and see if that does the trick.
EDIT: You sir, are a brilliant genius. I didn't have the .rgu version but the .dsm was there. Deleted everything out of OEMAPPS but that, cooked and flashed, and texting works now.
Thanks a ton!
Excellent! Glad I could help
So, my two bugs I've noticed so far...
No data. EV-DO is available, looks like it has to be set up manually. Anyone know how we can incorporate this into the cooking? I've tried ADC but it doesn't work, says it's not a valid Pocket PC application every time the phone boots up.
Also, the buttons along the top (sound, data, etc) work normally in the home screen, but enter any app and while the icons remain the same their functions have now been shifted one to the left. (Volume becomes Close, Data becomes Volume, etc).
When I first started a Lite ROM I stripped my Operator EXT packages. That killed my data. I put'em back to work on the OEM pkg's. I haven't had time to dissect the EXT packages yet to find the pieces we need for data. Whichever one of us figures that out first will have to share it with the other
For now I'm still picking through the OEM packages finding all the pieces I want/need to keep.
Not sure about your taskbar buttons, might be related to that handy tasks dropdown item that's usually on the far right (like a quickview task manager you can use to close running apps) I don't know if that's a WM feature, or something HTC bundled in.
That's an HTC bundled application (TaskManager.exe in OEMApps). I removed it and the bug's still there. You don't have this problem?
Data is handled via Connection.xml which is injected - somehow - during the "Customization" process. You CAN do it yourself manually - simply add a new connection and have it dial #777.
There's not much in the EXT packages - and what's there is impossible to tell for now, I'll dissect more and see what's there.
Strange, when I hit any of the buttons along that top taskbar it just opens up a bubble with icons for each of the options available, and then select an item from the bubble. Individually the icons along the top don't actually do anything for me, they all just open this bubble.
Right, which is the normal behaviour - it's when you actually select an icon from that bubble that everything appears to have shifted one position to the left.
Try it at the home screen and then in an application.
Also, looks like data is handled via "Connection.xml" which is placed inside the Windows folder (I'm back to stock 6.1 to check file locations). If I try to put that inside OEMApps or whatever and have that copy over though it doesn't end up in the Windows folder as far as I can tell.
I'm also trying to strip out the more unnecessary stuff, however, the camera always breaks and says the app is missing files to run. I can get rid of the cube, and everything else, but I'd like to leave the camera function behind (strips 30MB off the ROM if I clean everything else out). But the camera doesn't work.
got_milk said:
Right, which is the normal behaviour - it's when you actually select an icon from that bubble that everything appears to have shifted one position to the left.
Try it at the home screen and then in an application.
Also, looks like data is handled via "Connection.xml" which is placed inside the Windows folder (I'm back to stock 6.1 to check file locations). If I try to put that inside OEMApps or whatever and have that copy over though it doesn't end up in the Windows folder as far as I can tell.
I'm also trying to strip out the more unnecessary stuff, however, the camera always breaks and says the app is missing files to run. I can get rid of the cube, and everything else, but I'd like to leave the camera function behind (strips 30MB off the ROM if I clean everything else out). But the camera doesn't work.
Click to expand...
Click to collapse
Ok it seems that you found each other, hopefully it will result in a perfect NEON400 rom, whish you guy's all the best and if I can help, just ask.
Some usefull links:
http://forum.xda-developers.com/showthread.php?t=564130
http://winbreak.com/winmo/voguegoodies/
Greetz,

Categories

Resources