diff --git a/app/release/baselineProfiles/0/app-release.dm b/app/release/baselineProfiles/0/app-release.dm index 0d98e94..98805d7 100644 Binary files a/app/release/baselineProfiles/0/app-release.dm and b/app/release/baselineProfiles/0/app-release.dm differ diff --git a/app/release/baselineProfiles/1/app-release.dm b/app/release/baselineProfiles/1/app-release.dm index d9f1d9c..59bcad9 100644 Binary files a/app/release/baselineProfiles/1/app-release.dm and b/app/release/baselineProfiles/1/app-release.dm differ diff --git a/app/release/output-metadata.json b/app/release/output-metadata.json index e1fb618..e74bc0a 100644 --- a/app/release/output-metadata.json +++ b/app/release/output-metadata.json @@ -11,8 +11,8 @@ "type": "SINGLE", "filters": [], "attributes": [], - "versionCode": 3, - "versionName": "0.3", + "versionCode": 4, + "versionName": "0.4", "outputFile": "app-release.apk" } ], diff --git a/app/src/main/java/com/ridgebotics/ridgescout/ui/data/ReportFragment.java b/app/src/main/java/com/ridgebotics/ridgescout/ui/data/ReportFragment.java index a55022f..cd45483 100644 --- a/app/src/main/java/com/ridgebotics/ridgescout/ui/data/ReportFragment.java +++ b/app/src/main/java/com/ridgebotics/ridgescout/ui/data/ReportFragment.java @@ -37,21 +37,24 @@ public class ReportFragment extends Fragment { binding.teamNumber.setText(String.valueOf(ourTeamNum)); - binding.AyEyeBox.setVisibility(View.GONE); + binding.AyEyeBox.setVisibility(View.VISIBLE); + binding.AyEyeButton.setVisibility(View.GONE); DataManager.reload_event(); DataManager.reload_pit_fields(); DataManager.reload_match_fields(); - binding.AyEyeButton.setText("Create Prompt"); - binding.AyEyeButton.setOnClickListener(a ->{ - getPrompt(); - binding.AyEyeButton.setText("Generate Overview"); - binding.AyEyeButton.setOnClickListener(b ->{ - AIDataOverview(); - binding.AyEyeButton.setVisibility(View.GONE); - }); - }); + binding.AyEyeBox.setText("TBD!\n This is meant to be a tool that lets scouters more easily write reports to the drive team before matches. There are some plans for LLM integration into this menu "); + +// binding.AyEyeButton.setText("Create Prompt"); +// binding.AyEyeButton.setOnClickListener(a ->{ +// getPrompt(); +// binding.AyEyeButton.setText("Generate Overview"); +// binding.AyEyeButton.setOnClickListener(b ->{ +// AIDataOverview(); +// binding.AyEyeButton.setVisibility(View.GONE); +// }); +// }); return binding.getRoot(); }