mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2024-04-21 12:32:08 +00:00
cleanup (release): pre release cleanup
This commit is contained in:
+15
-1
@@ -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}}
|
||||
{{/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
|
||||
|
||||
@@ -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{
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@
|
||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||
<link rel="manifest" href="/assets/manifest.json">
|
||||
<meta content="yes" name="apple-mobile-web-app-capable">
|
||||
<meta content="Nuage" name="apple-mobile-web-app-title">
|
||||
<meta content="Filestash" name="apple-mobile-web-app-title">
|
||||
<meta content="black-translucent" name="apple-mobile-web-app-status-bar-style">
|
||||
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/logo/apple-touch-icon.png">
|
||||
|
||||
@@ -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!"},
|
||||
|
||||
@@ -592,7 +592,7 @@ func TmplEmailVerification() string {
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td class="content-block powered-by">
|
||||
Powered by <a href="http://github.com/mickael-kerjean/filestash">Nuage</a>.
|
||||
Powered by <a href="http://github.com/mickael-kerjean/filestash">Filestash</a>.
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user