Updated changelog and version code

This commit is contained in:
Karim Abou Zeid 2015-12-27 21:03:09 +01:00
commit 69769346cb
3 changed files with 17 additions and 5 deletions

View file

@ -66,9 +66,9 @@ public class ChangelogDialog extends LeakDetectDialogFragment {
final WebView webView = (WebView) customView.findViewById(R.id.web_view);
try {
// Load from changelog.html in the assets folder
// Load from phonograph-changelog.html in the assets folder
StringBuilder buf = new StringBuilder();
InputStream json = getActivity().getAssets().open("changelog.html");
InputStream json = getActivity().getAssets().open("phonograph-changelog.html");
BufferedReader in = new BufferedReader(new InputStreamReader(json, "UTF-8"));
String str;
while ((str = in.readLine()) != null)