Fix parameter name for single plugin update command and update roadmap

This commit is contained in:
Rbanh 2025-03-30 19:34:54 -04:00
parent 43dafb57da
commit b5af6e7e2c
2 changed files with 4 additions and 2 deletions

View File

@ -28,6 +28,7 @@
- [x] Implement SpigotMC data source using SpiGet API - [x] Implement SpigotMC data source using SpiGet API
- [x] Basic implementation - [x] Basic implementation
- [x] Fix version information retrieval issues - [x] Fix version information retrieval issues
- [ ] Reduce version warning logs and improve caching
- [ ] Handle rate limiting and 403 errors - [ ] Handle rate limiting and 403 errors
- [x] Implement Modrinth crawler - [x] Implement Modrinth crawler
- [x] Basic implementation - [x] Basic implementation
@ -56,7 +57,8 @@
- [x] Improve matching algorithm to reduce false positives - [x] Improve matching algorithm to reduce false positives
- [x] Complete GitHub integration - [x] Complete GitHub integration
- [ ] Add GitHub API authentication for higher rate limits (environment variable support exists) - [ ] Add GitHub API authentication for higher rate limits (environment variable support exists)
- [ ] Investigate SpigotMC 403 errors (potentially add headers/delay) - [ ] Fix command parameter naming issues for update checks
- [ ] Optimize duplicate plugin search results (e.g., ViaVersion plugin)
- [x] Implement changelog extraction - [x] Implement changelog extraction
- [x] Create plugin backup functionality - [x] Create plugin backup functionality
- [x] Develop plugin replacement logic - [x] Develop plugin replacement logic

View File

@ -607,7 +607,7 @@ function App() {
await invoke("check_single_plugin_update_command", { await invoke("check_single_plugin_update_command", {
plugin: pluginToSend, plugin: pluginToSend,
repositoriesToCheck, repositories: repositoriesToCheck,
}); });
} catch (err) { } catch (err) {
const errorMessage = `Error invoking single update command for ${plugin.name}: ${err instanceof Error ? err.message : String(err)}`; const errorMessage = `Error invoking single update command for ${plugin.name}: ${err instanceof Error ? err.message : String(err)}`;