Add `timestamp` and `revisionCount` to issue and patch listings
7 files changed
+21
-8
58f2ec2f
→
ccd4c280
modified src-tauri/bindings/Issue.ts
@@ -8,4 +8,5 @@ export type Issue = {
|
|
|
|
|
|
| + | |
|
modified src-tauri/bindings/Patch.ts
@@ -23,4 +23,6 @@ export type Patch = {
|
|
|
|
|
|
| + | |
| + | |
|
modified src-tauri/src/lib.rs
@@ -53,7 +53,7 @@ impl AppState {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified src-tauri/src/types/cobs.rs
@@ -1,4 +1,4 @@
| - | |
| + | |
|
|
|
|
|
@@ -27,6 +27,7 @@ impl Author {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -36,7 +37,9 @@ pub struct Issue {
|
|
|
|
|
|
| - | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -51,12 +54,14 @@ impl Issue {
|
|
|
|
|
|
| + | |
|
|
|
|
|
|
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -75,7 +80,10 @@ pub struct Patch {
|
|
|
|
|
|
| - | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -90,6 +98,8 @@ impl Patch {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
modified src/components/IssueTeaser.svelte
@@ -1,7 +1,7 @@
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -68,6 +68,7 @@
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified src/components/PatchTeaser.svelte
@@ -1,7 +1,7 @@
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -73,6 +73,7 @@
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified src/lib/utils.ts
@@ -51,8 +51,6 @@ export const formatTimestamp = (
|
|
|
|
|
|
| - | |
| - | |
|
|
|
|
|