Remove date from generated documentation HTML

This commit is contained in:
Florian Rival
2020-01-13 08:54:37 +00:00
parent 07152639d1
commit 61ffb40dee
4 changed files with 111 additions and 112 deletions

View File

@@ -964,7 +964,7 @@ HTML_COLORSTYLE_GAMMA = 80
# page will contain the date and time when the page was generated. Setting
# this to NO can help when comparing the output of multiple runs.
HTML_TIMESTAMP = YES
HTML_TIMESTAMP = NO
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the

View File

@@ -1162,7 +1162,7 @@ HTML_COLORSTYLE_GAMMA = 70
# The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_TIMESTAMP = YES
HTML_TIMESTAMP = NO
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the

View File

@@ -964,7 +964,7 @@ HTML_COLORSTYLE_GAMMA = 80
# page will contain the date and time when the page was generated. Setting
# this to NO can help when comparing the output of multiple runs.
HTML_TIMESTAMP = YES
HTML_TIMESTAMP = NO
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the

View File

@@ -3,9 +3,7 @@
"allowUnknownTags": false
},
"source": {
"include": [
"./Runtime/"
],
"include": ["./Runtime/"],
"exclude": [
"./Runtime/Cocos2d/",
"./Runtime/Cordova/",
@@ -21,12 +19,13 @@
"../node_modules/jsdoc-autoprivate"
],
"templates": {
"default" : {
"outputSourceFiles" : true
"default": {
"outputSourceFiles": true,
"includeDate": false
},
"applicationName": "GDevelop JS Runtime",
"footer" : "Made with ♥ by Florian Rival and contributors (gdevelop-app.com)",
"copyright" : "GDevelop Copyright © 2008-present Florian Rival",
"footer": "Made with ♥ by Florian Rival and contributors (gdevelop-app.com)",
"copyright": "GDevelop Copyright © 2008-present Florian Rival",
"googleAnalytics": "TODO",
"openGraph": {
"title": "GDevelop JS Runtime Documentation",
@@ -40,17 +39,17 @@
"description": "Documentation for the GDevelop JavaScript game engine",
"keyword": "docs, documentation, gdevelop, game, engine, html5, javascript"
},
"linenums" : true
"linenums": true
},
"markdown" : {
"parser" : "gfm",
"hardwrap" : false
"markdown": {
"parser": "gfm",
"hardwrap": false
},
"opts": {
"encoding" : "utf8",
"recurse" : true,
"private" : false,
"lenient" : true,
"destination" : "../docs/GDJS Runtime Documentation"
"encoding": "utf8",
"recurse": true,
"private": false,
"lenient": true,
"destination": "../docs/GDJS Runtime Documentation"
}
}