@@ -32,9 +32,10 @@ Go straight to the first standalone package if you already know what you want: |
| 32 | 32 | - [fgof-state](https://github.com/FortranGoingOnForty/fgof-state) |
| 33 | 33 | - [fgof-clipboard](https://github.com/FortranGoingOnForty/fgof-clipboard) |
| 34 | 34 | - [fgof-screen](https://github.com/FortranGoingOnForty/fgof-screen) |
| 35 | +- [fgof-jobs](https://github.com/FortranGoingOnForty/fgof-jobs) |
| 35 | 36 | |
| 36 | | -The current active library target is `fgof-screen`, with `fgof-archive` |
| 37 | | -and `fgof-jobs` close behind in the backlog. |
| 37 | +The current active library target is `fgof-jobs`, with `fgof-archive` |
| 38 | +and `fgof-sqlite` close behind in the backlog. |
| 38 | 39 | |
| 39 | 40 | If you want local comparison checkouts for already-served or deferred areas, |
| 40 | 41 | use `./scripts/sync-refs.sh` to populate `.refs/` from the curated reference |
@@ -75,6 +76,7 @@ lib-modules/ |
| 75 | 76 | fgof-state/ # git submodule |
| 76 | 77 | fgof-clipboard/ # git submodule |
| 77 | 78 | fgof-screen/ # git submodule |
| 79 | + fgof-jobs/ # git submodule |
| 78 | 80 | ... |
| 79 | 81 | scripts/ |
| 80 | 82 | add-package-submodule.sh |
@@ -98,7 +100,8 @@ lib-modules/ |
| 98 | 100 | | [`fgof-cache`](https://github.com/FortranGoingOnForty/fgof-cache) | released `v0.1.0` | standalone repo + submodule | disk cache helpers, mounted at `packages/fgof-cache` | |
| 99 | 101 | | [`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` | |
| 100 | 102 | | [`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` | |
| 103 | +| [`fgof-screen`](https://github.com/FortranGoingOnForty/fgof-screen) | released `v0.1.0` | standalone repo + submodule | virtual screen buffer helpers, mounted at `packages/fgof-screen` | |
| 104 | +| [`fgof-jobs`](https://github.com/FortranGoingOnForty/fgof-jobs) | scaffolded | standalone repo + submodule | background job and wait-model helpers, mounted at `packages/fgof-jobs` | |
| 102 | 105 | |
| 103 | 106 | As packages are created: |
| 104 | 107 | |
@@ -140,5 +143,6 @@ Go directly to an individual package repo when you only want one library. |
| 140 | 143 | - [`fgof-state`](https://github.com/FortranGoingOnForty/fgof-state): persistent app and workspace state helpers |
| 141 | 144 | - [`fgof-clipboard`](https://github.com/FortranGoingOnForty/fgof-clipboard): clipboard text helpers for command-line and interactive tools |
| 142 | 145 | - [`fgof-screen`](https://github.com/FortranGoingOnForty/fgof-screen): virtual screen buffer helpers for future TUIs and prompt layers |
| 146 | +- [`fgof-jobs`](https://github.com/FortranGoingOnForty/fgof-jobs): background job and wait-model helpers for shells, supervisors, and tool hosts |
| 143 | 147 | |
| 144 | 148 | See [LANDSCAPE.md](LANDSCAPE.md) for the broader ecosystem assessment and package backlog. |