瀏覽代碼

Improve db path prompt when install

tags/v0.9.99
Unknwon 8 年之前
父節點
當前提交
ee53204e02
共有 7 個文件被更改,包括 23 次插入23 次删除
  1. 1
    1
      README.md
  2. 1
    1
      conf/app.ini
  3. 1
    1
      conf/locale/locale_en-US.ini
  4. 1
    1
      gogs.go
  5. 17
    17
      modules/bindata/bindata.go
  6. 1
    1
      templates/.VERSION
  7. 1
    1
      templates/install.tmpl

+ 1
- 1
README.md 查看文件

@@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra

![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true)

##### Current version: 0.8.31
##### Current version: 0.8.32

| Web | UI | Preview |
|:-------------:|:-------:|:-------:|

+ 1
- 1
conf/app.ini 查看文件

@@ -91,7 +91,7 @@ USER = root
PASSWD =
; For "postgres" only, either "disable", "require" or "verify-full"
SSL_MODE = disable
; For "sqlite3" and "tidb"
; For "sqlite3" and "tidb", use absolute path when you start as service
PATH = data/gogs.db

[admin]

+ 1
- 1
conf/locale/locale_en-US.ini 查看文件

@@ -65,7 +65,7 @@ db_name = Database Name
db_helper = Please use INNODB engine with utf8_general_ci charset for MySQL.
ssl_mode = SSL Mode
path = Path
sqlite_helper = The file path of SQLite3 or TiDB database.
sqlite_helper = The file path of SQLite3 or TiDB database. <br>Please use absolute path when you start as service.
err_empty_db_path = SQLite3 or TiDB database path cannot be empty.
err_invalid_tidb_name = TiDB database name does not allow characters "." and "-".
no_admin_and_disable_registration = You cannot disable registration without creating an admin account.

+ 1
- 1
gogs.go 查看文件

@@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)

const APP_VER = "0.8.31.0205"
const APP_VER = "0.8.32.0207"

func init() {
runtime.GOMAXPROCS(runtime.NumCPU())

+ 17
- 17
modules/bindata/bindata.go
文件差異過大導致無法顯示
查看文件


+ 1
- 1
templates/.VERSION 查看文件

@@ -1 +1 @@
0.8.31.0205
0.8.32.0207

+ 1
- 1
templates/install.tmpl 查看文件

@@ -68,7 +68,7 @@
<div class="inline required field {{if or .Err_DbPath .Err_DbSetting}}error{{end}}">
<label for="db_path">{{.i18n.Tr "install.path"}}</label>
<input id="db_path" name="db_path" value="{{.db_path}}">
<span class="help">{{.i18n.Tr "install.sqlite_helper"}}</span>
<span class="help">{{.i18n.Tr "install.sqlite_helper" | Safe}}</span>
</div>
</div>


Loading…
取消
儲存