This is an automated email from the ASF dual-hosted git repository. hxd pushed a commit to branch claim_0.7_as_unofficial in repository https://gitbox.apache.org/repos/asf/incubator-iotdb-website.git
commit d1acc6d25611190d4b175614c3a49d2a8ec86dad Author: xiangdong huang <[email protected]> AuthorDate: Fri Aug 23 23:04:25 2019 +0800 claim v0.7 is unofficial version in the download page --- src/views/Download.vue | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/views/Download.vue b/src/views/Download.vue index 14f515b..26e24cc 100644 --- a/src/views/Download.vue +++ b/src/views/Download.vue @@ -22,6 +22,7 @@ </ul> <p>Main features and change list of each version, please check <router-link to="/Materials/Release Notes">release notes</router-link>.</p> + <span v-if="selectVersionObj.isUnofficialVersion!=='true'"> <h2 class="download-title">Verifying Hashes and Signatures</h2> <p> Along with our releases, we also provide sha512 hashes in *.sha512 files and @@ -33,6 +34,15 @@ href="https://www.apache.org/dist/incubator/iotdb/KEYS"> KEYS </a>. </p> + </span> + <span v-if="selectVersionObj.isUnofficialVersion=='true'"> + <h2 class="download-title">Notice</h2> + The version is a legacy version and was released before IoTDB was donated to ASF. + <br/> + As it is not an Apache-verified released version, we suggest users who use the version + upgrade the latest Apache released version ASAP. + </span> + </div> <my-sidebar/> </div> @@ -71,7 +81,8 @@ binariesASCUrl: '', sourcesUrl: '', sourcesSHA512Url: '', - sourcesASCUrl: '' + sourcesASCUrl: '', + isUnofficialVersion: 'true' }, ] }
