ModuleShowcasePortal : change module version?

I have modules for Ignition 8.1, (version 1.8.x), module version in ModuleShowcasePortal is automatically set to 1.

For thoses modules for Ignition 8.3, I want to use version 3.x.x, but I don't know how to set this in ModuleShowcasePortal version to 3 ?

Perhaps a module parameters, I tried to add version = 3, but it has no effect.. VERSION 1 is always displayed.

Perhaps @pturmel ? you have found a solution, I see you 8.0 module are 1.x, 8.1 are 2.x ?

module.xml

<?xml version="1.0" encoding="UTF-8"?><modules>

<module><id>com.bouyguesenergiesservices.utils</id>

<name>BYES-Utils</name>

<description>A module to add utils functions for VISION and GATEWAY</description>

<version>3.0.0.2025092511-beta0</version>

<requiredignitionversion>8.3.0</requiredignitionversion>

<requiredframeworkversion>8</requiredframeworkversion>

<license>license.html</license>

<documentation>index.html</documentation>

pehaps @Kevin.McClusky or @paul-griffith have a solution ?

How can we set the current and max version displayed in the License manager ?


Adding params currentversion and latestversion seems not to be the good solution

Sorry, haven't been using that portal. I've hacked better behavior in the Vision project, but it isn't sufficiently clean for sharing. I'll be making a nice workflow in Perspective when I have some free time.

Perhaps delete that and re-add will give you an option?

If you double click into the version column of the row you’d like to update, you’ll be able to enter in a numeric. Then click out of the row/column and you’ll be able to save the changes. This will update the version of the module on that license and the changes will be reflected in license manager under “current version” and “max version”. No need to enter in special params for the module.

1 Like

Yes I see. Thanks a lot @Samir_Nileshwar !
Is it possible to allow several version for a module on the same licence keys ?

for example, a module 1.x and 2.x -> can we use 1,2 ?
What are the possible synthax for the version number in ModuleShowcasePortal

The module version is the highest version that’s allowed. That means that if a key has version 2, it will also allow version 1 to run. If it’s version 3, it’ll also allow version 2 and version 1. It works the same way as Ignition’s licensing for our own modules, where you’re licensed for a specific version, but have the ability to run older versions if you really want to.

(Possible syntax: simply an integer.)

that make sens, thank a lot for the clarification !