Skip to content

Commit 5692503

Browse files
committed
Merge branch 'master' into release
2 parents 35394c4 + 9e1b3e6 commit 5692503

File tree

5 files changed

+49
-6
lines changed

5 files changed

+49
-6
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "Cura-plugin release"
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
jobs:
9+
create-curapackages:
10+
name: "Tagged Release"
11+
runs-on: "ubuntu-latest"
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
with:
16+
path: "build"
17+
submodules: "recursive"
18+
- uses: fieldOfView/cura-plugin-packager-action@main
19+
with:
20+
source_folder: "build"
21+
package_info_path: "build/.github/workflows/package.json"
22+
- uses: "marvinpinto/action-automatic-releases@latest"
23+
with:
24+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
25+
prerelease: false
26+
files: |
27+
*.curapackage

.github/workflows/package.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"author": {
3+
"author_id": "fieldofview",
4+
"display_name": "fieldOfView",
5+
"email": "[email protected]",
6+
"website": "http://fieldofview.com"
7+
},
8+
"description": "Adds a Z Offset setting to change the distance between the nozzle and the buildplate.\n\nThe development of this plugin can be sponsored via Github Sponsors (https://github.com/sponsors/fieldofview) or Paypal (https://www.paypal.me/fieldofview)",
9+
"display_name": "Z Offset Setting",
10+
"package_id": "ZOffsetPlugin",
11+
"package_type": "plugin",
12+
"package_version": "0.0.0",
13+
"sdk_version": 0,
14+
"sdk_version_semver": "0.0.0",
15+
"website": "https://github.com/fieldOfView/Cura-ZOffsetPlugin"
16+
}

ZOffsetPlugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2018 fieldOfView
1+
# Copyright (c) 2022 Aldo Hoeben / fieldOfView
22
# The ZOffsetPlugin is released under the terms of the AGPLv3 or higher.
33

44
import re
@@ -35,7 +35,7 @@ def __init__(self):
3535
}
3636
self._settings_dict["adhesion_z_offset_extensive_processing"] = {
3737
"label": "Extensive Z Offset Processing",
38-
"description": "Apply the Z Offset throughout the Gcode file instead of affecting the coordinate system. Turning this option on will increae the processing time so it is recommended to leave it off.",
38+
"description": "Apply the Z Offset throughout the Gcode file instead of affecting the coordinate system. Turning this option on will increase the processing time so it is recommended to leave it off, but it may be needed for some firmware versions.",
3939
"type": "bool",
4040
"default_value": False,
4141
"value": "True if machine_gcode_flavor == \"Griffin\" else False",

__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2018 fieldOfView
1+
# Copyright (c) 2022 Aldo Hoeben / fieldOfView
22
# The ZOffsetPlugin is released under the terms of the AGPLv3 or higher.
33

44
from . import ZOffsetPlugin

plugin.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "Z Offset plugin",
2+
"name": "Z-Offset plugin",
33
"author": "fieldOfView",
4-
"version": "3.5.7",
4+
"version": "3.6.0",
55
"description": "Adds a Z Offset setting to change the distance between the nozzle and the buildplate",
66
"api": 5,
7-
"supported_sdk_versions": ["5.0.0", "6.0.0", "7.0.0"]
7+
"supported_sdk_versions": ["5.0.0", "6.0.0", "7.0.0", "8.0.0"]
88
}

0 commit comments

Comments
 (0)