[[Games]]
[[Game Backlog Project]]
[[2026 Game Collections]]
## Playing
%% DATAVIEW_PUBLISHER: start
```dataview
table without id
file.link as Game,
"" AS "Cover",
genre as Genre,
system as System
where
contains(category,[[Games]]) and
contains(status, "Playing") and
!contains(file.name, "Template") and
last > date("2026-01-01") and last < date("2026-12-31")
sort last desc
```
%%
| Game | Cover | Genre | System |
| --------------------------------- | ------------------------------------------------------------------------------------- | -------------------------------------------------- | ----------------------------------- |
| [[Rogue Galaxy.md\|Rogue Galaxy]] |  | <ul><li>[[Action-RPGs.md\|Action-RPGs]]</li></ul> | [[PlayStation 2.md\|PlayStation 2]] |
%% DATAVIEW_PUBLISHER: end %%
## Up Next
%% DATAVIEW_PUBLISHER: start
```dataview
table without id
file.link as Game,
"" AS "Cover",
genre as Genre,
system as System,
backlognotes as Notes
where
contains(category,[[Games]]) and
contains(status, "Up Next") and
!contains(file.name, "Template") and
last > date("2026-01-01") and last < date("2025-12-31")
sort last desc
```
%%
| Game | Cover | Genre | System | Notes |
| ---- | ----- | ----- | ------ | ----- |
%% DATAVIEW_PUBLISHER: end %%
## Finished
%% DATAVIEW_PUBLISHER: start
```dataview
table without id
file.link as Game,
"" AS "Cover",
genre as Genre,
system as System,
rating as Rating
where
contains(category,[[Games]]) and
contains(status, "Finished") and
!contains(file.name, "Template") and
last > date("2026-01-01") and last < date("2025-12-31")
sort file.ctime DESC
```
%%
| Game | Cover | Genre | System | Rating |
| ---- | ----- | ----- | ------ | ------ |
%% DATAVIEW_PUBLISHER: end %%