From Evangelos Ribeiro Tzaras to ~fabrixxm/confy-dev
--- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 40e990e..d325df3 100644 --- a/po/de.po +++ b/po/de.po @@ -396,7 +396,7 @@ msgstr "Confy" #: data/net.kirgroup.confy.desktop.in:9 msgid "Conference;Organize;" msgstr "Tagung;Konferenz,organisieren;" msgstr "Tagung;Konferenz;organisieren;"[message trimmed]
From Evangelos Ribeiro Tzaras to ~fabrixxm/confy-dev
Confy is no handler for any MIME types, so there is no need to update the MIME cache database. Signed-off-by: Evangelos Ribeiro Tzaras <devrtz@fortysixandtwo.eu> --- meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/meson.build b/meson.build index 6c92026..e0edad4 100644 --- a/meson.build +++ b/meson.build @@ -18,5 +18,4 @@ subdir('po') gnome.post_install( [message trimmed]
From Evangelos Ribeiro Tzaras to ~fabrixxm/confy-dev
Hi, On Wed, 2023-08-09 at 16:37 +0200, Fabio wrote: > Il giorno mer, 09/08/2023 alle 14.59 +0100, Sebastian Crane ha > scritto: > > > > Yes, please do merge this patch and update it for blueprint :) > > merged > > > Since blueprint is fairly well packaged in various distributions > > now, > > and could probably be brought up to version >0.8.1 for all those > > packages, do you think the vendored copy of blueprint in
From Evangelos Ribeiro Tzaras to ~fabrixxm/confy-dev
Hi Sebastian and fabbrixxm!
Patch makes sense to me.
Maybe a tiny suggestion bellow (because i stumbled upon it while looking at
Debian packaging [1][2]
But feel free to disregard it.
Otherwise this my signed-off :P
On Mon, 2023-08-07 at 17:49 +0100, Sebastian Crane wrote:
> Bring the description, build requirements and instructions in
From Evangelos Ribeiro Tzaras to ~fabrixxm/confy-dev
Hi Fabio! On Thu, 2023-06-01 at 18:05 +0200, Fabio wrote: > Hi everyone! > > I'm sorry for the lack of updates on Confy, but life got in the way. Don't worry about it. It happens to everyone of us. For instance: Debian bookworm ships with 0.6.3; and not 0.6.4 /o\ > I've just released Confy 0.6.5, with a really small changelog: > > - Add French tranlsation, thanks to Irénée Thirion
From Evangelos Ribeiro Tzaras to ~martijnbraam/public-inbox
The icon was introduced in ffa0b6a57ebed3f851d79723862c82bc927ff732 but never actually used (user-trash-symbolic is used instead). --- numberstation/icon/delete-symbolic.svg | 1 - numberstation/numberstation.gresource.xml | 2 -- 2 files changed, 3 deletions(-) delete mode 100644 numberstation/icon/delete-symbolic.svg diff --git a/numberstation/icon/delete-symbolic.svg b/numberstation/icon/delete-symbolic.svg deleted file mode 100644 index 734827e..0000000 --- a/numberstation/icon/delete-symbolic.svg [message trimmed]
From Evangelos Ribeiro Tzaras to ~martijnbraam/public-inbox
Should be fairly self explanatory: Icon was unusued therefore it got removed.
From Evangelos Ribeiro Tzaras to ~fabrixxm/confy-dev
This allows copy and pasting from the UI. --- src/pages.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages.py b/src/pages.py index 2475553..b2f5d87 100644 --- a/src/pages.py +++ b/src/pages.py @@ -203,6 +203,7 @@ class ConferencePage(BasePage): LBL_PROPS = { 'justify': Gtk.Justification.CENTER, 'halign' : Gtk.Align.CENTER, 'selectable' : True,[message trimmed]
From Evangelos Ribeiro Tzaras to ~fabrixxm/confy-dev
Visited links might get mistaken for underlined text, so disable tracking visiting links. --- src/pages.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages.py b/src/pages.py index be772f5..2475553 100644 --- a/src/pages.py +++ b/src/pages.py @@ -203,6 +203,7 @@ class ConferencePage(BasePage): LBL_PROPS = { 'justify': Gtk.Justification.CENTER, 'halign' : Gtk.Align.CENTER, [message trimmed]
From Evangelos Ribeiro Tzaras to ~fabrixxm/confy-dev
The following is an example of the regex: >>> orig 'some text about [debian](https://debian.org "woohoo") yay!' >>> re.sub("\[([^]]+?)\]\(([^)\s]+?)(?:\s.*?)?\)", r'<a href="\2">\1</a>', orig) 'some text about <a href="https://debian.org">debian</a> yay!' Closes #19 --- src/pages.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/pages.py b/src/pages.py index be772f5..caa4932 100644 [message trimmed]