Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport libportal autotype fix to v0.3.3 #27

Closed
wants to merge 1 commit into from
Closed
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
23 changes: 23 additions & 0 deletions 0001-fix-autotypeing-with-libportal.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
From ad1ab73d7148f2349b1d1d18ea9786faeeb3d546 Mon Sep 17 00:00:00 2001
From: Dusk Banks <[email protected]>
Date: Thu, 26 Sep 2024 21:48:29 -0700
Subject: [PATCH] fix: autotypeing with libportal

---
gui/src/services/autotype/libportal_autotype.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui/src/services/autotype/libportal_autotype.py b/gui/src/services/autotype/libportal_autotype.py
index 55faf33..bbc28ef 100644
--- a/gui/src/services/autotype/libportal_autotype.py
+++ b/gui/src/services/autotype/libportal_autotype.py
@@ -2,4 +2,4 @@ from ..goldwarden import autotype

def autotype_libportal(text):
print("autotypeing with libportal")
- goldwarden.autotype(text)
\ No newline at end of file
+ autotype(text)
--
2.46.1

4 changes: 4 additions & 0 deletions com.quexten.Goldwarden.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ modules:
version-query: .tag_name
url-query: '"https://github.com/quexten/goldwarden/archive/refs/tags/" +
.tag_name + ".tar.gz"'
- type: patch
paths:
- 0001-fix-autotypeing-with-libportal.patch
use-git: true
- type: file
path: ./com.quexten.Goldwarden.metainfo.xml
- name: goldwarden-core-daemon
Expand Down