diff --git a/.github/workflows/release-editor.yml b/.github/workflows/release-editor.yml index 886a0acd..6d80d52b 100644 --- a/.github/workflows/release-editor.yml +++ b/.github/workflows/release-editor.yml @@ -93,8 +93,8 @@ jobs: TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }} with: projectPath: packages/editor-app - tagName: ${{ github.event.inputs.version || github.ref_name }} - releaseName: 'ECS Editor ${{ github.event.inputs.version || github.ref_name }}' + tagName: ${{ github.event_name == 'workflow_dispatch' && format('editor-v{0}', github.event.inputs.version) || github.ref_name }} + releaseName: 'ECS Editor v${{ github.event.inputs.version || github.ref_name }}' releaseBody: 'See the assets to download this version and install.' releaseDraft: false prerelease: false diff --git a/packages/editor-app/src/components/AboutDialog.tsx b/packages/editor-app/src/components/AboutDialog.tsx index 166b2da5..a894496f 100644 --- a/packages/editor-app/src/components/AboutDialog.tsx +++ b/packages/editor-app/src/components/AboutDialog.tsx @@ -150,7 +150,7 @@ export function AboutDialog({ onClose, locale = 'en' }: AboutDialogProps) {

ECS Framework Editor

- {t('version')}: {version} + {t('version')}: Editor {version}

{t('description')}