Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guido Günther
phosh-mobile-settings
Commits
fd59bbab
Commit
fd59bbab
authored
Sep 01, 2022
by
Guido Günther
Browse files
Merge branch 'rel-0.21.0' into 'main'
Release 0.21.0 See merge request
!18
parents
bdab72f2
03607d1f
Pipeline
#438679
passed with stage
in 1 minute and 44 seconds
Changes
6
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
NEWS
View file @
fd59bbab
phosh-mobile-settings 0.21.0
----------------------------
Released: September 2022
* Allow to enable/disable lockscreen widgets
* Fix Librem 5 sensor names
* Contributors:
Guido Günther
Sebastian Krzyszkowiak
phosh-mobile-settings 0.20.0
----------------------------
Released: August 2022
...
...
data/org.sigxcpu.MobileSettings.metainfo.xml.in
View file @
fd59bbab
...
...
@@ -30,6 +30,10 @@
</screenshots>
<releases>
<release
version=
"0.21.0"
date=
"2022-09-01"
>
<description>
Allow to enable/disable lockscreen widgets and bug fixes
</description>
</release>
<release
version=
"0.20.0"
date=
"2022-08-08"
>
<description>
Initial release
</description>
</release>
...
...
debian/changelog
View file @
fd59bbab
phosh-mobile-settings (0.21.0) experimental; urgency=medium
[ Guido Günther ]
* ci: Use newer Debian Bookworm image.
This lets the builds pass again.
* build: Plugin uses gio bits.
Add a proper dependency
* data: Update the appstream release information
* Move plugins to phosh-mobile-settings/ folder
* Allow to enable and disable lockscreen plugins (Closes: #12)
* lockscreen-panel: Use plugin info.
Don't just rely on the plugin path but rather parse the available
information so we can have translated descriptions, etc.
* lockscreen-panel: Don't try to read from inexistent dir
* lockscreen-panel: Mark additional widgets as experimental
[ Sebastian Krzyszkowiak ]
* librem5-plugin: Adjust sensor mappings for temperatures.
On the Librem 5, bq25890_charger driver reports the temperature
as monitored by the thermisor inside the battery, while the
max170xx_battery driver reports the internal temperature of
the fuel gauge chip. Adjust sensor descriptions to match that.
-- Guido Günther <agx@sigxcpu.org> Wed, 31 Aug 2022 10:01:14 +0200
phosh-mobile-settings (0.20.0) experimental; urgency=medium
* Release 0.20.0
...
...
meson.build
View file @
fd59bbab
project
(
'phosh-mobile-settings'
,
'c'
,
version
:
'0.2
0
.0'
,
version
:
'0.2
1
.0'
,
meson_version
:
'>= 0.56.0'
,
default_options
:
[
'warning_level=2'
,
'werror=false'
,
...
...
src/ms-lockscreen-panel.c
View file @
fd59bbab
...
...
@@ -110,6 +110,7 @@ ms_lockscreen_panel_scan_phosh_lockscreen_plugins (MsLockscreenPanel *self)
if
(
dir
==
NULL
)
{
g_warning
(
"Failed to read phosh plugins from "
MOBILE_SETTINGS_PHOSH_PLUGINS_DIR
": %s"
,
err
->
message
);
return
;
}
enabled_plugins
=
g_settings_get_strv
(
self
->
plugins_settings
,
LOCKSCREEN_PLUGINS_KEY
);
...
...
src/ui/ms-lockscreen-panel.ui
View file @
fd59bbab
...
...
@@ -32,7 +32,7 @@
<child>
<object
class=
"AdwPreferencesGroup"
id=
"plugins_group"
>
<property
name=
"title"
translatable=
"yes"
>
Widgets
</property>
<property
name=
"description"
translatable=
"yes"
>
Additional widgets for the lock screen
</property>
<property
name=
"description"
translatable=
"yes"
>
Additional widgets for the lock screen
. This feature is experimental.
</property>
<child>
<object
class=
"GtkListBox"
id=
"plugins_listbox"
>
<style>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment