<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html lang="en" style='--code-editor-font: var(--default-mono-font, "GitLab Mono"), JetBrains Mono, Menlo, DejaVu Sans Mono, Liberation Mono, Consolas, Ubuntu Mono, Courier New, andale mono, lucida console, monospace;'>
<head>
<meta content="text/html; charset=US-ASCII" http-equiv="Content-Type">
<title>
GitLab
</title>

<style data-premailer="ignore" type="text/css">
a { color: #1068bf; }
</style>


<style>img {
max-width: 100%; height: auto;
}
body {
font-size: .875rem;
}
body {
-webkit-text-shadow: rgba(255,255,255,.01) 0 0 1px;
}
body {
font-family: "GitLab Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans",Ubuntu,Cantarell,"Helvetica Neue",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; font-size: inherit;
}
</style>
</head>
<body style='font-size: inherit; -webkit-text-shadow: rgba(255,255,255,.01) 0 0 1px; font-family: "GitLab Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans",Ubuntu,Cantarell,"Helvetica Neue",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";'>
<div class="content">

<h3 style="margin-top: 20px; margin-bottom: 10px;">
Guido Günther pushed to branch debian/latest at <a href="https://salsa.debian.org/DebianOnMobile-team/phosh">Debian On Mobile / phosh</a>
</h3>
<h4 style="margin-top: 10px; margin-bottom: 10px;">
Commits:
</h4>
<ul>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/aa3161fa7513722e9ad35cffaa499d755947a67a">aa3161fa</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-21T12:16:38+02:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>subprojects: Switch to libcall-ui 0.1.4

This allows us to drop the patch we apply to the subproject.

Signed-off-by: Guido Günther <agx@sigxcpu.org>
Part-of: <https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1531>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/3d434b35de22059e7f5fa17a024a6800ae8cce06">3d434b35</a></strong>
<div>
<span> by Marge Bot </span> <i> at 2024-09-21T13:44:40+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Merge branch 'libcall-ui-0.1.4' into 'main'

subprojects: Switch to libcall-ui 0.1.4

See merge request World/Phosh/phosh!1531</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/299b42bd7b8b81bb42e76e2c6c167c71bfd407c4">299b42bd</a></strong>
<div>
<span> by Yaron Shahrabani </span> <i> at 2024-09-21T19:34:59+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Update Hebrew translation
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/ddcbac412f925ae72b47c56087c397f3bfeb1c8f">ddcbac41</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-22T08:59:46+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>panels: Queue draw instead of commiting the surface

If we commit too early and GTK hasn't updated the buffer the compositor
will terminate us due to the buffer size not matching the scale.

A draw will eventually commit the surface. This makes sure we don't
commit without giving GTK a chance to update e.g. the buffer size.

This is not ideal as we invalidate the complete surface causing a full
redraw.

Closes: https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1050
Signed-off-by: Guido Günther <agx@sigxcpu.org>
Part-of: <https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1405>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/3c927b0f18eb2c7132cabac480a1bf4aff9b04b6">3c927b0f</a></strong>
<div>
<span> by Marge Bot </span> <i> at 2024-09-22T09:05:11+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Merge branch 'fractional-scale-crash' into 'main'

panels: queue draw instead of commiting the surface

Closes #1050

See merge request World/Phosh/phosh!1405</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/acc87f5d63c7fc7ca38dfab8796331ec00c7e02a">acc87f5d</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-23T10:35:35+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>notify-manager: Hold a ref on the activated lockscreen notification

Otherwise it might get disposed before we could action on it and we need
it around to emit the signal in `invoke_action`.

Signed-off-by: Guido Günther <agx@sigxcpu.org>
Tested-by: Teemu Ikonen <tpikonen@mailbox.org>
Part-of: <https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1532>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/41176aaa8a85d9a002844863241993fdea6a9f22">41176aaa</a></strong>
<div>
<span> by Marge Bot </span> <i> at 2024-09-23T10:45:07+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Merge branch 'lockscreen-action' into 'main'

notify-manager: Hold a ref on the activated lockscreen notification

See merge request World/Phosh/phosh!1532</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/cf98ab2f62eac6226e3cb250d2a2c18eb042a4e0">cf98ab2f</a></strong>
<div>
<span> by Jiri Grönroos </span> <i> at 2024-09-24T09:02:08+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Update Finnish translation
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/3006e82b315c37c9423a8d28e07c23df88acbb2b">3006e82b</a></strong>
<div>
<span> by Anders Jonsson </span> <i> at 2024-09-24T18:48:18+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Update Swedish translation
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/f8c721c2b3332d445182b3486d37d62e95d7b624">f8c721c2</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-26T08:02:06+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>build: Version the library name instead of the soname

Now with a real consumer (phrog) let's rather version the API and use a
fixed soname. This unconfuses some packaging tools and also avoids file
conflicts between different API versions.

Signed-off-by: Guido Günther <agx@sigxcpu.org>
Part-of: <https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1534>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/28b841956d2c4507dce21be8216a00079cb25051">28b84195</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-26T08:02:06+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>packaging: Build bindings lib by default

This ensures the build is tested. In contrast to any distro builds we
keep a fixed package name as the packges are meant for testing purposes
only anyway.

Signed-off-by: Guido Günther <agx@sigxcpu.org>
Part-of: <https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1534>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/9ef92f5d82eaf0a61696ea56ebe7a8ae232f8d8f">9ef92f5d</a></strong>
<div>
<span> by Marge Bot </span> <i> at 2024-09-26T08:10:14+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Merge branch 'version-api' into 'main'

build: Version the library name instead of the soname

See merge request World/Phosh/phosh!1534</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/371caa0e812b8ff2693b1278dfa32d78d7322c0f">371caa0e</a></strong>
<div>
<span> by Gotam Gorabh </span> <i> at 2024-09-26T11:36:29+02:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>notification-content: Set action-area border to none

Remove the line that is under the notification frame.

Fixes: https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1027
Part-of: <https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1461>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/6b94024c44a29732a30b141c5832ed62841a29b5">6b94024c</a></strong>
<div>
<span> by Gotam Gorabh </span> <i> at 2024-09-26T11:36:30+02:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>notification-frame: Add separator to separate notification content

Fix the visual separation between notifications from the same app.

Fixes: https://gitlab.gnome.org/World/Phosh/phosh/-/issues/901
Part-of: <https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1461>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/6a623f3f861a1b5ed1f98da98282806b45d84bcd">6a623f3f</a></strong>
<div>
<span> by Gotam Gorabh </span> <i> at 2024-09-26T11:36:32+02:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>notification-content: Add background color to action-area button

Improve visual separation between notification body and actions, this
allows us to drop the border which would otherwise look odd with the
added separator.

Part-of: <https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1461>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/ef88fc2d4ec84bb54e2a9a5803091bac3b92b583">ef88fc2d</a></strong>
<div>
<span> by Gotam Gorabh </span> <i> at 2024-09-26T11:36:34+02:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>locksreen: Add border color to the notification separator

Use phosh-borders-color for the notification separator otherwise it has
the same color as the notification background.

Part-of: <https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1461>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/cb27eaddc21f36db9512171c0a58559b51cdcff8">cb27eadd</a></strong>
<div>
<span> by Marge Bot </span> <i> at 2024-09-26T09:43:31+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Merge branch 'ntf-ui-fix' into 'main'

notification-content: Fix UI papercuts

Closes #901 and #1027

See merge request World/Phosh/phosh!1461</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/612e46417fe78ded555ce6156de83b8f13002dcf">612e4641</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-26T09:52:10+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>overview: Ignore page changes when overview is not open

Otherwise we might end up focusing the wrong app when another
adds a new toplevel on startup (like e.g. calls).

Part-of: <https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1529>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/3e03f38b76002393275b2ba517b5be572d20b2c9">3e03f38b</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-26T09:52:10+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>wwan-mm: Don't warn when operation got cancelled

Signed-off-by: Guido Günther <agx@sigxcpu.org>
Part-of: <https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1529>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/1e9142216c2ea30a6675d63e9464e093bc6ad2c2">1e914221</a></strong>
<div>
<span> by Marge Bot </span> <i> at 2024-09-26T09:59:39+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Merge branch 'overview-page-skip' into 'main'

overview: Ignore page changes when overview is not open

See merge request World/Phosh/phosh!1529</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/f41b88a97cf86bd4c80b5f7ba696e3d1f5ec9785">f41b88a9</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-27T07:24:56+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>shell: Avoid critical when there's no builtin monitor

There might not always be a builtin monitor so check for that when
handling primary monitor changes.

Signed-off-by: Guido Günther <agx@sigxcpu.org>
Part-of: <https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1535>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/4c7d38bbd94eaa9f9b9a857bda0e935f86e7b44d">4c7d38bb</a></strong>
<div>
<span> by Marge Bot </span> <i> at 2024-09-27T07:37:18+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Merge branch 'builtin-critical' into 'main'

shell: Avoid critical when there's no builtin monitor

Closes #1027

See merge request World/Phosh/phosh!1535</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/6dd2d72323d2bf107e7d046d619120ff533c621e">6dd2d723</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-28T09:24:46+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>data: Drop feedbackd override

Feedbackd sets this as default now.

Signed-off-by: Guido Günther <agx@sigxcpu.org>
Part-of: <https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1536>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/672e6e07cc89bd9c3cae52c7a41af9c911204939">672e6e07</a></strong>
<div>
<span> by Marge Bot </span> <i> at 2024-09-28T09:33:14+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Merge branch 'drop-fbd-important-override' into 'main'

data: Drop feedbackd override

See merge request World/Phosh/phosh!1536</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/c45ac27473b3bc4195c4625e439fc98cff809557">c45ac274</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-29T12:52:32+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>status-page-placeholder: Center align horizontally

Otherwise the empty state ends up left aligned when there's
horizontal space.

Signed-off-by: Guido Günther <agx@sigxcpu.org>
Part-of: <https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1537>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/ab37ec2b9dd673e361e63f18cc55be99eb55c5e0">ab37ec2b</a></strong>
<div>
<span> by Marge Bot </span> <i> at 2024-09-29T12:59:57+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Merge branch 'center-align-bt' into 'main'

status-page-placeholder: Center align horizontally

See merge request World/Phosh/phosh!1537</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/1c25f420e443dc1dad93bff6a2233f3269129075">1c25f420</a></strong>
<div>
<span> by Juliano de Souza Camargo </span> <i> at 2024-09-29T15:52:36+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Update Brazilian Portuguese translation
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/d4f0bb35e49f4cc34db5eb956ee9c20168c27261">d4f0bb35</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-30T09:33:40+02:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>packaging: Let changelog hook handle rc versions

This allows our release pre script to work for RCs and actual releases.

Signed-off-by: Guido Günther <agx@sigxcpu.org>
Part-of: <https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1539>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/ea661b3a344a4c102cfcaf68fef7ec53f3af4d77">ea661b3a</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-30T10:41:26+02:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>treewide: Document changes and release 0.42.0

Part-of: <https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1539>
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/92e8d55d2f218b412800b07800965432a07c5279">92e8d55d</a></strong>
<div>
<span> by Marge Bot </span> <i> at 2024-09-30T09:25:36+00:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Merge branch 'rel-0.42.0' into 'main'

treewide: Document changes and release 0.42.0

See merge request World/Phosh/phosh!1539</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/354782b01b96854229fbff401e199d325c26d851">354782b0</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-30T12:09:01+02:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>New upstream version 0.42.0</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/eda6f37820920c4e9423732b671b37cd16899178">eda6f378</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-30T12:09:10+02:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Update upstream source from tag 'upstream/0.42.0'

Update to upstream version '0.42.0'
with Debian dir 7b129a25266d224196598eba167db05f90959ac4</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/7f721dab0e17369890b39f3b86e5d1fb1895a387">7f721dab</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-30T12:09:10+02:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>New upstream release
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/ae9c72141d9297f994a5b94691b759bae874e45a">ae9c7214</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-30T12:10:09+02:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Drop patches applied upstream
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/6107b43a17dbfba658edccad957aeae002a581b7">6107b43a</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-30T13:04:03+02:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>d/control: Bump recommends on feedbackd

Needed to get the correct overrides for apps marked as important
</pre>
</li>
<li>
<strong style="font-weight: 600;"><a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/commit/8d827e1d7e8f6d64da1e6d3d30e506bc5cc8e19b">8d827e1d</a></strong>
<div>
<span> by Guido Günther </span> <i> at 2024-09-30T13:04:18+02:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Document changes and release 0.42.0-1
</pre>
</li>
</ul>
<h4 style="margin-top: 10px; margin-bottom: 10px;">
30 changed files:
</h4>
<ul>
<li class="file-stats">
<a href="#a5cc2925ca8258af241be7e5b0381edf30266302">
.gitignore
</a>
</li>
<li class="file-stats">
<a href="#587d266bb27a4dc3022bbed44dfa19849df3044c">
.gitlab-ci.yml
</a>
</li>
<li class="file-stats">
<a href="#9f621eb5fd3bcb2fa5c7bd228c9b1ad42edc46c8">
NEWS
</a>
</li>
<li class="file-stats">
<a href="#8309234f7fbe69b1a2ff5eeb053a2c83ccae331b">
data/00_mobi.Phosh.gschema.override
</a>
</li>
<li class="file-stats">
<a href="#9c96da0e9f91d7d8937b69b524702c106258f0d1">
debian/changelog
</a>
</li>
<li class="file-stats">
<a href="#58ef006ab62b83b4bec5d81fe5b32c3b4c2d1cc2">
debian/control
</a>
</li>
<li class="file-stats">
<a href="#09de0c9b1ae57db50bc151191827a25994c05019">
<span class="deleted-file">

debian/patches/Apply-subproject-patches.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#643ed6a1ad3649a89154a7c4b65c7b1f27428725">
<span class="deleted-file">

debian/patches/build-Version-the-library-name-instead-of-the-soname.patch
</span>
</a>
</li>
<li class="file-stats">
<a href="#bc34014ab4b9a49dd7a27bdd8d352912607c3a96">
debian/patches/series
</a>
</li>
<li class="file-stats">
<a href="#0cc1139e3347f573ae1feee5b73dbc8a8a21fcfa">
meson.build
</a>
</li>
<li class="file-stats">
<a href="#4a909f28ec13a23ac75c362bf9a9e15669d47d6d">
po/fi.po
</a>
</li>
<li class="file-stats">
<a href="#9736778f9a16ee15c1c44053336396019853d06d">
po/he.po
</a>
</li>
<li class="file-stats">
<a href="#160f60c3dd59b978e505eccda1925dc3923a1d71">
po/pt_BR.po
</a>
</li>
<li class="file-stats">
<a href="#4a5c1cf4e30bce97baf810ad306a537239e2c52e">
po/sv.po
</a>
</li>
<li class="file-stats">
<a href="#2c97982bef3b6562f70c32d9b4db59fb6123213f">
src/home.c
</a>
</li>
<li class="file-stats">
<a href="#17867de5076d50e87826675d7ed81840420e4676">
src/meson.build
</a>
</li>
<li class="file-stats">
<a href="#a1a4fa5d5133ae22671da60fd5f9cb9a8b287975">
src/notifications/notification-frame.c
</a>
</li>
<li class="file-stats">
<a href="#a367e3b686bb1436562c58ee8d1fc965f78e3708">
src/notifications/notify-manager.c
</a>
</li>
<li class="file-stats">
<a href="#8fa11902a5bc46cfb62ed1b8675aac32037bdd8d">
src/overview.c
</a>
</li>
<li class="file-stats">
<a href="#b86bec864b27b7447f3ac46ec8cb49fe43fcfe8b">
src/shell.c
</a>
</li>
<li class="file-stats">
<a href="#0cf2cde91b3360e5e65503d7757caabcf6a223d4">
src/stylesheet/adwaita-dark.css
</a>
</li>
<li class="file-stats">
<a href="#9a8107f8bd46145e20a6249cef55d3fd1aea6e73">
src/stylesheet/adwaita-hc-light.css
</a>
</li>
<li class="file-stats">
<a href="#aea098121548a4cbf7aebe47c658c3849c6995f3">
src/stylesheet/common.css
</a>
</li>
<li class="file-stats">
<a href="#2a704c3af47ada87b6954e47a36e78471b6bcac0">
src/top-panel.c
</a>
</li>
<li class="file-stats">
<a href="#1bdfc9dfa02e07195e1434148ded802b60d47493">
src/ui/status-page-placeholder.ui
</a>
</li>
<li class="file-stats">
<a href="#df4e778dda01878fd5f339d7065aa91908f5370f">
src/wwan/phosh-wwan-mm.c
</a>
</li>
<li class="file-stats">
<a href="#da7c968484e25ca51c1ce8a2068252a9659f91a3">
subprojects/libcall-ui.wrap
</a>
</li>
<li class="file-stats">
<a href="#567344b9b98eef59494d27e8986df1ee0905cdb1">
subprojects/libcall-ui/.gitlab-ci.yml
</a>
</li>
<li class="file-stats">
<a href="#43695019c30fbc275145526ef6ba0e86d37a1cae">
<span class="new-file">
+
subprojects/libcall-ui/.gitlab-ci/check-consistency
</span>
</a>
</li>
<li class="file-stats">
<a href="#eb9ba81a807c52211f31b0183a34f976b8f71cd8">
subprojects/libcall-ui/tools/check-po

subprojects/libcall-ui/.gitlab-ci/check-po
</a>
</li>
</ul>
<h5 style="margin-top: 10px; margin-bottom: 10px; font-size: .875rem;">
The diff was not included because it is too large.
</h5>

</div>
<div class="footer" style="margin-top: 10px;">
<p style="font-size: small; color: #737278;">

<br>
<a href="https://salsa.debian.org/DebianOnMobile-team/phosh/-/compare/d54e428a0a5b2664128d6e3ffba54dbdfd27a6c5...8d827e1d7e8f6d64da1e6d3d30e506bc5cc8e19b">View it on GitLab</a>.
<br>
You're receiving this email because of your account on <a target="_blank" rel="noopener noreferrer" href="https://salsa.debian.org">salsa.debian.org</a>. <a href="https://salsa.debian.org/-/profile/notifications" target="_blank" rel="noopener noreferrer" class="mng-notif-link">Manage all notifications</a> · <a href="https://salsa.debian.org/help" target="_blank" rel="noopener noreferrer" class="help-link">Help</a>



</p>
</div>
</body>
</html>