-
Notifications
You must be signed in to change notification settings - Fork 15
Flare v5 registry #2312
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
base: main
Are you sure you want to change the base?
Flare v5 registry #2312
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| export const REGISTRY_URL = | ||
| 'https://raw.githubusercontent.com/rainlanguage/rain.strategies/cf96aab81a59704ea8d9300130ac888eb86f5eff/registry'; | ||
| 'https://raw.githubusercontent.com/rainlanguage/rain.strategies/647695e7e374bf8411f5871f350d7d98ecde8bec/registry'; | ||
| export const REMOTE_SETTINGS_URL = | ||
| 'https://raw.githubusercontent.com/rainlanguage/rain.strategies/cf96aab81a59704ea8d9300130ac888eb86f5eff/settings.yaml'; | ||
| 'https://raw.githubusercontent.com/rainlanguage/rain.strategies/647695e7e374bf8411f5871f350d7d98ecde8bec/settings.yaml'; | ||
|
Comment on lines
3
to
+4
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chainVerify settings.yaml accessibility and check if the duplicate constant needs updating. The REMOTE_SETTINGS_URL has been updated consistently with REGISTRY_URL (both pointing to the same commit). However, based on learnings, this constant is intentionally duplicated in
Based on learnings. Run the following script to verify: 🏁 Script executed: #!/bin/bash
# Verify settings.yaml accessibility and check for duplicate constant
# Test if the settings.yaml URL is accessible
echo "Checking settings.yaml URL accessibility..."
curl -f -s -o /dev/null -w "HTTP Status: %{http_code}\n" \
'https://raw.githubusercontent.com/rainlanguage/rain.strategies/647695e7e374bf8411f5871f350d7d98ecde8bec/settings.yaml' || echo "Settings URL not accessible"
# Show first few lines of settings.yaml content
echo -e "\nSettings.yaml content preview:"
curl -s 'https://raw.githubusercontent.com/rainlanguage/rain.strategies/647695e7e374bf8411f5871f350d7d98ecde8bec/settings.yaml' | head -20
# Check if duplicate constant in tauri-app needs updating
echo -e "\nChecking tauri-app duplicate constant..."
if [ -f "tauri-app/src/lib/services/loadRemoteSettings.ts" ]; then
echo "Content of tauri-app duplicate:"
cat tauri-app/src/lib/services/loadRemoteSettings.ts | grep -A 1 "REMOTE_SETTINGS_URL"
else
echo "tauri-app file not found in this repository"
fiLength of output: 1015 Update duplicate REMOTE_SETTINGS_URL in tauri-app to match the new commit hash. The settings.yaml file is accessible at the updated URL. However, the duplicate constant in 🤖 Prompt for AI Agents |
||
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.
Include a screenshot showing the impact of the updated URLs.
This change modifies frontend constants that affect external resource loading in the webapp. Per the coding guidelines, frontend code modifications should include a screenshot of the built webapp reflecting the change.
As per coding guidelines.
🤖 Prompt for AI Agents