Skip to content

Commit b972462

Browse files
committed
Bumped up version number
1 parent 6dbd7b4 commit b972462

File tree

4 files changed

+25
-13
lines changed

4 files changed

+25
-13
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ Many tools are available.
3434
- HTML
3535
- URL
3636
- Base64
37+
- GZip
3738
- JWT Decoder
3839
- Formatters
3940
- JSON
@@ -43,7 +44,7 @@ Many tools are available.
4344
- Hash (MD5, SHA1, SHA256, SHA512)
4445
- UUID 1 and 4
4546
- Lorem Ipsum
46-
- Check Sum
47+
- Checksum
4748
- Text
4849
- Inspector & Case Converter
4950
- Regex Tester
@@ -102,12 +103,14 @@ For example, `start devtoys:?tool=jsonyaml` will open DevToys and start on the `
102103

103104
Here is the list of tool name you can use:
104105
- `base64` - Base64 Encoder/Decoder
106+
- `gzip` - GZip Encoder/Decoder
105107
- `hash` - Hash Generator
106108
- `uuid` - UUID Generator
107109
- `loremipsum` - Lorem Ipsum Generator
108110
- `checksum` - Checksum File
109111
- `jsonformat` Json Formatter
110112
- `sqlformat` - SQL Formatter
113+
- `xmlformat` - XML Formatter
111114
- `jsonyaml` - Json <> Yaml
112115
- `jwt` - JWT Decoder
113116
- `colorblind` - Color Blindness Simulator
Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
🎉 New Features
2-
• Color Blindness Simulator!
3-
• Lorem Ipsum Generator!
2+
• GZip Compressor / Decompressor!
3+
• Image Converter!
4+
• Checksum Generator!
5+
• SQL Formatter!
6+
• XML Formatter!
47
👏 Improvements
5-
• Added Indonesian translation
6-
• Added Spanish (Spain & Argentine) translation
7-
• Added German translation
8-
• Minor UI update in encoders / decoders
8+
• Added Polish, Hungarian, Japanese, Traditional Chinese, Italian Chinese translation
9+
• Hash Generator can now output in Base64
10+
• We can now copy the Markdown Preview output
911
🐛 Bug Fixes
10-
• N/A
12+
• Fixed many minor issues in Number Base Converter, JSON <> YAML Converter, UUID Converter, Settings
13+
• Fixed a few minor UI issues
14+
• Updated DevToys icon to avoid license violation

src/dev/impl/DevToys/LanguageDefinition.cs

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,17 @@ public LanguageDefinition(string? identifier)
3838
{
3939
if (string.IsNullOrEmpty(identifier))
4040
{
41-
identifier = Windows.System.UserProfile.GlobalizationPreferences.Languages[0];
41+
Culture = new CultureInfo(Windows.System.UserProfile.GlobalizationPreferences.Languages[0]);
42+
DisplayName = new SettingsStrings().DefaultLanguage;
43+
InternalName = "default";
44+
}
45+
else
46+
{
47+
Culture = new CultureInfo(identifier!);
48+
DisplayName = Culture.NativeName;
49+
InternalName = Culture.Name;
4250
}
4351

44-
Culture = new CultureInfo(identifier!);
45-
DisplayName = Culture.NativeName;
46-
InternalName = Culture.Name;
4752
Identifier = Culture.Name;
4853
}
4954
}

tools/app-version-number.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.1.0
1+
1.0.2.0

0 commit comments

Comments
 (0)