Skip to content

Commit

Permalink
Updated screenshots for version 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martinstoeckli committed Nov 29, 2021
1 parent 8ef5e2b commit 41e6e21
Show file tree
Hide file tree
Showing 23 changed files with 6 additions and 1 deletion.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion src/SilentNotes.Shared/Models/DemoNoteRepositoryModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

using System;
using System.Collections.Generic;
using System.Xml.Serialization;

namespace SilentNotes.Models
Expand Down Expand Up @@ -32,6 +33,7 @@ public DemoNoteRepositoryModel()
InRecyclingBin = false,
CreatedAt = DateTime.Parse("2017-09-10T09:25:16.6787213Z"),
ModifiedAt = DateTime.Parse("2018-12-18T12:52:39.8746458Z"),
Tags = new List<string> { "Shopping" },
HtmlContent = @"<h1>Opening hours</h1><h3>Post office</h3><p>Monday - Friday 9:00-12:00 / 13:00-17:00</p><p>Saturday 9:00-12:00</p><h3>Supermarket</h3><p>Monday - Sunday 7:00-22:00</p><h3>Ticket shop</h3><p>Monday - Friday 8:00-18:30</p>"
});

Expand All @@ -43,7 +45,8 @@ public DemoNoteRepositoryModel()
InRecyclingBin = false,
CreatedAt = DateTime.Parse("2017-09-10T09:25:16.6787213Z"),
ModifiedAt = DateTime.Parse("2018-12-18T12:52:39.8746458Z"),
HtmlContent = @"<h1>Shopping list</h1><p class='done'>Milk</p><p class='done'>Toast</p><p>Sun cream</p><p>Garbage bags</p><h1>Bakery</h1><p>Torte</p>"
Tags = new List<string> { "Shopping" },
HtmlContent = @"<h1>Shopping list</h1><p class='done'>Milk</p><p class='done'>Toast</p><p>Sun cream</p><p>Garbage bags</p><h1>Bakery</h1><p>Croissants</p><p>Marmelade</p><p class='disabled'>Torte</p>"
});

Notes.Add(new NoteModel
Expand Down Expand Up @@ -76,6 +79,7 @@ public DemoNoteRepositoryModel()
InRecyclingBin = false,
CreatedAt = DateTime.Parse("2017-09-10T09:35:52.9190418Z"),
ModifiedAt = DateTime.Parse("2018-12-18T12:54:18.333087Z"),
Tags = new List<string> { "Shopping" },
HtmlContent = @"<h1>Printer refill</h1><p>brother DCP-9020CDW</p><p>Cartridge <strong>TN-241* </strong><em>(1400 pages)</em></p><p>Cartridge <strong>TN-245*</strong> <em>(2200 pages)</em></p>"
});

Expand All @@ -87,6 +91,7 @@ public DemoNoteRepositoryModel()
InRecyclingBin = false,
CreatedAt = DateTime.Parse("2018-12-18T12:53:09.3660557Z"),
ModifiedAt = DateTime.Parse("2018-12-18T13:25:55.8335803Z"),
Tags = new List<string> { "Recipes", "Cooking" },
HtmlContent = @"<h1>Recipe Yellow Split Pea Soup</h1><pre class='ql-syntax' spellcheck='false'>1.25 l Water put in pressure cooker.
200 g Yellow beans add to cooker.
2 Bouillon cube crumble and add to cooker.
Expand Down

0 comments on commit 41e6e21

Please sign in to comment.