Skip to content

Commit

Permalink
Update Tiefsee version to 4.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
hbl917070 committed Jan 26, 2024
1 parent 0b2e648 commit 0480550
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Website:<a href="https://hbl917070.github.io/aeropic/en/">hbl917070.github.io/

> System requirements: 64-bit Windows 10 or Windows 11
### Current version:Tiefsee 4.1.5
### Current version:Tiefsee 4.1.6

- <a href="https://apps.microsoft.com/store/detail/9N04QDXBNMCQ?launch=true&mode=full">
<img src="https://get.microsoft.com/images/zh-tw%20dark.svg"/></a>
Expand Down
2 changes: 1 addition & 1 deletion README.zh_TW.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Tiefsee

> 運行需求:64位元的 Windows 10 或 Windows 11
### 當前版本 Tiefsee 4.1.5
### 當前版本 Tiefsee 4.1.6

- <a href="https://apps.microsoft.com/store/detail/9N04QDXBNMCQ?launch=true&mode=full">
<img src="https://get.microsoft.com/images/zh-tw%20dark.svg"/></a>
Expand Down
6 changes: 3 additions & 3 deletions Tiefsee/Lib/Exif.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using MetadataExtractor;
using MetadataExtractor;
using MetadataExtractor.Formats.Exif;
using System.IO;
using System.Text;
Expand Down Expand Up @@ -250,7 +250,7 @@ public static ImgExif GetExif(string path, int maxLength) {
value = animationInfo.FrameCount.ToString()
});
}
if (animationInfo.LoopCount > 1) {
if (animationInfo.LoopCount > 0) {
exif.data.Add(new ImgExifItem {
group = "Frames",
name = "Loop Count",
Expand All @@ -271,7 +271,7 @@ public static ImgExif GetExif(string path, int maxLength) {
}

// 循環次數
if (apngInfo.LoopCount > 1) {
if (apngInfo.LoopCount > 0) {
exif.data.Add(new ImgExifItem {
group = "Frames",
name = "Loop Count",
Expand Down
4 changes: 2 additions & 2 deletions Tiefsee/ReadMe.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Tiefsee 4.1.5
Tiefsee 4.1.6

Copyright (C) 2023 hbl917070
Copyright (C) 2024 hbl917070

https://github.com/hbl917070/Tiefsee4

Expand Down
2 changes: 1 addition & 1 deletion TiefseeAppPackager/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Identity
Name="60852WEN-HONGLIAO.Tiefsee"
Publisher="CN=D526D33E-7242-4E85-B8D1-6A0923DB4EDA"
Version="4.1.5.0" />
Version="4.1.6.0" />

<Properties>
<DisplayName>Tiefsee</DisplayName>
Expand Down
4 changes: 2 additions & 2 deletions TiefseeAppPackager/TiefseeAppPackager.wapproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<AppxBundle>Auto</AppxBundle>
<AppxBundle>Always</AppxBundle>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<AppxBundle>Auto</AppxBundle>
<AppxBundle>Always</AppxBundle>
</PropertyGroup>
<ItemGroup>
<AppxManifest Include="Package.appxmanifest">
Expand Down
2 changes: 1 addition & 1 deletion TiefseeAppPackager/TiefseeAppPackager.wapproj.user
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<AppxShowAllApps>True</AppxShowAllApps>
<UapAppxPackageBuildMode>SideloadOnly</UapAppxPackageBuildMode>
<UapAppxPackageBuildMode>StoreAndSideload</UapAppxPackageBuildMode>
<AppxBuildConfigurationSelection>x64</AppxBuildConfigurationSelection>
<PackageOptionalProjectsInIdeBuilds>False</PackageOptionalProjectsInIdeBuilds>
<SmallTileSource>D:\GitHub\Tiefsee4\Other Assets\logo.ai</SmallTileSource>
Expand Down
2 changes: 1 addition & 1 deletion Www/ejs/MainWindow/MainWindow.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
<div id="mView-welcome" class="mView-welcome">
<div>
<img class="mView-welcome-logo" src="./img/logo.svg">
<div class="mView-welcome-txt">Tiefsee 4.1.5.1</div>
<div class="mView-welcome-txt">Tiefsee 4.1.6</div>
</div>
</div>
<textarea id="mView-txt" class="mView-text base-scrollbar" readonly2=""></textarea>
Expand Down
2 changes: 1 addition & 1 deletion Www/ejs/SettingWindow/SettingWindow.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@
<img class="logobox-img" src="./img/logo.svg">
<div class="logobox-text">
<div class="logobox-text-title">Tiefsee</div>
<div class="logobox-text-subtitle">4.1.5.1</div>
<div class="logobox-text-subtitle">4.1.6</div>
</div>
</div>

Expand Down

0 comments on commit 0480550

Please sign in to comment.