|
4 | 4 | <h1 align="center">SmartCodable - Ultimate Codable Enhancement for Swift</h1> |
5 | 5 |
|
6 | 6 | <p align="center"> |
7 | | -<a href="https://github.com/intsig171/SmartCodable/actions?query=workflow%3Abuild"> |
8 | | - <img src="https://img.shields.io/github/actions/workflow/status/intsig171/SmartCodable/build.yml?branch=main&label=build" alt="Build Status"> |
| 7 | +<a href="https://github.com/iAmMccc/SmartCodable/actions?query=workflow%3Abuild"> |
| 8 | + <img src="https://img.shields.io/github/actions/workflow/status/iAmMccc/SmartCodable/build.yml?branch=main&label=build" alt="Build Status"> |
9 | 9 | </a> |
10 | | -<a href="https://github.com/intsig171/SmartCodable/wiki"> |
| 10 | +<a href="https://github.com/iAmMccc/SmartCodable/wiki"> |
11 | 11 | <img src="https://img.shields.io/badge/Documentation-available-brightgreen.svg" alt="Documentation"> |
12 | 12 | </a> |
13 | | -<a href="https://github.com/intsig171/SmartCodable/releases"> |
14 | | - <img src="https://img.shields.io/github/v/release/intsig171/SmartCodable?color=blue&label=version" alt="Latest Release"> |
| 13 | +<a href="https://github.com/iAmMccc/SmartCodable/releases"> |
| 14 | + <img src="https://img.shields.io/github/v/release/iAmMccc/SmartCodable?color=blue&label=version" alt="Latest Release"> |
15 | 15 | </a> |
16 | 16 | <a href="https://swift.org/package-manager/"> |
17 | 17 | <img src="https://img.shields.io/badge/SPM-supported-DE5C43.svg?style=flat" alt="SPM Supported"> |
18 | 18 | </a> |
19 | 19 | <a href="https://swift.org/"> |
20 | 20 | <img src="https://img.shields.io/badge/Swift-5.0%2B-orange.svg" alt="Swift 5.0+"> |
21 | 21 | </a> |
22 | | -<a href="https://github.com/intsig171/SmartCodable/blob/main/LICENSE"> |
| 22 | +<a href="https://github.com/iAmMccc/SmartCodable/blob/main/LICENSE"> |
23 | 23 | <img src="https://img.shields.io/badge/license-MIT-black.svg" alt="MIT License"> |
24 | 24 | </a> |
25 | 25 | </p> |
26 | 26 |
|
27 | | -### English | [中文](https://github.com/intsig171/SmartCodable/blob/main/README_CN.md) |
| 27 | + |
| 28 | +### English | [中文](https://github.com/iAmMccc/SmartCodable/blob/main/README_CN.md) |
28 | 29 |
|
29 | 30 | SmartCodable redefines Swift data parsing by augmenting Apple's native Codable with production-ready resilience and flexibility. Where standard Codable fails on real-world data, SmartCodable delivers bulletproof parsing with minimal boilerplate. |
30 | 31 |
|
@@ -75,7 +76,7 @@ SmartCodable redefines Swift data parsing by augmenting Apple's native Codable w |
75 | 76 |
|
76 | 77 | If you are using HandyJSON and would like to replace it, follow this link. |
77 | 78 |
|
78 | | - [👉 **SmartCodable - Compare With HandyJSON**](https://github.com/intsig171/SmartCodable/blob/develop/Document/README/CompareWithHandyJSON.md) |
| 79 | + [👉 **SmartCodable - Compare With HandyJSON**](https://github.com/iAmMccc/SmartCodable/blob/develop/Document/README/CompareWithHandyJSON.md) |
79 | 80 |
|
80 | 81 | **Key Advantages**: |
81 | 82 |
|
@@ -121,7 +122,7 @@ If you are using HandyJSON and would like to replace it, follow this link. |
121 | 122 |
|
122 | 123 | ``` |
123 | 124 | dependencies: [ |
124 | | - .package(url: "https://github.com/intsig171/SmartCodable.git", from: "xxx") |
| 125 | + .package(url: "https://github.com/iAmMccc/SmartCodable.git", from: "xxx") |
125 | 126 | ] |
126 | 127 | ``` |
127 | 128 |
|
@@ -461,7 +462,7 @@ print(model) |
461 | 462 |
|
462 | 463 | This feature relies on **Swift Macros**, which requires **Swift 5.9+** and is compatible with **iOS 13+**. Therefore, it is only supported in SmartCodable version 5.0 and above. |
463 | 464 |
|
464 | | -> For using inheritance on lower versions, refer to: [Inheritance in Lower Versions](https://github.com/intsig171/SmartCodable/blob/main/Document/Suggest/suggest2.md) |
| 465 | +> For using inheritance on lower versions, refer to: [Inheritance in Lower Versions](https://github.com/iAmMccc/SmartCodable/blob/main/Document/Suggest/suggest2.md) |
465 | 466 |
|
466 | 467 | If you need inheritance support, annotate your subclass with `@SmartSubclass`. |
467 | 468 |
|
@@ -763,16 +764,16 @@ SmartSentinel.onLogGenerated { logs in } |
763 | 764 |
|
764 | 765 | If you're looking forward to learning more about the Codable protocol and the design thinking behind SmartCodable, check it out. |
765 | 766 |
|
766 | | -[👉 **github discussions**](https://github.com/intsig171/SmartCodable/discussions) |
| 767 | +[👉 **github discussions**](https://github.com/iAmMccc/SmartCodable/discussions) |
767 | 768 |
|
768 | | -[👉 **SmartCodable Test**](https://github.com/intsig171/SmartCodable/blob/main/Document/README/HowToTest.md) |
| 769 | +[👉 **SmartCodable Test**](https://github.com/iAmMccc/SmartCodable/blob/main/Document/README/HowToTest.md) |
769 | 770 |
|
770 | | -[👉 **learn SmartCodable**](https://github.com/intsig171/SmartCodable/blob/develop/Document/README/LearnMore.md) |
| 771 | +[👉 **learn SmartCodable**](https://github.com/iAmMccc/SmartCodable/blob/develop/Document/README/LearnMore.md) |
771 | 772 |
|
772 | 773 |
|
773 | 774 |
|
774 | 775 | ## Github Stars |
775 | | - |
| 776 | + |
776 | 777 |
|
777 | 778 | ## Join the SmartCodable Community 🚀 |
778 | 779 |
|
|
0 commit comments