-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add {tibble} as a dependency #32
Commits on Sep 27, 2022
-
import {tibble}, {pillar} and {vctrs}
{pillar} and {vctrs} are the backbone for customizing tibbles. They are dependencies of the {tibble} package and therefore "free" once {tibble} is used as a dependency package of {STATcubeR}
Configuration menu - View commit details
-
Copy full SHA for 873a23e - Browse repository at this point
Copy the full SHA 873a23eView commit details -
+ custom vector class for schema uris
try this class only with sc_table_saved_list() for now
Configuration menu - View commit details
-
Copy full SHA for bc98e1d - Browse repository at this point
Copy the full SHA bc98e1dView commit details -
Configuration menu - View commit details
-
Copy full SHA for fd22f68 - Browse repository at this point
Copy the full SHA fd22f68View commit details -
make sure the objects of class <sc_table_uri> are compatible with sc_table_saved()
Configuration menu - View commit details
-
Copy full SHA for 1ca4d78 - Browse repository at this point
Copy the full SHA 1ca4d78View commit details -
- don't import {tibble} since currently, only {vctrs} and {pillar} is used - export as.character() for sc_schema_uri - re-roxygenize
Configuration menu - View commit details
-
Copy full SHA for 88d0173 - Browse repository at this point
Copy the full SHA 88d0173View commit details -
update language param to sc_headers(), sc_schema_catalogue()
this is now handled as in sc_table(), od_table() and so on
Configuration menu - View commit details
-
Copy full SHA for a348d58 - Browse repository at this point
Copy the full SHA a348d58View commit details -
if this package is roxygenized insie of the STAT firewall, the documentation links generated by sc_browse*() will point to the internal server re-roxygenize from the outside TODO: find a way to avoid this in the future. Maybe write a wrapper-function around devtools::document() which temporarily sets the env-var STATCUBER_IN_STAT
Configuration menu - View commit details
-
Copy full SHA for 3b539eb - Browse repository at this point
Copy the full SHA 3b539ebView commit details -
Configuration menu - View commit details
-
Copy full SHA for ff8ad8a - Browse repository at this point
Copy the full SHA ff8ad8aView commit details -
another tweak for cli::style_hyperlink(). Hopefully, this will get easier once these features mature
Configuration menu - View commit details
-
Copy full SHA for 37d8460 - Browse repository at this point
Copy the full SHA 37d8460View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0147dc5 - Browse repository at this point
Copy the full SHA 0147dc5View commit details
Commits on Sep 30, 2022
-
mention COUNTs in docs for sc_table_custom()
ad some notes that instead of VALUE and VALUESET it is also possible to use uris for COUNT resources in the "measures" parameter of sc_table_custom()
Configuration menu - View commit details
-
Copy full SHA for cc318c9 - Browse repository at this point
Copy the full SHA cc318c9View commit details -
document error: cell limit exceeded (400)
this error was overlooked when the error handling vignette was first written fortunately, the API does a good job of explaining the error in the json body of the response so the error handlerst do not need an upgrade [ci skip]
Configuration menu - View commit details
-
Copy full SHA for 2a7a963 - Browse repository at this point
Copy the full SHA 2a7a963View commit details -
Configuration menu - View commit details
-
Copy full SHA for 876450d - Browse repository at this point
Copy the full SHA 876450dView commit details -
add gallery of german example datasets
the sc_table article now showcases the print methods for all the example datasets in german [skip ci]
Configuration menu - View commit details
-
Copy full SHA for c530abf - Browse repository at this point
Copy the full SHA c530abfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5a08065 - Browse repository at this point
Copy the full SHA 5a08065View commit details
Commits on Nov 21, 2022
-
OGD: import de_desc and en_desc
add those entries to the metadata. NOTE: columns 5 and 7 are not used in data.csv according the OGD standard but some internale datasets provide these columns and therefore they are imported as the description of the measure/classification
Configuration menu - View commit details
-
Copy full SHA for 3eee18f - Browse repository at this point
Copy the full SHA 3eee18fView commit details
Commits on Nov 23, 2022
-
add a patch release since the additional metadata are needed for a deployment NEWS for 0.5.0.1 and 0.5.1 will be merged when 0.5.1 is released
Configuration menu - View commit details
-
Copy full SHA for ff13176 - Browse repository at this point
Copy the full SHA ff13176View commit details
Commits on Nov 24, 2022
-
* since json-downloads requir a login, link to the login page * link to the documentation page instead of the manual
Configuration menu - View commit details
-
Copy full SHA for e2b7c74 - Browse repository at this point
Copy the full SHA e2b7c74View commit details -
no @internal in sc_table_custom()
- remove @Keywords internal - add documentation for missing params [skip ci]
Configuration menu - View commit details
-
Copy full SHA for e93560b - Browse repository at this point
Copy the full SHA e93560bView commit details
Commits on Nov 25, 2022
-
allow recodes in sc_table_custom()
first attempt to resolve #33. Recodes can now be defined with an additional parameter. However, type-checking is very minimal. TODO: - better error handling when the request is constructed. This way users get quick and useful error messages - at least for semantic errors such as invalid usage of parameters - with this implementation, users will have to make sure that the parameters "recodes" and "dimensions" are consistent. Maybe simplify the usage - The naming sc_recode is almost conflicting with the class sc_recoder. Possibly rename this function - extend the custom tables article to showcase some usecases for recodes and add a short discussion about usage limits - maybe add sc_filter which only allows filter-type recodes and performs stricter type-checks?
Configuration menu - View commit details
-
Copy full SHA for 341254d - Browse repository at this point
Copy the full SHA 341254dView commit details
Commits on Dec 9, 2022
-
extend custom tables article with recodes
showcase the usage of sc_recode in the web documentation.
Configuration menu - View commit details
-
Copy full SHA for 0dac8e8 - Browse repository at this point
Copy the full SHA 0dac8e8View commit details -
add typechecks to sc_table_custom()
there are now several checks in place that throw warnings if inputs in sc_table_custom() or sc_recode() are of the wrong schema-type or if other inconsistencies are suspected. See the section called "error handling" in ?sc_table_custom for more details some of those warnings might be replaced with errors in the future part of #33
Configuration menu - View commit details
-
Copy full SHA for 8d59925 - Browse repository at this point
Copy the full SHA 8d59925View commit details -
add a minimum requirement to pillar for the version from 2021-02-22 to make sure the S3 generics format_tbl_footer() is available
Configuration menu - View commit details
-
Copy full SHA for f157a40 - Browse repository at this point
Copy the full SHA f157a40View commit details -
import tibble generics via @import
don't use the .onLoad hook with base::registerS3method but use the import via NAMESPACE (roxygen) instead [skip ci]
Configuration menu - View commit details
-
Copy full SHA for a0fbe4c - Browse repository at this point
Copy the full SHA a0fbe4cView commit details -
Configuration menu - View commit details
-
Copy full SHA for dc009c9 - Browse repository at this point
Copy the full SHA dc009c9View commit details
Commits on Dec 16, 2022
-
allow json strings in sc_table()
reimplements #36 with a slightly different approach in regards to naming
Configuration menu - View commit details
-
Copy full SHA for 6b63a60 - Browse repository at this point
Copy the full SHA 6b63a60View commit details -
improve print method for OGD resouces
links to cache files are now clickable and last_modified and cached can will be abbreviated if there is not enough horizontal space
Configuration menu - View commit details
-
Copy full SHA for d7e0833 - Browse repository at this point
Copy the full SHA d7e0833View commit details -
cistomize print() for sc_schema_flatten()
the resouce uris are now displayed similar to sc_schema()
Configuration menu - View commit details
-
Copy full SHA for 38db405 - Browse repository at this point
Copy the full SHA 38db405View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5aa847a - Browse repository at this point
Copy the full SHA 5aa847aView commit details
Commits on Dec 17, 2022
-
add a new parameter `dry_run` to sc_table_custom() which allows to see what request is generated without actually sending it to the API with this option, all type-checks are still applied
Configuration menu - View commit details
-
Copy full SHA for 3fb82be - Browse repository at this point
Copy the full SHA 3fb82beView commit details -
the new version now contains a section about typechecks heading levels are restructured to include <h2> and <h3> the intro paragraph correctly lists COUNT as a possible schema type for measures after most of the sc_table_custom() calls, a <details> tag is added which can be expanded to show the generated json request the recodes section now contains an introduction paragraph that outlines why filtering data on the server side might be desireable add <h2>further reading</h2> and link to the schema article as well as the article about the base class showcase more recoding features (total and "recoding accross hierarchies")
Configuration menu - View commit details
-
Copy full SHA for 7ce363f - Browse repository at this point
Copy the full SHA 7ce363fView commit details -
the parameter `json_file` was recently renamed to `json`. Reflect this in the sc_table article
Configuration menu - View commit details
-
Copy full SHA for 4da0e91 - Browse repository at this point
Copy the full SHA 4da0e91View commit details -
add "further reading" too sc_schema
link to the custom tables article and the saved tables article which are both closely related to the schema endpoint
Configuration menu - View commit details
-
Copy full SHA for 8568b1e - Browse repository at this point
Copy the full SHA 8568b1eView commit details
Commits on Dec 18, 2022
-
+ crossreferences last_error, table_custom
link between those two articles in regards to the cell_count error
Configuration menu - View commit details
-
Copy full SHA for 079159d - Browse repository at this point
Copy the full SHA 079159dView commit details -
sc_table_custom.Rmd: show json for all requests
for consistency, also add show_json for the example request that uses COUNT-URIs
Configuration menu - View commit details
-
Copy full SHA for 694bc10 - Browse repository at this point
Copy the full SHA 694bc10View commit details -
add more links to sc_table_custom.Rmd
link to the issue page and to the invalid json error message
Configuration menu - View commit details
-
Copy full SHA for e0a1993 - Browse repository at this point
Copy the full SHA e0a1993View commit details -
update <h2> ids in sc_last_error.Rmd
in case the error response from the API containes an "errorType", use this error type as a css id in the error handling article
Configuration menu - View commit details
-
Copy full SHA for 00312de - Browse repository at this point
Copy the full SHA 00312deView commit details -
strictly speaking, this change is only available in master and not in this branch this will however be appropriate as soon as this branch is merged
Configuration menu - View commit details
-
Copy full SHA for adc3a83 - Browse repository at this point
Copy the full SHA adc3a83View commit details
Commits on Dec 30, 2022
-
time variables which use YYYYMMDD are now parsed into R datetime classes during import if classifications with 8 characters and only numbers in the codes are detected such datasets do not exist on the external OGD portal or STATcube yet but there are some internal datasets which are going to utilize these parsers
Configuration menu - View commit details
-
Copy full SHA for 8701f0f - Browse repository at this point
Copy the full SHA 8701f0fView commit details
Commits on Jan 30, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 89755b4 - Browse repository at this point
Copy the full SHA 89755b4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3432712 - Browse repository at this point
Copy the full SHA 3432712View commit details -
Configuration menu - View commit details
-
Copy full SHA for ea6bf24 - Browse repository at this point
Copy the full SHA ea6bf24View commit details
Commits on Feb 20, 2023
-
apply spellchecks with the {spelling} package and define a wordlist so that the current codebase is typo-free TODO: there are now discrepancies between the wording and the codebase - sc_schema_catalogue() uses the english spelling catalogue instead of catalog. The same is true for od_catalogue() - inst/json_examples/accomodation.json should be accommodation (double m) Think about whether it makes sense to rename these things.
Configuration menu - View commit details
-
Copy full SHA for c49a649 - Browse repository at this point
Copy the full SHA c49a649View commit details -
Configuration menu - View commit details
-
Copy full SHA for 33f3cf2 - Browse repository at this point
Copy the full SHA 33f3cf2View commit details -
Merge pull request #38 from statistikat/master
update `{cli}` dependency
Configuration menu - View commit details
-
Copy full SHA for bff2954 - Browse repository at this point
Copy the full SHA bff2954View commit details
Commits on Feb 23, 2023
-
add a new helper function data_frame() which generates data frame objects and automatically takes care of some common points - to avoid problems with stringsAsFactors, use the vctrs constructor - add the "tbl" class to enable printing the data frames similar to tibbles this makes it possible to skip ssetting strngsAsFactors repedetly and also avoids some places where `class<-` was used previously
Configuration menu - View commit details
-
Copy full SHA for 8b32c88 - Browse repository at this point
Copy the full SHA 8b32c88View commit details
Commits on Feb 27, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 93e74a1 - Browse repository at this point
Copy the full SHA 93e74a1View commit details -
Configuration menu - View commit details
-
Copy full SHA for d2d9992 - Browse repository at this point
Copy the full SHA d2d9992View commit details -
skip example if no key available
use another examplesIf clause to make sure devtoos::check() can be run without an API key
Configuration menu - View commit details
-
Copy full SHA for bed0b8e - Browse repository at this point
Copy the full SHA bed0b8eView commit details -
if map is passed as a named vector, this is never supported. therefore, drop the names. This can be useful for subsetting schema objects via single square brackets
Configuration menu - View commit details
-
Copy full SHA for 908ce3b - Browse repository at this point
Copy the full SHA 908ce3bView commit details -
don't drop unused levels in ogd fields
dropping those levels causes hierachy information to become unavailable. some new client code now makes use of the hierarchies. The new behavior will generate the fiels as factor columns with unused factor levels.
Configuration menu - View commit details
-
Copy full SHA for a629296 - Browse repository at this point
Copy the full SHA a629296View commit details -
Configuration menu - View commit details
-
Copy full SHA for d3fbd98 - Browse repository at this point
Copy the full SHA d3fbd98View commit details -
Configuration menu - View commit details
-
Copy full SHA for b2fbe08 - Browse repository at this point
Copy the full SHA b2fbe08View commit details -
show progress in od_catalogue()
if json files are downloaded, use cli::progres_along() to show how many json files are still remaining
Configuration menu - View commit details
-
Copy full SHA for 47ddfcc - Browse repository at this point
Copy the full SHA 47ddfccView commit details -
Configuration menu - View commit details
-
Copy full SHA for dcdd0c0 - Browse repository at this point
Copy the full SHA dcdd0c0View commit details -
the (internal) function for parsing open data datasets used to have a parameter to check if levels were dropped. This is no longer necessary since a629296 [ci skip]
Configuration menu - View commit details
-
Copy full SHA for cc90ae3 - Browse repository at this point
Copy the full SHA cc90ae3View commit details -
don't use registerS3Method for derived classes of data.frame since it does not seem to make any difference
Configuration menu - View commit details
-
Copy full SHA for b09b4cd - Browse repository at this point
Copy the full SHA b09b4cdView commit details -
add custom color palette for @examples
the current palette of colors for sc_schema is only suited for dark editors. For now, add a light theme for the pkgdown reference pages TODO: once the annotation printing is implemented, think about adding a way to customize the color scheme in all STATcubeR. This could also take care of cli_theme_pkgdown() [ci skip]
Configuration menu - View commit details
-
Copy full SHA for e23601c - Browse repository at this point
Copy the full SHA e23601cView commit details -
use target=_blank for statcube links
make sure the links to statcube in the schema vignette open in a new tab TODO: do this globally in R/df_print.R an also use target=_blank for OGD links [ci skip]
Configuration menu - View commit details
-
Copy full SHA for e95f5e4 - Browse repository at this point
Copy the full SHA e95f5e4View commit details -
build external links with devtools::document()
assume that the environment where document() runs can be characterized by the NOT_CRAN flag being present (not necessarily FALSE or TRUE). This is to avoid having links to the editing server in the manpages and on pkgdown this will only matter if the docs are built inside the STAT firewall. If at some point, the docs are built via gh-actions, this can be reverted
Configuration menu - View commit details
-
Copy full SHA for 737c1b4 - Browse repository at this point
Copy the full SHA 737c1b4View commit details
Commits on Feb 28, 2023
-
allow node-types in sc_schema_flatten()
the following expression will now show all folders from the catalogue sc_schema_catalogue() %>% sc_schema_flatten("FOLDER") previously, this would only have returned one entry containig the root folder because the recursion was stopped as soon as the appropriate schema type was detected this change also affects the schema types GROUP, MEASURE, FIELD and VALUESET in sc_schema_db() which can also have child nodes [ci skip]
Configuration menu - View commit details
-
Copy full SHA for ae80404 - Browse repository at this point
Copy the full SHA ae80404View commit details -
check arg 'type' in sc_schema_flatten()
check the argument against the list of available schema types. the argument is now also coerced via toupper() because the spelling in schema uris uses lowercase
Configuration menu - View commit details
-
Copy full SHA for 1567f61 - Browse repository at this point
Copy the full SHA 1567f61View commit details -
Configuration menu - View commit details
-
Copy full SHA for f7bdba4 - Browse repository at this point
Copy the full SHA f7bdba4View commit details
Commits on Mar 1, 2023
-
update sc_example("foregirn_trade.json")
the nace classification in this database was updadet. Reflect this in the example request [ci skip]
Configuration menu - View commit details
-
Copy full SHA for 72091bc - Browse repository at this point
Copy the full SHA 72091bcView commit details -
Configuration menu - View commit details
-
Copy full SHA for a3f03a9 - Browse repository at this point
Copy the full SHA a3f03a9View commit details -
use output, not message in print method
cli_text uses the message channel to generate the visible console outputs this is not what to exprect from a print method wich should always feed into stdout cli_text() is also used in other places of STATcubeR but always wrapped into cli_fmt() which means that output channels do not matter in those circumstances because the outputs are captured to be formatted elsewhere
Configuration menu - View commit details
-
Copy full SHA for a6cef70 - Browse repository at this point
Copy the full SHA a6cef70View commit details -
include another link to github into the DESCRIPTION metadata. this is common practice in most packages on CRAN [ci skip]
Configuration menu - View commit details
-
Copy full SHA for 99659dc - Browse repository at this point
Copy the full SHA 99659dcView commit details
Commits on Mar 9, 2023
-
fix: sc_table_saved_list() and no tables
if there are no saved tables, the previous version generated an error of the form "expected character but got list" now, a data.frame with zero rows is returned instead TODO: it is probably a good idea to replace sapply() by vapply() everywhere in STATcubeR. Most static code alanyzers recommend this. [ci skip]
Configuration menu - View commit details
-
Copy full SHA for 2a6a9e1 - Browse repository at this point
Copy the full SHA 2a6a9e1View commit details
Commits on Mar 10, 2023
-
allow STAT_ prefix in od_table()
there is a new namespace of datasets coming up which will use the STAT_ prefix instead og OGD_ for the primary id of the dataset. Relax the input checks to allow OGD_ datasets to be fetched. For external users, this will only become relevant in a few months.
Configuration menu - View commit details
-
Copy full SHA for 9ef5bbc - Browse repository at this point
Copy the full SHA 9ef5bbcView commit details -
od_table_local(): support $PublDateTime$
some internal datasets now use $PublDateTime$ as a placeholder for the deployment timestamp. Make sure that those datasets can be used with STATcubeR The way this is implemented now, reading and resaving a dataset is not a no-op because the interpolated value will be written in place of the placholder. There might come a point where it makes sense to implement this differently in order to preserve the placeholder [ci skip]
Configuration menu - View commit details
-
Copy full SHA for b777af9 - Browse repository at this point
Copy the full SHA b777af9View commit details
Commits on Mar 11, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 08a5102 - Browse repository at this point
Copy the full SHA 08a5102View commit details
Commits on Mar 29, 2023
-
this is the first step to resolving #27 by adding a function that creates sc_table() like objects based on sdmx archives The sdmx format contains all metadata that is necessary for STATcubeR to reuse the existing $tabulate() workflow and this first version already provides support for various features via the base class (sc_data) - $tabulate() to aggregate data - $total_codes() to set/unset total codes - $recoder to recode datasets (change labels) change codes, toggle visibility of elements, reorder elements, etc. - importing german and english labels simultaniously (both languages are included in a zip download) and allowing to swhitch between them using $language<-(). New features - sdmx arcives provide a $parent column in the $fields() table which are used to represent hierarchical classifications. Previously, this was only possible with od_table() There are still some improvements. See the issue #27 for more details - properly parse time variables - currently they are treated as generic categories. - parse element annotations (detailed descriptions for classification elements) and add them to $field()$de_desc just like with OGD dataset - parse value annotations (see #39) - provide a print/fromat method - add a reasonable logic for total codes that takes the parent codes into account - fill meta$measures$fun and $meta$measures$precision based on the sdmx metadata - modify very long codes which use the @-symbol (probably for escapes) - extend documentation - possibly check SuperCROSS compability
Configuration menu - View commit details
-
Copy full SHA for f4e18ac - Browse repository at this point
Copy the full SHA f4e18acView commit details
Commits on Apr 5, 2023
-
sdmx: import x$field()$en_desc
import annotations from the sdmx metadata and make them available as an additional column in field()
Configuration menu - View commit details
-
Copy full SHA for 4640def - Browse repository at this point
Copy the full SHA 4640defView commit details -
Configuration menu - View commit details
-
Copy full SHA for 99ece7f - Browse repository at this point
Copy the full SHA 99ece7fView commit details -
Configuration menu - View commit details
-
Copy full SHA for c283ff8 - Browse repository at this point
Copy the full SHA c283ff8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8072885 - Browse repository at this point
Copy the full SHA 8072885View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3adf520 - Browse repository at this point
Copy the full SHA 3adf520View commit details -
Configuration menu - View commit details
-
Copy full SHA for 777f2dd - Browse repository at this point
Copy the full SHA 777f2ddView commit details
Commits on Apr 6, 2023
-
gh-actions: bump ubuntu versions
ubuntu 18.04 is no loger supported on gh-actions since 2023-04-01 bump up all the version numbers by two years to check 22.04 and 20.04 instead of 20.04 and 18.04 actions/runner-images#6002
Configuration menu - View commit details
-
Copy full SHA for 335db57 - Browse repository at this point
Copy the full SHA 335db57View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8e67fc8 - Browse repository at this point
Copy the full SHA 8e67fc8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 81e8a36 - Browse repository at this point
Copy the full SHA 81e8a36View commit details
Commits on Apr 12, 2023
-
in cases where several measures and several fields are involved, the previous logic produced incorrect tabulations of the data
Configuration menu - View commit details
-
Copy full SHA for 5342a12 - Browse repository at this point
Copy the full SHA 5342a12View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2555c20 - Browse repository at this point
Copy the full SHA 2555c20View commit details
Commits on May 10, 2023
-
add a print mehod for descriptions of sdmx files which are accessible like so x <- sdmx_table(...) x$description
Configuration menu - View commit details
-
Copy full SHA for 53fec1e - Browse repository at this point
Copy the full SHA 53fec1eView commit details -
for some reason, sdmx archives use escapes in the database ids such that some characters are substututed like this \x5f -> 5f@ undo this in the parser for the underscore character, so the link in the print method correctly references a STATcube table also, shorten the codes used in $field()$code to omit everything before the underscore TODO: check if shortening field codes like this might lead to duplicate codes
Configuration menu - View commit details
-
Copy full SHA for 215b05a - Browse repository at this point
Copy the full SHA 215b05aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0eaca1b - Browse repository at this point
Copy the full SHA 0eaca1bView commit details
Commits on May 11, 2023
-
avoid inconsistencies between x$code and x$field(). Before this fix simplification was only applied in x$field() because of the anyDulicated() check in sdmx_codes() related: 215b05a [skip ci]
Configuration menu - View commit details
-
Copy full SHA for ca0a399 - Browse repository at this point
Copy the full SHA ca0a399View commit details
Commits on May 17, 2023
-
resolve escapes as in @f5@ -> \uf5 for all codes in numeric columns currently, there are only certain symbols whitelisted which will be resolved like this. possible improvement: escape all character sequences of this form by using a regex [skip ci]
Configuration menu - View commit details
-
Copy full SHA for 5e5aed6 - Browse repository at this point
Copy the full SHA 5e5aed6View commit details
Commits on May 22, 2023
-
sd_table(): don't warn for missing \n
suppress warnings if there is no newline character at the end of a json request file because that is the way the server formats those files in the download options STATcubeR started doing this with 6b63a60 [ci skip]
Configuration menu - View commit details
-
Copy full SHA for 38d10f3 - Browse repository at this point
Copy the full SHA 38d10f3View commit details