Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/origin/1.270v'
Browse files Browse the repository at this point in the history
  • Loading branch information
killkimno committed Jan 7, 2024
2 parents 52b68d6 + 579d410 commit c6186b3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions MORT/EasyOcrInstaller/EasyOcrInstaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,14 @@ private void SetGpuCommand()
}

_commandLine = _commandLine.Replace("pip3 install ", "");
_commandLine = _commandLine.Replace("pip install ", "");

if (_commandLine.IndexOf("pip3") == 0)
{
var regex = new Regex("pip3");
_commandLine = regex.Replace(_commandLine, "pip", 1);
}
_commandLine = "\"" + _commandLine + "\"";

}

Expand Down
6 changes: 3 additions & 3 deletions MORT/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions MORT/Properties/Settings.settings
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<Profiles />
<Settings>
<Setting Name="MORT_VERSION" Type="System.String" Scope="Application">
<Value Profile="(Default)">1.272V</Value>
<Value Profile="(Default)">1.273V</Value>
</Setting>
<Setting Name="LAYER_TEXT" Type="System.String" Scope="Application">
<Value Profile="(Default)">MORT {0}
레이어 번역창</Value>
</Setting>
<Setting Name="MORT_VERSION_VALUE" Type="System.Int32" Scope="Application">
<Value Profile="(Default)">1272</Value>
<Value Profile="(Default)">1273</Value>
</Setting>
<Setting Name="TOOLTIP_LIST" Type="System.String" Scope="Application">
<Value Profile="(Default)">MORT를 처음 쓰시면 그 외-&gt; MORT 사용법을 확인해 주세요,
Expand Down Expand Up @@ -70,7 +70,7 @@ OCR 영역을 빠르게 추가하고 싶을 땐 빠른 OCR 영역을 사용하
<Value Profile="(Default)">색 영역을 이용해 추출한 문장의 폰트색을 지정합니다.</Value>
</Setting>
<Setting Name="MORT_RELEASE" Type="System.String" Scope="Application">
<Value Profile="(Default)">2023 12 30</Value>
<Value Profile="(Default)">2024 01 07</Value>
</Setting>
<Setting Name="TOOLTIP_MULTI_DB" Type="System.String" Scope="Application">
<Value Profile="(Default)">DB 번역문 검색시 OCR 추출 문장에 포함 된 번역문을 모두 가져옵니다.</Value>
Expand Down
6 changes: 3 additions & 3 deletions MORT/app.config
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,14 @@
<applicationSettings>
<MORT.Properties.Settings>
<setting name="MORT_VERSION" serializeAs="String">
<value>1.272V</value>
<value>1.273V</value>
</setting>
<setting name="LAYER_TEXT" serializeAs="String">
<value>MORT {0}
레이어 번역창</value>
</setting>
<setting name="MORT_VERSION_VALUE" serializeAs="String">
<value>1272</value>
<value>1273</value>
</setting>
<setting name="TOOLTIP_LIST" serializeAs="String">
<value>MORT를 처음 쓰시면 그 외-&gt; MORT 사용법을 확인해 주세요,
Expand Down Expand Up @@ -140,7 +140,7 @@ OCR 영역을 빠르게 추가하고 싶을 땐 빠른 OCR 영역을 사용하
<value>색 영역을 이용해 추출한 문장의 폰트색을 지정합니다.</value>
</setting>
<setting name="MORT_RELEASE" serializeAs="String">
<value>2023 12 30</value>
<value>2024 01 07</value>
</setting>
<setting name="TOOLTIP_MULTI_DB" serializeAs="String">
<value>DB 번역문 검색시 OCR 추출 문장에 포함 된 번역문을 모두 가져옵니다.</value>
Expand Down

0 comments on commit c6186b3

Please sign in to comment.