Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
^hexbase\.Rproj$
^gex\.Rproj$
^\.Rproj\.user$
^LICENSE\.md$
^\.github$
Expand Down
61 changes: 0 additions & 61 deletions .github/workflows/test-coverage.yaml

This file was deleted.

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,6 @@ rsconnect/
.DS_Store
docs
inst/doc

# tests
_tinysnapshot_review/
24 changes: 15 additions & 9 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
Package: hexbase
Title: Create Simple Dependency-Free Hex Logos
Version: 0.1.0
Package: gex
Title: A Dependency-Light Hex-Logo Builder
Version: 0.2.0
Authors@R:
person("Matt", "Dray", , "mwdray@gmail.com", role = c("aut", "cre"))
Description: A simple interface to create hexagon-shaped logos that help
promote your R package or other projects. Uses base R only.
promote your R package or other projects. Uses the 'grid' system.
License: MIT + file LICENSE
URL: https://github.com/matt-dray/hexbase
BugReports: https://github.com/matt-dray/hexbase/bugs
URL: https://github.com/matt-dray/gex
BugReports: https://github.com/matt-dray/gex/bugs
Imports:
grDevices,
grid
grid,
gridGeometry
Suggests:
png
magick,
png,
rsvg,
svglite,
tinysnapshot,
tinytest
Config/testthat/edition: 3
Encoding: UTF-8
Issues: https://github.com/matt-dray/hexbase
Issues: https://github.com/matt-dray/gex
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
YEAR: 2022
COPYRIGHT HOLDER: hexbase authors
COPYRIGHT HOLDER: Matt Dray
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MIT License

Copyright (c) 2022 hexbase authors
Copyright (c) 2022 Matt Dray

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Generated by roxygen2: do not edit by hand

export(add_border)
export(add_hex)
export(add_image)
export(add_text)
Expand Down
14 changes: 14 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# gex 0.2.0

## Breaking

* Renamed the package from 'hexbase' to 'gex'.
* Separated `add_hex()` into `add_hex()` and `add_border()`.
* Simplified argument names by dropping prefixes.

## Other

* Added dependency: 'gridGeometry'.
* Updated checks and added tests with 'tinytest' and 'tinysnapshot'.
* Updated README and DESCRIPTION documentation.

# hexbase 0.1.0

* Created package and added boilerplate.
Expand Down
File renamed without changes.
Loading
Loading