Compare commits
No commits in common. "246111dee146d4b92dfc2f4ed4891efcbeb33cb9" and "404bba56ab0d1399094b71e4316143d576422b99" have entirely different histories.
246111dee1
...
404bba56ab
4 changed files with 12 additions and 4 deletions
|
|
@ -16,21 +16,20 @@ Cette convention est partagée avec le dépôt
|
||||||
[`postit-debian`](https://forgejo.pschneider.fr/notazof/postit-debian)
|
[`postit-debian`](https://forgejo.pschneider.fr/notazof/postit-debian)
|
||||||
pour la production des paquets `.deb`.
|
pour la production des paquets `.deb`.
|
||||||
|
|
||||||
## [1.0.8-rc3] - unstable
|
## [1.0.8-rc1] - unstable
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
* a code cleanup
|
* a code cleanup
|
||||||
* a failling a disabled test ala Xamarin.UITest : the Android app stil doesn't starts
|
* 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
|
### Changed
|
||||||
|
|
||||||
mostly nothing
|
moslty nothing
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
mostly nothing
|
nothing
|
||||||
|
|
||||||
## [1.0.8-rc1] - unstable
|
## [1.0.8-rc1] - unstable
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -100,6 +100,8 @@ public class AddCircleMemberDialogTests
|
||||||
|
|
||||||
context.Window = new MainWindow();
|
context.Window = new MainWindow();
|
||||||
context.App = (PostIt.App)Application.Current!;
|
context.App = (PostIt.App)Application.Current!;
|
||||||
|
context.App.DataTemplates.Clear();
|
||||||
|
context.App.DataTemplates.Add(new ViewLocator(sp));
|
||||||
context.App.AttachMainWindow(context.Window);
|
context.App.AttachMainWindow(context.Window);
|
||||||
context.Window.Show();
|
context.Window.Show();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -114,6 +114,11 @@ public class MainPageButtonsTests
|
||||||
var window = new MainWindow();
|
var window = new MainWindow();
|
||||||
var page = new MainPage { DataContext = vm };
|
var page = new MainPage { DataContext = vm };
|
||||||
var app = (PostIt.App)Application.Current!;
|
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);
|
app.AttachMainWindow(window);
|
||||||
window.Show();
|
window.Show();
|
||||||
window.NavRoot.PushAsync(page).GetAwaiter().GetResult();
|
window.NavRoot.PushAsync(page).GetAwaiter().GetResult();
|
||||||
|
|
|
||||||
|
|
@ -140,6 +140,8 @@ public class PostAclDialogTests
|
||||||
|
|
||||||
var window = new MainWindow();
|
var window = new MainWindow();
|
||||||
var app = (App)Application.Current!;
|
var app = (App)Application.Current!;
|
||||||
|
app.DataTemplates.Clear();
|
||||||
|
app.DataTemplates.Add(new ViewLocator(sp));
|
||||||
app.AttachMainWindow(window);
|
app.AttachMainWindow(window);
|
||||||
window.Show();
|
window.Show();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue