From 0a87c497801c0c5253353e84c35812626ce6f7a8 Mon Sep 17 00:00:00 2001 From: oppofind <836575280@qq.com> Date: Sat, 21 Nov 2020 16:37:04 +0800 Subject: [PATCH] release 1.2.3 --- README.md | 1 + README_CN.md | 1 + build.gradle | 4 ++-- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7fd083a..6d465a4 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,7 @@ When you need to use smart-doc to generate more API document information, you ca "allInOne": true, // whether to merge documents into one file, generally recommended as true "outPath": "D: // md2", // Specify the output path of the document "coverOld": true, // Whether to overwrite old files, mainly used for mardown file overwrite + "style":"xt256", //set highlight "packageFilters": "", // controller package filtering, multiple package names separated by commas "md5EncryptedHtmlName": false, // only used if each controller generates an html file "projectName": "smart-doc", // Configure your own project name diff --git a/README_CN.md b/README_CN.md index 527f1e4..cb2d627 100644 --- a/README_CN.md +++ b/README_CN.md @@ -88,6 +88,7 @@ subprojects{ "allInOne": true, //是否将文档合并到一个文件中,一般推荐为true "outPath": "D://md2", //指定文档的输出路径 "coverOld": true, //是否覆盖旧的文件,主要用于mardown文件覆盖 + "style":"xt256", //基于highlight.js的代码高亮设置,喜欢配色统一简洁的同学可以不设置 "packageFilters": "",//controller包过滤,多个包用英文逗号隔开 "md5EncryptedHtmlName": false,//只有每个controller生成一个html文件是才使用 "projectName": "smart-doc",//配置自己的项目名称 diff --git a/build.gradle b/build.gradle index 8ee8f9e..17149b0 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,7 @@ plugins { } group 'com.github.shalousun' -version '1.2.2' +version '1.2.3' sourceCompatibility = 1.8 @@ -30,7 +30,7 @@ repositories { dependencies { testCompile group: 'junit', name: 'junit', version: '4.13.1' - compile 'com.github.shalousun:smart-doc:1.9.8' + compile 'com.github.shalousun:smart-doc:1.9.9' } tasks.withType(JavaCompile) { options.encoding = "UTF-8"