Skip to content

Commit

Permalink
publish v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
miyaji255 committed Jun 3, 2023
1 parent 1fe1c27 commit 43976dd
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 145 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
privacy/*.pfk
privacy/*.ps1
privacy/*

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
Expand Down
10 changes: 5 additions & 5 deletions EasyPlot/EasyPlot.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
<ApplicationTitle>EasyPlot</ApplicationTitle>

<!-- App Identifier -->
<ApplicationId>com.companyname.easyplot</ApplicationId>
<ApplicationId>org.oucc.easyplot</ApplicationId>
<ApplicationIdGuid>57aa4d4d-d9c8-444b-8de9-ca3c3f2afb3a</ApplicationIdGuid>

<!-- Versions -->
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>
<ApplicationDisplayVersion>0.2.0</ApplicationDisplayVersion>
<ApplicationVersion>0.2</ApplicationVersion>

<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">13.6</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion>
Expand All @@ -38,12 +38,12 @@
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
<PlatformTarget>x64</PlatformTarget>
<DefaultLanguage>ja-JP</DefaultLanguage>
</PropertyGroup>

<PropertyGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows' and '$(Configuration)' == 'Release' and '$(PackageCertificateThumbprintOverrride)' != ''">
<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>
<PackageCertificateThumbprint>$(PackageCertificateThumbprintOverrride)</PackageCertificateThumbprint>
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
</PropertyGroup>

<PropertyGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows' and '$(RuntimeIdentifierOverride)' != ''">
Expand All @@ -52,7 +52,7 @@

<ItemGroup>
<!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\icon.svg"/>
<MauiIcon Include="Resources\AppIcon\icon.svg" />

<!-- Splash Screen -->
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" />
Expand Down
6 changes: 0 additions & 6 deletions EasyPlot/Platforms/Android/AndroidManifest.xml

This file was deleted.

10 changes: 0 additions & 10 deletions EasyPlot/Platforms/Android/MainActivity.cs

This file was deleted.

15 changes: 0 additions & 15 deletions EasyPlot/Platforms/Android/MainApplication.cs

This file was deleted.

6 changes: 0 additions & 6 deletions EasyPlot/Platforms/Android/Resources/values/colors.xml

This file was deleted.

16 changes: 0 additions & 16 deletions EasyPlot/Platforms/Tizen/Main.cs

This file was deleted.

15 changes: 0 additions & 15 deletions EasyPlot/Platforms/Tizen/tizen-manifest.xml

This file was deleted.

4 changes: 2 additions & 2 deletions EasyPlot/Platforms/Windows/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap rescap">

<Identity Name="maui-package-name-placeholder" Publisher="CN=miyaji255" Version="0.1.6.0" />
<Identity Name="EasyPlot" Publisher="CN=OUCC" Version="0.2.0.0" />

<mp:PhoneIdentity PhoneProductId="A62B9B41-C411-457C-919C-6A7B145BA232" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

<Properties>
<DisplayName>$placeholder$</DisplayName>
<PublisherDisplayName>User Name</PublisherDisplayName>
<PublisherDisplayName>OUCC</PublisherDisplayName>
<Logo>$placeholder$.png</Logo>
</Properties>

Expand Down
9 changes: 0 additions & 9 deletions EasyPlot/Platforms/iOS/AppDelegate.cs

This file was deleted.

32 changes: 0 additions & 32 deletions EasyPlot/Platforms/iOS/Info.plist

This file was deleted.

15 changes: 0 additions & 15 deletions EasyPlot/Platforms/iOS/Program.cs

This file was deleted.

17 changes: 5 additions & 12 deletions EasyPlot/Utilities/ValueStringBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,20 +52,13 @@ public ValueStringBuilder(CultureInfo? cultureInfo)

public void Append(ReadOnlySpan<char> value)
{
try
{
if (Disposed)
ThrowObjectDisposedException();
if (Disposed)
ThrowObjectDisposedException();

EnsureBuffer(Length + value.Length);
EnsureBuffer(Length + value.Length);

value.CopyTo(_buffer[Length..]);
Length += value.Length;
}
catch (Exception ex)
{
throw;
}
value.CopyTo(_buffer[Length..]);
Length += value.Length;
}

public void Append<T>(T value, ReadOnlySpan<char> format = default) where T : ISpanFormattable
Expand Down

0 comments on commit 43976dd

Please sign in to comment.