aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-06-20 08:14:13 +0000
committerRomain Forlot <romain.forlot@iot.bzh>2017-06-20 08:14:13 +0000
commitea93c706cfefebb98e44f9d85792356445659408 (patch)
tree8acd10e80e70c8b35f07b51526b79d598090f182
parentc70baaeb249f0e1dc5c9e14344e60afe68d64698 (diff)
Adjust version to AGL and update documentation
Change-Id: I0e6501ce6cc56731f004804f8654bc9d15204cd6 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r--book.json2
-rw-r--r--conf.d/config.cmake4
-rw-r--r--docs/2-Installation.md2
-rw-r--r--docs/Doc-Revisions.md2
-rwxr-xr-xdocs/resources/make_cover.sh6
-rwxr-xr-xgendocs.sh2
6 files changed, 9 insertions, 9 deletions
diff --git a/book.json b/book.json
index a39312a..d5c3c89 100644
--- a/book.json
+++ b/book.json
@@ -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 1ad0c41..0e92972 100644
--- a/conf.d/config.cmake
+++ b/conf.d/config.cmake
@@ -19,7 +19,7 @@
# Project Info
# ------------------
set(PROJECT_NAME high-can-service)
-set(PROJECT_VERSION "1.0")
+set(PROJECT_VERSION "4.0")
set(PROJECT_PRETTY_NAME "High level CAN service")
set(PROJECT_DESCRIPTION "Expose CAN Low Level APIs through AGL Framework")
set(PROJECT_URL "https://github.com/iotbzh/CAN_signaling")
@@ -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/2-Installation.md b/docs/2-Installation.md
index 184334a..8432128 100644
--- a/docs/2-Installation.md
+++ b/docs/2-Installation.md
@@ -2,7 +2,7 @@
## Prerequisites
-Low CAN binding must be installed. Prerequisites are the same.
+Low level CAN service (>=4.0) must be installed. Prerequisites are the same.
```bash
$ git clone --recursive https://gerrit.automotivelinux.org/gerrit/apps/low-level-can-service
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)
diff --git a/gendocs.sh b/gendocs.sh
index a0f6e5c..4546b5a 100755
--- a/gendocs.sh
+++ b/gendocs.sh
@@ -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