gPodder QML UI 4.0.0

This commit is contained in:
Thomas Perl 2014-03-15 00:02:31 +01:00
parent d3c1133610
commit c5aeb752f4
2 changed files with 24 additions and 1 deletions

4
README
View file

@ -1,7 +1,9 @@
gPodder 4 QML UI Reference Implementation
-----------------------------------------
Nothing (much) to see here (yet), move along.
This is the reference implementation of the QML UI for gPodder 4. It contains a
(work in progress) Desktop UI and a minimal Touch UI for mobile devices. The
Desktop UI requires Qt Quick Controls, included in Qt 5.2 and newer.
Usage:

21
makefile Normal file
View file

@ -0,0 +1,21 @@
PROJECT := gpodder-ui-qml
VERSION := 4.0.0
all:
@echo ""
@echo " make release ..... Build source release"
@echo ""
release: dist/$(PROJECT)-$(VERSION).tar.gz
dist/$(PROJECT)-$(VERSION).tar.gz:
mkdir -p dist
git archive --format=tar --prefix=$(PROJECT)-$(VERSION)/ $(VERSION) | gzip >$@
clean:
find . -name '__pycache__' -exec rm {} +
distclean: clean
rm -rf dist
.PHONY: all release clean