|
#121
|
||||
|
||||
|
Quote:
I heard there is a nosy journalist going through our apps, so I thought I'd hurry a bit with my updates. No, seriously, I really love your initiative 3vil7ree! I think it's great what you are doing for the X-Fi2 community, and it also stimulates me a bit to get the work done ![]() So, I have a new update! First thing you will notice is that the images have changed. Thanks to Habhomeīs knowledge and advice I spend some time Gimp'in and I've finally created my own images . (okay there are three images left.. Iīll create them myself later. Itīs just that Iīve been working all day on this update and I wanted to upload what I have thusfar.)I've revised almost the whole code, especially the main loop got a total makeover. Besides some possible improvents I think it's now also better readable for others, since this time I didn't care about the amount of lines the main.lua would get . Which is also because I learned that the size of the main.lua file only influences the startup speed of the app, and not the speed while it's running.. (which I also have to thank Habhome for)The sms keyboard is still not really looking how I want it to be, but at least it's more functional now. I added the shift functionality, and you can now also do enters with it. It's now also possible to place the cursor somewhere in smsmode by tapping (I think the code revising/cleanup did wonders, because before I got weird errors with this (like I posted before)). I have to apologize for the bad wordwrapping I did before.. there were some really unnecessary bugs in it. The wordwrapping is much better now, and if anyone still finds some bugs, please discribe them carefully and Iīll look into it. I added an option: "new file" in main menu. While using the app I found that this was necessary. New feature: Copy-paste can be accessed when you hold the screen above the keyboard, and also only when the keyboard is shown. After the keys have disappeared, you can select text by moving your finger from RIGHT to LEFT. The selected text will be highlighted, and then you can click on "copy" or "cut". To paste the text, place the cursor somewhere and hold the screen at the same place, and then tap "paste". For now, itīs only possible to select text from right to left, and also one line at a time.. I want to make it possible to select multiple lines, but I have to think about that some more.. again, it's just that I wanted to upload what I have thusfar, and I'm hoping to make this copy paste functionality a lot more user friendly later on. |
|
|
|||
|
|
|
#122
|
||||
|
||||
|
I have to say that this is amazing. I perceive the app as much smoother now, and the menu is looking much better.
I agree that the SMS keyboard need some graphical improvements, it doesn't really fit into the X-Fi2 design which the other keys do. Unfortunately it's too late right now for me to do any extensive testing to try and catch those pesky bugs, but I'll play around with it tomorrow if I get time. One thing which I've seen in all your versions so far is that when you change the settings of colors it isn't really changed until you exit the entire menu structure. It's a minor thing, but it'd provide a greater preview of at least the key colors. And I'm glad to see you appreciate my advice, I just try to share what little I do know, I am still in training myself. So don't take my word for precisely everything I say, but I'm usually right =P
__________________
"If you are good enough at English to apologize, then there is no need to." - A good friend of mine Discovered something about the X-Fi2 you think others may not know? Post it here so others can learn about it! Have a question about X-Fi2 apps? Consult the FAQ before creating a thread about it. Like my work? Tell your friends. Don't like it? Tell me so I can improve. ^.^ |
|
#123
|
||||
|
||||
|
I too agree with Habhome about how the SMS style keyboard doesn't fit into the X-Fi2 design, but this app just keeps getting better and better! Keep up the fantastic work!
|
|
#124
|
||||
|
||||
|
Bugtesting time!
I did some bug testing on this by simply writing the bug report with the application itself, and adding some gibberish writing to actually find something to comment about ofc =P. Unfortunately it's not very well formatted in the saved .txt, though I'll test and see how it looks if I paste it into here: (The many empty lines are left as is due to it being a bug I mention) Quote:
__________________
"If you are good enough at English to apologize, then there is no need to." - A good friend of mine Discovered something about the X-Fi2 you think others may not know? Post it here so others can learn about it! Have a question about X-Fi2 apps? Consult the FAQ before creating a thread about it. Like my work? Tell your friends. Don't like it? Tell me so I can improve. ^.^ Last edited by Habhome; 04-13-2010 at 09:25 AM. |
|
#125
|
||||
|
||||
|
Glad you like it! Thanks for the compliments
![]() Quote:
I already found some "known issues" myself: The cursor is not always at the place you're actually typing. And also tapping the screen to write the letter in smsmode interferes with the placing of the cursor.. I'm working on those ![]() EDIT: Thank you very much for such an extensive testing! Although I couldn't fix everything (I've been working on it for a few hours today) I'll keep the unfixed issues in a "todo-list" ![]() 1; I wrote the exact same text you wrote (cool story by the way, you should write fairytales ) and I noticed it too. Thing is, when special keyboard is shown, the area where you can cursortap is smaller, so I thought of doing just if y<spd then cursortap, and have the value of "spd" change when you toggle special/normal keys. So after pondering a while it came to me that this spd is not changed when special keyboard is automatically turned back to normal keyboard by type assistance. So that's it! Fixed (at least, if Quote:
2;I added something to the backspace function to take the temporary caps down when you have deleted a period, question mark or exclamation mark, and if that was the last one; so in case you have typed multiple periods or question marks and you want to delete one, the autocaps is still there. Now I'm wondering, is it allowed to start with a capital after a number of periods? Like this... This "T" shouldn't be a capital, or should it? Right now the app writes a capital in this situation, but I suspect that it's better if it doesn't do that. Because... this "t" looks better to me. I'm not sure, what do you think? Letters are now drawn on the smskeyboard by the app, which is also easier for me and it displays caps when needed.3;I don't think you would want the wordwrapping done while in portrait view to also appear in normal view, because then you would still have the shorter sentences from the portraitview? But I see the point with the new lines not being remembered. That's something I have to think about some more.. I don't really understand this one: Quote:
And hiding the keyboard shouldn't activate any wrapping, so am I understanding you correctly here? 4;Hmm.. hard one. I think it's an error in the way the lines are "recovered" when switching from portraitmode to normal view. You see, I need a way to have the app remember where the enters were when you switch to portraitmode and have everything wrapped, in order to restore those lines when switching back to normal view. (I tried it without restoring, just rewrapping, but then all enters are gone after switching normal-portrait-normal). The way the app does this now, is by adding "\n" after each line, keeping it there while in portraitmode, and when you switch back it goes searching for the "\n's" and cuts lines there. That's also the reason why new lines added in portraitmode aren't remembered.. and also the reason why new characters appear a little further than the cursor when you type at the end of an orginal line. (because the \n is there I think.) So I have to think of another way to have the app remember where the enters were, but with the possibility to add new enters while in portraitmode... oh man I'm making this app really hard for myself ![]() Note: fixes/updates described above are not uploaded yet... version 2.71 will be uploaded later. I'm in the process of fixing these bugs and some of them are not ready yet. Last edited by Brett_val; 04-13-2010 at 04:04 PM. |
|
#126
|
||||||||
|
||||||||
|
Quote:
Quote:
I don't remember what character I added after saving, it can have been a dot/comma or a letter, I don't remember at all. Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
- - - - - - - - - After thinking back I now remember another thing I pondered about, and that is the scrollbar. It is too big and to scroll all the way down you have to take the bar outside of the screen. You can scroll all the way down, but it's not aesthetic and I think it's hindering the functionality slightly =P
__________________
"If you are good enough at English to apologize, then there is no need to." - A good friend of mine Discovered something about the X-Fi2 you think others may not know? Post it here so others can learn about it! Have a question about X-Fi2 apps? Consult the FAQ before creating a thread about it. Like my work? Tell your friends. Don't like it? Tell me so I can improve. ^.^ Last edited by Habhome; 04-13-2010 at 05:49 PM. |
|
#127
|
|||||
|
|||||
|
Quote:
. Even short descriptions will point me in a direction, and give me an idea what could not be working right.I tried searching for spelling rules on periods but I couldn't really find it.. for now I'll assume that when the user types multiple periods, he/she doesn't want to abort the sentence, and take the caps down. Quote:
Quote:
Quote:
.Quote:
|
|
#128
|
||||
|
||||
|
New update: v2.71
I think I almost fixed all the bugs while changing normal-to-portrait-and-back. I didn't test it to the full extent yet, but I was so excited that I wanted to show the new version to you guys. Also, version 2.71 has the new sms-keyboard, but it doesn't support the custom buttoncolors yet.. |
|
#129
|
|||
|
|||
|
You know, what you should add?
Volume control and an option to turn off SMS-keyboard(That mode...portrait one..) And an idea... Change placing of the menu key...remove it from the keyboard and put it to home button...(Hold home button for menu.) These should be 10 min of work...(Time it took me to do it...) |
|
#130
|
||||
|
||||
|
Quote:
What do you mean with "turn off"? You can hide the sms keyboard with the down arrow shown above the keys. Why remove the menu button? It will just leave an empty spot. Besides, hold-homenbutton should be used to access volume control. |
|
#131
|
||||
|
||||
|
Quote:
pics for what? Or, you mean a bin file?
|
|
#132
|
||||
|
||||
|
Quote:
Keep up the good work..
|
|
#133
|
|||
|
|||
|
Hey brett val
every things fine but the buttons the problem just increase the button size it will help make it type fast and if we save in portrait view is shows error in save file |
|
#134
|
||||
|
||||
|
Not sure what you mean by error in save file, did it get corrupted? It should save the current file the same way in both viewing modes (when autosave is enabled).
As for the size of the buttons, they could be bigger but then you'd have very little space for the actual text, so this was the compromise I made. For faster typing there's the sms-style keyboard, maybe that helps?
__________________
this is a link to my personal homepage which I haven't |
|
#135
|
|||
|
|||
|
When I have my player the normal landscape orientation, the keys are the correct way up. If I rotate the player, the 'phone' keyboard is displayed.
But, if I hold the x-fi upside down, the KEYBOARD IS THE WRONG WAY!!! |
|
#136
|
||||
|
||||
|
Quote:
On a more serious note; the Zen can only do landscape (0 degrees) and portrait (90 degrees). 180 and 270 degrees don't work.
__________________
this is a link to my personal homepage which I haven't |
|
#137
|
|||
|
|||
|
For the layout use the ipod's layout
Its easy to type |
|
#138
|
|||
|
|||
|
Can there be a menu on startup?
|
|
#139
|
||||
|
||||
|
Pictures? Any more arguments WHY it is easier? The more thought through feedback you provide the more people will listen.
AS above, more thought through feedback. What would be in said menu? Why is it necessary? There's no menu when you open Notepad in Windows, or most other text-editors for that matter, why would this one need it?
__________________
"If you are good enough at English to apologize, then there is no need to." - A good friend of mine Discovered something about the X-Fi2 you think others may not know? Post it here so others can learn about it! Have a question about X-Fi2 apps? Consult the FAQ before creating a thread about it. Like my work? Tell your friends. Don't like it? Tell me so I can improve. ^.^ |
|
#140
|
|||
|
|||
|
did anyone else get an error in opening the app in the zen xfi2? it starts to show then it says "an error occurred". is there anything i can do to make it work?
|
![]() |
| Tags |
| application, notepad, x-fi 2 |
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
All times are GMT -5. The time now is 07:47 PM.












. (okay there are three images left.. Iīll create them myself later. Itīs just that Iīve been working all day on this update and I wanted to upload what I have thusfar.)
. Which is also because I learned that the size of the main.lua file only influences the startup speed of the app, and not the speed while it's running.. (which I also have to thank Habhome for)

pics for what? Or, you mean a bin file?

Linear Mode
