News

Pointui Home v1.02b (PPC Application)

Take back control of your device with Pointui Home. No need to fumble for a stylus anymore as Home is designed with generously sized controls.

Release notes:

New Features
* Smartphone support
* PDA’s (without phone) support
* Voice mail count is now displayed under the missed call count for those with phone networks supporting this feature.
* Lock screen will fade back to Home screen to allow you to see all of the status information even when device is locked.
* Translation support – see the forums for more information.
* New customise option: can choose digital or analog clock.
* New customise option: Lock Device, Show Home, or Show Home Screen when device is switched on.
* New customise option: automatically switch bluetooth on only during phone calls and switch off at the end of the call (not supported on all devices). The idea behind this is that if you only use bluetooth during phonecalls for headset etc and don’t need it on all the time, then this option could be useful to you. It will turn bluetooth on as soon as an incoming/outgoing call is detected, and turn it off when you hang up.
* New customise option: can choose to use Home’s comm manager or system default if supported.
* New customise option: can choose to not show screenshots in Currently Running screen (if your device has issues showing the screenshots).
* New customise option: can choose to Show Home, Show Call Summary Screen, or Do Nothing when call is finished.
* New customise option: can choose to use Home’s task bar or standard system task bar.
* The list of applications now merges the list of favorites so you can view the entire list together
* Call summary screen added to display who was called and how long call lasted for at end of call.
* Lock screen can now be used on smartphones – you press up then down on dpad.
* You now have an additional option to “Lock Device” on power on.
* Battery saving – now only uses marginally more battery power than normal – smartphone users should notice a big difference (of course this is dependent on how excessive you are with using it).

Changes
* Taskbar in all other standard apps is no longer changed except for the Start button area which still takes you to Home’s Task Menu.
* Windows Media icon has been replaced with Favorites.
* Appointments summary shows only the next 7 days of appointments.
* Tasks summary no longer shows completed tasks.
* Force close now returns focus back to Home.
* Ringer volume and profile button on sound screen for non-phone devices are no longer displayed.
* Appointments now display all day events in bold and should not display events that have been completed for the day.
* “Today” and “Tomorrow” in appointments also now show the date after them
* Smartphones no longer have a Windows Mobile section as it’s not relevant.
* Shortcut no longer includes “.” at start which was causing issues for button mapping.
* Soft key on Today screen no longer overridden. (NOTE: you will need to reset it back to what it was manually if you have a previous version installed).

Bug Fixes
* Many bugs fixed!
* Memory leak issues fixed.
* Lock screen locks keys as well, and when orientation changed while locked the keys remain locked.
* Recurring appointments now displayed.
* Hardware buttons now working.
* Volume controls now working.
* Volume controls support stereo.
* Control panel applets have had a number of bug fixes. They still are only categorised correctly for English ROMS unless you use a translated terms file as described in the forums.
* Battery shouldn’t show 255% any more but some devices for some reason do not report the correct % when asked and can take a while before they report it successfully.
* The speed that tasks load has been improved and should no longer cause freezes.
* Currently Running screen causing device to freeze has been fixed on most devices, but still is problematic with some devices in which case you need to switch off the screenshots option.
* Closing home sometimes caused it to freeze needing soft reset issue has been fixed.

Known Issues
* See the forums for more details.

By · 0 comments
OldPlay v1.31 (GP2x Application)

Micket has continued the development on OldPlay. OldPlay is a portable multiformat music player for the GP2X and other platforms.

Changes:

VERSION 1.31 (just bugfixes, sorry no time)
* Change the default length with DEFLENGTH=X, where X is time in seconds.
* Finer volume control at lower volumes (through software)
* Pressing VOLUP+VOLDOWN now works as stick-click (for F200)
* Excluded the PSF-plugin (it was to slow to be playable)
* Loading playlists no longer messes up length
* Fixed some debug-stuff that messed up settings in libmodplug
* Added the stereo blending option again (you need to set the buttons manually in the keyconfig)
* Probably fixed some minor bugs as well

Download “oldplay.zip” from Mickets page.

Leave feedback at the GP32x webboards: http://www.gp32x.com/board/index.php?act=ST&f=42&t=40517

By · 0 comments
Vonagent (iPhone Application)

Release notes:

Enjoy – more information coming soon!
Vonage SimulRing and Voicemail Utility. Updates your SimulRing phone number, and allows toggle on/off. Allows you to view your voicemails details (new and old).

To Install on JB iPhones:
Add Source to Installer:
http://www.vonagent.com/repo

And then install under Vonagent in Installer

By · 0 comments
Firmware 1.1.3 – A developers nightmare (iPhone misc)

ZodTTD wrote some lines about his recent FW 1.1.3 expirience.

Quote:

The Firmware 1.1.3 jailbreak was made public. But not once, instead three different people released three different versions along with different updates to those versions! Whew, a lot has been going on. The issue to developers of iPhone and iPod Touch software is the difference in which user runs the applications we program. In previous firmwares earlier than 1.1.3, we used user ‘root’. And hence we had /var/root/Media and /var/root/Library to store our files and settings in, respectively. Things have changed in 1.1.3:

The Firmware 1.1.3 jailbreak was made public. But not once, instead three different people released three different versions along with different updates to those versions! Whew, a lot has been going on. The issue to developers of iPhone and iPod Touch software is the difference in which user runs the applications we program. In previous firmwares earlier than 1.1.3, we used user ‘root’. And hence we had /var/root/Media and /var/root/Library to store our files and settings in, respectively. Things have changed in 1.1.3:

– Nate True released a version of 1.1.3 that uses the legacy root user for control of running applications. This is great for compatibility, but the firmware had other issues.

– NerveGas released an official dev team release that uses user ‘mobile’ for running applications. But this release had a corrupted installer.

– Finally planetbeing made a proper release with following updates, which uses the proper ‘mobile’ user. But there’s some problems I found…

The problem with using the mobile user, is the user of an application has to be aware of the ownership and permissions of directories much more than before.

For instance, gpSPhone v1.5.0 being released today, uses /var/mobile/ if available. But in planetbeing’s release the /var/mobile/Library and /var/mobile/Media directories are often owned by user root.

If root owns either of these directories, settings and savestates can’t be saved since user mobile won’t have write permissions in the “Other group”. So this is all very confusing to some, but there’s a simple fix. Run SSH, login as root, and use the following command to set ownership of this directory recursively:

chown -hR mobile /var/mobile

This command will then fix many issues found when installing applications under 1.1.3 when using the /var/mobile/[…] directory. It only fixes the ownership of the /var/mobile directories that get created as being owned by root. Make sure when creating directories after running this command, such as /var/mobile/Media/ROMs, that you chown this directory to being owned by mobile such as using the command above again. This of course is only required if the directory being created is owned by root.

So I’m working on getting my software working under all three firmware releases, all of which have different issues. What a mess huh?

By · 0 comments
gpSPhone v1.5.0 (GBA emu for iPhone)

gpSPhone is a GBA emulator based ZodTTD’s port of gpSP to the GP2X. gpSP is a great GBA emulator written by the talented Exophase. ZodTTD ported it to the GP2X, and added an (iPhone/iTouch compatible) dynarec. By using this coding technique, fullspeed performance of GBA is obtained on the iPhone/iTouch.

Release notes:

gpSPhone, the Gameboy Advance emulator, has been updated to v1.5.0. New changes in this release includes:

– Added support for both scaled/unscaled landscape and portrait view settings.
– Added support for firmware 1.1.3’s “mobile” user. gpSPhone should run well on 1.1.3 now.
– Added hardware accelerated scaling for better performance and look.

This release should be very stable and slightly faster. You now have the option between portrait and landscape mode. Hardware scaling gives a smoothed over looking picture, which some may prefer, with the advantage of performance.

A big thanks to Exophase, the author of gpSP, for his continued work on emulation. Without him, gpSPhone couldn’t exist.

Downloads for gpSPhone v1.5.0 can be found by visiting the Download section. It is available at the ZodTTD.com public Installer.app repo.

By · 0 comments
Caisses v1.05 (PPC Game)

Caisses is a Sokoban clone that includes 500 levels and 14 different backgrounds and themes.

Changes:

– CPU optimizations
– Ram optimizations
– Support for WinCE GPS
– Added Check and Cross to show which games are finished and which ones aren’t in the level selection screen…

Thanks to Mollusk, the coder himself, for the news.

By · 0 comments