Skip to content

Commit 32627a9

Browse files
committed
Update info, add Issue button to footer
1 parent 97604d3 commit 32627a9

File tree

4 files changed

+38
-44
lines changed

4 files changed

+38
-44
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
<div class="footer-container">
2-
<span>AutoSave:
1+
<div class="footer-container">
2+
<span><a class="btn btn-xs btn-warning"
3+
href="https://github.com/adiwg/mdEditor/issues/new"
4+
target="_blank">{{fa-icon "github"}} Report Issue
5+
6+
{{tooltip-on-element text='Report bugs, Request features - GitHub account required.' side="top"}}
7+
</a></span>
8+
<span>AutoSave:
39
<span class="{{if settings.data.autoSave "text-success" "text-warning"}}">
410
{{if settings.data.autoSave "On" "Off"}}</span>
5-
</span>
6-
{{yield}}
7-
</div>
11+
</span>
12+
{{yield}}
13+
</div>

app/pods/dashboard/template.hbs

+5-29
Original file line numberDiff line numberDiff line change
@@ -87,47 +87,23 @@
8787
</h2>
8888
<p class="lead">
8989
The mdEditor is a web application that allows users to author
90-
and edit metadata for projects and datasets. The mdEditor is
91-
currently under active development. The primary goal is to
90+
and edit metadata for projects and datasets. The primary goal is to
9291
create an editor that will allow creation and management of
9392
archival quality metadata without requiring extensive knowledge
9493
of various metadata standards.
9594
</p>
9695
<p class="lead">
97-
md<span class="md-icon-mdeditor"></span>ditor Version 1.0 will be
98-
released <b class="text-success">January 2018</b>. <a
96+
The md<span class="md-icon-mdeditor"></span>ditor is currently
97+
under active development, and the team is working towards
98+
finalizing the Version 1.0 release. <a
9999
href="https://github.com/adiwg/mdEditor/projects"
100100
target="_blank">Follow progress</a> or <a
101101
href="https://github.com/adiwg/mdEditor/issues"
102102
target="_blank">report issues</a> on <a
103103
href="https://github.com/adiwg/mdEditor" target="_blank"> the
104104
Github website</a>. For more information, see <a
105-
href="https://github.com/adiwg/mdEditor/wiki" target="_blank">the
106-
Github wiki</a>.
105+
href="https://www.mdeditor.org" target="_blank">mdeditor.org</a>.
107106
</p>
108-
109-
<style media="screen">
110-
.construction {
111-
width: 20vh;
112-
min-width:100px;
113-
font-size:2vh;
114-
border: 1vh solid #333333 !important;
115-
margin: 4vh auto;
116-
padding: 1.5vh;
117-
border-radius: 2vh;
118-
}
119-
</style>
120-
{{#layout/md-card class="construction card-inverse card-warning" shadow=false}}
121-
<div class="text-center">
122-
<div>
123-
{{fa-icon "exclamation-triangle" size=2}}
124-
</div>
125-
<div>
126-
<b>Under <br>Construction</b>
127-
</div>
128-
</div>
129-
{{/layout/md-card}}
130-
131107
</div>
132108
</div>
133109
</div>

app/styles/_layout.scss

+8
Original file line numberDiff line numberDiff line change
@@ -177,5 +177,13 @@ footer {
177177
.text-warning {
178178
color: lighten($brand-warning, 10);
179179
}
180+
181+
> span {
182+
margin-left: 1em;
183+
}
184+
}
185+
186+
.btn-xs {
187+
line-height: 1.25em;
180188
}
181189
}

app/templates/application.hbs

+14-10
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,22 @@
5454
{{ember-load-remover}}
5555

5656
{{#control/md-modal isShowing=settings.data.showSplash showConfirm=true confirmLabel="OK"}}
57-
<div class="alert alert-warning" role="alert">{{fa-icon "exclamation-triangle"}} Update Alert</div>
58-
<div class="alert alert-danger" role="alert">{{fa-icon "wrench"}} Warning:
59-
This application is under development!
57+
<div class="alert alert-info" role="alert">{{fa-icon "exclamation-triangle"}} Update Alert</div>
58+
<div class="alert alert-warning" role="alert">{{fa-icon "wrench"}}
59+
This application is in beta testing, <a
60+
href="https://github.com/adiwg/mdEditor/issues"
61+
target="_blank">please let us know</a> if you find any bugs.
62+
Thank-you!
6063
</div>
6164
<p>
62-
The application has been updated since your last session. Some features
63-
may have been added or changed. Please note the version below (also shown
64-
in the {{#link-to "settings"}}Settings{{/link-to}}) when reporting bugs or issues.
65-
If you are having problems, you might want to {{#link-to "settings"}}
66-
clear your localstorage{{/link-to}} which will
67-
delete all records. This application is <strong class="text-warning">NOT
68-
INTENDED FOR PRODUCTION USE until Version 1.0 (January 2018).</strong>
65+
The md<span class="md-icon-mdeditor"></span>ditor has been updated
66+
since your last session. Some features may have been added or changed.
67+
Please note the version below (also shown in the {{#link-to
68+
"settings"}}Settings{{/link-to}}) when reporting bugs or issues. If you
69+
are having problems, you might want to {{#link-to "settings"}} clear
70+
your localstorage{{/link-to}} which will delete all records. This
71+
application is in beta <strong class="text-warning">SHOULD BE</strong>
72+
safe for production use.
6973
</p>
7074
<p>
7175
Current Version: <span class="text-info">{{control/md-repo-link}}</span>

0 commit comments

Comments
 (0)