From 717e15f8f4a884923864651c926969887bc7e178 Mon Sep 17 00:00:00 2001 From: Andrew Sazonov Date: Fri, 30 Aug 2024 22:45:28 +0200 Subject: [PATCH] Update descriptions --- EXAMPLES.md | 6 +++--- README.md | 10 ++++++++-- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/EXAMPLES.md b/EXAMPLES.md index b8de786..a7e4b90 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -1,14 +1,14 @@ ## Types of examples -Different types of examples are provided. All examples have a frontend implemented in QML but differ in how the backend logic is implemented and the applied runtime. These examples can be categorised as shown in the following table: +Different types of examples are provided. All examples have a graphical frontend implemented in QML, but differ in the way the backend logic is implemented and the runtime used to run them. These examples can be categorised as shown in the following table: -| Example | Type | Frontend | Backend | Runtime | +| Example | Type | Frontend | Backend | Runtime | | -------------- | ---- | -------- | -------- | -------------------- | | BasicQml | I | QML | Mock QML | `qml` tool | | BasicPy | II | QML | Mock QML | `python` interpreter | +| BasicC++ | IV | QML | Mock QML | need to be compiled | | IntermediatePy | III | QML | Python | `python` interpreter | | AdvancedPy | III | QML | Python | `python` interpreter | -| BasicC++ | IV | QML | Mock QML | need to be compiled | ## Setting up Python and IDE diff --git a/README.md b/README.md index 28ccc05..ebef0d3 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,12 @@ EasyApp is currently being used as the basis for the graphical interface in the * [EasyReflectometry](http://github.com/EasyScience/EasyReflectometry) * [EasyTexture](http://github.com/EasyScience/EasyTextureApp) -More simple examples of using EasyApp are described in [EXAMPLES.md](EXAMPLES.md). +More simple examples of how to use EasyApp are described in [EXAMPLES.md](EXAMPLES.md) and presented in the [examples](examples) directory: -If you want to see what EasyApp looks like, you can try the web demo at https://easyscience.github.io/EasyApp/BasicC++.html. +* [BasicQml](examples/BasicQml) +* [BasicPy](examples/BasicPy) +* [BasicC++](examples/BasicC++) +* [IntermediatePy](examples/IntermediatePy) +* [AdvancedPy](examples/AdvancedPy) + +If you want to see what EasyApp looks like, you can try the web demo based on the [BasicC++](examples/BasicC++) example at https://easyscience.github.io/EasyApp/BasicC++.html.