├── .github └── workflows │ └── swift.yml ├── .gitignore ├── .swiftlint.yml ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ └── xcschemes │ └── PersianJustify.xcscheme ├── CODE_OF_CONDUCT.md ├── Example ├── perian_justify_example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── perian_justify_example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Fonts │ ├── Yekan Boom.ttf │ ├── dastnevis.otf │ ├── khodkar.ttf │ ├── paeez.ttf │ ├── shahgoosh.ttf │ └── shokuh.ttf │ ├── Helpers │ └── UILabelExtensions.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── LICENSE ├── Package.resolved ├── Package.swift ├── PersianJustify.iml ├── Previews ├── Flowchart.png ├── Logo.png ├── custom_font_1_preview.jpg ├── custom_font_2_preview.jpg ├── custom_font_3_preview.jpg ├── example.jpg ├── founders.jpg └── original_font_preview.jpg ├── README.md ├── Sources └── PersianJustify │ ├── Extensions │ ├── String.range(of,options).swift │ ├── String.toPJString(in).swift │ ├── Typealias.swift │ ├── UILabel.fixDirectionForiOS26.swift │ └── View.getFont.swift │ ├── PersianJustify.swift │ └── printConditioner.swift └── Tests └── PersianJustifyTests ├── Bundle.test.swift ├── DemoTexts.swift ├── GetFontTests.swift ├── MainFunctionalityTests.swift ├── Resources └── Fonts │ ├── Yekan Boom.ttf │ ├── dastnevis.otf │ ├── khodkar.ttf │ ├── paeez.ttf │ ├── shahgoosh.ttf │ └── shokuh.ttf ├── Sample └── SampleViewController.swift └── SnapshotTests ├── AppKitSnapshotTests.swift ├── UIKitSnapshotTests.swift └── __Snapshots__ ├── AppKitSnapshotTests ├── testLongMultilineTextOnNSTextField.Font-BTitrBold.png ├── testLongMultilineTextOnNSTextField.Font-DastNevis.png ├── testLongMultilineTextOnNSTextField.Font-Digi-Paeez-Regular.png ├── testLongMultilineTextOnNSTextField.Font-MT_YekanSquareBoom-Bold.png ├── testLongMultilineTextOnNSTextField.Font-Shokoh-Bold.png └── testLongMultilineTextOnNSTextField.Font-shahgosh.png └── UIKitSnapshotTests ├── testLongMultilineTextOnUILabel.Font-BTitrBold.png ├── testLongMultilineTextOnUILabel.Font-DastNevis.png ├── testLongMultilineTextOnUILabel.Font-Digi-Paeez-Regular.png ├── testLongMultilineTextOnUILabel.Font-MT_YekanSquareBoom-Bold.png ├── testLongMultilineTextOnUILabel.Font-Shokoh-Bold.png ├── testLongMultilineTextOnUILabel.Font-shahgosh.png └── testSampleViewController.1.png /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/PersianJustify.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/PersianJustify.xcscheme -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Example/perian_justify_example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/perian_justify_example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/perian_justify_example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/perian_justify_example.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Example/perian_justify_example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/perian_justify_example/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/perian_justify_example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/perian_justify_example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/perian_justify_example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/perian_justify_example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/perian_justify_example/Fonts/Yekan Boom.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example/Fonts/Yekan Boom.ttf -------------------------------------------------------------------------------- /Example/perian_justify_example/Fonts/dastnevis.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example/Fonts/dastnevis.otf -------------------------------------------------------------------------------- /Example/perian_justify_example/Fonts/khodkar.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example/Fonts/khodkar.ttf -------------------------------------------------------------------------------- /Example/perian_justify_example/Fonts/paeez.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example/Fonts/paeez.ttf -------------------------------------------------------------------------------- /Example/perian_justify_example/Fonts/shahgoosh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example/Fonts/shahgoosh.ttf -------------------------------------------------------------------------------- /Example/perian_justify_example/Fonts/shokuh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example/Fonts/shokuh.ttf -------------------------------------------------------------------------------- /Example/perian_justify_example/Helpers/UILabelExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example/Helpers/UILabelExtensions.swift -------------------------------------------------------------------------------- /Example/perian_justify_example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example/Info.plist -------------------------------------------------------------------------------- /Example/perian_justify_example/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example/SceneDelegate.swift -------------------------------------------------------------------------------- /Example/perian_justify_example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Example/perian_justify_example/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Package.swift -------------------------------------------------------------------------------- /PersianJustify.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/PersianJustify.iml -------------------------------------------------------------------------------- /Previews/Flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Previews/Flowchart.png -------------------------------------------------------------------------------- /Previews/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Previews/Logo.png -------------------------------------------------------------------------------- /Previews/custom_font_1_preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Previews/custom_font_1_preview.jpg -------------------------------------------------------------------------------- /Previews/custom_font_2_preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Previews/custom_font_2_preview.jpg -------------------------------------------------------------------------------- /Previews/custom_font_3_preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Previews/custom_font_3_preview.jpg -------------------------------------------------------------------------------- /Previews/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Previews/example.jpg -------------------------------------------------------------------------------- /Previews/founders.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Previews/founders.jpg -------------------------------------------------------------------------------- /Previews/original_font_preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Previews/original_font_preview.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/README.md -------------------------------------------------------------------------------- /Sources/PersianJustify/Extensions/String.range(of,options).swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Sources/PersianJustify/Extensions/String.range(of,options).swift -------------------------------------------------------------------------------- /Sources/PersianJustify/Extensions/String.toPJString(in).swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Sources/PersianJustify/Extensions/String.toPJString(in).swift -------------------------------------------------------------------------------- /Sources/PersianJustify/Extensions/Typealias.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Sources/PersianJustify/Extensions/Typealias.swift -------------------------------------------------------------------------------- /Sources/PersianJustify/Extensions/UILabel.fixDirectionForiOS26.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Sources/PersianJustify/Extensions/UILabel.fixDirectionForiOS26.swift -------------------------------------------------------------------------------- /Sources/PersianJustify/Extensions/View.getFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Sources/PersianJustify/Extensions/View.getFont.swift -------------------------------------------------------------------------------- /Sources/PersianJustify/PersianJustify.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Sources/PersianJustify/PersianJustify.swift -------------------------------------------------------------------------------- /Sources/PersianJustify/printConditioner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Sources/PersianJustify/printConditioner.swift -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/Bundle.test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/Bundle.test.swift -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/DemoTexts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/DemoTexts.swift -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/GetFontTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/GetFontTests.swift -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/MainFunctionalityTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/MainFunctionalityTests.swift -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/Resources/Fonts/Yekan Boom.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/Resources/Fonts/Yekan Boom.ttf -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/Resources/Fonts/dastnevis.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/Resources/Fonts/dastnevis.otf -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/Resources/Fonts/khodkar.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/Resources/Fonts/khodkar.ttf -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/Resources/Fonts/paeez.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/Resources/Fonts/paeez.ttf -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/Resources/Fonts/shahgoosh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/Resources/Fonts/shahgoosh.ttf -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/Resources/Fonts/shokuh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/Resources/Fonts/shokuh.ttf -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/Sample/SampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/Sample/SampleViewController.swift -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/SnapshotTests/AppKitSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/SnapshotTests/AppKitSnapshotTests.swift -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/SnapshotTests/UIKitSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/SnapshotTests/UIKitSnapshotTests.swift -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/AppKitSnapshotTests/testLongMultilineTextOnNSTextField.Font-BTitrBold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/AppKitSnapshotTests/testLongMultilineTextOnNSTextField.Font-BTitrBold.png -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/AppKitSnapshotTests/testLongMultilineTextOnNSTextField.Font-DastNevis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/AppKitSnapshotTests/testLongMultilineTextOnNSTextField.Font-DastNevis.png -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/AppKitSnapshotTests/testLongMultilineTextOnNSTextField.Font-Digi-Paeez-Regular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/AppKitSnapshotTests/testLongMultilineTextOnNSTextField.Font-Digi-Paeez-Regular.png -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/AppKitSnapshotTests/testLongMultilineTextOnNSTextField.Font-MT_YekanSquareBoom-Bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/AppKitSnapshotTests/testLongMultilineTextOnNSTextField.Font-MT_YekanSquareBoom-Bold.png -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/AppKitSnapshotTests/testLongMultilineTextOnNSTextField.Font-Shokoh-Bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/AppKitSnapshotTests/testLongMultilineTextOnNSTextField.Font-Shokoh-Bold.png -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/AppKitSnapshotTests/testLongMultilineTextOnNSTextField.Font-shahgosh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/AppKitSnapshotTests/testLongMultilineTextOnNSTextField.Font-shahgosh.png -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/UIKitSnapshotTests/testLongMultilineTextOnUILabel.Font-BTitrBold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/UIKitSnapshotTests/testLongMultilineTextOnUILabel.Font-BTitrBold.png -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/UIKitSnapshotTests/testLongMultilineTextOnUILabel.Font-DastNevis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/UIKitSnapshotTests/testLongMultilineTextOnUILabel.Font-DastNevis.png -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/UIKitSnapshotTests/testLongMultilineTextOnUILabel.Font-Digi-Paeez-Regular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/UIKitSnapshotTests/testLongMultilineTextOnUILabel.Font-Digi-Paeez-Regular.png -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/UIKitSnapshotTests/testLongMultilineTextOnUILabel.Font-MT_YekanSquareBoom-Bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/UIKitSnapshotTests/testLongMultilineTextOnUILabel.Font-MT_YekanSquareBoom-Bold.png -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/UIKitSnapshotTests/testLongMultilineTextOnUILabel.Font-Shokoh-Bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/UIKitSnapshotTests/testLongMultilineTextOnUILabel.Font-Shokoh-Bold.png -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/UIKitSnapshotTests/testLongMultilineTextOnUILabel.Font-shahgosh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/UIKitSnapshotTests/testLongMultilineTextOnUILabel.Font-shahgosh.png -------------------------------------------------------------------------------- /Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/UIKitSnapshotTests/testSampleViewController.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyIosDeveloper/PersianJustify/HEAD/Tests/PersianJustifyTests/SnapshotTests/__Snapshots__/UIKitSnapshotTests/testSampleViewController.1.png --------------------------------------------------------------------------------