[SCM] ktp-accounts-kcm packaging branch, master, updated. debian/15.12.1-1-1157-gc4589c5

Maximiliano Curia maxy at moszumanska.debian.org
Sat May 28 00:02:23 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-accounts-kcm.git;a=commitdiff;h=656bb30

The following commit has been merged in the master branch:
commit 656bb305129ad648c32a10574aa0fbbb477ee5f4
Author: David Edmundson <kde at davidedmundson.co.uk>
Date:   Thu Jul 26 12:13:38 2012 +0100

    Disable creation of IRC accounts in the GUI
    
    This was a team decision that IRC support in KTp is not comparable to Konversation/Quassel and therefore we should just disable it.
---
 src/KCMTelepathyAccounts/profile-list-model.cpp | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/src/KCMTelepathyAccounts/profile-list-model.cpp b/src/KCMTelepathyAccounts/profile-list-model.cpp
index 458916e..35ced7c 100644
--- a/src/KCMTelepathyAccounts/profile-list-model.cpp
+++ b/src/KCMTelepathyAccounts/profile-list-model.cpp
@@ -156,6 +156,19 @@ void ProfileListModel::populateList()
             continue;
         }
 
+        //Hide all IRC accounts
+        //this is a deliberate decision from Akademy meeting 2012
+        //"no, we don't support IRC", it's a different usage and in order to have a semi-decent IRC experience 
+        //we need to add a lot more that we simply don't have resources to do.
+        //It's a better user experience to learn how to use a different app than to try using this.
+        
+        //Remove this "continue" to re-enable IRC support, for personal reasons or hacking
+        //this topic can be discussed again as of July 2013
+        
+        if(profile->serviceName() == QLatin1String("irc")) {
+                continue;
+        }
+
         insertItems.append(new ProfileItem(profile, this));
     }
 

-- 
ktp-accounts-kcm packaging



More information about the pkg-kde-commits mailing list