Skip to content

Commit

Permalink
2020/12/27(sun) RelaxTools-Addin Version 4.27.2(RustRemover)
Browse files Browse the repository at this point in the history
◇バグ修正
・「TimeLeap」のTimeLeapリストで年表示が年間通算日になっており、456年前とかふざけた数字になっていたのを修正。
・「TimeLeap」の「このブックを最新のブックに上書き」を「000」に対して行うとうまくいかない不具合を修正。

◇仕様変更
・「TimeLeap」の「このブックを最新のブックに上書き」を行った場合、履歴を作成しないようにした。
 →仕様の簡略化。上書きの度に履歴を作成していたので、同じ内容のファイルが増えてしまい使い勝手が悪かった。
・「TimeLeap」の初期保存フォルダを変更。
 「%appdata%\RelaxTools-AddinTimeLeap」となっていたのを「%appdata%\RelaxTools-Addin\TimeLeap」に修正。
 以前までのバージョンで、特にTimeLeapの設定を変更したことが無い場合、
 自動的に後者のフォルダがTimeLeapフォルダになります。
 フォルダが変わることにより、履歴が無くなったように表示されるので気を付けてください。
 以前までの履歴を有効にしたい場合、元フォルダからファイルをコピーするか、TimeLeapフォルダを
 元のフォルダに指定してください。
  • Loading branch information
RelaxTools committed Dec 27, 2020
1 parent 75c4af5 commit 5d54dfd
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
Binary file modified RelaxTools.xlam
Binary file not shown.
7 changes: 2 additions & 5 deletions Source/src/Form/frmTimeLeap.frm
Original file line number Diff line number Diff line change
Expand Up @@ -348,15 +348,12 @@ Public Sub execOverwrite()
On Error GoTo e

strBook = lstTimeLeap.List(lstTimeLeap.ListIndex, C_FILE_ORIGINAL)
strBook = rlxGetFullpathFromExt(strBook) & "." & Format(Val(Right$(strBook, 3)) + 1, "000")
strBook = rlxGetFullpathFromExt(strBook) & "." & Format(Val(Right$(strBook, 3)), "000")

strBook2 = WB.FullName

Unload Me

'履歴作成
Call CreateHistory(strBook2)

WB.Close SaveChanges:=False

Set a = New FILETIME
Expand Down Expand Up @@ -648,7 +645,7 @@ Function timeAfter(ByVal s As Date, ByVal d As Date) As String
If lngRet > 31 Then
lngRet = DateDiff("m", s, d)
If lngRet > 12 Then
lngRet = DateDiff("y", s, d)
lngRet = DateDiff("yyyy", s, d)
strRet = CStr(lngRet) & "年前"
Else
If lngRet = 1 Then
Expand Down
2 changes: 1 addition & 1 deletion Source/src/Modules/basTimeLeap.bas
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ Public Function GetTimeLeapFolder() As String

With CreateObject("Scripting.FileSystemObject")

strFolder = .BuildPath(CreateObject("Wscript.Shell").SpecialFolders("AppData"), C_TITLE) & "TimeLeap"
strFolder = .BuildPath(CreateObject("Wscript.Shell").SpecialFolders("AppData"), C_TITLE) & "\TimeLeap"

' If .FolderExists(strFolder) Then
' Else
Expand Down
18 changes: 17 additions & 1 deletion Version.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
2020/12/06(sun) RelaxTools-Addin Version 4.27.1(RustRemover)
2020/12/27(sun) RelaxTools-Addin Version 4.27.2(RustRemover)
◇バグ修正
・「TimeLeap」のTimeLeapリストで年表示が年間通算日になっており、456年前とかふざけた数字になっていたのを修正。
・「TimeLeap」の「このブックを最新のブックに上書き」を「000」に対して行うとうまくいかない不具合を修正。

◇仕様変更
・「TimeLeap」の「このブックを最新のブックに上書き」を行った場合、履歴を作成しないようにした。
 →仕様の簡略化。上書きの度に履歴を作成していたので、同じ内容のファイルが増えてしまい使い勝手が悪かった。
・「TimeLeap」の初期保存フォルダを変更。
 「%appdata%\RelaxTools-AddinTimeLeap」となっていたのを「%appdata%\RelaxTools-Addin\TimeLeap」に修正。
 以前までのバージョンで、特にTimeLeapの設定を変更したことが無い場合、
 自動的に後者のフォルダがTimeLeapフォルダになります。
 フォルダが変わることにより、履歴が無くなったように表示されるので気を付けてください。
 以前までの履歴を有効にしたい場合、元フォルダからファイルをコピーするか、TimeLeapフォルダを
 元のフォルダに指定してください。

2020/12/06(sun) RelaxTools-Addin Version 4.27.1(RustRemover)
◇機能追加
・「RelaxApps」→「背景の設定」を追加
 背景に文字列を表示して注意喚起する機能です。印刷はされませんので注意。
Expand Down

0 comments on commit 5d54dfd

Please sign in to comment.