Skip to content

Commit

Permalink
Merge pull request #2 from paulocoutinhox/fix-projector-scale
Browse files Browse the repository at this point in the history
fix projector scale
  • Loading branch information
paulocoutinhox authored Nov 18, 2023
2 parents 5a45727 + 7b8f64b commit f440d8b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion code/resources/macos/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.1.0</string>
<string>2.1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
Expand Down
2 changes: 1 addition & 1 deletion code/resources/qml/ProjectorScreen.qml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Item {
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
anchors.fill: parent
fillMode: Image.PreserveAspectCrop
fillMode: Image.PreserveAspectFit
}

MediaPlayer {
Expand Down
2 changes: 1 addition & 1 deletion make.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,5 +104,5 @@ def main(options):

if __name__ == "__main__":
# main CLI entrypoint
args = docopt(__doc__, version="2.1.0")
args = docopt(__doc__, version="2.1.1")
main(args)
2 changes: 1 addition & 1 deletion modules/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
qt_version = "6.6.0"

# macos
macos_pkg_version = "2.1.0"
macos_pkg_version = "2.1.1"
macos_identifier = "com.paulocoutinho.prprojector"

macos_dist_certificate_name = "Apple Distribution: Paulo Coutinho (99AHAA343Q)"
Expand Down

0 comments on commit f440d8b

Please sign in to comment.