forked from SmingHub/Sming
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '93340e19a1e1e68885a36976113bc400eb2be985'
* commit '93340e19a1e1e68885a36976113bc400eb2be985': (35 commits) Preparation for the final 3.3.0 release. (SmingHub#1202) Small fixes before the final 3.3.0 (SmingHub#1203) Updated the third-party modules. Added example demonstrating Js and CSS combining ... (SmingHub#1200) Fixed WebSocket sample HTML page (SmingHub#1201) Feature/auto deployment on release (SmingHub#1198) Handle incomplete frame to prevent WebsocketClient ending in an endless loop (SmingHub#1189) Fixes for styling issues reported by Codacy (SmingHub#1196) Feature/httpserver etag caching (SmingHub#1194) HttpServer tuning to allow serving of more requests. (SmingHub#1187) decode-stacktrace.py: Added python3 compatability. (SmingHub#1190) Release Candidate 1 for version 3.3.0. (SmingHub#1185) Station::waitConnection method was deprecated and is now removed. (SmingHub#1171) Adding fixes for issues reported by Vera++ and CppCheck. (SmingHub#1178) Changes related to POST parameter unescaping. (SmingHub#1177) Small fixes to comparison and memory related issues. (SmingHub#1172) Reset response and request data after completion. Custom PWM is enabled by default. (SmingHub#1164) TemplateStream: the total length should be calculated from the browser. HttpServer: The default keepalive time is set to 0. HttpClient: memory usage fixes. (SmingHub#1161) ...
- Loading branch information
Showing
174 changed files
with
13,913 additions
and
3,060 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/bin/bash | ||
set -e # exit with nonzero exit code if anything fails | ||
|
||
TAG=$1 | ||
if [ -z $TAG ]; then | ||
echo "Usage:\n\t$0 <tag>\n"; | ||
exit 1; | ||
fi | ||
|
||
|
||
# Get information about the release | ||
# TODO: ... | ||
|
||
# Update documentation | ||
cd $SMING_HOME | ||
make docs | ||
cd .. | ||
|
||
git fetch origin gh-pages:gh-pages | ||
git checkout gh-pages | ||
|
||
DOCS_DIR=$SMING_HOME/../api | ||
|
||
rm -rf $DOCS_DIR | ||
cp -r $SMING_HOME/../docs/api/sming/ $DOCS_DIR | ||
git add -A $DOCS_DIR | ||
git commit -m "Updated the API docs to version $TAG." || 1 | ||
|
||
git push https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.