Skip to content

Commit

Permalink
v2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
liufee committed Aug 18, 2020
1 parent 9527a84 commit a5198f0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
13 changes: 9 additions & 4 deletions common/config/main.php
Expand Up @@ -12,19 +12,24 @@
5. main.php
*/
'name' => 'Feehi CMS',
'version' => '2.1.0.2',
'version' => '2.1.1',
'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
'aliases' => [
'@bower' => '@vendor/bower-asset',
'@npm' => '@vendor/npm-asset',
],
'components' => array_merge([
/**
* dsn:
* - mysql mysql:host=localhost;dbname=feehi
* - sqlite sqlite:/feehi.db
*/
'db' => [//database config, will be covered by backend|frontend|api]/main-[local].php
'class' => yii\db\Connection::className(),
'dsn' => 'mysql:host=localhost;dbname=feehi',
'username' => 'root',
'dsn' => 'sqlite:/feehi.db',
'username' => '',
'password' => '',
'charset' => 'utf8mb4',
'charset' => '',
],
'cdn' => [//support Qiniu(七牛) TencentCloud(腾讯云) Aliyun(阿里云) Netease(网易云) more detail for visit http://doc.feehi.com/cdn.html
'class' => feehi\cdn\DummyTarget::className(),//不使用cdn
Expand Down
2 changes: 2 additions & 0 deletions docs/UPGRADING.md
@@ -1,5 +1,7 @@
更新记录

2.1.1 支持MySQL、SQLite、PostgreSQL,(理论上支持SQLServer、Oracle);优化在线安装;增加多语言语种(法语,俄罗斯语,西班牙语,德语,意大利语,日语,葡萄牙,韩语,荷兰,印度);优化默认读取用户所在区域语种

2.1.0 正式版

2.1.0-beta2 修复bug
Expand Down

0 comments on commit a5198f0

Please sign in to comment.