Skip to content
This repository was archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release/2.1.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
dotStart committed Jul 30, 2019
2 parents b109cfd + a71cbf2 commit c2b2c7b
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>tv.dotstart.beacon</groupId>
<artifactId>parent</artifactId>
<version>2.1.2</version>
<version>2.1.3</version>
<packaging>pom</packaging>

<properties>
Expand Down Expand Up @@ -84,7 +84,7 @@
<dependency>
<groupId>tv.dotstart.beacon</groupId>
<artifactId>repository-model</artifactId>
<version>2.1.2</version>
<version>2.1.3</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion repository-compiler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>tv.dotstart.beacon</groupId>
<version>2.1.2</version>
<version>2.1.3</version>
</parent>

<artifactId>repository-compiler</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion repository-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>tv.dotstart.beacon</groupId>
<version>2.1.2</version>
<version>2.1.3</version>
</parent>

<artifactId>repository-model</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>tv.dotstart.beacon</groupId>
<version>2.1.2</version>
<version>2.1.3</version>
</parent>

<artifactId>ui</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ import tv.dotstart.beacon.exposure.PortMapper
import tv.dotstart.beacon.repository.Model
import tv.dotstart.beacon.repository.ServiceRegistry
import tv.dotstart.beacon.repository.model.Port
import tv.dotstart.beacon.util.Localization
import tv.dotstart.beacon.util.splashWindow
import java.net.URL
import java.nio.file.Files
Expand Down Expand Up @@ -83,7 +84,7 @@ class MainController : Initializable {
.addListener({ _, _, new -> this.onServiceSelect(new.value) })
this.externalAddress.textProperty().bind(Bindings.createObjectBinding(
Callable {
Gateway.externalAddress?.hostAddress
Gateway.externalAddress?.hostAddress ?: Localization("address.unknown")
},
Gateway.externalAddressProperty
))
Expand Down
2 changes: 2 additions & 0 deletions ui/src/main/resources/localization/messages_de.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ preload.upnp=UPnP Client wird gestartet
preload.mapper=Port Mapper wird gestartet
preload.gateway.fuse=Warten auf Internet Gateway

address.unknown=Unbekannte Externe Adresse

category.game=Spiele
category.tool=Werkzeuge

Expand Down
2 changes: 2 additions & 0 deletions ui/src/main/resources/localization/messages_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ preload.upnp=Starting UPnP Client
preload.mapper=Starting Port Mapper
preload.gateway.fuse=Waiting for Internet Gateway

address.unknown=Unknown External Address

category.game=Games
category.tool=Tools

Expand Down

0 comments on commit c2b2c7b

Please sign in to comment.