From 847236044da01096beae4a586c874b4980f21a55 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Mon, 7 Jun 2021 18:55:41 +0200 Subject: [PATCH 1/4] Update CHANGELOG.md --- docs/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 9d55078c6..7d395d092 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -55,7 +55,7 @@ v8 is a major change and therefore it's not backward compatible with v7. ### Driver changes - `lv_disp_drv_t`, `lv_indev_drv_t`, `lv_fs_drv_t` needs to be `static` -- `...disp_buf...` is renamed to `draw_buf`. See an initialization example [here](https://github.com/lvgl/lv_sim_eclipse_sdl/blob/e164e3591c3e1e3bf3464d19e0dcdc67b2e6a791/main.c#L87-L97). +- `...disp_buf...` is renamed to `draw_buf`. See an initialization example [here](https://github.com/lvgl/lv_sim_eclipse_sdl/blob/release/v8.0/main.c#L128-L141). - No partial update if two screen sized buffers are set - `disp_drv->full_refresh = 1` makes always the whole display redraw. - `hor_res` and `ver_res` need to be set in `disp_drv` From 34b85848179ddd3b50d1a99fbc222f5921460348 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Mon, 7 Jun 2021 19:05:22 +0200 Subject: [PATCH 2/4] Update README.md --- src/extra/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/extra/README.md b/src/extra/README.md index efbb915fe..bd564a74c 100644 --- a/src/extra/README.md +++ b/src/extra/README.md @@ -13,10 +13,10 @@ In other words, if you have created a complex widget from other widgets, or modi - Add description in the [docs](https://github.com/lvgl/lvgl/tree/master/docs) - Add [examples](https://github.com/lvgl/lvgl/tree/master/examples) - Update the [changelog](https://github.com/lvgl/lvgl/tree/master/docs/CHANGELOG.md) -- Add yourself to the [Contributors](#contributors) section below. :slight_smile: +- Add yourself to the [Contributors](#contributors) section below. ## Ideas -Here some ideas as inspiration feel free to contribute with ideas too :slight_smile: +Here some ideas as inspiration feel free to contribute with ideas too. - New [Calendar headers](https://github.com/lvgl/lvgl/tree/master/src/extra/widgets/calendar) - Color picker with RGB and or HSV bars - Ruler, horizontal or vertical with major and minor ticks and labels From 6d05692d7820a2b833751d6881704b283f1fe618 Mon Sep 17 00:00:00 2001 From: embeddedt <42941056+embeddedt@users.noreply.github.com> Date: Mon, 7 Jun 2021 13:09:16 -0400 Subject: [PATCH 3/4] chore(docs) always deploy master to docs/master as well --- .github/workflows/compile_docs.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compile_docs.yml b/.github/workflows/compile_docs.yml index 18727b347..763192917 100644 --- a/.github/workflows/compile_docs.yml +++ b/.github/workflows/compile_docs.yml @@ -62,7 +62,7 @@ jobs: run: | echo "::set-output name=VERSION_NAME::$(scripts/find_version.sh)" id: version - - name: Deploy + - name: Deploy to subfolder uses: JamesIves/github-pages-deploy-action@3.7.1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -73,3 +73,15 @@ jobs: TARGET_FOLDER: ${{ steps.version.outputs.VERSION_NAME }} PRESERVE: true SINGLE_COMMIT: true + - name: Deploy to master + if: github.ref == 'refs/heads/master' + uses: JamesIves/github-pages-deploy-action@3.7.1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + ACCESS_TOKEN: ${{ secrets.LVGL_BOT_TOKEN }} + REPOSITORY_NAME: lvgl/docs + BRANCH: gh-pages # The branch the action should deploy to. + FOLDER: out_html # The folder the action should deploy. + TARGET_FOLDER: master + PRESERVE: true + SINGLE_COMMIT: true From 4a0f4139eb98e73b37abf62f66e2cf1c5d4e58db Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Mon, 7 Jun 2021 20:01:19 +0200 Subject: [PATCH 4/4] chore(docs) force docs rebuild --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 340995a68..bc0d8ef2e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,3 @@ -**The master branch now contains the test version of v8. For the last v7 version use the release/v7 branch.** - -

LVGL - Light and Versatile Graphics Library