You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.4 KiB

  1. --- a/lib/repo.vala
  2. +++ b/lib/repo.vala
  3. @@ -34,7 +34,7 @@ public class Repo : Object {
  4. // data format version
  5. public int version { get; set; }
  6. - public int last_modify { get; set; }
  7. + public int64 last_modify { get; set; }
  8. public int64 size { get; set; }
  9. public int64 file_count { get; set; }
  10. public string last_modifier { get; set; }
  11. @@ -45,7 +45,7 @@ public class Repo : Object {
  12. public string repo_id { get; set; }
  13. public string repo_name { get; set; }
  14. public string repo_desc { get; set; }
  15. - public int last_modified { get; set; }
  16. + public int64 last_modified { get; set; }
  17. // Section 2: Encryption related
  18. // Members in this section should be set for every Repo object
  19. @@ -68,7 +68,7 @@ public class Repo : Object {
  20. get { return _relay_id; }
  21. set { _relay_id = value; }
  22. }
  23. - public int last_sync_time { get; set; }
  24. + public int64 last_sync_time { get; set; }
  25. public bool auto_sync { get; set; }
  26. public bool worktree_invalid { get; set; }
  27. @@ -162,7 +162,7 @@ public class DeletedEntry : Object {
  28. public string obj_name { get; set; }
  29. public string basedir { get; set; }
  30. public int mode { get; set; }
  31. - public int delete_time { get; set; }
  32. + public int64 delete_time { get; set; }
  33. public int64 file_size { get; set; }
  34. public string scan_stat { get; set; }
  35. }