Skip to content

Commit

Permalink
BDE-212: Update DOM Purify lib and README about release
Browse files Browse the repository at this point in the history
  • Loading branch information
akervern committed Jan 12, 2022
1 parent 66bac1f commit 20698cb
Show file tree
Hide file tree
Showing 5 changed files with 12,663 additions and 37 deletions.
11 changes: 4 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,16 +112,13 @@ $ mvn clean verify -f ftest/pom.xml -DconnectUsr=${CONNECT_USERNAME} -DconnectPs

### Releases

Major releases (new features):
Our release pipeline is bound to any anotated tag created. Distribution artifacts are uploaded and available through [Github release screen](https://github.com/nuxeo/nuxeo-browser-extension/releases).

```
gulp release:major
```shell
$ git tag -a v1.2.3 -m "Release 1.2.3"
```

Minor releases (small improvements and bugfixes):
```
gulp release
```
Release pipeline are executed on Jenkins and can be followed here: [](https://jenkins.nos.build.nuxeo.com/job/nuxeo/job/nuxeo-browser-extension/view/tags/)


# Contributing / Reporting issues
Expand Down
4 changes: 2 additions & 2 deletions app/libs/purify.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions app/libs/purify.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/scripts.babel/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ limitations under the License.
// for version upper 72
$('#designer-livepreview-need-update').hide();
if (app.browser.name === 'Chrome') {
let version = parseInt(/(Firefox|Chrome)\/(?<version>[0-9\.]*)/g.exec(navigator.userAgent).groups.version.split('.')[0]);
const version = parseInt(/(Firefox|Chrome)\/(?<version>[0-9\.]*)/g.exec(navigator.userAgent).groups.version.split('.')[0]);
if (version < 72) {
$('#designer-livepreview').hide();
$('#designer-livepreview-need-update').show();
Expand Down
Loading

0 comments on commit 20698cb

Please sign in to comment.