Re: kconfig question

2016-03-05 Thread David Faure
On Thursday 28 January 2016 10:06:29 Ralf Habacker wrote: > > In a similar patch I wrote recently for testing > https://build.opensuse.org/package/view_file/home:rhabacker:branches:windows:mingw:win32:Qt55/mingw32-libqt5-qtbase/0001-Add-QStandardPaths-support-for-qt.conf.patch?expand=1 > I used

Re: kconfig question

2016-01-28 Thread Boudewijn Rempt
On Wed, 27 Jan 2016, Matthew Dawson wrote: Won't this change the behaviour from Unix like systems? They won't have the Krita folder in the name, so they will just get dumped in the common config folder. I don't think carrying a patch like that for KConfig is a good idea. Yes, but that's

Re: kconfig question

2016-01-28 Thread David Faure
On Wednesday 27 January 2016 10:32:50 Boudewijn Rempt wrote: > On Sat, 23 Jan 2016, David Faure wrote: > > > > > Not sure this answers Boud's question, since he *is* seeing "Local" on > > Windows. > > He said: "I noticed that krita on windows wrote its kritarc to > > Roaming\local\ or

Re: kconfig question

2016-01-28 Thread Ralf Habacker
Am 28.01.2016 um 09:48 schrieb David Faure: > On Wednesday 27 January 2016 10:32:50 Boudewijn Rempt wrote: >> On Sat, 23 Jan 2016, David Faure wrote: >> >>> Not sure this answers Boud's question, since he *is* seeing "Local" on >>> Windows. >>> He said: "I noticed that krita on windows wrote its

Re: kconfig question

2016-01-28 Thread Boudewijn Rempt
On Thu, 28 Jan 2016, David Faure wrote: Sounds to me like Patrick's pending patch to add configurable paths in QStandardPaths using qt.conf would work exactly right for this. Your windows installer for krita would install a qt.conf where GenericConfigLocation = [...]\AppData\Roaming\Krita.

Re: kconfig question

2016-01-27 Thread Matthew Dawson
On Wednesday, January 27, 2016 10:32:50 AM EST Boudewijn Rempt wrote: > On Sat, 23 Jan 2016, David Faure wrote: > > (I don't mean "it's called KConfig" ;-) I mean what does the code using > > it, look like? I think this needs some debugging to find out where this > > "local" string comes from)

Re: kconfig question

2016-01-27 Thread Boudewijn Rempt
On Sat, 23 Jan 2016, David Faure wrote: Not sure this answers Boud's question, since he *is* seeing "Local" on Windows. He said: "I noticed that krita on windows wrote its kritarc to Roaming\local\ or Local\local " Hm, looks like that was a sideeffect of something else I tried, it's now in

Re: kconfig question

2016-01-23 Thread David Faure
On Monday 18 January 2016 10:28:18 Matthew Dawson wrote: > On Monday, January 18, 2016 8:53:22 AM EST Boudewijn Rempt wrote: > > On Sun, 17 Jan 2016, Matthew Dawson wrote: > > > It appears this is the desired behaviour. On most platforms, > > > GenericConfigLocation and ConfigLocation are the

Re: kconfig question

2016-01-23 Thread Matthew Dawson
On Saturday, January 23, 2016 11:54:56 AM EST David Faure wrote: > On Monday 18 January 2016 10:28:18 Matthew Dawson wrote: > > On Monday, January 18, 2016 8:53:22 AM EST Boudewijn Rempt wrote: > > > On Sun, 17 Jan 2016, Matthew Dawson wrote: > > > > It appears this is the desired behaviour. On

Re: kconfig question

2016-01-18 Thread Matthew Dawson
On Monday, January 18, 2016 8:53:22 AM EST Boudewijn Rempt wrote: > On Sun, 17 Jan 2016, Matthew Dawson wrote: > > It appears this is the desired behaviour. On most platforms, > > GenericConfigLocation and ConfigLocation are the same things, except > > Windows. According to Qt's history,

Re: kconfig question

2016-01-17 Thread Boudewijn Rempt
On Sun, 17 Jan 2016, Matthew Dawson wrote: It appears this is the desired behaviour. On most platforms, GenericConfigLocation and ConfigLocation are the same things, except Windows. According to Qt's history, ConfigLocation was supposed to act like GenericConfigLocation, but a mistake was made

Re: kconfig question

2016-01-17 Thread Matthew Dawson
On Friday, January 15, 2016 9:46:00 AM EST Boudewijn Rempt wrote: > I noticed that krita on windows wrote its kritarc to Roaming\local\ or > Local\local instead of Roaming\krita\kritarc, and I was wondering why that > was. I now think it's because KConfig's default is to write to >

kconfig question

2016-01-15 Thread Boudewijn Rempt
I noticed that krita on windows wrote its kritarc to Roaming\local\ or Local\local instead of Roaming\krita\kritarc, and I was wondering why that was. I now think it's because KConfig's default is to write to GenericConfigLocation instead of ConfigLocation. Is that really intended to be the