diff --git a/README.md b/README.md index a0b98d3..f679136 100644 --- a/README.md +++ b/README.md @@ -18,40 +18,50 @@ bun run dev ``` ## Tool List -* **General:** - * Explain crontab - * Table to Markdown table - * Table to Mediawiki table - * Dummy image generator - * humans.txt generator - * File base64 encode/decode - * QR code generator - * Unix timestamp converter - * Sed generator - * .htaccess generator -* **Strings:** - * Fix ru-en keyboard - * String length - * Sort lines - * Convert to lower/upper case - * Remove duplicate lines - * Pad string - * Numeronym (i18n) - * Convert to NATO alphabet - * URL encode/decode - * URL query viewer -* **PHP:** - * String to PHP array - * PHP array to JSON - * PHP serialize -* **Docker:** - * Rename volume -* **GO:** - * JSON to Go struct - * SQL tables to Go struct -* **JSON:** - * JSON minifier - * JSON formatter -* **SQL:** - * SQL formatter - * SQL split IN \ No newline at end of file +**General:** +* Table to Markdown table +* Table to Mediawiki table +* humans.txt generator + +**Docker:** +* Rename volume + +**Go:** +* JSON to Go struct + +**JSON:** +* JSON minifier +* JSON formatter + +**PHP:** +* Str to PHP array +* PHP array to Json +* PHP serialize + +**SQL:** +* SQL formatter +* SQL split IN + +**Strings:** +* Fix ru-en keyboard +* Str length +* Str sort lines +* Str to lower/upper +* Str remove duplicate lines +* Str pad +* Str numeronym (i18n) +* Str to NATO alphabet +* URL encode/decode +* URL query viewer + +**Unix:** +* Explain crontab +* File base64 encode/decode +* Unix timestamp +* Sed generator +* .htaccess generator + +**Generators:** +* QR code +* IBAN generator +* Dummy image \ No newline at end of file diff --git a/src/router/index.js b/src/router/index.js index 70bdbcc..2eb700d 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -14,7 +14,7 @@ const router = createRouter({ { path: "/explain_crontab", name: "explain_crontab", - component: () => import("../views/general/ExplainCrontab.vue") + component: () => import("../views/unix/ExplainCrontab.vue") }, { path: "/table_to_markdown_table", @@ -44,22 +44,22 @@ const router = createRouter({ { path: "/unix_timestamp", name: "unix_timestamp", - component: () => import("../views/general/UnixTimestamp.vue") + component: () => import("../views/unix/UnixTimestamp.vue") }, { path: "/file_base64_encode_decode", name: "file_base64_encode_decode", - component: () => import("../views/general/FileBase64EncodeDecode.vue") + component: () => import("../views/unix/FileBase64EncodeDecode.vue") }, { path: "/sed_generator", name: "sed_generator", - component: () => import("../views/general/SedGenerator.vue") + component: () => import("../views/unix/SedGenerator.vue") }, { path: "/htaccess_generator", name: "htaccess_generator", - component: () => import("../views/general/HtaccessGenerator.vue") + component: () => import("../views/unix/HtaccessGenerator.vue") }, /** diff --git a/src/views/general/ExplainCrontab.vue b/src/views/unix/ExplainCrontab.vue similarity index 100% rename from src/views/general/ExplainCrontab.vue rename to src/views/unix/ExplainCrontab.vue diff --git a/src/views/general/FileBase64EncodeDecode.vue b/src/views/unix/FileBase64EncodeDecode.vue similarity index 100% rename from src/views/general/FileBase64EncodeDecode.vue rename to src/views/unix/FileBase64EncodeDecode.vue diff --git a/src/views/general/HtaccessGenerator.vue b/src/views/unix/HtaccessGenerator.vue similarity index 100% rename from src/views/general/HtaccessGenerator.vue rename to src/views/unix/HtaccessGenerator.vue diff --git a/src/views/general/SedGenerator.vue b/src/views/unix/SedGenerator.vue similarity index 100% rename from src/views/general/SedGenerator.vue rename to src/views/unix/SedGenerator.vue diff --git a/src/views/general/UnixTimestamp.vue b/src/views/unix/UnixTimestamp.vue similarity index 100% rename from src/views/general/UnixTimestamp.vue rename to src/views/unix/UnixTimestamp.vue