Skip to content

Commit

Permalink
spixi-0.6.12
Browse files Browse the repository at this point in the history
- updated to latest IxiCore
- updated NuGet
  • Loading branch information
IxiAngel committed Dec 31, 2022
1 parent 6c761aa commit df9840c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions SPIXI/SPIXI.Android/Properties/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="0.6.11" package="io.ixian.spixi" android:installLocation="auto" android:versionCode="0160000692">
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="30" />
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="0.6.12" package="io.ixian.spixi" android:installLocation="auto" android:versionCode="0160000693">
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="30" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Expand All @@ -14,7 +14,7 @@
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
<uses-feature android:name="android.hardware.audio.low_latency" android:required="false" />
<uses-feature android:name="android.hardware.audio.pro" android:required="false" />
<application android:label="Spixi" android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_round_launcher">
<application android:label="Spixi" android:icon="@mipmap/ic_launcher">
<provider android:name="android.support.v4.content.FileProvider" android:authorities="com.ixian.provider" android:exported="false" android:grantUriPermissions="true">
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/provider_paths" />
</provider>
Expand Down
2 changes: 1 addition & 1 deletion SPIXI/SPIXI.Android/Resources/Resource.designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion SPIXI/SPIXI.WPF/SPIXI.WPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
<HintPath>..\..\packages\NAudio.WinMM.2.0.1\lib\netstandard2.0\NAudio.WinMM.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<HintPath>..\..\packages\Newtonsoft.Json.13.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="OpenTK, Version=3.3.1.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL">
<HintPath>..\..\packages\OpenTK.3.3.1\lib\net20\OpenTK.dll</HintPath>
Expand Down
2 changes: 1 addition & 1 deletion SPIXI/SPIXI.WPF/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<package id="NAudio.WinForms" version="2.0.1" targetFramework="net48" />
<package id="NAudio.WinMM" version="2.0.1" targetFramework="net48" />
<package id="NETStandard.Library" version="2.0.3" targetFramework="net48" />
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net48" />
<package id="Newtonsoft.Json" version="13.0.2" targetFramework="net48" />
<package id="OpenTK" version="3.3.1" targetFramework="net48" />
<package id="OpenTK.GLControl" version="3.1.0" targetFramework="net48" />
<package id="Portable.BouncyCastle" version="1.8.10" targetFramework="net48" />
Expand Down
4 changes: 2 additions & 2 deletions SPIXI/SPIXI.iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<key>CFBundleIdentifier</key>
<string>io.ixian.spixi</string>
<key>CFBundleVersion</key>
<string>0.6.11</string>
<string>0.6.12</string>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>CFBundleName</key>
Expand All @@ -54,6 +54,6 @@
<key>XSAppIconAssets</key>
<string>Media.xcassets/AppIcons.appiconset</string>
<key>CFBundleShortVersionString</key>
<string>0.6.11</string>
<string>0.6.12</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion SPIXI/SPIXI/Meta/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,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.6.11"; // Spixi version
public static readonly string version = "spixi-0.6.12"; // 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
4 changes: 2 additions & 2 deletions SPIXI/SPIXI/Meta/Node.cs
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ public override int getLastBlockVersion()
public override bool addTransaction(Transaction tx, bool force_broadcast)
{
// TODO Send to peer if directly connectable
CoreProtocolMessage.broadcastProtocolMessage(new char[] { 'M', 'H' }, ProtocolMessageCode.transactionData, tx.getBytes(), null);
CoreProtocolMessage.broadcastProtocolMessage(new char[] { 'M', 'H' }, ProtocolMessageCode.transactionData2, tx.getBytes(true, true), null);
PendingTransactions.addPendingLocalTransaction(tx);
return true;
}
Expand Down Expand Up @@ -479,7 +479,7 @@ public static void processPendingTransactions()

if (cur_time - tx_time > 40) // if the transaction is pending for over 40 seconds, resend
{
CoreProtocolMessage.broadcastProtocolMessage(new char[] { 'M', 'H' }, ProtocolMessageCode.transactionData, t.getBytes(), null);
CoreProtocolMessage.broadcastProtocolMessage(new char[] { 'M', 'H' }, ProtocolMessageCode.transactionData2, t.getBytes(true, true), null);
entry.addedTimestamp = cur_time;
entry.confirmedNodeList.Clear();
}
Expand Down
2 changes: 1 addition & 1 deletion SPIXI/SPIXI/SPIXI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<ItemGroup>
<PackageReference Include="Concentus" Version="1.1.7" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Open.NAT.Core" Version="2.1.0.5" />
<PackageReference Include="Plugin.Fingerprint" Version="2.1.4" />
<PackageReference Include="Portable.BouncyCastle" Version="1.8.10" />
Expand Down

0 comments on commit df9840c

Please sign in to comment.