Kopete/Roadmap: Difference between revisions

From KDE Community Wiki
*>Captainbeah
(add section for akonadi)
*>Captainbeah
(add done/not done makers)
Line 3: Line 3:
= For KDE 4.1 release (Kopete 1.0) =
= For KDE 4.1 release (Kopete 1.0) =


== Better protocol support ==
== Better protocol support (Status: not done) ==


* New Messenger plugin (with filetransfer working)
* New Messenger plugin (with filetransfer working)
* Telepathy plugin with support for text, voice and video channel.
* Telepathy plugin with support for text, voice and video channel.


== Model/View for Contact List ==
== Model/View for Contact List (Status: not done) ==


Storage abstraction is already in libkopete in SVN.
Storage abstraction is already in libkopete in SVN.
Line 15: Line 15:
* Implement funky KopeteContactListItemDelegate
* Implement funky KopeteContactListItemDelegate


== Improve usability ==
== Improve usability (Status: not done) ==


* Improve handling of status message, allow editing of previous status message
* Improve handling of status message, allow editing of previous status message
Line 21: Line 21:
* Respect HIG more
* Respect HIG more


== Full Identity support ==
== Full Identity support (Status: not done) ==
* Make accounts read/write user info from/to the identity instead of using their own myself() contacts.
* Make accounts read/write user info from/to the identity instead of using their own myself() contacts.
* PIM integration?
* PIM integration?
See more on IDENTITY_REFACTORY in kopete svn.
See more on IDENTITY_REFACTORY in kopete svn.


== Make use of the Command pattern for most tasks ==
== Make use of the Command pattern for most tasks (Status: not done) ==


We should keep that point in mind when refactoring the contact list handling. Some tasks could really use this pattern, like deleting a contact. Currently there is no way to be notified if the deletion of a contact went wrong. Most of the contacts tasks are implemented as methods of some classes, like Kopete::Contact::deleteContact which return.....void.
We should keep that point in mind when refactoring the contact list handling. Some tasks could really use this pattern, like deleting a contact. Currently there is no way to be notified if the deletion of a contact went wrong. Most of the contacts tasks are implemented as methods of some classes, like Kopete::Contact::deleteContact which return.....void.
Line 32: Line 32:
Using the Command pattern allow us to use signals for notification and encapsulate tasks into proper objects. One task, one object. Easier to maintain too.
Using the Command pattern allow us to use signals for notification and encapsulate tasks into proper objects. One task, one object. Easier to maintain too.


== Kross integration ==
== Kross integration (Status: done) ==


Kross is the new scripting engine for KDE4 that helps implement scripting support into an application. It supports multiple scripting languages like Python, Ruby and JavaScript(ECMAscript). It would be really nice to be able to write plugins as scripts.
Kross is the new scripting engine for KDE4 that helps implement scripting support into an application. It supports multiple scripting languages like Python, Ruby and JavaScript(ECMAscript). It would be really nice to be able to write plugins as scripts.
Line 38: Line 38:
There exist a working implementation including some samples in [http://websvn.kde.org/trunk/extragear/network/kopete-scripting/ extragear] now.
There exist a working implementation including some samples in [http://websvn.kde.org/trunk/extragear/network/kopete-scripting/ extragear] now.


== Strigi integration ==
== Strigi integration (Status: not done) ==


The first Strigi use in Kopete would be the history search.
The first Strigi use in Kopete would be the history search.


== Akonadi integration ==
== Akonadi integration (Status: not done) ==


We could use for history and for the contact list. Then history's Strigi would index the Akonadi backend.
We could use for history and for the contact list. Then history's Strigi would index the Akonadi backend.
Line 48: Line 48:
= For KDE 4.2 release (Kopete 1.1) =
= For KDE 4.2 release (Kopete 1.1) =


== Guest mode ==
== Guest mode (Status: not done) ==


Allow people other than the current user to use another IM account while not bloating the user settings, like a sandbox mode.
Allow people other than the current user to use another IM account while not bloating the user settings, like a sandbox mode.


== Full integration of Telepathy/Decibel ==
== Full integration of Telepathy/Decibel (Status: not done) ==


* Make Kopete protocols available as Telepathy connection manager
* Make Kopete protocols available as Telepathy connection manager

Revision as of 16:28, 10 February 2008

This roadmap is not meant to be rock solid. Things can move and nothing is final. It is just a tool to help us focus our priorities.

For KDE 4.1 release (Kopete 1.0)

Better protocol support (Status: not done)

  • New Messenger plugin (with filetransfer working)
  • Telepathy plugin with support for text, voice and video channel.

Model/View for Contact List (Status: not done)

Storage abstraction is already in libkopete in SVN.

  • Make the contact list model
  • Implement funky KopeteContactListItemDelegate

Improve usability (Status: not done)

  • Improve handling of status message, allow editing of previous status message
  • Polish UI being broken by Qt3->Qt4 migration
  • Respect HIG more

Full Identity support (Status: not done)

  • Make accounts read/write user info from/to the identity instead of using their own myself() contacts.
  • PIM integration?

See more on IDENTITY_REFACTORY in kopete svn.

Make use of the Command pattern for most tasks (Status: not done)

We should keep that point in mind when refactoring the contact list handling. Some tasks could really use this pattern, like deleting a contact. Currently there is no way to be notified if the deletion of a contact went wrong. Most of the contacts tasks are implemented as methods of some classes, like Kopete::Contact::deleteContact which return.....void.

Using the Command pattern allow us to use signals for notification and encapsulate tasks into proper objects. One task, one object. Easier to maintain too.

Kross integration (Status: done)

Kross is the new scripting engine for KDE4 that helps implement scripting support into an application. It supports multiple scripting languages like Python, Ruby and JavaScript(ECMAscript). It would be really nice to be able to write plugins as scripts.

There exist a working implementation including some samples in extragear now.

Strigi integration (Status: not done)

The first Strigi use in Kopete would be the history search.

Akonadi integration (Status: not done)

We could use for history and for the contact list. Then history's Strigi would index the Akonadi backend.

For KDE 4.2 release (Kopete 1.1)

Guest mode (Status: not done)

Allow people other than the current user to use another IM account while not bloating the user settings, like a sandbox mode.

Full integration of Telepathy/Decibel (Status: not done)

  • Make Kopete protocols available as Telepathy connection manager
  • Separate libkopete into libkopete_protocols and libkopete_app (of course

with a better name)

The general consensus of everyone was that Kopete will to move to full Telepathy support in the near future. But currently the Telepathy spec and Decibel are not mature enough for our needs. We need to prepare for that move because most people want to keep a BC during Kopete 1.0 period.

Will is going to look into making our protocols available as connection manager.

Why should we split libkopete? Because some code in libkopete is related to the application itself (and plugins) and others are related to protocol implementation. If we want to be more efficient and have a core library easier to maintain, we should split the library to have two distinct missions, manage the application, and help to implement the protocols.

The plan is also to move most of code in Telepathy plugin into the core and make use of Decibel (which the Telepathy plugin doesn't use).