Skip to content

Releases: gtg922r/obsidian-numerals

1.5.1

17 Jun 06:20
Compare
Choose a tag to compare
1.5.1 Pre-release
Pre-release

🧪 Numerals 1.5.1 - New Beta 🧪

  • Adds a new "directive" (i.e. a Numerals-specific command): @hideRows (#31)
    • A math block with @hideRows on a row (with nothing else), will only render lines that have => at the end of them ("result annotation")

image

1.5.0

12 Jun 06:52
Compare
Choose a tag to compare

🚀 Numerals 1.5 - Biggest Update Yet! 🚀

Introducing some of the most requested features including the ability to:

  • sum previous lines with @sum or @total
  • reference note frontmatter properties
  • use global variables between blocks
  • insert calculation results directly into your notes

Also new convenience features such as Greek letter auto-completion and custom currency support. Upgrade now and take your note-taking calculations to the next level!

Detailed Updates

⭐️ Sums and Totals of Previous Lines

  • New feature and syntax for summing a group of lines: @sum or @total (closes #18, #49, #36)
  • When Numerals encounters @total or @sum it inserts the sum of all previous lines up until the last blank line or comment
  • Can use in a calculation or unit conversion

2024-06-11 Sum and Totals Example

⭐️ Values in Note Frontmatter

Numerals can now reference note frontmatter or dataview inline values. Set the numerals property on a page to share specific properties with all math blocks on a page.

In order to access metadata, you need to tell Numerals to make the value available by:

  1. Set the numerals metadata value (either frontmatter or dataview inline property) to the name of the value you want to include, or a list of values
    • Frontmatter of numerals: other_metadata_name, or numerals: [metadata_1, metadata_2]
    • inline value: [numerals:: other_metadata_name]
  2. Set the metadata value of numerals to all: will index all metadata and make it available to dataview
  3. Enable "Always Process All Frontmatter" in the Numerals settings

2024-06-11 Note Properties Available Example

Numerals is able to write back to dataview values, through use of Result Insertion

⭐️ Note-wide Global Variables

Any variable name preceeded by an $ symbol will be made available to all math blocks on a page (closes #34)
2024-06-11 Numerals Global Scope Example

⭐️ Result Insertion - Store Results in Raw Text

Using the new @[...] syntax (for example: @[profit]), Numerals will insert the results of a calculation into the raw text of your notes. (closes #22)
2024-06-11 Numerals Result Insertion Example

⭐️ Greek Letter Auto-complete

  • Add greek letter auto-completion after typing :. e.g. :mu in a math block will offer μ as an auto-complete suggestion (closes #69)
  • Greek letters can be used in any variable name. They also work with subscripting when in math-tex block.

⭐️ Custom Currency Support

  • Add custom currency support. In Numerals setting, user can set a currency symbol and name. (closes #54, #52, #61)
  • Allows for example: ₿100 / day * 3 hours → 12.5 BTC if you set ₿ as the custom currency:
    2024-05-24 Numerals Custom Currency Mapping Screenshot

1.4.1

02 Mar 09:57
Compare
Choose a tag to compare
1.4.1 Pre-release
Pre-release

🧪 Beta Release 1.4.1 🧪 (Bug fix only)

  • Fixes bug with result insertion. Result insertion can now be used on the same line as initial assignment to a variable:
a = 1
b = 2
@[result] = a + b

Once rendered, will become:

a = 1
b = 2
@[result::3] = a + b

1.4.0

01 Mar 18:37
Compare
Choose a tag to compare
1.4.0 Pre-release
Pre-release

🧪 Beta Release 1.4 🧪

Support for frequently requested features!

  • "Sum" (or "Total") feature
  • Page "Globals" (i.e. shared variables)
  • Result Insertion: Calculation result added to note source using dataview syntax

🚧 Note to Beta Testers: Supporting sums/totals requires some additional pre-processing by Numerals. "Globals" is dependent on when blocks get rendered. Please report any bugs you see as I may have missed some corner cases! 🚧

Numerals 1.4 (Beta) includes support for one of the most commonly requested features: The ability to quickly sum previous lines. Numerals now offers a magic variable @sum or @total, which will always be populated with the sum of all previous lines up to a blank line or header/comment. As a magic variable it can be used in equations, conversions, or assignment to other variables.

Numerals 1 4 Beta Screenshot Sum-Total

Numerals 1.4 (Beta) includes support for "globals" - variable values that keep their value across code blocks. This should be considered experimental - please report any issues! In a code block, create a new variable prefixed with a $. That variable will be available in later math codeblocks.

Warning: Numerals can't ensure a consistent ordering of math block evaluation. If you assigned a value to a global in multiple code blocks you may get unexpected results. Its best to only assign the value in one place.

Numerals 1 4 Beta Screenshot - Globals

Numerals 1.4 (Beta) has 🚨 experimental 🚨 support for "result insertion". Wrapping a variable name in @[...] (e.g. @[result]), will tell Numerals to insert the value of the variable into the source of the note itself using dataview notation (e.g. variable::value). This allows you to ensure calculation results are saved to the source of the note (in case you ever use outside of Obsidian), as well as setting dataview values using Numerals.

Numerals 1 4 Beta Screenshot - Result Insertion

Numerals 1.4 (Beta) also adds a convenience feature for autocomplete of greek characters, by typing : in a math block and then starting to type the name of the character. Greek characters are fully supported by Numerals' math engine, so you can name your variables using math characters. This includes in -tex mode, where subscript support is also included, and ω_n will render as $ω_n$
Numerals 1 4 Beta Screenshot Greek
Note: this feature can be disabled in settings if it conflicts with any autocomplete tools you already have

1.3.1

14 Sep 09:36
Compare
Choose a tag to compare
1.3.1 Pre-release
Pre-release

Beta Release

  • Fixes annoying math-tex rendering bug for some users (#60, #57, #45)

1.3.0

03 Sep 06:55
Compare
Choose a tag to compare
1.3.0 Pre-release
Pre-release

🧪 Beta Release 1.3

  • Access frontmatter or dataview inline variables inside code blocks
  • Math code block auto-update after metadata or settings change
  • Render subscripts in TeX mode

1.2.1

13 Mar 14:25
Compare
Choose a tag to compare
1.2.1 Pre-release
Pre-release

Beta release

  • Switch font colors to be based on --code- variants. Should allow for better consistency with themes
  • Please open an issue if this negatively affects any styling

1.2.0

12 Mar 08:00
Compare
Choose a tag to compare

🎉 Numerals 1.2

  • Adds auto-completion to all variables with an option to auto-complete on all functions and constants!
  • Adds user setting to specify rendered number formatting
  • Fixes bugs with comma decimal separators: #19, #23, #28
  • Fixes a bug causing issues on iOS

Auto-completion Suggestions

By default, Numerals will provide auto-completion suggestions for variables that have been defined in a particular math codeblock. Turning on Include Functions and Constants in Suggestions will also provide suggestions for all functions, math constants, and physical constants supported in Numerals.

Auto-completion of Functions

Formatting Options

  • System Formatted: Use your local system settings for number formatting
  • Fixed: No thousands separator and full precision
  • Exponential: Always use exponential notation.
  • Engineering: Exponential notation with exponent a multiple of 3.
  • Formatted: Forces a specific type of formatted notation.

    • Formatted: 100,000.1
    • Formatted: 100.000,1
    • Formatted: 100 000,1
    • Formatted: 1,00,000.1
  • Note: math-tex mode will always use period as decimal separator, regardless of locale.

1.0.10

12 Mar 07:29
Compare
Choose a tag to compare
1.0.10 Pre-release
Pre-release

Release Changes

  • Adds user setting to specify rendered number formatting
  • Fixes bugs with comma decimal separators: #19, #23, #28

Formatting Options

  • System Formatted: Use your local system settings for number formatting
  • Fixed: No thousands separator and full precision
  • Exponential: Always use exponential notation.
  • Engineering: Exponential notation with exponent a multiple of 3.
  • Formatted: Forces a specific type of formatted notation.

    • Formatted: 100,000.1
    • Formatted: 100.000,1
    • Formatted: 100 000,1
    • Formatted: 1,00,000.1

Note:  math-tex  mode will always use period as decimal separator, regardless of locale.

1.0.9

04 Feb 08:42
Compare
Choose a tag to compare
1.0.9 Pre-release
Pre-release

Rewrite result annotation regex which was crashing Numerals on iOS