raw-fun-ui 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.0.1] - 2026-04-09
9
+
10
+ ### Fixed
11
+ - CI workflow checking for old `blocky-ui.css` artifact name
12
+ - Remaining "Blocky UI" branding in CSS comment headers, docs, and demo
13
+ - Broken documentation links (wiki → GitHub Pages)
14
+ - Theme dropdown label showing "Rfui" instead of "Blocky" for default theme
15
+ - Incorrectly renamed Blocky theme references in docs
16
+
17
+ ## [2.0.0] - 2026-04-08
18
+
19
+ ### Changed
20
+ - **BREAKING**: Rebranded from Blocky UI to Raw Fun UI with `rfui-*` prefix
21
+ - All CSS classes renamed from `blocky-*` to `rfui-*`
22
+ - All TypeScript classes renamed from `Blocky*` to `Rfui*`
23
+ - Package name changed to `raw-fun-ui`
24
+ - CSS output file renamed to `raw-fun-ui.css`
25
+
8
26
  ## [1.0.5] - 2025-12-27
9
27
 
10
28
  ### Added
package/README.md CHANGED
@@ -53,7 +53,7 @@ document.body.appendChild(button);
53
53
  // Create and show a modal
54
54
  const modal = RawFunUI.createModal({
55
55
  title: 'Welcome',
56
- content: 'This is a blocky modal!',
56
+ content: 'This is a rfui modal!',
57
57
  buttons: [
58
58
  { text: 'OK', variant: 'primary', onClick: () => {} }
59
59
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "raw-fun-ui",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "A game-themed UI component library with switchable themes, built with TypeScript and pure CSS",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs.js",