From 1b6818f74ac32068ddb69795cd5cc65564538978 Mon Sep 17 00:00:00 2001 From: Pieter Lambrecht Date: Mon, 17 Jun 2024 16:29:53 +0200 Subject: [PATCH 1/2] v1.4.4 Remove maxlength from inputfield --- netbox_ipcalculator/__init__.py | 2 +- .../templates/netbox_ipcalculator/core/subnets.html | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/netbox_ipcalculator/__init__.py b/netbox_ipcalculator/__init__.py index 00498b9..ed9e722 100644 --- a/netbox_ipcalculator/__init__.py +++ b/netbox_ipcalculator/__init__.py @@ -8,7 +8,7 @@ class IPCalcultorConfig(PluginConfig): name = 'netbox_ipcalculator' verbose_name = 'IP Calculator' description = 'Netbox IP Calculator' - version = '1.4.3' + version = '1.4.4' author = 'Pieter Lambrecht' author_email = 'pieter.lambrecht@gmail.com' base_url = 'netbox_ipcalculator' diff --git a/netbox_ipcalculator/templates/netbox_ipcalculator/core/subnets.html b/netbox_ipcalculator/templates/netbox_ipcalculator/core/subnets.html index 796b072..da614a0 100644 --- a/netbox_ipcalculator/templates/netbox_ipcalculator/core/subnets.html +++ b/netbox_ipcalculator/templates/netbox_ipcalculator/core/subnets.html @@ -563,7 +563,7 @@

IP Calculator - Subnet Divider

Network Address/Mask - + diff --git a/setup.py b/setup.py index d15b46a..139943c 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='netbox_ipcalculator', - version='1.4.3', + version='1.4.4', description='Netbox IP Calculator', long_description=long_description, long_description_content_type='text/markdown', From c1d17e237a4d7f2ab22e33914fb4489953775348 Mon Sep 17 00:00:00 2001 From: Pieter Lambrecht Date: Mon, 17 Jun 2024 16:31:23 +0200 Subject: [PATCH 2/2] v1.4.4 Remove maxlength from inputfield --- release-notes.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/release-notes.md b/release-notes.md index bbcc97d..dda3c67 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,4 +1,8 @@ # Release Notes +## v1.4.4 +### Fixes +* #13 Input length of the subnet divider is too short + ## v1.4.3 ### New Features * #9 Extend IPCalculator page with Join/Split functionality