Re: Old versions of our software in Bugzilla

2022-09-06 Thread Ömer Fadıl USTA
My suggestion is to write a chrome/firefox extension or even better
integrate it into plasma-integration-extension
(firefox/chrome extension) that will fill related info when they enter
bugs.kde.org so even they wont need to know
what version of KDE Plasma/KDE Frameworks/KDE Gears version are they using.
Also a good Bug reporting tool in KDE Gears with a good GUI will be perfect
[ other than drkonqi ] which can help
newbie users to bug reporting more comfortable

Ömer Fadıl Usta
PGP key : 0xfd11561976b1690b
about.me/omerusta


Nate Graham , 7 Eyl 2022 Çar, 00:41 tarihinde şunu yazdı:

> Greetings folks,
>
> A while back we removed the versions on bugs.kde.org for older,
> unsupported versions of our products, in the hope that this would
> discourage users from filing bugs if they are using those versions.
>
> Unfortunately this does not appear to have worked, and instead people
> file bugs with the version number field just set completely wrong, so
> now it's harder to tell when they've submitted a bug while using an old
> unsupported version.
>
> I would recommend in the short term that we re-add the old versions to
> alleviate this issue.
>
> In the medium term, I would like to extend the bugzilla bot to post a
> comment on bug reports filed against old unsupported versions
> recommending that the reporter instead ask their distro for support.
>
>
> Nate
>


Re: Can we remove or quiet down the commit bot in the chatrooms

2021-05-19 Thread Ömer Fadıl USTA
or we can move those bots to some other channels like #xyz-commits (e.g.
#plasma-commits )

Ömer Fadıl Usta
PGP key : 0xfd11561976b1690b
about.me/omerusta


Aleix Pol , 20 May 2021 Per, 02:56 tarihinde şunu yazdı:

> On Wed, May 19, 2021 at 8:38 PM Nate Graham  wrote:
> >
> > I find it rather difficult to use #plasma for chats and discussions
> > because of the near-constant spam from the commit announcement bot.
> >
> > It's not that it's useless to have commits announced, but when it
> > happens in a room where humans are interacting, it's rather disruptive
> > and spammy. Maybe we could move the bot into a dedicated commit announce
> > room so that the people who care about this can still see the
> > announcements there?
> >
> > Alternatively could we change the bot so that it sends one message for
> > each commit instead of like 4 or 5?
>
> I'd say we can probably remove it entirely?
>
> Aleix
>


D29847: Fixes compile problem for freebsd because of missing crypt.h

2020-06-07 Thread Ömer Fadıl Usta
usta added a comment.


  In D29847#674807 , @adridg wrote:
  
  > https://invent.kde.org/adridg/plasma-desktop/-/tree/normalize-includes
  >
  > There's already a CMake-time check for ``, it's just not used. 
(`HAVE_CRYPT_H`)
  
  
  @adridg having or not having crypt_h I think won't solve this problem because 
it looks like Linux needs it on the other hand BSD system doesn't have it and 
use unistd.h
  instead of crypt.h so doesn't we still need to check if the system is linux 
or not ? I have almost 0 knowledge about bsd systems so i think anyone who has 
knowledge 
  on this topic might be more suitable for this patch request. ( at first, I 
have just think about freebsd and now i can see there are other alternatives 
(net,open,... bsd has similar issue ) )

REPOSITORY
  R119 Plasma Desktop

REVISION DETAIL
  https://phabricator.kde.org/D29847

To: usta, #plasma, bcooksley, ngraham, adridg, #freebsd
Cc: tcberner, adridg, plasma-devel, Orage, LeGast00n, The-Feren-OS-Dev, cblack, 
jraleigh, zachus, fbampaloukas, ragreen, ZrenBot, ngraham, himcesjf, 
lesliezhai, ali-mohamed, jensreuterberg, abetts, arrowd, sebas, apol, 
ahiemstra, mart


D29847: Fixes compile problem for freebsd because of missing crypt.h

2020-06-07 Thread Ömer Fadıl Usta
usta added a comment.


  or if this is just for linux think we can make it just directly 
  if defined(Q_OS_LINUX)

REPOSITORY
  R119 Plasma Desktop

REVISION DETAIL
  https://phabricator.kde.org/D29847

To: usta, #plasma, bcooksley, ngraham, adridg, #freebsd
Cc: tcberner, adridg, plasma-devel, Orage, LeGast00n, The-Feren-OS-Dev, cblack, 
jraleigh, zachus, fbampaloukas, ragreen, ZrenBot, ngraham, himcesjf, 
lesliezhai, ali-mohamed, jensreuterberg, abetts, arrowd, sebas, apol, 
ahiemstra, mart


D29847: Fixes compile problem for freebsd because of missing crypt.h

2020-06-07 Thread Ömer Fadıl Usta
usta updated this revision to Diff 83237.
usta added a project: FreeBSD.

REPOSITORY
  R119 Plasma Desktop

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D29847?vs=83235=83237

REVISION DETAIL
  https://phabricator.kde.org/D29847

AFFECTED FILES
  kcms/users/src/user.cpp

To: usta, #plasma, bcooksley, ngraham, adridg, #freebsd
Cc: tcberner, adridg, plasma-devel, Orage, LeGast00n, The-Feren-OS-Dev, cblack, 
jraleigh, zachus, fbampaloukas, ragreen, ZrenBot, ngraham, himcesjf, 
lesliezhai, ali-mohamed, jensreuterberg, abetts, arrowd, sebas, apol, 
ahiemstra, mart


D29847: Fixes compile problem for freebsd because of missing crypt.h

2020-06-07 Thread Ömer Fadıl Usta
usta added a comment.


  Sorry i have written one of them twice , so is this aproach wrong ?
  #if !defined(Q_OS_UNIX) && !defined(Q_OS_BSD4) && !defined(Q_OS_FREEBSD) && 
!defined(Q_OS_NETBSD) && !defined(Q_OS_OPENBSD)

REPOSITORY
  R119 Plasma Desktop

REVISION DETAIL
  https://phabricator.kde.org/D29847

To: usta, #plasma, bcooksley, ngraham, adridg, #freebsd
Cc: tcberner, adridg, plasma-devel, Orage, LeGast00n, The-Feren-OS-Dev, cblack, 
jraleigh, zachus, fbampaloukas, ragreen, ZrenBot, ngraham, himcesjf, 
lesliezhai, ali-mohamed, jensreuterberg, abetts, sebas, apol, ahiemstra, mart


D29847: Fixes compile problem for freebsd because of missing crypt.h

2020-06-07 Thread Ömer Fadıl Usta
usta added inline comments.

INLINE COMMENTS

> tcberner wrote in user.cpp:23
> wouldn't it be a bit more portable to check for the header file in cmake? 
> (OpenBSD also has the same issue, I would assume from [1])
> 
> [1] 
> https://www.freebsd.org/cgi/man.cgi?query=crypt=0=3=OpenBSD+6.7=default=html

I never think about openbsd , yes you are right about it. So how about if we 
use something like :
#if !defined(Q_OS_UNIX) && !defined(Q_OS_BSD4) && !defined(Q_OS_FREEBSD) && 
!defined(Q_OS_FREEBSD) && !defined(Q_OS_NETBSD) && !defined(Q_OS_OPENBSD)

REPOSITORY
  R119 Plasma Desktop

REVISION DETAIL
  https://phabricator.kde.org/D29847

To: usta, #plasma, bcooksley, ngraham, adridg, #freebsd
Cc: tcberner, adridg, plasma-devel, Orage, LeGast00n, The-Feren-OS-Dev, cblack, 
jraleigh, zachus, fbampaloukas, ragreen, ZrenBot, ngraham, himcesjf, 
lesliezhai, ali-mohamed, jensreuterberg, abetts, sebas, apol, ahiemstra, mart


D29847: Fixes compile problem for freebsd because of missing crypt.h

2020-06-06 Thread Ömer Fadıl Usta
usta created this revision.
usta added reviewers: Plasma, bcooksley.
Herald added a project: Plasma.
Herald added a subscriber: plasma-devel.
usta requested review of this revision.

REVISION SUMMARY
  Freebsd compile is not working last 17 days because of missing crypt.h
  crypt method is in unistd.h for freebsd so we dont need it
  and also I am not sure whether freebsd has crypt.h or not.
  
  can somebody with freebsd try this patch ?

REPOSITORY
  R119 Plasma Desktop

REVISION DETAIL
  https://phabricator.kde.org/D29847

AFFECTED FILES
  kcms/users/src/user.cpp

To: usta, #plasma, bcooksley
Cc: plasma-devel, Orage, LeGast00n, The-Feren-OS-Dev, cblack, jraleigh, zachus, 
fbampaloukas, ragreen, ZrenBot, ngraham, himcesjf, lesliezhai, ali-mohamed, 
jensreuterberg, abetts, sebas, apol, ahiemstra, mart


Re: KDE CI: Administration » Dependency Build Plasma kf5-qt5 SUSEQt5.12 - Build # 95 - Failure!

2020-03-24 Thread Ömer Fadıl USTA
Ben Cooksley , 25 Mar 2020 Çar, 07:48 tarihinde şunu
yazdı:

> The Dependency Build says plasma-desktop is broken.
>
> Ideas anyone?
>
> Hello ben, It looks like this will solve that problem :
https://phabricator.kde.org/D28232
Could you apply that patch and try if it fixes the problem?

And the problem is here :

*06:24:21*  /home/jenkins/workspace/Administration/Dependency Build
Plasma kf5-qt5 
SUSEQt5.12/plasma-desktop/kcms/spellchecking/spellchecking.cpp:69:119:
error: no matching function for call to
���QSet::QSet(QList::iterator,
QList::iterator)���*06:24:21* 69 | QSet
defaultPreferredLanguages(defaultPreferredLanguagesList.begin(),
defaultPreferredLanguagesList.end());*06:24:21*|

 ^*06:24:21*  In file included from
/usr/include/qt5/QtCore/QSet:1,*06:24:21*   from
/home/jenkins/workspace/Administration/Dependency Build Plasma kf5-qt5
SUSEQt5.12/plasma-desktop/kcms/spellchecking/spellchecking.cpp:27:*06:24:21*
 /usr/include/qt5/QtCore/qset.h:61:12: note: candidate:
���QSet::QSet(std::initializer_list<_Tp>) [with T =
QString]���*06:24:21* 61 | inline
QSet(std::initializer_list list)*06:24:21*|
^~~~*06:24:21*  /usr/include/qt5/QtCore/qset.h:61:12: note:
candidate expects 1 argument, 2 provided*06:24:21*
/usr/include/qt5/QtCore/qset.h:59:12: note: candidate:
���QSet::QSet() [with T = QString]���*06:24:21* 59 | inline
QSet() Q_DECL_NOTHROW {}*06:24:21*|^~~~*06:24:21*
/usr/include/qt5/QtCore/qset.h:59:12: note:   candidate expects 0
arguments, 2 provided*06:24:21*  /usr/include/qt5/QtCore/qset.h:54:7:
note: candidate: ���QSet::QSet(const
QSet&)���*06:24:21* 54 | class QSet*06:24:21*|
   ^~~~*06:24:21*  /usr/include/qt5/QtCore/qset.h:54:7: note:
candidate expects 1 argument, 2 provided*06:24:21*
/usr/include/qt5/QtCore/qset.h:54:7: note: candidate:
���QSet::QSet(QSet&&)���*06:24:21*
/usr/include/qt5/QtCore/qset.h:54:7: note:   candidate expects 1
argument, 2 provided*06:24:21*  Scanning dependencies of target
kded_touchpad*06:24:21*  [ 66%] Building CXX object
kcms/touchpad/src/CMakeFiles/kded_touchpad.dir/kded_touchpad_autogen/mocs_compilation.cpp.o*06:24:21*
 make[2]: *** [kcms/spellchecking/CMakeFiles/kcmspellchecking.dir/build.make:89:
kcms/spellchecking/CMakeFiles/kcmspellchecking.dir/spellchecking.cpp.o]
Error 1*06:24:21*  make[1]: *** [CMakeFiles/Makefile2:7597:
kcms/spellchecking/CMakeFiles/kcmspellchecking.dir/all] Error
2*06:24:21*  make[1]: *** Waiting for unfinished jobs


D27503: [KCM Spellchecking] port to KPropertySkeletonItem

2020-03-23 Thread Ömer Fadıl Usta
usta added a comment.


  Not just include problem but also got a problem about new Qt version :
  
  [ 64%] Linking CXX shared module ../../bin/kcm_notifications.so
  /home/usta/kde/src/plasma-desktop/kcms/spellchecking/spellchecking.cpp: In 
member function ‘void SonnetSpellCheckingModule::stateChanged()’:
  /home/usta/kde/src/plasma-desktop/kcms/spellchecking/spellchecking.cpp:58:74: 
error: no matching function for call to 
‘QSet::QSet(QList::iterator, QList::iterator)’
  
58 | QSet refIgnoreSet(refIgnoreList.begin(), 
refIgnoreList.end());
   |
  ^
  
  In file included from /usr/include/qt5/QtCore/QSet:1,
  
from 
/home/usta/kde/src/plasma-desktop/kcms/spellchecking/spellchecking.cpp:27:
  
  /usr/include/qt5/QtCore/qset.h:61:12: note: candidate: 
‘QSet::QSet(std::initializer_list<_Tp>) [with T = QString]’
  
61 | inline QSet(std::initializer_list list)
   |^~~~
  
  /usr/include/qt5/QtCore/qset.h:61:12: note:   candidate expects 1 argument, 2 
provided
  /usr/include/qt5/QtCore/qset.h:59:12: note: candidate: ‘QSet::QSet() [with 
T = QString]’
  
59 | inline QSet() Q_DECL_NOTHROW {}
   |^~~~
  
  /usr/include/qt5/QtCore/qset.h:59:12: note:   candidate expects 0 arguments, 
2 provided
  /usr/include/qt5/QtCore/qset.h:54:7: note: candidate: 
‘QSet::QSet(const QSet&)’
  
54 | class QSet
   |   ^~~~
  
  /usr/include/qt5/QtCore/qset.h:54:7: note:   candidate expects 1 argument, 2 
provided
  /usr/include/qt5/QtCore/qset.h:54:7: note: candidate: 
‘QSet::QSet(QSet&&)’
  /usr/include/qt5/QtCore/qset.h:54:7: note:   candidate expects 1 argument, 2 
provided
  /home/usta/kde/src/plasma-desktop/kcms/spellchecking/spellchecking.cpp:59:86: 
error: no matching function for call to 
‘QSet::QSet(QList::iterator, QList::iterator)’
  
59 | QSet currentIgnoreSet(currentIgnoreList.begin(), 
currentIgnoreList.end());
   |
  ^
  
  In file included from /usr/include/qt5/QtCore/QSet:1,
  
from 
/home/usta/kde/src/plasma-desktop/kcms/spellchecking/spellchecking.cpp:27:
  
  /usr/include/qt5/QtCore/qset.h:61:12: note: candidate: 
‘QSet::QSet(std::initializer_list<_Tp>) [with T = QString]’
  
61 | inline QSet(std::initializer_list list)
   |^~~~
  
  /usr/include/qt5/QtCore/qset.h:61:12: note:   candidate expects 1 argument, 2 
provided
  /usr/include/qt5/QtCore/qset.h:59:12: note: candidate: ‘QSet::QSet() [with 
T = QString]’
  
59 | inline QSet() Q_DECL_NOTHROW {}
   |^~~~
  
  /usr/include/qt5/QtCore/qset.h:59:12: note:   candidate expects 0 arguments, 
2 provided
  /usr/include/qt5/QtCore/qset.h:54:7: note: candidate: 
‘QSet::QSet(const QSet&)’
  
54 | class QSet
   |   ^~~~
  
  /usr/include/qt5/QtCore/qset.h:54:7: note:   candidate expects 1 argument, 2 
provided
  /usr/include/qt5/QtCore/qset.h:54:7: note: candidate: 
‘QSet::QSet(QSet&&)’
  /usr/include/qt5/QtCore/qset.h:54:7: note:   candidate expects 1 argument, 2 
provided
  /home/usta/kde/src/plasma-desktop/kcms/spellchecking/spellchecking.cpp:60:86: 
error: no matching function for call to 
‘QSet::QSet(QList::iterator, QList::iterator)’
  
60 | QSet defaultIgnoreSet(defaultIgnoreList.begin(), 
defaultIgnoreList.end());
   |
  ^
  
  In file included from /usr/include/qt5/QtCore/QSet:1,
  
from 
/home/usta/kde/src/plasma-desktop/kcms/spellchecking/spellchecking.cpp:27:
  
  /usr/include/qt5/QtCore/qset.h:61:12: note: candidate: 
‘QSet::QSet(std::initializer_list<_Tp>) [with T = QString]’
  
61 | inline QSet(std::initializer_list list)
   |^~~~
  
  /usr/include/qt5/QtCore/qset.h:61:12: note:   candidate expects 1 argument, 2 
provided
  /usr/include/qt5/QtCore/qset.h:59:12: note: candidate: ‘QSet::QSet() [with 
T = QString]’
  
59 | inline QSet() Q_DECL_NOTHROW {}
   |^~~~
  
  /usr/include/qt5/QtCore/qset.h:59:12: note:   candidate expects 0 arguments, 
2 provided
  /usr/include/qt5/QtCore/qset.h:54:7: note: candidate: 
‘QSet::QSet(const QSet&)’
  
54 | class QSet
   |   ^~~~
  
  /usr/include/qt5/QtCore/qset.h:54:7: note:   candidate expects 1 argument, 2 
provided
  /usr/include/qt5/QtCore/qset.h:54:7: note: candidate: 
‘QSet::QSet(QSet&&)’
  /usr/include/qt5/QtCore/qset.h:54:7: note:   candidate expects 1 argument, 2 
provided
  
/home/usta/kde/src/plasma-desktop/kcms/spellchecking/spellchecking.cpp:67:107: 
error: no matching function for call to 
‘QSet::QSet(QList::iterator, QList::iterator)’
  
67 | QSet 
refPreferredLanguages(refPreferredLanguagesList.begin(), 
refPreferredLanguagesList.end());
   |
   

D27661: wireguard: Trim IP list before submitting to NM

2020-02-25 Thread Ömer Fadıl Usta
usta added inline comments.

INLINE COMMENTS

> wireguardpeerwidget.cpp:197
> +
> +for (QString  : rawIPList) {
> +ipList.append(ip.trimmed());

const

REPOSITORY
  R116 Plasma Network Management Applet

REVISION DETAIL
  https://phabricator.kde.org/D27661

To: hexchain, jgrulich
Cc: usta, plasma-devel, Orage, LeGast00n, The-Feren-OS-Dev, cblack, jraleigh, 
zachus, fbampaloukas, GB_2, ragreen, ZrenBot, ngraham, himcesjf, lesliezhai, 
ali-mohamed, jensreuterberg, abetts, sebas, apol, ahiemstra, mart


D27611: Invert logic of shouldShowMountPoint -> ignoreMountPoint

2020-02-23 Thread Ömer Fadıl Usta
usta added a comment.


  2 Question : 
  1- isnt that method should be const'ified ? 
  2- also its name will be much better isIgnoreableMountPoint (or something can 
be more understandable
  that it will just return true or false ) becase right now it looks like
  "ignore that mount point"

REPOSITORY
  R119 Plasma Desktop

REVISION DETAIL
  https://phabricator.kde.org/D27611

To: bruns, #baloo, ngraham
Cc: usta, plasma-devel, Orage, LeGast00n, The-Feren-OS-Dev, cblack, jraleigh, 
zachus, fbampaloukas, GB_2, ragreen, ZrenBot, ngraham, himcesjf, lesliezhai, 
ali-mohamed, jensreuterberg, abetts, sebas, apol, ahiemstra, mart


D27412: Port away from deprecated API on Qt 5.15.0

2020-02-14 Thread Ömer Fadıl Usta
usta added a comment.


  isnt this also needs #include 

REPOSITORY
  R871 DrKonqi

BRANCH
  master

REVISION DETAIL
  https://phabricator.kde.org/D27412

To: apol, #frameworks, davidedmundson, sitter
Cc: usta, plasma-devel, Orage, LeGast00n, The-Feren-OS-Dev, cblack, jraleigh, 
zachus, fbampaloukas, GB_2, ragreen, ZrenBot, ngraham, alexeymin, himcesjf, 
lesliezhai, ali-mohamed, jensreuterberg, abetts, sebas, apol, ahiemstra, mart


Re: KDE CI: Administration » Dependency Build Plasma stable-kf5-qt5 SUSEQt5.12 - Build # 46 - Still Failing!

2019-08-10 Thread Ömer Fadıl USTA
https://phabricator.kde.org/D22976

On Fri, Aug 9, 2019, 23:21 Ben Cooksley  wrote:

> Hi folks,
>
> Could someone please look into the below QMutex include problem within
> plasma-workspace?
>
> Thanks,
> Ben
>
> -- Forwarded message -
> From: CI System 
> Date: Sat, Aug 10, 2019 at 8:18 AM
> Subject: KDE CI: Administration » Dependency Build Plasma stable-kf5-qt5
> SUSEQt5.12 - Build # 46 - Still Failing!
> To: 
>
>
> *BUILD FAILURE*
> Build URL
> https://build.kde.org/job/Administration/job/Dependency%20Build%20Plasma%20stable-kf5-qt5%20SUSEQt5.12/46/
> Project: Dependency Build Plasma stable-kf5-qt5 SUSEQt5.12
> Date of build: Fri, 09 Aug 2019 18:51:11 +
> Build duration: 1 hr 26 min and counting
> * CONSOLE OUTPUT *
> [...truncated 94439 lines...]
> [2019-08-09T20:18:04.390Z]
> /home/jenkins/workspace/Administration/Dependency Build Plasma
> stable-kf5-qt5
> SUSEQt5.12/plasma-workspace/runners/powerdevil/PowerDevilRunner.cpp:259:41:
> warning: ���void
> Solid::PowerManagement::requestSleep(Solid::PowerManagement::SleepState,
> QObject*, const char*)��� is deprecated [-Wdeprecated-declarations]
> [2019-08-09T20:18:04.390Z] 259 |
> Solid::PowerManagement::requestSleep(Solid::PowerManagement::HibernateState,
> nullptr, nullptr);
> [2019-08-09T20:18:04.390Z] | ^~~~
> [2019-08-09T20:18:04.390Z] In file included from
> /home/jenkins/install-prefix/include/KF5/KDELibs4Support/KDE/Solid/PowerManagement:1,
> [2019-08-09T20:18:04.390Z] from
> /home/jenkins/workspace/Administration/Dependency Build Plasma
> stable-kf5-qt5
> SUSEQt5.12/plasma-workspace/runners/powerdevil/PowerDevilRunner.cpp:34:
> [2019-08-09T20:18:04.390Z]
> /home/jenkins/install-prefix/include/KF5/KDELibs4Support/solid/powermanagement.h:83:40:
> note: declared here
> [2019-08-09T20:18:04.390Z] 83 | KDELIBS4SUPPORT_DEPRECATED_EXPORT void
> requestSleep(SleepState state, QObject *receiver, const char *member);
> [2019-08-09T20:18:04.390Z] | ^~~~
> [2019-08-09T20:18:04.390Z]
> /home/jenkins/workspace/Administration/Dependency Build Plasma
> stable-kf5-qt5
> SUSEQt5.12/plasma-workspace/runners/powerdevil/PowerDevilRunner.cpp:259:110:
> warning: ���void
> Solid::PowerManagement::requestSleep(Solid::PowerManagement::SleepState,
> QObject*, const char*)��� is deprecated [-Wdeprecated-declarations]
> [2019-08-09T20:18:04.390Z] 259 |
> Solid::PowerManagement::requestSleep(Solid::PowerManagement::HibernateState,
> nullptr, nullptr);
> [2019-08-09T20:18:04.390Z] | ^
> [2019-08-09T20:18:04.390Z] In file included from
> /home/jenkins/install-prefix/include/KF5/KDELibs4Support/KDE/Solid/PowerManagement:1,
> [2019-08-09T20:18:04.390Z] from
> /home/jenkins/workspace/Administration/Dependency Build Plasma
> stable-kf5-qt5
> SUSEQt5.12/plasma-workspace/runners/powerdevil/PowerDevilRunner.cpp:34:
> [2019-08-09T20:18:04.390Z]
> /home/jenkins/install-prefix/include/KF5/KDELibs4Support/solid/powermanagement.h:83:40:
> note: declared here
> [2019-08-09T20:18:04.390Z] 83 | KDELIBS4SUPPORT_DEPRECATED_EXPORT void
> requestSleep(SleepState state, QObject *receiver, const char *member);
> [2019-08-09T20:18:04.390Z] | ^~~~
> [2019-08-09T20:18:04.390Z]
> /home/jenkins/workspace/Administration/Dependency Build Plasma
> stable-kf5-qt5
> SUSEQt5.12/plasma-workspace/runners/powerdevil/PowerDevilRunner.cpp:259:110:
> warning: ���void
> Solid::PowerManagement::requestSleep(Solid::PowerManagement::SleepState,
> QObject*, const char*)��� is deprecated [-Wdeprecated-declarations]
> [2019-08-09T20:18:04.390Z] 259 |
> Solid::PowerManagement::requestSleep(Solid::PowerManagement::HibernateState,
> nullptr, nullptr);
> [2019-08-09T20:18:04.390Z] | ^
> [2019-08-09T20:18:04.390Z] In file included from
> /home/jenkins/install-prefix/include/KF5/KDELibs4Support/KDE/Solid/PowerManagement:1,
> [2019-08-09T20:18:04.390Z] from
> /home/jenkins/workspace/Administration/Dependency Build Plasma
> stable-kf5-qt5
> SUSEQt5.12/plasma-workspace/runners/powerdevil/PowerDevilRunner.cpp:34:
> [2019-08-09T20:18:04.390Z]
> /home/jenkins/install-prefix/include/KF5/KDELibs4Support/solid/powermanagement.h:83:40:
> note: declared here
> [2019-08-09T20:18:04.390Z] 83 | KDELIBS4SUPPORT_DEPRECATED_EXPORT void
> requestSleep(SleepState state, QObject *receiver, const char *member);
> [2019-08-09T20:18:04.390Z] | ^~~~
> [2019-08-09T20:18:04.390Z]
> /home/jenkins/workspace/Administration/Dependency Build Plasma
> stable-kf5-qt5
> SUSEQt5.12/plasma-workspace/runners/powerdevil/PowerDevilRunner.cpp:253:16:
> warning: enumeration value ���HybridSuspendState��� not handled in switch
> [-Wswitch]
> [2019-08-09T20:18:04.390Z] 253 | switch
> ((Solid::PowerManagement::SleepState)match.data().toInt()) {
> [2019-08-09T20:18:04.390Z] | ^
> [2019-08-09T20:18:04.390Z] Scanning dependencies of target
> plasma_applet_appmenu
> [2019-08-09T20:18:04.390Z] [ 55%] Building CXX object
> 

D22976: Fix compilation

2019-08-10 Thread Ömer Fadıl Usta
usta added a comment.


  In D22976#509675 , @aacid wrote:
  
  > And what are you or ben waiting for? You've both got commit access :)
  
  
  @aacid:
  ;) in here we are in sacrifice feast , and i dont have my laptop with me  ( 
sorry about that )
  
  And @ngraham thank you

REPOSITORY
  R120 Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D22976

To: ngraham, #plasma, aacid
Cc: usta, plasma-devel, LeGast00n, jraleigh, fbampaloukas, GB_2, ragreen, 
Pitel, ZrenBot, himcesjf, lesliezhai, ali-mohamed, jensreuterberg, abetts, 
sebas, apol, mart


D22976: Fix compilation

2019-08-09 Thread Ömer Fadıl Usta
usta added a comment.


  ben mentioned that this also needs to be cherrypicked to stable branch too.

REPOSITORY
  R120 Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D22976

To: ngraham, #plasma, aacid
Cc: usta, plasma-devel, LeGast00n, jraleigh, fbampaloukas, GB_2, ragreen, 
Pitel, ZrenBot, himcesjf, lesliezhai, ali-mohamed, jensreuterberg, abetts, 
sebas, apol, mart


[Differential] [Commented On] D3046: Pass color scheme hint to Wayland compositor using window property

2016-10-16 Thread Ömer Fadıl Usta
usta added inline comments.

INLINE COMMENTS

> graesslin wrote in kwaylandintegration.cpp:57
> this is completely unrelated code not touched in this change.

#include  removed and #include https://phabricator.kde.org/D3046

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #plasma, sebas
Cc: usta, plasma-devel, lesliezhai, ali-mohamed, jensreuterberg, abetts, sebas


[Differential] [Commented On] D3046: Pass color scheme hint to Wayland compositor using window property

2016-10-16 Thread Ömer Fadıl Usta
usta added a comment.


  In line 57  QCoreApplication -> QGuiApplication

INLINE COMMENTS

> kwaylandintegration.cpp:57
>  qputenv("QT_WAYLAND_DISABLE_WINDOWDECORATION", "1");
>  QCoreApplication::instance()->installEventFilter(this);
>  }

QCoreApplication ->  QGuiApplication

REPOSITORY
  rPLASMAINTEGRATION Integration for Qt applications in Plasma

BRANCH
  color-scheme-wayland

REVISION DETAIL
  https://phabricator.kde.org/D3046

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #plasma, sebas
Cc: usta, plasma-devel, lesliezhai, ali-mohamed, jensreuterberg, abetts, sebas


Re: [kde-promo] Plasma 5.1.1 announcement

2014-11-25 Thread Ömer Fadıl USTA
Link has a typo. Plasma 5.1
http://kde.org/announcements/plasma5.1/index.php link is showing to :
http://kde.org/announcements/plasma5.1/index.php
on the other hand it must be :
http://kde.org/announcements/plasma-5.1/index.php

(The - is missing between plasma and 5.1 )

[image: Ömer Fadıl Usta on about.me]

Ömer Fadıl Usta
about.me/omerusta
  http://about.me/omerusta

2014-11-25 23:49 GMT+02:00 Albert Astals Cid aa...@kde.org:

 El Dimecres, 19 de novembre de 2014, a les 10:50:55, Ben Cooksley va
 escriure:
  On Wed, Nov 19, 2014 at 8:14 AM, Albert Astals Cid aa...@kde.org
 wrote:
   El Dimarts, 11 de novembre de 2014, a les 22:53:58, Albert Astals Cid
 va
  
   escriure:
   Hi guys, is there any reason
   https://www.kde.org/announcements/plasma-5.1.1.php
  
   says Plasma 5 was released in July and links to
   https://www.kde.org/announcements/plasma5.0/index.php
  
   instead of saying Plasma 5.1 was released in October and link to
   https://www.kde.org/announcements/plasma-5.1/index.php
  
   ?
  
   Was the announcement written by a ghost?
  
   Or is the person that wrote the announcement for Plasma 5.1.1 not
   subscribed to neither kde-promo nor plasma-devel?
  
   Anyway, if noone oposes i'll fix it to refer Plasma 5.1 instead of
 Plasma
   5.0.
  I would recommend going ahead and making the change,

 Done.

 Albert

  I already had to
  fix the download urls for 5.1.1 which were broken.
 
   Cheers,
  
 Albert
 
  Thanks,
  Ben
 
   Cheers,
  
 Albert
  
   ___
   This message is from the kde-promo mailing list.
  
   Visit https://mail.kde.org/mailman/listinfo/kde-promo to
 unsubscribe, set
   digest on or temporarily stop your subscription.
  
   ___
   This message is from the kde-promo mailing list.
  
   Visit https://mail.kde.org/mailman/listinfo/kde-promo to unsubscribe,
 set
   digest on or temporarily stop your subscription.
  ___
  This message is from the kde-promo mailing list.
 
  Visit https://mail.kde.org/mailman/listinfo/kde-promo to unsubscribe,
 set
  digest on or temporarily stop your subscription.

 ___
 Plasma-devel mailing list
 Plasma-devel@kde.org
 https://mail.kde.org/mailman/listinfo/plasma-devel

___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Baloo - Not Indexing everything by default

2014-10-16 Thread Ömer Fadıl USTA
Couldnt we add a .baloo file to specify for attributes for current
directory, file or subdirectories about not indexing ?
For example of a .baloo file
skip_all
skip_if_greater 1m
skip_if_smaller 50k
skip_ext txt jpg
With --subdirs flag like
Skip_ext --subdirs txt jpg
Skip_all --subdirs
 On Oct 16, 2014 2:21 PM, Vishesh Handa m...@vhanda.in wrote:

 Hey guys

 While Baloo performs better than Nepomuk. It does have its share of
 problems - mostly large text files, and high IO usage. Additionally, users
 on linux often seem to have the craziest files. Currently, we do not index
 plain text files which do not have a `.txt` extension, because otherwise we
 land up indexing genome data and other strange files. (Actual bugs)

 I've been thinking about actually disabling the file indexing by default.
 However, that might be too radical. Instead, we could only index -

 * $HOME - Not including any subfolders.
 * Desktop, Documents, Videos, Pictures and Music. All of these are xdg
 user directories.

 Gnome Tracker actually does something quite similar.

 Comments?

 --
 Vishesh Handa

 ___
 Plasma-devel mailing list
 Plasma-devel@kde.org
 https://mail.kde.org/mailman/listinfo/plasma-devel


___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Review Request 119352: missing fclose - Resource leaking

2014-07-21 Thread Ömer Fadıl Usta

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/119352/
---

(Updated July 21, 2014, 11:09 p.m.)


Status
--

This change has been marked as submitted.


Review request for Plasma.


Repository: plasma-workspace


Description
---

config resource already opened but forgotten to close


Diffs
-

  startkde/kstartupconfig/kstartupconfig.cpp f0b902a 

Diff: https://git.reviewboard.kde.org/r/119352/diff/


Testing
---


Thanks,

Ömer Fadıl Usta

___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Review Request 119352: missing fclose - Resource leaking

2014-07-18 Thread Ömer Fadıl Usta

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/119352/
---

Review request for Plasma.


Repository: plasma-workspace


Description
---

config resource already opened but forgotten to close


Diffs
-

  startkde/kstartupconfig/kstartupconfig.cpp f0b902a 

Diff: https://git.reviewboard.kde.org/r/119352/diff/


Testing
---


Thanks,

Ömer Fadıl Usta

___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Review Request 118351: [klipper] Port from KDialog to QDialog

2014-05-27 Thread Ömer Fadıl Usta

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/118351/#review58592
---



klipper/klipper.cpp
https://git.reviewboard.kde.org/r/118351/#comment40781

is this a forgotten KDialog or on purpose ?


- Ömer Fadıl Usta


On May 27, 2014, 7:48 p.m., Martin Gräßlin wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 https://git.reviewboard.kde.org/r/118351/
 ---
 
 (Updated May 27, 2014, 7:48 p.m.)
 
 
 Review request for Plasma.
 
 
 Repository: plasma-workspace
 
 
 Description
 ---
 
 [klipper] Port from KDialog to QDialog
 
 
 Diffs
 -
 
   klipper/urlgrabber.cpp 2cc2e5a01e85afea3a32b4f03eaabcce8addfe5c 
   klipper/klipper.cpp 506739d4aabcc540ffbeb3ec064387c72db36c0d 
   klipper/editactiondialog.cpp 4b8fc0c837be0c7ebddd534b3d7676991fbfd796 
   klipper/editactiondialog.h be564f83617253182d622f918a1352001775d77a 
   klipper/configdialog.cpp 15901992db8d6fe28d800c4a18a3a6529cace1be 
 
 Diff: https://git.reviewboard.kde.org/r/118351/diff/
 
 
 Testing
 ---
 
 
 Thanks,
 
 Martin Gräßlin
 


___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: [kde-artists] New start sound - Discussion.

2013-05-31 Thread Ömer Fadıl USTA
I might be not so active about active development, I believe it is nice to
hear a login notification sound. But i also accept there will be some
problems while it is logging in process. my idea is adding these sounds to
kdm so before starting login process we can use our sound effects then
start our login process so none of other parallelism problems occurs. This
is my 2 cents
On May 31, 2013 11:37 PM, Thomas Pfeiffer colo...@autistici.org wrote:

 On Thursday 30 May 2013 22:46:05 Aaron J. Seigo wrote:
  On Thursday, May 30, 2013 16:00:14 Thomas Pfeiffer wrote:
   On Thursday 30 May 2013 13:10:50 Aaron J. Seigo wrote:
On Thursday, May 30, 2013 09:13:37 Thomas Pfeiffer wrote:
* It often starts at an unpredictable time due to the mechanics of
 the
startup procedure and the wonder that is free software audio; this is
only
going to become worse as we move to increasingly parallelized startup
where
dependencies are determined at runtime by access (the systemd model,
e.g.)
  
   Yes, Free Software audio is a mess, but I agree with Djuro here that
   working around the mess by disabling sounds would not help getting the
   mess fixed.
  we use sound in many other places. there is no need to remind people how
  unhappy this part of the stack is as one of the first things we great
 them
  with on log in.
 
  put another way: the log in sound is not going to undermine the need for
  improvements in the audio stack as we have many, many other functional
 use
  cases that compel us to do so.
 
  given that the log in sound is not functional (but purely aesthetic
 and/or
  for branding) i have to object to presenting it to people if we can not
 do
  so in a non-broken way. (similar to our approach to compositing at the
  start of 4.x, back when things were really broken and shaky)

 Agreed. So getting the login sound to work correctly may be a side effect
 of
 fixing the sound stack for other, more important reasons ;)

* They are annoying as hell (regardless of platform). We've opted for
elegance for the user rather than attempts to inject our brand into
 the
environment.
  
   A long startup tune like we currently have may indeed be annoying (and
   even
   short ones occasionally are), but I would not consider a startup sound
   not
   elegant per se.
 
  given the youtube videos that mock them, i would beg to differ :)
 
  for me, i don't particularly like the idea of imposing something that is
 not
  elegant on our users just to forward our own goals of branding (e.g.).
 the
  person we make this stuff for should come first imho.
 
  so if we manage to have a good sound, it needs to be something soothing,
  simple and well timed. a wave hitting a beach would do it for me, but
 then i
  grew up by the ocean ;)

 I grew up pretty far away form the ocean but that still sounds like a nice
 idea to me :)

Things that could improve the above and which would cause at least
 me to
 
re- assess this decision:
  ...
 
   So I'd suggest we encourage Ernesto to create a new, short, and overall
   better new sound instead of implying Don't waste your time, it's
 disabled
 
  yes, i think that's what i wrote above :)

 Okay, I'll pick the discussion up again when we have good ideas for login
 sounds and a working sound stack.

 So Ernesto, time to shine ;)
 ___
 Plasma-devel mailing list
 Plasma-devel@kde.org
 https://mail.kde.org/mailman/listinfo/plasma-devel

___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel