Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemilla committed Apr 12, 2024
1 parent ccd609a commit fe4581f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion Courier_iOS.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'Courier_iOS'
s.version = '3.2.3'
s.version = '3.2.4'
s.summary = 'Courier makes it easy to add notifications to your app'

s.homepage = 'https://github.com/trycourier/courier-ios'
Expand Down
2 changes: 1 addition & 1 deletion Sources/Courier_iOS/Courier_iOS.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import UIKit
/**
* Versioning
*/
internal static let version = "3.2.3"
internal static let version = "3.2.4"
public static var agent = CourierAgent.native_ios

/**
Expand Down
38 changes: 19 additions & 19 deletions Sources/Courier_iOS/UI/CourierStyles.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ public enum CourierStyles {

public class TextStyle: NSObject {

internal let unread: CourierStyles.Font
internal let read: CourierStyles.Font
public let unread: CourierStyles.Font
public let read: CourierStyles.Font

public init(unread: CourierStyles.Font, read: CourierStyles.Font) {
self.unread = unread
Expand All @@ -27,8 +27,8 @@ public enum CourierStyles {

public class ButtonStyle: NSObject {

internal let unread: CourierStyles.Button
internal let read: CourierStyles.Button
public let unread: CourierStyles.Button
public let read: CourierStyles.Button

public init(
unread: CourierStyles.Button = CourierStyles.Button(
Expand All @@ -53,8 +53,8 @@ public enum CourierStyles {

public class UnreadIndicatorStyle: NSObject {

internal let indicator: UnreadIndicator
internal let color: UIColor?
public let indicator: UnreadIndicator
public let color: UIColor?

public init(indicator: UnreadIndicator = .line, color: UIColor? = nil) {
self.indicator = indicator
Expand All @@ -71,8 +71,8 @@ public enum CourierStyles {

public class SettingStyles: NSObject {

internal let font: CourierStyles.Font?
internal let toggleColor: UIColor?
public let font: CourierStyles.Font?
public let toggleColor: UIColor?

public init(font: CourierStyles.Font? = nil, toggleColor: UIColor? = nil) {
self.font = font
Expand All @@ -87,8 +87,8 @@ public enum CourierStyles {

public class InfoViewStyle: NSObject {

internal let font: CourierStyles.Font
internal let button: CourierStyles.Button
public let font: CourierStyles.Font
public let button: CourierStyles.Button

public init(font: CourierStyles.Font, button: CourierStyles.Button) {
self.font = font
Expand All @@ -101,10 +101,10 @@ public enum CourierStyles {

public class Cell: NSObject {

internal let separatorStyle: UITableViewCell.SeparatorStyle
internal let separatorInsets: UIEdgeInsets
internal let separatorColor: UIColor?
internal let selectionStyle: UITableViewCell.SelectionStyle
public let separatorStyle: UITableViewCell.SeparatorStyle
public let separatorInsets: UIEdgeInsets
public let separatorColor: UIColor?
public let selectionStyle: UITableViewCell.SelectionStyle

public init(separatorStyle: UITableViewCell.SeparatorStyle = .singleLine, separatorInsets: UIEdgeInsets = .init(top: 0, left: 16, bottom: 0, right: 0), separatorColor: UIColor? = nil, selectionStyle: UITableViewCell.SelectionStyle = .default) {
self.separatorStyle = separatorStyle
Expand All @@ -119,9 +119,9 @@ public enum CourierStyles {

public class Button: NSObject {

internal let font: CourierStyles.Font
internal let backgroundColor: UIColor?
internal let cornerRadius: CGFloat
public let font: CourierStyles.Font
public let backgroundColor: UIColor?
public let cornerRadius: CGFloat

public init(font: CourierStyles.Font, backgroundColor: UIColor? = nil, cornerRadius: CGFloat = 8) {

Expand All @@ -142,8 +142,8 @@ public enum CourierStyles {

public class Font: NSObject {

internal let font: UIFont
internal let color: UIColor
public let font: UIFont
public let color: UIColor

public init(font: UIFont, color: UIColor) {
self.font = font
Expand Down

0 comments on commit fe4581f

Please sign in to comment.