Compare commits

..

No commits in common. "246111dee146d4b92dfc2f4ed4891efcbeb33cb9" and "404bba56ab0d1399094b71e4316143d576422b99" have entirely different histories.

4 changed files with 12 additions and 4 deletions

View file

@ -16,21 +16,20 @@ Cette convention est partagée avec le dépôt
[`postit-debian`](https://forgejo.pschneider.fr/notazof/postit-debian)
pour la production des paquets `.deb`.
## [1.0.8-rc3] - unstable
## [1.0.8-rc1] - unstable
### Added
* a code cleanup
* a failling a disabled test ala Xamarin.UITest : the Android app stil doesn't starts
- Android app does not crash any more, but still no home page, only the splash screnn
### Changed
mostly nothing
moslty nothing
### Fixed
mostly nothing
nothing
## [1.0.8-rc1] - unstable

View file

@ -100,6 +100,8 @@ public class AddCircleMemberDialogTests
context.Window = new MainWindow();
context.App = (PostIt.App)Application.Current!;
context.App.DataTemplates.Clear();
context.App.DataTemplates.Add(new ViewLocator(sp));
context.App.AttachMainWindow(context.Window);
context.Window.Show();

View file

@ -114,6 +114,11 @@ public class MainPageButtonsTests
var window = new MainWindow();
var page = new MainPage { DataContext = vm };
var app = (PostIt.App)Application.Current!;
if (vm.Services is not null)
{
app.DataTemplates.Clear();
app.DataTemplates.Add(new ViewLocator(vm.Services));
}
app.AttachMainWindow(window);
window.Show();
window.NavRoot.PushAsync(page).GetAwaiter().GetResult();

View file

@ -140,6 +140,8 @@ public class PostAclDialogTests
var window = new MainWindow();
var app = (App)Application.Current!;
app.DataTemplates.Clear();
app.DataTemplates.Add(new ViewLocator(sp));
app.AttachMainWindow(window);
window.Show();