Skip to content

Commit

Permalink
Update version + readme
Browse files Browse the repository at this point in the history
  • Loading branch information
martinweismann committed Apr 10, 2019
1 parent a9b03fb commit 87c3775
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Contributions are welcome and we are looking for people that can improve existin
You can also contribute by reporting bugs in the [Issue tracker](../../issues), helping review pull requests, participate in discussions about issues and more.

## Filing issues
1. When filing an issue to report errors or problems, make sure to answer these five questions:
1. When filing an [issue](../../issues) to report errors or problems, make sure to answer these five questions:
1. Which version of ACT are you using?
Run <br/>`act.* -v`<br/> to print ACT's version.
2. Which operating system, programming language(s) and development tools (compiler/interpreter) are you using?
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Automatic Component Toolkit
[![Build Status](https://travis-ci.org/Autodesk/AutomaticComponentToolkit.svg?branch=develop)](https://travis-ci.org/Autodesk/AutomaticComponentToolkit)
[![Build Status](https://travis-ci.org/Autodesk/AutomaticComponentToolkit.svg?branch=master)](https://travis-ci.org/Autodesk/AutomaticComponentToolkit)

The Automatic Component Toolkit (ACT) is a code generator that takes an instance of an [Interface Description Language](#interface-description-language-idl) file and generates
a [thin C89-API](#thin-c89-api), [implementation stubs](#implementation-stubs) and [language bindings](#language-bindings) of your desired software component.

### Interface Description Language (IDL)
The IDL file defines the types and functions of your API and serves as the source for the automatically generated Code.
The exact schema of the IDL and explanation of each element is described in [Documentation/IDL.md](Documentation/IDL.md).
The exact schema of the IDL and explanation of each element is described in the [Documentation/IDL.md](Documentation/IDL.md).

### Thin C89-API
A thin C89-API is a C header file that declares all functions, structs, enums and constants exported by your software component. The C89-API unambiguously defines the binary interface (ABI) of the component.
Expand Down Expand Up @@ -55,7 +55,7 @@ ACT supports generation of bindings or implementation stubs for C++, C, Pascal,
| Pascal | ![](Documentation/images/Tick.png) mature | Win, Linux, MacOS | in,return | in,out,return | in,out,return | in,out,return | in,out,return | in,out | in,out | in | + |
| Python3 | ![](Documentation/images/Tick.png) complete (but not very pythonic) | Win, Linux, MacOS | in,return | in,out,return | in,out,return | in,out,return | in,out,return | in,out | in,out | in | + |
| Golang | ![](Documentation/images/O.png) partial support | Win, Linux, MacOS | in,return | in,out,return | ? | ? | ? | ? | ? | - | - |
| NodeJS | ![](Documentation/images/O.png) partial support | Win, Linux, MacOS | in,return | in,out,return | in,out,return | in,out,return | in,out,return | in,out | in,out | - | + |
| NodeJS | ![](Documentation/images/O.png) partial support | Win, Linux, MacOS | in,return | in,out,return | in,out,return | in,out,return | in,out,return | ? | ? | - | + |
| C# | ![](Documentation/images/O.png) experimental | Win, Linux, MacOS | in,return | in,out,return | in,out,return | in,out,return | in,out,return | - | - | - | + |
| PHP | ![](Documentation/images/X.png) not implemented | Win, Linux, MacOS | - | - | - | - | - | - | - | - | - |

Expand Down
2 changes: 1 addition & 1 deletion Source/automaticcomponenttoolkit.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func readComponentDefinition(FileName string, ACTVersion string) (ComponentDefin
}

func main() {
ACTVersion := "1.5.0-RC2"
ACTVersion := "1.5.0"
fmt.Fprintln(os.Stdout, "Automatic Component Toolkit v"+ACTVersion)
if len(os.Args) < 2 {
log.Fatal("Please run with the Interface Description XML as command line parameter.")
Expand Down

0 comments on commit 87c3775

Please sign in to comment.