Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix progress issue #32

Merged
merged 3 commits into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "fix progress display for mj",
"packageName": "@acedatacloud/hub",
"email": "cqc@cuiqingcai.com",
"dependentChangeType": "patch"
}
22 changes: 0 additions & 22 deletions deploy/production/ingress.yaml

This file was deleted.

1 change: 0 additions & 1 deletion deploy/production/scripts/deploy.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
cat deploy/production/deployment.yaml | sed 's/\${TAG}/'"$BUILD_NUMBER"'/g' | kubectl apply -f - || true
kubectl apply -f deploy/production/service.yaml
kubectl apply -f deploy/production/ingress.yaml
22 changes: 0 additions & 22 deletions deploy/test/ingress.yaml

This file was deleted.

1 change: 0 additions & 1 deletion deploy/test/scripts/deploy.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
cat deploy/test/deployment.yaml | sed 's/\${TAG}/'"$BUILD_NUMBER"'/g' | kubectl apply -f - || true
kubectl apply -f deploy/test/service.yaml
kubectl apply -f deploy/test/ingress.yaml
3 changes: 1 addition & 2 deletions src/components/midjourney/tasks/TaskPreview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
{{ modelValue?.request?.prompt }}
</p>
</div>
<p v-show="false" class="description">{{ $t('midjourney.field.taskId') }}: {{ modelValue?.id }}</p>
<div v-if="!modelValue?.response" :class="{ content: true, full: !!full }">
<el-image class="image">
<template #error>
Expand Down Expand Up @@ -97,6 +96,7 @@
<font-awesome-icon icon="fa-regular fa-clock" class="mr-1" />
{{ $dayjs.format('' + new Date(parseFloat(modelValue?.created_at) * 1000)) }}
</p>
<p class="description">{{ $t('midjourney.field.taskId') }}: {{ modelValue?.id }}</p>
</div>
</div>
</template>
Expand All @@ -113,7 +113,6 @@ import {
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
import CopyToClipboard from '@/components/common/CopyToClipboard.vue';
import { MIDJOURNEY_MODE_FAST, MIDJOURNEY_MODE_RELAX, MIDJOURNEY_MODE_TURBO } from '@/constants';
import { parse } from 'path';

interface IData {
midjourneyImagineState: typeof MidjourneyImagineState;
Expand Down
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
242 changes: 125 additions & 117 deletions src/i18n/ar/midjourney.json

Large diffs are not rendered by default.

232 changes: 124 additions & 108 deletions src/i18n/de/midjourney.json

Large diffs are not rendered by default.

142 changes: 77 additions & 65 deletions src/i18n/el/midjourney.json

Large diffs are not rendered by default.

24 changes: 20 additions & 4 deletions src/i18n/en/midjourney.json
Original file line number Diff line number Diff line change
Expand Up @@ -1651,12 +1651,28 @@
"message": "Reroll",
"description": "Description of the reroll button"
},
"action.high_variation": {
"message": "High Variation",
"action.variation_strong": {
"message": "Vary (Strong)",
"description": "Description of the high_variation button"
},
"action.low_variation": {
"message": "Low Variation",
"action.variation_subtle": {
"message": "Vary (Subtle)",
"description": "Description of the low_variation button"
},
"action.upscale_creative": {
"message": "Upscale (Creative)",
"description": "Description of the high_variation button"
},
"action.upscale_subtle": {
"message": "Upscale (Subtle)",
"description": "Description of the low_variation button"
},
"action.redo_upscale_creative": {
"message": "Redo Upscale (Creative)",
"description": "Description of the high_variation button"
},
"action.redo_upscale_subtle": {
"message": "Redo Upscale (Subtle)",
"description": "Description of the low_variation button"
},
"action.zoom_out_2x": {
Expand Down
Loading
Loading