Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/bundler/rexml-3.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lucdion authored Jun 13, 2024
2 parents 4cb460f + fcb3e79 commit 001e6bf
Show file tree
Hide file tree
Showing 96 changed files with 9,401 additions and 7,554 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@

# Change Log

## [2.0.7](https://github.com/layoutBox/FlexLayout/releases/tag/2.0.7)

#### Update yoga to version 3.0.4

Added by [heoblitz](https://github.com/heoblitz) in Pull Request [#245](https://github.com/layoutBox/FlexLayout/pull/252)


## [2.0.06](https://github.com/layoutBox/FlexLayout/releases/tag/2.0.07)

Expand Down
4 changes: 2 additions & 2 deletions FlexLayout.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |spec|
spec.name = "FlexLayout"
spec.version = "2.0.07"
spec.version = "2.0.7"
spec.summary = "FlexLayout"
spec.homepage = "https://github.com/lucdion/FlexLayout.git"
spec.license = "MIT license"
Expand All @@ -19,7 +19,7 @@ Pod::Spec.new do |spec|
'-fexceptions',
'-Wall',
'-Werror',
'-std=c++1y',
'-std=c++20',
'-fPIC'
]
end
440 changes: 320 additions & 120 deletions FlexLayout.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,5 @@ let package = Package(
]
),
],
cLanguageStandard: .gnu99,
cxxLanguageStandard: .gnucxx11
cxxLanguageStandard: CXXLanguageStandard(rawValue: "c++20")
)
8 changes: 4 additions & 4 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- FlexLayout (2.0.05)
- FlexLayout (2.0.7)
- PinLayout (1.10.5)
- SwiftLint (0.54.0)
- SwiftLint (0.55.1)

DEPENDENCIES:
- FlexLayout (from `./`)
Expand All @@ -18,9 +18,9 @@ EXTERNAL SOURCES:
:path: "./"

SPEC CHECKSUMS:
FlexLayout: 1cdf0b71a0d06669a497c5a80a355e76129a1025
FlexLayout: fcb9aaa754029afff0cb99e9cdfe10c68d70b6ac
PinLayout: f6c2b63a5a5b24864064e1d15c67de41b4e74748
SwiftLint: c1de071d9d08c8aba837545f6254315bc900e211
SwiftLint: 3fe909719babe5537c552ee8181c0031392be933

PODFILE CHECKSUM: a0f152e938c551fd661bee3ffe26ccc6175f088b

Expand Down
8 changes: 4 additions & 4 deletions Sources/YogaKit/YGLayout.mm
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ - (CGSize)calculateLayoutWithSize:(CGSize)size {
#pragma mark - Private

static float YGMeasureBaselineLabel(
YGNodeRef node,
YGNodeConstRef node,
const float width,
const float height) {

Expand All @@ -374,7 +374,7 @@ static float YGMeasureBaselineLabel(
}

static float YGMeasureBaselineTextView(
YGNodeRef node,
YGNodeConstRef node,
const float width,
const float height) {

Expand All @@ -383,7 +383,7 @@ static float YGMeasureBaselineTextView(
}

static float YGMeasureBaselineTextField(
YGNodeRef node,
YGNodeConstRef node,
const float width,
const float height) {

Expand All @@ -401,7 +401,7 @@ static float YGMeasureBaselineTextField(
}

static YGSize YGMeasureView(
YGNodeRef node,
YGNodeConstRef node,
float width,
YGMeasureMode widthMode,
float height,
Expand Down
Loading

0 comments on commit 001e6bf

Please sign in to comment.