dependabot[bot]
ea5c3b7056
Bump Eto.Forms from 2.9.0 to 2.10.2 ( #110 )
...
---
updated-dependencies:
- dependency-name: Eto.Forms
dependency-version: 2.10.2
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eto
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6 months ago
dependabot[bot]
5b23c209e7
Bump the eto group with 4 updates ( #85 )
...
Bumps the eto group with 4 updates: [Eto.Forms](https://github.com/picoe/Eto ), [Eto.Platform.Gtk](https://github.com/picoe/Eto ), [Eto.Platform.macOS](https://github.com/picoe/Eto ) and [Eto.Platform.Wpf](https://github.com/picoe/Eto ).
Updates `Eto.Forms` from 2.8.3 to 2.9.0
- [Release notes](https://github.com/picoe/Eto/releases )
- [Commits](https://github.com/picoe/Eto/compare/2.8.3...2.9.0 )
Updates `Eto.Platform.Gtk` from 2.8.3 to 2.9.0
- [Release notes](https://github.com/picoe/Eto/releases )
- [Commits](https://github.com/picoe/Eto/compare/2.8.3...2.9.0 )
Updates `Eto.Platform.macOS` from 2.8.3 to 2.9.0
- [Release notes](https://github.com/picoe/Eto/releases )
- [Commits](https://github.com/picoe/Eto/compare/2.8.3...2.9.0 )
Updates `Eto.Platform.Wpf` from 2.8.3 to 2.9.0
- [Release notes](https://github.com/picoe/Eto/releases )
- [Commits](https://github.com/picoe/Eto/compare/2.8.3...2.9.0 )
---
updated-dependencies:
- dependency-name: Eto.Forms
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eto
- dependency-name: Eto.Platform.Gtk
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eto
- dependency-name: Eto.Platform.macOS
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eto
- dependency-name: Eto.Platform.Wpf
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eto
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 year ago
LiveLM
ccfe790b5f
Update Eto to 2.8.3 ( #57 )
2 years ago
LiveLM
a62306184e
Remove CurrentFilter because it breaks Flatpak file picker portals and is unnecessary ( #54 )
2 years ago
LiveLM
f78733366c
Use String.IsNullOrWhiteSpace instead of checking manually ( #52 )
2 years ago
LiveLM
74156d4a07
Update to dotnet 8.0 ( #46 )
2 years ago
LiveLM
963ba1704c
Create a single Regex and fill it depending on the current OS ( #45 )
...
* Create a single Regex and fill it according to the current OS.
* Throw error if using unknown OS
* Move single to double slash .replace to Windows conditional
* Fix comment
* Remove unnecessary Regex element
2 years ago
Miepee
d1365e0c33
Fix #31
2 years ago
Miepee
745ce4402a
Make settings form disable original form.
2 years ago
Miepee
b2555c92bb
Add french and german
2 years ago
dependabot[bot]
6e2a1998c7
Bump Eto.Platform.Wpf and Eto.Forms ( #30 )
...
Bumps [Eto.Platform.Wpf](https://github.com/picoe/Eto ) and [Eto.Forms](https://github.com/picoe/Eto ). These dependencies needed to be updated together.
Updates `Eto.Platform.Wpf` from 2.7.2 to 2.8.2
- [Release notes](https://github.com/picoe/Eto/releases )
- [Commits](https://github.com/picoe/Eto/compare/2.7.2...2.8.2 )
Updates `Eto.Forms` from 2.7.2 to 2.8.2
- [Release notes](https://github.com/picoe/Eto/releases )
- [Commits](https://github.com/picoe/Eto/compare/2.7.2...2.8.2 )
---
updated-dependencies:
- dependency-name: Eto.Platform.Wpf
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: Eto.Forms
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2 years ago
Miepee
1cfd9d7d97
Add japanese, russian, chinese translation
2 years ago
Miepee
f5e755a21f
Attempt to add in spanish translation
2 years ago
LiveLM
5662fbb826
Use String.Format instead of Replace ( #18 )
...
* Use String.Format instead of .Replace
* Also change occurrences I missed
* Change even more occurences I missed
3 years ago
Miepee
c341909d88
Add more tests, and better coverage
3 years ago
Miepee
cd20ab9d88
Clarify todo
3 years ago
Miepee
2dbda2cd5a
Make messageboxes have a parent
3 years ago
Miepee
b30c3c6340
Slightly clean up formatting + add todo
3 years ago
LiveLM
65c70fa9be
Implement Settings ( #12 )
...
* Add settings class
* Serialize settings to XML when settings window is closed
* Rename Settings class to Config
* Create functions for loading, saving and creating the default config
* Use the new functions to write ConfigXML to disk when settings window is closed
* Load config on startup + move default config from constructor to function
* Move Config out of XML Folder
* Implement saving and restoring field info
* Fix unnecessary object creation and XML Attribute names
* Save "SystemLanguage" option to config properly
* Load text dynamically + Choose proper language when "SystemLanguage" is selected
* Restore SystemLanguage setting properly + Make System Language the default
* Fix typo in English locale
* Change XmlRoot attributes to more descriptive ones
* Move Config saving when closing application to a separate method
* Move Config saving when closing Settings window to separate method
* Use path.combine properly
* Make LoadAndReturnConfig more concise
* Reset to SystemLanguage if trying to load a invalid language
* Enable Fill in fields by default
* Add documentation to Config.cs and FieldContents.cs
3 years ago
Miepee
be653aae76
Add initial settings form + menu items
3 years ago
Miepee
0ff2c26e6c
Fix autogenerating language file + typos
3 years ago
Miepee
1a3a07f677
Fix compilation error after adding languages
3 years ago
Miepee
b7e01ee3c2
Add initial localization support
3 years ago
Miepee
5eda3dacc6
Rephrase Android slightly
...
Partly address #11
3 years ago
Miepee
078991d62d
Revert "Update Eto"
...
This reverts commit d202aa01a4 .
3 years ago
Miepee
d202aa01a4
Update Eto
3 years ago
Miepee
30ac639ba1
Trim mod name from whitespaces before using
3 years ago
Miepee
ebc7f6798f
Adjust splitter right side and position
4 years ago
Miepee
e8374daf9c
Make projects future .net compatible
4 years ago
Miepee
a744cf2363
Replace icons for new atomic + version bump
4 years ago
Miepee
4acb79207f
Fix issues with namespaces after rebrand
4 years ago
Miepee
c8cbc52f95
Rebrand to Atomic
4 years ago