Skip to content

Commit

Permalink
2021/04/08(thu) RelaxTools-Addin Version 4.27.5(RustRemover)
Browse files Browse the repository at this point in the history
◇バグ修正
・RelaxAppsタブ内の機能名の表記ゆれ #74
・VBAソースエクスポートの誤字 #73
・OneDrive上のファイルをTimeLeap機能を有効状態で保存した場合、「ファイルが見つかりません。」ダイアログが表示 #75
 →動作としては、OneDrive/SharePoint上では履歴が作成されるため、Timeleapの対象外としました。
  • Loading branch information
RelaxTools committed Apr 8, 2021
1 parent a8fa45d commit 520f4f8
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 6 deletions.
Binary file modified RelaxTools.xlam
Binary file not shown.
4 changes: 2 additions & 2 deletions Source/customUI/customUI.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1101,9 +1101,9 @@
</group>
<group id="ConvTableGroup" label="Excel表の変換" image="grid32">
<button id="kantanLine.2" size="large" image="grid32" label="テキスト&#xD;&#xA;変換" getSupertip="RelaxTools.xlam!getSupertip" getDescription="RelaxTools.xlam!getDescription" onAction="RelaxTools.xlam!ribbonOnAction" />
<button id="convertHtml.2" size="large" image="html32" label="html&#xD;&#xA;変換" getSupertip="RelaxTools.xlam!getSupertip" getDescription="RelaxTools.xlam!getDescription" onAction="RelaxTools.xlam!ribbonOnAction" />
<button id="convertHtml.2" size="large" image="html32" label="HTML&#xD;&#xA;変換" getSupertip="RelaxTools.xlam!getSupertip" getDescription="RelaxTools.xlam!getDescription" onAction="RelaxTools.xlam!ribbonOnAction" />
<button id="convertTextile.2" size="large" image="redmine" label="textile&#xD;&#xA;変換" getSupertip="RelaxTools.xlam!getSupertip" getDescription="RelaxTools.xlam!getDescription" onAction="RelaxTools.xlam!ribbonOnAction" />
<button id="convertMarkdown.2" size="large" image="markdown" label="markdown&#xD;&#xA;変換" getSupertip="RelaxTools.xlam!getSupertip" getDescription="RelaxTools.xlam!getDescription" onAction="RelaxTools.xlam!ribbonOnAction" />
<button id="convertMarkdown.2" size="large" image="markdown" label="Markdown&#xD;&#xA;変換" getSupertip="RelaxTools.xlam!getSupertip" getDescription="RelaxTools.xlam!getDescription" onAction="RelaxTools.xlam!ribbonOnAction" />
</group>

<group id="backGroundGroup" label="背景" imageMso="BackgroundImageGallery">
Expand Down
2 changes: 1 addition & 1 deletion Source/src/Form/frmMarkdown.frm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
VERSION 5.00
Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} frmMarkdown
Caption = "表のMarkdown変換"
ClientHeight = 6828
ClientHeight = 6825
ClientLeft = 45
ClientTop = 435
ClientWidth = 11565
Expand Down
2 changes: 1 addition & 1 deletion Source/src/Form/frmRedmine.frm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 5.00
Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} frmRedmine
Caption = "表のTextile変換"
Caption = "表のtextile変換"
ClientHeight = 7200
ClientLeft = 45
ClientTop = 435
Expand Down
2 changes: 1 addition & 1 deletion Source/src/Form/frmSourceExport.frm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 5.00
Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} frmSourceExport
Caption = "VBAソースエクスポート"
Caption = "VBAエクスポート"
ClientHeight = 3360
ClientLeft = 45
ClientTop = 435
Expand Down
5 changes: 5 additions & 0 deletions Source/src/Microsoft Excel Objects/ThisWorkbook.cls
Original file line number Diff line number Diff line change
Expand Up @@ -764,6 +764,11 @@ Private Sub XL_WorkbookAfterSave(ByVal WB As Workbook, ByVal Success As Boolean)
Dim strFolder As String
Dim strFullName As String

'onedrive/sharepoint対策
If Not .FileExists(WB.FullName) Then
GoTo pass
End If

strFolder = GetSetting(C_TITLE, "TimeLeap", "Folder", GetTimeLeapFolder())
If Not .FolderExists(strFolder) Then
.createFolder strFolder
Expand Down
1 change: 1 addition & 0 deletions Source/src/Modules/basMacro.bas
Original file line number Diff line number Diff line change
Expand Up @@ -3802,3 +3802,4 @@ Private Sub SetBackgroundPicture(ByVal Key As String)
ActiveSheet.SetBackgroundPicture filename:=file

End Sub

9 changes: 8 additions & 1 deletion Version.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
2021/03/07(sun) RelaxTools-Addin Version 4.27.4(RustRemover)
2021/04/08(thu) RelaxTools-Addin Version 4.27.5(RustRemover)
◇バグ修正
・RelaxAppsタブ内の機能名の表記ゆれ #74
・VBAソースエクスポートの誤字 #73
・OneDrive上のファイルをTimeLeap機能を有効状態で保存した場合、「ファイルが見つかりません。」ダイアログが表示 #75
 →動作としては、OneDrive/SharePoint上では履歴が作成されるため、Timeleapの対象外としました。

2021/03/07(sun) RelaxTools-Addin Version 4.27.4(RustRemover)
◇バグ修正
・Grep置換で「読み取り専用推奨」設定のファイルが置換できない #54

Expand Down

0 comments on commit 520f4f8

Please sign in to comment.