-
Notifications
You must be signed in to change notification settings - Fork 41
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
fix: Swipe button and some other clean up #164
base: develop
Are you sure you want to change the base?
Conversation
WalkthroughThis pull request involves the removal of the Changes
Possibly related PRs
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
.github/workflows/main_cd.yml (1)
25-27
: Consider using forward slashes for cross-platform compatibility.While backslashes work on Windows, forward slashes are the preferred cross-platform path separator and work consistently across all platforms, including Windows. Consider reverting to forward slashes:
- run: dotnet pack MAUI.FreakyControls\MAUI.FreakyControls\Maui.FreakyControls.csproj -c Release -p:PackageVersion=${{ steps.get_version.outputs.version-without-v }} + run: dotnet pack MAUI.FreakyControls/MAUI.FreakyControls/Maui.FreakyControls.csproj -c Release -p:PackageVersion=${{ steps.get_version.outputs.version-without-v }} - run: dotnet nuget push MAUI.FreakyControls\MAUI.FreakyControls\bin\Release\FreakyControls.${{ steps.get_version.outputs.version-without-v }}.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }} + run: dotnet nuget push MAUI.FreakyControls/MAUI.FreakyControls/bin/Release/FreakyControls.${{ steps.get_version.outputs.version-without-v }}.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }}
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (4)
.github/workflows/main_cd.yml
(2 hunks)MAUI.FreakyControls/MAUI.FreakyControls/FreakyCropView/FreakyCropView.cs
(0 hunks)MAUI.FreakyControls/MAUI.FreakyControls/Platforms/MacCatalyst/FreakyCropViewHandler.cs
(0 hunks)MAUI.FreakyControls/MAUI.FreakyControls/Platforms/Windows/FreakyCropViewHandler.cs
(0 hunks)
💤 Files with no reviewable changes (3)
- MAUI.FreakyControls/MAUI.FreakyControls/FreakyCropView/FreakyCropView.cs
- MAUI.FreakyControls/MAUI.FreakyControls/Platforms/Windows/FreakyCropViewHandler.cs
- MAUI.FreakyControls/MAUI.FreakyControls/Platforms/MacCatalyst/FreakyCropViewHandler.cs
⏰ Context from checks skipped due to timeout of 90000ms (1)
- GitHub Check: build-plugin-ci
🔇 Additional comments (1)
.github/workflows/main_cd.yml (1)
15-18
: Verify the default branch name.The workflow now checks for commits in
origin/master
. Please ensure this matches your repository's default branch name, as many repositories usemain
as the default.Run this script to verify the default branch:
✅ Verification successful
Branch reference is correctly configured
The workflow is correctly configured to check for commits in
origin/master
, which matches the repository's default branch.🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Check repository's default branch name gh api repos/:owner/:repo --jq .default_branchLength of output: 55
Summary by CodeRabbit
FreakyCropView
and its platform-specific handlers for MacCatalyst and Windows platformsorigin/master
branch and adjusted file path syntax