aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-10-07 01:06:08 -0400
committerGitHub <noreply@github.com>2017-10-07 01:06:08 -0400
commitb05b8cce6d61762608a9f2bbfb3fc6da5233028a (patch)
treebe2a91f22bf7937bf0dff9c56f107e4343bba990
parent60cc50d8f6785d33adf4dafd456c836c96a9e3de (diff)
downloadfrost-b05b8cce6d61762608a9f2bbfb3fc6da5233028a.tar.gz
frost-b05b8cce6d61762608a9f2bbfb3fc6da5233028a.tar.bz2
frost-b05b8cce6d61762608a9f2bbfb3fc6da5233028a.zip
Misc (#370)
* Clean up logging * Add zenhub badge * Update readme
-rw-r--r--README.md7
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/parsers/MessageParser.kt1
-rw-r--r--docs/Changelog.md5
3 files changed, 11 insertions, 2 deletions
diff --git a/README.md b/README.md
index 17e27b64..26695fc3 100644
--- a/README.md
+++ b/README.md
@@ -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