Jump to content

JKI

JKI Team
  • Posts

    803
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by JKI

  1. http://www.jkisoft.com/packages/packages/thelvlab_lib_promview/thelvlab_lib_promview-1.1.0.6.bmp

    Product: PromVIEW v1.1.0.6
    Company: TheLabVIEWLab
    Release Date: Thu, 08 Apr 2021 11:22:26 -0700
    Packager: EricM

    Description: PromVIEW is a client library written in LabVIEW to expose metrics to Prometheus (https://www.prometheus.io)

    PromVIEW provides the basic functions to instrument your LabVIEW code by creating metrics and collectors, and it can also be used to create an exporter through the <i>Tools > PromVIEW > Create Exposition Web Service...</i> menu.
    An Prometheus exporter is a web service that exposes the metrics so Prometheus can scrape this web service and update its time-series database with the new values.

    <b>Changelog:</b>
    1.1.0 : - Fixed how labels are stored in metrics so they now allow multiple values
    BREAKING CHANGE: for all metric types, Create.vi now accepts label names as an array
    - Edited the internal structure of metrics to handle internal "children" metrics
    - Edited examples to reflect changes. Also the basic example is more fitted to track metrics.
    - Partially support OpenMetrics format through metrics format and additional children metrics


    Release Notes:

  2. http://www.jkisoft.com/packages/packages/pnr_lib_labview_composition/pnr_lib_labview_composition-1.1.0.9.bmp

    Product: LabVIEW Composition v1.1.0.9
    Company: PNR
    Release Date: Thu, 08 Apr 2021 10:14:56 -0700
    Packager: Pascal Neuperger

    Description: This library provides functions to compose and decompose objects, clusters, maps and sets in LabVIEW - effectively breaking encapsulation by making private data accessible.

    Use with caution!

    <i>Note</i>
    Maps and Sets require LabVIEW 2019 or higher.

    Release Notes: - Added Compose Map
    - Added Compose Set

    Package Homepage

  3. http://www.jkisoft.com/packages/packages/lv_toml/lv_toml-2.0.1.11.bmp

    Product: LV-TOML v2.0.1.11
    Company: Zaphiro Technologies
    Release Date: Thu, 08 Apr 2021 09:56:26 -0700
    Packager: Antoine Chalons

    Description: LV-TOML is an open source LabVIEW library for parsing and composing TOML files.

    Release Notes: - fix bug : removed unwanted "write to file" in the read TOML file (LV) (GitHub issue #4)
    - add feature : vim to read from TOML file (GitHub issue #6)

    Package Homepage

  4. http://www.jkisoft.com/packages/packages/lv_toml/lv_toml-2.0.0.10.bmp

    Product: LV-TOML v2.0.0.10
    Company: Zaphiro Technologies
    Release Date: Wed, 07 Apr 2021 10:04:13 -0700
    Packager: Antoine Chalons

    Description: LV-TOML is an open source LabVIEW library for parsing and composing TOML files.

    Release Notes: Added since 1.2 :
    - switch to LV2017 (was 2015)
    - support for path
    - improved error reporting (range 543xxx)
    - fix GitHub issue #2

    Package Homepage

  5. http://www.jkisoft.com/packages/packages/labview_open_source_project_lib_connection/labview_open_source_project_lib_connection-1.0.0.4.bmp

    Product: Connection v1.0.0.4
    Company: LabVIEW Open Source Project
    Release Date: Mon, 05 Apr 2021 15:23:16 -0700
    Packager: Francois Normandin

    Description: Connection
    https://github.com/LabVIEW-Open-Source/Connection

    This package consists the fundamental building blocks for abstract connection extensions




    Release Notes: - Initial release of independently packaged Connection library for "G Open Source Project for LabVIEW"
    - Packaged with Local Queue connection and TCP connection

    Package Homepage

  6. http://www.jkisoft.com/packages/packages/labview_open_source_lib_oauth2/labview_open_source_lib_oauth2-1.0.0.3.bmp

    Product: Oauth 2.0 v1.0.0.3
    Company: LabVIEW Open Source Project
    Release Date: Mon, 05 Apr 2021 15:21:30 -0700
    Packager: Francois Normandin

    Description: Oauth 2.0 library for LabVIEW

    Open Authorization 2.0 API (Oauth2)

    This library contains the base class for Oauth2 authorization workflow.

    Extensions currently provided with the framework:
    - Oauth2.Github
    - Oauth2.GitLab
    - Oauth2.Slack
    - Oauth2.LinkedIn
    - Oauth2.Google
    - Oauth2.Template (for extensions)

    (suggestions for more integrations, and community contributions are welcome)

    Online authoritative resources:
    https://oauth.net/2
    https://www.oauth.com/

    Online blogs by LabVIEW developers:
    - https://info.erdosmiller.com/blog/implementing-oauth2-authorization-in-labview
    - https://stravaro.com/2020/01/oauth2-and-labview/


    A few comments about the current state and evolution of the project:

    - This Oath2 library does not support Implicit Grant Flow, as it will be deprecated in Oauth 2.1 due to security concerns.
    - PKCE (Proof-Key Challenge Exchange) workflow is implemented and used by default. It is highly recommended not to deactivate it, as it will become a mandatory feature when Oauth2.1 becomes the norm.

    - As of this release, the library currently supports only redirections on port 80 (http) but has been built in a way that future updates should be easy to change to port 443 through https connection. This is because the project is maintained in LV2013 and TLS support was added in LV2020. However, an OauthClient class has been created to act as an "interface" which should allow injection of a TLS-secured client in later versions of LabVIEW (distributed as an extension addon to this library)
    - This library currently supports Authorization tokens, but not the ID Tokens for OpenID extension. It should be part of a future upgrade, once support for JWT (JSON Web Token) has been added to the library.

    Release Notes: - Initial release of Open Authorization 2.0 API (Oauth2)

    This release contains the base class for Oauth2 authorization workflow.

    It also contains extensions for popular services such as Github, Gitlab, Google, LinkedIn and Slack.
    A template class is provided to start new service extensions quickly to suit the developer's needs.
    I'm know Azure and AWS should be in that list, but those mentioned above were prioritized for developer's own selfish reasons... Hopefully this is remedied quickly through community contributions.

    By default, the Oauth2 library uses the PKCE (Proof-Key Challenge Exchange) workflow, which will become mandatory as of Oauth 2.1. PKCE can be deactivated with an API call before the Authorize method is called, but since it is a no-op on servers that do not support it, it is recommended that it stays activated for all authorization requests.

    The Oauth2 library does not (and will not) support Implicit Grant Flow, as it will be deprecated in Oauth 2.1 due to security concerns.

    A few comments about the current state and evolution of the project:
    - The library currently supports only redirections on port 80 (http) but has been built in a way that future updates should be easy to change to port 443 through https connection. This is because the project is maintained in LV2013 and TLS support was added in LV2020. However, an OauthClient class has been created to act as an "interface" which should allow injection of a TLS-secured client in later versions of LabVIEW (distributed as an extension addon to this library)
    - This library currently supports Authorization tokens, but not the ID Tokens for ConnectID extension. It is being planned as well, once support for JWT (JSON Web Token) has been added to the library.

    Package Homepage

  7. http://www.jkisoft.com/packages/packages/ederson_ramalho___cla_lib_u1250_series_multimeter_device_driver/ederson_ramalho___cla_lib_u1250_series_multimeter_device_driver-1.0.0.1.bmp

    Product: U1250 Series Multimeter Device Driver v1.0.0.1
    Company: Ederson Ramalho - CLA
    Release Date: Mon, 05 Apr 2021 12:40:47 -0700
    Packager: Ederson Ramalho

    Description: This package is a device driver for Keysight U1250 Series handheld digital multimeters. It has commands like, instrument identification, reset, read measurement, read battery voltage, baklight turn on/off and beyond.

    Release Notes:

  8. http://www.jkisoft.com/packages/packages/labview_open_source_project_lib_mqtt_client/labview_open_source_project_lib_mqtt_client-3.1.6.13.bmp

    Product: MQTT Client v3.1.6.13
    Company: LabVIEW Open Source Project
    Release Date: Mon, 05 Apr 2021 12:35:04 -0700
    Packager: Francois Normandin

    Description: LV-MQTT-Client
    https://github.com/LabVIEW-Open-Source/MQTT-Client

    Release Notes: [Feature: 5] Exposed the RETAIN flag on the Publish message public methods
    [Fix: 6] Wired the Decode message in the simple subscriber drop VI


    Package Homepage

  9. http://www.jkisoft.com/packages/packages/labview_open_source_lib_data_manipulation/labview_open_source_lib_data_manipulation-1.4.0.13.bmp

    Product: Data Manipulation v1.4.0.13
    Company: LabVIEW Open Source Project
    Release Date: Mon, 05 Apr 2021 12:33:23 -0700
    Packager: Francois Normandin

    Description: Data Manipulation is a collection of low-level data manipulation methods for interacting directly with type descriptors and variants to process flattened data efficiently.

    Release Notes: [Fix: 2] KVP Parser now uses a smarter String to Path conversion which support NI-LVConfig/OpenG/OpenSerializer encoding

    [OpenDescriptor]
    - Extract Elements
    - Get Units
    - Array Element Type + DataLength fromType

    [OpenVariant]
    - Added named Empty Cluster variant + Nested Empty Cluster
    - Insert Element in Cluster + Update Element
    - Variant to KVP (Key-Value pairs) or Tree
    - Tree to Variant or KVP
    - KVP to Variant or Tree
    - TypeDescriptor from Variant

    [OpenStringFormatter]
    - New OpenStringFormatter class to expose a formatter class (Variant to String)
    - StringFormatter with label + support timestamp

    [Misc]
    - Diverse Flattened String in-line handling

    Package Homepage

  10. http://www.jkisoft.com/packages/packages/pnr_lib_labview_composition/pnr_lib_labview_composition-1.0.1.6.bmp

    Product: LabVIEW Composition v1.0.1.6
    Company: PNR
    Release Date: Mon, 05 Apr 2021 11:47:04 -0700
    Packager: Pascal Neuperger

    Description: This library provides functions to compose and decompose objects, clusters, maps and sets in LabVIEW - effectively breaking encapsulation by making private data accessible.

    Use with caution!

    <i>Note</i>
    Maps and Sets require LabVIEW 2019 or higher.

    Release Notes: - [#4] Fixed object decomposition failure when the current application instance contains a broken class.

    Package Homepage

  11. http://www.jkisoft.com/packages/packages/ox_origin_state_machine_pipes/ox_origin_state_machine_pipes-1.1.1.1.bmp

    Product: State Machine Pipes v1.1.1.1
    Company: OX Origin Technologies SRL
    Release Date: Tue, 30 Mar 2021 21:27:08 -0700
    Packager: Alex Bugnar

    Description: State Machine Pipes provides an easy way of implementing the Pipe and Filter design pattern within a state machine.

    This allows you to specify a sequence of operations to be executed as a group (pipe), in which data from one operation is availabel to be further processed or used by the next operation. Also allows you to cancel the entire pipe if there is an error in one of its operations, for example.

    This design pattern allows you to specify operations more granularly, avoiding unecessary duplication of code for similar code sequences. Also allows you to specify 2 or more code sequences which are identical with the exception of one operation (which may be decoded dynamically) without duplicating code.

    See the link below for a description of the design pattern:
    https://docs.microsoft.com/en-us/azure/architecture/patterns/pipes-and-filters

    <b>Contact us at contact@oxorigin.com with any suggestions for improvements, so we can include them in future versions.</b>

    www.oxorigin.com

    Release Notes: Updated documentation of SetPreviousData to specify that the function executes even if there is an error at the "error in" terminal.

    Package Homepage

  12. http://www.jkisoft.com/packages/packages/ox_origin_state_machine_pipes/ox_origin_state_machine_pipes-1.1.0.1.bmp

    Product: State Machine Pipes v1.1.0.1
    Company: OX Origin Technologies SRL
    Release Date: Mon, 29 Mar 2021 14:04:16 -0700
    Packager: Alex Bugnar

    Description: State Machine Pipes provides an easy way of implementing the Pipe and Filter design pattern within a state machine.

    See the link below for a description of the design pattern:
    https://docs.microsoft.com/en-us/azure/architecture/patterns/pipes-and-filters

    <b>Contact us at contact@oxorigin.com with any suggestions for improvements, so we can include them in future versions.</b>

    www.oxorigin.com

    Release Notes: Added new function:

    - PreviewNextOperation - allows you to preview the next operation in the queue, without actually dequeuing it

    Package Homepage

  13. http://www.jkisoft.com/packages/packages/ox_origin_state_machine_pipes/ox_origin_state_machine_pipes-1.0.0.5.bmp

    Product: State Machine Pipes v1.0.0.5
    Company: OX Origin Technologies SRL
    Release Date: Mon, 29 Mar 2021 12:10:52 -0700
    Packager: Alex Bugnar

    Description: State Machine Pipes provides an easy way of implementing the Pipe and Filter design pattern within a state machine.

    See the link below for a description of the design pattern:
    https://docs.microsoft.com/en-us/azure/architecture/patterns/pipes-and-filters

    <b>Contact us at contact@oxorigin.com with any suggestions for improvements, so we can include them in future versions.</b>

    www.oxorigin.com

    Release Notes: This is the first release version of this library.

    Package Homepage

  14. http://www.jkisoft.com/packages/packages/pnr_lib_labview_composition/pnr_lib_labview_composition-1.0.0.5.bmp

    Product: LabVIEW Composition v1.0.0.5
    Company: PNR
    Release Date: Sat, 27 Mar 2021 14:36:41 -0700
    Packager: Pascal Neuperger

    Description: This library provides functions to compose and decompose objects, clusters, maps and sets in LabVIEW - effectively breaking encapsulation by making private data accessible.

    Use with caution!

    <i>Note</i>
    Maps and Sets require LabVIEW 2019 or higher.

    Release Notes: First release

    Package Homepage

  15. http://www.jkisoft.com/packages/packages/hse_lib_gitlab_api/hse_lib_gitlab_api-1.0.0.10000.bmp

    Product: GitLab API v1.0.0.10000
    Company: Hampel Software Engineering
    Release Date: Sat, 27 Mar 2021 14:34:50 -0700
    Packager: Hampel Software Engineering

    Description: Automate GitLab by using its simple and powerful REST API.

    In the NI Example Finder, browsing the directory structure, navigate to \Hampel Software Engineering\GitLab API for examples. Insert your private token in LabVIEW Data\gitlabapi\config.ini in order to use the examples.

    ------------------------------------------------------------
    Interested in CI/CD with LabVIEW? Then visit our Release Automation Tools at https://rat.hampel-soft.com. Our tools help automate the testing, documenting, building, packaging and publishing of your projects. Built-in support for Git lets you trigger our tools from your repository, via GitLab CI/CD or Azure DevOps amongst others.
    ------------------------------------------------------------

    This software is published under a free licence; you can use, modify and extend it as you wish. However, if you need commercial support, feel free to reach out to us.

    At Hampel Software Engineering (HSE) we work with our customers to increase the quality of their software through improved development processes. If you are interested in working with HSE or want to learn more about how we can help you please visit www.hampel-soft.com.

    Release Notes: After one year internal use of our open source GitLab API functions we publish them now as a VI Package.

    Package Homepage

  16. http://www.jkisoft.com/packages/packages/labview_open_source_lib_cron_scheduler/labview_open_source_lib_cron_scheduler-1.1.0.14.bmp

    Product: Cron Scheduler v1.1.0.14
    Company: LabVIEW Open Source Project
    Release Date: Mon, 15 Mar 2021 14:35:24 -0700
    Packager: Francois Normandin

    Description: Cron Scheduler library for LabVIEW

    This library provides support for parsing Cron Expressions and computing job timing.
    Compatible with Unix (minute resolution), Jenkins (load distributed) and Quartz (second resolution) formats.

    Keywords:
    Cron
    Scheduling
    Cron Job

    Example expressions:
    0 0 12 * * ? (Fire at 12pm (noon) every day)
    0 15 10 ? * * (Fire at 10:15am every day)
    0 15 10 * * ? 2021 (Fire at 10:15am every day during the year 2021)
    0 * 14 * * ? (Fire every minute starting at 2pm and ending at 2:59pm, every day)
    0 0/5 14 * * ? (Fire every 5 minutes starting at 2pm and ending at 2:55pm, every day)
    0 0/5 14,18 * * ? (Fire every 5 minutes starting at 2pm and ending at 2:55pm, AND fire every 5 minutes starting at 6pm and ending at 6:55pm, every day)
    0 10,44 14 ? 3 WED (Fire at 2:10pm and at 2:44pm every Wednesday in the month of March)
    0 15 10 ? * MON-FRI (Fire at 10:15am every Monday, Tuesday, Wednesday, Thursday and Friday)
    0 15 10 L * ? (Fire at 10:15am on the last day of every month)
    0 15 10 L-2 * ? (Fire at 10:15am on the 2nd-to-last last day of every month)
    0 15 10 ? * 6L (Fire at 10:15am on the last Friday of every month)
    0 15 10 ? * 6#3 (Fire at 10:15am on the third Friday of every month)
    0 0 12 1/5 * ? (Fire at 12pm (noon) every 5 days every month, starting on the first day of the month.)
    H 0 * * ? * (Fire hourly but minute is computed from hash of jobName) -- jenkins



    Release Notes: [Fix: 6] Exposed the JobReport's Map in the palette
    [Feature: 7] Added a Job Started event to get notification from process that job was started )includes job name, GUID and start time)
    [Feature: 8] Added a verbose status update
    [Feature: 9] Check Abort now can set the error output as Warning (default) or Error on demand.
    [Fix: 10] publication of job event is done also on abort or other error.
    [Feature: 11] getExceptionMessage now retrieves the default error message if no error code provided by Job override
    [Feature: 12] Job Creation Tool now will search for template folder

    Package Homepage

  17. http://www.jkisoft.com/packages/packages/labview_open_source_lib_cron_scheduler/labview_open_source_lib_cron_scheduler-1.0.0.10.bmp

    Product: Cron Scheduler v1.0.0.10
    Company: LabVIEW Open Source Project
    Release Date: Wed, 10 Mar 2021 11:00:34 -0800
    Packager: Francois Normandin

    Description: Cron Scheduler library for LabVIEW

    This library provides support for parsing Cron Expressions and computing job timing.
    Compatible with Unix (minute resolution), Jenkins (load distributed) and Quartz (second resolution) formats.

    Keywords:
    Cron
    Scheduling
    Cron Job

    Example expressions:
    0 0 12 * * ? (Fire at 12pm (noon) every day)
    0 15 10 ? * * (Fire at 10:15am every day)
    0 15 10 * * ? 2021 (Fire at 10:15am every day during the year 2021)
    0 * 14 * * ? (Fire every minute starting at 2pm and ending at 2:59pm, every day)
    0 0/5 14 * * ? (Fire every 5 minutes starting at 2pm and ending at 2:55pm, every day)
    0 0/5 14,18 * * ? (Fire every 5 minutes starting at 2pm and ending at 2:55pm, AND fire every 5 minutes starting at 6pm and ending at 6:55pm, every day)
    0 10,44 14 ? 3 WED (Fire at 2:10pm and at 2:44pm every Wednesday in the month of March)
    0 15 10 ? * MON-FRI (Fire at 10:15am every Monday, Tuesday, Wednesday, Thursday and Friday)
    0 15 10 L * ? (Fire at 10:15am on the last day of every month)
    0 15 10 L-2 * ? (Fire at 10:15am on the 2nd-to-last last day of every month)
    0 15 10 ? * 6L (Fire at 10:15am on the last Friday of every month)
    0 15 10 ? * 6#3 (Fire at 10:15am on the third Friday of every month)
    0 0 12 1/5 * ? (Fire at 12pm (noon) every 5 days every month, starting on the first day of the month.)
    H 0 * * ? * (Fire hourly but minute is computed from hash of jobName) -- jenkins



    Release Notes: - Initial release of Cron Scheduler library with basic Cron Expression parsing for Quartz-compatible expressions, Jenkins compatible load distributed expression and Unix legacy expressions.
    - Job base class (overridable with Job.specific)
    - Job.StaticVIRef (launch any VI as a job)

    Package Homepage

  18. http://www.jkisoft.com/packages/packages/lvos_lib_caraya_cli_extension/lvos_lib_caraya_cli_extension-1.1.0.3.bmp

    Product: Caraya CLI Extension v1.1.0.3
    Company: LabVIEW Open Source Project
    Release Date: Wed, 10 Mar 2021 10:30:04 -0800
    Packager: LabVIEW Open Source Project

    Description: Command Line Interface extension for JKI's Caraya using G-CLI from Wiresmith.

    Release Notes: Fixed the behavior change between Caraya 1.0 and 1.1
    Now uses the Run Tests method which is appropriate for the task


    Package Homepage

  19. http://www.jkisoft.com/packages/packages/jki_lib_jki_discrete_control_systems/jki_lib_jki_discrete_control_systems-1.0.0.4.bmp

    Product: JKI Discrete Control Systems v1.0.0.4
    Company: JKI
    Release Date: Wed, 03 Mar 2021 23:56:52 -0800
    Packager: Javier Ruiz

    Description: Implements useful tools for control systems like controllers, simulators, and filters using a discrete control approach. The toolkit also contains examples on how to implement regular feedback and cascade control using PIDs. There's also a low-pass filter example.

    Included in this build:
    - Controllers: PID, PI
    - Simulator: second order process
    - Filters: second order low pass
    - Identification: coming soon

    At JKI we develop software, architect solutions, and design user interfaces to automate, test, and control complex systems using a combination of LabVIEW and Python. Our customers include large corporations and startups in industries like automotive, energy, biotech, semicon, and aerospace. If you are interested in working with JKI or want to learn more about how we can help your company please visit http://jki.net


    Release Notes: - First public build of the package



    Package Homepage

  20. http://www.jkisoft.com/packages/packages/euv_tech_lib_dvr_helper/euv_tech_lib_dvr_helper-1.0.0.14.bmp

    Product: DVR Helper v1.0.0.14
    Company: EUV Tech
    Release Date: Mon, 01 Mar 2021 13:00:08 -0800
    Packager: Alexander Khodarev

    Description: Fast and easy way to create accessors for DVR based classes. Works similar to native Labview accessor creator (which only works for objects-by-wire). Right click DVR in the class control, select properties for which you want to create accessors and click ok.
    PDF manual is located in following directory:
    C:\Program Files (x86)\National Instruments\LabVIEW 2018\resource\plugins\PopupMenus\edit time panel and diagram\_DVR Helper Source\Documentation
    (check path for Labview version)

    Release Notes:

  21. http://www.jkisoft.com/packages/packages/labview_open_source_project_lib_labview_open_source_palette/labview_open_source_project_lib_labview_open_source_palette-1.0.2.7.bmp

    Product: LabVIEW Open Source Palette v1.0.2.7
    Company: LabVIEW Open Source Project
    Release Date: Mon, 01 Mar 2021 10:22:25 -0800
    Packager: Francois Normandin

    Description:

    Release Notes: - removed the GCentral package dependency
    -

    Package Homepage

  22. http://www.jkisoft.com/packages/packages/euv_tech_lib_dvr_helper/euv_tech_lib_dvr_helper-1.0.0.12.bmp

    Product: DVR Helper v1.0.0.12
    Company: EUV Tech
    Release Date: Thu, 25 Feb 2021 20:55:35 -0800
    Packager: Alexander Khodarev

    Description: Fast and easy way to create accessors for DVR based classes. Works similar to native Labview accessor creator (which only works for objects-by-wire). Right click DVR in the class control, select properties for which you want to create accessors and click ok.
    PDF manual is located in following directory:
    C:\Program Files (x86)\National Instruments\LabVIEW 2018\resource\plugins\PopupMenus\edit time panel and diagram\_DVR Helper Source\Documentation
    (check path for Labview version)

    Release Notes:

  23. http://www.jkisoft.com/packages/packages/error_structure_drawer/error_structure_drawer-2.2.0.2.bmp

    Product: Error Structure Drawer v2.2.0.2
    Company: Stuart J. Box
    Release Date: Fri, 19 Feb 2021 15:08:47 -0800
    Packager: Stuart J. Box

    Description: A LabVIEW Quick-Drop plug-in for implementing the standard LabVIEW error handling functionality: it draws an error structure around existing elements on the block diagram.

    The default shortcut from Quick-Drop is
    Ctrl + e

    -----------------------------------------------------------------------------------

    Many of the plugin's config settings can be easily modified from within "ErrorDrawerConfig.vi". These settings include the style used for creating error controls, alignment type used for controls and indicators, and the spacings used between various elements.

    -----------------------------------------------------------------------------------

    The plugin has slightly different functionality depending on what items (if any) are already on the block diagram, but the general behaviour includes:

    - Creates a new case structure around existing block diagram elements.
    - Creates a new error control and error terminal if not already present on the top-level diagram.
    - Moves all control and indicator terminals present on the top-level diagram to position them on the left and right of the new case structure respectively. Also aligns each group.
    - Wires the error control to the new case structure's selector terminal, and wires from the inside of the selector terminal through the error case to the error indicator.
    - Connects the error control and error indicator to the connector pane - to the bottom-left and bottom-right nodes respectively.

    Release Notes:

  24. http://www.jkisoft.com/packages/packages/wovalab_lib_antidoc_cli/wovalab_lib_antidoc_cli-1.2.1.9.bmp

    Product: Antidoc CLI v1.2.1.9
    Company: Wovalab
    Release Date: Wed, 17 Feb 2021 10:00:37 -0800
    Packager: Olivier Jourdan

    Description: This package installs a CLI tool to generate lvproj documentation with a Windows terminal.
    The main use case is to integrate documentation generation as part of your CI/CD.

    Release Notes: This version brings the compatibility with Antidoc 1.2.1

    Package Homepage

  25. http://www.jkisoft.com/packages/packages/wovalab_lib_antidoc/wovalab_lib_antidoc-1.2.1.59.bmp

    Product: AntiDoc v1.2.1.59
    Company: Wovalab
    Release Date: Wed, 17 Feb 2021 09:57:18 -0800
    Packager: Olivier Jourdan

    Description: This tool parses lvproj to generate its documentation.

    The document generated is a plain-text file that uses Asciidoc syntax. You can render this file as a PDF or HTML file using Asciidoctor toolchain (https://asciidoctor.org).

    Note: you can integrate Antidoc in you CI/CD process using the CLI tool provided by the additional package Antidoc CLI

    Release Notes: Except for the LabVIEW Interfaces support, this is mainly a maintenance release.

    == New features:

    . Handle LabVIEW interfaces --> https://gitlab.com/wovalab/open-source/labview-doc-generator/-/issues/117

    == Changes:

    . Better integration of progress bar API --> https://gitlab.com/wovalab/open-source/labview-doc-generator/-/issues/99 and https://gitlab.com/wovalab/open-source/labview-doc-generator/-/issues/100
    . Icons replace event types string in DQMH event table --> https://gitlab.com/wovalab/open-source/labview-doc-generator/-/issues/104
    . Change UML Class diagram orientation --> https://gitlab.com/wovalab/open-source/labview-doc-generator/-/issues/124


    == Bug Fix :


    . Add reference to classy Diagram Viewer in Legal Information section --> https://gitlab.com/wovalab/open-source/labview-doc-generator/-/issues/97
    . Add config object input to all public VIs using the config --> https://gitlab.com/wovalab/open-source/labview-doc-generator/-/issues/98
    . Lib filtering not correctly apply on callers --> https://gitlab.com/wovalab/open-source/labview-doc-generator/-/issues/101
    . Wrong menu item name --> https://gitlab.com/wovalab/open-source/labview-doc-generator/-/issues/102
    . Error during UML generation due to interfaces --> https://gitlab.com/wovalab/open-source/labview-doc-generator/-/issues/116
    . Progress bar refresh for multi-target project --> https://gitlab.com/wovalab/open-source/labview-doc-generator/-/issues/118
    . Empty section displayed --> https://gitlab.com/wovalab/open-source/labview-doc-generator/-/issues/119
    . Missing item in library --> https://gitlab.com/wovalab/open-source/labview-doc-generator/-/issues/123

    Package Homepage

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.