0.7.0
Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
parent
5054ba2bfb
commit
2e8a07d58c
33
NEWS
33
NEWS
|
@ -1,3 +1,36 @@
|
||||||
|
Overview of changes in malcontent 0.7.0
|
||||||
|
=======================================
|
||||||
|
|
||||||
|
* Add `-Dui` configure option to help work around circular dependency with
|
||||||
|
flatpak (#16)
|
||||||
|
|
||||||
|
* Add data serialization and deserialization methods for app filters and
|
||||||
|
session limits (!45)
|
||||||
|
|
||||||
|
* Add mct_app_filter_is_enabled() and mct_session_limits_is_enabled() APIs
|
||||||
|
for determining whether filtering/limits are enabled at a high level (!47)
|
||||||
|
|
||||||
|
* Bugs fixed:
|
||||||
|
- #16 Circular dependency on flatpak
|
||||||
|
- !35 Update Ukrainian translation
|
||||||
|
- !37 Drop a few unnecessary dependencies
|
||||||
|
- !39 Add Polish translation
|
||||||
|
- !40 Use libglib-testing submodule only as fallback
|
||||||
|
- !41 Fix typo in malcontent-client.8
|
||||||
|
- !42 docs: Update license information in README and meson.build
|
||||||
|
- !43 user-controls: Make OARS drop down open to the right
|
||||||
|
- !44 Fix updating the UI when a user’s locale changes
|
||||||
|
- !45 Support data serialisation and deserialisation
|
||||||
|
- !46 Fix papercuts when editing parental controls of current user
|
||||||
|
- !47 app-filter: Add mct_app_filter_is_enabled() API
|
||||||
|
- !48 Update POTFILES.in 200320
|
||||||
|
- !49 malcontent-control: Refactor bus initialisation
|
||||||
|
|
||||||
|
* Translation updates:
|
||||||
|
- Polish
|
||||||
|
- Ukrainian
|
||||||
|
|
||||||
|
|
||||||
Overview of changes in malcontent 0.6.0
|
Overview of changes in malcontent 0.6.0
|
||||||
=======================================
|
=======================================
|
||||||
|
|
||||||
|
|
|
@ -44,6 +44,14 @@
|
||||||
</kudos>
|
</kudos>
|
||||||
<translation type="gettext">malcontent</translation>
|
<translation type="gettext">malcontent</translation>
|
||||||
<releases>
|
<releases>
|
||||||
|
<release version="0.7.0" date="2020-03-24" type="stable">
|
||||||
|
<description>
|
||||||
|
<ul>
|
||||||
|
<li>Minor improvements to parental controls application UI</li>
|
||||||
|
<li>Translations to Ukrainian and Polish</li>
|
||||||
|
</ul>
|
||||||
|
</description>
|
||||||
|
</release>
|
||||||
<release version="0.6.0" date="2020-02-26" type="stable">
|
<release version="0.6.0" date="2020-02-26" type="stable">
|
||||||
<description>
|
<description>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('malcontent', 'c',
|
project('malcontent', 'c',
|
||||||
version : '0.6.0',
|
version : '0.7.0',
|
||||||
meson_version : '>= 0.49.0',
|
meson_version : '>= 0.49.0',
|
||||||
license: ['LGPL-2.1-or-later', 'GPL-2.0-or-later'],
|
license: ['LGPL-2.1-or-later', 'GPL-2.0-or-later'],
|
||||||
default_options : [
|
default_options : [
|
||||||
|
|
Loading…
Reference in New Issue