Skip to content
Snippets Groups Projects

Repository graph

You can move around the graph by using the arrow keys.
Select Git revision
  • 20120108-bugfix
  • 20160102
  • 3.0.0
  • 3.0.1
  • 3.0.10
  • 3.0.11
  • 3.0.12
  • 3.0.13
  • 3.0.14
  • 3.0.15
  • 3.0.16
  • 3.0.6
  • 3.0.7
  • 3.0.8
  • 3.0.9
  • 3.1.1
  • AmbientLight
  • BetterComposedCharacterSegmentation
  • GBK
  • MaddTheSane-modernization
  • v3.1.5
  • v3.1.5.beta.2
  • v3.1.4
  • v3.1.5.beta.1
  • v3.1.4.beta.1
  • v3.1.3
  • v3.1.3.beta.1
  • v3.1.2
  • v3.1.2.beta.2
  • v3.1.2.beta.1
  • v3.1.1
  • v3.1.0
  • v3.1.beta.10
  • v3.1.beta.9
  • v3.1.beta.8
  • v3.1.beta.7
  • v3.1.beta.6
  • v3.1.beta.5
  • v3.1.beta.4
  • v3.1.beta.3
40 results
Created with Raphaël 2.2.028Jul27262524232217161514131211109865432130Jun29281918171514131211109875432131May302927262524212019181413121110987654130Apr292726242322191816151211109865432131Mar30292827262423222120191814131211109876543227Feb262523222120191817161514131211109876543231Jan30292827262524232221201918131298765432131Dec30Fix a bug in regex search where a regex like xa* would return multiple search results against a document like xaaaa (xa, xaa, etc.). Now that search results are properly sorted, this causes strange behavior. For example, only part of a match might be selected. Now, we ignore results that are a subset of a previous result. This works because the search progressively shortens and re-searches the document (e.g., xaaa, xaa, xa, x). Issue 5937Merge branch 'master' of https://github.com/gnachman/iTerm2Fix a bug where coords and content would not be in 1:1 correspondence when an url action is found and hard newlines are ignored (set by an advanced pref, which is not the default setting). Remove the corresponding coords as well as the newlines from the string. Issue 5929.Fix a bug where triggers would highlight lookahead matches. Only the first range needs to be highlighted. That's the range of the string that matched the pattern. Additional ranges correspond to captures, not all of which are necessarily contained in the first range. Lookaheads fall outside the matched range and should not be highlihgted. Issue 5934.Merge branch 'master' of https://github.com/gnachman/iTerm2Fix a bug where the newline policy kiTermTextExtractorNullPolicyFromLastToEnd would include a leading newline after removing text prior to a null. This caused URL actions to detect a region that began one cell early. That null policy is only used in URL action detection.Merge branch 'master' of https://github.com/gnachman/iTerm2Change how adjacent sessions are found. The previous algorithm could loop forever if things weren't laid out correctly, and I think there are subtle bugs in how the split views' subviews get laid out.Add some critical errors to catch issue 5932Merge branch 'master' of https://github.com/gnachman/iTerm2Add new thin strokes settings to enable it with light backgrounds. People who had Always or Retina are migrated to With Dark Backgrounds or Retina and Dark Backgrounds, respectively. Issue 5910.Merge branch 'master' of https://github.com/gnachman/iTerm2Make the app hotkey remember the previously active app so it can switch back to it from a lion fullscreen window. Issue 5925.Respect changes to the preferred screen of a profile with an existing hotkey window. Update the window controller's copy of the preferred screen setting. Only hotkey windows are affected since other kinds of windows do not move from screen to screen after their initial creation. Issue 5923.Merge branch 'master' of https://github.com/gnachman/iTerm2Update tips of the day for 3.1v3.1.beta.6v3.1.beta.6Merge branch 'master' of https://github.com/gnachman/iTerm2Add an advanced pref to allow fast but poor quality combining mark rendering.Disable the zippy text drawing algorithm for cells that have combining marks or surrogate pairs. CG draws combining marks really badly; core text is slow but much better.Merge pull request #329 from hzhu/contrast-interface-typoFixed typo in "Minimum contrast" slider.Merge branch 'master' of https://github.com/gnachman/iTerm2For key actions that open a menu item, modify the parameter value to include a unique identifier for the menu item. Previously the parameter value was the title. That was bad because renaming a title would break an existing action. Titles are also ambiguous because they're duplicated between Restore Arrangement and Restore Arrangement as Tabs. Parameter values now may take one of two forms:Fix a bug where the first scheme in the list of URL schemes was not selectable because NSMenu is stupid. Issue 5897 (in a comment)Add a context menu to the password manager with a Reveal Password item. Double click always sends the password now. Issue 5912.Merge branch 'master' of https://github.com/gnachman/iTerm2Refactor event taps. Fixes a bug: if we couldn't register the keydown event tap for lack of permissions, we also wouldn't register the flags-changed event tap (since we want all remapping to happen in sendEvent:). But that broke double-tap to open a hotkey window. In this commit, there is a separate object for keydown vs modifier changed event taps. The modifier-changed event tap is shared between the modifier remapper and the hotkey code. If we don't have permission for accessibility, the modifier remapper knows it and remapping goes through sendEvent:. It seems we can always register the flags changed event tap. Issue 5911.Merge branch 'master' of https://github.com/gnachman/iTerm2Fix button alignmentMerge branch 'master' of https://github.com/gnachman/iTerm2Merge branch 'master' of https://github.com/gnachman/iTerm2Hold option to scroll into history while in alternate screen when scroll wheel is in send-arrow-keys-in-alt-screen modeMove ligature checkbox left of anitalised checkbox to avoid having a bigDisable ligature checkbox for blacklisted fonts.Merge branch 'master' of https://github.com/gnachman/iTerm2Add support for using the numeric keypad to change tabs with cmd-number. Issue 5904.Fix build on 10.12 sdkDisable ligatures by default. Performance sucks using core text and I don't see a way to improve it without using all kinds of private APIs. The only difference I can find between us and Terminal is that they have a very flat view hierarchy. They don't use NSScrollView. I can't ditch NSScrollView because I can't cobble together a frankenstein from its parts the way Apple can.Merge branch 'master' of https://github.com/gnachman/iTerm2Register for the keydown and flags-changed event taps separately. If you lack accessibility permission then the flags-changed event tap succeeds and keydown fails, but it doesn't let you know. This means you don't get modifiers remapped but the app thinks they are getting remapped since an event tap exists. Issue 5902.
Loading