Skip to content

SV 1.3

Latest
Compare
Choose a tag to compare
@RewardedIvan RewardedIvan released this 15 Nov 15:37
· 2 commits to sqlite3 since this release

A lot of changes:

Quick rundown:

  • Everything is organized into directories (devs)
  • Docker actually works
  • Schedule, and most other .MDs moved to the wiki
  • Tests to see if the app actually works (devs)
  • Branch sqlite3
  • I actually provided binaries for the people lazy enough to compile it

Migrating from older databases

if your PRAGMA table_info(levels); displays id and data your probably using an older db.
To migrate type this shit i made up in 20 minutes
CREATE TABLE IF NOT EXISTS levels2(data BLOB UNIQUE);
DELETE FROM levels WHERE ROWID NOT IN (SELECT MIN(ROWID) FROM levels GROUP BY data);
INSERT INTO levels2 (data) SELECT data FROM levels;
DROP TABLE levels;
ALTER TABLE 'levels2' RENAME TO 'levels';
This also removes duplicates

Keep in mind AMD64 doesn't mean it only works on AMD CPUs, it means its works only on 64bit CPUs and 386 stands for 32bit CPUs