Programa para permitir comparar binarios directamente, usando la herramienta Diff predeterminada o que se configure
This commit is contained in:
Binary file not shown.
Binary file not shown.
BIN
WinMergePortable/App/WinMerge/MergePlugins/DisplayXMLFiles.dll
Normal file
BIN
WinMergePortable/App/WinMerge/MergePlugins/DisplayXMLFiles.dll
Normal file
Binary file not shown.
BIN
WinMergePortable/App/WinMerge/MergePlugins/IgnoreColumns.dll
Normal file
BIN
WinMergePortable/App/WinMerge/MergePlugins/IgnoreColumns.dll
Normal file
Binary file not shown.
BIN
WinMergePortable/App/WinMerge/MergePlugins/IgnoreCommentsC.dll
Normal file
BIN
WinMergePortable/App/WinMerge/MergePlugins/IgnoreCommentsC.dll
Normal file
Binary file not shown.
BIN
WinMergePortable/App/WinMerge/MergePlugins/IgnoreFieldsComma.dll
Normal file
BIN
WinMergePortable/App/WinMerge/MergePlugins/IgnoreFieldsComma.dll
Normal file
Binary file not shown.
BIN
WinMergePortable/App/WinMerge/MergePlugins/IgnoreFieldsTab.dll
Normal file
BIN
WinMergePortable/App/WinMerge/MergePlugins/IgnoreFieldsTab.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
WinMergePortable/App/WinMerge/MergePlugins/WatchEndOfLog.dll
Normal file
BIN
WinMergePortable/App/WinMerge/MergePlugins/WatchEndOfLog.dll
Normal file
Binary file not shown.
36
WinMergePortable/App/WinMerge/MergePlugins/editor addin.sct
Normal file
36
WinMergePortable/App/WinMerge/MergePlugins/editor addin.sct
Normal file
@@ -0,0 +1,36 @@
|
||||
<scriptlet>
|
||||
|
||||
<implements type="Automation" id="dispatcher">
|
||||
<property name="PluginEvent">
|
||||
<get/>
|
||||
</property>
|
||||
<property name="PluginDescription">
|
||||
<get/>
|
||||
</property>
|
||||
<method name="MakeUpper"/>
|
||||
<method name="MakeLower"/>
|
||||
</implements>
|
||||
|
||||
<script language="VBS">
|
||||
Option Explicit
|
||||
|
||||
Function get_PluginEvent()
|
||||
get_PluginEvent = "EDITOR_SCRIPT"
|
||||
End Function
|
||||
|
||||
Function get_PluginDescription()
|
||||
get_PluginDescription = "Basic text functions for the context menu"
|
||||
End Function
|
||||
|
||||
|
||||
' transformation functions
|
||||
Function MakeUpper(Text)
|
||||
MakeUpper = UCase(Text)
|
||||
End Function
|
||||
|
||||
Function MakeLower(Text)
|
||||
MakeLower = LCase(Text)
|
||||
End Function
|
||||
|
||||
</script>
|
||||
</scriptlet>
|
||||
@@ -0,0 +1,36 @@
|
||||
<scriptlet>
|
||||
|
||||
<implements type="Automation" id="dispatcher">
|
||||
<property name="PluginEvent">
|
||||
<get/>
|
||||
</property>
|
||||
<property name="PluginDescription">
|
||||
<get/>
|
||||
</property>
|
||||
<method name="InsertDate"/>
|
||||
<method name="InsertTime"/>
|
||||
</implements>
|
||||
|
||||
<script language="VBS">
|
||||
Option Explicit
|
||||
|
||||
Function get_PluginEvent()
|
||||
get_PluginEvent = "EDITOR_SCRIPT"
|
||||
End Function
|
||||
|
||||
Function get_PluginDescription()
|
||||
get_PluginDescription = "Basic text functions for the context menu"
|
||||
End Function
|
||||
|
||||
|
||||
' transformation functions
|
||||
Function InsertDate(Text)
|
||||
InsertDate = Text + FormatDateTime(Date, 1)
|
||||
End Function
|
||||
|
||||
Function InsertTime(Text)
|
||||
InsertTime = Text + FormatDateTime(Time, 4)
|
||||
End Function
|
||||
|
||||
</script>
|
||||
</scriptlet>
|
||||
Reference in New Issue
Block a user