Skip to content

Commit

Permalink
Code autogenerated from Kurento/doc-kurento@cb81b7f
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkinskurento committed Sep 20, 2022
1 parent 0d20a28 commit f03cf5c
Show file tree
Hide file tree
Showing 445 changed files with 4,225 additions and 2,793 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,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.16.1-dev.tgz"
@echo " all resulting files as kurento-doc-6.18.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 @@ -59,14 +59,14 @@ langdoc-client-java: langdoc-init
cd $(WORKPATH)
git clone https://github.com/Kurento/kurento-java.git
cd kurento-java
[ "false" = "true" ] && git checkout "6.16.0"
[ "true" = "true" ] && git checkout "6.18.0"
cd kurento-client || { echo "ERROR: 'cd' failed, ls:"; ls -lA; exit 1; }
mvn --batch-mode --quiet -Psnapshot -DskipTests=true clean package \
|| { echo "ERROR: 'mvn clean package' failed"; exit 1; }
mvn --batch-mode --quiet javadoc:javadoc \
-DreportOutputDirectory="$(DESTPATH)" \
-DdestDir="client-javadoc" \
-Dsourcepath="src/main/java:target/generated-sources/kmd" \
-Dsourcepath="src/main/java;target/generated-sources/kmd" \
-Dsubpackages="org.kurento.client" \
-DexcludePackageNames="*.internal" \
|| { echo "ERROR: 'mvn javadoc' failed"; exit 1; }
Expand All @@ -75,7 +75,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.16.0"
[ "true" = "true" ] && git checkout "6.18.0"
npm install --no-color
node_modules/.bin/grunt --no-color --force jsdoc \
|| { echo "ERROR: 'grunt jsdoc' failed"; exit 1; }
Expand All @@ -85,7 +85,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.16.0"
[ "true" = "true" ] && git checkout "6.18.0"
npm install --no-color
node_modules/.bin/grunt --no-color --force jsdoc \
|| { echo "ERROR: 'grunt jsdoc' failed"; exit 1; }
Expand All @@ -94,7 +94,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.16.1-dev)
$(eval DISTDIR := $(BUILDDIR)/dist/kurento-doc-6.18.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.env
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.16.1-dev"
[VERSION_DOC]="6.18.0"

# Version of Kurento Media Server
[VERSION_KMS]="6.16.0"
[VERSION_KMS]="6.18.0"

# Version of each Client API SDK
[VERSION_CLIENT_JAVA]="6.16.0"
[VERSION_CLIENT_JS]="6.16.0"
[VERSION_CLIENT_JAVA]="6.18.0"
[VERSION_CLIENT_JS]="6.18.0"

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

# Version of each platform's tutorials
[VERSION_TUTORIAL_JAVA]="6.16.0"
[VERSION_TUTORIAL_JS]="6.16.0"
[VERSION_TUTORIAL_NODE]="6.16.0"
[VERSION_TUTORIAL_JAVA]="6.18.0"
[VERSION_TUTORIAL_JS]="6.18.0"
[VERSION_TUTORIAL_NODE]="6.18.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 @@ -30,7 +30,7 @@
# built documents.

# The short X.Y version.
version = '6.16.1-dev'
version = '6.18.0'

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

0 comments on commit f03cf5c

Please sign in to comment.