PPCGeeks Forums HTC Arrive HTC HD2 HTC Thunderbolt HTC Touch Pro 2 HTC Evo 4G HTC Evo 3D Samsung Galaxy S II Motorola Droid X Apple iPhone Blackberry
Go Back   PPCGeeks > Windows Mobile > WM HTC Devices > HTC Touch Pro 2 > CDMA TP2 Development
Register Community Search

Notices


Reply
 
LinkBack Thread Tools Display Modes
  #3781 (permalink)  
Old 08-27-2010, 02:15 AM
raiderfan247365's Avatar
Halfway to VIP Status
Offline
Pocket PC: HTC HD7
Carrier: T-Mobile
Location: portland, or
 
Join Date: May 2009
Posts: 554
Reputation: 1155
raiderfan247365 is halfway to VIP status based on repraiderfan247365 is halfway to VIP status based on repraiderfan247365 is halfway to VIP status based on repraiderfan247365 is halfway to VIP status based on repraiderfan247365 is halfway to VIP status based on repraiderfan247365 is halfway to VIP status based on repraiderfan247365 is halfway to VIP status based on repraiderfan247365 is halfway to VIP status based on repraiderfan247365 is halfway to VIP status based on rep
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: SharkieROM Hybrid

Quote:
Originally Posted by Sharkie405 View Post
Just wanted to put this out there...
This is what I've come up with as far as a 2018 hybrid build with what I believe, at the moment, to be the best mix:

Code:
 Manila_Calendar_2_5_20183014_0
 Manila_Core_2_5_20183025_0
 Manila_Home_2_5_20182825_0
 Manila_Internet_2_5_20182614_0
 Manila_Mail_2_5_20163325_0
 Manila_Message_2_5_20182914_0
 Manila_Music_2_5_20173722_0
 Manila_Photo_2_5_20182926_0
 Manila_Settings_2_5_20181926_0
 Manila_Weather_2_5_20183027_0
 Sharkie405s_Manila People 2.5.2016.1612
 Sharkie405s_Manila_Stock_2.5.2016.1214
 Sharkie405s_Manila_Twitter_2.5.2011.3227
 StartIconLoader_2_5_20162124_0
Along with programatix mwalt2 2018 RSSHub Fixes.

So far my only bugs are not being able to get the RSS feed to come through on the home page. It just shows the "Welcome to the news service..." message on the RSS link.

And I'm using Album 2018 so no facebook interaction at all through album.

I'm also having the same issue I had when I first started messing with 2016 where my home wallpaper won't change because it's not opening up Album, it's opening up the WM picture viewer. I know I fixed that last time and the answer is in this thread somewhere...

Edit: Fixed the wallpaper issue.


Aside from that though, the ROM is fast and smooth and all the 2018 tabs I have seem to be working as they should. Landscape is also fine across the board. I've dug in the menus of them all the tinkered about and all seems good.

Oh, and Kimi's messaging mod works great with Messaging 2018 as well!
I am in the same boat as you... Everything seems good EXCEPT RSS feeds, i have set up channels and everything...Howd you fix the wallpaper issue? i just used hd walls (im not using cookie)
__________________
If I Helped Say Thanks, you believe in Karma don't you

DONATE

Last edited by raiderfan247365; 08-27-2010 at 02:21 AM.
Reply With Quote
  #3782 (permalink)  
Old 08-27-2010, 07:21 AM
Formula84's Avatar
PPCGeeks VIP
Offline
Pocket PC: Touch Pro 2
Carrier: Sprint
Location: Philadelphia, PA
 
Join Date: Mar 2008
Posts: 1,288
Reputation: 2065
Formula84 is a VIPFormula84 is a VIPFormula84 is a VIPFormula84 is a VIPFormula84 is a VIPFormula84 is a VIPFormula84 is a VIPFormula84 is a VIPFormula84 is a VIPFormula84 is a VIPFormula84 is a VIP
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Question Re: [Kitchen] WVGA Touch Pro 2 Collaboration

Cool find, what has been your experience so far?, better memory footprint/management?

Quote:
Originally Posted by sc00b4s7eve View Post
- One very important thing to remember about modules is that they do not copy. They have to be run out of the Windows directory. Every Module that I have made that then tries to copy to a diff. folder has ended up as an unusable 0 Kb file.

Virtual Memory in Windows Mobile 6.5 and how it differs from 6.1 and 6.0[...]
Da_G's most excellent explaination.
One other thing I recently started to try and utilize is this feature from 6.1 (in the same post as above):
Code:
WM 6.1 also introduces the process initvmmap.exe in the MSXIPKernel, NK partition (xip.bin).
This process draws a map of all virtual memory,
and uses the following registry key from the boot hive (boot.hv):

[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo]
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\dllname.dll]
"filename.exe"=dword:1
"filename2.exe"=dword:1

This tells the system that the module dllname.dll
is only required when filename.exe is running, or filename2.exe is running
- and whenever these processes are not running, the virtual memory space is available,
and can be dynamically allocated to by the system.
Now I have added a few for some of applications that I use frequently:
Code:
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo]

;FullscreenPlayer
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\FSPlayer.dll]
"HTCVideoPlayer.exe"=dword:1
"HTCAlbum.exe"=dword:1

;StreamingMedia
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\RTSPHandler.dll]
"StreamingPlayer.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\voFltRTSP.dll]
"StreamingPlayer.exe"=dword:1

;HTCYouTubePlayer
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\ProtocolHandler.dll]
"YouTube.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\voFltPD.dll]
"YouTube.exe"=dword:1

;RescoExplorer and PhotoManagerPro
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\RFileShell.dll]
"Explorer.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\RFtpShell.dll]
"Explorer.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\RRegShell.dll]
"Explorer.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\RZipShell.dll]
"Explorer.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\unrar.dll]
"Explorer.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\WebServices.dll]
"Explorer.exe"=dword:1
"PhotoManPro.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\RImgFmts.dll]
"Explorer.exe"=dword:1
"PhotoManPro.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\RImgRaw.dll]
"PhotoManPro.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\SamsungMobilesdk_1.dll]
"PhotoManPro.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\smiHapticsServer_1.dll]
"PhotoManPro.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\SmiSensorServer_1.dll]
"PhotoManPro.exe"=dword:1

;Manila (??neccessary??probably not cause I always run Manila)
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\ce536_high_tech_mobile_wm6.dll]
"AudioManager_eng.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\appointmentservice.dll]
"manila.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\audiomanagerservice.dll]
"manila.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\cameraalbumservice.dll]
"manila.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\homeservice.dll]
"manila.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\htcaccountmanagersvr.dll]
"manila.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\internetpushservice.dll]
"manila.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\launcherservice.dll]
"manila.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\settingservice.dll]
"manila.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\weatherservice.dll]
"manila.exe"=dword:1
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\worldclockservice.dll]
"manila.exe"=dword:1


Honestly, I think I can add more, and It will probably help a bit more.
What doya think?
Reply With Quote
  #3783 (permalink)  
Old 08-27-2010, 09:36 AM
smiznith's Avatar
ICE
Offline
Pocket PC: Motorola Everything
Carrier: Big RED
Threadstarter
Location: OK
 
Join Date: Jul 2007
Posts: 1,358
Reputation: 2920
smiznith is a VIPsmiznith is a VIPsmiznith is a VIPsmiznith is a VIPsmiznith is a VIPsmiznith is a VIPsmiznith is a VIPsmiznith is a VIPsmiznith is a VIPsmiznith is a VIPsmiznith is a VIP
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Send a message via Yahoo to smiznith
Re: [Kitchen] WVGA Touch Pro 2 Collaboration

man we are now at 2018? i have definitely missed out on alot...
Reply With Quote
  #3784 (permalink)  
Old 08-27-2010, 09:47 AM
TMartin's Avatar
Chef/Port Specialist
Offline
Pocket PC: Evo3D,Evo4G,Touch Pro2,Touch Pro & Samsung Moment
Carrier: Sprint
Location: Westerville, OH
 
Join Date: May 2008
Posts: 1,756
Reputation: 4824
TMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributions
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [Kitchen] WVGA Touch Pro 2 Collaboration

Quote:
Originally Posted by smiznith View Post
man we are now at 2018? i have definitely missed out on alot...
Just because you have an Evo doesn't mean you can just pick up and leave lol.

I've got one too and I'm still here and I don't even use this kitchen lol.

Where have you been?
__________________
Check out my work:
For All Your New Leaks, Check Out:
Hit the if I help you.
Reply With Quote
  #3785 (permalink)  
Old 08-27-2010, 09:49 AM
smiznith's Avatar
ICE
Offline
Pocket PC: Motorola Everything
Carrier: Big RED
Threadstarter
Location: OK
 
Join Date: Jul 2007
Posts: 1,358
Reputation: 2920
smiznith is a VIPsmiznith is a VIPsmiznith is a VIPsmiznith is a VIPsmiznith is a VIPsmiznith is a VIPsmiznith is a VIPsmiznith is a VIPsmiznith is a VIPsmiznith is a VIPsmiznith is a VIP
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Send a message via Yahoo to smiznith
Re: [Kitchen] WVGA Touch Pro 2 Collaboration

Quote:
Originally Posted by TMartin View Post
Just because you have an Evo doesn't mean you can just pick up and leave lol.

I've got one too and I'm still here and I don't even use this kitchen lol.

Where have you been?
i know right? man i have been on vacation before school starts for my kiddos. now im back and reading up again. hey, where can i get a good android kitchen? think i want to start some home brew for my evo...
Reply With Quote
  #3786 (permalink)  
Old 08-27-2010, 10:17 AM
TMartin's Avatar
Chef/Port Specialist
Offline
Pocket PC: Evo3D,Evo4G,Touch Pro2,Touch Pro & Samsung Moment
Carrier: Sprint
Location: Westerville, OH
 
Join Date: May 2008
Posts: 1,756
Reputation: 4824
TMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributions
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [Kitchen] WVGA Touch Pro 2 Collaboration

Quote:
Originally Posted by smiznith View Post
i know right? man i have been on vacation before school starts for my kiddos. now im back and reading up again. hey, where can i get a good android kitchen? think i want to start some home brew for my evo...
dsixda makes a very nice kitchen over at xda. Thats what me, OMJ, juggs and a bunch of other people use.
Reply With Quote
This post has been thanked 1 times.
  #3787 (permalink)  
Old 08-27-2010, 10:18 AM
Sharkie405's Avatar
VIP Member
Offline
Pocket PC: HTC One M9
Carrier: Verizon
Location: Waynesville, NC
 
Join Date: Feb 2009
Posts: 3,612
Reputation: 11155
Sharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation level
Mentioned: 9 Post(s)
Tagged: 0 Thread(s)
Re: SharkieROM Hybrid

Quote:
Originally Posted by raiderfan247365 View Post
I am in the same boat as you... Everything seems good EXCEPT RSS feeds, i have set up channels and everything...Howd you fix the wallpaper issue? i just used hd walls (im not using cookie)
I added some HTC Acct Mgr. and HTC photo picker files to album 2018. Here's mine. I could never get the hang of HD Walls...

And here's Captain_Throwbacks answer to the RSS feed not coming through...

http://www.mobileunderground.info/sh...1861#post51861

Oh, and here's a BG4All that works with 2018. I'm not sure if they all do, but I know this one does for sure. Thanks to ai6908 who posted it in the Mobile Underground thread.
__________________
Current Device:
Verizon HTC One M9

Last edited by Sharkie405; 08-27-2010 at 10:31 AM.
Reply With Quote
This post has been thanked 1 times.
  #3788 (permalink)  
Old 08-27-2010, 11:00 AM
raiderfan247365's Avatar
Halfway to VIP Status
Offline
Pocket PC: HTC HD7
Carrier: T-Mobile
Location: portland, or
 
Join Date: May 2009
Posts: 554
Reputation: 1155
raiderfan247365 is halfway to VIP status based on repraiderfan247365 is halfway to VIP status based on repraiderfan247365 is halfway to VIP status based on repraiderfan247365 is halfway to VIP status based on repraiderfan247365 is halfway to VIP status based on repraiderfan247365 is halfway to VIP status based on repraiderfan247365 is halfway to VIP status based on repraiderfan247365 is halfway to VIP status based on repraiderfan247365 is halfway to VIP status based on rep
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: SharkieROM Hybrid

Quote:
Originally Posted by Sharkie405 View Post
I added some HTC Acct Mgr. and HTC photo picker files to album 2018. Here's mine. I could never get the hang of HD Walls...

And here's Captain_Throwbacks answer to the RSS feed not coming through...

http://www.mobileunderground.info/sh...1861#post51861

Oh, and here's a BG4All that works with 2018. I'm not sure if they all do, but I know this one does for sure. Thanks to ai6908 who posted it in the Mobile Underground thread.
thanks bra! do you by chance have that rsshub ext, i looked through my dopod dump and no rss is to be found?

edit: i had the huashan rom dumped, not the latest test rom though

Last edited by raiderfan247365; 08-27-2010 at 11:12 AM.
Reply With Quote
  #3789 (permalink)  
Old 08-27-2010, 11:02 AM
Sharkie405's Avatar
VIP Member
Offline
Pocket PC: HTC One M9
Carrier: Verizon
Location: Waynesville, NC
 
Join Date: Feb 2009
Posts: 3,612
Reputation: 11155
Sharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation level
Mentioned: 9 Post(s)
Tagged: 0 Thread(s)
Re: SharkieROM Hybrid

Quote:
Originally Posted by raiderfan247365 View Post
thanks bra! do you by chance have that rsshub ext, i looked through my dopod dump and no rss is to be found?
I don't yet... I'm in the process of dumping an Oboe ROM now... Hopefully it's in there. If it is, I'll post it.
Reply With Quote
  #3790 (permalink)  
Old 08-27-2010, 11:03 AM
sc00b4s7eve's Avatar
VIP Member
Offline
Pocket PC: Sprint TP2
Carrier: Sprint SERO
Location: NorthEast, US
 
Join Date: Apr 2008
Posts: 863
Reputation: 2080
sc00b4s7eve is a VIPsc00b4s7eve is a VIPsc00b4s7eve is a VIPsc00b4s7eve is a VIPsc00b4s7eve is a VIPsc00b4s7eve is a VIPsc00b4s7eve is a VIPsc00b4s7eve is a VIPsc00b4s7eve is a VIPsc00b4s7eve is a VIPsc00b4s7eve is a VIP
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [Kitchen] WVGA Touch Pro 2 Collaboration

Quote:
Originally Posted by Formula84 View Post
Cool find, what has been your experience so far?, better memory footprint/management?
Honestly, yeah.
- Since I've done this I've been able to run ~720 modules and a 17Mb page pool and my working program memory stays between 55-65Mb.
- After boot, just sitting at the Sense Home Tab, I have ~77Mb free.
- Seems as if I was able to add all info/Keys for all of my apps I bet I could run a Zero page pool and not have the modules taking up VM when they are not being used. (Memory drops REALLY fast with this many modules and Zero Mb page pool)
__________________
Kitchen:Calkulin's VK for WVGA (Updated with Touch Pro 2 Collaboration)
ROM:Custom6.5.x(ScubaGear)
When it's deserved, click
Reply With Quote
Reply

  PPCGeeks > Windows Mobile > WM HTC Devices > HTC Touch Pro 2 > CDMA TP2 Development


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -4. The time now is 01:29 AM.


Powered by vBulletin® ©2000 - 2024, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0
©2012 - PPCGeeks.com