Skip to content

Commit

Permalink
Merge pull request #615 from Alfresco/development
Browse files Browse the repository at this point in the history
1.4.0
  • Loading branch information
DenysVuika authored Sep 6, 2018
2 parents be14dbb + 7ac613d commit d5e823b
Show file tree
Hide file tree
Showing 323 changed files with 30,508 additions and 13,637 deletions.
97 changes: 0 additions & 97 deletions .angular-cli.json

This file was deleted.

19 changes: 14 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,19 @@ before_script:
# Disable services enabled by default
- sudo /etc/init.d/postgresql stop

install:
before_install:
- npm install -g npm@latest
- npm ci
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3 # give xvfb some time to start

script:
# - docker-compose stop
- npm run build && npm run e2e:docker
jobs:
include:
- stage: test
script: npm run lint && npm run spellcheck
- stage: test
script:
- npm run test:ci
- bash <(curl -s https://codecov.io/bash) -X gcov
- stage: e2e
script: npm run build && npm run e2e:docker
4 changes: 1 addition & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
{
"javascript.preferences.quoteStyle": "single",
"typescript.preferences.quoteStyle": "single",
"javascript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.importModuleSpecifier": "relative"
"typescript.preferences.quoteStyle": "single"
}
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM nginx:alpine
FROM nginx:stable-alpine
LABEL version="1.3"
LABEL maintainer="Denys Vuika <[email protected]>"

COPY nginx.conf /etc/nginx/nginx.conf

WORKDIR /usr/share/nginx/html
COPY dist/ .
COPY dist/app/ .

18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="left"> <img title="Alfresco" src="alfresco.png" alt="Alfresco - make business flow"></p>

# Alfresco Example Content Application
# Example Content Application

## Introduction

Expand All @@ -24,11 +24,19 @@ To get help on Angular CLI use ng help or read the [Angular CLI README](https://
Isuses can be raised in GitHub or in the Alfresco JIRA project.
Please include a clear description, steps to reproduce and screenshots where appropriate.All issues will be reviewed; bugs will be categorized if reproducible and enhancement/feature suggestions will be considered against existing priorities if the use case serves a general-purpose need.

#### High level features planned for Q3 2018 (July - September)
* Library Management - create, find, join and manage file libraries.
* Commenting - View and add comments to files and folders
* Sharing Files - activate and deactivate shared file both manually and automatically.
#### Features added in the latest release
* Application Extensibility - first phase of extensibilty, see [Documentation](https://alfresco.github.io/alfresco-content-app/#/extending) for details.
* Sharing Files - activate and deactivate shared file links.
* Commenting - View and add comments to files and folders.
* Permissions - update file and folder permissions.
* Print - print action from the file viewer
* Improved UX - single click to open folders and files, and right click actions menu

Please refer to the [release notes](https://github.com/Alfresco/alfresco-content-app/releases) for details of all changes.

#### High level features planned for H2 2018 (July - December)
* Library Management - create, find, join and manage file libraries.
* Sharing Files - add an expiry date to a sharable link.
* Application Extensibility - Extension framework to provide simple ways to extend the application.

### Want to help?
Expand Down
Loading

0 comments on commit d5e823b

Please sign in to comment.