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
2 changes: 1 addition & 1 deletion .devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "open_epaper_link_homeassistant",
"name": "opendisplay_homeassistant",
"image": "mcr.microsoft.com/vscode/devcontainers/python:3.12-bullseye",
"postCreateCommand": "scripts/setup",
"forwardPorts": [
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ lib64
# Home Assistant configuration
config/

custom_components/open_epaper_link/*.jpg
custom_components/open_epaper_link/lastapinteraction.txt
custom_components/opendisplay/*.jpg
custom_components/opendisplay/lastapinteraction.txt

tests/drawcustom/test_images/rename_me.png
2 changes: 1 addition & 1 deletion .release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"extra-files": [
{
"type": "json",
"path": "custom_components/open_epaper_link/manifest.json",
"path": "custom_components/opendisplay/manifest.json",
"jsonpath": "$.version"
}
]
Expand Down
2 changes: 1 addition & 1 deletion custom_components/opendisplay/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
SIGNAL_TAG_UPDATE = f"{DOMAIN}_tag_update"
SIGNAL_TAG_IMAGE_UPDATE = f"{DOMAIN}_tag_image_update"
SIGNAL_AP_UPDATE = f"{DOMAIN}_ap_update"
OEPL_CONFIG_URL = "https://config.openepaperlink.org/"
OPENDISPLAY_CONFIG_URL = "https://opendisplay.org/firmware/config/"
ATC_CONFIG_URL = "https://atc1441.github.io/ATC_BLE_OEPL_Image_Upload.html"
4 changes: 2 additions & 2 deletions custom_components/opendisplay/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from homeassistant.helpers.entity import DeviceInfo, Entity
from .ble import BLEDeviceMetadata

from .const import DOMAIN, OEPL_CONFIG_URL, ATC_CONFIG_URL
from .const import DOMAIN, OPENDISPLAY_CONFIG_URL, ATC_CONFIG_URL
from .tag_types import get_hw_string, get_hw_dimensions

if TYPE_CHECKING:
Expand Down Expand Up @@ -195,7 +195,7 @@ def device_info(self) -> DeviceInfo:
}

if metadata.is_open_display:
device_info["configuration_url"] = OEPL_CONFIG_URL
device_info["configuration_url"] = OPENDISPLAY_CONFIG_URL
else:
device_info["configuration_url"] = ATC_CONFIG_URL

Expand Down
Loading