Skip to content

Commit

Permalink
Merge pull request #194 from iimog/release-1.0.4
Browse files Browse the repository at this point in the history
Release 1.0.4
  • Loading branch information
iimog authored Apr 24, 2018
2 parents 00ad993 + f31bf1b commit 172b322
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 17 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Those can then be mapped onto user provided community data.
- **I want to read/cite the preprint describing FENNEC.** → [![bioRxiv](https://img.shields.io/badge/DOI-10.1101%2F194308-blue.svg)](https://doi.org/10.1101/194308)
- **I want to reference the source code of FENNEC.** → [![DOI](https://zenodo.org/badge/51136300.svg)](https://zenodo.org/badge/latestdoi/51136300) Please also cite our preprint.
- **I want to find the docker image of FENNEC.** → [Docker Hub](https://hub.docker.com/r/iimog/fennec/)
- **I want to see the TravisCI build of FENNEC.** → [![Build Status](https://travis-ci.org/molbiodiv/fennec.svg?branch=master)](https://travis-ci.org/molbiodiv/fennec)
- **I want to test new features of FENNEC.** → [Beta Version](https://beta.fennec.molecular.eco)

## Setup development environment
So you want to contribute to the development of FENNEC - awesome!
Expand Down Expand Up @@ -126,6 +128,10 @@ The api doc on the other hand is dynamically created from the php annotations in
Those are served from [localhost:3141/api/doc](http://localhost:3141/api/doc).

## Changes
### 1.0.4 <2018-04-24>
- Update startpage design
- Add guide for new users (#194)
- Change version to database (#190)
### 1.0.3 <2018-03-29>
- Fix dbversion of mapping in import commands (#175)
### 1.0.2 <2018-03-28>
Expand Down
12 changes: 12 additions & 0 deletions app/Resources/client/scss/panels.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,15 @@
.info-trait {
color: darken($trait, 5%);
}

.panel-user-guide > .panel-heading {
background-color: $project;
border-color: darken($project, 5%);
color: #FFF;
}

.panel-disabled > .panel-heading {
background-color: rgba(81,79,80,0.65);
border-color: rgba(81,79,80,0.65);
color: #FFF;
}
22 changes: 10 additions & 12 deletions app/Resources/views/base.navigation.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<!-- /.navbar-header -->

<ul class="nav navbar-top-links navbar-right">
<font style="margin-right: 5px; font-size: 16px;">version: </font>
<font style="margin-right: 5px; font-size: 16px;">database: </font>

<select class="selectpicker" id="dbVersionPicker">
{% for dbversion in dbversions|split('|') %}
Expand Down Expand Up @@ -102,18 +102,16 @@
</nav>

<div id="page-wrapper">
<div id="page-wrapper-{{ type }}">
{% if title is defined and type != "startpage" %}
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h1 class="page-header" id="page-title">{{ title }} </h1>
</div>
{% if title is defined and fennecLayoutType != "startpage" %}
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h1 class="page-header" id="page-title">{{ title }} </h1>
</div>
{% endif %}
<div id="global-message-area"></div>
{% block content %}
{% endblock %}
</div>
</div>
{% endif %}
<div id="global-message-area"></div>
{% block content %}
{% endblock %}
</div>
</div>
{% include 'googleAnalytics/dialog.html.twig' %}
Expand Down
2 changes: 1 addition & 1 deletion app/Resources/views/startpage/index.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
</div>
<h4>Beta Version</h4>
<p>
Check out our beta version of FENNEC and keep informed about new pre-released features.
Check out our <a href="https://beta.fennec.molecular.eco">beta version of FENNEC</a> and keep informed about new pre-released features.
</p>
</div>
<div class="blockquote-box blockquote-contribute clearfix">
Expand Down
6 changes: 3 additions & 3 deletions app/Resources/views/startpage/info-panels.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
</div>
<div class="row">
<div class="col-lg-6">
<div class="panel panel-user-guide" style="border: none;">
<div class="panel panel-user-guide panel-disabled" style="border: none;">
<div class="panel-heading panel-title">
You have trait information?
</div>
Expand All @@ -62,8 +62,8 @@
<i class="fa fa-table fa-5x text-right"></i>
</div>
<div class="col-xs-11" style="padding: 20px;">
Then upload your data and share it with other users
<a href={{ path('my_traits', {'dbversion': dbversion }) }}>here</a>.
Then upload your data and share it with other users.
This is currently only possible in the <a href="https://beta.fennec.molecular.eco">beta version</a>.
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/config/version.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
parameters:
application_version: 1.0.3
application_version: 1.0.4

0 comments on commit 172b322

Please sign in to comment.