Show
Ignore:
Timestamp:
10/11/04 13:56:12 (4 years ago)
Author:
patrickh
Message:

New feature: Basic version checking has been added to all Gadgeteer

plug-ins. In this implementation, an exact match on the
Gadgeteer version number is required when the plug-in is
first loaded. If the version match fails, the plug-in is
discarded.

This implementation is based on a simple technique of building the
Gadgeteer integer version number into the shared library and into the
plug-ins. At run time, the values are compared.

Bumped version to 0.18.0.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/juggler/modules/gadgeteer/RELEASE_NOTES.txt

    r11321 r15780  
    1111=============================================================================== 
    1212 
    13 To add: 
    14     - Info about change over to meters scaling 
    15     - Addition of RIM 
     13 Version: 0.18.0 
     14Released: October 11, 2004 
     15    Required changes when upgrading from all previous versions: 
     16        * Device driver plug-ins must include the following as an exported 
     17          function: 
    1618 
     19             GADGET_DRIVER_EXPORT(vpr::Uint32) getGadgeteerVersion() 
     20             { 
     21                return __GADGET_version; 
     22             } 
     23 
     24        * Cluster plug-ins must include the following as an exported 
     25          function: 
     26 
     27             GADGET_CLUSTER_PLUGIN_EXPORT(vpr::Uint32) getGadgeteerVersion() 
     28             { 
     29                return __GADGET_version; 
     30             } 
     31