Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
cc14b42
⬆️ Upgrade intl to 0.19.0
Shreemanarjun Apr 9, 2024
02da3af
🔖 v 4.2.0
Shreemanarjun Apr 9, 2024
151337c
Merge branch 'stable' of https://github.com/Shreemanarjun/VelocityX i…
Shreemanarjun Apr 9, 2024
acef388
🐛 Flutter 3.27 migration fixes
Shreemanarjun Dec 14, 2024
fb33935
`Update intl dependency from ^0.18.1 to ^0.19.0`
Shreemanarjun Dec 14, 2024
2e5dd46
Merge commit 'fb3393522708d67808bb702332be98361ea0afd5' into 3.27_fix
Shreemanarjun Dec 14, 2024
6d12cd5
`Bump version from 4.1.3 to 4.3.0 in pubspec.yaml`
Shreemanarjun Dec 14, 2024
a062407
`Update CHANGELOG.md to reflect new version and breaking changes`
Shreemanarjun Dec 14, 2024
c8a82df
Merge commit 'a06240779d11673e25715290716db3b61665ee15' into stable
Shreemanarjun Dec 14, 2024
cb6d4c9
Merge branch 'stable' of https://github.com/Shreemanarjun/VelocityX i…
Shreemanarjun Feb 20, 2025
40d25de
Fix enableFeedback default value in VxUniversal
Shreemanarjun Feb 20, 2025
9bfbc46
Fix enableFeedback default value in VxUniversal for Flutter 3.29
Shreemanarjun Feb 20, 2025
b514ec9
Fix enableFeedback default value in VxUniversal for Flutter 3.29
Shreemanarjun Feb 20, 2025
0e2dc80
Update pubspec.lock and test files for dependency version bumps and s…
Shreemanarjun Jun 4, 2025
a88e8d7
🐛 fix(dependencies): update dependencies in pubspec files
Shreemanarjun Aug 16, 2025
2fd43c2
🐛 fix(flutter): fix null safety and toast position
Shreemanarjun Aug 16, 2025
3d125c9
🐛 fix(drawer): resolve popscope deprecated warning
Shreemanarjun Aug 16, 2025
a8416f4
🐛 fix(popup_menu): fix onPopInvokedWithResult callback
Shreemanarjun Aug 16, 2025
042d509
chore(deps): update Dart SDK version constraint
Shreemanarjun Aug 16, 2025
9d3d9f6
```
Shreemanarjun Aug 16, 2025
2fb9e9c
🐛 fix(flutter): address null safety issues in viewport finding
Shreemanarjun Aug 16, 2025
8273c71
✨ feat(core): enhance code formatting and update dependencies
Shreemanarjun Aug 16, 2025
60a22f1
📝 docs(changelog): update changelog for version 4.4.0
Shreemanarjun Aug 16, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@



## [4.4.0] -
- **BREAKING CHANGE**: Minimum supported Flutter version is now 3.0.0.
- feat(core): Enhanced code formatting with a wider page width and preserved trailing commas for better readability.
- chore: Updated various dependencies.
- chore(deps): Updated Dart SDK constraint to `>=3.9.0 <4.0.0`.
- fix(dependencies): Updated various dependencies for improved stability and compatibility.
- fix(flutter): Fixed null safety issue in skeleton animation.
- fix(flutter): Resolved `BuildContext` type issue in toast positioning.
- fix(flutter): Added `BoxConstraints` to fix height issue in tooltips.
- fix(drawer): Replaced deprecated `onPopInvokedWithResult` with `onPopInvoked` to resolve warning.
- fix(flutter): Addressed null safety issues in viewport finding by handling potential null `RenderObject`.
- chore: General code quality improvements including formatting, refactoring, and standardization of `const` constructors.

## [4.3.1] -
- Fix enableFeedback default value in VxUniversal in Flutter 3.29
- Fix clipBehavior for aStack
- Fix TextSpan with the recognizer initialization

## [4.3.0] - Jan 23, 2025

- Flutter 3.27 compatibility added
Expand Down
3 changes: 3 additions & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ linter:
- unnecessary_statements
- unsafe_html
- use_super_parameters
formatter:
trailing_commas: preserve
page_width: 260
Loading