Skip to content

Commit

Permalink
Merge branch 'release/1.4.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua27 committed Apr 10, 2017
2 parents 4f76ffe + ac96259 commit 76caa70
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 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.3.0
current_version = 1.4.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.3.0.pdf latest.pdf
- cp handbook-1.3.0.html latest.html
- travis-custom-deploy sftp handbook-1.3.0.pdf handbook-1.3.0.html latest.pdf latest.html
- cp handbook-1.4.0.pdf latest.pdf
- cp handbook-1.4.0.html latest.html
- travis-custom-deploy sftp handbook-1.4.0.pdf handbook-1.4.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.3.0.html handbook-1.3.0.pdf
travis: handbook-1.4.0.html handbook-1.4.0.pdf

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

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

handbook.html: handbook-1.3.0.html
handbook.html: handbook-1.4.0.html
cp $< $@

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

handbook.pdf: handbook-1.3.0.pdf
handbook.pdf: handbook-1.4.0.pdf
cp $< $@

clean:
Expand Down
10 changes: 5 additions & 5 deletions dokumentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@

Das Planungswerkzeug für überschneidungsfreies Studieren besteht aus **vier Hauptbestandteilen**:

1. **Zwei XML-Dokumente ( Modulbaum und Moduldaten)** ([Download](https://github.com/plues/data/tree/master/raw))
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://www3.hhu.de/stups/downloads/plues/mincer/mincer-2.2.0.exe) [MacOs/Linux](https://www3.hhu.de/stups/downloads/plues/mincer/mincer-2.2.0-standalone.jar))
2. **Mincer zum Zusammenfügen der Dokumente** ([Windows](https://github.com/plues/mincer/releases/download/2.3.0/mincer-2.3.0.exe) [MacOs/Linux](https://github.com/plues/mincer/releases/download/2.3.0/mincer-2.3.0-standalone.jar))

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

4. **Hauptanwendung** ([Download](https://github.com/plues/plues/releases/tag/2.1.0))
4. **Hauptanwendung** ([Download](https://github.com/plues/plues/releases/tag/2.2.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.1.0** gestartet. Nach dem Starten erscheint folgender Bildschirm:
Die Hauptanwendung wird durch die Datei **plues-2.2.0** gestartet. Nach dem Starten erscheint folgender Bildschirm:


![](hauptanwendung1.jpg)
Expand Down

0 comments on commit 76caa70

Please sign in to comment.