-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Feature. Advanced Commit View: Filter files text field. #669
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
lolgear
wants to merge
14
commits into
git-up:master
Choose a base branch
from
lolgear:commit_view_filter_files
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
52e896b
kit: core live repository file pattern has been added.
lolgear 1506148
kit: advanced commit view controller search text field has been added.
lolgear b8b03ab
kit: advanced commit view controller reset search has been added.
lolgear 234062f
kit: advanced commit view controller search field has been moved to b…
lolgear d3fa64b
kit: advanced commit view controller search field bugs have been fixed.
lolgear b994c24
kit: advanced commit view controller commit button has been disable d…
lolgear 68dd5da
kit: advanced commit view controller commit button tooltip update has…
lolgear 5afa765
kit: advanced commit view controller search text field placeholder ha…
lolgear 3eaab1c
kit: advanced commit view controller xib search text field has been a…
lolgear 200cfe3
kit: preferences window controller xib commits enable filter in commi…
lolgear 57df779
kit: advanced commit view controller xib commits enable filter in com…
lolgear 9e342cb
kit: extensions view embedding has been added.
lolgear 63e5082
kit: project has been updated.
lolgear 61cec06
kit: advanced commit view controller index files view controller layo…
lolgear File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
141 changes: 91 additions & 50 deletions
141
GitUp/Application/Base.lproj/PreferencesWindowController.xib
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// | ||
// NSView+Embedding.h | ||
// GitUpKit (OSX) | ||
// | ||
// Created by Dmitry Lobanov on 06.04.2020. | ||
// | ||
|
||
#import <AppKit/AppKit.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface NSView (Embedding) | ||
- (void)embedView:(NSView *)view; | ||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// | ||
// NSView+Embedding.m | ||
// GitUpKit (OSX) | ||
// | ||
// Created by Dmitry Lobanov on 06.04.2020. | ||
// | ||
|
||
#import "NSView+Embedding.h" | ||
|
||
@implementation NSView (Embedding) | ||
- (void)embedView:(NSView *)view { | ||
[self.class embedView:view inView:self]; | ||
} | ||
|
||
+ (void)embedView:(NSView *)view inView:(NSView *)superview { | ||
[superview addSubview:view]; | ||
view.translatesAutoresizingMaskIntoConstraints = NO; | ||
|
||
if (superview != nil && view != nil) { | ||
if (@available(macOS 10.11, *)) { | ||
NSArray *constraints = @[ | ||
[view.leftAnchor constraintEqualToAnchor:superview.leftAnchor], | ||
[view.topAnchor constraintEqualToAnchor:superview.topAnchor], | ||
[view.bottomAnchor constraintEqualToAnchor:superview.bottomAnchor], | ||
[view.rightAnchor constraintEqualToAnchor:superview.rightAnchor] | ||
]; | ||
[NSLayoutConstraint activateConstraints:constraints]; | ||
} else { | ||
// Fallback on earlier versions | ||
NSArray *verticalConstraints = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|[view]|" options:0 metrics:nil views:@{@"view": view}]; | ||
NSArray *horizontalConstraints = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|[view]|" options:0 metrics:nil views:@{@"view": view}]; | ||
NSArray *constraints = [[NSArray arrayWithArray:verticalConstraints] arrayByAddingObjectsFromArray:horizontalConstraints]; | ||
[NSLayoutConstraint activateConstraints:constraints]; | ||
} | ||
} | ||
} | ||
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: @lolgear think about deprecate low mac versions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@NikKovIos I’ll take a pass at cleaning this up on a new branch. The original author did enough on this one for me to push it over the finish line.