Skip to content

Releases: atsyplenkov/pastum

v0.3.2

22 Dec 14:59

Choose a tag to compare

What's Changed

Full Changelog: v0.3.0...v0.3.2

v0.3.0

12 Sep 01:10

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.2.1...v0.3.0

v0.2.1

02 Nov 09:12

Choose a tag to compare

[0.2.1] - 2024-11-02

Added

  • JavaScript support (#15)
  • Experimental boolean support

Fixed

  • Correct indentation when pasting tibble::tribble()

v0.2

01 Nov 02:39

Choose a tag to compare

[0.2.0] - 2024-11-01

Added

  • Introducing Pastum: paste as default dataframe command — it is now sensitive to the active editor language (#13). That is, if you are writing in a file with a .py extension, then VS Code understands that the language you are writing in is Python. In this case, pastum will paste the dataframe as a python code according to the configured default dataframe framework (i.e., pastum.defaultDataframePython and pastum.defaultDataframeR settings). However, full control is still available and unaffected through the command palette.
  • You can now control the decimal separator (e.g., '.' in 12.45) and the digit group separator (i.e., in numbers over 999) through the pastum.decimalPoint config (#10). By default, it is set up for a dot (.) as the decimal separator and a comma (,) as the group separator.

v0.1

29 Oct 03:15

Choose a tag to compare

[0.1.0] - 2024-10-29

Added

  • Website with main features descriptions — https://pastum.anatolii.nz (#5)
  • tibble::tribble() support (#11)
  • Paste as tibble::tribble() is the default option for pastum.defaultDataframe (i.e., context menu)

Fixed

  • Minor grammar and spelling edits
  • Fixed distinction between string and numeric column types. If at least one value in the column is a string, the whole column is treated as a string.
  • Cyrillic letters support in header rows (#9)
  • Removed trailing zeroes when the table is copied from the web (#12)

v0.0.4

27 Oct 07:49

Choose a tag to compare

  • Added "Paste Default Dataframe" command, which can be set in settings. Allows the user to select the default language and framework.
  • Added "Paste Default Dataframe" command to the context menu.
  • Ditched the jsdom dependency in favor of speed and package size
  • VS Marketplace and Open VSX release

v0.0.2

26 Oct 04:43

Choose a tag to compare

  • Added distinction between Integer/Float values
  • Missing, NA, or None values are inserted by default if the value is empty
  • Added pastum.defaultConvention configuration option, which allows the user to choose the column name renaming convention

v0.0.1

25 Oct 00:31

Choose a tag to compare

v0.0.1 Pre-release
Pre-release

v0.0.1

Initial release with basic support of text/html tables for R, Python and Julia dataframes.

Text table to tibble (R)

HTML table to pandas (Python)