From b5a3c72ac8cfa5b5c5f2af4321f851b5bb293d35 Mon Sep 17 00:00:00 2001 From: daniel oeh Date: Thu, 13 Mar 2014 23:36:59 +0100 Subject: [PATCH 1/2] Added section about nightly builds --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index dbb0e562d..b4a74b4f4 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,13 @@ You can use the [AntennaPod Google Group](https://groups.google.com/forum/#!foru Bug reports and feature requests can be submitted [here](https://github.com/danieloeh/AntennaPod/issues/new) (please read the [instructions](https://github.com/danieloeh/AntennaPod/blob/master/CONTRIBUTING.md) on how to report a bug and how to submit a feature request first!). + +## Nightly Builds + +There are APKs available for every branch that is actively worked on. Please note that these might be very unstable versions of the app, which can break your current installation. Install them at your own risk! + +Click [here](https://www.dropbox.com/sh/45vgg13bmh8jmhp/uZ_3KJIi5K) to get to the nightly builds folder. + ## License AntennaPod is licensed under the MIT License. You can find the license text in the LICENSE file. From bea0876a9996bfc0c0459b97c1137a567fc063a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Sch=C3=BCtz?= Date: Wed, 7 May 2014 09:09:15 +0200 Subject: [PATCH 2/2] NUM_LENGTH should be 1024 for accurate download progess display unless NUM_LENGTH is 1024, the displayed size is 0KB or 0MB etc. for growing ranges below the respective boundary i.e. 1000-1023, 1024000-1048575 --- src/de/danoeh/antennapod/util/Converter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/de/danoeh/antennapod/util/Converter.java b/src/de/danoeh/antennapod/util/Converter.java index 6ef47af31..46a0d30b4 100644 --- a/src/de/danoeh/antennapod/util/Converter.java +++ b/src/de/danoeh/antennapod/util/Converter.java @@ -21,7 +21,7 @@ public final class Converter { /** Indicates that the value is in the Gigabyte range.*/ private static final int GB_RANGE = 3; /** Determines the length of the number for best readability.*/ - private static final int NUM_LENGTH = 1000; + private static final int NUM_LENGTH = 1024; private static final int HOURS_MIL = 3600000;