Compare commits
4 Commits
adding-upd
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
63ba450f9a | ||
| 79cd222cce | |||
|
|
7e63ab5a0f | ||
| 75aeccaa15 |
Binary file not shown.
17
Client/android/.idea/deploymentTargetDropDown.xml
generated
17
Client/android/.idea/deploymentTargetDropDown.xml
generated
@@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="deploymentTargetDropDown">
|
||||
<runningDeviceTargetSelectedWithDropDown>
|
||||
<Target>
|
||||
<type value="RUNNING_DEVICE_TARGET" />
|
||||
<deviceKey>
|
||||
<Key>
|
||||
<type value="SERIAL_NUMBER" />
|
||||
<value value="ZY326S5BLL" />
|
||||
</Key>
|
||||
</deviceKey>
|
||||
</Target>
|
||||
</runningDeviceTargetSelectedWithDropDown>
|
||||
<timeTargetWasSelectedWithDropDown value="2022-02-06T22:33:46.214309800Z" />
|
||||
</component>
|
||||
</project>
|
||||
22632
Client/package-lock.json
generated
22632
Client/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,5 @@
|
||||
import { WOLService } from './services/WOL.service';
|
||||
import { SearchHostPage } from './components/searchHost/searchHost.page';
|
||||
import { SearchHostPage } from './components/search-host/search-host.page';
|
||||
import { ExploreContainerComponent } from './components/explore-container/explore-container.component';
|
||||
import { ServerSettingsComponent } from './components/settings/serverSettings/serverSettings.component';
|
||||
import { NgModule } from '@angular/core';
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule, Routes } from '@angular/router';
|
||||
import { HomePage } from '../home/home.page';
|
||||
import { SearchHostPage } from '../searchHost/searchHost.page';
|
||||
import { SearchHostPage } from '../search-host/search-host.page';
|
||||
import { SettingsPage } from '../settings/settings.page';
|
||||
|
||||
const routes: Routes = [
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
<ion-tab-button tab="searchHost">
|
||||
<ion-icon name="search-sharp"></ion-icon>
|
||||
<ion-label>WOL</ion-label>
|
||||
<ion-label>Search</ion-label>
|
||||
</ion-tab-button>
|
||||
|
||||
<ion-tab-button tab="settings">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule, Routes } from '@angular/router';
|
||||
import { SearchHostPage } from './searchHost.page';
|
||||
import { SearchHostPage } from './search-host.page';
|
||||
|
||||
const routes: Routes = [
|
||||
{
|
||||
@@ -2,9 +2,9 @@ import { IonicModule } from '@ionic/angular';
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { SearchHostPage } from './searchHost.page';
|
||||
import { SearchHostPage } from './search-host.page';
|
||||
import { ExploreContainerComponentModule } from '../explore-container/explore-container.module';
|
||||
import { SearchHostPageRoutingModule } from './searchHost-routing.module';
|
||||
import { SearchHostPageRoutingModule } from './search-host-routing.module';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
@@ -16,25 +16,25 @@
|
||||
<!-- WOL -->
|
||||
<ion-list>
|
||||
<ion-item *ngIf="netWorkDevices.length === 0">
|
||||
<ion-label>No Devices found</ion-label>
|
||||
<ion-label>No devices found</ion-label>
|
||||
</ion-item>
|
||||
<ion-accordion-group>
|
||||
<ion-accordion *ngFor="let device of netWorkDevices">
|
||||
<ion-item slot="header" color="light">
|
||||
<ion-icon name="desktop-outline"></ion-icon>
|
||||
<ion-label>{{device.ipv4Addresses[0]}}</ion-label>
|
||||
<ion-label>{{ device.ipv4Addresses[0] }}</ion-label>
|
||||
</ion-item>
|
||||
<div slot="content">
|
||||
<ion-item>
|
||||
<ion-label>IP: {{device.ipv4Addresses[0]}}</ion-label>
|
||||
<ion-label>IP: {{ device.ipv4Addresses[0] }}</ion-label>
|
||||
</ion-item>
|
||||
<ion-item>
|
||||
<ion-label>PORT: {{device.PORT}}</ion-label>
|
||||
<ion-label>PORT: {{ device.port }}</ion-label>
|
||||
</ion-item>
|
||||
<ion-item>
|
||||
<ion-label>MAC-Address: {{device.txtRecord.mac}}</ion-label>
|
||||
<ion-label>MAC-Address: {{ device.txtRecord.mac }}</ion-label>
|
||||
</ion-item>
|
||||
<ion-button expand="full" (click)="saveWolDevice(null)"
|
||||
<ion-button expand="full" (click)="saveWolDevice(device)"
|
||||
>Configure</ion-button
|
||||
>
|
||||
</div>
|
||||
@@ -1,7 +1,7 @@
|
||||
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
import { ExploreContainerComponentModule } from '../explore-container/explore-container.module';
|
||||
import { SearchHostPage } from './searchHost.page';
|
||||
import { SearchHostPage } from './search-host.page';
|
||||
|
||||
describe('SearchHostPage', () => {
|
||||
let component: SearchHostPage;
|
||||
@@ -7,8 +7,8 @@ import { GotobedState } from 'src/app/store/gotobed.state';
|
||||
import { ToastController } from '@ionic/angular';
|
||||
@Component({
|
||||
selector: 'app-searchhost',
|
||||
templateUrl: 'searchHost.page.html',
|
||||
styleUrls: ['searchHost.page.scss']
|
||||
templateUrl: 'search-host.page.html',
|
||||
styleUrls: ['search-host.page.scss']
|
||||
})
|
||||
export class SearchHostPage implements OnInit {
|
||||
netWorkDevices: ZeroconfService[] = [];
|
||||
15157
Client/yarn.lock
15157
Client/yarn.lock
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user