From 08653c0fe448cce070560a284338a205a6c97bdf Mon Sep 17 00:00:00 2001 From: Bytez <25850701+Bytezz@users.noreply.github.com> Date: Tue, 6 Jun 2023 17:29:09 +0200 Subject: [PATCH] v0.1.7 --- data/io.github.bytezz.IPLookup.appdata.xml.in | 7 ++++++- meson.build | 2 +- src/main.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/data/io.github.bytezz.IPLookup.appdata.xml.in b/data/io.github.bytezz.IPLookup.appdata.xml.in index e64ad4b..2ac2a34 100644 --- a/data/io.github.bytezz.IPLookup.appdata.xml.in +++ b/data/io.github.bytezz.IPLookup.appdata.xml.in @@ -49,7 +49,12 @@ - + + +

Hide IP field when input is not a domain name.

+
+
+

Show IP if a domain name is given.

diff --git a/meson.build b/meson.build index 1d512fa..ea8cecc 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('iplookup', - version: '0.1.6', + version: '0.1.7', meson_version: '>= 0.59.0', default_options: [ 'warning_level=2', 'werror=false', ], ) diff --git a/src/main.py b/src/main.py index 6c72e27..226ed17 100644 --- a/src/main.py +++ b/src/main.py @@ -60,7 +60,7 @@ def on_about_action(self, widget, _): application_name='IP Lookup', application_icon='io.github.bytezz.IPLookup', developer_name='Bytez', - version='0.1.6', + version='0.1.7', developers=['Bytez'], copyright='© 2023 Bytez') about.present()