summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-09-12 20:56:51 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-09-12 20:56:51 +0200
commitfbd0e229dbf9a3819de0d5c9450b963e00e2c55a (patch)
treefa7da4d4eac4eb14970aec4024768e96507e10a1
parent218ddcaf530b9f22eb199ab8081ac1bb31fd9711 (diff)
add links to desktop/mobile sync clients in the readme
-rw-r--r--CHANGELOG.md14
-rw-r--r--README.md4
-rw-r--r--css/navigation.css1
-rw-r--r--templates/part.navigation.feed.php1
-rw-r--r--templates/part.navigation.folder.php1
5 files changed, 14 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7a9f494b3..1178d6b5b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,30 +1,32 @@
owncloud-news (3.001)
* Breaking Change: Depend on ownCloud 7.0.3
* Breaking Change: Depend on PHP 5.4
-* Breaking Change: Plugin API: BusinessLayer has been renamed to Service, (FeedBusinessLayer -> FeedService) and different exceptions are now thrown to make failure better distinguishable
+* Breaking Change: Plugin API: BusinessLayer has been renamed to Service, (FeedBusinessLayer -> FeedService) and different exceptions are now thrown to make failure better distinguishable, accessing the BusinessLayer links to the Service equivalents to keep compability
* Allow to turn off marking read when scrolling
* Allow to order by oldest first
* Add clientside routing
* When importing OPML use the feed title if given
-* Animate folder/feed disappearance if marking read
* Make hover buttons available under a menu button
* Import feeds from a very large OPML file in chunks to prevent server slowdown
-* Port clientside code to JavaScript
-* Removed pull to refresh
+* Port clientside code from CoffeeScript to JavaScript
+* Removed pull to refresh since it had many issues
* Push API to 1.4
* Slim down appstore build
* Allow to specifiy custom CSS rules for each feed
* Compact view: Title ellipsis
-* Compact view: Show source
+* Compact view: Show source as favicon
* Compact view: Add keep unread button
* Compact view: Expand item when jumping to it with a keyboard shortcut
* Move undo feed/folder deletion button into the navigation bar
* Add create folder form in addition to the subscribe form
* Loading icon is now displayed until all feeds and folders are loaded
* Optimize for mobile
-* Folder names are not uppercased anymore due to possible conflicts when using the API
+* Folder names are not uppercased anymore due to possible conflicts from folders being created through the API
* Reload current folder if a feed is moved into or out of it
* Immediate feedback if folder/feed exists already on the client side
+* Move show unread articles setting into the settings area
+* Disable drag and drop if a feed is in an invalid state
+* Also focus scrollable area if the page is loaded
owncloud-news (2.003)
* Use correct url for folder and feed api update methods
diff --git a/README.md b/README.md
index 3a3aa5767..3b134e290 100644
--- a/README.md
+++ b/README.md
@@ -16,6 +16,10 @@ For further developer and user documentation please visit [the wiki](https://git
* [Bernhard Posselt](https://github.com/Raydiation)
* [Jan-Christoph Borchardt](https://github.com/jancborchardt) (Design)
+## Sync Clients
+* [Mobile](https://github.com/owncloud/news/wiki/mobile-clients)
+* [Desktop](https://github.com/owncloud/news/wiki/desktop-clients)
+
## Dependencies
* PHP >= 5.4
* php-curl
diff --git a/css/navigation.css b/css/navigation.css
index b9c84546c..930023b15 100644
--- a/css/navigation.css
+++ b/css/navigation.css
@@ -143,4 +143,3 @@
#app-navigation .error-message button:hover {
opacity: 1;
}
-
diff --git a/templates/part.navigation.feed.php b/templates/part.navigation.feed.php
index 7a9ef95ed..b671a5de8 100644
--- a/templates/part.navigation.feed.php
+++ b/templates/part.navigation.feed.php
@@ -3,6 +3,7 @@
unread: Navigation.getFeedUnreadCount(feed.id) > 0
}"
ng-repeat="feed in Navigation.getFeedsOfFolder(<?php p($_['folderId']); ?>) | orderBy:'id':true track by feed.url"
+ ng-animate="animate"
ng-show="Navigation.getFeedUnreadCount(feed.id) > 0
|| Navigation.isShowAll()
|| Navigation.isFeedActive(feed.id)
diff --git a/templates/part.navigation.folder.php b/templates/part.navigation.folder.php
index 22b3b268a..b2d90e458 100644
--- a/templates/part.navigation.folder.php
+++ b/templates/part.navigation.folder.php
@@ -5,6 +5,7 @@
unread: Navigation.getFolderUnreadCount(folder.id) > 0
}"
ng-repeat="folder in Navigation.getFolders() | orderBy:'id':true"
+ ng-animate="animate"
ng-show="Navigation.getFolderUnreadCount(folder.id) > 0
|| Navigation.isShowAll()
|| Navigation.isFolderActive(folder.id)