mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-15 07:56:11 +08:00
GitCommit: Let us specify the date time
The Timezone handling is java seems to be quite strange, so I'm going to skip it for now and fix it later. We do seem to have proper timezone classes in future versions of Java, but that requires me to increase the minSDKVersion, and therefore not support very old android devices.
This commit is contained in:
@ -40,7 +40,7 @@ buildGitButtons() {
|
||||
RaisedButton(
|
||||
child: Text("Git Add"),
|
||||
onPressed: () async {
|
||||
await gitAdd("journal", "1");
|
||||
await gitAdd("journal", ".");
|
||||
},
|
||||
),
|
||||
RaisedButton(
|
||||
@ -57,6 +57,7 @@ buildGitButtons() {
|
||||
authorEmail: "noemail@example.com",
|
||||
authorName: "Vishesh Handa",
|
||||
message: "Default message from GitJournal",
|
||||
when: "2017-10-20T01:21:10+02:00",
|
||||
);
|
||||
}),
|
||||
];
|
||||
|
Reference in New Issue
Block a user