FHannes Posted October 3, 2012 Share Posted October 3, 2012 SCAR Divi 3.35.04 has been released, this release fixes a bug that managed to sneak in during the database engine change. The bug caused an exception when closing SCAR if you had files in your recenrly opened files list. Downloads: http://www.scar-divi.com/index.php?page=download Changelog: Bugfixes: - Exception when saving recently opened files list due to database engine change Enjoy! ~Freddy Quote Link to comment Share on other sites More sharing options...
Bixby Sayz Posted October 3, 2012 Share Posted October 3, 2012 Hard to keep up with you some days. Edit: Exists in 3.36 as well. Quote Link to comment Share on other sites More sharing options...
FHannes Posted October 3, 2012 Author Share Posted October 3, 2012 Hard to keep up with you some days. Edit: Exists in 3.36 as well. Yes, I already fixed it in 3.36, but I got distracted while uploading it, getting back to it now Quote Link to comment Share on other sites More sharing options...
LordJashin Posted October 3, 2012 Share Posted October 3, 2012 When you do Titan make sure the error dialogs are good, the one now is annonying as hell sometimes. Such as in this case. Ill go dl this now Quote Link to comment Share on other sites More sharing options...
BryceTheCoder Posted October 17, 2012 Share Posted October 17, 2012 Hey just need a really quick fix. When i run scar i get an error box saying "Cannot access field 'value' as type Boolean. How can i fix this plz? Quote Link to comment Share on other sites More sharing options...
FHannes Posted October 17, 2012 Author Share Posted October 17, 2012 Hey just need a really quick fix.When i run scar i get an error box saying "Cannot access field 'value' as type Boolean. How can i fix this plz? Delete your settings file: [user]\AppData\Local\SCAR Divi\settings.db3 Or open it in an SQLite3 editor and execute the following query: BEGIN TRANSACTION; CREATE TABLE boolean2 (key TEXT PRIMARY KEY, value INTEGER); INSERT INTO boolean2 SELECT * FROM boolean; DROP TABLE boolean; CREATE TABLE boolean (key TEXT PRIMARY KEY, value BOOLEAN); INSERT INTO boolean SELECT * FROM boolean2; DROP TABLE boolean2; COMMIT; Quote Link to comment Share on other sites More sharing options...
BryceTheCoder Posted October 17, 2012 Share Posted October 17, 2012 thnx Freddy:) Quote Link to comment Share on other sites More sharing options...