<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kconfig.git/src/kconfig_compiler, branch v5.14.0-rc1</title>
<subtitle>hurd kconfig.git</subtitle>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/'/>
<entry>
<title>Avoid QString::fromLatin1() in generated code</title>
<updated>2015-08-18T21:46:00+00:00</updated>
<author>
<name>Sergio Martins</name>
<email>iamsergio@gmail.com</email>
</author>
<published>2015-08-12T15:37:33+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=4d5a50a85bec95e60f11d1ac271df643e472ecf5'/>
<id>4d5a50a85bec95e60f11d1ac271df643e472ecf5</id>
<content type='text'>
Because it allocates memory.
REVIEW: 124717
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Because it allocates memory.
REVIEW: 124717
</pre>
</div>
</content>
</entry>
<entry>
<title>Upgrade Qt version requirement to 5.3</title>
<updated>2015-08-01T12:41:18+00:00</updated>
<author>
<name>David Faure</name>
<email>faure@kde.org</email>
</author>
<published>2015-08-01T12:41:18+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=8ebf4735e4ba35b1d3e2102f35e1b3b7f5a684a9'/>
<id>8ebf4735e4ba35b1d3e2102f35e1b3b7f5a684a9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't generate deprecated code</title>
<updated>2015-07-27T10:39:56+00:00</updated>
<author>
<name>Aleix Pol</name>
<email>aleixpol@kde.org</email>
</author>
<published>2015-07-27T10:39:56+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=be95bc91fb8b0e115a31d9b3cbd63c9d234da6a9'/>
<id>be95bc91fb8b0e115a31d9b3cbd63c9d234da6a9</id>
<content type='text'>
::usrWriteConfig is deprecated, use ::usrSave as recommended by the
documentation.

REVIEW: 124467
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
::usrWriteConfig is deprecated, use ::usrSave as recommended by the
documentation.

REVIEW: 124467
</pre>
</div>
</content>
</entry>
<entry>
<title>Mark message() as WARNING</title>
<updated>2015-06-24T21:21:59+00:00</updated>
<author>
<name>Aleix Pol</name>
<email>aleixpol@kde.org</email>
</author>
<published>2015-06-24T21:21:59+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=e33595febbe8037d3d4e2b6dd7c564c3257d5afb'/>
<id>e33595febbe8037d3d4e2b6dd7c564c3257d5afb</id>
<content type='text'>
As recommended by Alex Merry

CCMAIL: alex.merry@kde.org
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As recommended by Alex Merry

CCMAIL: alex.merry@kde.org
</pre>
</div>
</content>
</entry>
<entry>
<title>Install kconfig_compiler into libexec</title>
<updated>2015-06-23T19:44:32+00:00</updated>
<author>
<name>Aleix Pol</name>
<email>aleixpol@kde.org</email>
</author>
<published>2015-06-23T19:44:32+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=7ad70427aa5dd5bfd99f0c174fa48b4f1695bdce'/>
<id>7ad70427aa5dd5bfd99f0c174fa48b4f1695bdce</id>
<content type='text'>
This will make it end up in a platform-dependent prefix (i.e. /usr/lib64,
/usr/lib/arm-linux-gnueabihf, etc) rather than /usr/bin, making it possible
to have different kconfig_compiler versions installed, useful for
cross-compilation.

REVIEW: 124138
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This will make it end up in a platform-dependent prefix (i.e. /usr/lib64,
/usr/lib/arm-linux-gnueabihf, etc) rather than /usr/bin, making it possible
to have different kconfig_compiler versions installed, useful for
cross-compilation.

REVIEW: 124138
</pre>
</div>
</content>
</entry>
<entry>
<title>Support translation domain in 'kde' translation system</title>
<updated>2015-06-22T13:12:58+00:00</updated>
<author>
<name>Chusslove Illich (Часлав Илић)</name>
<email>caslav.ilic@gmx.net</email>
</author>
<published>2015-06-22T13:12:58+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=2fff683110385047bd20fb5f0b68a008b48320dd'/>
<id>2fff683110385047bd20fb5f0b68a008b48320dd</id>
<content type='text'>
In applications translations can be looked up in the globally set
translation domain, but in libraries it is necessary to link every
i18n call to the library's own translation domain. A new code
generation option TranslationDomain= is added to enable this.
It has effect only if TranslationSystem=kde is set.

Added unit tests to check generated translation calls.

CHANGELOG: New code generation option TranslationDomain=, for use with TranslationSystem=kde; normally needed in libraries.
REVIEW: 123872
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In applications translations can be looked up in the globally set
translation domain, but in libraries it is necessary to link every
i18n call to the library's own translation domain. A new code
generation option TranslationDomain= is added to enable this.
It has effect only if TranslationSystem=kde is set.

Added unit tests to check generated translation calls.

CHANGELOG: New code generation option TranslationDomain=, for use with TranslationSystem=kde; normally needed in libraries.
REVIEW: 123872
</pre>
</div>
</content>
</entry>
<entry>
<title>Make it possible to use kconfig_compiler from different sources</title>
<updated>2015-06-21T00:14:54+00:00</updated>
<author>
<name>Aleix Pol</name>
<email>aleixpol@kde.org</email>
</author>
<published>2015-06-21T00:14:54+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=173b33592739f9a671f34eb816499ef32fe65c06'/>
<id>173b33592739f9a671f34eb816499ef32fe65c06</id>
<content type='text'>
This way we can specify the used tooling targets to be used, useful if we're
cross-compiling, since we get to use the tooling that runs in the local
platform.

REVIEW: 124104
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This way we can specify the used tooling targets to be used, useful if we're
cross-compiling, since we get to use the tooling that runs in the local
platform.

REVIEW: 124104
</pre>
</div>
</content>
</entry>
<entry>
<title>Generate Q_PROPERTY entries out of KConfigSkeleton classes</title>
<updated>2015-04-25T23:41:29+00:00</updated>
<author>
<name>Aleix Pol</name>
<email>aleixpol@kde.org</email>
</author>
<published>2015-04-25T23:41:29+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=97552ff2ecd13eb4398231650e2f719f7a7ba052'/>
<id>97552ff2ecd13eb4398231650e2f719f7a7ba052</id>
<content type='text'>
It adds a configuration setting that makes it possible to generate
Q_PROPERTY instances out of each variable exposed by the configuration
class.
Especially useful when it comes to exposing these classes to QtQuick
interfaces.

REVIEW: 123367

CHANGELOG: Generate QML-proof classes using the kconfigcompiler
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It adds a configuration setting that makes it possible to generate
Q_PROPERTY instances out of each variable exposed by the configuration
class.
Especially useful when it comes to exposing these classes to QtQuick
interfaces.

REVIEW: 123367

CHANGELOG: Generate QML-proof classes using the kconfigcompiler
</pre>
</div>
</content>
</entry>
<entry>
<title>Initialize mParamMax coverty report 1289403</title>
<updated>2015-03-22T06:57:26+00:00</updated>
<author>
<name>Montel Laurent</name>
<email>montel@kde.org</email>
</author>
<published>2015-03-22T06:57:26+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=d50b15ccbcd3125bab06075eceb6a7e274ba7503'/>
<id>d50b15ccbcd3125bab06075eceb6a7e274ba7503</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow to generate qloggingcategories support.</title>
<updated>2015-03-17T06:30:46+00:00</updated>
<author>
<name>Montel Laurent</name>
<email>montel@kde.org</email>
</author>
<published>2015-03-09T20:55:24+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=094c91f86baf1e82e55b435c07c5ba37ff107dd9'/>
<id>094c91f86baf1e82e55b435c07c5ba37ff107dd9</id>
<content type='text'>
Add new variable to specify it in *.kcfgc : "CategoryLoggingName"

CHANGELOG: Allow to generate file with qloggingcategories support.

REVIEW: 122931
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add new variable to specify it in *.kcfgc : "CategoryLoggingName"

CHANGELOG: Allow to generate file with qloggingcategories support.

REVIEW: 122931
</pre>
</div>
</content>
</entry>
</feed>
