Skip to content

Releases: Cryptolens/cryptolens-java

v1.27: Maven package + ExtendLicense method + remove commons-codec

Choose a tag to compare

@artemlos artemlos released this 28 Aug 12:32

This release introduces the following changes:

  1. We dropped commons-codec and replaced with a built in library in Java 8. Java 7, which is deprecated, required this dependency.
  2. GetMachineCode is cross platform when called with v=3. Calling with v=2 will use the older version that did not include Mac and Linux.
  3. oshi-core is optional. To avoid it, you can just call GetMachineCode with v=2 (Win) or v=3(Win+Mac+Linux).
  4. If you use oshi-core, we upgraded it to a newer version to fix issues on newer platforms.
  5. Introduced ExtendLicense method.

The package can be installed using Maven Central as per instructions on this page: https://central.sonatype.com/artifact/io.cryptolens/cryptolens/overview. This release includes a jar file as well.

Thanks to @sbraconnier, @sergey-oplavin and @stokpop.

v1.26: Update to HasFeature method

Choose a tag to compare

@artemlos artemlos released this 22 Sep 09:30

Minor update to HasFeature method and update of the gson library.

v1.25: Update method to obtain UUID

Choose a tag to compare

@artemlos artemlos released this 28 Jun 12:57

This version changes the way UUID is computed on Windows with v=2 (i.e. when either Helpers.GetMachineCode or Helpers.IsOnRightMachine is called with version parameter set to 2). Instead of using WMIC, the following command is used instead:

cmd /c powershell.exe -Command "(Get-CimInstance -Class Win32_ComputerSystemProduct).UUID"

Please note that in case of an error when retrieving the UUID, null will be returned.

v1.24: Add an option to disable SSL verification

Choose a tag to compare

@artemlos artemlos released this 10 Nov 12:50

SSL certificate verification can be disable by setting adding the following line before calling e.g., Key.Activate:

HelperMethods.SSLVerifyEnabled=false;

v1.24: Add an option to disable SSL verification

Choose a tag to compare

@artemlos artemlos released this 08 Nov 13:03

SSL certificate verification can be disable by setting adding the following line before calling Key.Activate:

HelperMethods.SSLEnabled=false;

v1.23: Add a new method to compute the machine code + new overload of GetKey

Choose a tag to compare

@artemlos artemlos released this 22 Oct 10:22
f04fc03
Update README.md

v1.22: Fix for floating licenses in offline mode using the license server

Choose a tag to compare

@artemlos artemlos released this 15 Oct 12:34
Fix for license server (floating licenses)

v1.21: Add support for Messaging API + API error fix

Choose a tag to compare

@artemlos artemlos released this 16 Sep 12:21

v1.20: Add support for the license server

Choose a tag to compare

@artemlos artemlos released this 18 Feb 09:16
0cc0cd1

v1.19: Fixes to Helpers.IsOnRightMachine + support for friendly name

Choose a tag to compare

@artemlos artemlos released this 23 Oct 08:31
Update ActivateModel.java