From 2182e4772fdd41f6794dc4030331a537e0996f69 Mon Sep 17 00:00:00 2001 From: zkull Date: Thu, 23 May 2024 07:23:58 +0200 Subject: [PATCH 1/2] update github action download/upload-artifact --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6000d1f..fe412d6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,7 +41,7 @@ jobs: CI: '' # disable CI mode as it makes build fail on warnings - name: Upload build to artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: editor path: | @@ -60,7 +60,7 @@ jobs: - name: 'If build on master branch, download artifact' if: ${{ github.ref_name == 'master' }} - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: artifact name: editor From ae7c28317348c5fb4f1e9cff81dce3d6b8243fa0 Mon Sep 17 00:00:00 2001 From: Zach Date: Thu, 23 May 2024 07:28:42 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9d69af0..b323e48 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Generic reference data editor -This is web application using a Json Schema definition to edit a list of records in Json format. +This is a web application using a Json Schema definition to edit a list of Json records. The schema and data can be loaded using different backend providers. -The GUI shows a list of the elements as table, and an edit form if an element is selected. +The GUI shows a list of the records as table, and an edit form if a record is selected. The Json Schema to edit a specified .json file is named .schema.json by convention. The Json Schema is used to create a generic form for editing a record. The form supports arrays and nested objects.