@@ -31,9 +31,10 @@ Go straight to the first standalone package if you already know what you want: |
| 31 | 31 | - [fgof-cache](https://github.com/FortranGoingOnForty/fgof-cache) |
| 32 | 32 | - [fgof-state](https://github.com/FortranGoingOnForty/fgof-state) |
| 33 | 33 | - [fgof-clipboard](https://github.com/FortranGoingOnForty/fgof-clipboard) |
| 34 | +- [fgof-screen](https://github.com/FortranGoingOnForty/fgof-screen) |
| 34 | 35 | |
| 35 | | -The current active library target is `fgof-clipboard`, with `fgof-screen`, |
| 36 | | -`fgof-archive`, and `fgof-jobs` close behind in the backlog. |
| 36 | +The current active library target is `fgof-screen`, with `fgof-archive` |
| 37 | +and `fgof-jobs` close behind in the backlog. |
| 37 | 38 | |
| 38 | 39 | If you want local comparison checkouts for already-served or deferred areas, |
| 39 | 40 | use `./scripts/sync-refs.sh` to populate `.refs/` from the curated reference |
@@ -73,6 +74,7 @@ lib-modules/ |
| 73 | 74 | fgof-cache/ # git submodule |
| 74 | 75 | fgof-state/ # git submodule |
| 75 | 76 | fgof-clipboard/ # git submodule |
| 77 | + fgof-screen/ # git submodule |
| 76 | 78 | ... |
| 77 | 79 | scripts/ |
| 78 | 80 | add-package-submodule.sh |
@@ -95,7 +97,8 @@ lib-modules/ |
| 95 | 97 | | [`fgof-temp`](https://github.com/FortranGoingOnForty/fgof-temp) | released `v0.1.0` | standalone repo + submodule | temp files, temp dirs, and atomic write helpers, mounted at `packages/fgof-temp` | |
| 96 | 98 | | [`fgof-cache`](https://github.com/FortranGoingOnForty/fgof-cache) | released `v0.1.0` | standalone repo + submodule | disk cache helpers, mounted at `packages/fgof-cache` | |
| 97 | 99 | | [`fgof-state`](https://github.com/FortranGoingOnForty/fgof-state) | released `v0.1.0` | standalone repo + submodule | persistent app and workspace state helpers, mounted at `packages/fgof-state` | |
| 98 | | -| [`fgof-clipboard`](https://github.com/FortranGoingOnForty/fgof-clipboard) | scaffolded | standalone repo + submodule | clipboard text helpers, mounted at `packages/fgof-clipboard` | |
| 100 | +| [`fgof-clipboard`](https://github.com/FortranGoingOnForty/fgof-clipboard) | released `v0.1.0` | standalone repo + submodule | clipboard text helpers, mounted at `packages/fgof-clipboard` | |
| 101 | +| [`fgof-screen`](https://github.com/FortranGoingOnForty/fgof-screen) | scaffolded | standalone repo + submodule | virtual screen buffer helpers, mounted at `packages/fgof-screen` | |
| 99 | 102 | |
| 100 | 103 | As packages are created: |
| 101 | 104 | |
@@ -136,5 +139,6 @@ Go directly to an individual package repo when you only want one library. |
| 136 | 139 | - [`fgof-cache`](https://github.com/FortranGoingOnForty/fgof-cache): disk cache helpers for command-line tools and local developer workflows |
| 137 | 140 | - [`fgof-state`](https://github.com/FortranGoingOnForty/fgof-state): persistent app and workspace state helpers |
| 138 | 141 | - [`fgof-clipboard`](https://github.com/FortranGoingOnForty/fgof-clipboard): clipboard text helpers for command-line and interactive tools |
| 142 | +- [`fgof-screen`](https://github.com/FortranGoingOnForty/fgof-screen): virtual screen buffer helpers for future TUIs and prompt layers |
| 139 | 143 | |
| 140 | 144 | See [LANDSCAPE.md](LANDSCAPE.md) for the broader ecosystem assessment and package backlog. |