Locate: Reword to include domain. (#49)

* Reword to inlcude domain.

* Update version number
pull/51/head
Theo 2021-08-16 01:41:04 +02:00 committed by GitHub
parent 167e3dd79b
commit d35f8c983c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -1,13 +1,13 @@
<div class="locate-center-card"> <div class="locate-center-card">
<mat-card class="locate-card"> <mat-card class="locate-card">
<mat-card-title>Geolocate IP Address</mat-card-title> <mat-card-title>Geolocate IP or Domain</mat-card-title>
<mat-card-content class="locate-card-content"> <mat-card-content class="locate-card-content">
<mat-form-field class="locate-lookup-field"> <mat-form-field class="locate-lookup-field">
<mat-label> IP address. </mat-label> <mat-label> IP address / Domain. </mat-label>
<input matInput [(ngModel)]="userInput" /> <input matInput [(ngModel)]="userInput" />
</mat-form-field> </mat-form-field>
<div *ngIf="!validIP"> <div *ngIf="!validIP">
<span><strong>Please enter a valid IP address or domain name!</strong></span> <span><strong>Please enter a valid IP address or domain!</strong></span>
</div> </div>
<div *ngIf="lookup_ip" class="locate-results"> <div *ngIf="lookup_ip" class="locate-results">
<br /> <br />
@ -48,7 +48,7 @@
</div> </div>
<button mat-flat-button class="macinfo-lookup-button" color="accent" (click)="locate_ip()"> <button mat-flat-button class="macinfo-lookup-button" color="accent" (click)="locate_ip()">
<span *ngIf="!isLoading">Locate IP</span> <span *ngIf="!isLoading">Locate IP / Domain</span>
<span class="spinner" *ngIf="isLoading"> <span class="spinner" *ngIf="isLoading">
<mat-spinner diameter="20"></mat-spinner> <mat-spinner diameter="20"></mat-spinner>
</span> </span>

View File

@ -1,8 +1,8 @@
{ {
"name": "locate", "name": "locate",
"title": "Locate", "title": "Locate",
"description": "Geolocate IP addresses over HTTPS via ipapi.", "description": "Geolocate IP addresses and domain names over HTTPS via ipapi.",
"version": "1.0", "version": "1.1",
"author": "KoalaV2", "author": "KoalaV2",
"firmware_required": "1.0.0" "firmware_required": "1.0.0"
} }