Skip to content

Commit c603520

Browse files
committed
shadow_size candidate_back_color
1 parent b209906 commit c603520

5 files changed

Lines changed: 132 additions & 80 deletions

File tree

Squirrel.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@
653653
CODE_SIGN_IDENTITY = "-";
654654
COMBINE_HIDPI_IMAGES = YES;
655655
COPY_PHASE_STRIP = NO;
656-
CURRENT_PROJECT_VERSION = 0.16.2u;
656+
CURRENT_PROJECT_VERSION = 0.18.0u;
657657
DEAD_CODE_STRIPPING = YES;
658658
FRAMEWORK_SEARCH_PATHS = (
659659
"$(inherited)",
@@ -709,7 +709,7 @@
709709
CLANG_ENABLE_OBJC_ARC = YES;
710710
CODE_SIGN_IDENTITY = "-";
711711
COMBINE_HIDPI_IMAGES = YES;
712-
CURRENT_PROJECT_VERSION = 0.16.2u;
712+
CURRENT_PROJECT_VERSION = 0.18.0u;
713713
DEAD_CODE_STRIPPING = YES;
714714
FRAMEWORK_SEARCH_PATHS = (
715715
"$(inherited)",

SquirrelConfig.hh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
__attribute__((objc_direct_members))
55
@interface SquirrelOptionSwitcher : NSObject
66

7-
@property(nonatomic, strong, readonly, nonnull) NSString* schemaId;
8-
@property(nonatomic, strong, readonly, nonnull) NSString* currentScriptVariant;
9-
@property(nonatomic, strong, readonly, nonnull) NSSet<NSString*>* optionNames;
10-
@property(nonatomic, strong, readonly, nonnull) NSSet<NSString*>* optionStates;
11-
@property(nonatomic, strong, readonly, nonnull)
7+
@property(nonatomic, readonly, strong, nonnull) NSString* schemaId;
8+
@property(nonatomic, readonly, strong, nonnull) NSString* currentScriptVariant;
9+
@property(nonatomic, readonly, strong, nonnull) NSSet<NSString*>* optionNames;
10+
@property(nonatomic, readonly, strong, nonnull) NSSet<NSString*>* optionStates;
11+
@property(nonatomic, readonly, strong, nonnull)
1212
NSDictionary<NSString*, NSString*>* scriptVariantOptions;
13-
@property(nonatomic, strong, readonly, nonnull)
13+
@property(nonatomic, readonly, strong, nonnull)
1414
NSMutableDictionary<NSString*, NSString*>* switcher;
15-
@property(nonatomic, strong, readonly, nonnull)
15+
@property(nonatomic, readonly, strong, nonnull)
1616
NSDictionary<NSString*, NSOrderedSet<NSString*>*>* optionGroups;
1717

1818
- (instancetype _Nonnull)

SquirrelInputController.hh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ typedef NS_ENUM(NSUInteger, SquirrelIndex) {
3232
kVoidSymbol = 0xffffff // XK_VoidSymbol
3333
};
3434

35-
@property(nonatomic, weak, readonly, nullable, direct, class)
35+
@property(nonatomic, readonly, weak, nullable, direct, class)
3636
SquirrelInputController* currentController;
37-
@property(nonatomic, strong, readonly, nonnull)
37+
@property(nonatomic, readonly, strong, nonnull)
3838
NSAppearance* viewEffectiveAppearance API_AVAILABLE(macos(10.14));
39-
@property(nonatomic, strong, readonly, nonnull, direct)
39+
@property(nonatomic, readonly, strong, nonnull, direct)
4040
NSMutableArray<NSString*>* candidateTexts;
41-
@property(nonatomic, strong, readonly, nonnull, direct)
41+
@property(nonatomic, readonly, strong, nonnull, direct)
4242
NSMutableArray<NSString*>* candidateComments;
4343

4444
- (void)moveCursor:(NSUInteger)cursorPosition

SquirrelPanel.hh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
@property(nonatomic, direct) NSUInteger sectionNum;
2323
// position of the text input I-beam cursor on screen.
2424
@property(nonatomic, direct) NSRect IbeamRect;
25-
@property(nonatomic, strong, readonly, nullable) NSScreen* screen;
25+
@property(nonatomic, readonly, strong, nullable) NSScreen* screen;
2626
// Status message before pop-up is displayed; nil before normal panel is
2727
// displayed
28-
@property(nonatomic, strong, readonly, nullable, direct)
28+
@property(nonatomic, readonly, strong, nullable, direct)
2929
NSString* statusMessage;
3030
// Store switch options that change style (color theme) settings
3131
@property(nonatomic, strong, nonnull, direct)

0 commit comments

Comments
 (0)