Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add The Ability To Generate Plugins From The CLI Tool #2144

Merged
merged 28 commits into from
Jun 25, 2024
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
fb35ce3
feat: Code changes for plugin project generation support
mcmah309 Jun 22, 2024
2df1f12
feat: Support file changes for plugin project generation support
mcmah309 Jun 22, 2024
1248ed7
chore: Update release script
mcmah309 Jun 22, 2024
1bce844
feat: Change type to template
mcmah309 Jun 23, 2024
cee548c
feat: Add integration test to template generation
mcmah309 Jun 23, 2024
0b3fcb8
test: Add tests for plugin creation
mcmah309 Jun 23, 2024
d86cc7c
chore: Update fvm to match ci version
mcmah309 Jun 23, 2024
8a907a8
chore: Remove unneeded fvm dot file
mcmah309 Jun 23, 2024
0fc7a31
chore: Update .gitignore for fvm dot file
mcmah309 Jun 23, 2024
6f20a74
Merge remote-tracking branch 'origin/add-plugin-cli' into add-plugin-cli
mcmah309 Jun 23, 2024
a6cb054
refactor: Move file after merge
mcmah309 Jun 23, 2024
c8c8859
chore: submodule move
mcmah309 Jun 23, 2024
f0341d2
chore: submodule move
mcmah309 Jun 23, 2024
a3ee2af
chore: Remove files removed before merge
mcmah309 Jun 23, 2024
8099455
test: Test plugin create
mcmah309 Jun 23, 2024
a3550ae
feat: Change generated plugin example files
mcmah309 Jun 23, 2024
f7f2476
chore: Update flutter_package example files
mcmah309 Jun 23, 2024
243e318
doc: Move old plugin set up to archive
mcmah309 Jun 23, 2024
97c5867
chore: lint fix
mcmah309 Jun 23, 2024
d460693
doc: Update package docs
mcmah309 Jun 23, 2024
b0181b1
refactor: Code review nits
mcmah309 Jun 24, 2024
c8ae116
Revert "doc: Move old plugin set up to archive"
mcmah309 Jun 24, 2024
a559975
doc: Doc code review chagnes
mcmah309 Jun 24, 2024
1dd09c2
feat: move path computation earlier
mcmah309 Jun 24, 2024
76f8238
refactor: Add template postfix back as per review comment
mcmah309 Jun 24, 2024
52b4865
refactor: Code review nit
mcmah309 Jun 24, 2024
4a99351
Merge branch 'master' into master
fzyzcjy Jun 25, 2024
40fd268
Merge branch 'feat/12413' into master
fzyzcjy Jun 25, 2024
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
Prev Previous commit
Next Next commit
chore: Update release script
  • Loading branch information
mcmah309 committed Jun 22, 2024
commit 1248ed7738fe8d4b5ac59a1ab6c461f2bf0ae236
2 changes: 1 addition & 1 deletion tools/frb_internal/lib/src/makefile_dart/release.dart
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void _updateVersionInText() {

for (final package in ['flutter_rust_bridge', 'flutter_rust_bridge_macros']) {
simpleReplaceFile(
'${exec.pwd}frb_codegen/assets/integration_template/REPLACE_ME_RUST_CRATE_DIR/Cargo.lock.template',
'${exec.pwd}frb_codegen/assets/integration_template/shared/REPLACE_ME_RUST_CRATE_DIR/Cargo.lock',
mcmah309 marked this conversation as resolved.
Show resolved Hide resolved
'[[package]]\nname = "$package"\nversion = "${versionInfo.oldVersion}"',
'[[package]]\nname = "$package"\nversion = "${versionInfo.newVersion}"',
);
Expand Down
Loading