Skip to content

Commit

Permalink
[RELEASE v0.2.1] Spirit v0.2.1 (Bugfix)
Browse files Browse the repository at this point in the history
Fixes scale issues in offsets, now adds scale
even for offsets which makes it properly handle
large image file.

Signed-off-by: Divya Antony J.R <[email protected]>
  • Loading branch information
antony-jr committed Nov 28, 2022
1 parent f8343b3 commit a7cb075
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ jobs:

BuildAndDeployMac:
name: "Build and Deploy (macOS x86_64)"
runs-on: macos-10.15
runs-on: macos-11
needs: [Check, BuildAndDeployLinux]
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions build_resources/Daemon-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.2.0</string>
<string>0.2.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.2.0b1</string>
<string>0.2.1b1</string>
<key>LSUIElement</key>
<true/>
<key>CSResourcesFileMapped</key>
Expand Down
4 changes: 2 additions & 2 deletions build_resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.2.0</string>
<string>0.2.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.2.0b1</string>
<string>0.2.1b1</string>
<key>CSResourcesFileMapped</key>
<true/>
<key>NSHumanReadableCopyright</key>
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class Conan(ConanFile):
name = "spirit"
version = "0.2.0"
version = "0.2.1"
settings = "arch"
generators = ["cmake_find_package", "cmake", "json"]

Expand Down
4 changes: 2 additions & 2 deletions qtinstaller/config/config.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<Installer>
<Name>Spirit</Name>
<Version>0.2.0</Version>
<Title>Spirit v0.2.0</Title>
<Version>0.2.1</Version>
<Title>Spirit v0.2.1</Title>
<Publisher>D. Antony JR</Publisher>
<StartMenuDir>Spirit</StartMenuDir>
<TargetDir>@HomeDir@/Spirit</TargetDir>
Expand Down
4 changes: 2 additions & 2 deletions qtinstaller/packages/com.antonyjr.spirit/meta/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<Package>
<DisplayName>Spirit</DisplayName>
<Description>Install Spirit Daemon and Spirit Manager to the System.</Description>
<Version>0.2.0</Version>
<ReleaseDate>2022-10-21</ReleaseDate>
<Version>0.2.1</Version>
<ReleaseDate>2022-11-28</ReleaseDate>
<Licenses>
<License name="GNU General Public License Version 3" file="license.txt" />
</Licenses>
Expand Down
7 changes: 7 additions & 0 deletions release_notes/v0.2.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Spirit v0.2.1 👻

Minor patch to fix a bug, thanks for using Spirit.

## Fixes

* Add scale on offsets, correctly handle large image files.

0 comments on commit a7cb075

Please sign in to comment.