diff --git a/.drone.yml b/.drone.yml index 38d68d7f..1fd49fe2 100644 --- a/.drone.yml +++ b/.drone.yml @@ -131,4 +131,18 @@ steps: Build success: https://github.com/mickael-kerjean/filestash/commit/{{build.commit}} {{else}} Build failure: er}} https://github.com/mickael-kerjean/filestash/commit/{{build.commit}} - {{/success}} \ No newline at end of file + {{/success}} + +- name: deployement_state + image: machines/puppeteer + depends_on: [ deploy ] + environment: + PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true + APP_URL: https://demo.filestash.app + GITHUB_TOKEN: + from_secret: GITHUB_TOKEN + CI: true + commands: + - cd ../test/e2e + - npm install > /dev/null 2>&1 + - npm run state diff --git a/client/components/breadcrumb.js b/client/components/breadcrumb.js index f5adf5e6..893b81f1 100644 --- a/client/components/breadcrumb.js +++ b/client/components/breadcrumb.js @@ -25,7 +25,7 @@ export class BreadCrumb extends React.Component { } paths = paths.map((path, index) => { let sub_path = paths.slice(0, index+1).join('/'), - label = path === '' ? (CONFIG.name || 'Nuage') : path; + label = path === '' ? (CONFIG.name || 'Filestash') : path; if(index === paths.length - 1){ return {full: null, label: label}; }else{ diff --git a/client/index.html b/client/index.html index c60f1d61..b6000a64 100644 --- a/client/index.html +++ b/client/index.html @@ -9,7 +9,7 @@ - + diff --git a/server/common/config.go b/server/common/config.go index b9a296d3..914414c7 100644 --- a/server/common/config.go +++ b/server/common/config.go @@ -59,7 +59,7 @@ func NewConfiguration() Configuration { Form{ Title: "general", Elmnts: []FormElement{ - FormElement{Name: "name", Type: "text", Default: "Nuage", Description: "Name has shown in the UI", Placeholder: "Default: \"Filestash\""}, + FormElement{Name: "name", Type: "text", Default: "Filestash", Description: "Name has shown in the UI", Placeholder: "Default: \"Filestash\""}, FormElement{Name: "port", Type: "number", Default: 8334, Description: "Port on which the application is available.", Placeholder: "Default: 8334"}, FormElement{Name: "host", Type: "text", Description: "The host people need to use to access this server", Placeholder: "Eg: \"demo.filestash.app\""}, FormElement{Name: "secret_key", Type: "password", Description: "The key that's used to encrypt and decrypt content. Update this settings will invalidate existing user sessions and shared links, use with caution!"}, diff --git a/server/model/share.go b/server/model/share.go index 3fa930ac..a14e3148 100644 --- a/server/model/share.go +++ b/server/model/share.go @@ -592,7 +592,7 @@ func TmplEmailVerification() string {
| - Powered by Nuage. + Powered by Filestash. |