mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-04-05 07:48:52 +08:00

* feat: 首页项目拖拽排序功能 * feat: 增加首页项目拖拽排序增加只能管理员进行, 排序失败元素回到原本位置 * perf: 新建文章以后直接进入到编辑文章页面 * perf: 优化文档打开时或刷新时样式闪动问题 * perf: 优化表格样式 * feat: 支持上传视频功能 * feat: 视频样式调整 * feat: 直接粘贴视频上传功能 * perf: 优化markdown目录显示 * feat: 项目配置新增是否开启打印功能 * perf: 优化模型自动更新表字段 * perf: 创建项目时增加选择编辑器功能 * perf: 优化cherry-markdown 菜单栏 * perf: 优化项目阅读界面, 新增打开搜索面板快捷键(Ctrl + f), esc恢复到目录快捷键功能 * perf: 优化项目搜索 * perf: 文章TOC样式调整 * feat: 配置管理中增加本地化切换 * feat: 配置管理中增加本地化切换 * fix: 调整页面内copyright的链接为: https://mindoc.com.cn/域名下 * fix: 创建README.md资源 * fix: 创建README.md资源 * fix: README更新 * fix: README更新 * fix: README 地址修改 * fix: 调整cherryMarkdown toc样式 兼容打印样式 fix: 修复 convertImageToDataUri not func * fix: cherry-markdown 上传附件和样式调整
72 lines
1.2 KiB
Go
72 lines
1.2 KiB
Go
package commands
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"github.com/mindoc-org/mindoc/models"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"os"
|
|
|
|
"github.com/beego/beego/v2/client/orm"
|
|
"github.com/beego/beego/v2/core/logs"
|
|
"github.com/mindoc-org/mindoc/conf"
|
|
)
|
|
|
|
// 检查最新版本.
|
|
func CheckUpdate() {
|
|
|
|
fmt.Println("MinDoc current version => ", conf.VERSION)
|
|
|
|
resp, err := http.Get("https://api.github.com/repos/mindoc-org/mindoc/tags")
|
|
|
|
if err != nil {
|
|
logs.Error("CheckUpdate => ", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
if err != nil {
|
|
logs.Error("CheckUpdate => ", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
var result []*struct {
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
err = json.Unmarshal(body, &result)
|
|
if err != nil {
|
|
logs.Error("CheckUpdate => ", err)
|
|
os.Exit(0)
|
|
}
|
|
|
|
if len(result) > 0 {
|
|
fmt.Println("MinDoc last version => ", result[0].Name)
|
|
}
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
func Update() {
|
|
fmt.Println("Update...")
|
|
RegisterDataBase()
|
|
RegisterModel()
|
|
err := orm.RunSyncdb("default", false, true)
|
|
if err == nil {
|
|
UpdateInitialization()
|
|
} else {
|
|
panic(err.Error())
|
|
}
|
|
fmt.Println("Update Successfully!")
|
|
os.Exit(0)
|
|
}
|
|
func UpdateInitialization() {
|
|
err := models.NewOption().Update()
|
|
if err != nil {
|
|
panic(err.Error())
|
|
}
|
|
}
|