Merge pull request #86 from monarc-project/deliveriesTemplatesForClients
Deliveries templates for clientspull/137/head
commit
8967ec3672
|
@ -17,11 +17,14 @@ vendor/
|
|||
public/css/
|
||||
public/js/
|
||||
public/img/
|
||||
public/flags/
|
||||
public/views/
|
||||
module/
|
||||
npm-debug.log
|
||||
node_modules/
|
||||
bin/
|
||||
data/DoctrineORMModule/
|
||||
data/monarc/
|
||||
data/json/
|
||||
go-pear.phar
|
||||
scripts/public/
|
||||
|
|
21
CHANGELOG.md
21
CHANGELOG.md
|
@ -1,6 +1,27 @@
|
|||
MONARC Changelog
|
||||
================
|
||||
|
||||
## 2.3.0 (not yet released)
|
||||
|
||||
### New
|
||||
|
||||
- an administrator of a MONARC front office instance is now able to set custom
|
||||
templates for deliveries per step.
|
||||
|
||||
### Enhancement
|
||||
|
||||
- default deliveries templates were improved;
|
||||
- the section dedicated to the management of the organization has been moved in
|
||||
a dedicated view;
|
||||
- improved the switching between the different available languages;
|
||||
- improved the generation of the deliveries.
|
||||
|
||||
### Fix
|
||||
|
||||
- fixed a bug in the generation of the deliveries (#84);
|
||||
- Inconsistency of Threat and Vulnerability Tables (#82).
|
||||
|
||||
|
||||
## 2.2.1 (2018-02-14)
|
||||
|
||||
### Enhancement
|
||||
|
|
|
@ -1 +1 @@
|
|||
{"major":2, "minor":2, "hotfix":1}
|
||||
{"major":2, "minor":3, "hotfix":0}
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "MONARC",
|
||||
"version": "2.2.1",
|
||||
"version": "2.3.0",
|
||||
"description": "MONARC Frontoffice App",
|
||||
"private": true,
|
||||
"repository": {
|
||||
|
|
|
@ -12,6 +12,13 @@ if [ ! -d public/css ]; then
|
|||
else
|
||||
find -L public/css -type l -exec rm {} \;
|
||||
fi
|
||||
|
||||
if [ ! -d public/flags ]; then
|
||||
mkdir public/flags
|
||||
else
|
||||
find -L public/flags -type l -exec rm {} \;
|
||||
fi
|
||||
|
||||
if [ ! -d public/views/dialogs ]; then
|
||||
mkdir -p public/views/dialogs
|
||||
else
|
||||
|
@ -38,6 +45,7 @@ if [ -d node_modules/ng_backoffice ]; then
|
|||
cd ../../js/ && find ../../node_modules/ng_backoffice/src -maxdepth 1 -name "*" -exec ln -s {} \; 2>/dev/null
|
||||
cd ../css/ && find ../../node_modules/ng_backoffice/css -name "*" -exec ln -s {} \; 2>/dev/null
|
||||
cd ../img/ && find ../../node_modules/ng_backoffice/img -name "*" -exec ln -s {} \; 2>/dev/null
|
||||
cd ../flags/ && find ../../node_modules/ng_backoffice/node_modules/ng-country-flags/dist/flags -mindepth 1 -type d -exec ln -s {} \; 2>/dev/null
|
||||
|
||||
if [ -d ../../node_modules/ng_anr ]; then
|
||||
cd ../js/
|
||||
|
@ -69,6 +77,7 @@ if [ -d node_modules/ng_client ]; then
|
|||
cd ../../js/ && find ../../node_modules/ng_client/src -name "*" -exec ln -s {} \; 2>/dev/null
|
||||
cd ../css/ && find ../../node_modules/ng_client/css -name "*" -exec ln -s {} \; 2>/dev/null
|
||||
cd ../img/ && find ../../node_modules/ng_client/img -name "*" -exec ln -s {} \; 2>/dev/null
|
||||
cd ../flags/ && find ../../node_modules/ng_client/node_modules/ng-country-flags/dist/flags -mindepth 1 -type d -exec ln -s {} \; 2>/dev/null
|
||||
|
||||
if [ -d ../../node_modules/ng_anr ]; then
|
||||
cd ../js/
|
||||
|
@ -93,4 +102,3 @@ if [ -d node_modules/ng_client ]; then
|
|||
grunt concat
|
||||
popd
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue