Jump to content
FHannes

SCAR Divi 3.35.04 Final

Recommended Posts

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

Link to comment
Share on other sites

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;

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
  • Create New...