-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodemeta.json
44 lines (44 loc) · 1.85 KB
/
codemeta.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
"type": "SoftwareSourceCode",
"codeRepository": "git+https://github.com/rsdoiel/skimmer",
"author": [
{
"id": "https://orcid.org/0000-0003-0900-6903",
"type": "Person",
"givenName": "R. S.",
"familyName": "Doiel",
"email": "[email protected]"
}
],
"dateCreated": "2023-10-06",
"datePublished": "2024-10-16",
"description": "Skimmer is a lightweight feed reader inspired by [newsboat](https://newsboat.org). skimmer is very minimal and deliberately lacks features. Skimmer's best feature is what it doesn't do. Skimmer tries to do two things well.\n\n1. Read a list of URLs, fetch the feeds and write the items to an SQLite 3 database\n2. Display the items in the SQLite 3 database in reverse chronological order\n\nThat's it. That is skimmer secret power. It does only two things. There is no elaborate user interface beyond standard input, standard output and standard error found on POSIX type operating systems. Even if you invoke it in \"interactive\" mode your choices are limited, press enter and go to next item, press \"n\" and mark the item read, press \"s\" and save the item, press \"q\" and quit interactive mode.",
"name": "skimmer",
"license": "https://spdx.org/licenses/AGPL-3.0-or-later",
"operatingSystem": [
"Windows",
"macOS",
"Linux",
"Raspberry Pi OS"
],
"programmingLanguage": [
"go"
],
"relatedLink": [
"https://github.com/mmcdole/gofeed",
"https://newsboat.org/",
"https://sqlite.org"
],
"softwareRequirements": [
"Git >= 2.3",
"GNU Make >= 3.8",
"Pandoc >= 3.1",
"SQLite3 >= 3.43",
"Go >= 1.23.5"
],
"version": "0.0.21",
"developmentStatus": "concept",
"issueTracker": "https://github.com/rsdoiel/skimmer/issues",
"releaseNotes": "Proof of concept, updated dependencies."
}