Skip to content

Releases: kdroidFilter/HebrewNumeralsLibrary

0.2.4

05 Jan 06:21
8fd36e8
Compare
Choose a tag to compare

What's Changed

  • Bump kotlin from 2.0.20 to 2.1.0 by @dependabot in #3
  • Bump org.jetbrains.kotlinx:kotlinx-serialization-json from 1.7.2 to 1.7.3 by @dependabot in #2

Full Changelog: v0.2.2...v0.2.4

0.2.2

01 Jan 14:08
a47c984
Compare
Choose a tag to compare

bug fixe

0.2.1

01 Jan 11:41
120ffd8
Compare
Choose a tag to compare

📚 Hebrew Numerals Library

✨ What's New

  • 🎉Added support for macOS and iOS platforms.🎉
  • Updated build scripts and configurations to include macOS and iOS targets.

0.2.0

17 Dec 21:56
ce1b384
Compare
Choose a tag to compare

📚 Hebrew Numerals Library

🎉 Version 0.2.0 - New Feature: English Daf Gemara Support 🎉

We are excited to announce the release of version 0.2.0 of the Hebrew Numerals Library! This update introduces a new function for working with Daf Gemara in English format alongside improvements to internal code structure to avoid duplication.

✨ What's New

🔹 New Function: toEnglishDafGemara()

Convert an integer representing a Daf Gemara (Talmudic page) to its English representation:

  • a for Amoud Aleph (right side, odd numbers)
  • b for Amoud Bet (left side, even numbers)

Example Usage:

val daf1 = 5.toEnglishDafGemara()
println(daf1) // Outputs: "4a"

val daf2 = 6.toEnglishDafGemara()
println(daf2) // Outputs: "4b"

🛠️ Code Improvements

  • Extracted common logic for Daf Gemara conversion into a private function toDafAndAmoud.
  • This improves maintainability and avoids code duplication.

🚀 Get Started

Refer to the README for complete usage instructions and installation details.

Thank you for supporting this project! If you have any feedback or suggestions, open an issue on GitHub. 🎯

0.1.1

17 Dec 21:42
4726e8f
Compare
Choose a tag to compare

📚 Hebrew Numerals Library

🎉 Version 0.1.1 - First Release 🎉

We are excited to announce the very first release of the Hebrew Numerals Library! This initial version (v0.1.1) introduces a robust Kotlin library to work with Hebrew numerals (Gematria) and Talmudic page references (Daf Gemara).

✨ Features

  • Convert Hebrew strings to their numerical Gematria value
  • Convert integers to Hebrew numeral representations (Gematria)
  • Convert Daf Gemara (Talmudic page) numbers to their string representations
  • Multiplatform support: JVM, JS, and Native platforms
  • Exportable as both a native library and a JavaScript library

🚀 Get Started

Check out the README for installation instructions, usage examples, and more!

Thank you for supporting this first release! 🎯 If you encounter any issues or have feature requests, feel free to open an issue.