Skip to content

Commit

Permalink
Code autogenerated from Kurento/doc-kurento@6e3ffe9
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkinskurento committed Nov 5, 2020
1 parent 145a146 commit a9753f6
Show file tree
Hide file tree
Showing 365 changed files with 1,111 additions and 1,044 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ help:
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
@echo " langdoc to make JavaDocs and JsDocs of the Kurento Clients"
@echo " dist to make <langdoc html epub latexpdf> and then pack"
@echo " all resulting files as kurento-doc-6.14.0.tgz"
@echo " all resulting files as kurento-doc-6.15.0.tgz"
@echo " readthedocs to make <langdoc> and then copy the results to the"
@echo " Sphinx theme's static folder"
@echo ""
Expand Down Expand Up @@ -62,7 +62,7 @@ langdoc-client-java: langdoc-init
cd $(WORKPATH)
git clone https://github.com/Kurento/kurento-java.git
cd kurento-java
[ "false" = "true" ] && git checkout "6.14.0"
[ "true" = "true" ] && git checkout "6.15.0"
cd kurento-client || { echo "ERROR: 'cd' failed, ls:"; ls -lA; exit 1; }
mvn --batch-mode --quiet clean package \
-DskipTests || { echo "ERROR: 'mvn clean' failed"; exit 1; }
Expand All @@ -76,7 +76,7 @@ langdoc-client-js: langdoc-init
cd $(WORKPATH)
git clone https://github.com/Kurento/kurento-client-js.git
cd kurento-client-js
[ "false" = "true" ] && git checkout "6.14.0"
[ "true" = "true" ] && git checkout "6.15.0"
npm install --no-color
node_modules/.bin/grunt --no-color --force jsdoc \
|| { echo "ERROR: 'grunt jsdoc' failed"; exit 1; }
Expand All @@ -86,7 +86,7 @@ langdoc-utils-js: langdoc-init
cd $(WORKPATH)
git clone https://github.com/Kurento/kurento-utils-js.git
cd kurento-utils-js
[ "false" = "true" ] && git checkout "6.14.0"
[ "true" = "true" ] && git checkout "6.15.0"
npm install --no-color
node_modules/.bin/grunt --no-color --force jsdoc \
|| { echo "ERROR: 'grunt jsdoc' failed"; exit 1; }
Expand All @@ -95,7 +95,7 @@ langdoc-utils-js: langdoc-init
langdoc: langdoc-client-java langdoc-client-js langdoc-utils-js

dist: langdoc html epub latexpdf
$(eval DISTDIR := $(BUILDDIR)/dist/kurento-doc-6.14.0)
$(eval DISTDIR := $(BUILDDIR)/dist/kurento-doc-6.15.0)
mkdir -p $(DISTDIR)
rsync -a $(BUILDDIR)/html $(BUILDDIR)/epub/Kurento.epub \
$(BUILDDIR)/latex/Kurento.pdf $(DISTDIR)
Expand Down
18 changes: 9 additions & 9 deletions VERSIONS.conf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,27 @@
# shellcheck disable=SC2034
declare -A PROJECT_VERSIONS=(
# Version of the documentation itself; it appears in the main menu
[VERSION_DOC]="6.14.0"
[VERSION_DOC]="6.15.0"

# Version of Kurento Media Server
[VERSION_KMS]="6.14.0"
[VERSION_KMS]="6.15.0"

# Version of each Client API SDK
[VERSION_CLIENT_JAVA]="6.14.0"
[VERSION_CLIENT_JS]="6.14.0"
[VERSION_CLIENT_JAVA]="6.15.0"
[VERSION_CLIENT_JS]="6.15.0"

# Version of the JavaScript utils module (kurento-utils-js)
[VERSION_UTILS_JS]="6.14.0"
[VERSION_UTILS_JS]="6.15.0"

# Version of each platform's tutorials
[VERSION_TUTORIAL_JAVA]="6.14.0"
[VERSION_TUTORIAL_JS]="6.14.0"
[VERSION_TUTORIAL_NODE]="6.14.0"
[VERSION_TUTORIAL_JAVA]="6.15.0"
[VERSION_TUTORIAL_JS]="6.15.0"
[VERSION_TUTORIAL_NODE]="6.15.0"

# Indicates if the current state of this code is Release or Nightly.
# If "true", all mentioned repos will be checked out to the corresponding
# versions; otherwise, they will be kept at the default branch (master).
[VERSION_RELEASE]="false"
[VERSION_RELEASE]="true"
)

# If the build is not for a release, then some versions can be set to more
Expand Down
2 changes: 1 addition & 1 deletion source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
# built documents.
#
# The short X.Y version.
version = '6.14.0'
version = '6.15.0'

# The full version, including alpha/beta/rc tags.
release = version
Expand Down

0 comments on commit a9753f6

Please sign in to comment.