![]() |
Re: Dialcentral 1.0
2 Attachment(s)
I changed up the layer styles a bit, I'm going to make the remaining icon sizes this week.
64 x 64 48 x 48 |
Re: Dialcentral 1.0
Quote:
This has not solved the issues with my DC though. I can't get Dialcentral to dial out and forward call to my phone. SMS is working fine. |
Re: Dialcentral 1.0
How do I clear my username and password that DialCentral remembers when it starts up? Thanks
|
Re: Dialcentral 1.0
Quote:
/home/user/.dialcentral only need to remove "settings.ini" & "gv_cookies.txt" have fun |
Re: Dialcentral 1.0
can there be a button to hear the voice message in the messages tab?
the voice recognition isn't that great. |
Re: Dialcentral 1.0
Quote:
Quote:
Quote:
https://bugs.maemo.org/show_bug.cgi?id=5564 I recently got the backend code to do it (in theory). A lot of it depends on privatization, time, and deciding how to implement the UI. |
Re: Dialcentral 1.0
I just got the update of Dialcentral on my N900 and it works again!
N900 + DialCentral + [google voice] + [Gizmo5 sipphone] = free calls to any land line across the US using WiFi! <Edit after valid call by "epage" below : I got the update from extras/development, so don't try it unless you know what you are doing! - Thanks, Epage!> |
Re: Dialcentral 1.0
Quote:
I'm at the mercy of whatever epage can come up with, and thanks for working on that, epage! Here's hoping it does the trick. -- Chris |
Re: Dialcentral 1.0
Quote:
|
Re: Dialcentral 1.0
I enabled devel to get the dialcentral update, when dialing a number I get an error:
Code:
There was a problem with GV: {'data': {'code':20}, 'ok': False} |
Re: Dialcentral 1.0
Dialcentral seems to be working perfectly for me as well. I _think_ I'm running the version from extras-devel...is there an 'about' screen in dialcentral to see version information? It's 1.0.9-0.
|
Re: Dialcentral 1.0
Please, I encourage people only install from extras-devel that they have written.
I personally enable extras-devel just long enough to install updated version of my own software and immediately disable it. I would hope those wishing to test can be patient enough for me to sanity check things before pushing to Maemo 5 Extras Testing or Maemo 4.1 Extras. (Maemo 5) I also hope those who do not want to take on the testing risks will be patient enough for people to vote it into Extras. Quote:
The fact that this works is thanks to you for pointing out pygooglevoice which taught me a different way to place calls. Even if that didn't work, you provided the work around which is Dialcentral explicitly set the callback number (I used to do this back in the Grandcentral days because there was no alternative) Quote:
|
Re: Dialcentral 1.0
epage, I'm more then happy to test the application, but can you confirm it's optified?
|
Re: Dialcentral 1.0
Quote:
If there is demand for me to optify anyways, I can put forward the effort to do so. |
Re: Dialcentral 1.0
Hmm if that's the case I guess it doesn't make a difference so there's not much of a point in optifying it if it's going be a lot of work. I'll install it tomorrow after my bio final is done. :)
Edit: Oh what the heck I'll install it now since bio studying is taking a while. Edit2: I do believe optification is a requirement for getting the application into extras however. (though there seems to be a few apps that don't follow that rule.. Evernote sharing plugin and openSSH for example). So if you want to get dialcentral into extras eventually I think you may have to consider optification. |
Re: Dialcentral 1.0
Quote:
I.e. you don't scare me. :P edit: That might be worth mentioning...I installed dialcentral within 5 minutes of reflashing both the OS and the MyDocs .bin files. I also installed rdesktop-cli from extras-devel (no apparent inter-dependencies) and wget & rsync from extras-testing (again no apparent collisions). From Extras, I threw in openssh, ati85, vncviewer, and droid fonts. |
Re: Dialcentral 1.0
Quote:
More so I want to be cautious of new comers seeing this thread and getting the impression running out of extras-testing / extras-devel is the only way to go. |
Re: Dialcentral 1.0
Quote:
Quote:
That said, I strongly recommend any newcomers to enable Extras - it's already in there. Good stuff in there. |
Re: Dialcentral 1.0
Some stuff on The One RIng:
I have a simple test case (outside of UI) that: * Can toggle Do Not Disturb * Make a call * Send a text I am working on the state machine for polling the server for updates. My current thought is: * You start with a POLL_TIME of INITIAL * As long as there no no new messages, we double POLL_TIME till it hits MAX * Every time there are new messages, we reset POLL_TIME to INITIAL * When you are idle POLL_TIME is set to a constant IDLE I'll give an example with * INITIAL = 5 seconds * MAX = 2 minutes * IDLE = 10 minutes A friend sends you a text, at most (when not "away") it will take 2 minutes for you to see it. You respond and they respond back all within 30 seconds, you will see the response in 35 seconds (5s + 10s + 20s) Now you say goodbye. The One Ring will check for new messages after 5s, 15s, 35s, 1 min 15s, 3 min 15s, 5 min 15s, 7 min 15s, etc. So switch to being marked "away" in chat, it now checks for new texts every 10 minutes Now you switch to Do Not Disturb. The One Ring will not poll the server at all and you will also not get any calls. Does this sound like a reasonable compromise for battery life and low latency? Other ideas? Any suggestions for INITAL, MAX, and IDLE? Interest in configuring these through the UI? Interest in a manual mode? An alternative approach is POLL_TIME = CONSTANT + GEOM, meaning there is a large constant time factory (5 seconds) and a small doubling factory (1 second) so this will peg the CPU but will also back off more slowly. For example we would check after 5, 11, 18, 27, 48, 1 min 25s, 3 min 25s, 5 min 25s, 7 min 25s, etc) For those interested, the following page has all the states I'm allowed to play with http://telepathy.freedesktop.org/spe...ePresence.html EDIT: Fixed my geom growth from the pauses to elapsed time |
Re: Dialcentral 1.0
Would POLL_TIME = CONSTANT + GEOM eat more cpu once it hit the 2m max? If not, I'd favor this method as sms's seem to go in conversations (e.g. a friend and I will txt frequently over the course of a 5 minute discussion, and then not again for hours or days).
And is One Ring a separate app, or added functionality to dialcentral? (I'm sure it's been addressed here previously, apologies if the question has become tiring). |
Re: Dialcentral 1.0
Quote:
POLL_TIME = min(CONSTANT + GEOM, MAX) will take longer to reach MAX, but once it does it will poll as frequently as POLL_TIME = min(GEOM, MAX). The One Ring is a separate app that plugs into RTComm, the chat/voice app builtin to Maemo 4.1 and Maemo 5. |
Re: Dialcentral 1.0
Quote:
That'd be my preference... |
Re: Dialcentral 1.0
Would it be possible to get some type of push notification, instead of polling in The One Ring?
|
Re: Dialcentral 1.0
epage:
Glad to offer at least a little bit of assistance. Dialcentral is one of my favorite tablet applications, and it's really the only one that I couldn't just steal from a debian arm repo. Your work is most appreciated. |
Re: Dialcentral 1.0
Quote:
|
Re: Dialcentral 1.0
Installed 1.0.9-0 yesterday. had no luck making a call with Gizmo until today.
Glad to have it working again. Thanks for all the work. |
Re: Dialcentral 1.0
Quote:
|
Re: Dialcentral 1.0
Quote:
|
Re: Dialcentral 1.0
Quote:
Another approach is to imitate GVMax and have the polling done on a server and use XMPP or IMAP IDLE for push to the device |
Re: Dialcentral 1.0
Quote:
And, just for clarification, GVMax doesn't poll -- the server responds when it receives an email that was pushed by GV and then forwarded via a filter to the server. |
Re: Dialcentral 1.0
Quote:
|
Re: Dialcentral 1.0
Quote:
|
Re: Dialcentral 1.0
I'm still getting that error with 1.0.9-1...not sure if you'd even looked at it for this update, but thought I'd give a heads up in case you had.
|
Re: Dialcentral 1.0
Quote:
|
Re: Dialcentral 1.0
Quote:
|
Re: Dialcentral 1.0
Quote:
N800 Running 1.0.9-1 Looked through the log and didn't see anything that looked different today versus last night. Update: working again...must have been google. |
Re: Dialcentral 1.0
Quote:
|
Re: Dialcentral 1.0
Quote:
I'm assuming you have Maemo 4.1 with extras enabled because I realize that when I promoted all of my software from Maemo 5 extras-devel to extras-testing, I forgot to promote the Maemo 4.1 version from extras-devel to extras. It is now done and should appear soonish. Thanks for helping me catch that so people can get the improved version sooner. As a side note, as part of my The One Ring work, I've got faster downloading of all of the contact information. I have not yet merged this into my Dialcentral code though. As for general The One Ring status: My semi-automated test is now able to login, get and set presence (avaialble, away, etc), make calls, send texts, and get contacts including their name. I have most of the work done for checking GV for new texts/voicemails to notify you of. As long as nothing catastrophic comes up with other software or real life, I plan to finish testing notification of new messages this weekend. My next step will be either this weekend or next to test within Empathy and then on Maemo 5. It would probably be another week or two for Maemo 4.1 support if I end up doing it. There might be some decent amount of work involved with this because telepathy is still rapidly changing and the docs keep listing "For this version, support this, for that version, support that". |
Re: Dialcentral 1.0
Maemo 5, DialCentral 1.0.9-1:
I'm getting an error message at the bottom of the screen when I hit "Dial": "There was a problem with GV: {'data': {'code': 20}, 'ok': False}" |
Re: Dialcentral 1.0
Quote:
|
All times are GMT. The time now is 09:09. |
vBulletin® Version 3.8.8