From 1e1a2aa145126c8c3239a6feb1acf56a4f9a2dfd Mon Sep 17 00:00:00 2001 From: Shaun Walker Date: Tue, 24 Nov 2020 10:48:30 -0500 Subject: [PATCH 1/2] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2800b342..356567ac 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,11 @@ There is a separate [Documentation repository](https://github.com/oqtane/oqtane. # Roadmap This project is a work in progress and the schedule for implementing enhancements is dependent upon the availability of community members who are willing/able to assist. +V.2.1.0 ( Q1 2021 ) +- [ ] Complete Static Localization of Admin UI +- [ ] EF Core Migrations for Database Installation/Upgrade +- [ ] Support for Multiple Relational Databases ( ie. SQLite ) + V.2.0.0 ( released in conjuntion with .NET 5 on Nov 11, 2020 ) - [x] Migration to .NET 5 - [x] Static Localization ( ie. labels, help text, etc.. ) @@ -77,8 +82,6 @@ V.1.0.0 ( released in conjunction with .NET Core 3.2 on May 19, 2020 ) - [x] Dynamic CSS/Lazy Loading Future Consideration -- [ ] DB Migrations for Database Installation/Upgrade -- [ ] Support for other Databases ( ie. SQLite ) - [ ] OAuth Support - [ ] Site Configuration Migrations - [ ] Pub/Sub Event Framework From 7fd0c6c3aa36c56f473460d5b791a045b35351fd Mon Sep 17 00:00:00 2001 From: hishamco Date: Thu, 26 Nov 2020 00:04:47 +0300 Subject: [PATCH 2/2] Fix localization issue in ActionLink --- Oqtane.Client/Modules/Controls/ActionLink.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Oqtane.Client/Modules/Controls/ActionLink.razor b/Oqtane.Client/Modules/Controls/ActionLink.razor index b375038d..eacc9813 100644 --- a/Oqtane.Client/Modules/Controls/ActionLink.razor +++ b/Oqtane.Client/Modules/Controls/ActionLink.razor @@ -97,7 +97,7 @@ if (IsLocalizable) { - _text = Localize(nameof(Text)); + _text = Localize(nameof(Text), _text); } _url = EditUrl(Action, _parameters);