diff --git a/app/FontPixels.qml b/app/FontPixels.qml index 33475bd..455346d 100644 --- a/app/FontPixels.qml +++ b/app/FontPixels.qml @@ -7,7 +7,7 @@ Item{ property var _font: fontlist.get(selectedFontIndex) property var _scaling: fontScalingList[selectedScalingIndex] property var source: _font.source - property var fontScalingList: [0.75, 1.0, 1.25, 1.50, 1.75, 2.0] + property var fontScalingList: [0.75, 1.0, 1.25, 1.50, 1.75, 2.0, 2.25, 2.5] property int pixelSize: _font.pixelSize * _scaling property int lineSpacing: (_font.pixelSize / _font.virtualCharHeight) * _font.lineSpacing property size virtualCharSize: Qt.size(_font.virtualCharWidth, diff --git a/app/FontScanlines.qml b/app/FontScanlines.qml index 6446031..14dfe58 100644 --- a/app/FontScanlines.qml +++ b/app/FontScanlines.qml @@ -7,7 +7,7 @@ Item{ property var _font: fontlist.get(selectedFontIndex) property var _scaling: fontScalingList[selectedScalingIndex] property var source: _font.source - property var fontScalingList: [0.75, 1.0, 1.25, 1.50, 1.75, 2.0] + property var fontScalingList: [0.75, 1.0, 1.25, 1.50, 1.75, 2.0, 2.25, 2.50] property int pixelSize: _font.pixelSize * _scaling property int lineSpacing: (_font.pixelSize / _font.virtualCharHeight) * _font.lineSpacing property size virtualCharSize: Qt.size(_font.virtualCharWidth, @@ -16,16 +16,16 @@ Item{ ListModel{ id: fontlist ListElement{ - text: "Commodore PET (1977)" - source: "fonts/1977-commodore-pet/COMMODORE_PET.ttf" + text: "Commodore PET 2Y (1977)" + source: "fonts/1977-commodore-pet/COMMODORE_PET_2y.ttf" lineSpacing: 2 virtualCharWidth: 8 virtualCharHeight: 8 pixelSize: 32 } ListElement{ - text: "Commodore PET 2Y (1977)" - source: "fonts/1977-commodore-pet/COMMODORE_PET_2y.ttf" + text: "Commodore PET (1977)" + source: "fonts/1977-commodore-pet/COMMODORE_PET.ttf" lineSpacing: 2 virtualCharWidth: 8 virtualCharHeight: 8 diff --git a/app/Fonts.qml b/app/Fonts.qml index 64dbdb7..5e85aa2 100644 --- a/app/Fonts.qml +++ b/app/Fonts.qml @@ -7,7 +7,7 @@ Item{ property var source: fontlist.get(selectedFontIndex).source property var _font: fontlist.get(selectedFontIndex) property var _scaling: fontScalingList[selectedScalingIndex] - property var fontScalingList: [0.5, 0.6, 0.7, 0.8, 0.9, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2.0] + property var fontScalingList: [0.5, 0.6, 0.7, 0.8, 0.9, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5] property int pixelSize: _font.pixelSize * _scaling property int lineSpacing: pixelSize * _font.lineSpacing diff --git a/app/app.qmlproject.user b/app/app.qmlproject.user index 458140c..44d99a7 100644 --- a/app/app.qmlproject.user +++ b/app/app.qmlproject.user @@ -1,6 +1,6 @@ - + ProjectExplorer.Project.ActiveTarget