Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged

Gh36 #143

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
1 change: 1 addition & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
config:
- {os: macos-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: windows-latest, r: '3.6'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}
Expand Down
12 changes: 11 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
# readODS 2.0.2

## performance improvement for `write_ods`

`write_ods` has been partially rewritten in C++ #140

## Ensure R 3.6 compatibility

To ensure UTF-8 everywhere, fix #107

# readODS 2.0.1

## Fix writing data time columns error #137

A dttm column was incorrectly written with one more column. It's now fixed.
`dttm` column was incorrectly written with one more column. It's now fixed.

# readODS 2.0.0

Expand Down
2 changes: 1 addition & 1 deletion man/write_ods.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/get_sheet_names.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <string>
#include <fstream>
#include <iostream>
#include <stdexcept>

cpp11::strings get_sheet_names_from_content (rapidxml::xml_node<>* rootNode, const bool include_external_data){

Expand Down
1 change: 1 addition & 0 deletions src/is_ods.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

#include <cstring>
#include <fstream>
#include <stdexcept>

bool is_ods(const std::string file){
/*Checks that file conforms to some of the spec at
Expand Down
4 changes: 2 additions & 2 deletions src/read_flat_ods_.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <vector>
#include <string>
#include <fstream>

#include <stdexcept>

[[cpp11::register]]
cpp11::strings read_flat_ods_(const std::string file,
Expand Down Expand Up @@ -95,4 +95,4 @@ cpp11::strings read_flat_ods_(const std::string file,
return cell_values;
}



3 changes: 2 additions & 1 deletion src/read_ods_.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#include <vector>
#include <string>
#include <stdexcept>

[[cpp11::register]]
cpp11::strings read_ods_(const std::string file,
Expand Down Expand Up @@ -80,4 +81,4 @@ cpp11::strings read_ods_(const std::string file,
return cell_values;
}