├── .github ├── FUNDING.yml └── workflows │ ├── swift.yml │ └── validate-json.yml ├── .gitignore ├── .swiftpm ├── configuration │ └── Package.resolved └── xcode │ ├── package.xcworkspace │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcschemes │ └── SwiftNEW.xcscheme ├── CODE_OF_CONDUCT.md ├── Demo ├── What's New?.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── What's New?.xcscheme └── What's New? │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-40@3x.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72.png │ │ ├── icon-72@2x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ ├── icon-83.5@2x.png │ │ ├── icon-small-50.png │ │ ├── icon-small-50@2x.png │ │ ├── icon-small.png │ │ ├── icon-small@2x.png │ │ ├── icon-small@3x.png │ │ ├── icon.png │ │ ├── icon@2x.png │ │ ├── ios-marketing.png │ │ ├── notification-icon@2x.png │ │ ├── notification-icon@3x.png │ │ ├── notification-icon~ipad.png │ │ └── notification-icon~ipad@2x.png │ └── Contents.json │ ├── ContentView.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── What_s_New_.entitlements │ ├── What_s_New_App.swift │ ├── en.lproj │ └── data.json │ ├── ja.lproj │ └── data.json │ ├── ko.lproj │ └── data.json │ ├── zh-Hans.lproj │ └── data.json │ └── zh-Hant.lproj │ └── data.json ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── README ├── README_hc.md ├── README_ja.md ├── README_ko.md ├── README_tc.md └── README_zh.md └── Sources └── SwiftNEW ├── Animations └── SnowfallView.swift ├── Bundle+Ext.swift ├── Extensions └── SwiftNEW+Functions.swift ├── Localizable.xcstrings ├── Model.swift ├── Styles ├── AppIconView.swift ├── MeshView.swift └── NoiseView.swift ├── SwiftNEW.swift └── Views ├── Components ├── ButtonComponents.swift └── HeaderView.swift ├── Sheets ├── CurrentVersionSheet.swift └── HistorySheet.swift └── SwiftNEW+View.swift /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: 1998code 4 | -------------------------------------------------------------------------------- /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.github/workflows/validate-json.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/.github/workflows/validate-json.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/configuration/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/.swiftpm/configuration/Package.resolved -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/SwiftNEW.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/SwiftNEW.xcscheme -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Demo/What's New?.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/What's New?.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/What's New?.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/What's New?.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Demo/What's New?.xcodeproj/xcshareddata/xcschemes/What's New?.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?.xcodeproj/xcshareddata/xcschemes/What's New?.xcscheme -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-small-50.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-small-50@2x.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-small.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-small@2x.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon-small@3x.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/icon@2x.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/ios-marketing.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/notification-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/notification-icon@2x.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/notification-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/notification-icon@3x.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad@2x.png -------------------------------------------------------------------------------- /Demo/What's New?/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/What's New?/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/ContentView.swift -------------------------------------------------------------------------------- /Demo/What's New?/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/What's New?/What_s_New_.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/What_s_New_.entitlements -------------------------------------------------------------------------------- /Demo/What's New?/What_s_New_App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/What_s_New_App.swift -------------------------------------------------------------------------------- /Demo/What's New?/en.lproj/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/en.lproj/data.json -------------------------------------------------------------------------------- /Demo/What's New?/ja.lproj/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/ja.lproj/data.json -------------------------------------------------------------------------------- /Demo/What's New?/ko.lproj/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/ko.lproj/data.json -------------------------------------------------------------------------------- /Demo/What's New?/zh-Hans.lproj/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/zh-Hans.lproj/data.json -------------------------------------------------------------------------------- /Demo/What's New?/zh-Hant.lproj/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Demo/What's New?/zh-Hant.lproj/data.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/README.md -------------------------------------------------------------------------------- /README/README_hc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/README/README_hc.md -------------------------------------------------------------------------------- /README/README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/README/README_ja.md -------------------------------------------------------------------------------- /README/README_ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/README/README_ko.md -------------------------------------------------------------------------------- /README/README_tc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/README/README_tc.md -------------------------------------------------------------------------------- /README/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/README/README_zh.md -------------------------------------------------------------------------------- /Sources/SwiftNEW/Animations/SnowfallView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Sources/SwiftNEW/Animations/SnowfallView.swift -------------------------------------------------------------------------------- /Sources/SwiftNEW/Bundle+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Sources/SwiftNEW/Bundle+Ext.swift -------------------------------------------------------------------------------- /Sources/SwiftNEW/Extensions/SwiftNEW+Functions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Sources/SwiftNEW/Extensions/SwiftNEW+Functions.swift -------------------------------------------------------------------------------- /Sources/SwiftNEW/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Sources/SwiftNEW/Localizable.xcstrings -------------------------------------------------------------------------------- /Sources/SwiftNEW/Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Sources/SwiftNEW/Model.swift -------------------------------------------------------------------------------- /Sources/SwiftNEW/Styles/AppIconView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Sources/SwiftNEW/Styles/AppIconView.swift -------------------------------------------------------------------------------- /Sources/SwiftNEW/Styles/MeshView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Sources/SwiftNEW/Styles/MeshView.swift -------------------------------------------------------------------------------- /Sources/SwiftNEW/Styles/NoiseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Sources/SwiftNEW/Styles/NoiseView.swift -------------------------------------------------------------------------------- /Sources/SwiftNEW/SwiftNEW.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Sources/SwiftNEW/SwiftNEW.swift -------------------------------------------------------------------------------- /Sources/SwiftNEW/Views/Components/ButtonComponents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Sources/SwiftNEW/Views/Components/ButtonComponents.swift -------------------------------------------------------------------------------- /Sources/SwiftNEW/Views/Components/HeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Sources/SwiftNEW/Views/Components/HeaderView.swift -------------------------------------------------------------------------------- /Sources/SwiftNEW/Views/Sheets/CurrentVersionSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Sources/SwiftNEW/Views/Sheets/CurrentVersionSheet.swift -------------------------------------------------------------------------------- /Sources/SwiftNEW/Views/Sheets/HistorySheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Sources/SwiftNEW/Views/Sheets/HistorySheet.swift -------------------------------------------------------------------------------- /Sources/SwiftNEW/Views/SwiftNEW+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/SwiftNEWKit/HEAD/Sources/SwiftNEW/Views/SwiftNEW+View.swift --------------------------------------------------------------------------------