diff options
-rw-r--r-- | README.md | 7 | ||||
-rw-r--r-- | app/src/main/kotlin/com/pitchedapps/frost/parsers/MessageParser.kt | 1 | ||||
-rw-r--r-- | docs/Changelog.md | 5 |
3 files changed, 11 insertions, 2 deletions
@@ -1,7 +1,7 @@ # Frost-for-Facebook [![Build Status](https://travis-ci.org/AllanWang/Frost-for-Facebook.svg?branch=master)](https://travis-ci.org/AllanWang/Frost-for-Facebook) -[![Stories in Ready](https://badge.waffle.io/AllanWang/Frost-for-Facebook.png?label=ready&title=Ready)](https://waffle.io/AllanWang/Frost-for-Facebook?utm_source=badge) +[![](https://raw.githubusercontent.com/ZenHubIO/support/master/zenhub-badge.png)](https://zenhub.com) <a href='https://play.google.com/store/apps/details?id=com.pitchedapps.frost&utm_source=github'><img alt='Get it on Google Play' width="30%" src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png'/></a> @@ -16,6 +16,11 @@ It contains many features, including: * Reactive based loading * The transparency of open sourced development +Frost is the only third party Facebook app to have: +* Transparent themes and a fully customizable theme engine +* True multiuser support, along with multiuser notifications +* Fully swipable overlays + For testers and users without a play store account, test builds can be found [here](https://github.com/AllanWang/Frost-for-Facebook-APK-Builder/releases). Note that these builds occur for every commit, including unstable ones. You can find the release numbers for the master branch under the [Travis](https://travis-ci.org/AllanWang/Frost-for-Facebook/branches). diff --git a/app/src/main/kotlin/com/pitchedapps/frost/parsers/MessageParser.kt b/app/src/main/kotlin/com/pitchedapps/frost/parsers/MessageParser.kt index dbe2c0bb..00ede417 100644 --- a/app/src/main/kotlin/com/pitchedapps/frost/parsers/MessageParser.kt +++ b/app/src/main/kotlin/com/pitchedapps/frost/parsers/MessageParser.kt @@ -49,7 +49,6 @@ private class MessageParserImpl : FrostParserBase<Triple<List<FrostThread>, Fros private fun parseMessage(element: Element): FrostThread? { val a = element.getElementsByTag("a").first() ?: return null val abbr = element.getElementsByTag("abbr") - println(abbr.attr("data-store")) val epoch = FrostRegex.epoch.find(abbr.attr("data-store")) ?.groupValues?.getOrNull(1)?.toLongOrNull() ?: -1L //fetch id diff --git a/docs/Changelog.md b/docs/Changelog.md index 69e5df56..8a9b08db 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -1,5 +1,10 @@ # Changelog +## v1.5.6 +* Greatly improve background notification fetcher +* Support fetching messages from all accounts +* Update theme + ## v1.5.5 * Numerous bug fixes in KAU * Set background back to white on non facebook pages |