|
2012-06-11
, 22:13
|
|
Posts: 1,396 |
Thanked: 2,796 times |
Joined on Sep 2010
@ Caracas, Venezuela
|
#432
|
i guess he meant this??
i took it from whatsapp.com
"Custom Status
Tell everyone what's on your mind!"
|
2012-06-12
, 05:43
|
Posts: 270 |
Thanked: 45 times |
Joined on May 2010
@ UK
|
#433
|
|
2012-06-12
, 05:47
|
|
Posts: 304 |
Thanked: 266 times |
Joined on Apr 2011
@ Apeldoorn area, Netherlands
|
#434
|
|
2012-06-12
, 05:50
|
|
Posts: 1,396 |
Thanked: 2,796 times |
Joined on Sep 2010
@ Caracas, Venezuela
|
#435
|
The Following 12 Users Say Thank You to Scorpius For This Useful Post: | ||
|
2012-06-12
, 07:27
|
Posts: 30 |
Thanked: 19 times |
Joined on Apr 2010
@ Mumbai, India
|
#436
|
Next release has all the bugs you reported fixed (notification bugs, registration bugs), a new rendering scheme that allows clicking of the URLs, the smileys engine is ready but I haven't found a nice free for non-commercial use set of smileys I can use (we can't use Whatsapp emoticons as you know) but I have downloaded some sets.
And also basic chat history is already implemented, which works pretty well.
The weird auto-send on minimize bug is also fixed and I made a nice hack to send when you press enter using the virtual keyboard (before it just closed the keyboard and you had to press the send button after that).
People have to type their names now that will be used for some notifications. If you're upgrading Yappari will notice it and ask you just for the name. If you're installing it for the first time you have to type it when you register. You can change it anytime (though I haven't made a GUI for changing it yet).
Now Yappari sends "user is typing" and "user has stopped typing" to other users.
Hmm what else? There are some other things that escape me right now.
I'm sure you all will like it (and I'm sure it'll bring a hell lot of new bugs too).
I still have some bugs to fix though.
The Following User Says Thank You to dipen_sanghavi For This Useful Post: | ||
|
2012-06-12
, 08:09
|
|
Posts: 533 |
Thanked: 1,341 times |
Joined on Dec 2010
@ Italy
|
#437
|
I think I found a nice way and it renders fast, but there's still a lot to be done.
#include "mainwindow.h" #include "ui_mainwindow.h" MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); m_IgnoreChange = false; connect(ui->textEdit, SIGNAL(textChanged()), this, SLOT(textChangedSlot())); } MainWindow::~MainWindow() { delete ui; } void MainWindow::textChangedSlot() { if (m_IgnoreChange) return; QTextCursor cursor = ui->textEdit->textCursor(); m_IgnoreChange = true; QString text = ui->textEdit->toHtml(); //Here using regexp probably is better ;) text = text.replace(":)", "<img src=\"c:/Users/paolo/smiley/images/smile_1.png\"/>"); text = text.replace(":-)", "<img src=\"c:/Users/paolo/smiley/images/smile_1.png\"/>"); text = text.replace(";)", "<img src=\"c:/Users/paolo/smiley/images/ok.png\"/>"); text = text.replace(";-)", "<img src=\"c:/Users/paolo/smiley/images/ok.png\"/>"); text = text.replace(":D", "<img src=\"c:/Users/paolo/smiley/images/smile_7.png\"/>"); text = text.replace(":-D", "<img src=\"c:/Users/paolo/smiley/images/smile_7.png\"/>"); ui->textEdit->setHtml(text); ui->textEdit->setTextCursor(cursor); ui->textEdit->ensureCursorVisible(); m_IgnoreChange = false; }
The Following User Says Thank You to sakya For This Useful Post: | ||
|
2012-06-12
, 12:08
|
Posts: 463 |
Thanked: 103 times |
Joined on Jul 2010
@ Mumbai, India
|
#438
|
|
2012-06-12
, 14:03
|
Posts: 270 |
Thanked: 45 times |
Joined on May 2010
@ UK
|
#439
|
|
2012-06-12
, 14:50
|
Posts: 372 |
Thanked: 61 times |
Joined on Jan 2012
|
#440
|
Tags |
alpha, awesomeness, best_client, let_it_die, mumbai_dumbai, read_first_post, whatsapp |
|
i took it from whatsapp.com
"Custom Status
Tell everyone what's on your mind!"