UnderwoodNC Posted November 2, 2021 Author Share Posted November 2, 2021 Hey, I appreciate it, thanks! I've been thinking it's time for a rewrite to bring it up to date. I'll have to remove the image upload functionality for now since there were issues with duplicate images getting added to the database, but I can at least get the metadata upload working again and then look into images in a future update. Thanks for reaching out about it, I'll pick it up this week and see if I can get something out to the community. 2 Quote Link to comment Share on other sites More sharing options...
KaaMoS Posted November 21, 2021 Share Posted November 21, 2021 Thanks friend! Just installed! Have to try it, I hope this will make uploading process a lot easier! Quote Link to comment Share on other sites More sharing options...
jchasa Posted January 14, 2022 Share Posted January 14, 2022 On 11/2/2021 at 3:16 PM, UnderwoodNC said: Hey, I appreciate it, thanks! I've been thinking it's time for a rewrite to bring it up to date. I'll have to remove the image upload functionality for now since there were issues with duplicate images getting added to the database, but I can at least get the metadata upload working again and then look into images in a future update. Thanks for reaching out about it, I'll pick it up this week and see if I can get something out to the community. Glad to see your still around, Thanks for the update. Been hoping for one for a while. Quote Link to comment Share on other sites More sharing options...
jchasa Posted January 14, 2022 Share Posted January 14, 2022 AddToGamesDb.log Just installed updated ADDTOGAMESDB and getting this error, just installed Chrome. Newest Beta Release of LB. Spoiler 2022-01-13 21:54:23.8586 ERROR Metadata Directory Not Found. 2022-01-13 21:54:26.4899 ERROR Exception encountered when trying to get the default browser and load the WebDriver. Error details as follows: unknown error: cannot find Chrome binary (Driver info: chromedriver=2.43.600210 (68dcf5eebde37173d4027fa8635e332711d2874a),platform=Windows NT 10.0.19044 x86_64) 2022-01-13 21:54:26.4899 ERROR Exception type: Exception 2022-01-13 21:54:26.4899 ERROR unknown error: cannot find Chrome binary (Driver info: chromedriver=2.43.600210 (68dcf5eebde37173d4027fa8635e332711d2874a),platform=Windows NT 10.0.19044 x86_64) 2022-01-13 21:54:26.4899 Error -------------- Call Site: AddToGamesDB.AddToGamesDbPlugin.LogError Exception Type: Exception Message: Stack Trace: Additional Info: Exception encountered when trying to get the default browser and load the WebDriver. Error details as follows: unknown error: cannot find Chrome binary (Driver info: chromedriver=2.43.600210 (68dcf5eebde37173d4027fa8635e332711d2874a),platform=Windows NT 10.0.19044 x86_64) 2022-01-13 21:54:26.4899 Error -------------- Call Site: AddToGamesDB.AddToGamesDbPlugin.LogError Exception Type: Exception Message: Stack Trace: Additional Info: Exception type: Exception 2022-01-13 21:54:26.4899 Error -------------- Call Site: AddToGamesDB.AddToGamesDbPlugin.LogError Exception Type: Exception Message: Stack Trace: Additional Info: unknown error: cannot find Chrome binary (Driver info: chromedriver=2.43.600210 (68dcf5eebde37173d4027fa8635e332711d2874a),platform=Windows NT 10.0.19044 x86_64) Quote Link to comment Share on other sites More sharing options...
tanuki_ Posted February 14, 2022 Share Posted February 14, 2022 Can anyone help me with this error, I'm pretty sure its because its trying to use chrome but I use firefox, is there anyway for me to use firefox because I have not the slightest clue. 2022-02-14 02:24:10.3355 Error -------------- Call Site: AddToGamesDB.AddToGamesDbPlugin.LogError Exception Type: Exception Message: Stack Trace: Additional Info: unknown error: cannot find Chrome binary (Driver info: chromedriver=2.43.600210 (68dcf5eebde37173d4027fa8635e332711d2874a),platform=Windows NT 10.0.22000 x86_64) Quote Link to comment Share on other sites More sharing options...
UnderwoodNC Posted February 14, 2022 Author Share Posted February 14, 2022 Hi Tanuki, It was only compatible with Chrome at the time, but this plugin is unfortunately outdated. I’m thinking through ways to keep it up to date, and what the new functionality would need to look like to prevent duplicate or incorrect submissions. I would recommend uninstalling it for now and, if there’s enough interest, I hope to have a rewrite available soon. Thanks! 4 Quote Link to comment Share on other sites More sharing options...
sqlallstar Posted July 15, 2022 Share Posted July 15, 2022 +1 for a rewrite. Why is there a need to rely on a web browser at all? Is there no API for the games DB? 1 Quote Link to comment Share on other sites More sharing options...
sqlallstar Posted August 6, 2022 Share Posted August 6, 2022 Would you be willing to save a friend some time and release the code on to git? 1 Quote Link to comment Share on other sites More sharing options...
JamesBond@ge Posted August 11, 2022 Share Posted August 11, 2022 @UnderwoodNC Calling Underwood! The post above! ^^^ :-) Quote Link to comment Share on other sites More sharing options...
UnderwoodNC Posted August 11, 2022 Author Share Posted August 11, 2022 Hey, thanks for getting my attention. @sqlallstar Yeah, I don’t know if there is an API for the games database now, but at the time, there was not. Bulk updates were also intentionally not supported. Using UI testing tool, Selenium, I wrote a plugin that opens the browser and does some work. Unfortunately, Selenium relies on drivers whose versions have to be kept in sync with their respective browser versions, and browser versions can update frequently. That aspect was problematic. At the time, I was going to look into phantomjs as an alternative to Chrome to resolve that issue, but phantomjs is no longer supported. Selenium does have a headless experience now, but I think it still requires the driver and has the same issues. It just makes testing more performant. Pretty soon, I’ll be able to look at an alternative to Selenium, and hopefully it doesn’t carry the same issue. I’ve also been going back and forth on whether it would be better served as a separate app instead of a plugin. I don’t know if I have the latest code after the laptop crashed, but I’ll grab the latest version I have and get it posted, and update it if I get a hot minute. I would like to bring it back for the community if there’s interest. 3 1 Quote Link to comment Share on other sites More sharing options...
aderumier Posted August 21, 2022 Share Posted August 21, 2022 On 8/11/2022 at 9:15 PM, UnderwoodNC said: Hey, thanks for getting my attention. @sqlallstar Yeah, I don’t know if there is an API for the games database now, but at the time, there was not. Bulk updates were also intentionally not supported. Using UI testing tool, Selenium, I wrote a plugin that opens the browser and does some work. Unfortunately, Selenium relies on drivers whose versions have to be kept in sync with their respective browser versions, and browser versions can update frequently. That aspect was problematic. At the time, I was going to look into phantomjs as an alternative to Chrome to resolve that issue, but phantomjs is no longer supported. Selenium does have a headless experience now, but I think it still requires the driver and has the same issues. It just makes testing more performant. Pretty soon, I’ll be able to look at an alternative to Selenium, and hopefully it doesn’t carry the same issue. I’ve also been going back and forth on whether it would be better served as a separate app instead of a plugin. I don’t know if I have the latest code after the laptop crashed, but I’ll grab the latest version I have and get it posted, and update it if I get a hot minute. I would like to bring it back for the community if there’s interest. Hi, I'm also interested by the plugin. I have an huge c64 collection to sync, and it's really too slow through the web. Thanks for your work ! Quote Link to comment Share on other sites More sharing options...
wemr97dl Posted November 22, 2022 Share Posted November 22, 2022 Would love an update, any news?? Quote Link to comment Share on other sites More sharing options...
dnm Posted November 28, 2023 Share Posted November 28, 2023 Not working on launcbox 13.8 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.