Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
- Commands and text input should now work properly
- Update to latest Eto 2.7.1
- Windows support x64 and arm64
- Update README
  • Loading branch information
cwensley committed Sep 12, 2022
1 parent dac971d commit 450116a
Show file tree
Hide file tree
Showing 21 changed files with 925 additions and 920 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,15 @@ jobs:
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}

- id: get_release
uses: bruceadams/[email protected].0
uses: bruceadams/[email protected].3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- uses: actions/download-artifact@v2

- uses: softprops/action-gh-release@v1
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
files: |
**/*.msi
**/*.dmg
Expand Down
3 changes: 2 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"program": "${workspaceFolder}/artifacts/bin/PabloDraw/${config:var.BuildConfiguration}/net6.0/PabloDraw.app/Contents/MacOS/PabloDraw",
},
"windows": {
"program": "${workspaceFolder}/artifacts/bin/PabloDraw/${config:var.BuildConfiguration}/net6.0-windows/win-x64/PabloDraw.exe",
"program": "${workspaceFolder}/artifacts/bin/PabloDraw/${config:var.BuildConfiguration}/net6.0-windows/PabloDraw.dll",
},
"linux": {
"program": "${workspaceFolder}/artifacts/bin/PabloDraw/${config:var.BuildConfiguration}/net6.0/linux-x64/PabloDraw.dll",
Expand All @@ -24,6 +24,7 @@
],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
// "targetArchitecture": "",
"console": "internalConsole"
},
{
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Curtis Wensley
Copyright (c) 2022 Curtis Wensley

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion Source/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<PropertyGroup>
<Company>Picoe Software Solutions</Company>
<Copyright>(c) 2006-2021 by Curtis Wensley aka Eto</Copyright>
<Copyright>(c) 2006-2022 by Curtis Wensley aka Eto</Copyright>
<Version Condition="$(Version) == ''">3.3.11-dev</Version>

<BasePath>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\'))</BasePath>
Expand Down
2 changes: 1 addition & 1 deletion Source/Pablo.Interface/Dialogs/About.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Pablo.Interface.Dialogs
{
public class About : Dialog
{
const string CopyRightText = @"PabloDraw is © 2006-2021 by Curtis Wensley aka Eto
const string CopyRightText = @"PabloDraw is © 2006-2022 by Curtis Wensley aka Eto
Amiga raw font versions are © dMG/t!s^dS!
Expand Down
Loading

0 comments on commit 450116a

Please sign in to comment.