Skip to content

Commit d10df53

Browse files
feat add thirds and two thirds shorcuts
1 parent 6adf9c3 commit d10df53

21 files changed

+894
-206
lines changed

Rectangle.xcodeproj/project.pbxproj

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,11 @@
135135
AAADE1AF28CBAB0000036331 /* WindowUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAADE1AE28CBAB0000036331 /* WindowUtil.swift */; };
136136
B4521F932BD7CEFB00FD43CC /* ChangeWindowDimensionCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4521F922BD7CEFB00FD43CC /* ChangeWindowDimensionCalculation.swift */; };
137137
B4780A322BD4C75900732B9E /* HalfOrDoubleDimensionCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4780A312BD4C75900732B9E /* HalfOrDoubleDimensionCalculation.swift */; };
138+
BB6DD8D22EF9B9F30080CB74 /* BottomVerticalThirdCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB6DD8CD2EF9B9F30080CB74 /* BottomVerticalThirdCalculation.swift */; };
139+
BB6DD8D32EF9B9F30080CB74 /* MiddleVerticalThirdCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB6DD8CF2EF9B9F30080CB74 /* MiddleVerticalThirdCalculation.swift */; };
140+
BB6DD8D42EF9B9F30080CB74 /* BottomVerticalTwoThirdsCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB6DD8CE2EF9B9F30080CB74 /* BottomVerticalTwoThirdsCalculation.swift */; };
141+
BB6DD8D52EF9B9F30080CB74 /* TopVerticalThirdCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB6DD8D02EF9B9F30080CB74 /* TopVerticalThirdCalculation.swift */; };
142+
BB6DD8D62EF9B9F30080CB74 /* TopVerticalTwoThirdsCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB6DD8D12EF9B9F30080CB74 /* TopVerticalTwoThirdsCalculation.swift */; };
138143
D0423D8327A8D31D008A4894 /* HorizontalThirdsRepeated.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0423D8227A8D31D008A4894 /* HorizontalThirdsRepeated.swift */; };
139144
D04CE3002781794E00BD47B3 /* TopLeftNinthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D04CE2FF2781794E00BD47B3 /* TopLeftNinthCalculation.swift */; };
140145
D04CE30227817A6100BD47B3 /* TopCenterNinthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D04CE30127817A6100BD47B3 /* TopCenterNinthCalculation.swift */; };
@@ -314,6 +319,11 @@
314319
AAADE1AE28CBAB0000036331 /* WindowUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WindowUtil.swift; sourceTree = "<group>"; };
315320
B4521F922BD7CEFB00FD43CC /* ChangeWindowDimensionCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChangeWindowDimensionCalculation.swift; sourceTree = "<group>"; };
316321
B4780A312BD4C75900732B9E /* HalfOrDoubleDimensionCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HalfOrDoubleDimensionCalculation.swift; sourceTree = "<group>"; };
322+
BB6DD8CD2EF9B9F30080CB74 /* BottomVerticalThirdCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomVerticalThirdCalculation.swift; sourceTree = "<group>"; };
323+
BB6DD8CE2EF9B9F30080CB74 /* BottomVerticalTwoThirdsCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomVerticalTwoThirdsCalculation.swift; sourceTree = "<group>"; };
324+
BB6DD8CF2EF9B9F30080CB74 /* MiddleVerticalThirdCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MiddleVerticalThirdCalculation.swift; sourceTree = "<group>"; };
325+
BB6DD8D02EF9B9F30080CB74 /* TopVerticalThirdCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopVerticalThirdCalculation.swift; sourceTree = "<group>"; };
326+
BB6DD8D12EF9B9F30080CB74 /* TopVerticalTwoThirdsCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopVerticalTwoThirdsCalculation.swift; sourceTree = "<group>"; };
317327
D0423D8227A8D31D008A4894 /* HorizontalThirdsRepeated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HorizontalThirdsRepeated.swift; sourceTree = "<group>"; };
318328
D04CE2FF2781794E00BD47B3 /* TopLeftNinthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopLeftNinthCalculation.swift; sourceTree = "<group>"; };
319329
D04CE30127817A6100BD47B3 /* TopCenterNinthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopCenterNinthCalculation.swift; sourceTree = "<group>"; };
@@ -406,6 +416,11 @@
406416
982140E922B7DA3100ABFB3F /* WindowCalculation */ = {
407417
isa = PBXGroup;
408418
children = (
419+
BB6DD8CD2EF9B9F30080CB74 /* BottomVerticalThirdCalculation.swift */,
420+
BB6DD8CE2EF9B9F30080CB74 /* BottomVerticalTwoThirdsCalculation.swift */,
421+
BB6DD8CF2EF9B9F30080CB74 /* MiddleVerticalThirdCalculation.swift */,
422+
BB6DD8D02EF9B9F30080CB74 /* TopVerticalThirdCalculation.swift */,
423+
BB6DD8D12EF9B9F30080CB74 /* TopVerticalTwoThirdsCalculation.swift */,
409424
9FF740222E34DE9000D22955 /* CenterThreeFourthsCalculation.swift */,
410425
74804F0A2E25521C009F1F7D /* CenterTwoThirdsCalculation.swift */,
411426
98A009AA2512491300CFBF0C /* CenterHalfCalculation.swift */,
@@ -959,6 +974,11 @@
959974
98A009BF251253AB00CFBF0C /* BottomRightSixthCalculation.swift in Sources */,
960975
6490B39527BF96880056C220 /* TopLeftEighthCalculation.swift in Sources */,
961976
D04CE30227817A6100BD47B3 /* TopCenterNinthCalculation.swift in Sources */,
977+
BB6DD8D22EF9B9F30080CB74 /* BottomVerticalThirdCalculation.swift in Sources */,
978+
BB6DD8D32EF9B9F30080CB74 /* MiddleVerticalThirdCalculation.swift in Sources */,
979+
BB6DD8D42EF9B9F30080CB74 /* BottomVerticalTwoThirdsCalculation.swift in Sources */,
980+
BB6DD8D52EF9B9F30080CB74 /* TopVerticalThirdCalculation.swift in Sources */,
981+
BB6DD8D62EF9B9F30080CB74 /* TopVerticalTwoThirdsCalculation.swift in Sources */,
962982
98A009B52512537800CFBF0C /* TopLeftSixthCalculation.swift in Sources */,
963983
9824704F22B189250037B409 /* BestEffortWindowMover.swift in Sources */,
964984
30166BD024F27D6A00A38608 /* SpecifiedCalculation.swift in Sources */,
@@ -1044,7 +1064,7 @@
10441064
);
10451065
MACOSX_DEPLOYMENT_TARGET = 10.15;
10461066
MARKETING_VERSION = 1.0;
1047-
PRODUCT_BUNDLE_IDENTIFIER = com.knollsoft.RectangleLauncher;
1067+
PRODUCT_BUNDLE_IDENTIFIER = com.knollsoft.RectangleLauncher.dev;
10481068
PRODUCT_NAME = "$(TARGET_NAME)";
10491069
PROVISIONING_PROFILE_SPECIFIER = "";
10501070
SKIP_INSTALL = YES;
@@ -1230,7 +1250,7 @@
12301250
);
12311251
MACOSX_DEPLOYMENT_TARGET = 10.15;
12321252
MARKETING_VERSION = 0.92;
1233-
PRODUCT_BUNDLE_IDENTIFIER = com.knollsoft.Rectangle;
1253+
PRODUCT_BUNDLE_IDENTIFIER = com.knollsoft.Rectangle.dev;
12341254
PRODUCT_NAME = "$(TARGET_NAME)";
12351255
PROVISIONING_PROFILE_SPECIFIER = "";
12361256
SWIFT_EMIT_LOC_STRINGS = YES;
@@ -1249,6 +1269,7 @@
12491269
CLANG_ENABLE_MODULES = YES;
12501270
CODE_SIGN_ENTITLEMENTS = Rectangle/RectangleRelease.entitlements;
12511271
CODE_SIGN_IDENTITY = "Apple Development";
1272+
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
12521273
CODE_SIGN_STYLE = Automatic;
12531274
COMBINE_HIDPI_IMAGES = YES;
12541275
CURRENT_PROJECT_VERSION = 98;
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"images" : [
3+
{
4+
"filename" : "Gemini_Generated_Image_hxczsfhxczsfhxcz.png",
5+
"idiom" : "universal",
6+
"scale" : "1x"
7+
},
8+
{
9+
"idiom" : "universal",
10+
"scale" : "2x"
11+
},
12+
{
13+
"idiom" : "universal",
14+
"scale" : "3x"
15+
}
16+
],
17+
"info" : {
18+
"author" : "xcode",
19+
"version" : 1
20+
}
21+
}
5.22 MB
Loading
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"images" : [
3+
{
4+
"filename" : "Gemini_Generated_Image_jp8rrejp8rrejp8r.png",
5+
"idiom" : "universal",
6+
"scale" : "1x"
7+
},
8+
{
9+
"idiom" : "universal",
10+
"scale" : "2x"
11+
},
12+
{
13+
"idiom" : "universal",
14+
"scale" : "3x"
15+
}
16+
],
17+
"info" : {
18+
"author" : "xcode",
19+
"version" : 1
20+
}
21+
}
5.85 MB
Loading
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"images" : [
3+
{
4+
"filename" : "Gemini_Generated_Image_kwx5odkwx5odkwx5.png",
5+
"idiom" : "universal",
6+
"scale" : "1x"
7+
},
8+
{
9+
"idiom" : "universal",
10+
"scale" : "2x"
11+
},
12+
{
13+
"idiom" : "universal",
14+
"scale" : "3x"
15+
}
16+
],
17+
"info" : {
18+
"author" : "xcode",
19+
"version" : 1
20+
}
21+
}
5.24 MB
Loading
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"images" : [
3+
{
4+
"filename" : "Gemini_Generated_Image_2q451h2q451h2q45.png",
5+
"idiom" : "universal",
6+
"scale" : "1x"
7+
},
8+
{
9+
"idiom" : "universal",
10+
"scale" : "2x"
11+
},
12+
{
13+
"idiom" : "universal",
14+
"scale" : "3x"
15+
}
16+
],
17+
"info" : {
18+
"author" : "xcode",
19+
"version" : 1
20+
}
21+
}
5.02 MB
Loading
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"images" : [
3+
{
4+
"filename" : "Gemini_Generated_Image_kr7otwkr7otwkr7o.png",
5+
"idiom" : "universal",
6+
"scale" : "1x"
7+
},
8+
{
9+
"idiom" : "universal",
10+
"scale" : "2x"
11+
},
12+
{
13+
"idiom" : "universal",
14+
"scale" : "3x"
15+
}
16+
],
17+
"info" : {
18+
"author" : "xcode",
19+
"version" : 1
20+
}
21+
}

0 commit comments

Comments
 (0)