Skip to content

Commit

Permalink
Changes for 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjung-dev committed May 15, 2015
1 parent bd9e12e commit c0145c7
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,19 @@ Dieses kleine Tool löst das "Ewige-Einkaufsliste-für-mehr-Personen-Problem". K

## Versionen

## 0.8.1

* About-Dokument überarbeitet
* Button-Größen beim Hinzufügen zurückgeändert

## 0.8.0

* Bootstrap Update
* Angular Update
* Option zum Mehrfach-Hinzufügen (#9)
* Hinzufügen-Bug behoben (#8)
* Zoom-Bug behoben

### 0.7.0

* Restful API mit Slim-Framework
Expand Down
15 changes: 15 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,21 @@ <h2 id="installation">Installation</h2>

<h2 id="versionen">Versionen</h2>

<h3>0.8.1</h3>
<ul>
<li>About-Dokument überarbeitet</li>
<li>Button-Größen beim Hinzufügen zurückgeändert</li>
</ul>

<h3>0.8.0</h3>
<ul>
<li>Bootstrap Update</li>
<li>Angular Update</li>
<li>Option zum Mehrfach-Hinzufügen (<a class="issue-link" title="Mehrfach-Hinzufügen" href="https://github.com/campino2k/Einkaufsliste/issues/9">#9</a>)</li>
<li>Hinzufügen-Bug behoben (<a class="issue-link" title="Behandlung doppelter Einträge" href="https://github.com/campino2k/Einkaufsliste/issues/8">#8</a>)</li>
<li>Zoom-Bug behoben</li>

</ul>
<h3 id="070">0.7.0</h3>

<ul>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<footer class="einkaufsliste-footer">
<div class="container">
<p class="text-center">
Version 0.8.0 | <a href="http://github.com/campino2k/Einkaufsliste">GitHub</a> | by <a
Version 0.8.1 | <a href="http://github.com/campino2k/Einkaufsliste">GitHub</a> | by <a
href="http://campino2k.de">Christian Jung</a>
</p>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/views/new.tpl.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@
<div class="row">

<div class="col-xs-6 ">
<button class="btn btn-success btn-lg">Hinzufügen</button>
<button class="btn btn-success">Hinzufügen</button>
</div>

<div class="col-xs-6 text-right">
<a href="#/" class="btn btn-sm btn-danger" ng-if="!list.newEntry.addAnother">Abbrechen</a>
<a href="#/" class="btn btn-sm btn-danger" ng-if="list.newEntry.addAnother">Zur Liste</a>
<a href="#/" class="btn btn-danger" ng-if="!list.newEntry.addAnother">Abbrechen</a>
<a href="#/" class="btn btn-danger" ng-if="list.newEntry.addAnother">Zur Liste</a>
</div>
</div>

Expand Down

0 comments on commit c0145c7

Please sign in to comment.