Summary of changes
- lockscreen: Allow to set background image. Off by default, can be enabled
via mobile-settings (orgsettings
).
- Close quick-settings status pages when closing the top panel
- Notifications: Use slide down animation in the message tray and allow to focus
default action
- media-player: Use
can-play
to device whether we should show the widget
- media-player: Download cover-art when possible
- layout-manager: Handle notches/cutouts in the indicator areas. This
helps devices with a e.g. camera in the left display corner (like
the Nothing Phone).
- Use more consistent button press feedback
- wifi-quick-setting: Indicate ongoing Wi-Fi scans in the status page
- Add
phosh.gsettings(5)
manpage.
- Set more wallpaper friendly defaults and improve legibility, reduce
flicker, fix thumbnail scaling and other fixes.
- Simplify UI files and other bits preps for a GTK4 migration
- Issues fixed:
- https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1138
- https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1208
- https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1136
- https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1152
- https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1217
- https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1220
- https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1138
- Contributors:
- Arun Mani J
- Bardia Moshiri
- Evangelos Ribeiro Tzaras
- Gotam Gorabh
- Guido Günther
- Sam Day
- Sebastian Krzyszkowiak
- Sicelo A. Mhlongo
- Arun Mani J
i18n updates
- UI translations:
- Vasil Pupkin (be)
- Bruce Cowan (en_GB)
- Vincent Chatelain (fr)
- Andika Triwidada (id)
- Daniel Șerbănescu (ro)
- Jordi Mas i Hernandez (ca)
- Yaron Shahrabani (he)
- Vasil Pupkin (be)
Detailed changes
phosh (0.46.0) experimental; urgency=medium
.
[ Sam Day ]
* build: Remove nonexistent StatusPagePlaceholder symbol exports.
These were introduces in a recent commit, but the actual symbols don't
exist.
This was identified by @fossdd when building 0.46~rc1 downstream in
Alpine, where clang is being used. Seems that lld is more strict about
this than gcc is.
Closes: https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1217
Fixes: f5ca0cf4 ("status-page-placeholder: Propertify child")
.
[ Guido Günther ]
* build: Let plugins depend on generated enum headers.
Plugins (like dark-mode) use it.
* data: Only apply override to Phosh.
We don't want to override the default for other environments.
Fixes 24a255401 ("data: Disable lockscreen background by default")
* screenshot-manager: Exit early when saving screenshot fails.
We shouldn't try to update recent files or save a thumbnail.
Fixes 0a2228f85 ("screenshot-manager: Create thumbnails of screenshots")
* screenshot-manager: Move clipboard copying to separate function.
Pure code move. We only change the g_steal_pointer() of the pixbuf to a
g_object_ref() to keep a reference.
* screenshot-manager: Chain copy to clipboard past saving the image.
The code assumed that saving was faster than the clipboard copy opaque
timer. If things are I/O is slow the frames would be freed before the
on_save_to_pixbuf_read would complete and we'd assert.
To avoid this save to disk first and then to clipboard for the case
where both is wanted (e.g. power button long press).
Fixes ca42c89b2 ("screenshot-manager: Allow to save internal screenshots")
Closes: https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1220
.
[ Sicelo A. Mhlongo ]
* rotation-manager: Do not delay marking accelerometer as released.
As soon as a request to release the claim on accelerometer is dispatched, mark
it as released in Phosh, even if a response from iio-sensor-proxy may only be
received much later.
This avoids the state inside Phosh getting out of sync with iio-sensor-proxy
after a suspend-resume cycle, for which the ReleaseAccelerometer response may
only be received after the system has resumed.
Closes #1214
.
[ Bruce Cowan ]
* Update British English translation
.
[ Sebastian Krzyszkowiak ]
* stylesheet: Improve legibility of app grid and top bar.
Add subtle shadows when translucent.
* stylesheet: Improve legibility of the lockscreen on arbitrary backgrounds
* stylesheet: Improve legibility of call view on arbitrary backgrounds
.
[ Vincent Chatelain ]
* Update French translation
.
[ Vasil Pupkin ]
* Update Belarusian translation
.
phosh (0.46~rc1) experimental; urgency=medium
.
[ Guido Günther ]
* media-player: Bind playable property to player's can-play.
That way we also show the player when e.g. media play is stopped (rather
than paused). Let's see if players implement that property properly.
* overview: Insert app to the right if no parent is found.
We didn't mean to change the position of new apps, just that of
children.
Fixes 6b0a4d539 ("overview: Insert new children right of their parents")
* media-player: Fetch cover art via http.
Do that using an async method to not block the UI should the download
hang.
We avoided that so far but e.g. shortwave provides http URLs to radio
stations so lets do it and rather switch to glycene at some point.
* build: Swap old and new in abi compliance check.
The symbols we have checked into version control are the ones from the
old version (at least when you're not a tachyon).
* package: Update from Debian. This makes sure our packages don't file
conflict with those in downstreams and also takes the new library
versioning into account.
* packaging: Don't build gir package when not building a lib
* home: Reset overview when folded.
Resetting the overview's app grid when unfolding introduces flicker when
clearing the search (when a search term is present). This is very
visible when there are running apps.
Avoid the flicker by clearing the search when the app grid isn't
visible.
As the former `reset` now mostly refreshes the thumbnails we rename it
accordingly.
* top-panel: Set padding via css.
So far we set the margins on the top panel itself which was fine as long
as those were symmetric. If we set different margins this would shift
the clock out of center but setting the margins on the network and
indicator boxes doesn't work either as the case where we move the clock
off center needs the margins applied to the clock.`
So instead of worrying about all those cases use `:first-child` and
`last-child` css which handles this for us (at the expense of style
calculations on layout changes).
This also has the advantage that we don't need to worry about start and
end in RTL locales.
* top-panel: Introduce padding towards cutouts.
If there's a cutout in the indicator areas we use a smaller margin than
towards the screen edge.
* layout-manager: Make rectangles const.
These are the references that should stay the constant.
* layout-manager: Round float values.
We want the cutouts bounding box to be at least as large as the physical
notch.
* layout-manager: Handle cutouts in the indicator areas.
Shift elements towards the center unless that would result in massive
movement.
For smaller cutouts within the indicator boxes we'll insert stub
elements at some point in the future.
* data: Select less noisy default background
* data: Select accent color matching the back ground
* background-manager: Remove background when it goes away.
When we unplug a monitor the widget goes away due to the layer surface
being destroyed, make sure we remove it from the list of known
backgrounds as we otherwise might access stale data.
Instead of dropping on_monitor_removed completely we keep it as
consistency check.
That way it doesn't matter if the widget gets destroyed before the
output or the other way around.
* treewide: Systemd unit is for development purposes only.
Clarify that the systemd unit shouldn't be used in production.
* issue-template: Mention display manager.
Update some other parts while at that
* ci: No need to fetch phoc from sid
* build: Specify the public headers. This ensures abi-dumper doesn't
care about non public structs. It needs universal-ctags for that.
* build: Regenrate the ABI dump
* docs: Add phosh.gsettings manpage.
We'll document used gsettings here. This makes it easier to contribute
to than the wiki as everyone can make pull requests and also ensures the
shipped documentation matches the running shell.
* feedback-manager: Add emission hook for clicked and row-activated signals.
This ensures consistent feedback for all "press" related events.
* treewide: Remove most "button-pressed" emissions.
Remove those that were triggered by button presses anyway.
* packaging: Install new manpage.
This fixes the nightly build. We run with nodoc in CI so we didn't
notice.
* style: Close block.
GTK4's CSS parser catches this
* wifi-manager: Track whether a WiFi scan is going on.
Consumers can track the `scanning` property
* wifi-status-page: Show spinner when a network scan is ongoing.
This provides better feedback to the user about the ongoing
operation.
We use a callback rather than property binding as we'd need transform
functions for the stack page and related code in this class uses
callbacks too.
Closes: https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1138
* wifi-status-page: Reindent UI file.
No functional change
* tests/integration: Close stdin and stdout.
This prevents to prevent the buffers to being filled and phoc entering a
blocking state.
I've been able to trigger this locally and could see phoc hanging on
writing to stdout and thus `wlr-randr` blocking as can be seen in the
failed tests:
https://gitlab.gnome.org/World/Phosh/phosh/-/jobs/4884009
* tests: Make unit tests depend on schema.
This allows them to run without invoking any extra targets.
We rename the target as the plugins use `compile_schemas` to locate
`glib-compile-schemas`.
* ci: Drop extra step to build schema.
We fixed the dependencies in the previous commit
Fixes 3f328c7d6 ("gitlab-ci: Run unit tests under ASAN too")
* home: Fix indent
* lockscreen-manager: Modernize indent and property definitions
* lockscreen-manager: Adjust callback names according to style.
Also remove unneeded casts.
* background: Avoid paint when not rendering pixbuf.
No need to do so.
* background-cache: Allow to remove cached backgrounds selectively
* background-manager: Remove backgrounds selectively.
This will allow us to cache different backgrounds (e.g. overview
and lockscreen)
* background-cache: Make loading an async function.
Make it an async function instead of a signal so it is clear which
background got loaded.
* background: Move scale-to-min pixbuf scaling to utils.
This allows it to be used from other classes.
* lockscreen: Allow to set background image.
Make lockscreen transparent and add a layer surface carrying the
background beneath it. This ensures GTK won't be bothered at all when UI
elements move over the background.
Images are always loaded using cover style to make sure the whole
background is covered.
We only load images on the lockscreen, ignoring shields.
* lockscreen-manager: Handle picture-uri.
Setting a background image will triggering an image load using the
background-cache. If successful we set the image on the primary
lockscreen.
Background can be set via
gsettings set org.gnome.desktop.screensaver picture-uri 'file:///file/to/background.jpg'
* shell: Move updating top panel transparency to its own function.
This will become more complex
* shell: Make top bar transparent when locked.
We need to check if the top bar exists as this can be invoked early when
phosh is started locked (`-L`).
* docs: Document new settings key
* data: Add default lockscreen background
* data: Disable lockscreen background by default.
This ensures we don't pick up any accidental configuration users might
have.
* top-panel: Use icon's pixel size. Actually use the icon's pixel
size. We accidentally used the enum value.
Fixes 79808a34b ("top-panel: Provide default icon size and min padding")
* layout-manager: Assume icons don't fill the full height.
Status icons usually don't fill the full box so assuem we have 20% of
padding.
.
[ Arun Mani J ]
* event-list: Simplify using `gtk-builder-tool`
* upcoming-event: Simplify using `gtk-builder-tool`
* emergency-info-prefs: Simplify using `gtk4-builder-tool`
* emergency-info-prefs: Simplify derived and `Adw` widgets
* emergency-info: Simplify using `gtk-builder-tool`
* emergency-info: Simplify derived and `Hdy` widgets
* dark-mode-quick-setting: Simplify derived and `Hdy` widgets
* home: Simplify using `gtk-builder-tool`
* lockscreen: Simplify derived and `Hdy` widgets
* notification-frame: Simplify derived and `Hdy` widgets
* polkit-auth-prompt: Simplify derived and `Hdy` widgets
* notification-frame: Simplify using `gtk-builder-tool`
* ci: Check UI files for simplification
* gvc-channel-bar: Do not hijack scroll event
`GtkScale` handles it natively, so no need for us to override.
* gvc-channel-bar: Include GTK headers.
Removes linter warnings.
* gvc-channel-bar: Simplify
* timestamp-label: Wrap under `GtkBin`
`GtkLabel` is a final class in GTK 4, so let's wrap it under `GtkBin`
which will become `AdwBin` or something similar in GTK 4.
* timestamp-label: Uncrustify
* revealer: Propertify child
* revealer: Wrap under `GtkBin`
`GtkRevealer` is a final class in GTK 4, so wrap it under a bin.
* revealer: Move UI logic to UI file
* revealer: Simplify and reformat
* top-panel: Drop assigning default values
* status-page: Allow NULL for header and footer
* status-page: Propertify child.
Makes code more readable and ready for GTK 4 as we expose methods to
directly add and remove the child (like in GTK 4 style of "child as
property"). At the same time, simplify destroy implementation by
worrying only about the widgets we get and set, the remaining will be
cleaned by GTK as they are owned by the template API.
* status-page-placeholder: Propertify child.
Makes code more readable and ready for GTK 4 as we expose methods to
directly add and remove the child (like in GTK 4 style of "child as
property"). At the same time, simplify destroy implementation by
worrying only about the widgets we get and set, the remaining will be
cleaned by GTK as they are owned by the template API.
* status-page-placeholder: Simplify.
Reorder the virtual method implementations like elsewhere.
* quick-setting: Propertify child.
Makes code more readable and ready for GTK 4 as we expose methods to
directly add and remove the child (like in GTK 4 style of "child as property").
* quick-setting: Cleanup and reformat.
Use most specific type where sensible.
* quick-settings-box: Expose methods to add and remove.
Makes code more readable and ready for GTK 4 as we expose methods to
directly add and remove the children instead of relying on
`GtkContainer` APIs.
* quick-settings-box: Cleanup and reformat.
Use most specific type where sensible.
* app-grid-base-button: Propertify child.
Makes code more readable and ready for GTK 4 as we expose methods to
directly add and remove the child (like in GTK 4 style of "child as property").
* app-grid-base-button: Uncrustify
* hacking: Add notes about derivable parent widgets
* status-icon: Move UI logic to UI file
* status-icon: Uncrustify
* revealer: Check for child type
* revealer: Use setter function in destroy
* status-icon: NULLify `extra_widget` in destroy
* app-grid-button: Use gesture to handle right click.
Also remove `popup_menu` virtual method implementation as it is not
available in GTK 4 and handled by gestures already.
* app-grid-button: Move long-press gesture to UI file
* app-grid-button: Prefix action name with group.
The equivalent method in GTK 4 to bind a model to a popover takes no
namespace parameter, so let's make the
current code ready for it.
* app-grid-button: Cleanup.
Rename variables and methods to match the style guide.
* app-grid-button: Uncrustify
* app-grid: Force the box to align start vertically.
Fixes the case where the box gets more-than-required allocation and so decides to
distribute it among the children, causing odd spacing among them.
Closes: https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1208
* activity: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* ambient: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* app-auth-prompt: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* app-grid: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* app-grid-standalone: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* background: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* background-manager: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* cell-broadcast-manager: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* drag-surface: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* emergency-calls-manager: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* emergency-menu: Use `gtk_widget_set_visible`
`gtk_widget_show_all` is unavailable in GTK 4, so let us use the
proper setter method.
* end-session-dialog: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* fading-label: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* gnome-shell-manager: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* gtk-mount-manager: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* gtk-mount-prompt-prompt: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* keypad: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* layer-surface: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* lockshield: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* lockscreen-manager: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* lockscreen: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* media-player: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* mount-operation: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* network-auth-prompt: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* notification-content: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* osd-window: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* overview: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* polkit-auth-prompt: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* portal-access-manager: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* power-menu-manager: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* proximity: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* run-command-manager: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* screenshot-manager: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* session-manager: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* settings: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* shell: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* system-modal: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* system-modal-dialog: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* top-panel: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* widget-box: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* wwan-info: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* emergency-info: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* custom-quick-settings-standalone: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* notify-server-standalone: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* widget-box-standalone: Use `gtk_widget_set_visible`
`gtk_widget_{show, hide}` are deprecated in GTK 4, so let us use the
proper setter method.
* quick-settings-box: Add method to hide status.
Can be used to hide status externally, like by settings.
* quick-settings: Add method to hide status.
Can be used to hide status externally, like by settings.
* settings: Add method to hide details.
Hides quick-settings box status-page and audio-settings details.
* top-panel: Hide settings' details on fold.
Closes: https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1136
* settings: Use `hide_details` on panel launch.
Hides quick-settings box status in-addition to audio-settings details.
.
[ Evangelos Ribeiro Tzaras ]
* overview: Only look up carousel position if parent is found.
This saves a few cpu cycles.
.
[ Sam Day ]
* status-icon: Remove obsolete show_always getter+setter.
This property was dropped back in 2020. These names managed to sneak
their way into the symbol export map, but since the actual symbols don't
exist this doesn't break ABI compatibility (or at least,
abi-compliance-checker did not complain)
Fixes: 1f9f31db ("status-icon: Drop show-always")
* ci: Always publish ABI check artifacts.
If there's an ABI breakage the pipeline will fail (which is good). This
change ensures that when this happens the report containing detailed
info is made available.
.
[ Bardia Moshiri ]
* util: Move sys/mman and fnctl out of MEMFD ifdef
these are needed if in meson we set have_memfd_create to false.
.
[ Gotam Gorabh ]
* notification: Don't focus the notification-frame.
Don't focus the notification-frame as it overlap the
action buttons. However notification body still can
focus without shadow.
Closes: https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1152
* notification-frame: Add slide-down animation.
Add slide-down animation to rest of the notifications after a new
notification appears.
We skip the animation when it currently isn't visible anyway.
.
[ Sebastian Krzyszkowiak ]
* activity: Fix thumbnail scaling.
PhoshActivity is unaware of GtkButton's padding. Move it
to GtkDrawingArea, so the thumbnail size can be calculated
with correct aspect ratio.
.
[ Daniel Șerbănescu ]
* Update Romanian translation
.
[ Jordi Mas i Hernandez ]
* Update Catalan translation
.
[ Yaron Shahrabani ]
* Update Hebrew translation
.
[ Andika Triwidada ]
* Update Indonesian translation
Required versions of related projects
- glib >= 2.72.0
- gtk3 >= 3.24.40
- gtk4 >= 4.14
- phoc >= 0.45~beta1
- squeekboard >= 1.43.0
- feedbackd >= 0.7.0
- gnome-calls >= 46.3 for location based emergency calls and feedbackd fix
- wl-clipboar >= 2.2.1
- pipewire: >= 0.3.73 for proper audio icons
- xdg-desktop-portal >= 1.17.1 to honor portal configuration
- xdg-desktop-portal-phosh >= 0.43.0 for accent colors in apps
- phosh-mobile-settings >= 0.44.0
- phosh-tour >= 0.41.0
- gnome-settings-daemon >= 46 to not show the sleep notification on phones
- gsettings-desktop-schemas >= 47 for accent colors
Required patches that are merged upstream but not yet in a released version:
Required patches that aren't merged upstream yet:
- wlroots (>= 0.12.0): Layer shell restrictions. See https://source.puri.sm/Librem5/phosh/-/issues/422. Otherwise phosh will fail to start.
- gtk: xdg-activation-0-serial. Otherwise startup splash always times out
- gnome-keyring: Accessing login keyring after first login fails
Recommended patches on other projects
Patches that are merged upstream but not yet in a released version:
(none)
Patches that aren't merged upstream yet:
- linux: HKS support (not yet submitted): https://source.puri.sm/Librem5/linux-next/-/merge_requests/77
- gtk4 adaptiveness (not yet submitted): https://source.puri.sm/Librem5/debs/gtk4/-/tree/pureos/byzantium/debian/patches/pureos/adaptive
(Not needed for phosh itself but to make GTK4 applications adapt better)
- gtk3 adaptiveness (not yet submitted): https://source.puri.sm/Librem5/debs/gtk/-/tree/pureos/byzantium/debian/patches/pureos/adaptive
(Not needed for phosh itself but to make GTK3 applications adapt better)
- gnome-screenshot adaptiveness: https://gitlab.gnome.org/GNOME/gnome-screenshot/-/merge_requests/69
(Not needed for phosh itself but to make screenshots easier)
- vte: Ignore menu key: https://gitlab.gnome.org/guidog/vte/-/commit/11b29ca2aa2f1715579519699ec17245a411ee0e . See https://gitlab.gnome.org/GNOME/vte/-/issues/2644 (as project doesn't allow merge requests) (Not needed for phosh itself but to get copy/paste menu in e.g. gnome-console)
- gnome-clocks: Feedbackd support https://gitlab.gnome.org/guidog/gnome-clocks/-/tree/lfb
See meson.build and debian/control for build-time and run-time dependencies.
For older releases
These are only some of the required/recommended patches. If in doubt please use the released versions above:
- gtk3: Better touch accuracy (affects phosh, phosh-osk-stub, etc): https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/6668 (contained in 3.24.40)
- gnome-text-editor: Hint word completion (so e.g. OSKs know its sensible to use it): https://gitlab.gnome.org/GNOME/gnome-text-editor/-/merge_requests/132 (contained in 46)
- gtk4: Touch DND fixes: https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/6608 (contained in 4.14)
- gnome-clocks: Allow for lockscreen actions: https://gitlab.gnome.org/GNOME/gnome-clocks/-/merge_requests/277 . Needed to turn off alarms on the lock screen.
- glib (contained in 2.72.0): Notification categories
- gnome-settings-daemon: Claim light sensor async as otherwise screen unblank can take a noticable amount of time
- gsettings-desktop-data (contained in 42): Dark theme toggle
- gnome-control-center (contained in 42): display: Use ComboBox when folded. Otherwise fractional scaling doesn't show all values.
- gnome-control-center (contained in 42): connection-editor: Allow dialog to resize
- gtk4 (contained in 4.6.2): xdg-activation
- gtk4 (contained in 4.6.2): osk unfold
- gtk4 (contained in 4.6.2): osk unfold
- gtk3 (contained in 3.24.30):gtkapplication-dbus: Fetch inital screen saver state async. Otherwise gnome-calls and phosh will block on each other on startup blocking the whole UI.
- geoclue (contained in 2.6.0): Add phosh
- wlroots (contained in 0.16.0): xdg-activation: Allow to submit tokens. Needed for launch splash.
- wlroots (contained in 0.16.0): cancel touches
- xdg-desktop-portal-wlr (contained in 0.6.0): For screen sharing: https://github.com/emersion/xdg-desktop-portal-wlr/pull/192
- pipewire: Add icon_name properties to ucm: https://gitlab.freedesktop.org/pipewire/pipewire/-/merge_requests/1646
- wl-clipboard: Don't require gtk_shell >= 4
- gnome-settings-daemon: Drop sleep notification, otherwise suspend might fail. See https://gitlab.gnome.org/GNOME/gnome-settings-daemon/-/issues/656