Merge branch 'master' of github.com:hacklcx/HFish

This commit is contained in:
WeiMing 2021-06-18 13:48:55 +08:00
commit d3a160fa21
3 changed files with 30 additions and 19 deletions

4
docs/_navbar.md Normal file
View File

@ -0,0 +1,4 @@
- [首页](https://hfish.io/#/)
- [下载](https://hfish.io/#/download)
- [GitHub](https://github.com/hacklcx/HFish)
- [Gitee](https://gitee.com/lauix/HFish)

View File

@ -1,6 +1,6 @@
# 下载 # 下载
### HFish v2.4.0 ### HFish <% version %>
```wiki ```wiki
2021年6月16日发布 2021年6月16日发布
@ -13,14 +13,15 @@
6.修复情报页面api报错问题。 6.修复情报页面api报错问题。
``` ```
!> 注意如果当前使用sqlite数据库的话升级时hfish.db文件将会被覆盖导致之前的攻击记录丢失请注意进行备份。如果要将之前的db文件导入当前版本时请参考mysql.sql的语句修改db文件执行导入。 !> 注意:如果当前使用 sqlite 数据库的话升级时hfish.db 文件将会被覆盖,导致之前的攻击记录丢失,请注意进行备份。如果要将之前的 db 文件导入当前版本时,请参考 mysql.sql 的语句修改 db 文件,执行导入。
## 下载安装 ## 下载安装
### 控制端安装包 ### 控制端安装包
+ [HFish-Linux-amd64](http://hfish.cn-bj.ufileos.com/hfish-2.4.0-linux-amd64.tar.gz) 为 Linux x86架构64位系统使用 - [HFish-Linux-amd64](http://hfish.cn-bj.ufileos.com/hfish-2.4.0-linux-amd64.tar.gz) 为 Linux x86 架构 64 位系统使用
+ [HFish-Windows-amd64](http://hfish.cn-bj.ufileos.com/hfish-2.4.0-windows-amd64.tar.gz) 为 Windows x86架构64位系统使用 - [HFish-Windows-amd64](http://hfish.cn-bj.ufileos.com/hfish-2.4.0-windows-amd64.tar.gz) 为 Windows x86 架构 64 位系统使用
+ [HFish-Linux-arm64](http://hfish.cn-bj.ufileos.com/hfish-2.4.0-linux-arm64.tar.gz) 为 Linux Arm架构64位系统使用常见于NAS、路由器、树莓派等…… - [HFish-Linux-arm64](http://hfish.cn-bj.ufileos.com/hfish-2.4.0-linux-arm64.tar.gz) 为 Linux Arm 架构 64 位系统使用,常见于 NAS、路由器、树莓派等……
## 文件结构 ## 文件结构
@ -64,4 +65,3 @@ HFish
│ │ …… │ │ ……
``` ```

View File

@ -31,6 +31,10 @@
color: #ffffff; color: #ffffff;
} }
.sticky nav {
color: #34495e;
}
section.cover .cover-main>p:last-child a:last-child:hover { section.cover .cover-main>p:last-child a:last-child:hover {
--theme-color: #ff5656; --theme-color: #ff5656;
} }
@ -46,20 +50,22 @@
</head> </head>
<body> <body>
<nav>
<a href="https://hfish.io/" target="_bank">首页</a>
<a href="https://hfish.io/#/download" target="_bank">下载</a>
<a href="https://github.com/hacklcx/HFish" target="_bank">GitHub</a>
<a href="https://gitee.com/lauix/HFish" target="_bank">Gitee</a>
</nav>
<div id="app"></div> <div id="app"></div>
<script> <script>
window.$docsify = { window.$docsify = {
name: 'HFish', name: 'HFish',
loadSidebar: true, loadSidebar: true,
loadNavbar: true,
mergeNavbar: true,
auto2top: true,
subMaxLevel: 2, subMaxLevel: 2,
coverpage: true, coverpage: true,
themeColor: '#e93636', themeColor: '#e93636',
dv: {
model: {
version: 'v2.4.0',
}
},
search: { search: {
paths: 'auto', paths: 'auto',
maxAge: 86400000, // 过期时间,单位毫秒,默认一天 maxAge: 86400000, // 过期时间,单位毫秒,默认一天
@ -70,6 +76,7 @@
// repo: 'https://github.com/hacklcx/HFish', // repo: 'https://github.com/hacklcx/HFish',
} }
</script> </script>
<script src="https://cdn.jsdelivr.net/gh/yklydxtt/docsify-version@2.0.1/dv.min.js"></script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script> <script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.js"></script> <script src="//unpkg.com/docsify/lib/plugins/search.js"></script>
<script src="//unpkg.com/prismjs/components/prism-bash.js"></script> <script src="//unpkg.com/prismjs/components/prism-bash.js"></script>