Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phrog"
version = "0.45.0"
version = "0.46.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## 🐸 (phrog)

<img align="right" width="180" height="360" src="https://github.com/samcday/phrog/releases/download/0.45.0/demo.webp">
<img align="right" width="180" height="360" src="https://github.com/samcday/phrog/releases/download/0.46.0/demo.webp">

<br />
<br />
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
phrog (0.46.0-1) unstable; urgency=medium

* See https://github.com/samcday/phrog/releases/tag/0.46.0

-- Sam Day <me@samcday.com> Sat, 22 Mar 2025 16:40:21 +0100

phrog (0.45.0-1) unstable; urgency=medium

* See https://github.com/samcday/phrog/releases/tag/0.45.0
Expand Down
2 changes: 1 addition & 1 deletion phrog.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global cargo_install_lib 0

Name: phrog
Version: 0.45.0
Version: 0.46.0
Release: %autorelease
Summary: Mobile-friendly greeter for greetd
License: GPL-3.0-only
Expand Down
6 changes: 3 additions & 3 deletions src/user.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
use crate::dbus::user::UserProxy;
use futures_util::StreamExt;
use futures_util::select;
use glib::warn;
use gtk::gdk_pixbuf::Pixbuf;
use gtk::gio::Cancellable;
use gtk::glib::{clone, spawn_future_local, Object};
use gtk::glib::{Object, clone, spawn_future_local};
use gtk::prelude::{FileExt, ObjectExt};
use gtk::{gio, glib};
use zbus::export::futures_util::StreamExt;
use zbus::zvariant::{ObjectPath, OwnedObjectPath};

static G_LOG_DOMAIN: &str = "phrog-user";
Expand Down Expand Up @@ -88,7 +88,7 @@ mod imp {
use gtk::gdk_pixbuf::Pixbuf;
use gtk::gio::{Cancellable, FileMonitorFlags};
use gtk::glib::subclass::Signal;
use gtk::glib::{clone, Properties};
use gtk::glib::{Properties, clone};
use gtk::prelude::*;
use gtk::subclass::prelude::*;
use gtk::{gio, glib};
Expand Down