Skip to content

Releases: coatless-rpkg/searcher

searcher 0.0.6 - "Finding Earth"

24 Jul 19:45
Compare
Choose a tag to compare

Features

  • Added search portals:

Bug Fixes

  • Modified URLs to search engines to pass CRAN checks.
  • Removed documentation URLs to Ecosia search engine as they return 404: Not Found.

Deployment

searcher 0.0.5 - "Finding itself"

07 Feb 04:53
ff84ac9
Compare
Choose a tag to compare

Features

  • Added search portal:
  • Added ability to set default package actions. (#7, #20)
    • searcher.launch_delay controls how long the user remains in R prior
      to the browser opening. Default is 0.5 seconds.
    • searcher.use_rstudio_viewer specifies whether RStudio's viewer pane should
      open the link instead of a web browser. Default is FALSE until RStudio's
      sandbox issue is resolved.
    • searcher.default_keyword: Suffix keyword to focus search results
      between either "base" or "tidyverse". Default is "base".
  • Added option to launch RStudio's Viewer pane to display search results.

Breaking Changes

  • Function factory or a closure approach-based approach is now used to create
    search portal functions search_*() through searcher().
  • searcher() function has lost the ability to specify rlang to address
    an unevaluated promise issue.

Fixes

  • Addressed internal vignette index name being used as the title.

Deployment

searcher 0.0.4 - "Finding Community"

05 Jul 19:29
4e67e4b
Compare
Choose a tag to compare

Features

  • Added search portal:
  • Added vignette on search patterns (#18).

Changes

  • Renamed search portal:
    • Changed search_ixquick() to search_startpage() due to the
      merging of ixquick into startpage. (#15)
  • Update the README overview for the project. (#16)

Deployment

  • Improved TravisCI testing deployments by testing across an array and using
    all CPUs allotted to build the container. (#16)
  • Modify thresholding for code coverage rejections. (#16)

searcher 0.0.3 - "Finding R"

05 Jul 03:42
Compare
Choose a tag to compare

Features

  • Added search portal:

Changes

  • Append r programming to major search engines by default (#11, #10)
  • Add ixquick as a valid engine to search_site(). (#8, #6)
  • Included link to repository and bug tracker to DESCRIPTION.

searcher 0.0.2 - "Finding Gold"

16 Jan 14:21
Compare
Choose a tag to compare
  • Added search portal functions
    • search_site(): Looks up search portal and then searches with it.
    • search_google(): Searches with Google
    • search_bing(): Searches with Bing
    • search_duckduckgo() or search_ddg(): Searches with DuckDuckGo
    • search_github() or search_gh(): Searches issues on GitHub
    • search_bitbucket() or search_bb(): Searches issues on BitBucket
    • search_stackoverflow() or search_so(): Searches questions on StackOverflow
  • Add function generator searcher() to create function objects that can be
    used as error handlers in option(error = ) and task call-backs.
  • Created a browse_url() that checks to see if it is in interactive mode before
    trying to open a web browser 0.5 seconds after call.