Skip to content

Commit

Permalink
Hotfixes (v2.8)
Browse files Browse the repository at this point in the history
  • Loading branch information
hellzerg committed Jan 29, 2022
1 parent 23ec4dc commit adcec32
Show file tree
Hide file tree
Showing 9 changed files with 74 additions and 38 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## [2.8] - 2022-01-29
- Hotfix: Can't change theme and language at the same time (#16)
- Hotfix: Updated translation for Chinese (#16)

## [2.7] - 2022-01-28
- New: Multilingual support (starting with Hellenic and Chinese)

Expand Down
1 change: 1 addition & 0 deletions Hashing/CompareForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public CompareForm()
chkRemove.Text = Options.TranslationList["chkRemove"].ToString();
label2.Text = Options.TranslationList["label2"].ToString();
lblNoMatch.Text = Options.TranslationList["lblNoMatch"].ToString();
this.Text = Options.TranslationList["btnCompare"].ToString();

LoadActiveHash();

Expand Down
4 changes: 4 additions & 0 deletions Hashing/IdenticalsForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ public IdenticalsForm(List<SumResult> list)
Options.ApplyTheme(this);
helperMenu.Renderer = new ToolStripRendererMaterial();

this.Text = Options.TranslationList["btnFindIdenticals"].ToString();
copyToolStripMenuItem.Text = Options.TranslationList["copyToolStripMenuItem"].ToString();
saveAsJSONToolStripMenuItem.Text = Options.TranslationList["btnSaveJson"].ToString();

ConfigureGUI();
_identicals = list;
GetActiveHash();
Expand Down
82 changes: 54 additions & 28 deletions Hashing/OptionsForm.Designer.cs

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

1 change: 1 addition & 0 deletions Hashing/OptionsForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ private void Translate()
chkHigh.Text = Options.TranslationList["chkHigh"].ToString();
okbtn.Text = Options.TranslationList["button7"].ToString();
label3.Text = Options.TranslationList["label3"].ToString();
this.Text = Options.TranslationList["btnOptions"].ToString();
}

private void LoadSettings()
Expand Down
2 changes: 1 addition & 1 deletion Hashing/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ static class Program

// Enter current version here
internal readonly static float Major = 2;
internal readonly static float Minor = 7;
internal readonly static float Minor = 8;

/* END OF VERSION PROPERTIES */

Expand Down
8 changes: 4 additions & 4 deletions Hashing/Resources/CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"btnCancelHashing": "取消",
"btnCancelHashingPressed": "取消中...",
"button7": "同意",
"label3": "期望的哈希:",
"label3": "选择语言",
"btnPaste": "粘贴",
"chkRemove": "移除短横线",
"label2": "结果",
Expand All @@ -21,7 +21,7 @@
"btnAnalyze": "分析JSON文件",
"btnList": "列出JSON文件",
"label27": "选择主题",
"label1": "选择语言",
"label1": "期望的哈希:",
"lbl88": "选择哈希类别",
"chkLower": "小写显示",
"chkCRCFormat": "十进制显示CRC32",
Expand All @@ -40,11 +40,11 @@
"clearToolStripMenuItem": "全部清除",
"newVersion": "有一个新的版本可用!\n\n最新版本: {LATEST}\n当前版本: {CURRENT}\n\n你想现在下载吗?\n\n应用程序将在几秒钟内重新启动.",
"noNewVersion": "您已经是最新的版本!",
"betaVersion": "你使用的是实验版本!",
"betaVersion": "你使用的是测试版本!",
"filesWord": "文件",
"enableSHA256Message": "VirusTotal仅通过其SHA256哈希值识别文件!\n\n你是否希望为此操作开启SHA256?",
"noIdenticalsMessage": "没有找到相同的文件!",
"unsupportedJSON1": "检测到不支持的JSON文件:",
"unsupportedJSON1": "检测到不支持的JSON文件:\n\n",
"unsupportedJSON2": "\n这些文件不会被分析!",
"invalidPath": "无法执行JSON分析. 所有文件路径都无效.",
"corruptedJSON": "由JSON分析的所有文件都已损坏!",
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Simple utility to calculate and compare hashes of multiple files
<p align="center">
<a href="https://github.com/hellzerg/hashing/releases/download/2.7/Hashing-2.7.exe" target="_blank">
<a href="https://github.com/hellzerg/hashing/releases/download/2.8/Hashing-2.8.exe" target="_blank">
<img src="download-button.png">
</a>
</p>
Expand Down Expand Up @@ -44,6 +44,6 @@ https://github.com/hellzerg/hashing/blob/master/IMAGES.md

## Details: ##

* Latest version: 2.7
* Released: January 28, 2022
* SHA256: B3A6EBEADBB3992ABE452B585C8BA3EE4B14D8A16123A8AACDE414501317D39A
* Latest version: 2.8
* Released: January 29, 2022
* SHA256: A0C44D81E6C6AB7ED1BC81D05E6448C0C31BFD9BC212F2541A51A121359FF279
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7
2.8

0 comments on commit adcec32

Please sign in to comment.