From 2dc78e73921eb05c18fd886560010d9d0c8e6e9a Mon Sep 17 00:00:00 2001 From: "Ibrahima G. Coulibaly" Date: Fri, 7 Mar 2025 22:19:49 +0000 Subject: [PATCH] chore: merge --- .idea/workspace.xml | 44 ++++++++++--------- src/pages/{ => tools}/string/quote/index.tsx | 0 src/pages/{ => tools}/string/quote/meta.ts | 4 +- .../string/quote/quote.service.test.ts | 0 src/pages/{ => tools}/string/quote/service.ts | 0 src/pages/{ => tools}/string/rot13/index.tsx | 0 src/pages/{ => tools}/string/rot13/meta.ts | 4 +- .../string/rot13/rot13.service.test.ts | 0 src/pages/{ => tools}/string/rot13/service.ts | 0 src/pages/{ => tools}/string/rotate/index.tsx | 0 src/pages/{ => tools}/string/rotate/meta.ts | 4 +- .../string/rotate/rotate.service.test.ts | 0 .../{ => tools}/string/rotate/service.ts | 0 13 files changed, 29 insertions(+), 27 deletions(-) rename src/pages/{ => tools}/string/quote/index.tsx (100%) rename src/pages/{ => tools}/string/quote/meta.ts (91%) rename src/pages/{ => tools}/string/quote/quote.service.test.ts (100%) rename src/pages/{ => tools}/string/quote/service.ts (100%) rename src/pages/{ => tools}/string/rot13/index.tsx (100%) rename src/pages/{ => tools}/string/rot13/meta.ts (90%) rename src/pages/{ => tools}/string/rot13/rot13.service.test.ts (100%) rename src/pages/{ => tools}/string/rot13/service.ts (100%) rename src/pages/{ => tools}/string/rotate/index.tsx (100%) rename src/pages/{ => tools}/string/rotate/meta.ts (91%) rename src/pages/{ => tools}/string/rotate/rotate.service.test.ts (100%) rename src/pages/{ => tools}/string/rotate/service.ts (100%) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 2e63911..fb9c90c 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -6,7 +6,9 @@ - + + + - { + "prStates": [ { - "id": { - "id": "PR_kwDOMJIfts51PkS9", - "number": 22 + "id": { + "id": "PR_kwDOMJIfts51PkS9", + "number": 22 }, - "lastSeen": 1741207144695 + "lastSeen": 1741207144695 }, { - "id": { - "id": "PR_kwDOMJIfts6NiNYl", - "number": 32 + "id": { + "id": "PR_kwDOMJIfts6NiNYl", + "number": 32 }, - "lastSeen": 1741209723869 + "lastSeen": 1741209723869 }, { - "id": { - "id": "PR_kwDOMJIfts6Nheyd", - "number": 31 + "id": { + "id": "PR_kwDOMJIfts6Nheyd", + "number": 31 }, - "lastSeen": 1741213371410 + "lastSeen": 1741213371410 }, { - "id": { - "id": "PR_kwDOMJIfts6NmRBs", - "number": 33 + "id": { + "id": "PR_kwDOMJIfts6NmRBs", + "number": 33 }, - "lastSeen": 1741282429036 + "lastSeen": 1741282429036 } ] -}]]> +} { "selectedUrlAndAccountId": { "url": "https://github.com/iib0011/omni-tools.git", @@ -114,7 +116,7 @@ "Vitest.removeDuplicateLines function.newlines option.executor": "Run", "Vitest.removeDuplicateLines function.newlines option.should filter newlines when newlines is set to filter.executor": "Run", "Vitest.replaceText function.executor": "Run", - "git-widget-placeholder": "#33 on fork/EugSh1/main", + "git-widget-placeholder": "#22 on truncate", "ignore.virus.scanning.warn.message": "true", "kotlin-language-version-configured": "true", "last_opened_file_path": "C:/Users/Ibrahima/IdeaProjects/omni-tools/public/assets", diff --git a/src/pages/string/quote/index.tsx b/src/pages/tools/string/quote/index.tsx similarity index 100% rename from src/pages/string/quote/index.tsx rename to src/pages/tools/string/quote/index.tsx diff --git a/src/pages/string/quote/meta.ts b/src/pages/tools/string/quote/meta.ts similarity index 91% rename from src/pages/string/quote/meta.ts rename to src/pages/tools/string/quote/meta.ts index 67d2638..8863f1e 100644 --- a/src/pages/string/quote/meta.ts +++ b/src/pages/tools/string/quote/meta.ts @@ -5,9 +5,9 @@ import { lazy } from 'react'; export const tool = defineTool('string', { name: 'Quote', path: 'quote', - // image, + icon: 'proicons:quote', description: '', shortDescription: '', keywords: ['quote'], component: lazy(() => import('./index')) -}); \ No newline at end of file +}); diff --git a/src/pages/string/quote/quote.service.test.ts b/src/pages/tools/string/quote/quote.service.test.ts similarity index 100% rename from src/pages/string/quote/quote.service.test.ts rename to src/pages/tools/string/quote/quote.service.test.ts diff --git a/src/pages/string/quote/service.ts b/src/pages/tools/string/quote/service.ts similarity index 100% rename from src/pages/string/quote/service.ts rename to src/pages/tools/string/quote/service.ts diff --git a/src/pages/string/rot13/index.tsx b/src/pages/tools/string/rot13/index.tsx similarity index 100% rename from src/pages/string/rot13/index.tsx rename to src/pages/tools/string/rot13/index.tsx diff --git a/src/pages/string/rot13/meta.ts b/src/pages/tools/string/rot13/meta.ts similarity index 90% rename from src/pages/string/rot13/meta.ts rename to src/pages/tools/string/rot13/meta.ts index 86ee585..37388c1 100644 --- a/src/pages/string/rot13/meta.ts +++ b/src/pages/tools/string/rot13/meta.ts @@ -5,9 +5,9 @@ import { lazy } from 'react'; export const tool = defineTool('string', { name: 'Rot13', path: 'rot13', - // image, + icon: 'hugeicons:encrypt', description: '', shortDescription: '', keywords: ['rot13'], component: lazy(() => import('./index')) -}); \ No newline at end of file +}); diff --git a/src/pages/string/rot13/rot13.service.test.ts b/src/pages/tools/string/rot13/rot13.service.test.ts similarity index 100% rename from src/pages/string/rot13/rot13.service.test.ts rename to src/pages/tools/string/rot13/rot13.service.test.ts diff --git a/src/pages/string/rot13/service.ts b/src/pages/tools/string/rot13/service.ts similarity index 100% rename from src/pages/string/rot13/service.ts rename to src/pages/tools/string/rot13/service.ts diff --git a/src/pages/string/rotate/index.tsx b/src/pages/tools/string/rotate/index.tsx similarity index 100% rename from src/pages/string/rotate/index.tsx rename to src/pages/tools/string/rotate/index.tsx diff --git a/src/pages/string/rotate/meta.ts b/src/pages/tools/string/rotate/meta.ts similarity index 91% rename from src/pages/string/rotate/meta.ts rename to src/pages/tools/string/rotate/meta.ts index 1ad7f71..f891b30 100644 --- a/src/pages/string/rotate/meta.ts +++ b/src/pages/tools/string/rotate/meta.ts @@ -5,9 +5,9 @@ import { lazy } from 'react'; export const tool = defineTool('string', { name: 'Rotate', path: 'rotate', - // image, + icon: 'carbon:rotate', description: '', shortDescription: '', keywords: ['rotate'], component: lazy(() => import('./index')) -}); \ No newline at end of file +}); diff --git a/src/pages/string/rotate/rotate.service.test.ts b/src/pages/tools/string/rotate/rotate.service.test.ts similarity index 100% rename from src/pages/string/rotate/rotate.service.test.ts rename to src/pages/tools/string/rotate/rotate.service.test.ts diff --git a/src/pages/string/rotate/service.ts b/src/pages/tools/string/rotate/service.ts similarity index 100% rename from src/pages/string/rotate/service.ts rename to src/pages/tools/string/rotate/service.ts