Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.

Commit d09b715

Browse files
committed
Changed year and bumped version to 1.2.0
1 parent 2a2c8a9 commit d09b715

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

src/api/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = '1.0.0'
1+
version = '1.2.0'
22

33
def api_version():
44
return version

src/static/assets/stork.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const baseApiUrl = 'api'
66
let token = getCookie('stork-auth');
77
checkTokenAndRedirectIfEmpty();
88

9+
document.getElementById('year').innerHTML = new Date().getFullYear();
910
setInterval(function(){
1011
checkTokenAndRedirectIfEmpty();
1112
}, 5000);

src/static/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
<div class="push"></div>
5555
</div>
5656
<footer>
57-
<div>Copyright © 2019 Englander Institute for Precision Medicine</div>
58-
<div>Stork Version 1.0.0</div>
57+
<div>Copyright © <span id="year"></span> Englander Institute for Precision Medicine</div>
58+
<div>Stork Version 1.2.0</div>
5959
<img alt="logo" class="footer-logo" src="assets/LOGO_ENGLANDER_2LINE_RGB.png">
6060
</footer>
6161

src/static/login.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ <h5 class="login-title">Log in</h5>
4040
</div>
4141
</div>
4242
<footer>
43-
<div>Copyright © 2019 Englander Institute for Precision Medicine</div>
44-
<div>Stork Version 1.0.0</div>
43+
<div>Copyright © <span id="year"></span> Englander Institute for Precision Medicine</div>
44+
<div>Stork Version 1.2.0</div>
4545
<img alt="logo" class="footer-logo" src="assets/LOGO_ENGLANDER_2LINE_RGB.png">
4646
</footer>
4747
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.1/jquery.min.js"></script>

0 commit comments

Comments
 (0)