~devrtz

Recent activity

Re: [PATCH] Update README for GTK4 port 1 year, 3 months ago

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

Re: [PATCH] Update README for GTK4 port 1 year, 3 months ago

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

Re: Confy 0.6.5 1 year, 6 months ago

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

[PATCH] Remove unused icon 1 year, 9 months ago

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]

[PATCH numberstation] Remove unused icon 1 year, 9 months ago

From Evangelos Ribeiro Tzaras to ~martijnbraam/public-inbox

Should be fairly self explanatory: 
Icon was unusued therefore it got removed.

[PATCH 2/2] Make GtkLabels selectable 2 years ago

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]

[PATCH 1/2] Don't track visited links in GtkLabel 2 years ago

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]

[PATCH v3] Convert markdown links to html hyperlinks 2 years ago

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]

Re: [PATCH v2] Convert markdown links to html hyperlinks 2 years ago

From Evangelos Ribeiro Tzaras to ~fabrixxm/confy-dev

please disregard the previous email,
I'm having a hard time with specifying the right commit :o

On Thu, 2022-07-21 at 22:51 +0200, Evangelos Ribeiro Tzaras wrote:
> The following is an example of the regex:
> 
> > > > orig='some text about [debian](https://debian.org "woohoo")
> > > > yay!'
> > > > re.sub("\[([^]]+?)\]\(([^)\s]+?).*?\)", r'<a href="\2">\1</a>',
> > > > orig)
> 'some text about <a href="h">debian</a> yay!'
> 
> Closes #19
> ---

[PATCH v2] Convert markdown links to html hyperlinks 2 years ago

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]+?).*?\)", r'<a href="\2">\1</a>', orig)
'some text about <a href="h">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
--- a/src/pages.py
[message trimmed]