├── .DS_Store ├── LICENSE ├── README.md ├── appcast.xml └── assets └── download_Mac_AppStore.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxymanApp/Text-Differ/137d4cb72fe48446c31917d828a10520ed8a2cb1/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Proxyman 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # JSON Compare 2 | Meet JSON Compare, a native macOS app that shows beautiful diff between 2 JSON files. 3 | 4 | ## Features 5 | - ✅ Native macOS app 6 | - 🔐 Built with developer mindset: Privacy-first, run locally. Your data is secured. No Analytic & Crash Report. 7 | - 🔍 Diff like Github Diff: Support JSON Syntax Highlighting, Side-by-side or Inline Mode. 8 | ⚡️ Lightweight and high performance. Tested with 50 MB file text. 9 | 10 | ## How to Purchase 11 | - $4.99 for lifetime (buy once, use forever) 12 | - Mac AppStore: https://apps.apple.com/us/app/json-compare/id6479314700 13 | ![Download from MacAppStore](./assets/download_Mac_AppStore.png) 14 | 15 | - Gumroad: https://proxymanstore.gumroad.com/l/textdiffer 16 | 17 | ## Command Line 18 | ```sh 19 | # diff two files 20 | $ /Applications/Text\ Differ.app/Contents/MacOS/Text\ Differ 21 | ``` 22 | 23 | ## Screenshots 24 | ![JSON Compare dashboard](https://github.com/ProxymanApp/Text-Differ/assets/5878421/632958d1-e948-4f28-957e-5b12b8337ff6) 25 | -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Text Differ 4 | 5 | Wed, 13 Dec 2023 15:15:41 GMT+0700 6 | 12.0 7 | 13 | Text Differ v1.3.0: Open via CLI and Paste from Clipboard 14 | 15 | Show Github Release Notes

17 | ]]> 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /assets/download_Mac_AppStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxymanApp/Text-Differ/137d4cb72fe48446c31917d828a10520ed8a2cb1/assets/download_Mac_AppStore.png --------------------------------------------------------------------------------