Reduce the default number of backups for all backup levels

This commit is contained in:
Tony George 2013-10-13 19:06:30 +05:30
parent 8121cfa056
commit 2d3ce218cc
2 changed files with 5 additions and 13 deletions

View File

@ -69,11 +69,11 @@ public class Main : GLib.Object{
public bool schedule_daily = true; public bool schedule_daily = true;
public bool schedule_hourly = false; public bool schedule_hourly = false;
public bool schedule_boot = true; public bool schedule_boot = true;
public int count_monthly = 3; public int count_monthly = 2;
public int count_weekly = 4; public int count_weekly = 3;
public int count_daily = 10; public int count_daily = 5;
public int count_hourly = 6; public int count_hourly = 6;
public int count_boot = 10; public int count_boot = 5;
public string app_mode = ""; public string app_mode = "";
public bool is_ondemand = false; public bool is_ondemand = false;

View File

@ -417,15 +417,7 @@ namespace Utility
return (free_mb == 0) ? "" : "%.1f GB".printf(free_mb/1024.0); return (free_mb == 0) ? "" : "%.1f GB".printf(free_mb/1024.0);
} }
} }
public string disk_name{
owned get{
return "";
}
}
public string partition_name{ public string partition_name{
owned get{ owned get{
return device[5:device.length]; return device[5:device.length];