From d5e94a95b6d6a5fe2cf17e3076875482c6e3d400 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sun, 14 Apr 2024 01:52:43 +0000 Subject: [PATCH] Auto-generated commit --- .github/workflows/publish.yml | 1 - .github/workflows/test.yml | 1 - .github/workflows/test_coverage.yml | 5 +++-- .github/workflows/test_install.yml | 1 - presentation/data/example.json | 2 +- presentation/data/help.json | 2 +- presentation/data/info.json | 2 +- 7 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5073f328..07dc6f44 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -176,7 +176,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5ba1865e..e33e456f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -95,6 +95,5 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index f5410ddf..2bcf0cdf 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -84,11 +84,13 @@ jobs: - name: 'Upload coverage to Codecov' id: upload # Pin action to full length commit SHA - uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4 + uses: codecov/codecov-action@84508663e988701840491b86de86b666e8a86bed # v4.3.0 with: directory: reports/coverage flags: unittests fail_ci_if_error: true + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} # Extract coverage value: - name: 'Extract coverage value and assign to output' @@ -117,7 +119,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index 357d44d2..2ac1a8bf 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -81,6 +81,5 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/presentation/data/example.json b/presentation/data/example.json index 43666db0..9d785919 100644 --- a/presentation/data/example.json +++ b/presentation/data/example.json @@ -1 +1 @@ -{"blank":"blank();\n","currentSlide":"currentSlide\n","end":"end();\n","first":"first();\n","firstFragment":"firstFragment();\n","jump":"jump( 2 );\njump( -2 );\n","jumpTo":"jumpTo( 2 );\n","last":"last();\n","lastFragment":"lastFragment();\n","loadPresentation":"loadPresentation( './path/to/presentation.txt' );\n","next":"next();\n","nextSlide":"nextSlide();\n","numSlides":"numSlides\n","pres":"pres();\n","prev":"prev();\n","prevSlide":"prevSlide();\n","redraw":"redraw();\n","reloadPresentation":"reloadPresentation();\n","renderSlide":"renderSlide()\n","runSlide":"runSlide()\n","unwatch":"unwatch();\n","watch":"watch();\n"} \ No newline at end of file +{"blank":"blank();\n","currentSlide":"currentSlide\n","end":"end();\n","first":"first();\n","firstFragment":"firstFragment();\n","jump":"jump( 2 );\njump( -2 );\n","jumpTo":"jumpTo( 2 );\n","last":"last();\n","lastFragment":"lastFragment();\n","loadPresentation":"loadPresentation( './path/to/presentation.txt' );\n","next":"next();\n","nextSlide":"nextSlide();\n","numSlides":"numSlides\n","pres":"pres();\n","prev":"prev();\n","prevSlide":"prevSlide();\n","redraw":"redraw();\n","reloadPresentation":"reloadPresentation();\n","renderSlide":"renderSlide()\n","runSlide":"runSlide()\n","unwatch":"unwatch();\n","watch":"watch();\n"} diff --git a/presentation/data/help.json b/presentation/data/help.json index 288457ca..af803f88 100644 --- a/presentation/data/help.json +++ b/presentation/data/help.json @@ -1 +1 @@ -{"blank":"\nblank()\n Renders a blank screen.\n\n Examples\n --------\n > blank();\n\n See Also\n --------\n next, nextSlide, prev, prevSlide, redraw\n\n","currentSlide":"\ncurrentSlide\n Returns the current presentation slide index.\n\n The returned index is the nominal (i.e., one-based) slide index.\n\n Returns\n -------\n idx: integer\n Current presentation slide index.\n\n Examples\n --------\n > currentSlide\n\n See Also\n --------\n jumpTo, next, numSlides, prev\n\n","end":"\nend()\n Jumps to the last fragment of the last slide.\n\n Examples\n --------\n > end();\n\n See Also\n --------\n first, jumpTo, last, next, prev\n\n","first":"\nfirst()\n Jumps to the first slide.\n\n Examples\n --------\n > first();\n\n See Also\n --------\n end, jumpTo, last, next, prev\n\n","firstFragment":"\nfirstFragment()\n Jumps to the first fragment of the current slide.\n\n Examples\n --------\n > firstFragment();\n\n See Also\n --------\n lastFragment, next, prev\n\n","jump":"\njump( n )\n Jumps a specified number of slides.\n\n Parameters\n ----------\n n: integer\n \tNumber of slides to jump.\n\n Examples\n --------\n // Jump two slides forward:\n > jump( 2 );\n\n // Jump two slides backward:\n > jump( -2 );\n\n See Also\n --------\n jumpTo, next, prev\n\n","jumpTo":"\njumpTo( n )\n Jumps to a specified slide, where `n` is the nominal slide number.\n\n Parameters\n ----------\n n: integer\n \tNominal slide number (one-based).\n\n Examples\n --------\n > jumpTo( 2 );\n\n See Also\n --------\n jump, next, prev\n\n","last":"\nlast()\n Jumps to the last slide.\n\n Examples\n --------\n > last();\n\n See Also\n --------\n end, first, jumpTo, next, prev\n\n","lastFragment":"\nlastFragment()\n Jumps to the last fragment of the current slide.\n\n Examples\n --------\n > lastFragment();\n\n See Also\n --------\n firstFragment, next, prev\n\n","loadPresentation":"\nloadPresentation( file )\n Loads a presentation from a file.\n\n Relative file paths are resolved relative to the current working directory.\n\n Parameters\n ----------\n file: string\n \tFile path.\n\n Examples\n --------\n > loadPresentation( './path/to/presentation.txt' );\n\n See Also\n --------\n reloadPresentation\n\n","next":"\nnext()\n Moves the presentation to the next slide or slide fragment.\n\n Examples\n --------\n > next();\n\n See Also\n --------\n first, jumpTo, last, nextSlide, prev\n\n","nextSlide":"\nnextSlide()\n Moves the presentation to the next slide.\n\n Examples\n --------\n > nextSlide();\n\n See Also\n --------\n first, jumpTo, last, next, prev, prevSlide\n\n","numSlides":"\nnumSlides\n Returns the presentation length.\n\n Returns\n -------\n len: integer\n Number of slides.\n\n Examples\n --------\n > numSlides\n\n See Also\n --------\n currentSlide, jumpTo, next, prev\n\n","pres":"\npres()\n Prints presentation help text and shortcuts.\n\n Examples\n --------\n > pres();\n\n See Also\n --------\n help, info\n\n","prev":"\nprev()\n Moves the presentation to the previous slide or slide fragment.\n\n Examples\n --------\n > prev();\n\n See Also\n --------\n first, jumpTo, last, next, prevSlide\n\n","prevSlide":"\nprevSlide()\n Moves the presentation to the previous slide.\n\n Examples\n --------\n > prevSlide();\n\n See Also\n --------\n first, jumpTo, last, next, nextSlide, prev\n\n","redraw":"\nredraw()\n Redraws the current presentation slide.\n\n Examples\n --------\n > redraw();\n\n See Also\n --------\n next, nextSlide, prev, prevSlide, reloadPresentation\n\n","reloadPresentation":"\nreloadPresentation( file )\n Reloads a presentation.\n\n Examples\n --------\n > reloadPresentation();\n\n See Also\n --------\n loadPresentation, redraw\n\n","renderSlide":"\nrenderSlide()\n Renders the current presentation slide.\n\n Examples\n --------\n > renderSlide()\n\n See Also\n --------\n load\n\n","runSlide":"\nrunSlide()\n Runs slide code.\n\n Examples\n --------\n > runSlide()\n\n See Also\n --------\n next, prev\n\n","unwatch":"\nunwatch( [error] )\n Stops watching a presentation file for changes.\n\n Parameters\n ----------\n error: Error (optional)\n \tError object.\n\n Examples\n --------\n > unwatch();\n\n See Also\n --------\n loadPresentation, redraw, reloadPresentation, watch\n\n","watch":"\nwatch()\n Watches a presentation source file for changes.\n\n \"Renaming\" a source file is *not* tracked. If a source presentation file is\n renamed, watching stops.\n\n Examples\n --------\n > watch();\n\n See Also\n --------\n loadPresentation, redraw, reloadPresentation, unwatch\n\n"} \ No newline at end of file +{"blank":"\nblank()\n Renders a blank screen.\n\n Examples\n --------\n > blank();\n\n See Also\n --------\n next, nextSlide, prev, prevSlide, redraw\n\n","currentSlide":"\ncurrentSlide\n Returns the current presentation slide index.\n\n The returned index is the nominal (i.e., one-based) slide index.\n\n Returns\n -------\n idx: integer\n Current presentation slide index.\n\n Examples\n --------\n > currentSlide\n\n See Also\n --------\n jumpTo, next, numSlides, prev\n\n","end":"\nend()\n Jumps to the last fragment of the last slide.\n\n Examples\n --------\n > end();\n\n See Also\n --------\n first, jumpTo, last, next, prev\n\n","first":"\nfirst()\n Jumps to the first slide.\n\n Examples\n --------\n > first();\n\n See Also\n --------\n end, jumpTo, last, next, prev\n\n","firstFragment":"\nfirstFragment()\n Jumps to the first fragment of the current slide.\n\n Examples\n --------\n > firstFragment();\n\n See Also\n --------\n lastFragment, next, prev\n\n","jump":"\njump( n )\n Jumps a specified number of slides.\n\n Parameters\n ----------\n n: integer\n \tNumber of slides to jump.\n\n Examples\n --------\n // Jump two slides forward:\n > jump( 2 );\n\n // Jump two slides backward:\n > jump( -2 );\n\n See Also\n --------\n jumpTo, next, prev\n\n","jumpTo":"\njumpTo( n )\n Jumps to a specified slide, where `n` is the nominal slide number.\n\n Parameters\n ----------\n n: integer\n \tNominal slide number (one-based).\n\n Examples\n --------\n > jumpTo( 2 );\n\n See Also\n --------\n jump, next, prev\n\n","last":"\nlast()\n Jumps to the last slide.\n\n Examples\n --------\n > last();\n\n See Also\n --------\n end, first, jumpTo, next, prev\n\n","lastFragment":"\nlastFragment()\n Jumps to the last fragment of the current slide.\n\n Examples\n --------\n > lastFragment();\n\n See Also\n --------\n firstFragment, next, prev\n\n","loadPresentation":"\nloadPresentation( file )\n Loads a presentation from a file.\n\n Relative file paths are resolved relative to the current working directory.\n\n Parameters\n ----------\n file: string\n \tFile path.\n\n Examples\n --------\n > loadPresentation( './path/to/presentation.txt' );\n\n See Also\n --------\n reloadPresentation\n\n","next":"\nnext()\n Moves the presentation to the next slide or slide fragment.\n\n Examples\n --------\n > next();\n\n See Also\n --------\n first, jumpTo, last, nextSlide, prev\n\n","nextSlide":"\nnextSlide()\n Moves the presentation to the next slide.\n\n Examples\n --------\n > nextSlide();\n\n See Also\n --------\n first, jumpTo, last, next, prev, prevSlide\n\n","numSlides":"\nnumSlides\n Returns the presentation length.\n\n Returns\n -------\n len: integer\n Number of slides.\n\n Examples\n --------\n > numSlides\n\n See Also\n --------\n currentSlide, jumpTo, next, prev\n\n","pres":"\npres()\n Prints presentation help text and shortcuts.\n\n Examples\n --------\n > pres();\n\n See Also\n --------\n help, info\n\n","prev":"\nprev()\n Moves the presentation to the previous slide or slide fragment.\n\n Examples\n --------\n > prev();\n\n See Also\n --------\n first, jumpTo, last, next, prevSlide\n\n","prevSlide":"\nprevSlide()\n Moves the presentation to the previous slide.\n\n Examples\n --------\n > prevSlide();\n\n See Also\n --------\n first, jumpTo, last, next, nextSlide, prev\n\n","redraw":"\nredraw()\n Redraws the current presentation slide.\n\n Examples\n --------\n > redraw();\n\n See Also\n --------\n next, nextSlide, prev, prevSlide, reloadPresentation\n\n","reloadPresentation":"\nreloadPresentation( file )\n Reloads a presentation.\n\n Examples\n --------\n > reloadPresentation();\n\n See Also\n --------\n loadPresentation, redraw\n\n","renderSlide":"\nrenderSlide()\n Renders the current presentation slide.\n\n Examples\n --------\n > renderSlide()\n\n See Also\n --------\n load\n\n","runSlide":"\nrunSlide()\n Runs slide code.\n\n Examples\n --------\n > runSlide()\n\n See Also\n --------\n next, prev\n\n","unwatch":"\nunwatch( [error] )\n Stops watching a presentation file for changes.\n\n Parameters\n ----------\n error: Error (optional)\n \tError object.\n\n Examples\n --------\n > unwatch();\n\n See Also\n --------\n loadPresentation, redraw, reloadPresentation, watch\n\n","watch":"\nwatch()\n Watches a presentation source file for changes.\n\n \"Renaming\" a source file is *not* tracked. If a source presentation file is\n renamed, watching stops.\n\n Examples\n --------\n > watch();\n\n See Also\n --------\n loadPresentation, redraw, reloadPresentation, unwatch\n\n"} diff --git a/presentation/data/info.json b/presentation/data/info.json index 48d2b59d..a3fa6a1d 100644 --- a/presentation/data/info.json +++ b/presentation/data/info.json @@ -1 +1 @@ -{"blank":"\nblank()\n Renders a blank screen.\n","currentSlide":"\ncurrentSlide\n Returns the current presentation slide index.\n","end":"\nend()\n Jumps to the last fragment of the last slide.\n","first":"\nfirst()\n Jumps to the first slide.\n","firstFragment":"\nfirstFragment()\n Jumps to the first fragment of the current slide.\n","jump":"\njump( n )\n Jumps a specified number of slides.\n","jumpTo":"\njumpTo( n )\n Jumps to a specified slide, where `n` is the nominal slide number.\n","last":"\nlast()\n Jumps to the last slide.\n","lastFragment":"\nlastFragment()\n Jumps to the last fragment of the current slide.\n","loadPresentation":"\nloadPresentation( file )\n Loads a presentation from a file.\n","next":"\nnext()\n Moves the presentation to the next slide or slide fragment.\n","nextSlide":"\nnextSlide()\n Moves the presentation to the next slide.\n","numSlides":"\nnumSlides\n Returns the presentation length.\n","pres":"\npres()\n Prints presentation help text and shortcuts.\n","prev":"\nprev()\n Moves the presentation to the previous slide or slide fragment.\n","prevSlide":"\nprevSlide()\n Moves the presentation to the previous slide.\n","redraw":"\nredraw()\n Redraws the current presentation slide.\n","reloadPresentation":"\nreloadPresentation( file )\n Reloads a presentation.\n","renderSlide":"\nrenderSlide()\n Renders the current presentation slide.\n","runSlide":"\nrunSlide()\n Runs slide code.\n","unwatch":"\nunwatch( [error] )\n Stops watching a presentation file for changes.\n","watch":"\nwatch()\n Watches a presentation source file for changes.\n"} \ No newline at end of file +{"blank":"\nblank()\n Renders a blank screen.\n","currentSlide":"\ncurrentSlide\n Returns the current presentation slide index.\n","end":"\nend()\n Jumps to the last fragment of the last slide.\n","first":"\nfirst()\n Jumps to the first slide.\n","firstFragment":"\nfirstFragment()\n Jumps to the first fragment of the current slide.\n","jump":"\njump( n )\n Jumps a specified number of slides.\n","jumpTo":"\njumpTo( n )\n Jumps to a specified slide, where `n` is the nominal slide number.\n","last":"\nlast()\n Jumps to the last slide.\n","lastFragment":"\nlastFragment()\n Jumps to the last fragment of the current slide.\n","loadPresentation":"\nloadPresentation( file )\n Loads a presentation from a file.\n","next":"\nnext()\n Moves the presentation to the next slide or slide fragment.\n","nextSlide":"\nnextSlide()\n Moves the presentation to the next slide.\n","numSlides":"\nnumSlides\n Returns the presentation length.\n","pres":"\npres()\n Prints presentation help text and shortcuts.\n","prev":"\nprev()\n Moves the presentation to the previous slide or slide fragment.\n","prevSlide":"\nprevSlide()\n Moves the presentation to the previous slide.\n","redraw":"\nredraw()\n Redraws the current presentation slide.\n","reloadPresentation":"\nreloadPresentation( file )\n Reloads a presentation.\n","renderSlide":"\nrenderSlide()\n Renders the current presentation slide.\n","runSlide":"\nrunSlide()\n Runs slide code.\n","unwatch":"\nunwatch( [error] )\n Stops watching a presentation file for changes.\n","watch":"\nwatch()\n Watches a presentation source file for changes.\n"}