Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Fruit Jam Store
Browse community CircuitPython applications on the Adafruit Fruit Jam.
# Fruit Jam Library
Browse and install community CircuitPython applications on the Adafruit Fruit Jam.

## Building
Ensure that you have python 3.x installed system-wide and all the prerequisite libraries installed using the following command:
Expand Down
4 changes: 2 additions & 2 deletions code.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
pass

# program constants
APPLICATIONS_URL = "https://raw.githubusercontent.com/relic-se/Fruit_Jam_Store/refs/heads/main/database/applications.json"
APPLICATIONS_URL = "https://raw.githubusercontent.com/relic-se/Fruit_Jam_Library/refs/heads/main/database/applications.json"
METADATA_URL = "https://raw.githubusercontent.com/{:s}/refs/heads/main/metadata.json"
REPO_URL = "https://api.github.com/repos/{:s}"
ICON_URL = "https://raw.githubusercontent.com/{:s}/{:s}/{:s}"
Expand Down Expand Up @@ -237,7 +237,7 @@ def download_zip(url: str, name: str|None = None) -> str:

title_label = Label(
font=FONT,
text="Fruit Jam Store",
text="Fruit Jam Library",
color=(config.palette_fg if config is not None else 0xffffff),
anchor_point=(0.5, 0.5),
anchored_position=(DISPLAY_WIDTH // 2, TITLE_HEIGHT // 2),
Expand Down
Binary file modified icon.bmp
Binary file not shown.
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"title": "Store",
"title": "Library",
"icon": "icon.bmp"
}