├── README.md ├── Release ├── DB Browser for SQLCipher.7z ├── DB Browser for SQLCipher.exe ├── Qt5Core.dll ├── Qt5Gui.dll ├── Qt5Network.dll ├── Qt5PrintSupport.dll ├── Qt5Widgets.dll ├── Qt5Xml.dll ├── bearer │ └── qgenericbearer.dll ├── imageformats │ ├── qgif.dll │ ├── qicns.dll │ ├── qico.dll │ ├── qjpeg.dll │ ├── qsvg.dll │ ├── qtga.dll │ ├── qtiff.dll │ ├── qwbmp.dll │ └── qwebp.dll ├── libeay32.dll ├── platforms │ └── qwindows.dll ├── printsupport │ └── windowsprintersupport.dll ├── sqlcipher.dll ├── styles │ └── qwindowsvistastyle.dll ├── translations │ ├── qt_ar.qm │ ├── qt_cs.qm │ ├── qt_de.qm │ ├── qt_en.qm │ ├── qt_es.qm │ ├── qt_fr.qm │ ├── qt_it.qm │ ├── qt_ko.qm │ ├── qt_pl.qm │ ├── qt_pt.qm │ ├── qt_ru.qm │ ├── qt_uk.qm │ ├── qt_zh_CN.qm │ ├── qt_zh_TW.qm │ ├── qtbase_ar.qm │ ├── qtbase_cs.qm │ ├── qtbase_de.qm │ ├── qtbase_en.qm │ ├── qtbase_es.qm │ ├── qtbase_fr.qm │ ├── qtbase_it.qm │ ├── qtbase_ko.qm │ ├── qtbase_pl.qm │ ├── qtbase_ru.qm │ ├── qtbase_uk.qm │ ├── qtmultimedia_ar.qm │ ├── qtmultimedia_cs.qm │ ├── qtmultimedia_de.qm │ ├── qtmultimedia_en.qm │ ├── qtmultimedia_es.qm │ ├── qtmultimedia_fr.qm │ ├── qtmultimedia_it.qm │ ├── qtmultimedia_ko.qm │ ├── qtmultimedia_pl.qm │ ├── qtmultimedia_ru.qm │ ├── qtmultimedia_uk.qm │ ├── qtquick1_cs.qm │ ├── qtquick1_de.qm │ ├── qtquick1_en.qm │ ├── qtquick1_es.qm │ ├── qtquick1_fr.qm │ ├── qtquick1_it.qm │ ├── qtquick1_ko.qm │ ├── qtquick1_pl.qm │ ├── qtquick1_ru.qm │ ├── qtquick1_uk.qm │ ├── qtscript_ar.qm │ ├── qtscript_cs.qm │ ├── qtscript_de.qm │ ├── qtscript_en.qm │ ├── qtscript_es.qm │ ├── qtscript_fr.qm │ ├── qtscript_it.qm │ ├── qtscript_ko.qm │ ├── qtscript_pl.qm │ ├── qtscript_ru.qm │ ├── qtscript_uk.qm │ ├── qtxmlpatterns_cs.qm │ ├── qtxmlpatterns_de.qm │ ├── qtxmlpatterns_en.qm │ ├── qtxmlpatterns_es.qm │ ├── qtxmlpatterns_fr.qm │ ├── qtxmlpatterns_it.qm │ ├── qtxmlpatterns_ko.qm │ ├── qtxmlpatterns_pl.qm │ ├── qtxmlpatterns_ru.qm │ └── qtxmlpatterns_uk.qm └── vcruntime140.dll └── png ├── 1.png ├── 2.png └── 3.png /README.md: -------------------------------------------------------------------------------- 1 | # sqlitebrowser 2 | # 可以打开微信(7.0.4)EnMicroMsg.db的sqlitebrowser 3 | 4 | [Download DB Browser for SQLCipher.7z](https://github.com/lasting-yang/sqlitebrowser/raw/master/Release/DB%20Browser%20for%20SQLCipher.7z) 5 | 6 | 7 | 8 | ![](./png/1.png) 9 | 10 | ![](./png/2.png) 11 | 12 | ![](./png/3.png) 13 | 14 | 15 | 基于[https://github.com/sqlitebrowser/sqlitebrowser/tree/50c1f46bdbbefaadee01b0674b9cf237eaff5052](https://github.com/sqlitebrowser/sqlitebrowser/tree/50c1f46bdbbefaadee01b0674b9cf237eaff5052)编译。 16 | 17 | 主要patch代码是PRAGMA参数的顺序。 18 | 19 | ``` 20 | diff --git a/src/sqlitedb.cpp b/src/sqlitedb.cpp 21 | index f7bfc2dd..166206ca 100644 22 | --- a/src/sqlitedb.cpp 23 | +++ b/src/sqlitedb.cpp 24 | @@ -166,11 +166,15 @@ bool DBBrowserDB::open(const QString& db, bool readOnly) 25 | #ifdef ENABLE_SQLCIPHER 26 | if(isEncrypted && cipherSettings) 27 | { 28 | - executeSQL(QString("PRAGMA key = %1").arg(cipherSettings->getPassword()), false, false); 29 | - executeSQL(QString("PRAGMA cipher_page_size = %1;").arg(cipherSettings->getPageSize()), false, false); 30 | - executeSQL(QString("PRAGMA kdf_iter = %1;").arg(cipherSettings->getKdfIterations()), false, false); 31 | - executeSQL(QString("PRAGMA cipher_hmac_algorithm = %1;").arg(cipherSettings->getHmacAlgorithm()), false, false); 32 | - executeSQL(QString("PRAGMA cipher_kdf_algorithm = %1;").arg(cipherSettings->getKdfAlgorithm()), false, false); 33 | + //executeSQL(QString("PRAGMA key = %1").arg(cipherSettings->getPassword()), false, false); 34 | + //executeSQL(QString("PRAGMA cipher_page_size = %1;").arg(cipherSettings->getPageSize()), false, false); 35 | + //executeSQL(QString("PRAGMA kdf_iter = %1;").arg(cipherSettings->getKdfIterations()), false, false); 36 | + //executeSQL(QString("PRAGMA cipher_hmac_algorithm = %1;").arg(cipherSettings->getHmacAlgorithm()), false, false); 37 | + //executeSQL(QString("PRAGMA cipher_kdf_algorithm = %1;").arg(cipherSettings->getKdfAlgorithm()), false, false); 38 | + executeSQL(QString("PRAGMA cipher_default_kdf_iter = 4000;"), false, false); 39 | + executeSQL(QString("PRAGMA key = %1").arg(cipherSettings->getPassword()), false, false); 40 | + executeSQL(QString("PRAGMA cipher_use_hmac = OFF;"), false, false); 41 | + executeSQL(QString("PRAGMA cipher_page_size = 1024;"), false, false); 42 | } 43 | #endif 44 | delete cipherSettings; 45 | @@ -463,19 +467,22 @@ bool DBBrowserDB::tryEncryptionSettings(const QString& filePath, bool* encrypted 46 | cipherSettings = nullptr; 47 | return false; 48 | } 49 | - 50 | + 51 | + sqlite3_exec(dbHandle, QString("PRAGMA cipher_default_kdf_iter = 4000").toUtf8(), nullptr, nullptr, nullptr); 52 | // Set the key 53 | sqlite3_exec(dbHandle, QString("PRAGMA key = %1").arg(cipherSettings->getPassword()).toUtf8(), nullptr, nullptr, nullptr); 54 | + sqlite3_exec(dbHandle, QString("PRAGMA cipher_use_hmac = OFF").toUtf8(), nullptr, nullptr, nullptr); 55 | + sqlite3_exec(dbHandle, QString("PRAGMA cipher_page_size = 1024").toUtf8(), nullptr, nullptr, nullptr); 56 | 57 | // Set the page size if it differs from the default value 58 | - if(cipherSettings->getPageSize() != enc_default_page_size) 59 | - sqlite3_exec(dbHandle, QString("PRAGMA cipher_page_size = %1;").arg(cipherSettings->getPageSize()).toUtf8(), nullptr, nullptr, nullptr); 60 | - if(cipherSettings->getKdfIterations() != enc_default_kdf_iter) 61 | - sqlite3_exec(dbHandle, QString("PRAGMA kdf_iter = %1;").arg(cipherSettings->getKdfIterations()).toUtf8(), nullptr, nullptr, nullptr); 62 | - if(cipherSettings->getHmacAlgorithm() != enc_default_hmac_algorithm) 63 | - sqlite3_exec(dbHandle, QString("PRAGMA cipher_hmac_algorithm = %1;").arg(cipherSettings->getHmacAlgorithm()).toUtf8(), nullptr, nullptr, nullptr); 64 | - if(cipherSettings->getKdfAlgorithm() != enc_default_kdf_algorithm) 65 | - sqlite3_exec(dbHandle, QString("PRAGMA cipher_kdf_algorithm = %1;").arg(cipherSettings->getKdfAlgorithm()).toUtf8(), nullptr, nullptr, nullptr); 66 | + //if(cipherSettings->getPageSize() != enc_default_page_size) 67 | + // sqlite3_exec(dbHandle, QString("PRAGMA cipher_page_size = %1;").arg(cipherSettings->getPageSize()).toUtf8(), nullptr, nullptr, nullptr); 68 | + //if(cipherSettings->getKdfIterations() != enc_default_kdf_iter) 69 | + // sqlite3_exec(dbHandle, QString("PRAGMA kdf_iter = %1;").arg(cipherSettings->getKdfIterations()).toUtf8(), nullptr, nullptr, nullptr); 70 | + //if(cipherSettings->getHmacAlgorithm() != enc_default_hmac_algorithm) 71 | + // sqlite3_exec(dbHandle, QString("PRAGMA cipher_hmac_algorithm = %1;").arg(cipherSettings->getHmacAlgorithm()).toUtf8(), nullptr, nullptr, nullptr); 72 | + //if(cipherSettings->getKdfAlgorithm() != enc_default_kdf_algorithm) 73 | + // sqlite3_exec(dbHandle, QString("PRAGMA cipher_kdf_algorithm = %1;").arg(cipherSettings->getKdfAlgorithm()).toUtf8(), nullptr, nullptr, nullptr); 74 | 75 | *encrypted = true; 76 | #else 77 | ``` 78 | -------------------------------------------------------------------------------- /Release/DB Browser for SQLCipher.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/DB Browser for SQLCipher.7z -------------------------------------------------------------------------------- /Release/DB Browser for SQLCipher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/DB Browser for SQLCipher.exe -------------------------------------------------------------------------------- /Release/Qt5Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/Qt5Core.dll -------------------------------------------------------------------------------- /Release/Qt5Gui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/Qt5Gui.dll -------------------------------------------------------------------------------- /Release/Qt5Network.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/Qt5Network.dll -------------------------------------------------------------------------------- /Release/Qt5PrintSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/Qt5PrintSupport.dll -------------------------------------------------------------------------------- /Release/Qt5Widgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/Qt5Widgets.dll -------------------------------------------------------------------------------- /Release/Qt5Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/Qt5Xml.dll -------------------------------------------------------------------------------- /Release/bearer/qgenericbearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/bearer/qgenericbearer.dll -------------------------------------------------------------------------------- /Release/imageformats/qgif.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/imageformats/qgif.dll -------------------------------------------------------------------------------- /Release/imageformats/qicns.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/imageformats/qicns.dll -------------------------------------------------------------------------------- /Release/imageformats/qico.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/imageformats/qico.dll -------------------------------------------------------------------------------- /Release/imageformats/qjpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/imageformats/qjpeg.dll -------------------------------------------------------------------------------- /Release/imageformats/qsvg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/imageformats/qsvg.dll -------------------------------------------------------------------------------- /Release/imageformats/qtga.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/imageformats/qtga.dll -------------------------------------------------------------------------------- /Release/imageformats/qtiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/imageformats/qtiff.dll -------------------------------------------------------------------------------- /Release/imageformats/qwbmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/imageformats/qwbmp.dll -------------------------------------------------------------------------------- /Release/imageformats/qwebp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/imageformats/qwebp.dll -------------------------------------------------------------------------------- /Release/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/libeay32.dll -------------------------------------------------------------------------------- /Release/platforms/qwindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/platforms/qwindows.dll -------------------------------------------------------------------------------- /Release/printsupport/windowsprintersupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/printsupport/windowsprintersupport.dll -------------------------------------------------------------------------------- /Release/sqlcipher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/sqlcipher.dll -------------------------------------------------------------------------------- /Release/styles/qwindowsvistastyle.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/styles/qwindowsvistastyle.dll -------------------------------------------------------------------------------- /Release/translations/qt_ar.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qt_ar.qm -------------------------------------------------------------------------------- /Release/translations/qt_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qt_cs.qm -------------------------------------------------------------------------------- /Release/translations/qt_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qt_de.qm -------------------------------------------------------------------------------- /Release/translations/qt_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qt_en.qm -------------------------------------------------------------------------------- /Release/translations/qt_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qt_es.qm -------------------------------------------------------------------------------- /Release/translations/qt_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qt_fr.qm -------------------------------------------------------------------------------- /Release/translations/qt_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qt_it.qm -------------------------------------------------------------------------------- /Release/translations/qt_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qt_ko.qm -------------------------------------------------------------------------------- /Release/translations/qt_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qt_pl.qm -------------------------------------------------------------------------------- /Release/translations/qt_pt.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qt_pt.qm -------------------------------------------------------------------------------- /Release/translations/qt_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qt_ru.qm -------------------------------------------------------------------------------- /Release/translations/qt_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qt_uk.qm -------------------------------------------------------------------------------- /Release/translations/qt_zh_CN.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qt_zh_CN.qm -------------------------------------------------------------------------------- /Release/translations/qt_zh_TW.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qt_zh_TW.qm -------------------------------------------------------------------------------- /Release/translations/qtbase_ar.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtbase_ar.qm -------------------------------------------------------------------------------- /Release/translations/qtbase_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtbase_cs.qm -------------------------------------------------------------------------------- /Release/translations/qtbase_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtbase_de.qm -------------------------------------------------------------------------------- /Release/translations/qtbase_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtbase_en.qm -------------------------------------------------------------------------------- /Release/translations/qtbase_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtbase_es.qm -------------------------------------------------------------------------------- /Release/translations/qtbase_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtbase_fr.qm -------------------------------------------------------------------------------- /Release/translations/qtbase_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtbase_it.qm -------------------------------------------------------------------------------- /Release/translations/qtbase_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtbase_ko.qm -------------------------------------------------------------------------------- /Release/translations/qtbase_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtbase_pl.qm -------------------------------------------------------------------------------- /Release/translations/qtbase_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtbase_ru.qm -------------------------------------------------------------------------------- /Release/translations/qtbase_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtbase_uk.qm -------------------------------------------------------------------------------- /Release/translations/qtmultimedia_ar.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtmultimedia_ar.qm -------------------------------------------------------------------------------- /Release/translations/qtmultimedia_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtmultimedia_cs.qm -------------------------------------------------------------------------------- /Release/translations/qtmultimedia_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtmultimedia_de.qm -------------------------------------------------------------------------------- /Release/translations/qtmultimedia_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtmultimedia_en.qm -------------------------------------------------------------------------------- /Release/translations/qtmultimedia_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtmultimedia_es.qm -------------------------------------------------------------------------------- /Release/translations/qtmultimedia_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtmultimedia_fr.qm -------------------------------------------------------------------------------- /Release/translations/qtmultimedia_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtmultimedia_it.qm -------------------------------------------------------------------------------- /Release/translations/qtmultimedia_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtmultimedia_ko.qm -------------------------------------------------------------------------------- /Release/translations/qtmultimedia_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtmultimedia_pl.qm -------------------------------------------------------------------------------- /Release/translations/qtmultimedia_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtmultimedia_ru.qm -------------------------------------------------------------------------------- /Release/translations/qtmultimedia_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtmultimedia_uk.qm -------------------------------------------------------------------------------- /Release/translations/qtquick1_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtquick1_cs.qm -------------------------------------------------------------------------------- /Release/translations/qtquick1_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtquick1_de.qm -------------------------------------------------------------------------------- /Release/translations/qtquick1_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtquick1_en.qm -------------------------------------------------------------------------------- /Release/translations/qtquick1_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtquick1_es.qm -------------------------------------------------------------------------------- /Release/translations/qtquick1_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtquick1_fr.qm -------------------------------------------------------------------------------- /Release/translations/qtquick1_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtquick1_it.qm -------------------------------------------------------------------------------- /Release/translations/qtquick1_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtquick1_ko.qm -------------------------------------------------------------------------------- /Release/translations/qtquick1_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtquick1_pl.qm -------------------------------------------------------------------------------- /Release/translations/qtquick1_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtquick1_ru.qm -------------------------------------------------------------------------------- /Release/translations/qtquick1_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtquick1_uk.qm -------------------------------------------------------------------------------- /Release/translations/qtscript_ar.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtscript_ar.qm -------------------------------------------------------------------------------- /Release/translations/qtscript_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtscript_cs.qm -------------------------------------------------------------------------------- /Release/translations/qtscript_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtscript_de.qm -------------------------------------------------------------------------------- /Release/translations/qtscript_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtscript_en.qm -------------------------------------------------------------------------------- /Release/translations/qtscript_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtscript_es.qm -------------------------------------------------------------------------------- /Release/translations/qtscript_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtscript_fr.qm -------------------------------------------------------------------------------- /Release/translations/qtscript_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtscript_it.qm -------------------------------------------------------------------------------- /Release/translations/qtscript_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtscript_ko.qm -------------------------------------------------------------------------------- /Release/translations/qtscript_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtscript_pl.qm -------------------------------------------------------------------------------- /Release/translations/qtscript_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtscript_ru.qm -------------------------------------------------------------------------------- /Release/translations/qtscript_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtscript_uk.qm -------------------------------------------------------------------------------- /Release/translations/qtxmlpatterns_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtxmlpatterns_cs.qm -------------------------------------------------------------------------------- /Release/translations/qtxmlpatterns_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtxmlpatterns_de.qm -------------------------------------------------------------------------------- /Release/translations/qtxmlpatterns_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtxmlpatterns_en.qm -------------------------------------------------------------------------------- /Release/translations/qtxmlpatterns_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtxmlpatterns_es.qm -------------------------------------------------------------------------------- /Release/translations/qtxmlpatterns_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtxmlpatterns_fr.qm -------------------------------------------------------------------------------- /Release/translations/qtxmlpatterns_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtxmlpatterns_it.qm -------------------------------------------------------------------------------- /Release/translations/qtxmlpatterns_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtxmlpatterns_ko.qm -------------------------------------------------------------------------------- /Release/translations/qtxmlpatterns_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtxmlpatterns_pl.qm -------------------------------------------------------------------------------- /Release/translations/qtxmlpatterns_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtxmlpatterns_ru.qm -------------------------------------------------------------------------------- /Release/translations/qtxmlpatterns_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/translations/qtxmlpatterns_uk.qm -------------------------------------------------------------------------------- /Release/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/Release/vcruntime140.dll -------------------------------------------------------------------------------- /png/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/png/1.png -------------------------------------------------------------------------------- /png/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/png/2.png -------------------------------------------------------------------------------- /png/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasting-yang/sqlitebrowser/1e3be64206bc014c39bcdc1ab365f6872cd57bb5/png/3.png --------------------------------------------------------------------------------