Skip to content

Commit

Permalink
Bumped up version number
Browse files Browse the repository at this point in the history
  • Loading branch information
veler committed Feb 2, 2022
1 parent 6dbd7b4 commit b972462
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 13 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Many tools are available.
- HTML
- URL
- Base64
- GZip
- JWT Decoder
- Formatters
- JSON
Expand All @@ -43,7 +44,7 @@ Many tools are available.
- Hash (MD5, SHA1, SHA256, SHA512)
- UUID 1 and 4
- Lorem Ipsum
- Check Sum
- Checksum
- Text
- Inspector & Case Converter
- Regex Tester
Expand Down Expand Up @@ -102,12 +103,14 @@ For example, `start devtoys:?tool=jsonyaml` will open DevToys and start on the `

Here is the list of tool name you can use:
- `base64` - Base64 Encoder/Decoder
- `gzip` - GZip Encoder/Decoder
- `hash` - Hash Generator
- `uuid` - UUID Generator
- `loremipsum` - Lorem Ipsum Generator
- `checksum` - Checksum File
- `jsonformat` Json Formatter
- `sqlformat` - SQL Formatter
- `xmlformat` - XML Formatter
- `jsonyaml` - Json <> Yaml
- `jwt` - JWT Decoder
- `colorblind` - Color Blindness Simulator
Expand Down
18 changes: 11 additions & 7 deletions src/dev/impl/DevToys/Assets/ReleaseNote.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
🎉 New Features
• Color Blindness Simulator!
• Lorem Ipsum Generator!
• GZip Compressor / Decompressor!
• Image Converter!
• Checksum Generator!
• SQL Formatter!
• XML Formatter!
👏 Improvements
• Added Indonesian translation
• Added Spanish (Spain & Argentine) translation
• Added German translation
• Minor UI update in encoders / decoders
• Added Polish, Hungarian, Japanese, Traditional Chinese, Italian Chinese translation
• Hash Generator can now output in Base64
• We can now copy the Markdown Preview output
🐛 Bug Fixes
• N/A
• Fixed many minor issues in Number Base Converter, JSON <> YAML Converter, UUID Converter, Settings
• Fixed a few minor UI issues
• Updated DevToys icon to avoid license violation
13 changes: 9 additions & 4 deletions src/dev/impl/DevToys/LanguageDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,17 @@ public LanguageDefinition(string? identifier)
{
if (string.IsNullOrEmpty(identifier))
{
identifier = Windows.System.UserProfile.GlobalizationPreferences.Languages[0];
Culture = new CultureInfo(Windows.System.UserProfile.GlobalizationPreferences.Languages[0]);
DisplayName = new SettingsStrings().DefaultLanguage;
InternalName = "default";
}
else
{
Culture = new CultureInfo(identifier!);
DisplayName = Culture.NativeName;
InternalName = Culture.Name;
}

Culture = new CultureInfo(identifier!);
DisplayName = Culture.NativeName;
InternalName = Culture.Name;
Identifier = Culture.Name;
}
}
Expand Down
2 changes: 1 addition & 1 deletion tools/app-version-number.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1.0
1.0.2.0

0 comments on commit b972462

Please sign in to comment.