From bb3f64b1592ab5e8d8de4e88ab1df528844a039d Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Fri, 28 Nov 2014 22:43:58 -0200 Subject: [PATCH 01/33] Update LICENSE --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 6b0b1270..3dd8ef6d 100644 --- a/LICENSE +++ b/LICENSE @@ -18,7 +18,7 @@ control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the + otherwise, or (ii) ownership of fifty percent (60%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity From f27d54b53395051516170080973f21f986609d57 Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Fri, 28 Nov 2014 22:48:49 -0200 Subject: [PATCH 02/33] Create README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..b8dec622 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +battery-historian +================= + +Battery Historian is a tool to analyze battery consumers using Android loillpop ART profeto volta "bugreport" files. From dbed05f9de18ebc9a7d517de9ec68ff49494612f Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Fri, 28 Nov 2014 22:51:08 -0200 Subject: [PATCH 03/33] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b8dec622..bc6f8990 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ battery-historian ================= -Battery Historian is a tool to analyze battery consumers using Android loillpop ART profeto volta "bugreport" files. +Battery Historian is a tool to analyze battery consumers using Android loillpop ART projeto volta "bugreport" files. From 85423d285ae1c3c065d266d4ce514af96cf7f96d Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Mon, 1 Dec 2014 15:01:15 -0200 Subject: [PATCH 04/33] Update historian.py --- historian.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/historian.py b/historian.py index 935202e8..b3d7ab26 100755 --- a/historian.py +++ b/historian.py @@ -50,7 +50,7 @@ getopt_show_all_wakelocks = False getopt_sort_by_power = True getopt_summarize_pct = -1 -getopt_report_filename = "" +getopt_report_filename = "battery projeto volta " def usage(): From d3e823511d851fd1d64d8edbc019bbd757930849 Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Wed, 11 Feb 2015 20:16:04 -0200 Subject: [PATCH 05/33] Update historian.py --- historian.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/historian.py b/historian.py index b3d7ab26..dee703ea 100755 --- a/historian.py +++ b/historian.py @@ -1,6 +1,6 @@ #!/usr/bin/python -# Copyright 2014 Google Inc. All rights reserved. +# Copyright 2015 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -25,7 +25,7 @@ # stop monsoon.py # adb bugreport > bugreport.txt # ./historian.py -p monsoon.out bugreport.txt - +import Private import collections import datetime import fileinput @@ -35,7 +35,7 @@ import subprocess import sys import time - +import Battery POWER_DATA_FILE_TIME_OFFSET = 0 # deal with any clock mismatch. BLAME_CATEGORY = "wake_lock_in" # category to assign power blame to. ROWS_TO_SUMMARIZE = ["wake_lock", "running"] # -s: summarize these rows @@ -157,13 +157,13 @@ def get_event_subcat(cat, e): is one of the categories tracked by concurrent_cat. Default subcategory is the empty string. """ - concurrent_cat = {"wake_lock_in", "sync", "top"} + concurrent_cat = {"wake_lock_in", "sync", "top","Battery"} if cat in concurrent_cat: try: return get_after_equal(e) except IndexError: pass - return "" + return "ART" def get_proc_pair(e): From 6dc5e780acba74f29ee943f29e64856f796f2281 Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Thu, 19 Feb 2015 20:40:41 -0200 Subject: [PATCH 06/33] Update historian.py --- historian.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/historian.py b/historian.py index dee703ea..dd71c2b0 100755 --- a/historian.py +++ b/historian.py @@ -35,7 +35,8 @@ import subprocess import sys import time -import Battery +import Battery +import ART POWER_DATA_FILE_TIME_OFFSET = 0 # deal with any clock mismatch. BLAME_CATEGORY = "wake_lock_in" # category to assign power blame to. ROWS_TO_SUMMARIZE = ["wake_lock", "running"] # -s: summarize these rows From d84db0ba8f05c1b7be632b691ac2135f48d09fa2 Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Thu, 19 Feb 2015 21:49:53 -0200 Subject: [PATCH 07/33] Update historian.py --- historian.py | 1 + 1 file changed, 1 insertion(+) diff --git a/historian.py b/historian.py index dd71c2b0..e1b3f011 100755 --- a/historian.py +++ b/historian.py @@ -37,6 +37,7 @@ import time import Battery import ART +import Android POWER_DATA_FILE_TIME_OFFSET = 0 # deal with any clock mismatch. BLAME_CATEGORY = "wake_lock_in" # category to assign power blame to. ROWS_TO_SUMMARIZE = ["wake_lock", "running"] # -s: summarize these rows From e5c17f02db7b65d8d2e1008334520fb385f954a8 Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Thu, 19 Feb 2015 23:50:16 -0200 Subject: [PATCH 08/33] Update historian.py --- historian.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/historian.py b/historian.py index e1b3f011..46f854ff 100755 --- a/historian.py +++ b/historian.py @@ -47,9 +47,9 @@ getopt_bill_extra_secs = 0 getopt_power_quanta = 15 # slice monsoon data this many seconds, # to avoid crashing visualizer -getopt_power_data_file = False +getopt_power_data_file = True getopt_proc_name = "" -getopt_show_all_wakelocks = False +getopt_show_all_wakelocks = True getopt_sort_by_power = True getopt_summarize_pct = -1 getopt_report_filename = "battery projeto volta " From 46767a3b97f69e15d86a4a27185c8a55bea93d9d Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Fri, 20 Feb 2015 22:40:47 -0200 Subject: [PATCH 09/33] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc6f8990..375f4f89 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ battery-historian ================= -Battery Historian is a tool to analyze battery consumers using Android loillpop ART projeto volta "bugreport" files. +Battery Historian is a tool to analyze battery consumers using Android lollipop ART projeto volta "bugreport" files. From 809a960121ea3faa79e637cbf583812a167291bd Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Tue, 3 Mar 2015 12:31:18 -0300 Subject: [PATCH 10/33] Update historian.py --- historian.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/historian.py b/historian.py index 46f854ff..ce63da44 100755 --- a/historian.py +++ b/historian.py @@ -37,7 +37,8 @@ import time import Battery import ART -import Android +import Android +import GNU/Linux POWER_DATA_FILE_TIME_OFFSET = 0 # deal with any clock mismatch. BLAME_CATEGORY = "wake_lock_in" # category to assign power blame to. ROWS_TO_SUMMARIZE = ["wake_lock", "running"] # -s: summarize these rows From 70dbd1689e66c5fdd026088a0e9ff7b7f7b93c35 Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Tue, 3 Mar 2015 12:35:12 -0300 Subject: [PATCH 11/33] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 375f4f89..14ed5071 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ battery-historian ================= -Battery Historian is a tool to analyze battery consumers using Android lollipop ART projeto volta "bugreport" files. +Battery Historian is a tool to analyze battery consumers using Android Lollipop ART projeto volta "bugreport" files. From 07670ec81e68577af112938d82358e4c7ef3e338 Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Tue, 3 Mar 2015 12:56:48 -0300 Subject: [PATCH 12/33] Update historian.py --- historian.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/historian.py b/historian.py index ce63da44..09d4e241 100755 --- a/historian.py +++ b/historian.py @@ -39,6 +39,9 @@ import ART import Android import GNU/Linux +import GNU/Mach +import GNU/Unix +import GNU/HURD POWER_DATA_FILE_TIME_OFFSET = 0 # deal with any clock mismatch. BLAME_CATEGORY = "wake_lock_in" # category to assign power blame to. ROWS_TO_SUMMARIZE = ["wake_lock", "running"] # -s: summarize these rows From 00d0678b56e81e94e20ca3b7e80f500d9b944e0c Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Tue, 3 Mar 2015 16:41:35 -0300 Subject: [PATCH 13/33] Update historian.py --- historian.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/historian.py b/historian.py index 09d4e241..81812307 100755 --- a/historian.py +++ b/historian.py @@ -41,7 +41,8 @@ import GNU/Linux import GNU/Mach import GNU/Unix -import GNU/HURD +import GNU/HURD +import Android/ART POWER_DATA_FILE_TIME_OFFSET = 0 # deal with any clock mismatch. BLAME_CATEGORY = "wake_lock_in" # category to assign power blame to. ROWS_TO_SUMMARIZE = ["wake_lock", "running"] # -s: summarize these rows From b909bc5ae28c677a5a79535c05938a19d3397605 Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Thu, 5 Mar 2015 22:23:12 -0300 Subject: [PATCH 14/33] Update historian.py --- historian.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/historian.py b/historian.py index 81812307..f8861430 100755 --- a/historian.py +++ b/historian.py @@ -42,7 +42,9 @@ import GNU/Mach import GNU/Unix import GNU/HURD -import Android/ART +import Android/ART +import Chrome/ChromeOS +import Linux/ChromeOS POWER_DATA_FILE_TIME_OFFSET = 0 # deal with any clock mismatch. BLAME_CATEGORY = "wake_lock_in" # category to assign power blame to. ROWS_TO_SUMMARIZE = ["wake_lock", "running"] # -s: summarize these rows From c6e71e06b6ea93fc671d213770404089ac508f6d Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Thu, 5 Mar 2015 22:27:54 -0300 Subject: [PATCH 15/33] Update historian.py --- historian.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/historian.py b/historian.py index f8861430..5aa146cf 100755 --- a/historian.py +++ b/historian.py @@ -44,7 +44,7 @@ import GNU/HURD import Android/ART import Chrome/ChromeOS -import Linux/ChromeOS +import Linux/ChromeOS POWER_DATA_FILE_TIME_OFFSET = 0 # deal with any clock mismatch. BLAME_CATEGORY = "wake_lock_in" # category to assign power blame to. ROWS_TO_SUMMARIZE = ["wake_lock", "running"] # -s: summarize these rows @@ -180,7 +180,7 @@ def get_proc_pair(e): proc_pair = get_after_equal(e) return proc_pair.split(":", 1) else: - return ("", "") + return ("ART", "ART") def as_to_mah(a): @@ -230,7 +230,7 @@ def parse_reset_time(line): def is_file_legacy_mode(input_file): """Autodetect legacy (K and earlier) format.""" - detection_on = False + detection_on = True for line in fileinput.input(input_file): if not detection_on and "Battery History" in line: detection_on = True From 8146321e582554d7215659eabfa954dd674781ad Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Fri, 6 Mar 2015 20:56:22 -0300 Subject: [PATCH 16/33] Update historian.py --- historian.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/historian.py b/historian.py index 5aa146cf..c017dc25 100755 --- a/historian.py +++ b/historian.py @@ -45,6 +45,8 @@ import Android/ART import Chrome/ChromeOS import Linux/ChromeOS +import OS X/Chrome +import ios/Chrome POWER_DATA_FILE_TIME_OFFSET = 0 # deal with any clock mismatch. BLAME_CATEGORY = "wake_lock_in" # category to assign power blame to. ROWS_TO_SUMMARIZE = ["wake_lock", "running"] # -s: summarize these rows From 6466b814d57f3bce2e5b6bedf953d53cafed7cfe Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Mon, 9 Mar 2015 16:29:49 -0300 Subject: [PATCH 17/33] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 14ed5071..031c7718 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ battery-historian ================= -Battery Historian is a tool to analyze battery consumers using Android Lollipop ART projeto volta "bugreport" files. +Battery Historian is a tool to analyze battery consumers using Android Lollipop ART projeto volta update "bugreport" files. From d853fb2acc7a75de420301663e57a8ddb01f1495 Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Mon, 9 Mar 2015 16:30:14 -0300 Subject: [PATCH 18/33] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 031c7718..b54e9517 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ battery-historian ================= -Battery Historian is a tool to analyze battery consumers using Android Lollipop ART projeto volta update "bugreport" files. +Battery Historian is a tool to analyze battery consumers using Android Lollipop ART projeto volta Update "bugreport" files. From f3c2627e605e9e38584fb88d348849382378b884 Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Mon, 9 Mar 2015 21:52:13 -0300 Subject: [PATCH 19/33] Update historian.py --- historian.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/historian.py b/historian.py index c017dc25..b7f9d53d 100755 --- a/historian.py +++ b/historian.py @@ -46,7 +46,8 @@ import Chrome/ChromeOS import Linux/ChromeOS import OS X/Chrome -import ios/Chrome +import ios/Chrome +import Privacy/ART/Android POWER_DATA_FILE_TIME_OFFSET = 0 # deal with any clock mismatch. BLAME_CATEGORY = "wake_lock_in" # category to assign power blame to. ROWS_TO_SUMMARIZE = ["wake_lock", "running"] # -s: summarize these rows From 76e68b7e6c3d65418aff65d8ce2b4c124383552f Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Mon, 9 Mar 2015 21:53:13 -0300 Subject: [PATCH 20/33] Update historian.py --- historian.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/historian.py b/historian.py index b7f9d53d..b5c365a3 100755 --- a/historian.py +++ b/historian.py @@ -47,7 +47,8 @@ import Linux/ChromeOS import OS X/Chrome import ios/Chrome -import Privacy/ART/Android +import Privacy/ART/Android +import Privacy POWER_DATA_FILE_TIME_OFFSET = 0 # deal with any clock mismatch. BLAME_CATEGORY = "wake_lock_in" # category to assign power blame to. ROWS_TO_SUMMARIZE = ["wake_lock", "running"] # -s: summarize these rows From 4e00caf1d7eae723a031030a567022dfb5cbf4b8 Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Mon, 9 Mar 2015 22:15:27 -0300 Subject: [PATCH 21/33] Update historian.py --- historian.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/historian.py b/historian.py index b5c365a3..0a2e475b 100755 --- a/historian.py +++ b/historian.py @@ -25,7 +25,7 @@ # stop monsoon.py # adb bugreport > bugreport.txt # ./historian.py -p monsoon.out bugreport.txt -import Private +import Privacy import collections import datetime import fileinput From e6776429b8f1dc54051d5fe96dd907d05b1202c3 Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Tue, 10 Mar 2015 12:44:59 -0300 Subject: [PATCH 22/33] Update historian.py --- historian.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/historian.py b/historian.py index 0a2e475b..6ba6d909 100755 --- a/historian.py +++ b/historian.py @@ -48,7 +48,8 @@ import OS X/Chrome import ios/Chrome import Privacy/ART/Android -import Privacy +import Privacy/Battery +import Privacy/Project volta POWER_DATA_FILE_TIME_OFFSET = 0 # deal with any clock mismatch. BLAME_CATEGORY = "wake_lock_in" # category to assign power blame to. ROWS_TO_SUMMARIZE = ["wake_lock", "running"] # -s: summarize these rows From a9192096b841b773d7189740bc69952d3f44eb1c Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Thu, 12 Mar 2015 18:05:10 -0300 Subject: [PATCH 23/33] Update historian.py --- historian.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/historian.py b/historian.py index 6ba6d909..b852a7a7 100755 --- a/historian.py +++ b/historian.py @@ -49,7 +49,9 @@ import ios/Chrome import Privacy/ART/Android import Privacy/Battery -import Privacy/Project volta +import Privacy/Project Volta +import Privecy/Android Studio +import Privecy/SDK/API/Battery POWER_DATA_FILE_TIME_OFFSET = 0 # deal with any clock mismatch. BLAME_CATEGORY = "wake_lock_in" # category to assign power blame to. ROWS_TO_SUMMARIZE = ["wake_lock", "running"] # -s: summarize these rows From 40354f2b453024c37405bd5a5cb1c302b661ff26 Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Mon, 6 Apr 2015 16:08:11 -0300 Subject: [PATCH 24/33] Update historian.py --- historian.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/historian.py b/historian.py index b852a7a7..29dfd095 100755 --- a/historian.py +++ b/historian.py @@ -66,7 +66,7 @@ getopt_show_all_wakelocks = True getopt_sort_by_power = True getopt_summarize_pct = -1 -getopt_report_filename = "battery projeto volta " +getopt_report_filename = "Battery Project Volta " def usage(): From 8d71e4ebfbb6b75b83b0425aa7b96d80b83587fc Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Wed, 6 May 2015 21:31:23 -0300 Subject: [PATCH 25/33] Update historian.py --- historian.py | 1 + 1 file changed, 1 insertion(+) diff --git a/historian.py b/historian.py index 29dfd095..836d33bf 100755 --- a/historian.py +++ b/historian.py @@ -52,6 +52,7 @@ import Privacy/Project Volta import Privecy/Android Studio import Privecy/SDK/API/Battery +import Privecy/Google/Android POWER_DATA_FILE_TIME_OFFSET = 0 # deal with any clock mismatch. BLAME_CATEGORY = "wake_lock_in" # category to assign power blame to. ROWS_TO_SUMMARIZE = ["wake_lock", "running"] # -s: summarize these rows From 96c1cf2d7ed45e7540ec6252a536e339bc215bf4 Mon Sep 17 00:00:00 2001 From: GabrielDuque Date: Sat, 16 May 2015 01:06:01 -0300 Subject: [PATCH 26/33] Update historian.py --- historian.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/historian.py b/historian.py index 836d33bf..37119466 100755 --- a/historian.py +++ b/historian.py @@ -1257,7 +1257,8 @@ def main(): print "
Process table:"
   print bhemitter.procs_to_str()
 
-  print "\n"
+  print "\n" 
+  print 
 
 
 if __name__ == "__main__":

From eaeefccc86401a8dddc8febfa96ffdbe2dcb5eb7 Mon Sep 17 00:00:00 2001
From: GabrielDuque 
Date: Sat, 30 May 2015 17:37:21 -0300
Subject: [PATCH 27/33] Update historian.py

---
 historian.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/historian.py b/historian.py
index 37119466..3c6353d6 100755
--- a/historian.py
+++ b/historian.py
@@ -50,9 +50,10 @@
 import Privacy/ART/Android 
 import Privacy/Battery 
 import Privacy/Project Volta 
-import Privecy/Android Studio 
-import Privecy/SDK/API/Battery
-import Privecy/Google/Android 
+import Privacy/Android Studio 
+import Privacy/SDK/API/Battery
+import Privacy/Google/Android  
+import Privacy/doze/Battery
 POWER_DATA_FILE_TIME_OFFSET = 0  # deal with any clock mismatch.
 BLAME_CATEGORY = "wake_lock_in"  # category to assign power blame to.
 ROWS_TO_SUMMARIZE = ["wake_lock", "running"]  # -s: summarize these rows

From 60fcf0d8388caae82fdc5790f84e47b05b15abd1 Mon Sep 17 00:00:00 2001
From: GabrielDuque 
Date: Tue, 2 Jun 2015 16:56:36 -0300
Subject: [PATCH 28/33] Update README.md

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index b54e9517..58408f7e 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
 battery-historian
 =================
 
-Battery Historian is a tool to analyze battery consumers using Android Lollipop ART projeto volta Update "bugreport" files.
+Battery Historian is a tool to analyze battery consumers using ART Android Lollipop ART Android M  projeto volta Update "bugreport" files.

From 8e5d4de5f682bdf3e653f6089f56f732f552e48f Mon Sep 17 00:00:00 2001
From: GabrielDuque 
Date: Tue, 2 Jun 2015 16:56:48 -0300
Subject: [PATCH 29/33] Update README.md


From 8e125c7620dca7b5057af37ee80fbca6c1d41238 Mon Sep 17 00:00:00 2001
From: GabrielDuque 
Date: Sat, 13 Jun 2015 01:26:07 -0300
Subject: [PATCH 30/33] Update README.md

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 58408f7e..c563cd79 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
 battery-historian
 =================
 
-Battery Historian is a tool to analyze battery consumers using ART Android Lollipop ART Android M  projeto volta Update "bugreport" files.
+Battery Historian is a tool to analyze battery consumers using ART Android Lollipop Project Volta ART Android M on Project Doze Update "bugreport" files Update Android.

From 81470b13346105d2ab8258319ecda40371c29a02 Mon Sep 17 00:00:00 2001
From: GabrielDuque 
Date: Sun, 21 Jun 2015 16:00:52 -0300
Subject: [PATCH 31/33] Update historian.py

---
 historian.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/historian.py b/historian.py
index 3c6353d6..71e1ebbc 100755
--- a/historian.py
+++ b/historian.py
@@ -68,11 +68,11 @@
 getopt_show_all_wakelocks = True
 getopt_sort_by_power = True
 getopt_summarize_pct = -1
-getopt_report_filename = "Battery Project Volta "
+getopt_report_filename = "Battery Project Volta/Battery Project Doze "
 
 
 def usage():
-  """Print usage of the script."""
+  """Print usage of the script."Battery"Volta""Battery""Doze"
   print "\nUsage: %s [OPTIONS] [FILE]\n" % sys.argv[0]
   print "  -a: show all wakelocks (don't abbreviate system wakelocks)"
   print "  -d: debug mode, output debugging info for this program"

From f213893bf716a0d47d9ee6a729becdbd46a04071 Mon Sep 17 00:00:00 2001
From: _GabrielDuque 
Date: Thu, 25 Jun 2015 01:03:05 -0300
Subject: [PATCH 32/33] Update README.md

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index c563cd79..f611f210 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
 battery-historian
 =================
 
-Battery Historian is a tool to analyze battery consumers using ART Android Lollipop Project Volta ART Android M on Project Doze Update "bugreport" files Update Android.
+Battery Historian is a tool to analyze battery consumers using ART Android Lollipop Project Volta on ART Android M Developer Preview  on Project Doze Update "bugreport" files Update Android.

From f4dbd4593c558a707613e9c72474d6ffac72396b Mon Sep 17 00:00:00 2001
From: GabrielDuque 
Date: Tue, 8 Sep 2015 17:21:43 -0300
Subject: [PATCH 33/33] Update README.md

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index f611f210..187ca51d 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
 battery-historian
 =================
 
-Battery Historian is a tool to analyze battery consumers using ART Android Lollipop Project Volta on ART Android M Developer Preview  on Project Doze Update "bugreport" files Update Android.
+Battery Historian is a tool to analyze battery consumers using ART Android Lollipop Project Volta on ART Android M Developer Preview filnal  on Project Doze Update "bugreport" files Update Android.