Skip to content

Releases: houseabsolute/tailwindcss-to-rust

tailwindcss-to-rust-v0.3.2

19 Feb 22:01
cbc8c16
Compare
Choose a tag to compare
  • Fixed the generator to run on Windows without a stack overflow.

tailwindcss-to-rust-v0.3.1

19 Feb 06:04
7b9a6f1
Compare
Choose a tag to compare

v0.3.1 - 2023-02-18

  • Fixes for docs and release tooling.

v0.3.0 - 2023-02-18

  • The generated code now groups CSS classes into modules instead of structs. This prevents stack overflows that happened when the structs were put on the stack. Thanks to @mdochdev for identifying the issue and suggesting this fix. GH #4.
  • Updated the class categories for the latest TailwindCSS version, 3.2.7.

tailwindcss-to-rust-v0.2.0

18 Feb 19:04
a6d0a1d
Compare
Choose a tag to compare
  • Updated the class categories for the latest TailwindCSS version, 3.2.4.
  • Updated the docs to make it clearer how to configure tailwind.config.js depending on whether or not you're using the macros, what templating system you're using, etc.

tailwindcss-to-rust-v0.1.4

24 Apr 17:01
Compare
Choose a tag to compare
  • Added a new --tailwindcss argument. This can be used to provide the path to the tailwindcss executable.

tailwindcss-to-rust v0.1.3

18 Feb 00:08
Compare
Choose a tag to compare
  • Documentation fixes.

(There aren't any binaries for this release because I broke my GitHub actions and I can't redo them for this tag 😢 - but they'll be back next release (I hope))

tailwindcss-to-rust-macros v0.1.2

18 Feb 00:09
Compare
Choose a tag to compare
  • Documentation and example fixes.

tailwindcss-to-rust v0.1.2

14 Feb 19:53
Compare
Choose a tag to compare
  • Fixed the handling of CSS class names with periods and forward slashes. The generated Rust code included an escape for these names, so they'd end up as things like w-0\.5 or w-3\/5 in your HTML, which is wrong. They should not have a backslash escape in the generated HTML. Note that this also means that the tailwind extractor code in the generator's README.md was wrong as well. It has also been fixed.

v0.1.1

14 Feb 18:53
Compare
Choose a tag to compare
  • Fixed the repository metadata for both crates. Thanks to overlisted on the Dioxus Discord for pointing this out.

v0.1.0

14 Feb 18:53
Compare
Choose a tag to compare
  • First release upon an unsuspecting world.