diff options
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | Makefile | 7 |
2 files changed, 5 insertions, 3 deletions
@@ -5,6 +5,7 @@ ownCloud-news (0.99) * Fix a bug that would show the loading sign when updating the web ui and would reload all items while reading * More accurate padding when hovering over a feed * Require 5.0.6 which includes a fix for the core API +* Don't highlight the tab title when there are no new unread feeds ownCloud-news (0.98) @@ -1,4 +1,4 @@ -# ownCloud - News +# ownCloud - App Framework # # @author Bernhard Posselt # @copyright 2012 Bernhard Posselt nukeawhale@gmail.com @@ -20,7 +20,8 @@ # release for the app store and running php unittests which require core build_directory=build/ -package_name=$(build_directory)news +app_name=news +package_name=$(build_directory)$(app_name) all: dist @@ -31,7 +32,7 @@ clean: dist: clean mkdir -p $(build_directory) - git archive HEAD --format=zip --prefix=news/ > $(package_name).zip + git archive HEAD --format=zip --prefix=$(app_name)/ > $(package_name).zip test: unit integration acceptance |