• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

L3 Disk Explorer is an application in order to access to files in a floppy disk image for retro computer and operating system.


Commit MetaInfo

Revisione50810c76ad17c179446ed9f204fd273e7e42803 (tree)
Time2022-04-21 21:19:47
AuthorSasaji <sasaji@s-sa...>
CommiterSasaji

Log Message

Version 0.5.2 Release

Change Summary

Incremental Difference

--- a/Makefile.macosx
+++ b/Makefile.macosx
@@ -3,7 +3,7 @@
33 #
44 CC=g++
55
6-APPLICATION_VERSION=0.5.1
6+APPLICATION_VERSION=0.5.2
77
88 CDEFS=
99 DBG_CDEFS=-D_DEBUG -D_DEBUG_LOG
--- a/docs/ChangeLog.txt
+++ b/docs/ChangeLog.txt
@@ -2,6 +2,9 @@
22 更新履歴
33 ==============================================================================
44
5+2021-03-20 Version 0.5.2
6+・PC-8801用のディスクで異常終了することがある不具合を修正した。
7+
58 2020-09-12 Version 0.5.1
69 ・エクスポートしたファイルに元ファイルの日付を反映するようにした。
710 ・インポートしたファイルに元ファイルの日付を設定できるようにした。
--- a/docs/DiskBasicSpec.txt
+++ b/docs/DiskBasicSpec.txt
@@ -1,8 +1,8 @@
11 ==============================================================================
22 L3 Disk Explorer 仕様
3- Version 0.5.1
3+ Version 0.5.2
44
5- Copyright(C) Sasaji 2015-2020 All Rights Reserved.
5+ Copyright(C) Sasaji 2015-2021 All Rights Reserved.
66 ==============================================================================
77
88 ●現在対応しているファイルシステム
--- a/docs/Readme.txt
+++ b/docs/Readme.txt
@@ -1,9 +1,9 @@
11 ==============================================================================
22 L3 Disk Explorer
3- Version 0.5.1
4- 2020/09/12
3+ Version 0.5.2
4+ 2021/03/20
55
6- Copyright(C) Sasaji 2015-2020 All Rights Reserved.
6+ Copyright(C) Sasaji 2015-2021 All Rights Reserved.
77 ==============================================================================
88
99 ● はじめに
--- a/src/basicfmt/basictype_falcom.cpp
+++ b/src/basicfmt/basictype_falcom.cpp
@@ -52,7 +52,7 @@ void DiskBasicTypeFalcom::CalcDiskFreeSize(bool wrote)
5252 fat_availability.SetCount(basic->GetFatEndGroup() + 1, FAT_AVAIL_FREE);
5353
5454 const DiskBasicDirItems *items = dir->GetCurrentItems();
55- for(size_t idx = 0; idx < items->Count(); idx++) {
55+ for(size_t idx = 0; items && idx < items->Count(); idx++) {
5656 DiskBasicDirItem *item = items->Item(idx);
5757 if (!item || !item->IsUsed()) continue;
5858
--- a/src/res/Info.plist
+++ b/src/res/Info.plist
@@ -7,7 +7,7 @@
77 <key>CFBundleExecutable</key>
88 <string>l3diskex</string>
99 <key>CFBundleGetInfoString</key>
10- <string>L3DiskExplorer version 0.5.1, (c) 2015-2020 Sasaji</string>
10+ <string>L3DiskExplorer version 0.5.2, (c) 2015-2021 Sasaji</string>
1111 <key>CFBundleIconFile</key>
1212 <string>l3diskex.icns</string>
1313 <key>CFBundleIdentifier</key>
@@ -19,17 +19,17 @@
1919 <string>jp</string>
2020 </array>
2121 <key>CFBundleLongVersionString</key>
22- <string>0.5.1, (c) 2015-2020 Sasaji</string>
22+ <string>0.5.2, (c) 2015-2021 Sasaji</string>
2323 <key>CFBundleName</key>
2424 <string>L3DiskExproler</string>
2525 <key>CFBundlePackageType</key>
2626 <string>APPL</string>
2727 <key>CFBundleShortVersionString</key>
28- <string>0.5.1</string>
28+ <string>0.5.2</string>
2929 <key>CFBundleSignature</key>
3030 <string>????</string>
3131 <key>CFBundleVersion</key>
32- <string>0.5.1</string>
32+ <string>0.5.2</string>
3333 <key>CSResourcesFileMapped</key>
3434 <true/>
3535 <key>LSApplicationCategoryType</key>
@@ -37,6 +37,6 @@
3737 <key>LSRequiresCarbon</key>
3838 <true/>
3939 <key>NSHumanReadableCopyright</key>
40- <string>Copyright 2015-2020 Sasaji</string>
40+ <string>Copyright 2015-2021 Sasaji</string>
4141 </dict>
4242 </plist>
--- a/src/version.h
+++ b/src/version.h
@@ -1,17 +1,17 @@
11 /// @file version.h
22 ///
3-/// @author Copyright (c) 2015-2020 Sasaji. All rights reserved.
3+/// @author Copyright (c) 2015-2021 Sasaji. All rights reserved.
44 ///
55
66 #ifndef _VERSION_H_
77 #define _VERSION_H_
88
9-#define APPLICATION_VERSION "0.5.1"
9+#define APPLICATION_VERSION "0.5.2"
1010 #define APP_VER_MAJOR 0
1111 #define APP_VER_MINOR 5
12-#define APP_VER_REV 1
12+#define APP_VER_REV 2
1313 #define APP_VER_BUILD 0
14-#define APP_COPYRIGHT "Copyright (C) 2015-2020 Sasaji"
14+#define APP_COPYRIGHT "Copyright (C) 2015-2021 Sasaji"
1515
1616 #if defined(__MINGW32__)
1717 #if defined(x86_64) || defined(__x86_64)