Received: by mail.netbsd.org (Postfix, from userid 605) id 18E4484D61; Tue, 24 Aug 2021 11:36:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5190E84D26 for ; Tue, 24 Aug 2021 11:36:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id F69zwtfuwLKI for ; Tue, 24 Aug 2021 11:36:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 77E4684C13 for ; Tue, 24 Aug 2021 11:36:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6BE45FA97; Tue, 24 Aug 2021 11:36:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1629804984275150" MIME-Version: 1.0 Date: Tue, 24 Aug 2021 11:36:24 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/www/R-shinyjs To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20210824113624.6BE45FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1629804984275150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Tue Aug 24 11:36:24 UTC 2021 Modified Files: pkgsrc/www/R-shinyjs: Makefile distinfo Log Message: (www/R-shinyjs) Updated 1.0 to 2.0.0 # shinyjs 2.0.0 (2020-08-24) - **IMPORTANT CHANGE** Remove commercial license (it only existed because some big companies asked for it, but it ended up being a bigger headache for 99% of the community) - **BREAKING CHANGE** When using `extendShinyjs()`, the `functions` parameter must always be provided. - **BREAKING CHANGE** When using `extendShinyjs()`, the `script` path parameter now behaves like any other Shiny web resource, which means it cannot be loaded from the local file system. The path must be discoverable by the browser, so it either needs to be a public URL, inside a `www` folder, or available via `addResourcePath()`. - New feature: add a `refresh()` function (#205) - New feature: add `asis` parameter to `reset()` function, which works like it does in all other functions that support `asis` (#146) - Fix bug: `extendShinyjs()` now works with any web URL or any resource path (#201) - Fix bug: `reset()` didn't work when a sliderInput was initialized with `value=NULL` (#207) - Remove `V8` as a package dependency. # shinyjs 1.1 (2020-01-12) This update was 2 years in the making because it required a lot of testing by users to ensure none of these features cause any regression bugs in real apps. - **BREAKING CHANGE** The `includeShinyjs` parameter in `runcodeUI()` is now deprecated - Fix bug: shinyjs functions used inside a module with a `selector` argument instead of an `id` argument didn't work (#175) - Fix bug: shinyjs functions did not work with IDs that had a space in them (#176) - Fix bug: non-selectize select inputs could not be disabled (#186) - Fix bug: `click()` now works with download buttons (#198) - New feature: added `asis` parameter to any function that takes an ID. When `asis=TRUE`, the ID will not be namespaced when inside a module (#118) - New feature: added `id` parameter to `runcode()`, allowing it to work inside Shiny modules (#184) - New feature: `onevent()` returns the `offsetX` and `offsetY` event properties - New feature: `onevent()` accepts a `properties` parameter that allows the user to retrieve additional properties that are not whitelisted by default (#159) - New feature: `hide()`/`show()` now only bubble up the DOM tree to the nearest input container if the current element is an input (#153) - Documentation: added documentation about `useShinyjs()` side effects and about including `shinyjs` in packages (#182) To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/www/R-shinyjs/Makefile \ pkgsrc/www/R-shinyjs/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1629804984275150 Content-Disposition: inline Content-Length: 1881 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/R-shinyjs/Makefile diff -u pkgsrc/www/R-shinyjs/Makefile:1.1 pkgsrc/www/R-shinyjs/Makefile:1.2 --- pkgsrc/www/R-shinyjs/Makefile:1.1 Fri Aug 9 20:53:39 2019 +++ pkgsrc/www/R-shinyjs/Makefile Tue Aug 24 11:36:24 2021 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.1 2019/08/09 20:53:39 brook Exp $ +# $NetBSD: Makefile,v 1.2 2021/08/24 11:36:24 mef Exp $ R_PKGNAME= shinyjs -R_PKGVER= 1.0 +R_PKGVER= 2.0.0 CATEGORIES= www MAINTAINER= pkgsrc-users@NetBSD.org @@ -13,6 +13,9 @@ DEPENDS+= R-htmltools>=0.2.9:../../textp DEPENDS+= R-jsonlite>=1.6:../../textproc/R-jsonlite DEPENDS+= R-shiny>=1.0.0:../../www/R-shiny +#TEST_DEPENDS+= R-shinyAce-[0-9]*: +#TEST_DEPENDS+= R-shinydisconnect-[0-9]*: + USE_LANGUAGES= # none .include "../../math/R/Makefile.extension" Index: pkgsrc/www/R-shinyjs/distinfo diff -u pkgsrc/www/R-shinyjs/distinfo:1.1 pkgsrc/www/R-shinyjs/distinfo:1.2 --- pkgsrc/www/R-shinyjs/distinfo:1.1 Fri Aug 9 20:53:39 2019 +++ pkgsrc/www/R-shinyjs/distinfo Tue Aug 24 11:36:24 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2019/08/09 20:53:39 brook Exp $ +$NetBSD: distinfo,v 1.2 2021/08/24 11:36:24 mef Exp $ -SHA1 (R/shinyjs_1.0.tar.gz) = fa36eda314cbc012b4feb9f4714f34e486dc0b4e -RMD160 (R/shinyjs_1.0.tar.gz) = 83a4ed7ca02bfd7064c0feda62a65a8ec6104432 -SHA512 (R/shinyjs_1.0.tar.gz) = 368eeff4c0897830716bf6d07564948eea36d8948a03a9b31867d6c05bbc488ac1d1be9b9e781b1b95d744675786952f3ddba68d58c6c35641540240df1b5392 -Size (R/shinyjs_1.0.tar.gz) = 954365 bytes +SHA1 (R/shinyjs_2.0.0.tar.gz) = c0801be4cab8768318ac9756e270a99862cca1e6 +RMD160 (R/shinyjs_2.0.0.tar.gz) = f286ee54d834f4de6213328d54782e872863e869 +SHA512 (R/shinyjs_2.0.0.tar.gz) = f81abe6d305cfde17a46f1975d4accecf5f2e6dad39b10e04badd16859e490b02f705db474350f1ecfbc62f9e2258e5d2056c30cb7f3273de3c36e156c4820c1 +Size (R/shinyjs_2.0.0.tar.gz) = 1043727 bytes --_----------=_1629804984275150--