Skip to content

Commit 9303511

Browse files
committed
Squashed commit of the following:
commit 48a84c33a32f661a544c00bf4a084463e0ca7fbb Author: Amy <[email protected]> Date: Fri Jul 25 12:21:20 2025 -0400 add "project mode" explainer to help out all the (nonexistent) non-me users of yc 😌 commit de2216e09cc5e88f7e1aab571a137673dc77f4c1 Author: Amy <[email protected]> Date: Fri Jul 25 11:59:06 2025 -0400 move swizzle function to xc wrapper too commit 06a6f8ab4266dba9a94cac45ca2a66119fca4a27 Author: Amy <[email protected]> Date: Fri Jul 25 11:55:12 2025 -0400 change Xcode wrapper to objc class and try to hide as much xc stuff and hacks there so our other classes are a bit less ugly commit 84ee2a4e1f4ab3d10b9e275e8432b5f82b31fc06 Author: Amy <[email protected]> Date: Fri Jul 25 10:42:53 2025 -0400 move some code between files commit 2a46069a9607875e616aab61cb552bafad07165e Author: Amy <[email protected]> Date: Wed Jul 23 16:47:27 2025 -0400 misc refactor, use setters, fix last? memory leak
1 parent 5b020fb commit 9303511

File tree

14 files changed

+628
-516
lines changed

14 files changed

+628
-516
lines changed

Delegate.h

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
1+
enum
2+
{
3+
TagSetting=1,
4+
TagTheme,
5+
TagProjectMode,
6+
TagTab,
7+
TagFileAssociation,
8+
TagReopen
9+
};
10+
111
@interface Delegate:NSObject<NSApplicationDelegate,NSUserInterfaceValidations,NSWindowDelegate>
212

3-
@property(assign) BOOL projectMode;
13+
@property(assign,nonatomic) BOOL projectMode;
414
@property(retain) NSString* currentScreenKey;
515

616
+(Delegate*)shared;

0 commit comments

Comments
 (0)