
===========================================================================
MARK: released ctapi-cyberjack-3.0.3 (2007/07/20)
===========================================================================


2007/07/18: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- fixed a bug regarding Ecom (0x100) readers


2007/07/17: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- improved AUSB logging (should give more information): Now all drivers are
  able to provide USB logging
- more debugging of ecom code


2007/07/16: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- fixed a bug with APDU responses which exceed 262 bytes with old Ecom's


===========================================================================
MARK: released ctapi-cyberjack-3.0.2 (2007/07/16)
===========================================================================


2007/07/16: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- some major memory checking with valgrind:
  - fixed some possible memory leaks (e.g. by using correct delete 
    notations, adding some delete's where missing etc)
- CT_init() now internally reads vendor specific information (e.g.
  firmware version etc) to make the log files more usefull
- if "$SYSCONFDIR/cyberjack.conf" does not exist try to load
  "$SYSCONFDIR/cyberjack.conf.default" which is installed by default
  on any system (simplifies support)
- Debian packages no longer remove the group "cyberjack"
- "getenv()" in USBLinux.cpp has big issues with the driver: When it is
  used the driver crashes, when commented-out the driver works. Since I
  don't need it here anyway (since there are no Ecom(a) with firmware
  prior to 3.0.6) I just commented it out completely


2007/07/12: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- found correct place for call to usb_reset(), now opening and closing the
  new Cyberjack many times in a row now works


2007/07/11: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- fixed return type in tool cjgeldkarte


===========================================================================
MARK: released ctapi-cyberjack-3.0.1 (2007/07/10)
===========================================================================


2007/07/10: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- introduced a hotfix for the USB suspend problem with Kernel 2.6.20:
  It seems like libusb does not detect the cyberjack 0x400 correctly when
  the reader is suspended (e.g. libusb only detects the reader when it
  currently is not suspended, but the reader needs some time to become
  active after resuming and Libusb does not wait for this time...
  Now we just try for about 5 secs to enumerate the USB devices via libusb
  which keeps the reader active until it has completed its initialization).
  This fix is only needed as long as Libusb has these problems, maybe they
  will fix this...


===========================================================================
MARK: released ctapi-cyberjack-3.0.0 (2007/06/22)
===========================================================================


2007/06/22: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- addes some necessary files for Debian
- introduce check for SuSE10.x: Apparently those systems do not like the call
  to "getenv()" we us in USBLinux.cpp. On all SuSE10 systems this makes
  the driver crash. So for now this call is just disabled on affected systems.
- fixed Info.plist


2007/06/21: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- fixed usbdropdir for RPM packages
- added diagnosis tool "cyberjack"
- prepared release of version 3.0.0 (Linux)


2007/06/06: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- changed Debug.cpp again: Really, we cannot include ctapi_config_l.h due to 
  circular dependencies (the CTAPI stuff is a layer above the code in 
  Debug.cpp). Since the MAC people seem to insist on including it anyway
  (since they reverted my latest modification in that field) I wrapped an
  #ifdef around that include


2007/05/12: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- changed Debug.cpp: Cannot include ctapi_config_l.h due to circular
  dependencies (the CTAPI stuff is a layer above the code in Debug.cpp,
  so we can't use it here). It was used for setting the initial debug layer
  anyway, and this can also be achieved by using the method 
  CDebug::setLevelMask()
- latest changes introduced SCARD_CTL_CODE which wasn't previously 
  available to the Linux code (we don't include PC/SC stuff to stay independent
  from it)
- added definition for type SCARD_IO_REQUEST (same reason)
- what the heck is this newly introduced "#pragma message"???


===========================================================================
MARK: released ctapi-cyberjack-3.0.0beta1 (2007/05/08)
===========================================================================


2007/05/07: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- added driver for pinpad_a (heavily adapted it to enable it to work with
  the new USB framework)
- renamed files with suffix "2" back to names without this suffix since this
  driver will succeed the old driver
- use version from configure.ac instead of Windows code version (we still use
  that in log messages)
- adapted files for PC/SC to now additionally support older readers
- set version to 3.0.0beta1 (for first beta release)
- ausb_l.h: added missing include


2007/05/04: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- added envrionment variable "CJ_USB_MODE" which can be used with the
  tool cjflash to force the USB implementation to be used (because they
  differ very much and at least the flash tool needs to be able to work
  with old firmware)
- added section to README.xml and LIESMICH.xml about flashing the cyberjack
  ecom_a
- changed prototype for CTAPI key callback handler (now also has a  key value
  as an argument)
- added driver for old ECOM


2007/05/02: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- added IFD handler from old Cyberjack driver and adapted it to
  this new driver
- moved filenames in order to allow this driver to be installed in parallel
  with the old driver (as long as the new driver doesn't support the older
  readers)
- added basic packaging files (RPM, DEB)
- added documentation (basically copied over from old driver)
- added tool cjgeldkarte2 (basically copied over from old driver)
- prepared first beta release


2007/04/30: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- halt interrupt pipe upon USBLinux::Open()
- now always uses USB implementation 3 for 0x400er devices
- fixed incompatibilities introduced by SVN merge


2007/04/27: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- added tool for flashing the reader under Linux
- added yet another approach to the USB interface
- completed CTAPI driver for Linux
- now only exports CTAPI functions and class CReader
- modified ausb module: Now the Linux implementation
  can choose between 3 different implementation. This is
  needed to allow the flash tool to work with any firmware so
  we can now flash any Ecom A regardless of the firmware
  version
- configure.ac: Now checks whether thread-support is requested,
  only compile thread-related modules in case it is


2007/04/26: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- improved logging for Linux (new log file format allows
  for better filtering, so users may now send full logs
  and I will still be able to filter out the important
  parts)
- implemented CTAPI driver
- added a CTAPI test tool
- tried a thread-based approach to the interrupt pipe problem
- beeping now works with X11 also!


2007/04/25: Martin Preuss<martin@libchipcard.de>
------------------------------------------------
- Debug.{h,cpp}: 
  - implemented code for Linux
  - added DEBUG_MASK_CTAPI
  - added DEBUG_MASK_IFD
  - added function rsct_debug_out() to allow for debugging
    output from C (previously it only worked with C++)
  - added method setLevelMask() to allow for runtime modification of
    the level mask (on Linux)
  - added method setLogFileName() to allow for runtime modification 
    of the logfile (on Linux)
  - fixed definition of DEBUG_MASK_IFD
- only use #pragma(warning) on Windows (gets rid of warnings under Linux)
- added ausb/ (lowlevel asynchronous communication via USB on Linux)
- implemented USBLinux.cpp (now COM via USB works on Linux)
- started working on CTAPI
