Skip to content

Commit

Permalink
Merge pull request #34 from JohnathanCrow/dev
Browse files Browse the repository at this point in the history
0.1.1
  • Loading branch information
JohnathanCrow authored Dec 12, 2024
2 parents bd3413a + 05606c3 commit 1c9dbb4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ A lightweight shopping list web app that you can self-host with docker. Data is
## Installation
#### Docker
```
docker run -d --name shopping-list -p 3200:80 --restart unless-stopped ghcr.io/johnathancrow/shoppinglist:latest
docker run -d --name shoppinglist -p 3200:80 --restart unless-stopped ghcr.io/johnathancrow/shoppinglist:latest
```

#### Demo
If you want to try it out first, here is a **[demo](http://shoppinglistcn.netlify.app)**.
If you want to try it out first, here is a **[demo](http://shoppinglist-preview.netlify.app)**.

## Usage
#### Adding Database Items
Expand All @@ -18,15 +18,15 @@ If you want to try it out first, here is a **[demo](http://shoppinglistcn.netlif
- Append a divider to automatically place the item (e.g., "Apple -Fruit")
#### Managing Database Items
- Drag the left edge of an item to reorder
- Click the + icon to add it to your list
- Click the + icon to add it to your basket
- Click the pencil icon to edit the item
- Click the x icon to delete the item
#### Managing List Items
#### Managing Basket Items
- Add notes to items using the message icon
- Adjust quantities using the number input
- Remove items by using the x icon
- Export your list using the clipboard, text, or image options
- Reset the list to clear all selections
- Export your basket using the clipboard, text, or image icons
- Reset the basket using the bin icon
#### Controls
- Export: Save a backup of your database
- Import: Load a backup of your database
Expand Down
8 changes: 4 additions & 4 deletions src/components/InfoModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function InfoModal({ onClose }: InfoModalProps) {
</h4>
<ul className="list-disc list-inside space-y-0">
<li>Drag the left edge of an item to reorder</li>
<li>Click the + icon to add it to your list</li>
<li>Click the + icon to add it to your basket</li>
<li>Click the pencil icon to edit the item</li>
<li>Click the x icon to delete the item</li>
</ul>
Expand All @@ -52,14 +52,14 @@ export function InfoModal({ onClose }: InfoModalProps) {
{/* List management section */}
<section>
<h4 className="font-semibold text-gray-200 mb-2">
Managing List Items
Managing Basket Items
</h4>
<ul className="list-disc list-inside space-y-0">
<li>Add notes to items using the message icon</li>
<li>Adjust quantities using the number input</li>
<li>Remove items by using the x icon</li>
<li>Export your list using various options</li>
<li>Reset the list using the upper right x icon</li>
<li>Export your basket using the clipboard, text, or image icons</li>
<li>Reset the basket using the bin icon</li>
</ul>
</section>

Expand Down

0 comments on commit 1c9dbb4

Please sign in to comment.