release: prepare for 1.7.5
Written the changelog and updated package.json.pull/3564/head
parent
d475cc3d08
commit
4f0a2785da
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -1,3 +1,20 @@
|
|||
# 1.7.5
|
||||
* FEATURE: introduced support for multiple skins. See http://etherpad.org/doc/v1.7.5/#index_skins
|
||||
* FEATURE: added a new, optional skin. It can be activated choosing `skinName: "colibris"` in `settings.json`
|
||||
* FEATURE: allow file import using LibreOffice
|
||||
* SECURITY: updated many dependencies. No known high or moderate risk dependencies remain.
|
||||
* SECURITY: generate better random pad names
|
||||
* FIX: don't nuke all installed plugins if `npm install` fails
|
||||
* FIX: improved LibreOffice export
|
||||
* FIX: allow debug mode on node versions >= 6.3
|
||||
* MINOR: started making Etherpad less dependent on current working directory when running
|
||||
* MINOR: started simplifying the code structure, flattening complex conditions
|
||||
* MINOR: simplified a bit the startup scripts
|
||||
|
||||
*UPGRADE NOTES*: if you have custom files in `src/static/custom`, save them
|
||||
somewhere else, revert the directory contents, update to Etherpad 1.7.5, and
|
||||
finally put them back in their new location, uder `src/static/skins/no-skin`.
|
||||
|
||||
# 1.7.0
|
||||
* FIX: `getLineHTMLForExport()` no longer produces multiple copies of a line. **WARNING**: this could potentially break some plugins
|
||||
* FIX: authorship of bullet points no longer changes when a second author edits them
|
||||
|
|
|
@ -13,7 +13,7 @@ A skin is a directory located under `static/skins/<skin_name>`, with the followi
|
|||
|
||||
You can choose a skin changing the parameter `skinName` in `settings.json`.
|
||||
|
||||
Since Etherpad **1.8**, two skins are included:
|
||||
Since Etherpad **1.7.5**, two skins are included:
|
||||
|
||||
* `no-skin`: an empty skin, leaving the default Etherpad appearance unchanged, that you can use as a guidance to develop your own.
|
||||
* `colibris`: a new, experimental skin, that will become the default in Etherpad 2.0.
|
||||
|
|
|
@ -83,6 +83,7 @@
|
|||
"scripts": {
|
||||
"test": "nyc mocha --timeout 5000 ../tests/backend/specs/api"
|
||||
},
|
||||
"version": "1.7.0",
|
||||
"version": "1.7.5",
|
||||
"license": "Apache-2.0"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue