diff options
-rw-r--r-- | book.json | 2 | ||||
-rw-r--r-- | conf.d/config.cmake | 2 | ||||
-rw-r--r-- | docs/Doc-Revisions.md | 2 | ||||
-rwxr-xr-x | docs/resources/make_cover.sh | 6 | ||||
-rwxr-xr-x | gendocs.sh | 2 |
5 files changed, 7 insertions, 7 deletions
@@ -5,7 +5,7 @@ "author": "IoT.Bzh Team", "website": "http://iot.bzh", "published": "June 2017", - "version": "1.0", + "version": "4.0", "gitbook": "3.2.2", "root": "docs", diff --git a/conf.d/config.cmake b/conf.d/config.cmake index 389a0c6..0e92972 100644 --- a/conf.d/config.cmake +++ b/conf.d/config.cmake @@ -105,7 +105,7 @@ set(WIDGET_TYPE application/vnd.agl.service) # This is the file that will be executed, loaded, # at launch time by the application framework. # -set(WIDGET_ENTRY_POINT "lib/afs-high-can.so") +set(WIDGET_ENTRY_POINT "lib/afb-high-can.so") # Optional dependencies order # --------------------------- diff --git a/docs/Doc-Revisions.md b/docs/Doc-Revisions.md index 1de1abb..a3b6244 100644 --- a/docs/Doc-Revisions.md +++ b/docs/Doc-Revisions.md @@ -3,4 +3,4 @@ Document revisions | Date | Version | Designation | Author | |-------------|---------|--------------------------------------|-------------------------| -| 07 Jun 2017 | 1.0 | Initial release | P. Lelong [ Iot.bzh ] | +| 07 Jun 2017 | 1.0 | Initial release | R.Forlot [ Iot.bzh ] | diff --git a/docs/resources/make_cover.sh b/docs/resources/make_cover.sh index fef2087..b7971c1 100755 --- a/docs/resources/make_cover.sh +++ b/docs/resources/make_cover.sh @@ -1,10 +1,10 @@ #!/bin/bash -cat cover.svg | sed -e 's/{title}/Low Level CAN binding/' \ +cat cover.svg | sed -e 's/{title}/High Level Viwi CAN binding/' \ -e 's/font-size:87.5px/font-size:50px/g' \ -e 's/{subtitle}//g' \ - -e 's/{version}/Version 1.0/g' \ - -e 's/{date}/March 2017/g' \ + -e 's/{version}/Version 4.0/g' \ + -e 's/{date}/June 2017/g' \ > /tmp/cover.svg # use imagemagick convert tool (cover size must be 1800x2360) @@ -57,7 +57,7 @@ if [ "$DO_ACTION" = "pdf" -o "$DO_ACTION" = "serve" ]; then [ "$?" = "1" ] && { echo "You must install calibre first, using: 'sudo apt install calibre' or refer to https://calibre-ebook.com/download"; exit 1; } if [ "$DO_ACTION" = "pdf" ]; then - OUTFILE=$OUT_DIR/LowLevelCanBinding_Guide.pdf + OUTFILE=$OUT_DIR/HighLevelCanBinding_Guide.pdf $DRY $GITBOOK pdf $ROOTDIR $OUTFILE $DEBUG_FLAG [ "$?" = "0" ] && echo "PDF has been successfully generated in $OUTFILE" else |