gbadev.org forum archive

This is a read-only mirror of the content originally found on forum.gbadev.org (now offline), salvaged from Wayback machine copies. A new forum can be found here.

DS homebrew announcements > JabberDS

#149870 - theli - Sat Jan 26, 2008 7:21 am

So , i'm releasing first public version of jabber client for DS .. JabberDS (original name, isn't it?)
it should be buggy, not feature-complete and so on....
before you start it edit /data/jabberds.xml (no settings in-game)

direct link to 0.1

#149898 - MasterMan - Sat Jan 26, 2008 5:17 pm

Looks cool, but how can i connect with my gmail account for gtalk?

Code:

<server host="talk.google.com" port="5222" sasl="true"/>
<user nick="mynick" jid="myemail@gmail.com" password="mypassword"/>


Is that it?

#149904 - pas - Sat Jan 26, 2008 6:48 pm

you forgot to spoil your password ^^.

Just try it ;).

Man I never use Googletalk, but the DS REALLY needs ICQ Client :(.
_________________
Starcraft DS ?

#149906 - takieda - Sat Jan 26, 2008 9:18 pm

pas wrote:
you forgot to spoil your password ^^.

Just try it ;).

Man I never use Googletalk, but the DS REALLY needs ICQ Client :(.


Unless I'm terribly mistaken, DSAIM works for ICQ as well, just use your ICQ number and password instead of an AIM name. I'm fairly certain I've used it for that and seen it in the threads about DSAIM.
_________________
Est Sularis Oth Mithas - My Honor is My Life
(\_/)
(o.o)
(> <) This is The Bunny. Copy The Bunny into your signature to help him on his way to world domination.

#149911 - theli - Sat Jan 26, 2008 11:45 pm

MasterMan wrote:
Looks cool, but how can i connect with my gmail account for gtalk?
Is that it?

not working for me too ..
actually i've never tried google's server .. i'll look into it tomorrow :)

#149912 - MasterMan - Sat Jan 26, 2008 11:58 pm

pas wrote:
Man I never use Googletalk, but the DS REALLY needs ICQ Client :(.

DSAIM as said. I've already used it with my ICQ id.

#149918 - theli - Sun Jan 27, 2008 9:55 am

MasterMan wrote:
Looks cool, but how can i connect with my gmail account for gtalk?
Is that it?

well, aside from small bug i found out that Gtalk requires ssl/tls ... so GTalk won't work until this will be supported

#149938 - MasterMan - Sun Jan 27, 2008 6:55 pm

DSMail and DSOrganuze do have SSL suport, i think Bronto hasn't released his source to this, but Dragonminded has.

#150426 - theli - Mon Feb 04, 2008 8:49 am

ok, i've released 0.2 in which fixed some small bugs and added tls support ... so now it works for gtalk account

#150441 - MasterMan - Mon Feb 04, 2008 5:26 pm

Looks cool, but i can't pass the "starting SSL handshake" part.
I just uncommented the GTalk's server and user lines and updated with my account info.
Commented all the common jabber part.

Should i use my entire google e-mail address as nickname? IE: *****@gmail.com

#150443 - theli - Mon Feb 04, 2008 6:04 pm

MasterMan wrote:
Looks cool, but i can't pass the "starting SSL handshake" part.
I just uncommented the GTalk's server and user lines and updated

mm .. does it just stucks at Starting SSL part?

#150445 - MasterMan - Mon Feb 04, 2008 6:23 pm

Code:
 Started
FAT init success
Loading settings
 OK
Wifi Init Done
Connecting to AP
Connected to AP
Connecting with server:
 talk.google.com
Connected to server
Logging in...
Starting SSL handshake    // a loooooooong time passes here
disconnecting ...
 disconnected
error authenticating

#150446 - theli - Mon Feb 04, 2008 6:26 pm

can you, please, contact me on jabber/gtalk at theli@theli.is-a-geek.org ... or just post your jabberds.xml (don't forget to mask password :) )

#150449 - MasterMan - Mon Feb 04, 2008 7:20 pm

<?xml version="1.0" encoding="utf-8"?>
<!-- a simple example !-->
<!-- set starttls="false" if you do not want secure connection -->
<!-- example for GTalk (starttls required)-->

<server host="talk.google.com" port="5222" sasl="true" starttls="true" plain="false"/>
<user nick="joaoviss@gmail.com" jid="joaoviss@gmail.com" password="****"/>

<!-- for common jabber server -->
<!--<server host="" port="5222" sasl="true" plain="false" starttls="true"/>
<user nick="jabberds" jid="jabberds@jabber.org" password="password"/>
<newmsgsound file="/data/sounds/message.raw" rate="44100" volume="127" panning="64" format="0"/>
<certificate file="/data/cert.pem"/>
<prikey file="/data/key.pem"/>
-->
<!--<font file="/data/fonts/silkscreen.bfont"/>-->
<!--<font file="/data/fonts/unifont.bfont"/>-->
<!--<defaultfont name="unifont" size="15" bold="" oblique=""/>-->
<!--<smallfont name="Terminus Medium" size="12" bold="" oblique=""/>-->
<!--<smallfont name="Silkscreen Expanded" size="8" bold="" oblique=""/>-->
<!--<smallfont name="04b03" size="8" bold="" oblique=""/>-->
<!--<defaultfont name="Terminus Medium" size="12" bold="" oblique=""/>-->
<!-- default english layout -->
<!--
<keyboard layout="abc
qwertzuiopB
asdfghjklRB
yxcvbnm,.RC
SS KKRC"/>
<keyboard layout="123
112233#A
445566*A
778899RC
,.00KKRC"/>
<keyboard layout="Sym
!&quot;'$%&amp;/()=B
@+#*,.-;:RB
_&lt;&gt;[]{}\?RA
KKKKKKKKKRA"/>
-->
<!-- cyrillic layout -->
<!--
<keyboard layout="рус
йцукенгшщзхB
фывапролджэB
ячсмитьбюъRC
,.їієё KKRC"/>
<keyboard layout="eng
qwertzuiopA
asdfghjklRA
yxcvbnm,.RC
SS KKRC"/>
<keyboard layout="Sym
!&quot;'$%&amp;/()123=B
@+#*,.-;:456RB
_&lt;&gt;[]{}\?789RA
0000KKKKKKKKRA"/> -->

-----------------------------------
Hope it helps.
Only changed the bold part, opened TCP port 5222 on my router.

#150451 - theli - Mon Feb 04, 2008 7:24 pm

Code:
<certificate file="/data/cert.pem"/>
<prikey file="/data/key.pem"/>

you need this part (with files) for TLS to work
as there is no support currently for generation of RSA keypair on-the-fly

#150452 - MasterMan - Mon Feb 04, 2008 7:33 pm

OMG, i'm ashamed. I just come to post ot worked when i uncommented these lines, and saw your repply, thanks. Its a grreat program, i like the way it uses various "windows".

But say, does DSGUI allows for skineable apps? Or even JabberDS allow one to change the color scheme? I was thinking in a ice blue thing instead of the black on darkgreen.

Hey, i like this app, thanks.

#150453 - theli - Mon Feb 04, 2008 7:45 pm

well, it's possible
i can add settings for colors
what do you need?
colors for text/common_background/buttons_background ?

#150466 - MasterMan - Mon Feb 04, 2008 11:24 pm

Maybe external bitmaps with alphamaps for top and bottom screens, so we could do window styles, and custom colors for text background and buttons.

#150475 - MasterMan - Tue Feb 05, 2008 4:16 am

What about multiple accounts? Like to have input fields to sign with another JID:password?
Just now we have only one account hardcoded in the config XML.

#150478 - theli - Tue Feb 05, 2008 7:27 am

MasterMan wrote:
Maybe external bitmaps with alphamaps for top and bottom screens, so we could do window styles, and custom colors for text background and buttons.

won't happen unless i'm going to rewrite gui system ... though i may just write support for bitmap buttons...

as for multiple accounts ... i may implement support for them ... though i'm not going to implement several at the same time :)...

and i'm still thinking of implementing "settings" screen

#150585 - falvarez - Thu Feb 07, 2008 11:18 pm

Hello.

I'm just trying JabberDS, I've configured my GMail account, but it seems to hang when Connecting to AP. Besides, I have Wifi Connection configured as I can play online.

Green light on the DS is flashing slowlier (more as when NDS is suspended) than when playing online (when it flashes twice).

Is there any other thing I must configure.

Thanks in advance, best regards and congratulations for this great and useful piece of homebrew.

#150598 - MasterMan - Fri Feb 08, 2008 3:08 am

Hey, a settings tab would be good. And support for various <user> sessions on jabberds.xml configuration file.

falvarez, does any other homebrew work with you wi-fi network?

#150622 - falvarez - Fri Feb 08, 2008 6:55 pm

MasterMan wrote:
falvarez, does any other homebrew work with you wi-fi network?


I don't really know, what can I use to test it?

I usually play online with original carts (and I have tested dumped games), and I have no problem in any case.

I use R4 with 1.15 firmware (last one).

Thanks in advance. Regards.

#150799 - falvarez - Tue Feb 12, 2008 11:36 pm

falvarez wrote:
Hello.

I'm just trying JabberDS, I've configured my GMail account, but it seems to hang when Connecting to AP. Besides, I have Wifi Connection configured as I can play online.

Green light on the DS is flashing slowlier (more as when NDS is suspended) than when playing online (when it flashes twice).

Is there any other thing I must configure.

Thanks in advance, best regards and congratulations for this great and useful piece of homebrew.


I'm answering myself.

The problem was that the SSID was hidden. Once I revealed it, started to work.

Regards.

#150842 - theli - Wed Feb 13, 2008 9:08 am

falvarez wrote:
[The problem was that the SSID was hidden. Once I revealed it, started to work.

oh.. yes
i've had problems with homebrew when i've tried to hide my SSID