Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8804a15

Browse files
authored
Merge pull request #16 from bytedreamer/develop
0.1.103 Pre-Release
2 parents 797ffd2 + 211f86b commit 8804a15

7 files changed

Lines changed: 1167 additions & 1137 deletions

File tree

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ variables:
2323
- name: minor
2424
value: 1
2525
- name: patch
26-
value: 102
26+
value: 103
2727
- name: AssemblyVersion
2828
value: $(major).$(minor).$(patch)
2929

setup/Windows/SetupProject/Aporta.wxs

Lines changed: 1149 additions & 1131 deletions
Large diffs are not rendered by default.

setup/Windows/SetupProject/Product.wxs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util='http://schemas.microsoft.com/wix/UtilExtension'>
2+
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util='http://schemas.microsoft.com/wix/UtilExtension' xmlns:fire="http://schemas.microsoft.com/wix/FirewallExtension">
33
<Product Id="*" Name="Aporta" Language="1033" Version="!(bind.FileVersion.AportaService)" Manufacturer="Z-bit" UpgradeCode="3155e450-efaf-4294-a12b-097295667284">
44
<Package InstallerVersion="200"
55
Platform="x64"
@@ -57,6 +57,14 @@
5757
Part="last"
5858
Action="set"
5959
System="yes" />
60+
<fire:FirewallException
61+
Id="FirewallException"
62+
Name="Aporta"
63+
Port="8443"
64+
Protocol="tcp"
65+
Scope="any"
66+
Program="$(var.BasePath)\Aporta.exe"
67+
IgnoreFailure="yes"/>
6068
</Component>
6169

6270
<Component Id="Aporta_ServiceInstaller" Directory="INSTALLFOLDER" Guid="10C702B9-C283-421F-B166-771543D89A8B">
@@ -71,7 +79,7 @@
7179
Account="LocalSystem"
7280
ErrorControl="normal" />
7381
<ServiceControl
74-
Id="ServiceInstaller"
82+
Id="ServiceControl"
7583
Start="install"
7684
Stop="both"
7785
Remove="uninstall"

setup/Windows/SetupProject/SetupProject.wixproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@
4343
</ProjectReference>
4444
</ItemGroup>
4545
<ItemGroup>
46+
<WixExtension Include="WixFirewallExtension">
47+
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\WiX Toolset v3.11\bin\WixFirewallExtension.dll</HintPath>
48+
<Name>WixFirewallExtension</Name>
49+
</WixExtension>
4650
<WixExtension Include="WixUtilExtension">
4751
<HintPath>$(WixExtDir)\WixUtilExtension.dll</HintPath>
4852
<Name>WixUtilExtension</Name>

src/Aporta.WebClient/Pages/configuration/Doors.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ else
3030
{
3131
<Alert Color="Color.Warning" Visible="true">
3232
<AlertMessage>Add Door</AlertMessage>
33-
<AlertDescription>None are available</AlertDescription>
33+
<AlertDescription>No available access readers or inputs are configured in the drivers</AlertDescription>
3434
</Alert>
3535
}
3636
</Column>

src/Aporta.WebClient/Pages/configuration/Inputs.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ else
3030
{
3131
<Alert Color="Color.Warning" Visible="true">
3232
<AlertMessage>Add Input</AlertMessage>
33-
<AlertDescription>None are available</AlertDescription>
33+
<AlertDescription>No available inputs are configured in the drivers</AlertDescription>
3434
</Alert>
3535
}
3636
</Column>

src/Aporta.WebClient/Pages/configuration/Outputs.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ else
3030
{
3131
<Alert Color="Color.Warning" Visible="true">
3232
<AlertMessage>Add Output</AlertMessage>
33-
<AlertDescription>None are available</AlertDescription>
33+
<AlertDescription>No available outputs are configured in the drivers</AlertDescription>
3434
</Alert>
3535
}
3636
</Column>

0 commit comments

Comments
 (0)