mirror of https://github.com/calzoneman/sync.git
package: bump version and update NEWS.md
This commit is contained in:
parent
bed7e65fc0
commit
1d33c47bfe
19
NEWS.md
19
NEWS.md
|
@ -1,3 +1,22 @@
|
|||
2015-10-04
|
||||
==========
|
||||
|
||||
* The channel data storage system has been refactored a bit. For
|
||||
compatibility, the default remains to store JSON objects for each channel in
|
||||
the `chandump` folder, however there is now also the option of storing
|
||||
channel data in the database. You can take advantage of this by setting
|
||||
`channel-storage: type: 'database'` in your `config.yaml`.
|
||||
- In order to migrate existing channel data from the `chandump` files to the
|
||||
database, run `node lib/channel-storage/migrate.js`.
|
||||
* The database storage method uses foreign keys to associate the channel data
|
||||
with the corresponding row in the `channels` table. This requires that the
|
||||
tables be stored using the InnoDB engine rather than MyISAM. If your CyTube
|
||||
tables defaulted to MyISAM, you can fix them by running
|
||||
|
||||
```sql
|
||||
ALTER TABLE `channels` ENGINE = InnoDB;
|
||||
```
|
||||
|
||||
2015-09-21
|
||||
==========
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"author": "Calvin Montgomery",
|
||||
"name": "CyTube",
|
||||
"description": "Online media synchronizer and chat",
|
||||
"version": "3.10.0",
|
||||
"version": "3.11.0",
|
||||
"repository": {
|
||||
"url": "http://github.com/calzoneman/sync"
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue