{"id":15554879,"url":"https://github.com/sciviews/svdialogstcltk","last_synced_at":"2025-03-29T02:43:29.250Z","repository":{"id":56937751,"uuid":"132007944","full_name":"SciViews/svDialogstcltk","owner":"SciViews","description":"Standard Dialog Boxes for R using Tcl/Tk","archived":false,"fork":false,"pushed_at":"2022-05-10T16:12:01.000Z","size":784,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-03-25T21:38:26.463Z","etag":null,"topics":["dialogbox","gui","r","sciviews","tcl-tk"],"latest_commit_sha":null,"homepage":"https://www.sciviews.org/svDialogstcltk/","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SciViews.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-05-03T14:34:30.000Z","updated_at":"2024-03-25T21:38:26.464Z","dependencies_parsed_at":"2022-08-21T01:40:19.382Z","dependency_job_id":null,"html_url":"https://github.com/SciViews/svDialogstcltk","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SciViews%2FsvDialogstcltk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SciViews%2FsvDialogstcltk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SciViews%2FsvDialogstcltk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SciViews%2FsvDialogstcltk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SciViews","download_url":"https://codeload.github.com/SciViews/svDialogstcltk/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246131243,"owners_count":20728299,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dialogbox","gui","r","sciviews","tcl-tk"],"created_at":"2024-10-02T15:03:56.684Z","updated_at":"2025-03-29T02:43:29.229Z","avatar_url":"https://github.com/SciViews.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"# svDialogstcltk\n\n\u003c!-- badges: start --\u003e\n\n[![R-CMD-check](https://github.com/SciViews/svDialogstcltk/workflows/R-CMD-check/badge.svg)](https://github.com/SciViews/svDialogstcltk/actions) [![Win build status](https://ci.appveyor.com/api/projects/status/github/SciViews/svDialogstcltk?branch=master\u0026svg=true)](https://ci.appveyor.com/project/phgrosjean/svDialogstcltk) [![Coverage status](https://img.shields.io/codecov/c/github/SciViews/svDialogstcltk/master.svg)](https://codecov.io/github/SciViews/svDialogstcltk?branch=master) [![CRAN status](https://www.r-pkg.org/badges/version/svDialogstcltk)](https://cran.r-project.org/package=svDialogstcltk) [![License](https://img.shields.io/badge/license-GPL-blue.svg)](https://www.gnu.org/licenses/gpl-2.0.html) [![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://www.tidyverse.org/lifecycle/#stable)\n\n\u003c!-- badges: end --\u003e\n\nWith {svDialogs}, you can rapidly construct standard dialog boxes for your GUI, including message boxes, input boxes, list, file or directory selection, ... The {svDialogstcltk} adds equivalent dialog boxes build with TK, i.e., using the {tcltk} R package.\n\n## Installation\n\nYou can install the released version of {svDialogstcltk} from [CRAN](https://CRAN.R-project.org) with:\n\n``` r\ninstall.packages(\"svDialogstcltk\")\n```\n\nYou can also install the latest development version. Make sure you have the {remotes} R package installed:\n\n``` r\ninstall.packages(\"remotes\")\n```\n\nUse `install_github()` to install the {svDialogstcltk} package from GitHub (source from **master** branch will be recompiled on your machine):\n\n``` r\nremotes::install_github(\"SciViews/svDialogstcltk\")\n```\n\n### Latest stable version\n\nThe latest stable version of {svDialogstcltk} can simply be installed from [CRAN](http://cran.r-project.org):\n\n``` r\ninstall.packages(c(\"svGUI\", \"svDialogs\", \"svDialogstcltk\"))\n```\n\nR should install all required dependencies automatically, and then it should compile and install {svDialogstcltk}.\n\nLatest devel version of {svDialogstcltk} (source + Windows binaries for the latest stable version of R at the time of compilation) is also available from [appveyor](https://ci.appveyor.com/project/phgrosjean/svDialogstcltk/build/artifacts).\n\n## Usage\n\nYou can get further help about this package this way: Make the {svDialogstcltk} package available in your R session:\n\n``` r\nlibrary(\"svDialogstcltk\")\n```\n\nGet help about this package:\n\n``` r\nlibrary(help = \"svDialogstcltk\")\nhelp(\"svDialogstcltk-package\")\nvignette(\"svDialogstcltk\") # None is installed with install_github()\n```\n\nFor further instructions, please, refer to the help pages at \u003chttps://www.sciviews.org/svDialogstcltk/\u003e.\n\n## Code of Conduct\n\nPlease note that the {svDialogstcltk} project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.\n\n## Note to developers\n\nThis package used to be developed on R-Forge in the past. However, the latest [R-Forge version](https://r-forge.r-project.org/projects/sciviews/) was moved to this GitHub repository on 2018-04-02 (SVN version 569). **Please, do not use R-Forge anymore for SciViews development, use this GitHub repository instead.**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsciviews%2Fsvdialogstcltk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsciviews%2Fsvdialogstcltk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsciviews%2Fsvdialogstcltk/lists"}