diff --git a/binaries/jSerialComm-1.3.10-test.jar b/binaries/jSerialComm-1.3.11-test.jar similarity index 92% rename from binaries/jSerialComm-1.3.10-test.jar rename to binaries/jSerialComm-1.3.11-test.jar index 7013ff9..d4eb2f7 100644 Binary files a/binaries/jSerialComm-1.3.10-test.jar and b/binaries/jSerialComm-1.3.11-test.jar differ diff --git a/binaries/jSerialComm-1.3.10.jar b/binaries/jSerialComm-1.3.11.jar similarity index 92% rename from binaries/jSerialComm-1.3.10.jar rename to binaries/jSerialComm-1.3.11.jar index 75156f3..0e11f6a 100644 Binary files a/binaries/jSerialComm-1.3.10.jar and b/binaries/jSerialComm-1.3.11.jar differ diff --git a/index.html b/index.html index b2bcc83..e3e20c3 100644 --- a/index.html +++ b/index.html @@ -29,7 +29,7 @@
Download this project as a .zip file Download this project as a tar.gz file - Download this library as a .jar file + Download this library as a .jar file
@@ -48,6 +48,7 @@
  • Very lightweight and efficient implementation
  • Enumerates all available serial ports on a machine
  • Returns both a system port description and a friendly device description
  • +
  • User-specifiable port descriptors including symbolic links
  • Configurable ports according to baud rate, data bits, stop bits, and parity
  • Configurable port timeouts (blocking and non-blocking) for both reading and writing
  • Configurable flow control parameters for the serial port (CTS, RTS/CTS, DSR, DTR/DSR, XOn/XOff)
  • @@ -73,7 +74,7 @@

    How can use this library in my own project?

    -

    One of the most convenient features of this library is that it allows you to simply include the JAR file in your custom project, and it will automatically select and load the correct native library for your platform and architecture. As such, you can make use of this library by simply copying the jSerialComm.jar file into your project directory and linking to it as you would any other JAR file.

    +

    One of the most convenient features of this library is that it allows you to simply include the JAR file in your custom project, and it will automatically select and load the correct native library for your platform and architecture. As such, you can make use of this library by simply copying the jSerialComm.jar file into your project directory and linking to it as you would any other JAR file.

    To access the contents of the library in your project, make sure to import com.fazecast.jSerialComm.* into your java files. You can then generate a list of all available serial ports on your system (real or virtual), by calling the following static method:

    @@ -102,25 +103,25 @@
  • Leiningen
  • -
    <dependency>
       <groupId>com.fazecast</groupId>
       <artifactId>jSerialComm</artifactId>
       <version>1.3.10</version>
    </dependency>
    +
    <dependency>
       <groupId>com.fazecast</groupId>
       <artifactId>jSerialComm</artifactId>
       <version>1.3.11</version>
    </dependency>
    -
    <dependency org="com.fazecast" name="jSerialComm" rev="1.3.10"/>
    +
    <dependency org="com.fazecast" name="jSerialComm" rev="1.3.11"/>
    -
    @Grab(group='com.fazecast', module='jSerialComm', version='1.3.10')
    +
    @Grab(group='com.fazecast', module='jSerialComm', version='1.3.11')
    -
    compile 'com.fazecast:jSerialComm:1.3.10'
    +
    compile 'com.fazecast:jSerialComm:1.3.11'
    -
    compile.with 'com.fazecast:jSerialComm:jar:1.3.10'
    +
    compile.with 'com.fazecast:jSerialComm:jar:1.3.11'
    -
    libraryDependencies += "com.fazecast" % "jSerialComm" % "1.3.10"
    +
    libraryDependencies += "com.fazecast" % "jSerialComm" % "1.3.11"
    -
    [com.fazecast/jSerialComm "1.3.10"]
    +
    [com.fazecast/jSerialComm "1.3.11"]