浏览代码

complete migration

AykutSarac 2 年之前
父节点
当前提交
4b1e5b923e
共有 11 个文件被更改,包括 8 次插入8 次删除
  1. 4 4
      README.md
  2. 1 1
      package.json
  3. 二进制
      public/192.png
  4. 二进制
      public/512.png
  5. 二进制
      public/favicon.ico
  6. 二进制
      public/jsoncrack-screenshot.webp
  7. 二进制
      public/jsoncrack.png
  8. 二进制
      public/jsonvisio.png
  9. 1 1
      src/components/Sidebar/index.tsx
  10. 1 1
      src/containers/Home/index.tsx
  11. 1 1
      src/pages/_document.tsx

+ 4 - 4
README.md

@@ -1,6 +1,6 @@
 <center>
 <center>
   <a href="https://jsoncrack.com">
   <a href="https://jsoncrack.com">
-    <img width="1080" alt="jsonvisio" src="https://user-images.githubusercontent.com/47941171/182015412-f048058e-6e31-4cf6-bcfc-ab9ba3f6e005.png">
+    <img width="1080" alt="jsoncrack" src="https://user-images.githubusercontent.com/47941171/182015412-f048058e-6e31-4cf6-bcfc-ab9ba3f6e005.png">
   </a>
   </a>
 </center>
 </center>
 
 
@@ -25,7 +25,7 @@
   </p>
   </p>
 
 
   <p align="center">
   <p align="center">
-      <img width="800" src="/public/jsonvisio-screenshot.webp" alt="preview 1" />
+      <img width="800" src="/public/jsoncrack-screenshot.webp" alt="preview 1" />
   </p>
   </p>
 
 
 # JSON Crack (jsoncrack.com)
 # JSON Crack (jsoncrack.com)
@@ -59,8 +59,8 @@ You can use the web version at [jsoncrack.com](https://jsoncrack.com) or also ru
 A Docker file is provided in the root of the repository.
 A Docker file is provided in the root of the repository.
 If you want to run JSON Crack locally:
 If you want to run JSON Crack locally:
 
 
-* Build Docker image with `docker build -t jsonvisio .`
-* Run locally with `docker run -p 8888:8080 jsonvisio`
+* Build Docker image with `docker build -t jsoncrack .`
+* Run locally with `docker run -p 8888:8080 jsoncrack`
 * Go to [http://localhost:8888]
 * Go to [http://localhost:8888]
 ```
 ```
 
 

+ 1 - 1
package.json

@@ -1,5 +1,5 @@
 {
 {
-  "name": "json-visio",
+  "name": "json-crack",
   "private": true,
   "private": true,
   "version": "v2.0.0",
   "version": "v2.0.0",
   "author": "https://github.com/AykutSarac",
   "author": "https://github.com/AykutSarac",

二进制
public/192.png


二进制
public/512.png


二进制
public/favicon.ico


二进制
public/jsoncrack-screenshot.webp


二进制
public/jsoncrack.png


二进制
public/jsonvisio.png


+ 1 - 1
src/components/Sidebar/index.tsx

@@ -124,7 +124,7 @@ export const Sidebar: React.FC = () => {
     const file = new Blob([getJson()], { type: "text/plain" });
     const file = new Blob([getJson()], { type: "text/plain" });
 
 
     a.href = window.URL.createObjectURL(file);
     a.href = window.URL.createObjectURL(file);
-    a.download = "jsonvisio.json";
+    a.download = "jsoncrack.json";
     a.click();
     a.click();
   };
   };
 
 

+ 1 - 1
src/containers/Home/index.tsx

@@ -83,7 +83,7 @@ const Home: React.FC = () => {
           <Styles.StyledImage
           <Styles.StyledImage
             width="1200"
             width="1200"
             height="863"
             height="863"
-            src="/jsonvisio-screenshot.webp"
+            src="/jsoncrack-screenshot.webp"
             alt="preview"
             alt="preview"
             loading="lazy"
             loading="lazy"
           />
           />

+ 1 - 1
src/pages/_document.tsx

@@ -40,7 +40,7 @@ class MyDocument extends Document {
           <SeoTags
           <SeoTags
             description="Simple visualization tool for your JSON data. No forced structure, paste your JSON and view it instantly."
             description="Simple visualization tool for your JSON data. No forced structure, paste your JSON and view it instantly."
             title="JSON Crack - Crack your data into pieces"
             title="JSON Crack - Crack your data into pieces"
-            image="https://jsoncrack.com/jsonvisio.png"
+            image="https://jsoncrack.com/jsoncrack.png"
           />
           />
           <meta name="theme-color" content="#36393E" />
           <meta name="theme-color" content="#36393E" />
           <link rel="manifest" href="/manifest.json" />
           <link rel="manifest" href="/manifest.json" />