1
0
mirror of https://github.com/Swordfish90/cool-retro-term.git synced 2025-11-01 23:52:06 +00:00

Revert "Handle db upgrades and prepare work for old profiles deprecation."

This reverts commit 6fb8ceb501.
This commit is contained in:
Filippo Scognamiglio
2018-11-21 18:01:49 +01:00
parent 6fb8ceb501
commit 04a64e1312
2 changed files with 3 additions and 42 deletions

View File

@@ -24,9 +24,7 @@ import QtQuick.Controls 1.0
import "utils.js" as Utils
QtObject{
readonly property string version: "1.0.1"
readonly property int profileVersion: 2
property string version: "1.0.1"
// STATIC CONSTANTS ////////////////////////////////////////////////////////
@@ -111,8 +109,6 @@ QtObject{
signal initializedSettings()
signal showErrorMessage(string message)
property Loader fontManager: Loader{
states: [
State { when: rasterization == no_rasterization
@@ -335,17 +331,6 @@ QtObject{
burnInQuality = settings.burnInQuality !== undefined ? settings.burnInQuality : burnInQuality;
}
function userLoadProfileString(profileString) {
var profile = JSON.parse(profileString);
var version = profile.version !== undefined ? profile.version : 1;
if (version === profileVersion) {
loadProfileString(profileString);
} else {
showErrorMessage("This profile is not supported on this version of CRT.")
}
}
function loadProfileString(profileString){
var settings = JSON.parse(profileString);