Skip to content

Commit

Permalink
Merge branch 'release/1.7.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
bivab committed Jul 25, 2017
2 parents fbeb523 + 838a82b commit 5723089
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.6.0
current_version = 1.7.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>\w+))?
tag = False
commit = True
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ before_script:
script:
- make travis
after_success:
- cp handbook-1.6.0.pdf latest.pdf
- cp handbook-1.6.0.html latest.html
- travis-custom-deploy sftp handbook-1.6.0.pdf handbook-1.6.0.html latest.pdf latest.html
- cp handbook-1.7.0.pdf latest.pdf
- cp handbook-1.7.0.html latest.html
- travis-custom-deploy sftp handbook-1.7.0.pdf handbook-1.7.0.html latest.pdf latest.html
notification:
email:
on_success: never
Expand Down
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
MARKDOWN=$(filter-out README.md,$(wildcard *.md))

default: handbook.pdf handbook.html
travis: handbook-1.6.0.html handbook-1.6.0.pdf
travis: handbook-1.7.0.html handbook-1.7.0.pdf

.PHONY: dependencies
dependencies:
git submodule update --init

handbook-1.6.0.html: $(MARKDOWN) dependencies
handbook-1.7.0.html: $(MARKDOWN) dependencies
pandoc -f markdown -t html --css=markdown-css-themes/markdown10.css \
--standalone --self-contained $(MARKDOWN) -o $@

handbook.html: handbook-1.6.0.html
handbook.html: handbook-1.7.0.html
cp $< $@

handbook-1.6.0.pdf: $(MARKDOWN)
handbook-1.7.0.pdf: $(MARKDOWN)
pandoc --standalone -f markdown -t latex $(MARKDOWN) -o $@

handbook.pdf: handbook-1.6.0.pdf
handbook.pdf: handbook-1.7.0.pdf
cp $< $@

clean:
Expand Down
6 changes: 3 additions & 3 deletions dokumentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ Das Planungswerkzeug für überschneidungsfreies Studieren besteht aus **vier Ha

1. **Zwei XML-Dokumente ( Modulbaum und Moduldaten)** ([Download](https://github.com/plues/data/tree/develop/raw))

2. **Mincer zum Zusammenfügen der Dokumente** ([Windows](https://github.com/plues/mincer/releases/download/3.0.0/mincer-3.0.0.exe) [MacOs/Linux](https://github.com/plues/mincer/releases/download/3.0.0/mincer-3.0.0-standalone.jar))
2. **Mincer zum Zusammenfügen der Dokumente** ([Windows](https://github.com/plues/mincer/releases/download/3.1.0/mincer-3.1.0.exe) [MacOs/Linux](https://github.com/plues/mincer/releases/download/3.1.0/mincer-3.1.0-standalone.jar))

3. **SQlite-Datenbank** ([Download](https://github.com/plues/data/releases/tag/3.0.0))

4. **Hauptanwendung** ([Download](https://github.com/plues/plues/releases/tag/2.4.0))
4. **Hauptanwendung** ([Download](https://github.com/plues/plues/releases/tag/2.5.0))

Als Grundlage dienen zwei XML-Dokumente, der Modulbaum und die Moduldaten. Diese enthalten alle relevanten Informationen der einzelnen Kurse und Module eines Studienganges, sowie die genauen Veranstaltungszeiten. Die Anwendung mincer fügt diese beiden Dateien zu einer gemeinsamen SQlite- Datenbank zusammen, welche als Grundlage für die Hauptanwendung dient. Nachdem die SQlite-Datenbank von der Hauptanwendung geöffnet wurde, ist diese funktionsfähig.

Expand All @@ -103,7 +103,7 @@ Um ein vernünftiges Arbeiten mit dem Planungswerkzeug für überschneidungsfrei
### <a name="fa"></a> 2.1 Starten der Hauptanwendung und Einlesen der Daten


Die Hauptanwendung wird durch die Datei **plues-2.4.0** gestartet. Nach dem Starten erscheint folgender Bildschirm:
Die Hauptanwendung wird durch die Datei **plues-2.5.0** gestartet. Nach dem Starten erscheint folgender Bildschirm:


![](images/hauptanwendung1.png)
Expand Down

0 comments on commit 5723089

Please sign in to comment.