webOS Nation Forums
> Homebrew
> webOS homebrew apps
>
Solitaire
1
2 3 4 5 6 11
...
Last
Solitaire HAS BEEN UPDATED
FINALLY
Solitaire | PreCentral.net | The #1 Palm Pre and Pixi Community
Solitaire v0.9.9
NEW FEATURES
more palm ui style
splash screen for selecting difficulty
bigger palm style buttons
hopefully better overall graphic and speed performance

works with 1.1 (not really new)
A updated winner screen
different card background for one and three card draw
border around white card for easier viewing
//I did contemplate releasing this version for a couple days...
it is not in perfect WebOS..the version will look perfect and work perfect but it is still a work in progress..but i figured at least people would be able to use it will look the same when im finshed and it submitted to the app catalog but the backend and coding stuff will look completely different...//
NEW FEATURES 0.9.6 (FIXED PROBLEMS)
Background back to green
NEW FEATURES 0.9.5...YOU CAN NOW WIN!

New Game button
Options Button (one draw/three draw)
Rules page
About page
NEW FEATURES 0.9 (fixed problems)
Single CLICK reveals
More space in between cards vertically
Three cards shown
Easier to place cards on top of each other
A simple JavaScript solitaire game formatted to run on the Palm Pre.
Standard Klondike rules apply.
How To Play:
Double Click to reveal cards
Click to Drag and Drop Cards.
Installation:
Use the SDK palm-install method instead.
Use version com.tj.solitaire_0.9.9_all.ipk
Future Features:
If I work on this further. I will add new game to top title menu and possible ways to change cards, card background, and game background. Also will try to figure out how to save in the middle of game even thought it was "exited"
thanks everyone! major thanks to Arognlie for fixing the script and debugging the code.
TJ
Like I said in other posts...
We had over 3000 downloads for version 0.9.6 (most downloaded on percentral...im pretty sure)
Hopefully 3000 satisfied people !
If you liked the game enough to help here is the link:
Donation Link
https://www.paypal.com/cgi-bin/websc...ton_id=6746791
Member:
ucsbleo
at: 07:31 PM 07/06/2009
will it work in landscape mode? might be more screen real-estate
not right now. I'm new to the SDK so I'm having trouble finding where to put the code in to rotate.
I'm working though!
Originally Posted by ucsbleo:
will it work in landscape mode? might be more screen real-estate
I agree 100%. It just seems more natural to have this game coded for landscape by default. Looks great, but I won't be able to install even though I still have 1.0.3 firmware and can install via email ipk links.
I guess I need to figure out how to do this whole "SDK" thing, but I am afraid I'll brick my Pre...
Member:
Sharkims
at: 07:36 PM 07/06/2009
Awesome thanks!
haha ok ok. I'll work tonight to get landscape instead of playing WoW (yeah i know)
a dumb cat the sdk is very easy to get and as long as your not rooting you wont brick your pre.
Member:
atlanta
at: 07:37 PM 07/06/2009
Originally Posted by a dumb cat:
I agree 100%. It just seems more natural to have this game coded for landscape by default. Looks great, but I won't be able to install even though I still have 1.0.3 firmware and can install via email ipk links. 
I guess I need to figure out how to do this whole "SDK" thing, but I am afraid I'll brick my Pre...
You dont need the SDK to install games just root your pre.
and you can install from there
Member:
oil
at: 07:38 PM 07/06/2009
Originally Posted by t.tokarczyk01:
I'm having trouble finding where to put the code in to rotate.
In the activate function of your scene assistant, put:
[code]
if (this.controller.stageController.setWindowOrientation) {
this.controller.stageController.setWindowOrientation("free");
}
[/code]
Member:
buyrihn
at: 07:43 PM 07/06/2009
Originally Posted by a dumb cat:
I agree 100%. It just seems more natural to have this game coded for landscape by default. Looks great, but I won't be able to install even though I still have 1.0.3 firmware and can install via email ipk links. 
I guess I need to figure out how to do this whole "SDK" thing, but I am afraid I'll brick my Pre...
There is no need to be concerned in the slightest. If you were to enable root, and somehow misread some steps and screwed up your phone, you'd have to reflash it with the original OS to regain functionality. There's a potential (albeit small one) that you could temporarily lose the functionality of your phone by rooting it.
With the SDK, however, it's safer. All you do is install it, then you'll never see the GUI again. Open a terminal screen and type "palm-install [app.ipk]" and voila! You're done. Uninstall is the same as a Palm-sanctioned app (hold down the orange button, and tap the app).
haha oil yeah i asked about that on your post for XboxLive Friends(which is awesome by the way) this may sound stupid but i dont still dont know where it goes...:/
this is what my stage-assistant.
js looks like:
Originally Posted by :
function StageAssistant() {
}
}
StageAssistant.prototype.setup = function() {
}
Member:
buyrihn
at: 07:44 PM 07/06/2009
@t.tokarczyk01: Any way you could get rid of the double click?
well here is why it is enabled (see what you think). when i had it on single click I found that sometime i would accidentally click "deal two new cards" when I actually wanted to just drag a top card. So, I mean if enough people complain I will change. Otherwise it will stay so that I can beat my own solitaire game haha
Member:
atlanta
at: 07:55 PM 07/06/2009
Not sure how it would work out since your app is just using the index file i believe you will have to put it in a view file then add the coding and have the app push the scene viewfile.
Wat r the chances of a poker app?
hehe...Let me get this one complete to 1.0 first then we will see...
Member:
Bigchris
at: 08:17 PM 07/06/2009
Great job on the app.. Looks really good on the pre.. Thanks
Member:
buyrihn
at: 08:19 PM 07/06/2009
Originally Posted by t.tokarczyk01:
well here is why it is enabled (see what you think). when i had it on single click I found that sometime i would accidentally click "deal two new cards" when I actually wanted to just drag a top card. So, I mean if enough people complain I will change. Otherwise it will stay so that I can beat my own solitaire game haha 
I'd prefer a single tap for everything, but I could certainly live with double tapping for showing new cards on the discard pile and single clicking for everything else...
Member:
mdmogren
at: 08:22 PM 07/06/2009
Originally Posted by atlanta:
You dont need the SDK to install games just root your pre.
and you can install from there
Is there an easy way to install these without having to copy via usb (on a rooted pre?)
Member:
oil
at: 09:02 PM 07/06/2009
Did I say stage assistant? I meant scene assistant... xD
[code]
FirstAsssistant.prototype.activate = function(event) {
if (this.controller.stageController.setWindowOrientation) {
this.controller.stageController.setWindowOrientation("free");
}
}
[/code]
I think that 1 click would be easier to reveal cards on the phone. Personal opinion.
Also, it's difficult to know exactly how I need to place the card on top of another for it to accept the move. I have had to move cards twice in order for it to actually be moved.
Great app though. Keep up the good work.
1
2 3 4 5 6 11
...
Last
webOS Nation Forums
> Homebrew
> webOS homebrew apps
>
Solitaire