Skip to content

Commit

Permalink
spixi-0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
IxiAngel committed Oct 9, 2024
1 parent 9cebdf6 commit e91b004
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 16 deletions.
5 changes: 5 additions & 0 deletions Spixi-PushService/Spixi-PushService.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
<ProvisioningType>manual</ProvisioningType>
</PropertyGroup>

<!-- strip exited with code 139 workaround - https://github.com/xamarin/xamarin-macios/issues/19157 -->
<PropertyGroup>
<MtouchNoSymbolStrip Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">True</MtouchNoSymbolStrip>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="OneSignalSDK.DotNet" Version="5.2.1" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Spixi/Meta/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class Config
public static readonly int packetDataSize = 102400; // 100 Kb per packet for file transfers
public static readonly long packetRequestTimeout = 60; // Time in seconds to re-request packets

public static readonly string version = "spixi-0.9.0"; // Spixi version
public static readonly string version = "spixi-0.9.2"; // Spixi version

public static readonly string checkVersionUrl = "https://www.ixian.io/spixi-update.txt";
public static readonly int checkVersionSeconds = 1 * 60 * 60; // 1 hour
Expand Down
11 changes: 1 addition & 10 deletions Spixi/Meta/Node.cs
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ public override Block getBlockHeader(ulong blockNum)
return BlockHeaderStorage.getBlockHeader(blockNum);
}

public override IxiNumber getMinSignerPowDifficulty(ulong blockNum)
public override IxiNumber getMinSignerPowDifficulty(ulong blockNum, long curBlockTimestamp)
{
// TODO TODO implement this properly
return ConsensusConfig.minBlockSignerPowDifficulty;
Expand Down Expand Up @@ -560,15 +560,6 @@ private static void checkPrice()
lastPriceUpdate = Clock.getTimestamp();
}

public override byte[] calculateRegNameChecksumFromUpdatedDataRecords(byte[] name, List<RegisteredNameDataRecord> dataRecords, ulong sequence, Address nextPkHash)
{
throw new NotImplementedException();
}

public override byte[] calculateRegNameChecksumForRecovery(byte[] name, Address recoveryHash, ulong sequence, Address nextPkHash)
{
throw new NotImplementedException();
}
public override RegisteredNameRecord getRegName(byte[] name, bool useAbsoluteId = true)
{
throw new NotImplementedException();
Expand Down
2 changes: 1 addition & 1 deletion Spixi/Platforms/Windows/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap rescap">

<Identity Name="com.ixilabs.spixi" Publisher="CN=ixiandev" Version="0.9.0.0" />
<Identity Name="com.ixilabs.spixi" Publisher="CN=ixiandev" Version="0.9.2.0" />

<Properties>
<DisplayName>Spixi</DisplayName>
Expand Down
4 changes: 2 additions & 2 deletions Spixi/Platforms/iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
<key>NSFaceIDUsageDescription</key>
<string>Biometric authentication for unlocking the app</string>
<key>CFBundleVersion</key>
<string>0.9.0.1</string>
<string>0.9.2</string>
<key>CFBundleShortVersionString</key>
<string>0.9.0</string>
<string>0.9.2</string>
<key>UIBackgroundModes</key>
<array>
<string>remote-notification</string>
Expand Down
10 changes: 8 additions & 2 deletions Spixi/Spixi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
<ApplicationId>com.ixilabs.spixi</ApplicationId>

<!-- Versions -->
<ApplicationDisplayVersion>0.9</ApplicationDisplayVersion>
<ApplicationVersion>160000901</ApplicationVersion>
<ApplicationDisplayVersion>0.9.2</ApplicationDisplayVersion>
<ApplicationVersion>160000920</ApplicationVersion>

<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion>
Expand Down Expand Up @@ -96,6 +96,12 @@
<AndroidPackageFormat>apk</AndroidPackageFormat>
</PropertyGroup>

<!-- strip exited with code 139 workaround - https://github.com/xamarin/xamarin-macios/issues/19157 -->
<PropertyGroup>
<MtouchNoSymbolStrip Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">True</MtouchNoSymbolStrip>
</PropertyGroup>


<ItemGroup>
<!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\appicon.svg" Color="#000000" />
Expand Down

0 comments on commit e91b004

Please sign in to comment.