Skip to content

Commit

Permalink
release: v1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Cryolitia committed Jan 13, 2024
1 parent a2d41b0 commit 46a2799
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions PhotoTimeFix/PhotoTimeFix.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<PlatformTarget>AnyCPU</PlatformTarget>
<IsPackable>true</IsPackable>
<AssemblyVersion>1.3.2</AssemblyVersion>
<AssemblyVersion>1.3.3</AssemblyVersion>
<SatelliteResourceLanguages>en;zh-Hans;zh-Hant</SatelliteResourceLanguages>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Version>1.3.2</Version>
<Version>1.3.3</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down
4 changes: 2 additions & 2 deletions PhotoTimeFix/Window/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -451,8 +451,8 @@ private async void ProcessDirectory(DirectoryInfo info, ProcessResultList list)
{
try
{
foreach (var mInfo in info.EnumerateDirectories()) ProcessDirectory(mInfo, list);
foreach (var mInfo in info.EnumerateFiles())
foreach (var mInfo in info.GetDirectories()) ProcessDirectory(mInfo, list);
foreach (var mInfo in info.GetFiles())
try
{
var dateTime = await TryGetDatetimeFromFile(mInfo);
Expand Down
2 changes: 1 addition & 1 deletion WapProject/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Identity
Name="53240singleNeuron.PhotoTimeFix"
Publisher="CN=F77423F5-8744-4658-A772-5E96CB64C433"
Version="1.3.2.0"/>
Version="1.3.3.0"/>

<Properties>
<DisplayName>PhotoTimeFix</DisplayName>
Expand Down
2 changes: 1 addition & 1 deletion WapProject/WapProject.wapproj
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<PackageCertificateThumbprint>5907AAB205F7C8B8C6EDE56581A020B40AFE0434</PackageCertificateThumbprint>
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>
<GenerateTestArtifacts>True</GenerateTestArtifacts>
<GenerateTestArtifacts>False</GenerateTestArtifacts>
<AppxBundlePlatforms>neutral</AppxBundlePlatforms>
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
<GenerateTemporaryStoreCertificate>True</GenerateTemporaryStoreCertificate>
Expand Down

0 comments on commit 46a2799

Please sign in to comment.