Skip to content

Commit

Permalink
Update README and appstream with new screenshots
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikKalkoken committed Jul 25, 2024
1 parent 6fc6fbc commit d2ba159
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,17 @@ Janice is a desktop app for viewing large JSON files. It's key features are:
- Copy values to clipboard
- Single executable file, no installation required
- Desktop app that runs on Windows, Linux and macOS (experimental)
- Automatic dark and light mode
- Automatic dark and light theme

## Screenshots

![screenshot](https://cdn.imgpile.com/f/bdQBc3q_xl.png)
### Light theme

![light](https://cdn.imgpile.com/f/0IrYBjJ_xl.png)

### Dark theme

![dark](https://cdn.imgpile.com/f/bdQBc3q_xl.png)

## How to run

Expand Down
6 changes: 3 additions & 3 deletions internal/ui/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ func NewUI(app fyne.App) (*UI, error) {
welcomeText := widget.NewLabel(
"Welcome to " + appName + ".\n" +
"Open a JSON file through the File Open menu\n" +
"or drag and drop the file on this window" +
"or import it from clipboard.\n",
"or drag and drop the file on this window\n" +
"or import from the clipboard.\n",
)
welcomeText.Importance = widget.LowImportance
welcomeText.Importance = widget.MediumImportance
welcomeText.Alignment = fyne.TextAlignCenter
u.welcomeMessage = container.NewCenter(welcomeText)

Expand Down
2 changes: 1 addition & 1 deletion io.github.erikkalkoken.janice.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<launchable type="desktop-id">io.github.erikkalkoken.janice.desktop</launchable>
<screenshots>
<screenshot type="default">
<image>https://cdn.imgpile.com/f/bdQBc3q_xl.png</image>
<image>https://cdn.imgpile.com/f/0IrYBjJ_xl.png</image>
</screenshot>
</screenshots>

Expand Down

0 comments on commit d2ba159

Please sign in to comment.