Skip to content

Commit

Permalink
Update README and site.
Browse files Browse the repository at this point in the history
  • Loading branch information
io7m committed Sep 29, 2024
1 parent acf7611 commit c6b2b5b
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ training.
* A persistent undo/redo system that can store every change ever made to a
dataset, including the ability to effectively revert to an earlier version
at any time.
* A carefully-engineered Java API for manipulating datasets; the command-line
tools and user interface are thin shells over this API.
* Datasets are backed by [SQLite](https://www.sqlite.org) for reliable,
transactional updates, and a file format that is designed to endure for
decades to come.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@
A persistent undo/redo system that can store every change ever made to a dataset, including the ability
to effectively revert to an earlier version at any time.
</Item>
<Item>
A carefully-engineered Java API for manipulating datasets; the command-line tools and user interface are thin
shells over this API.
</Item>
<Item>
Datasets are backed by <LinkExternal target="https://www.sqlite.org">SQLite</LinkExternal> for reliable,
transactional updates, and a file format that is designed to endure for decades to come.
Expand Down
21 changes: 20 additions & 1 deletion src/site/resources/features.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,27 @@

<div xmlns="http://www.w3.org/1999/xhtml">
<ul>
<li>A user interface for managing images and captions for those images.</li>
<li>A caption categorization system for assisting with keeping captions consistent across large datasets.</li>
<li>The ability to import captions and images into a dataset from a directory hierarchy.</li>
<li>The ability to export captions and images into a directory for use in training scripts.</li>
<li>
A persistent undo/redo system that can store every change ever made to a dataset, including the ability to
effectively revert to an earlier version at any time.
</li>
<li>
A carefully-engineered Java API for manipulating datasets; the command-line tools and user interface are thin
shells over this API.
</li>
<li>
Datasets are backed by [SQLite](https://www.sqlite.org) for reliable, transactional updates, and a file format
that is designed to endure for decades to come.
</li>
<li>Command line tools for automating operations such as importing, exporting, and interrogating metadata.</li>
<li>Comprehensive documentation.</li>
<li><a href="https://www.osgi.org/">OSGi</a>-ready</li>
<li><a href="https://en.wikipedia.org/wiki/Java_Platform_Module_System">JPMS</a>-ready</li>
<li><a href="https://en.wikipedia.org/wiki/Java_Platform_Module_System">JPMS</a>-ready
</li>
<li>ISC license</li>
</ul>
</div>

0 comments on commit c6b2b5b

Please sign in to comment.