Skip to content

Commit 32bc3d6

Browse files
committed
docs: update CHANGELOG for v1.0.0-alpha.2
Added comprehensive release notes including: - Landing page with Sakura Tech design - Multilingual support (EN/FR/JA) - Typing animations and video demo - Design improvements and bug fixes - Automated release workflow
1 parent e553453 commit 32bc3d6

File tree

3 files changed

+53
-7
lines changed

3 files changed

+53
-7
lines changed

CHANGELOG.md

Lines changed: 50 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,56 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
## [1.0.0] - 2025-10-26
10+
## [1.0.0-alpha.2] - 2025-10-27
1111

1212
### Added
1313

14-
- Initial release
14+
- **Landing Page**: Complete landing page with modern design
15+
- Sakura Tech color palette (pink/violet/cyan)
16+
- Multilingual support (English, French, Japanese)
17+
- Automatic language detection from browser
18+
- Static HTML pages for SEO optimization
19+
- Language selector dropdown in navbar
20+
- **Animations**: Interactive typing animations in demo section
21+
- Character-by-character typing effect
22+
- Blinking cursor animation
23+
- Furigana pop-up animations with bounce effect
24+
- Scroll-triggered animations
25+
- **Video Demo**: Autoplay video demonstration
26+
- Muted and looping
27+
- Shows plugin in action
28+
- **Design System**: Modern Sakura Tech design
29+
- Rose to violet gradient on hero title
30+
- Pink borders on feature cards with hover effects
31+
- Gradient backgrounds on CTA section
32+
- Custom scrollbar styling
33+
34+
### Changed
35+
36+
- Updated Japanese font to "Mochiy Pop P One"
37+
- Improved typography with adjusted colors (gray-600)
38+
- Replaced box-shadows with colored borders on feature cards
39+
- Enhanced language switcher with proper `hreflang` and `lang` attributes
40+
41+
### Fixed
42+
43+
- Language selector no longer duplicates in development
44+
- Multilingual functionality works correctly in production
45+
- Prevents FOUC (Flash of Unstyled Content) in demo animations
46+
- Proper language detection from static pages
47+
48+
### Technical
49+
50+
- Implemented static page generation for multilingual SEO
51+
- Added Vite post-build script for i18n page generation
52+
- Uses semantic `<a>` links instead of buttons in language selector
53+
- Progressive enhancement: works without JavaScript
54+
- Automated release workflow with version bumping from git tags
55+
56+
## [1.0.0-alpha.1] - 2025-10-26
57+
58+
### Added - Initial Alpha Release
59+
1560
- Automatic furigana addition for Japanese kanji using Kuromoji.js
1661
- Toggle functionality to add/remove furigana
1762
- Integration with Gutenberg editor toolbar
@@ -31,5 +76,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3176
- Node.js polyfills: path, zlib, stream, buffer, util
3277
- Dictionary files automatically copied to build directory
3378

34-
[Unreleased]: https://github.com/firestar300/wp-kakitai/compare/v1.0.0...HEAD
35-
[1.0.0]: https://github.com/firestar300/wp-kakitai/releases/tag/v1.0.0
79+
[Unreleased]: https://github.com/firestar300/wp-kakitai/compare/v1.0.0-alpha.2...HEAD
80+
[1.0.0-alpha.2]: https://github.com/firestar300/wp-kakitai/compare/v1.0.0-alpha.1...v1.0.0-alpha.2
81+
[1.0.0-alpha.1]: https://github.com/firestar300/wp-kakitai/releases/tag/v1.0.0-alpha.1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wp-kakitai",
3-
"version": "1.0.0",
3+
"version": "1.0.0-alpha.2",
44
"description": "Provide Furigana for Japanese text.",
55
"author": "firestar300",
66
"license": "GPL-2.0-or-later",

wp-kakitai.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Plugin Name: WP Kakitai
44
* Description: Provide Furigana for Japanese text.
5-
* Version: 1.0.0
5+
* Version: 1.0.0-alpha.2
66
* Requires at least: 6.7
77
* Requires PHP: 7.4
88
* Author: firestar300
@@ -20,7 +20,7 @@
2020
}
2121

2222
// Plugin constants
23-
define( 'WP_KAKITAI_VERSION', '1.0.0' );
23+
define( 'WP_KAKITAI_VERSION', '1.0.0-alpha.2' );
2424
define( 'WP_KAKITAI_URL', plugin_dir_url( __FILE__ ) );
2525
define( 'WP_KAKITAI_DIR', plugin_dir_path( __FILE__ ) );
2626
define( 'WP_KAKITAI_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );

0 commit comments

Comments
 (0)