5 Commits

Author SHA1 Message Date
f6fb28d488 Merge pull request #1 from infeeeee/dependabot/github_actions/dot-github/workflows/actions/download-artifact-4.1.7
Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows
2024-09-06 12:25:11 +02:00
dependabot[bot]
57b4477c39 Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.1.7.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v3...v4.1.7)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-09-03 22:22:18 +00:00
dda1d98fb2 Fix installer, 0.4.1 2023-04-25 01:02:25 +02:00
b2d851f5bc Bump version 2023-04-25 00:45:20 +02:00
c3737f0eb3 Merge branch 'dev' 2023-04-25 00:39:58 +02:00
4 changed files with 6 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ jobs:
Invoke-WebRequest -Uri https://jrsoftware.org/download.php/is.exe -OutFile is.exe
.\is.exe /verysilent
- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: dyn2py.exe
- name: Build

View File

@@ -42,11 +42,11 @@ jobs:
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
- name: Download exe
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: dyn2py.exe
- name: Download installer
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: dyn2py-installer.exe
- name: Release

View File

@@ -24,8 +24,8 @@ Name: "english"; MessagesFile: "compiler:Default.isl"
Source: "dyn2py.exe"; DestDir: "{app}"; Flags: ignoreversion
[Icons]
Name: "{group}\dyn2py (cmd)"; Filename: "{cmd}"; WorkingDir: "{userdocs}"; Parameters: "/k dyn2py"
Name: "{group}\dyn2py (powershell)"; Filename: "powershell"; WorkingDir: "{userdocs}"; Parameters: "-noexit -command dyn2py"
Name: "{group}\dyn2py (cmd)"; Filename: "{cmd}"; WorkingDir: "{userdocs}"; Parameters: "/k dyn2py -h"
Name: "{group}\dyn2py (powershell)"; Filename: "powershell"; WorkingDir: "{userdocs}"; Parameters: "-noexit -command dyn2py -h"
[Code]
const EnvironmentKey = 'SYSTEM\CurrentControlSet\Control\Session Manager\Environment';

View File

@@ -1,6 +1,6 @@
[project]
name = "dyn2py"
version = "0.3.3"
version = "0.4.1"
description = "Extract python code from Dynamo graphs"
readme = "README.md"
requires-python = ">=3.8"