Skip to content

Commit

Permalink
About box version changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mugunth committed May 4, 2014
1 parent 3f88988 commit a7579c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions ekalappai/about.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ About::About(QWidget *parent) :
ui(new Ui::About)
{
ui->setupUi(this);
this->setWindowTitle("About " + qApp->applicationName()+ " " + qApp->applicationVersion());
}

About::~About()
Expand Down
2 changes: 1 addition & 1 deletion ekalappai/about.ui
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<enum>Qt::NoContextMenu</enum>
</property>
<property name="windowTitle">
<string>About eKalappai v3.0</string>
<string/>
</property>
<widget class="QLabel" name="label">
<property name="geometry">
Expand Down
2 changes: 1 addition & 1 deletion ekalappai/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ int main(int argc, char *argv[])
QApplication app(argc, argv);

app.setApplicationName("eKalappai");
app.setApplicationVersion("3.1");
app.setApplicationVersion("3.0.2");

//Allow only one instance of eKalappai at any time
//This solution is based on solution provided in this article http://stackoverflow.com/questions/4087235/how-to-force-my-application-to-open-one-exe-only-qt-linux
Expand Down

4 comments on commit a7579c9

@arcturusannamalai
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be nice to have the various keyboard layouts as part of the jQuery-UI plugin from Open-Tamil. Currently we only have keymap for Tamil-99 at https://github.com/arcturusannamalai/open-tamil/tree/master/keyboard

@siraskalot
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Happy to create a github repo under thamizha for you if you would like to commit your code there?

I think this would be a useful tool, enabling tamil input on sites without the need for installing anything.

@arcturusannamalai
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@askalot Thanks for offer. One of our Ezhil-Lang projects use this plugin - see http://urbantamil.com - is just functional. Maybe someday we will have a swype keyboard for Tamil.

I would like to some efforts to pull out the keyboard layouts and the unicode mapping to be shared with these projects - i.e. open-tamil and ekalappai. I think Tamizhaa team is also behind the Mozilla keyboard and Android keyboard. Great work :-)

@siraskalot
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mugunth is there a common data format (JSON?) in which these keyboard layouts can be stored and shared? That would mean all projects use the same files and they are updated in one place ...

Please sign in to comment.