- Improvement to
all_equal()
and its documentation.
- Added
nth_number_after_mth()
and friends (there are 8 friends).
- Defunct functions are now gone completely (as opposed to triggering a
.Defunct()
call).
- Add an
overwrite
argument tofile.move()
with default valueFALSE
to ensure that files are not accidentally overwritten.
- Speed up
extract_numbers()
.
- Fix some bad typing in C++ code.
remove_dirs()
was claiming to have deleted directories that weren't there.
- There is a new function
match_arg()
for argument matching which is inspired byRSAGA::match.arg.ext()
. Its behaviour is almost identical butRSAGA
is a heavy package to depend upon sofilesstrings::match_arg()
might be handy for package developers.
- Fix bug in
extract_numbers()
which arose when integerish numbers outside the 32-bit integer range reared their heads.
- Fix to message in
remove_filename_spaces()
.
- Fix to
all_equal()
for dealing with arrays.
- The new R doesn't like it when the working directory is changed by running examples. This required a fix which this patch provides.
- Functions which were previously deprecated are now defunct. This brings the package completely in line with the tidyverse style.
count_matches()
andstr_nth_instance_indices()
are much faster.merge_tables_on_disk()
andpaste_different_lengths()
are gone. They didn't belong.
before_last_dot()
now works in the case where the input has no dots, returning the input.
- Added
first
andlast
companions fornth
functions.
- Minor documentation improvements.
- Everything has been redone to conform with the tidyverse style guide.
- The package is now peer-reviewed and has an accompanying paper in the journal of open-source software, which can be cited. See
citation("filesstrings")
.
- The package now has the http://contributor-covenenant.org code of conduct.
- The package now has the functions
file.move()
anddir.delete()
to conform with thebase
naming pattern of such functions.
PutFilesInDir()
is gone.
- The functionality that
PutFilesInDir()
had is now default forMoveFiles()
. - The README and vignettes are improved.
- Minor fix to
AllEqual()
.
- Fix bug in
AllEqual()
and improve its documentation. - Improve
NA
handling ofExtractNumerics()
and its documentation.
- Improve README and vignette.
- A fix to make the package compatible with the new version of 'readr' courtesy of Jim Hester.
- Minor documentation improvements.
StrReverse()
is removed. Usestringi::stri_reverse()
instead.
- Fixed problem of
Found no calls to: ‘R_registerRoutines’, ‘R_useDynamicSymbols’
by following Giorgio Spedicato's answer at http://stackoverflow.com/questions/42313373/r-cmd-check-note-found-no-calls-to-r-registerroutines-r-usedynamicsymbols
- The first edition that I think may be CRAN-worthy.