![]() |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Uppercase first letters at firts word, and after . ! ?
I've changed this function: Code:
def input(feed): |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
would it be possible that the keyb will appear when the device is vertical ? i mean that it will show with the accelerometer
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
great work Dr. P! |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
Code:
def input(feed): * just making the comparison more 1:1 ** new snippet more future proof, assuming user already pressed shift or caps lock. |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
vertsms.py Code:
import keypad Code:
import gtk BTW, any way you can package the raw .py file instead of the binary pyc? It's probably easier for people to help contribute without having to go to the gitorious page just to have a peak at the code. Plus, using a binary file prevents the above snippet from being practical :-P |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Im on UK Vodafone and have noticed that it will only send Txt to numbers that start with international code aswell ie
0044 then mobile number without the first 0 infront. Not a problem though as I will go through my entire address book and add them all if it means I can use this. Brilliant.. |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Wonderful. You should be employed by Nokia...
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Suggestions
That's all I can think of now. Oh and either use a database you create or use the existing Conversations database(that would be more desirable). If you use the Conversations database, maybe you could make it more like the Conversations app, so you can read SMS'es as well. |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
When you send a text message, you may need to set the Destination and Source Type of Number and/or Numbering Plan Indicator in the SMS PDU. See https://www.watchguard.com/help/docs..._smpp_faq.html. Look for smpp-submit-dest-addr-ton and smpp-submit-dest-addr-npi It's possible that right now that the Destination (and maybe Source) TON is not being set and picking up the default for the various providers, some of whom default to 1 (international) and some whom default to 4 (Subscriber Number). Alternatively, you may already be setting the TON and some operators are recognising and overriding the setting, some are not. My guess is that it's just the TON that might need changing and the NPI is fine. Another possibility is that when you send the message you send 00nnnnnnn instead of +nnnnnnnnn. IIRC, the + is the correct thing to send as it translates to "use international routing" in the switches. The 00 prefix does the same in most countries, but I don't think it's guaranteed, whereas + is. I am not 100% sure on the accuracy of this statement though :D. Cheers, Ben |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
First, MANY thanks to the OP and all those working on this project. I've been wanting something like this for a while but haven't had time to work on it. I may have time soon, and if so will jump in and try to get T9 working. :) But by all means if someone else has time before I do, please do add it!
Quote:
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
this is a great start,been using it today a few times.it has the potential to be as essential as fmms for all owners if we can get it to do what everyone works :) great work guys!!
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
I'll see the link through and try to decipher the table entries. it probably isn't a hard trick at all codewise but finding out the command is a challenge. |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
How about doing the numbers on long press?
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
almost there with conversations db. but I must go to sleep now.
only thing missing is proper formatting of time |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
cheers... tried your app today, very nice work. only one question/suggestion... when virtual keyboard is on, taping on text box automatically runs full keyboard in landscape... can't that be blocked in the app, or the only solution is disabling entirely virtual keyboard? thanks!
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
e: and status report to here too: after I get one string manipulated a bit, it should be writable to conversations database. if my tests today go well, storing sent messages to conversations should be available in git source today. |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
1 Attachment(s)
@Ossipena:
I've made some tweaks, cause this app rocks and tweaking your code helps me to learn a little more python Check this sh*t EDIT: another tweak: Added before: - Buttons type selection (lowercase, uppercase, numbers) - You can add receivers with buttons Added now: - Multiple receivers using space between numbers |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
BTW, I got a crude form of repeatedly deleting characters when the back button is held by connecting the backspace button to the "button-press-event" and "button-release-event" signals instead of connecting to the "pressed" signal and using that tap-and-hold stuff. The button-press-event handler will add a timeout function that calls the backspace function repeatedly after 150ms and the button-release-event handler will remove the timeout source from the main loop. Because my implementation of the idea is pretty **** (multiple characters deleted when only one should be if the button is not released quickly enough and it tends to delete an extra character), I won't insult you by uploading a patch but maybe a better idea could be developed from that. |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
Code:
__init__ (self, ...): |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Bump. Sorry, a slight oversight. Tried to fix above.
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
One more fix, just to be sure. An old timer could hang around longer than it should (like me!) without a button press ID comparison, or I'm just out smarting myself.
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
please could you put all the code things to
http://talk.maemo.org/showthread.php?t=51635 ? and lets keep this thread for feedback, feature requests etc. e: but thanks for those, I will integrate at least something to my code. |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Perhaps bugzilla.com would be a better place for bug/feature requests? Then at least, they could be voted on.
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
ok now we have bugzilla
https://bugs.maemo.org/buglist.cgi?q...rtSMS&content= and link to add a new bug: https://bugs.maemo.org/enter_bug.cgi?product=VertSMS |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
new version should be available either now or soon. please read warning from first post
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
I don't have a user at bugzilla, but may I suggest T9 as a feature request? Just so it's visible if anyone turns up who is up for the challenge of coding it.
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
i've just tried version 0.3!
it seems to work! i mean it did not screw up my phone, and after sending an sms it appeared in the conversations thread. but it didn't show conversations thread updated, i mean the thread didn't appear in the top of the list! i think the reason is that the thread was already there(old sms)! btw great work, i hope to see more update soon ;) |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
mmm for some strange reason thread appear on top list after few minutes! :O
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
I don't have a bugzilla account so thought I'd write here instead.
I have just installed the latest version, picked a number from contacts that started 07, wrote a message and sent it. I then got a warning telling me that numbers starting 07 need to be at least 11 digits. The number definately was 11 digits because I got it from my address book (I counted the digits too). I then went back to try and delete some numbers from the "to" field but pressing backspace deletes from the message window. To was definately selected because the onscreen keyboard popped up displaying the number. Is it possible to add ' to the 1 key too? I like to use correct punctuation where possible :) Edit: It's not possible to type a number in manually or edit it at all! Edit 2: All added to bugzilla |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
**sigh** I wish people would read the feature request page... Could you add a link to the first post ossipena?
BTW, T9 is proprietary, so it will most likely never be added. On the other hand, predictive text algorithms are a different story. In fact... one user has already written a crude implementation. |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
What the 0.3 is bringing ? there is nothing about it in the first post
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
I got recently a bugzilla section for this and it makes things easier: you don't have to read the entire thread through etc.. so please use bugzilla. list from everything submitted: https://bugs.maemo.org/buglist.cgi?q...rtSMS&content= I add this and direct link for reporting form to the first post now e: and there shouldn't be too much of a risk with the db, but it is not 100% proof so if rtcom-eventlogger writes stuff at the same time, db might get corrupted. I am thinking about doing the hard way and use the api meant for that. but it might take a LOT time... so if someone knows how to do it (know all the necessary info obivously because db write works but lack info how to do it via api. I am getting segmentation fault with my tries currently) please pm or post to vertsms thread in development -section. and api sends some dbus signals too what my sqlite function lacks so that probably is the reason why things don't get updated right away. |
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
|
Re: [ANNOUNCE] VertSMS - portrait sms'ing in extras-dev
Quote:
|
All times are GMT. The time now is 07:25. |
vBulletin® Version 3.8.8