diff --git a/Jenkinsfile b/Jenkinsfile index ba9815a..202616d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,16 +26,19 @@ pipeline{ npm install uglifycss npm install typescript npm install @types/jquery - + npm i typedoc@0.19.0 buildir="build" [ -d "$buildir" ] && rm -rf "$buildir" export BUILDDIR="$WORKSPACE/$buildir/opt/www/htdocs/os" + mkdir doc + export DOCDIR="$WORKSPACE/doc" make release + make doc ''' script { // only useful for any master branch //if (env.BRANCH_NAME =~ /^master/) { - archiveArtifacts artifacts: 'd.ts/, build/', fingerprint: true + archiveArtifacts artifacts: 'd.ts/, build/, doc/', fingerprint: true //} } } diff --git a/Makefile b/Makefile index 5b48b75..ac93773 100644 --- a/Makefile +++ b/Makefile @@ -227,6 +227,7 @@ ar: release: main uglify doc: + # npm i typedoc@0.19.0 ./node_modules/.bin/typedoc --mode file --excludeNotExported --hideGenerator --name "AntOS API" --out $(DOCDIR) test: build_javascripts diff --git a/src/themes/system/icons/antos-32x32.png b/src/themes/system/icons/antos-32x32.png index c7e8e7c..2abdb9d 100644 Binary files a/src/themes/system/icons/antos-32x32.png and b/src/themes/system/icons/antos-32x32.png differ diff --git a/src/themes/system/icons/antos-48x48.png b/src/themes/system/icons/antos-48x48.png index a9cb78d..6d87586 100644 Binary files a/src/themes/system/icons/antos-48x48.png and b/src/themes/system/icons/antos-48x48.png differ