mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Fix #584
This commit is contained in:
		| @@ -70,8 +70,6 @@ ENABLE_CACHE_AVATAR = false | |||||||
| ENABLE_NOTIFY_MAIL = false | ENABLE_NOTIFY_MAIL = false | ||||||
| ; More detail: https://github.com/gogits/gogs/issues/165 | ; More detail: https://github.com/gogits/gogs/issues/165 | ||||||
| ENABLE_REVERSE_PROXY_AUTHENTICATION = false | ENABLE_REVERSE_PROXY_AUTHENTICATION = false | ||||||
| ; Repository Git hooks |  | ||||||
| ENABLE_GIT_HOOKS = false |  | ||||||
|  |  | ||||||
| [webhook] | [webhook] | ||||||
| ; Cron task interval in minutes | ; Cron task interval in minutes | ||||||
|   | |||||||
| @@ -41,7 +41,7 @@ cancel = Cancel | |||||||
| [install] | [install] | ||||||
| install = Installation | install = Installation | ||||||
| title = Install Steps For First-time Run | title = Install Steps For First-time Run | ||||||
| requite_db_desc = Gogs requires MySQL, PostgreSQL or SQLite3, but SQLite3 is usually available in the official binary version. | requite_db_desc = Gogs requires MySQL, PostgreSQL or SQLite3, but SQLite3. | ||||||
| db_type = Database Type | db_type = Database Type | ||||||
| host = Host | host = Host | ||||||
| user = User | user = User | ||||||
|   | |||||||
| @@ -41,7 +41,7 @@ cancel = 取消 | |||||||
| [install] | [install] | ||||||
| install = 安装页面 | install = 安装页面 | ||||||
| title = 首次运行安装程序 | title = 首次运行安装程序 | ||||||
| requite_db_desc = Gogs 允许后端数据库为 MySQL、PostgreSQL 或 SQLite3,但是 SQLite3 一般只有官方二进制发行版才支持。 | requite_db_desc = Gogs 允许后端数据库为 MySQL、PostgreSQL 或 SQLite3。 | ||||||
| db_type = 数据库类型 | db_type = 数据库类型 | ||||||
| host = 数据库主机 | host = 数据库主机 | ||||||
| user = 数据库用户 | user = 数据库用户 | ||||||
|   | |||||||
							
								
								
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							| @@ -17,7 +17,7 @@ import ( | |||||||
| 	"github.com/gogits/gogs/modules/setting" | 	"github.com/gogits/gogs/modules/setting" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| const APP_VER = "0.5.6.1025 Beta" | const APP_VER = "0.5.6.1027 Beta" | ||||||
|  |  | ||||||
| func init() { | func init() { | ||||||
| 	runtime.GOMAXPROCS(runtime.NumCPU()) | 	runtime.GOMAXPROCS(runtime.NumCPU()) | ||||||
|   | |||||||
| @@ -4,7 +4,7 @@ | |||||||
| } | } | ||||||
| html { | html { | ||||||
|   font-size: 13px; |   font-size: 13px; | ||||||
|   font-family: Helvetica, "Microsoft Yahei", Menlo, Monaco, Consolas, "Courier New", monospace; |   font-family: Helvetica, "Microsoft Yahei", Arial, sans-serif; | ||||||
|   -ms-text-size-adjust: 100%; |   -ms-text-size-adjust: 100%; | ||||||
|   -webkit-text-size-adjust: 100%; |   -webkit-text-size-adjust: 100%; | ||||||
|   line-height: 24px; |   line-height: 24px; | ||||||
| @@ -16,7 +16,7 @@ textarea, | |||||||
| select, | select, | ||||||
| option, | option, | ||||||
| button { | button { | ||||||
|   font-family: Helvetica, "Microsoft Yahei", Menlo, Monaco, Consolas, "Courier New", monospace; |   font-family: Helvetica, "Microsoft Yahei", Arial, sans-serif; | ||||||
| } | } | ||||||
| article, | article, | ||||||
| aside, | aside, | ||||||
| @@ -151,7 +151,7 @@ code, | |||||||
| kbd, | kbd, | ||||||
| pre, | pre, | ||||||
| samp { | samp { | ||||||
|   font-family: monospace, monospace; |   font-family: monospace; | ||||||
|   font-size: 1em; |   font-size: 1em; | ||||||
| } | } | ||||||
| .text-left { | .text-left { | ||||||
|   | |||||||
| @@ -7,7 +7,7 @@ | |||||||
|  |  | ||||||
| html { | html { | ||||||
|   font-size: @baseFontSize+1; |   font-size: @baseFontSize+1; | ||||||
|   font-family: Helvetica, "Microsoft Yahei", Menlo, Monaco, Consolas, "Courier New", monospace; |   font-family: Helvetica, "Microsoft Yahei", Arial, sans-serif; | ||||||
|   // make sure min font size |   // make sure min font size | ||||||
|   -ms-text-size-adjust: 100%; |   -ms-text-size-adjust: 100%; | ||||||
|   -webkit-text-size-adjust: 100%; |   -webkit-text-size-adjust: 100%; | ||||||
| @@ -23,7 +23,7 @@ textarea, | |||||||
| select, | select, | ||||||
| option, | option, | ||||||
| button { | button { | ||||||
|   font-family: Helvetica, "Microsoft Yahei", Menlo, Monaco, Consolas, "Courier New", monospace; |   font-family: Helvetica, "Microsoft Yahei", Arial, sans-serif; | ||||||
| } | } | ||||||
|  |  | ||||||
| // html5 block elements | // html5 block elements | ||||||
| @@ -193,7 +193,7 @@ code, | |||||||
| kbd, | kbd, | ||||||
| pre, | pre, | ||||||
| samp { | samp { | ||||||
|     font-family: monospace, monospace; |     font-family: monospace; | ||||||
|     font-size: 1em; |     font-size: 1em; | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1 +1 @@ | |||||||
| 0.5.6.1025 Beta | 0.5.6.1027 Beta | ||||||
		Reference in New Issue
	
	Block a user