@@ -30,9 +30,10 @@ Go straight to the first standalone package if you already know what you want: |
| 30 | 30 | - [fgof-temp](https://github.com/FortranGoingOnForty/fgof-temp) |
| 31 | 31 | - [fgof-cache](https://github.com/FortranGoingOnForty/fgof-cache) |
| 32 | 32 | - [fgof-state](https://github.com/FortranGoingOnForty/fgof-state) |
| 33 | +- [fgof-clipboard](https://github.com/FortranGoingOnForty/fgof-clipboard) |
| 33 | 34 | |
| 34 | | -The current active library target is `fgof-state`, with `fgof-clipboard`, |
| 35 | | -`fgof-screen`, and `fgof-archive` close behind in the backlog. |
| 35 | +The current active library target is `fgof-clipboard`, with `fgof-screen`, |
| 36 | +`fgof-archive`, and `fgof-jobs` close behind in the backlog. |
| 36 | 37 | |
| 37 | 38 | If you want local comparison checkouts for already-served or deferred areas, |
| 38 | 39 | use `./scripts/sync-refs.sh` to populate `.refs/` from the curated reference |
@@ -71,6 +72,7 @@ lib-modules/ |
| 71 | 72 | fgof-temp/ # git submodule |
| 72 | 73 | fgof-cache/ # git submodule |
| 73 | 74 | fgof-state/ # git submodule |
| 75 | + fgof-clipboard/ # git submodule |
| 74 | 76 | ... |
| 75 | 77 | scripts/ |
| 76 | 78 | add-package-submodule.sh |
@@ -92,7 +94,8 @@ lib-modules/ |
| 92 | 94 | | [`fgof-proc-test`](https://github.com/FortranGoingOnForty/fgof-proc-test) | released `v0.1.0` | standalone repo + submodule | process-test fixtures, mounted at `packages/fgof-proc-test` | |
| 93 | 95 | | [`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` | |
| 94 | 96 | | [`fgof-cache`](https://github.com/FortranGoingOnForty/fgof-cache) | released `v0.1.0` | standalone repo + submodule | disk cache helpers, mounted at `packages/fgof-cache` | |
| 95 | | -| [`fgof-state`](https://github.com/FortranGoingOnForty/fgof-state) | scaffolded | standalone repo + submodule | persistent app and workspace state helpers, mounted at `packages/fgof-state` | |
| 97 | +| [`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` | |
| 96 | 99 | |
| 97 | 100 | As packages are created: |
| 98 | 101 | |
@@ -132,5 +135,6 @@ Go directly to an individual package repo when you only want one library. |
| 132 | 135 | - [`fgof-temp`](https://github.com/FortranGoingOnForty/fgof-temp): temp files, temp directories, and atomic write helpers |
| 133 | 136 | - [`fgof-cache`](https://github.com/FortranGoingOnForty/fgof-cache): disk cache helpers for command-line tools and local developer workflows |
| 134 | 137 | - [`fgof-state`](https://github.com/FortranGoingOnForty/fgof-state): persistent app and workspace state helpers |
| 138 | +- [`fgof-clipboard`](https://github.com/FortranGoingOnForty/fgof-clipboard): clipboard text helpers for command-line and interactive tools |
| 135 | 139 | |
| 136 | 140 | See [LANDSCAPE.md](LANDSCAPE.md) for the broader ecosystem assessment and package backlog. |