changelog.rst 185 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524
  1. Changelog
  2. ==============
  3. |kitty| is a feature-rich, cross-platform, *fast*, GPU based terminal.
  4. To update |kitty|, :doc:`follow the instructions <binary>`.
  5. .. recent major features {{{
  6. Recent major new features
  7. ---------------------------
  8. Access kitty with a single keypress [0.42]
  9. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  10. .. include:: quake-screenshots.rst
  11. kitty now has a Quake like floating, translucent terminal window, so you can access
  12. all that kitty goodness instantly with a single keypress.
  13. See the screenshots on the side and head over to the :doc:`kitten page for details
  14. on how to set it up </kittens/quick-access-terminal>`.
  15. Multiple sized text [0.40]
  16. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  17. kitty is the first major terminal to introduce the concept of multiple sized
  18. text. Terminal programs running in kitty can now opt-in to use and display text
  19. in multiple font sizes both larger and smaller than the base font size. This is
  20. done in a backwards compatible, opt-in way that does not affect how traditional
  21. terminal programs work at all. For details on the new feature and how to use
  22. it, see :doc:`text-sizing-protocol`.
  23. Cursor trails [0.37]
  24. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  25. Show an animated trail when the text cursor makes large jumps making it easy
  26. to follow cursor movements. Inspired by the similar feature in neovide, but
  27. works with terminal multiplexers and kitty windows as well. See :pull:`the pull
  28. request <7970>` for a demonstration video. This feature is optional and must be
  29. turned on by the :opt:`cursor_trail` option in :file:`kitty.conf`.
  30. Variable font support [0.36]
  31. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  32. Terminal aficionados spend all day staring at text, so getting text
  33. rendering just right is very important. In that spirit, kitty now supports
  34. `OpenType Variable fonts <https://en.wikipedia.org/wiki/Variable_font>`__.
  35. These allow precise customisation of font characteristics, such as weight and
  36. spacing. Not only that, kitty now has a new :doc:`choose-fonts
  37. <kittens/choose-fonts>` kitten that provides a UI for choosing fonts with
  38. support for font features, variable fonts and previews of how the font will
  39. look. This is in addition to its existing best-in-class font customization
  40. abilities, such as: :opt:`symbol_map`, :opt:`text_composition_strategy`,
  41. :opt:`font_features` and :opt:`modify_font`. kitty knows text rendering is
  42. important, and goes the extra mile for it.
  43. Desktop notifications [0.36]
  44. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  45. |kitty| now has a :doc:`notify </kittens/notify>` kitten that can be used to
  46. display desktop notifications from the command line, even over SSH. It has
  47. support for icons, buttons, updating notifications, waiting till
  48. the notification is closed, etc. The underlying :doc:`desktop-notifications`
  49. protocol has been expanded to support all these features.
  50. Wayland goodies [0.34]
  51. ~~~~~~~~~~~~~~~~~~~~~~~
  52. Wayland users should rejoice as kitty now comes with major Wayland
  53. quality-of-life improvements:
  54. * Draw GPU accelerated :doc:`desktop panels and background </kittens/panel>`
  55. running arbitrary terminal programs. For example, run `btop
  56. <https://github.com/aristocratos/btop/>`__ as your desktop background
  57. * Background blur for transparent windows is now supported under KDE
  58. using a custom KDE specific protocol
  59. * The kitty window decorations in GNOME are now fully functional with buttons
  60. and they follow system dark/light mode automatically
  61. * kitty now supports fractional scaling in Wayland which means pixel perfect
  62. rendering when you use a fractional scale with no wasted performance on
  63. resizing an overdrawn pixmap in the compositor
  64. With this release kitty's Wayland support is now on par with X11, provided
  65. you use a decent Wayland compositor.
  66. Cheetah speed 🐆 [0.33]
  67. ~~~~~~~~~~~~~~~~~~~~~~~~~
  68. kitty has grown up and become a cheetah. It now parses data it receives in
  69. parallel :iss:`using SIMD vector CPU instructions <7005>` for a 2x speedup in
  70. benchmarks and a 10%-50% real world speedup depending on workload. There is a
  71. new benchmarking kitten ``kitten __benchmark__`` that can be used to measure
  72. terminal throughput. There is also :ref:`a table <throughput>` showing kitty is
  73. much faster than other terminal emulators based on the benchmark kitten. While
  74. kitty was already so fast that its performance was never a bottleneck, this
  75. improvement makes it even faster and more importantly reduces the energy
  76. consumption to do the same tasks.
  77. .. }}}
  78. Detailed list of changes
  79. -------------------------------------
  80. 0.42.1 [future]
  81. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  82. - Fix ambiguous width and private use characters not being rendered when used with variable width text-sizing protocol escape codes
  83. - Quick access terminal: Restore focus to previously active window when hiding the quick access terminal window on macOS (:iss:`8627`)
  84. - Wayland: Fix an abort if the terminal program sets a window title longer than 2KB that contains CSI escape sequences and multibyte UTF-8 (:iss:`8619`)
  85. - Quick access terminal: Allow toggling the window to full screen and map using the standard kitty :sc:`toggle_fullscreen` shortcut (:iss:`8626`)
  86. - Quick access terminal: Allow configuring the monitor to display the panel on in Wayland/X11 (:iss:`8630`)
  87. - A new setting :opt:`remember_window_position` to optionally use the position of the last closed kitty OS Window as the position of the first kitty OS Window when running a new kitty instance (:pull:`8601`)
  88. - Panel kitten: A new ``center-sized`` value for :option:`--edge <kitty +kitten panel --edge>` to allow easily creating sized and centered panels
  89. - Wayland: The `kitty --name` flag now sets the XDG *window tag* on compositors
  90. that support the `xdg-toplevel-tag <https://wayland.app/protocols/xdg-toplevel-tag-v1>`__ protocol.
  91. 0.42.0 [2025-05-11]
  92. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  93. - A new kitten: :doc:`quick-access-terminal </kittens/quick-access-terminal>` to :ref:`quake`
  94. - The :doc:`panel kitten </kittens/panel>` works on macOS and X11 as well as Wayland (:iss:`2590`)
  95. - **Behavior change**: Now kitty does full grapheme segmentation following the
  96. Unicode 16 spec when splitting text into cells (:iss:`8533`)
  97. - **Behavior change**: The :ref:`automatic color switching functionality <auto_color_scheme>` now also controls background image settings (:iss:`8603`)
  98. - panel kitten: Allow using :option:`kitty +kitten panel --single-instance` to create multiple panels in one process (:iss:`8549`)
  99. - launch: Allow creating desktop panels such as those created by the :doc:`panel kitten </kittens/panel>` (:iss:`8549`)
  100. - Remote control: Allow modifying desktop panels and showing/hiding OS Windows
  101. using the ``kitten @ resize-os-window`` command (:iss:`8550`)
  102. - Remote control launch: Allow waiting for a program launched in a new window
  103. to exit and get the exit code via the `kitty +launch
  104. --wait-for-child-to-exit` command line flag (:disc:`8573`)
  105. - Allow starting kitty with the OS window hidden via :option:`kitty --start-as=hidden <kitty --start-as>`, useful for single instance mode (:iss:`3466`)
  106. - Allow configuring the mouse unhide behavior when using :opt:`mouse_hide_wait` (:pull:`8508`)
  107. - diff kitten: Add half page and full page scroll vim-like bindings (:pull:`8514`)
  108. - diff kitten: Allow diffing named pipes (:iss:`8597`)
  109. - Fix a regression that caused automatic color themes to not be re-applied after config file reload (:iss:`8530`)
  110. - Wayland: When the compositor supports the `xdg-system-bell
  111. <https://wayland.app/protocols/xdg-system-bell-v1>`__ protocol use it to play
  112. the default bell sound
  113. - panel kitten: Allow specifying panel size in pixels in addition to cells
  114. - Fix a regression in 0.36.0 that caused using = with single letter command
  115. line flags to no longer work correctly (:iss:`8556`)
  116. - Single instance: Preserve environment variables from invoking environment in
  117. newly created window (:disc:`8567`)
  118. - Single instance: Reset OS Window class and name in new single instance OS
  119. windows (:disc:`8567`)
  120. - macOS: Fix text color in visual window select ignoring the color theme (:iss:`8579`)
  121. - Launch action: Allow using an env var that resolves to a full command-line as the program to launch (:pull:`8613`)
  122. - :ac:`change_font_size` allow multiplying/dividing the current font size in addition to incrementing it (:iss:`8616`)
  123. - Box drawing: Improve appearance of rounder corners, giving them a uniform line width (:iss:`8299`)
  124. 0.41.1 [2025-04-03]
  125. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  126. - Fix a regression in the previous release that caused rendering of emoji using
  127. the VS16 variation selector to fail with some fonts (:iss:`8495`)
  128. - Fix a regression in 0.40.0 that caused tab bar margins to not be properly blanked when
  129. the tab bar is at the bottom (:iss:`8494`)
  130. - Wayland: panel kitten: Fix incorrect initial font size on compositors such as Hyprland
  131. that set scale late in the window creation process (:iss:`8496`)
  132. - Fix a regression in 0.40.1 that caused hyperlink underline on hover to remain
  133. on screen when the screen is scrolled
  134. 0.41.0 [2025-03-29]
  135. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  136. - A new mode of operation for :opt:`text_fg_override_threshold` to override
  137. foreground colors so as to maintain a minimum contrast between foreground and
  138. background text colors. Works in a perceptual color space for best color accuracy
  139. (:pull:`8420`)
  140. - A 15% improvement in throughput when processing text thanks to using a
  141. multi-stage table for Unicode property lookups
  142. - :ref:`kitty +open <launch_actions>`: Ask for confirmation by default when running executables
  143. to work around some badly designed programs that try to open links in
  144. documents that point to executable files. Can be overridden by specifying
  145. your own :file:`launch-actions.conf`.
  146. - Fix a regression in version 0.40.0 causing a crash when the underline
  147. thickness of the font is zero (:iss:`8443`)
  148. - Fix a regression in version 0.40.0 causing a hang on resizing with a wide
  149. character at the right edge of a line that needs to be moved onto the next
  150. line (:iss:`8464`)
  151. - Fix a regression in 0.40.1 that caused copying to clipboard via OSC 52 from
  152. applications that don't specify a destination in the escape code not working
  153. (:iss:`8459`)
  154. - Wayland: Fix a regression in the previous release that caused crashes on
  155. compositors that don't support the xdg-toplevel-icon protocol and the user has
  156. set a custom kitty icon (:iss:`8471`)
  157. 0.40.1 [2025-03-18]
  158. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  159. - Do not count background processes by default for :opt:`confirm_os_window_close` (:iss:`8358`)
  160. - A new option :opt:`clear_selection_on_clipboard_loss` to clear selections when they no longer reflect the contents of the clipboard
  161. - Fix a regression in the previous release that caused empty lines to be skipped when copying text from a selection (:iss:`8435`)
  162. - Fix flickering of hyperlink underline when client program continuously
  163. redraws on mouse movement (:iss:`8414`)
  164. - Wayland: Allow overriding the kitty OS Window icon on compositors that implement the xdg-toplevel-icon protocol
  165. - macOS: When the program running in kitty reports progress information for a task, show a progress bar on the kitty dock icon
  166. - macOS: Fix a regression causing a crash when using :opt:`focus_follows_mouse` (:iss:`8437`)
  167. - OSC 52: Fix specifying both clipboard and primary in OSC 52 requests not supported
  168. 0.40.0 [2025-03-08]
  169. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  170. - :doc:`Allow terminal programs to use text in different font sizes <text-sizing-protocol>` (:iss:`8226`)
  171. - When rendering underlines add gaps around text descenders (parts of the text
  172. that overlap with the underline). Controlled by the new option :opt:`underline_exclusion` (:iss:`8226`)
  173. - Finally fix the issue of text-width mismatches that has been plaguing the
  174. terminal ecosystem for decades by allowing terminal programs to specify how
  175. many cells to render a piece of text in (:iss:`8226`)
  176. - **Behavior change**: The :opt:`notify_on_cmd_finish` option now uses OS
  177. Window visibility instead of focus state when set to ``invisible`` on
  178. platforms that support querying OS window visibility (:iss:`8320`)
  179. - launch: Add options :option:`launch --source-window` and :option:`launch --next-to` to allow
  180. specifying which window is used as the data source and destination location independently of the
  181. currently active window (:iss:`8295`)
  182. - Linux: Add support for `COLRv1 <https://nabla.typearture.com/whatisCOLRV1.html>`__ fonts. These are typically emoji fonts that use vector images for emoji
  183. - Add support for the octant box-drawing characters
  184. - Speed up rendering of box drawing characters by moving the implementation to native code
  185. - When confirming if a window should be closed consider it active if it has running background processes (:iss:`8358`)
  186. - Remote control: `kitten @ scroll-window`: Allow scrolling to previous/next prompt
  187. - macOS: Fix fallback font rendering for bold/italic text not working for some symbols that are present in the Menlo regular face but not the bold/italic faces (:iss:`8282`)
  188. - XTGETTCAP: Fix response invalid for empty string capabilities (:pull:`8304`)
  189. - ssh kitten: Fix incorrect copying of data files when using the python interpreter and also fix incorrect hard link detection (:disc:`8308`)
  190. - Fix a regression in the previous release that broke setting of nullable colors
  191. - Fix a regression in 0.39.0 that caused a crash on invalid Unicode with a
  192. large number of combining characters in a single cell (:iss:`8318`)
  193. - Fix ``--hold`` always restoring cursor to block shape instead of respecting the value of :opt:`cursor_shape` (:disc:`8344`)
  194. - When dragging in rectangle select mode use a crosshair mouse cursor configurable via :opt:`pointer_shape_when_dragging`
  195. - macOS: notify kitten: Fix waiting for result from desktop notification not working (:disc:`8379`)
  196. - Wayland: Fix mouse pointer position update not being sent when focus regained (:iss`8397`, :iss:`8398`)
  197. - Fix cursor blink animation when :opt:`background_opacity` is less than one (:iss:`8401`)
  198. - Wayland: panel kitten: Add a :code:`center` mode for creating panels to ease
  199. creation of centered popups in Wayland (:pull:`8411`)
  200. 0.39.1 [2025-02-01]
  201. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  202. - Splits layout: Allow setting the bias of the current split using ``layout_action bias`` (:iss:`8222`)
  203. - hints kitten: Workaround for some broken light color themes that make the hints text color too low contrast to read (:iss:`7330`)
  204. - Wayland niri: Fix 250ms delay on startup when using scale 1 (:iss:`8236`)
  205. - :ref:`Watchers <watchers>`: Add a new event ``on_color_scheme_preference_change`` (:iss:`8246`)
  206. 0.39.0 [2025-01-16]
  207. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  208. - :doc:`diff kitten <kittens/diff>`: Automatically use dark/light color scheme based on the color scheme of the parent terminal. Can be controlled via the new :opt:`kitten-diff.color_scheme` option. Note that this is a **default behavior change** (:iss:`8170`)
  209. - Allow dynamically generating configuration by running an arbitrary program using the new :code:`geninclude` directive in :file:`kitty.conf`
  210. - When a program running in kitty reports progress of a task display it as a percentage in the tab title. Controlled by the :opt:`tab_title_template` option
  211. - When mapping a custom kitten allow using shell escaping for the kitten path (:iss:`8178`)
  212. - Fix border colors not being changed by auto light/dark themes at startup (:iss:`8180`)
  213. - ssh kitten: Fix kitten not being on PATH when SSHing into Debian systems (:iss:`7160`)
  214. - diff kitten: Abort when run inside a terminal that does not support the kitty keyboard protocol (:iss:`8185`)
  215. - :doc:`query kitten <kittens/query_terminal>`: Add support for reporting name of the OS the terminal emulator is running on (:iss:`8201`)
  216. - macOS: Allow using the Passwords app to autofill passwords via the Edit->Autofill menu mimicking other macOS applications (:pull:`8195`)
  217. - macOS: Add menu items to the Edit menu to clear the screen and scrollback
  218. - Fix the :ac:`clear_terminal scrollback <clear_terminal>` action also clearing screen, not just the scrollback
  219. - When reloading configuration fix auto color themes not being re-applied (:iss:`8203`)
  220. 0.38.1 [2024-12-26]
  221. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  222. - macOS: Fix a regression in the previous release that broke rendering of Emoji using the VS16 variation selector (:iss:`8130`)
  223. - When automatically changing colors based on OS color preference, first reset
  224. all colors to default before applying the new theme so that even colors not
  225. specified in the theme are correct (:iss:`8124`)
  226. - Graphics: Fix deleted but not freed images without any placements being incorrectly freed on a subsequent delete command (:disc:`8129`)
  227. - Graphics: Fix deletion of images by id not working for images with no placements (:disc:`8129`)
  228. - Add support for `escape code protocol <https://github.com/contour-terminal/contour/blob/master/docs/vt-extensions/color-palette-update-notifications.md>`__ for notifying applications on dark/light color scheme change
  229. - Cursor trails: Fix pure vertical movement sometimes not triggering a trail and holding down a key in nvim causing the trail to be glitchy (:pull:`8152`, :pull:`8153`)
  230. - macOS: Fix mouse cursor shape not always being reset to text cursor when mouse re-enters kitty (:iss:`8155`)
  231. - clone-in-kitty: Fix :envvar:`KITTY_WINDOW_ID` being cloned and thus having incorrect value (:iss:`8161`)
  232. 0.38.0 [2024-12-15]
  233. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  234. - Allow :ref:`specifying individual color themes <auto_color_scheme>` to use so that kitty changes colors automatically following the OS dark/light mode
  235. - :opt:`notify_on_cmd_finish`: Automatically remove notifications when the window gains focus or the next notification is shown. Clearing behavior can be configured (:pull:`8100`)
  236. - Discard OSC 9 notifications that start with :code:`4;` because some misguided software is using it for "progress reporting" (:iss:`8011`)
  237. - Wayland GNOME: Workaround bug in mutter causing double tap on titlebar to not always work (:iss:`8054`)
  238. - clipboard kitten: Fix a bug causing kitten to hang in filter mode when input data size is not divisible by 3 and larger than 8KB (:iss:`8059`)
  239. - Wayland: Fix an abort when a client program tries to set an invalid title containing interleaved escape codes and UTF-8 multi-byte characters (:iss:`8067`)
  240. - Graphics protocol: Fix delete by number not deleting newest image with the specified number (:iss:`8071`)
  241. - Fix dashed and dotted underlines not being drawn at the same y position as straight underlines at all font sizes (:iss:`8074`)
  242. - panel kitten: Allow creating floating and on-top panels with arbitrary placement and size on Wayland (:pull:`8068`)
  243. - :opt:`remote_control_password`: Fix using a password without any actions not working (:iss:`8082`)
  244. - Fix enlarging window when a long line is wrapped between the first line of the scrollback buffer and the screen inserting a spurious newline (:iss:`7033`)
  245. - When re-attaching a detached tab preserve internal layout state such as biases and orientations (:iss:`8106`)
  246. - hints/unicode_input kittens: Do not lose keypresses that are sent very rapidly via an automation tool immediately after the kitten is launched (:iss:`7089`)
  247. 0.37.0 [2024-10-30]
  248. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  249. - A new optional :opt:`text cursor movement animation <cursor_trail>` that
  250. shows a "trail" following the movement of the cursor making it easy to follow
  251. large cursor jumps (:pull:`7970`)
  252. - Custom kittens: Add :ref:`a framework <kitten_main_rc>` for easily and securely using remote control from within a kitten's :code:`main()` function
  253. - kitten icat: Fix the :option:`kitty +kitten icat --no-trailing-newline` not working when using unicode placeholders (:iss:`7948`)
  254. - :opt:`tab_title_template` allow using the 256 terminal colors for formatting (:disc:`7976`)
  255. - Fix resizing window when alternate screen is active does not preserve trailing blank output line in the main screen (:iss:`7978`)
  256. - Wayland: Fix :opt:`background_opacity` less than one causing flicker on startup when the Wayland compositor supports single pixel buffers (:iss:`7987`)
  257. - Fix background image flashing when closing a tab (:iss:`7999`)
  258. - When running a kitten that modifies the kitty config file if no config file exists create a commented out default config file and then modify it (:iss:`7991`)
  259. 0.36.4 [2024-09-27]
  260. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  261. - Fix a regression in the previous release that caused window padding to be rendered opaque even when :opt:`background_opacity` is less than 1 (:iss:`7895`)
  262. - Wayland GNOME: Fix a crash when using multiple monitors with different scales and starting on or moving to the monitor with lower scale (:iss:`7894`)
  263. - macOS: Fix a regression in the previous release that caused junk to be rendered in font previews in the choose fonts kitten and crash on Intel macs (:iss:`7892`)
  264. 0.36.3 [2024-09-25]
  265. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  266. - The option ``second_transparent_bg`` has been removed and replaced by :opt:`transparent_background_colors` which allows setting up to seven additional colors that will be transparent, with individual opacities per color (:iss:`7646`)
  267. - Fix a regression in the previous release that broke use of the ``cd`` command in session files (:iss:`7829`)
  268. - macOS: Fix shortcuts that become entries in the global menubar being reported as removed shortcuts in the debug output
  269. - macOS: Fix :opt:`macos_option_as_alt` not working when :kbd:`caps lock` is engaged (:iss:`7836`)
  270. - Fix a regression when tinting of background images was introduced that caused window borders to have :opt:`background_opacity` applied to them (:iss:`7850`)
  271. - Fix a regression that broke writing to the clipboard using the OSC 5522 protocol (:iss:`7858`)
  272. - macOS: Fix a regression in the previous release that caused kitty to fail to run after an unclean shutdown/crash when using --single-instance (:iss:`7846`)
  273. - kitten @ ls: Fix the ``--self`` flag not working (:iss:`7864`)
  274. - Remote control: Fix ``--match state:self`` not working (:disc:`7886`)
  275. - Splits layout: Allow setting the ``split_axis`` option to ``auto`` so that all new windows have their split axis chosen automatically unless explicitly specified in the launch command (:iss:`7887`)
  276. 0.36.2 [2024-09-06]
  277. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  278. - Linux: Fix a regression in 0.36.0 that caused font features defined via fontconfig to be ignored (:iss:`7773`)
  279. - :ac:`goto_tab`: Allow numbers less than ``-1`` to go to the Nth previously active tab
  280. - Wayland: Fix for upcoming explicit sync changes in Wayland compositors breaking kitty (:iss:`7767`)
  281. - Remote control: When listening on a UNIX domain socket only allow connections from processes having the same user id (:pull:`7777`)
  282. - kitten @: Fix a regression connecting to TCP sockets using plain IP addresses rather than hostnames (:iss:`7794`)
  283. - diff kitten: Fix a regression that broke diffing against remote files (:iss:`7797`)
  284. 0.36.1 [2024-08-24]
  285. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  286. - Allow specifying that the :opt:`cursor shape for unfocused windows <cursor_shape_unfocused>` should remain unchanged (:pull:`7728`)
  287. - MacOS Intel: Fix a crash in the choose-fonts kitten when displaying previews of variable fonts (:iss:`7734`)
  288. - Remote control: Fix a regression causing an escape code to leak when using @ launch with ``--no-response`` over the TTY (:iss:`7752`)
  289. - OSC 52: Fix a regression in the previous release that broke handling of invalid base64 encoded data in OSC 52 requests (:iss:`7757`)
  290. - macOS: Fix a regression in the previous release that caused :option:`kitty --single-instance` to not work when using :file:`macos-launch-services-cmdline`
  291. 0.36.0 [2024-08-17]
  292. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  293. - Support `OpenType Variable fonts <https://en.wikipedia.org/wiki/Variable_font>`__ (:iss:`3711`)
  294. - A new :doc:`choose-fonts </kittens/choose-fonts>` kitten that provides a UI with font previews to ease selection of fonts. Also has support for font features and variable fonts
  295. - Allow animating the blinking of the cursor. See :opt:`cursor_blink_interval` for how to configure it
  296. - Add NERD fonts builtin so that users don't have to install them to use NERD symbols in kitty. The builtin font is used only if the symbols are not available in some system font
  297. - launch command: A new :option:`launch --bias` option to adjust the size of newly created windows declaratively (:iss:`7634`)
  298. - A new option :opt:`transparent_background_colors` to make a second background color semi-transparent via :opt:`background_opacity`. Useful for things like cursor line highlight in editors (:iss:`7646`)
  299. - A new :doc:`notify </kittens/notify>` kitten to show desktop notifications
  300. from the command line with support for icons, buttons and more.
  301. - Desktop notifications protocol: Add support for icons, buttons, closing of notifications, expiry of notifications, updating of notifications and querying if the terminal emulator supports the protocol (:iss:`7657`, :iss:`7658`, :iss:`7659`)
  302. - A new option :opt:`filter_notification` to filter out or perform arbitrary actions on desktop notifications based on sophisticated criteria (:iss:`7670`)
  303. - A new protocol to allow terminal applications to change colors in the terminal more robustly than with the legacy XTerm protocol (:ref:`color_control`)
  304. - Sessions: A new command ``focus_matching_window`` to shift focus to a specific window, useful when creating complex layouts with splits (:disc:`7635`)
  305. - Speed up loading of large background images by caching the decoded image data. Also allow using images in JPEG/WEBP/TIFF/GIF/BMP formats in addition to PNG
  306. - Wayland: Allow fractional scales less than one (:pull:`7549`)
  307. - Wayland: Fix specifying the output name for the panel kitten not working (:iss:`7573`)
  308. - icat kitten: Add an option :option:`kitty +kitten icat --no-trailing-newline` to leave the cursor to the right of the image (:iss:`7574`)
  309. - Speed up ``kitty --version`` and ``kitty --single-instance`` (for all subsequent instances). They are now the fastest of all terminal emulators with similar functionality
  310. - macOS: Fix rendering of the unicode hyphen (U+2010) character when using a font that does not include a glyph for it (:iss:`7525`)
  311. - macOS 15: Handle Fn modifier when detecting global shortcuts (:iss:`7582`)
  312. - Dispatch any clicks waiting for :opt:`click_interval` on key events (:iss:`7601`)
  313. - ``kitten run-shell``: Automatically add the directory containing the kitten binary to PATH if needed. Controlled via the ``--inject-self-onto-path`` option (`disc`:7668`)
  314. - Wayland: Fix an issue with mouse selections not being stopped when there are multiple OS windows (:iss:`7381`)
  315. - Splits layout: Fix the ``move_to_screen_edge`` action breaking when only a single window is present (:iss:`7621`)
  316. - Add support for in-band window resize notifications (:iss:`7642`)
  317. - Allow controlling the easing curves used for :opt:`visual_bell_duration`
  318. - New special rendering for font symbols useful in drawing commit graphs (:pull:`7681`)
  319. - diff kitten: Add bindings to jump to next and previous file (:pull:`7683`)
  320. - Wayland GNOME: Fix the font size in the OS Window title bar changing with the size of the text in the window (:disc:`7677`)
  321. - Wayland GNOME: Fix a small rendering artifact when docking a window at a screen edge or maximizing it (:iss:`7701`)
  322. - When :opt:`shell` is set to ``.`` respect the SHELL environment variable in the environment in which kitty is launched (:pull:`7714`)
  323. - macOS: Bump the minimum required macOS version to Catalina released five years ago.
  324. - Fix a regression in :opt:`notify_on_cmd_finish` that caused notifications to appear for every command after the first (:iss:`7725`)
  325. 0.35.2 [2024-06-22]
  326. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  327. - A new option, :opt:`window_logo_scale` to specify how window logos are scaled with respect to the size of the window containing the logo (:pull:`7534`)
  328. - A new option, :opt:`cursor_shape_unfocused` to specify the shape of the text cursor in unfocused OS windows (:pull:`7544`)
  329. - Remote control: Fix empty password not working (:iss:`7538`)
  330. - Wayland: Fix regression in 0.34.0 causing flickering on window resize on NVIDIA drivers (:iss:`7493`)
  331. - Wayland labwc: Fix kitty timing out waiting for compositor to quit fucking around with scales on labwc (:iss:`7540`)
  332. - Fix :opt:`scrollback_indicator_opacity` not actually controlling the opacity (:iss:`7557`)
  333. - URL detection: Fix IPv6 hostnames breaking URL detection (:iss:`7565`)
  334. 0.35.1 [2024-05-31]
  335. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  336. - Wayland: Fix a regression in 0.34 that caused the tab bar to not render in second and subsequent OS Windows under Hyprland (:iss:`7413`)
  337. - Fix a regression in the previous release that caused horizontal scrolling via touchpad in fullscreen applications to be reversed on non-Wayland platforms (:iss:`7475`, :iss:`7481`)
  338. - Fix a regression in the previous release causing an error when setting background_opacity to zero (:iss:`7483`)
  339. - Image display: Fix cursor movement and image hit region incorrect for image placements that specify only a number of rows or columns to display in (:iss:`7479`)
  340. 0.35.0 [2024-05-25]
  341. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  342. - kitten @ run: A new remote control command to run a process on the machine kitty is running on and get its output (:iss:`7429`)
  343. - :opt:`notify_on_cmd_finish`: Show the actual command that was finished (:iss:`7420`)
  344. - hints kitten: Allow clicking on matched text to select it in addition to typing the hint
  345. - Shell integration: Make the currently executing cmdline available as a window variable in kitty
  346. - :opt:`paste_actions`: Fix ``replace-newline`` not working with ``confirm`` (:iss:`7374`)
  347. - Graphics: Fix aspect ratio of images not being preserved when only a single
  348. dimension of the destination rectangle is specified (:iss:`7380`)
  349. - :ac:`focus_visible_window`: Fix selecting with mouse click leaving keyboard in unusable state (:iss:`7390`)
  350. - Wayland: Fix infinite loop causing bad performance when using IME via fcitx5 due to a change in fcitx5 (:iss:`7396`)
  351. - Desktop notifications protocol: Add support for specifying urgency
  352. - Improve rendering of Unicode shade character to avoid Moire patterns (:pull:`7401`)
  353. - kitten @ send-key: Fix some keys being sent in kitty keyboard protocol encoding when not using socket for remote control
  354. - Dont clear selections on erase in screen commands unless the erased region intersects a selection (:iss:`7408`)
  355. - Wayland: save energy by not rendering "suspended" windows on compositors that support that
  356. - Allow more types of alignment for :opt:`placement_strategy` (:pull:`7419`)
  357. - Add some more box-drawing characters from the "Geometric shapes" Unicode block (:iss:`7433`)
  358. - Linux: Run all child processes in their own systemd scope to prevent the OOM killer from harvesting kitty when a child process misbehaves (:iss:`7427`)
  359. - Mouse reporting: Fix horizontal scroll events inverted (:iss:`7439`)
  360. - Remote control: @ action: Fix some actions being performed on the active window instead of the matched window (:iss:`7438`)
  361. - Scrolling with mouse wheel when a selection is active should update the selection (:iss:`7453`)
  362. - Fix kitten @ set-background-opacity limited to min opacity of 0.1 instead of 0 (:iss:`7463`)
  363. - launch --hold: Fix hold not working if kernel signals process group with SIGINT (:iss:`7466`)
  364. - macOS: Fix --start-as=fullscreen not working when another window is already fullscreen (:iss:`7448`)
  365. - Add option :option:`kitten @ detach-window --stay-in-tab` to keep focus in the currently active tab when moving windows (:iss:`7468`)
  366. - macOS: Fix changing window chrome/colors while in traditional fullscreen causing the titlebar to become visible (:iss:`7469`)
  367. 0.34.1 [2024-04-19]
  368. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  369. - Wayland KDE: Fix window background blur not adapting when window is grown. Also fix turning it on and off not working. (:iss:`7351`)
  370. - Wayland GNOME: Draw the titlebar buttons without using a font (:iss:`7349`)
  371. - Fix a regression in the previous release that caused incorrect font selection when using variable fonts on Linux (:iss:`7361`)
  372. 0.34.0 [2024-04-15]
  373. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  374. - Wayland: :doc:`panel kitten <kittens/panel>`: Add support for drawing desktop background and bars
  375. using the panel kitten for all compositors that support the `requisite Wayland
  376. protocol <https://wayland.app/protocols/wlr-layer-shell-unstable-v1>`__ which is practically speaking all of them but GNOME (:pull:`2590`)
  377. - Show a small :opt:`scrollback indicator <scrollback_indicator_opacity>` along the right window edge when viewing
  378. the scrollback to keep track of scroll position (:iss:`2502`)
  379. - Wayland: Support fractional scales so that there is no wasted drawing at larger scale followed by resizing in the compositor
  380. - Wayland KDE: Support :opt:`background_blur`
  381. - Wayland GNOME: The window titlebar now has buttons to minimize/maximize/close the window
  382. - Wayland GNOME: The window titlebar color now follows the system light/dark color scheme preference, see :opt:`wayland_titlebar_color`
  383. - Wayland KDE: Fix mouse cursor hiding not working in Plasma 6 (:iss:`7265`)
  384. - Wayland IME: Fix a bug with handling synthetic keypresses generated by ZMK keyboard + fcitx (:pull:`7283`)
  385. - A new option :opt:`terminfo_type` to allow passing the terminfo database embedded into the :envvar:`TERMINFO` env var directly instead of via a file
  386. - Mouse reporting: Fix drag release event outside the window not being reported in legacy mouse reporting modes (:iss:`7244`)
  387. - macOS: Fix a regression in the previous release that broke rendering of some symbols on some systems (:iss:`7249`)
  388. - Fix handling of tab character when cursor is at end of line and wrapping is enabled (:iss:`7250`)
  389. - Splits layout: Fix :ac:`move_window_forward` not working (:iss:`7264`)
  390. - macOS: Fix an abort due to an assertion when a program tries to set an invalid window title (:iss:`7271`)
  391. - fish shell integration: Fix clicking at the prompt causing autosuggestions to be accepted, needs fish >= 3.8.0 (:iss:`7168`)
  392. - Linux: Fix for a regression in 0.32.0 that caused some CJK fonts to not render glyphs (:iss:`7263`)
  393. - Wayland: Support preferred integer scales
  394. - Wayland: A new option :opt:`wayland_enable_ime` to turn off Input Method Extensions which add latency and create bugs
  395. - Wayland: Fix :opt:`hide_window_decorations` not working on non GNOME desktops
  396. - When asking for quit confirmation because of a running program, mention the program name (:iss:`7331`)
  397. - Fix flickering of prompt during window resize (:iss:`7324`)
  398. 0.33.1 [2024-03-21]
  399. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  400. - Fix a regression in the previous release that caused requesting data from the clipboard via OSC 52 to instead return data from the primary selection (:iss:`7213`)
  401. - Splits layout: Allow resizing until one of the halves in a split is minimally sized (:iss:`7220`)
  402. - macOS: Fix text rendered with fallback fonts not respecting bold/italic styling (:disc:`7241`)
  403. - macOS: When CoreText fails to find a fallback font for a character in the first Private Use Unicode Area, preferentially use the NERD font, if available, for it (:iss:`6043`)
  404. 0.33.0 [2024-03-12]
  405. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  406. - :ref:`Cheetah speed <throughput>` with a redesigned render loop and a 2x faster escape code
  407. parser that uses SIMD CPU vector instruction to parse data in parallel
  408. (:iss:`7005`)
  409. - A new benchmark kitten (``kitten __benchmark__``) to measure terminal
  410. throughput performance
  411. - Graphics protocol: Add a new delete mode for deleting images whose ids fall within a range. Useful for bulk deletion (:iss:`7080`)
  412. - Keyboard protocol: Fix the :kbd:`Enter`, :kbd:`Tab` and :kbd:`Backspace` keys
  413. generating spurious release events even when report all keys as escape codes
  414. is not set (:iss:`7136`)
  415. - macOS: The command line args from :file:`macos-launch-services-cmdline` are now
  416. prefixed to any args from ``open --args`` rather than overwriting them (:iss:`7135`)
  417. - Allow specifying where the new tab is created for :ac:`detach_window` (:pull:`7134`)
  418. - hints kitten: The option to set the text color for hints now allows arbitrary
  419. colors (:pull:`7150`)
  420. - icat kitten: Add a command line argument to override terminal window size detection (:iss:`7165`)
  421. - A new action :ac:`toggle_tab` to easily switch to and back from a tab with a single shortcut (:iss:`7203`)
  422. - When :ac:`clearing terminal <clear_terminal>` add a new type ``to_cursor_scroll`` which can be
  423. used to clear to prompt while moving cleared lines into the scrollback
  424. - Fix a performance bottleneck when dealing with thousands of small images
  425. (:iss:`7080`)
  426. - kitten @ ls: Return the timestamp at which the window was created (:iss:`7178`)
  427. - hints kitten: Use default editor rather than hardcoding vim to open file at specific line (:iss:`7186`)
  428. - Remote control: Fix ``--match`` argument not working for @ls, @send-key,
  429. @set-background-image (:iss:`7192`)
  430. - Keyboard protocol: Do not deliver a fake key release events on OS window focus out for engaged modifiers (:iss:`7196`)
  431. - Ignore :opt:`startup_session` when kitty is invoked with command line options specifying a command to run (:pull:`7198`)
  432. - Box drawing: Specialize rendering for the Fira Code progress bar/spinner glyphs
  433. 0.32.2 [2024-02-12]
  434. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  435. - kitten @ load-config: Allow (re)loading kitty.conf via remote control
  436. - Remote control: Allow running mappable actions via remote control (`kitten @ action`)
  437. - kitten @ send-text: Add a new option to automatically wrap the sent text in
  438. bracketed paste escape codes if the program in the destination window has
  439. turned on bracketed paste.
  440. - Fix a single key mapping not overriding a previously defined multi-key mapping
  441. - macOS: Fix :code:`kitten @ select-window` leaving the keyboard in a partially functional state (:iss:`7074`)
  442. - Graphics protocol: Improve display of images using Unicode placeholders or
  443. row/column boxes by resizing them using linear instead of nearest neighbor
  444. interpolation on the GPU (:iss:`7070`)
  445. - When matching URLs use the definition of legal characters in URLs from the
  446. `WHATWG spec <https://url.spec.whatwg.org/#url-code-points>`__ rather than older standards (:iss:`7095`)
  447. - hints kitten: Respect the kitty :opt:`url_excluded_characters` option
  448. (:iss:`7075`)
  449. - macOS: Fix an abort when changing OS window chrome for a full screen window via remote control or the themes kitten (:iss:`7106`)
  450. - Special case rendering of some more box drawing characters using shades from the block of symbols for legacy computing (:iss:`7110`)
  451. - A new action :ac:`close_other_os_windows` to close non active OS windows (:disc:`7113`)
  452. 0.32.1 [2024-01-26]
  453. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  454. - macOS: Fix a regression in the previous release that broke overriding keyboard shortcuts for actions present in the global menu bar (:iss:`7016`)
  455. - Fix a regression in the previous release that caused multi-key sequences to not abort when pressing an unknown key (:iss:`7022`)
  456. - Fix a regression in the previous release that caused `kitten @ launch --cwd=current` to fail over SSH (:iss:`7028`)
  457. - Fix a regression in the previous release that caused `kitten @ send-text` with a match tab parameter to send text twice to the active window (:iss:`7027`)
  458. - Fix a regression in the previous release that caused overriding of existing multi-key mappings to fail (:iss:`7044`, :iss:`7058`)
  459. - Wayland+NVIDIA: Do not request an sRGB output buffer as a bug in Wayland causes kitty to not start (:iss:`7021`)
  460. 0.32.0 [2024-01-19]
  461. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  462. - :ref:`conditional_mappings`
  463. - Support for :ref:`modal_mappings` such as in modal editors like vim
  464. - A new option :opt:`notify_on_cmd_finish` to show a desktop notification when a long running command finishes (:pull:`6817`)
  465. - A new action :ac:`send_key` to simplify mapping key presses to other keys without needing :ac:`send_text`
  466. - Allow focusing previously active OS windows via :ac:`nth_os_window` (:pull:`7009`)
  467. - Wayland: Fix a regression in the previous release that broke copying to clipboard under wl-roots based compositors in some circumstances
  468. (:iss:`6890`)
  469. - macOS: Fix some combining characters not being rendered (:iss:`6898`)
  470. - macOS: Fix returning from full screen via the button when the titlebar is hidden not hiding the buttons (:iss:`6883`)
  471. - macOS: Fix newly created OS windows not always appearing on the "active" monitor (:pull:`6932`)
  472. - Font fallback: Fix the font used to render a character sometimes dependent on the order in which characters appear on screen (:iss:`6865`)
  473. - panel kitten: Fix rendering with non-zero margin/padding in kitty.conf (:iss:`6923`)
  474. - kitty keyboard protocol: Specify the behavior of the modifier bits during modifier key events (:iss:`6913`)
  475. - Wayland: Enable support for the new cursor-shape protocol so that the mouse cursor is always rendered at the correct size in compositors that support this protocol (:iss:`6914`)
  476. - GNOME Wayland: Fix remembered window size smaller than actual size (:iss:`6946`)
  477. - Mouse reporting: Fix incorrect position reported for windows with padding (:iss:`6950`)
  478. - Fix :ac:`focus_visible_window` not switching to other window in stack layout
  479. when only two windows are present (:iss:`6970`)
  480. 0.31.0 [2023-11-08]
  481. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  482. - Allow :ac:`easily running arbitrarily complex remote control scripts <remote_control_script>` without needing to turn on remote control (:iss:`6712`)
  483. - A new option :opt:`menu_map` that allows adding entries to the global menubar on macOS (:disc:`6680`)
  484. - A new :doc:`escape code <pointer-shapes>` that can be used by programs running in the terminal to change the shape of the mouse pointer (:iss:`6711`)
  485. - Graphics protocol: Support for positioning :ref:`images relative to other images <relative_image_placement>` (:iss:`6400`)
  486. - A new option :opt:`single_window_padding_width` to use a different padding when only a single window is visible (:iss:`6734`)
  487. - A new mouse action ``mouse_selection word_and_line_from_point`` to select the current word under the mouse cursor and extend to end of line (:pull:`6663`)
  488. - A new option :opt:`underline_hyperlinks` to control when hyperlinks are underlined (:iss:`6766`)
  489. - Allow using the full range of standard mouse cursor shapes when customizing the mouse cursor
  490. - macOS: When running the default shell with the login program fix :file:`~/.hushlogin` not being respected when opening windows not in the home directory (:iss:`6689`)
  491. - macOS: Fix poor performance when using ligatures with some fonts, caused by slow harfbuzz shaping (:iss:`6743`)
  492. - :option:`kitten @ set-background-opacity --toggle` - a new flag to easily switch opacity between the specified value and the default (:iss:`6691`)
  493. - Fix a regression caused by rewrite of kittens to Go that made various kittens reset colors in a terminal when the colors were changed by escape code (:iss:`6708`)
  494. - Fix trailing bracket not ignored when detecting a multi-line URL with the trailing bracket as the first character on the last line (:iss:`6710`)
  495. - Fix the :option:`kitten @ launch --copy-env` option not copying current environment variables (:iss:`6724`)
  496. - Fix a regression that broke :program:`kitten update-self` (:iss:`6729`)
  497. - Two new event types for :ref:`watchers <watchers>`, :code:`on_title_change` and :code:`on_set_user_var`
  498. - When pasting, if the text contains terminal control codes ask the user for permission. See :opt:`paste_actions` for details. Thanks to David Leadbeater for discovering this.
  499. - Render Private Use Unicode symbols using two cells if the second cell contains an en-space as well as a normal space
  500. - macOS: Fix a regression in the previous release that caused kitten @ ls to not report the environment variables for the default shell (:iss:`6749`)
  501. - :doc:`Desktop notification protocol </desktop-notifications>`: Allow applications sending notifications to specify that the notification should only be displayed if the window is currently unfocused (:iss:`6755`)
  502. - :doc:`unicode_input kitten </kittens/unicode_input>`: Fix a regression that broke the "Emoticons" tab (:iss:`6760`)
  503. - Shell integration: Fix ``sudo --edit`` not working and also fix completions for sudo not working in zsh (:iss:`6754`, :iss:`6771`)
  504. - A new action :ac:`set_window_title` to interactively change the title of the active window
  505. - ssh kitten: Fix a regression that broken :kbd:`ctrl+space` mapping in zsh (:iss:`6780`)
  506. - Wayland: Fix primary selections not working with the river compositor (:iss:`6785`)
  507. 0.30.1 [2023-10-05]
  508. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  509. - Shell integration: Automatically alias sudo to make the kitty terminfo files available in the sudo environment. Can be turned off via :opt:`shell_integration`
  510. - ssh kitten: Fix a regression in 0.28.0 that caused using ``--kitten`` to
  511. override :file:`ssh.conf` not inheriting settings from :file:`ssh.conf`
  512. (:iss:`6639`)
  513. - themes kitten: Allow absolute paths for ``--config-file-name`` (:iss:`6638`)
  514. - Expand environment variables in the :opt:`shell` option (:iss:`6511`)
  515. - macOS: When running the default shell, run it via the login program so that calls to ``getlogin()`` work (:iss:`6511`)
  516. - X11: Fix a crash on startup when the ibus service returns errors and the GLFW_IM_MODULE env var is set to ibus (:iss:`6650`)
  517. 0.30.0 [2023-09-18]
  518. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  519. - A new :doc:`transfer kitten </kittens/transfer>` that can be used to transfer files efficiently over the TTY device
  520. - ssh kitten: A new configuration directive :opt:`to automatically forward the kitty remote control socket <kitten-ssh.forward_remote_control>`
  521. - Allow :doc:`easily building kitty from source </build>` needing the installation of only C and Go compilers.
  522. All other dependencies are automatically vendored
  523. - kitten @ set-user-vars: New remote control command to set user variables on a
  524. window (:iss:`6502`)
  525. - kitten @ ls: Add user variables set on windows to the output (:iss:`6502`)
  526. - kitten @ ls: Allow limiting output to matched windows/tabs (:iss:`6520`)
  527. - kitten icat: Fix image being displayed one cell to the right when using both ``--place`` and ``--unicode-placeholder`` (:iss:`6556`)
  528. - kitten run-shell: Make kitty terminfo database available if needed before starting the shell
  529. - macOS: Fix keyboard shortcuts in the Apple global menubar not being changed when reloading the config
  530. - Fix a crash when resizing an OS Window that is displaying more than one image and the new size is smaller than the image needs (:iss:`6555`)
  531. - Remote control: Allow using a random TCP port as the remote control socket and also allow using TCP sockets in :opt:`listen_on`
  532. - unicode_input kitten: Add an option to specify the startup tab (:iss:`6552`)
  533. - X11: Print an error to :file:`STDERR` instead of refusing to start when the user sets a custom window icon larger than 128x128 (:iss:`6507`)
  534. - Remote control: Allow matching by neighbor of active window. Useful for navigation plugins like vim-kitty-navigator
  535. - Fix a regression that caused changing :opt:`text_fg_override_threshold` or :opt:`text_composition_strategy` via config reload causing incorrect rendering (:iss:`6559`)
  536. - When running a shell for ``--hold`` set the env variable ``KITTY_HOLD=1`` to allow users to customize what happens (:disc:`6587`)
  537. - When multiple confirmable close requests are made focus the existing close confirmation window instead of opening a new one for each request (:iss:`6601`)
  538. - Config file format: allow splitting lines by starting subsequent lines with a backslash (:pull:`6603`)
  539. - ssh kitten: Fix a regression causing hostname directives in :file:`ssh.conf` not matching when username is specified (:disc:`6609`)
  540. - diff kitten: Add support for files that are identical apart from mode changes (:iss:`6611`)
  541. - Wayland: Do not request idle inhibition for full screen windows (:iss:`6613`)
  542. - Adjust the workaround for non-linear blending of transparent pixels in
  543. compositors to hopefully further reduce fringing around text with certain
  544. color issues (:iss:`6534`)
  545. 0.29.2 [2023-07-27]
  546. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  547. - macOS: Fix a performance regression on M1 machines using outdated macOS versions (:iss:`6479`)
  548. - macOS: Disable OS window shadows for transparent windows as they cause rendering artifacts due to Cocoa bugs (:iss:`6439`)
  549. - Detect .tex and Makefiles as plain text files (:iss:`6492`)
  550. - unicode_input kitten: Fix scrolling over multiple screens not working (:iss:`6497`)
  551. 0.29.1 [2023-07-17]
  552. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  553. - A new value for :opt:`background_image_layout` to scale the background image while preserving its aspect ratio. Also have centered images work even for images larger than the window size (:pull:`6458`)
  554. - Fix a regression that caused using unicode placeholders to display images to break and also partially offscreen images to sometimes be slightly distorted (:iss:`6467`)
  555. - macOS: Fix a regression that caused rendering to hang when transitioning to full screen with :opt:`macos_colorspace` set to ``default`` (:iss:`6435`)
  556. - macOS: Fix a regression causing *burn-in* of text when resizing semi-transparent OS windows (:iss:`6439`)
  557. - macOS: Add a new value ``titlebar-and-corners`` for :opt:`hide_window_decorations` that emulates the behavior of ``hide_window_decorations yes`` in older versions of kitty
  558. - macOS: Fix a regression in the previous release that caused :opt:`hide_window_decorations` = ``yes`` to prevent window from being resizable (:iss:`6436`)
  559. - macOS: Fix a regression that caused the titlebar to be translucent even for non-translucent windows (:iss:`6450`)
  560. - GNOME: Fix :opt:`wayland_titlebar_color` not being applied until the color is changed at least once (:iss:`6447`)
  561. - Remote control launch: Fix ``--env`` not implemented when using ``--cwd=current`` with the SSH kitten (:iss:`6438`)
  562. - Allow using a custom OS window icon on X11 as well as macOS (:pull:`6475`)
  563. 0.29.0 [2023-07-10]
  564. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  565. - A new escape code ``<ESC>[22J`` that moves the current contents of the screen into the scrollback before clearing it
  566. - A new kitten :ref:`run-shell <run_shell>` to allow creating sub-shells with shell integration enabled
  567. - A new option :opt:`background_blur` to blur the background for transparent windows (:pull:`6135`)
  568. - The :option:`--hold` flag now holds the window open at a shell prompt instead of asking the user to press a key
  569. - A new option :opt:`text_fg_override_threshold` to force text colors to have high contrast regardless of color scheme (:pull:`6283`)
  570. - When resizing OS Windows make the animation less jerky. Also show the window size in cells during the resize (:iss:`6341`)
  571. - unicode_input kitten: Fix a regression in 0.28.0 that caused the order of recent and favorites entries to not be respected (:iss:`6214`)
  572. - unicode_input kitten: Fix a regression in 0.28.0 that caused editing of favorites to sometimes hang
  573. - clipboard kitten: Fix a bug causing the last MIME type available on the clipboard not being recognized when pasting
  574. - clipboard kitten: Dont set clipboard when getting clipboard in filter mode (:iss:`6302`)
  575. - Fix regression in 0.28.0 causing color fringing when rendering in transparent windows on light backgrounds (:iss:`6209`)
  576. - show_key kitten: In kitty mode show the actual bytes sent by the terminal rather than a re-encoding of the parsed key event
  577. - hints kitten: Fix a regression in 0.28.0 that broke using sub-groups in regexp captures (:iss:`6228`)
  578. - hints kitten: Fix a regression in 0.28.0 that broke using lookahead/lookbehind in regexp captures (:iss:`6265`)
  579. - diff kitten: Fix a regression in 0.28.0 that broke using relative paths as arguments to the kitten (:iss:`6325`)
  580. - Fix re-using the image id of an animated image for a still image causing a crash (:iss:`6244`)
  581. - kitty +open: Ask for permission before executing script files that are not marked as executable. This prevents accidental execution
  582. of script files via MIME type association from programs that unconditionally "open" attachments/downloaded files
  583. - edit-in-kitty: Fix running edit-in-kitty with elevated privileges to edit a restricted file not working (:disc:`6245`)
  584. - ssh kitten: Fix a regression in 0.28.0 that caused interrupt during setup to not be handled gracefully (:iss:`6254`)
  585. - ssh kitten: Allow configuring the ssh kitten to skip some hosts via a new ``delegate`` config directive
  586. - Graphics: Move images up along with text when the window is shrunk vertically (:iss:`6278`)
  587. - Fix a regression in 0.28.0 that caused a buffer overflow when clearing the screen (:iss:`6306`, :pull:`6308`)
  588. - Fix a regression in 0.27.0 that broke setting of specific edge padding/margin via remote control (:iss:`6333`)
  589. - macOS: Fix window shadows not being drawn for transparent windows (:iss:`2827`, :pull:`6416`)
  590. - Do not echo invalid DECRQSS queries back, behavior inherited from xterm (CVE-2008-2383). Similarly, fix an echo
  591. bug in the file transfer protocol due to insufficient sanitization of safe strings.
  592. 0.28.1 [2023-04-21]
  593. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  594. - Fix a regression in the previous release that broke the remote file kitten (:iss:`6186`)
  595. - Fix a regression in the previous release that broke handling of some keyboard shortcuts in some kittens on some keyboard layouts (:iss:`6189`)
  596. - Fix a regression in the previous release that broke usage of custom themes (:iss:`6191`)
  597. 0.28.0 [2023-04-15]
  598. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  599. - **Text rendering change**: Use sRGB correct linear gamma blending for nicer font
  600. rendering and better color accuracy with transparent windows.
  601. See the option :opt:`text_composition_strategy` for details.
  602. The obsolete :opt:`macos_thicken_font` will make the font too thick and needs to be removed manually
  603. if it is configured. (:pull:`5969`)
  604. - icat kitten: Support display of images inside tmux >= 3.3 (:pull:`5664`)
  605. - Graphics protocol: Add support for displaying images inside programs that do not support the protocol such as vim and tmux (:pull:`5664`)
  606. - diff kitten: Add support for selecting multi-line text with the mouse
  607. - Fix a regression in 0.27.0 that broke ``kitty @ set-font-size 0`` (:iss:`5992`)
  608. - launch: When using ``--cwd=current`` for a remote system support running non shell commands as well (:disc:`5987`)
  609. - When changing the cursor color via escape codes or remote control to a fixed color, do not reset cursor_text_color (:iss:`5994`)
  610. - Input Method Extensions: Fix incorrect rendering of IME in-progress and committed text in some situations (:pull:`6049`, :pull:`6087`)
  611. - Linux: Reduce minimum required OpenGL version from 3.3 to 3.1 + extensions (:iss:`2790`)
  612. - Fix a regression that broke drawing of images below cell backgrounds (:iss:`6061`)
  613. - macOS: Fix the window buttons not being hidden after exiting the traditional full screen (:iss:`6009`)
  614. - When reloading configuration, also reload custom MIME types from :file:`mime.types` config file (:pull:`6012`)
  615. - launch: Allow specifying the state (full screen/maximized/minimized) for newly created OS Windows (:iss:`6026`)
  616. - Sessions: Allow specifying the OS window state via the ``os_window_state`` directive (:iss:`5863`)
  617. - macOS: Display the newly created OS window in specified state to avoid or reduce the window transition animations (:pull:`6035`)
  618. - macOS: Fix the maximized window not taking up full space when the title bar is hidden or when :opt:`resize_in_steps` is configured (:iss:`6021`)
  619. - Linux: A new option :opt:`linux_bell_theme` to control which sound theme is used for the bell sound (:pull:`4858`)
  620. - ssh kitten: Change the syntax of glob patterns slightly to match common usage
  621. elsewhere. Now the syntax is the same as "extendedglob" in most shells.
  622. - hints kitten: Allow copying matches to named buffers (:disc:`6073`)
  623. - Fix overlay windows not inheriting the per-window padding and margin settings
  624. of their parents (:iss:`6063`)
  625. - Wayland KDE: Fix selecting in un-focused OS window not working correctly (:iss:`6095`)
  626. - Linux X11: Fix a crash if the X server requests clipboard data after we have relinquished the clipboard (:iss:`5650`)
  627. - Allow stopping of URL detection at newlines via :opt:`url_excluded_characters` (:iss:`6122`)
  628. - Linux Wayland: Fix animated images not being animated continuously (:iss:`6126`)
  629. - Keyboard input: Fix text not being reported as unicode codepoints for multi-byte characters in the kitty keyboard protocol (:iss:`6167`)
  630. 0.27.1 [2023-02-07]
  631. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  632. - Fix :opt:`modify_font` not working for strikethrough position (:iss:`5946`)
  633. - Fix a regression causing the ``edit-in-kitty`` command not working if :file:`kitten` is not added
  634. to PATH (:iss:`5956`)
  635. - icat kitten: Fix a regression that broke display of animated GIFs over SSH (:iss:`5958`)
  636. - Wayland GNOME: Fix for ibus not working when using XWayland (:iss:`5967`)
  637. - Fix regression in previous release that caused incorrect entries in terminfo for modifier+F3 key combinations (:pull:`5970`)
  638. - Bring back the deprecated and removed ``kitty +complete`` and delegate it to :program:`kitten` for backward compatibility (:pull:`5977`)
  639. - Bump the version of Go needed to build kitty to ``1.20`` so we can use the Go stdlib ecdh package for crypto.
  640. 0.27.0 [2023-01-31]
  641. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  642. - A new statically compiled, standalone executable, ``kitten`` (written in Go)
  643. that can be used on all UNIX-like servers for remote control (``kitten @``),
  644. viewing images (``kitten icat``), manipulating the clipboard (``kitten clipboard``), etc.
  645. - :doc:`clipboard kitten </kittens/clipboard>`: Allow copying arbitrary data types to/from the clipboard, not just plain text
  646. - Speed up the ``kitty @`` executable by ~10x reducing the time for typical
  647. remote control commands from ~50ms to ~5ms
  648. - icat kitten: Speed up by using POSIX shared memory when possible to transfer
  649. image data to the terminal. Also support common image formats
  650. GIF/PNG/JPEG/WEBP/TIFF/BMP out of the box without needing ImageMagick.
  651. - Option :opt:`show_hyperlink_targets` to show the target of terminal hyperlinks when hovering over them with the mouse (:pull:`5830`)
  652. - Keyboard protocol: Remove ``CSI R`` from the allowed encodings of the :kbd:`F3` key as it conflicts with the *Cursor Position Report* escape code (:disc:`5813`)
  653. - Allow using the cwd of the original process for :option:`launch --cwd` (:iss:`5672`)
  654. - Session files: Expand environment variables (:disc:`5917`)
  655. - Pass key events mapped to scroll actions to the program running in the terminal when the terminal is in alternate screen mode (:iss:`5839`)
  656. - Implement :ref:`edit-in-kitty <edit_file>` using the new ``kitten`` static executable (:iss:`5546`, :iss:`5630`)
  657. - Add an option :opt:`background_tint_gaps` to control background image tinting for window gaps (:iss:`5596`)
  658. - A new option :opt:`undercurl_style` to control the rendering of undercurls (:pull:`5883`)
  659. - Bash integration: Fix ``clone-in-kitty`` not working on bash >= 5.2 if environment variable values contain newlines or other special characters (:iss:`5629`)
  660. - A new :ac:`sleep` action useful in combine based mappings to make kitty sleep before executing the next action
  661. - Wayland GNOME: Workaround for latest mutter release breaking full screen for semi-transparent kitty windows (:iss:`5677`)
  662. - A new option :opt:`tab_title_max_length` to limit the length of tab (:iss:`5718`)
  663. - When drawing the tab bar have the default left and right margins drawn in a color matching the neighboring tab (:iss:`5719`)
  664. - When using the :code:`include` directive in :file:`kitty.conf` make the environment variable :envvar:`KITTY_OS` available for OS specific config
  665. - Wayland: Fix signal handling not working with some GPU drivers (:iss:`4636`)
  666. - Remote control: When matching windows allow using negative id numbers to match recently created windows (:iss:`5753`)
  667. - ZSH Integration: Bind :kbd:`alt+left` and :kbd:`alt+right` to move by word if not already bound. This mimics the default bindings in Terminal.app (:iss:`5793`)
  668. - macOS: Allow to customize :sc:`Hide <hide_macos_app>`, :sc:`Hide Others <hide_macos_other_apps>`, :sc:`Minimize <minimize_macos_window>`, and :sc:`Quit <quit>` global menu shortcuts. Note that :opt:`clear_all_shortcuts` will remove these shortcuts now (:iss:`948`)
  669. - When a multi-key sequence does not match any action, send all key events to the child program (:pull:`5841`)
  670. - broadcast kitten: Allow pressing a key to stop echoing of input into the broadcast window itself (:disc:`5868`)
  671. - When reporting unused activity in a window, ignore activity that occurs soon after a window resize (:iss:`5881`)
  672. - Fix using :opt:`cursor` = ``none`` not working on text that has reverse video (:iss:`5897`)
  673. - Fix ssh kitten not working on FreeBSD (:iss:`5928`)
  674. - macOS: Export kitty selected text to the system for use with services that accept it (patch by Sertaç Ö. Yıldız)
  675. 0.26.5 [2022-11-07]
  676. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  677. - Splits layout: Add a new mappable action to move the active window to the screen edge (:iss:`5643`)
  678. - ssh kitten: Allow using absolute paths for the location of transferred data (:iss:`5607`)
  679. - Fix a regression in the previous release that caused a ``resize_draw_strategy`` of ``static`` to not work (:iss:`5601`)
  680. - Wayland KDE: Fix abort when pasting into Firefox (:iss:`5603`)
  681. - Wayland GNOME: Fix ghosting when using :opt:`background_tint` (:iss:`5605`)
  682. - Fix cursor position at x=0 changing to x=1 on resize (:iss:`5635`)
  683. - Wayland GNOME: Fix incorrect window size in some circumstances when switching between windows with window decorations disabled (:iss:`4802`)
  684. - Wayland: Fix high CPU usage when using some input methods (:pull:`5369`)
  685. - Remote control: When matching window by `state:focused` and no window currently has keyboard focus, match the window belonging to the OS window that was last focused (:iss:`5602`)
  686. 0.26.4 [2022-10-17]
  687. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  688. - macOS: Allow changing the kitty icon by placing a custom icon in the kitty config folder (:pull:`5464`)
  689. - Allow centering the :opt:`background_image` (:iss:`5525`)
  690. - X11: Fix a regression in the previous release that caused pasting from GTK based applications to have extra newlines (:iss:`5528`)
  691. - Tab bar: Improve empty space management when some tabs have short titles, allocate the saved space to the active tab (:iss:`5548`)
  692. - Fix :opt:`background_tint` not applying to window margins and padding (:iss:`3933`)
  693. - Wayland: Fix background image scaling using tiled mode on high DPI screens
  694. - Wayland: Fix an abort when changing background colors with :opt:`wayland_titlebar_color` set to ``background`` (:iss:`5562`)
  695. - Update to Unicode 15.0 (:pull:`5542`)
  696. - GNOME Wayland: Fix a memory leak in gnome-shell when using client side decorations
  697. 0.26.3 [2022-09-22]
  698. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  699. - Wayland: Mark windows in which a bell occurs as urgent on compositors that support the xdg-activation protocol
  700. - Allow passing null bytes through the system clipboard (:iss:`5483`)
  701. - ssh kitten: Fix :envvar:`KITTY_PUBLIC_KEY` not being encoded properly when transmitting (:iss:`5496`)
  702. - Sessions: Allow controlling which OS Window is active via the ``focus_os_window`` directive
  703. - Wayland: Fix for bug in NVIDIA drivers that prevents transparency working (:iss:`5479`)
  704. - Wayland: Fix for a bug that could cause kitty to become non-responsive when
  705. using multiple OS windows in a single instance on some compositors (:iss:`5495`)
  706. - Wayland: Fix for a bug preventing kitty from starting on Hyprland when using a non-unit scale (:iss:`5467`)
  707. - Wayland: Generate a XDG_ACTIVATION_TOKEN when opening URLs or running programs in the background via the launch action
  708. - Fix a regression that caused kitty not to restore SIGPIPE after python nukes it when launching children. Affects bash which does not sanitize its signal mask. (:iss:`5500`)
  709. - Fix a use-after-free when handling fake mouse clicks and the action causes windows to be removed/re-allocated (:iss:`5506`)
  710. 0.26.2 [2022-09-05]
  711. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  712. - Allow creating :code:`overlay-main` windows, which are treated as the active window unlike normal overlays (:iss:`5392`)
  713. - hints kitten: Allow using :doc:`launch` as the program to run, to open the result in a new kitty tab/window/etc. (:iss:`5462`)
  714. - hyperlinked_grep kitten: Allow control over which parts of ``rg`` output are hyperlinked (:pull:`5428`)
  715. - Fix regression in 0.26.0 that caused launching kitty without working STDIO handles to result in high CPU usage and prewarming failing (:iss:`5444`)
  716. - :doc:`/launch`: Allow setting the margin and padding for newly created windows (:iss:`5463`)
  717. - macOS: Fix regression in 0.26.0 that caused asking the user for a line of input such as for :ac:`set_tab_title` to not work (:iss:`5447`)
  718. - hints kitten: hyperlink matching: Fix hints occasionally matching text on subsequent line as part of hyperlink (:pull:`5450`)
  719. - Fix a regression in 0.26.0 that broke mapping of native keys whose key codes did not fit in 21 bits (:iss:`5452`)
  720. - Wayland: Fix remembering window size not accurate when client side decorations are present
  721. - Fix an issue where notification identifiers were not sanitized leading to
  722. code execution if the user clicked on a notification popup from a malicious
  723. source. Thanks to Carter Sande for discovering this vulnerability.
  724. 0.26.1 [2022-08-30]
  725. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  726. - ssh kitten: Fix executable permission missing from kitty bootstrap script (:iss:`5438`)
  727. - Fix a regression in 0.26.0 that caused kitty to no longer set the ``LANG`` environment variable on macOS (:iss:`5439`)
  728. - Allow specifying a title when using the :ac:`set_tab_title` action (:iss:`5441`)
  729. 0.26.0 [2022-08-29]
  730. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  731. - A new option :opt:`remote_control_password` to use fine grained permissions for what can be remote controlled (:disc:`5320`)
  732. - Reduce startup latency by ~30 milliseconds when running kittens via key bindings inside kitty (:iss:`5159`)
  733. - A new option :opt:`modify_font` to adjust various font metrics like underlines, cell sizes etc. (:pull:`5265`)
  734. - A new shortcut :sc:`show_kitty_doc` to display the kitty docs in a browser
  735. - Graphics protocol: Only delete temp files if they have the string
  736. :code:`tty-graphics-protocol` in their file paths. This prevents deletion of arbitrary files in :file:`/tmp`.
  737. - Deprecate the ``adjust_baseline``, ``adjust_line_height`` and ``adjust_column_width`` options in favor of :opt:`modify_font`
  738. - Wayland: Fix a regression in the previous release that caused mouse cursor
  739. animation and keyboard repeat to stop working when switching seats (:iss:`5188`)
  740. - Allow resizing windows created in session files (:pull:`5196`)
  741. - Fix horizontal wheel events not being reported to client programs when they grab the mouse (:iss:`2819`)
  742. - macOS: Remote control: Fix unable to launch a new OS window or background process when there is no OS window (:iss:`5210`)
  743. - macOS: Fix unable to open new tab or new window when there is no OS window (:iss:`5276`)
  744. - kitty @ set-colors: Fix changing inactive_tab_foreground not working (:iss:`5214`)
  745. - macOS: Fix a regression that caused switching keyboard input using Eisu and
  746. Kana keys not working (:iss:`5232`)
  747. - Add a mappable action to toggle the mirrored setting for the tall and fat
  748. layouts (:pull:`5344`)
  749. - Add a mappable action to switch between predefined bias values for the tall and fat
  750. layouts (:pull:`5352`)
  751. - Wayland: Reduce flicker at startup by not using render frames immediately after a resize (:iss:`5235`)
  752. - Linux: Update cursor position after all key presses not just pre-edit text
  753. changes (:iss:`5241`)
  754. - ssh kitten: Allow ssh kitten to work from inside tmux, provided the tmux
  755. session inherits the correct KITTY env vars (:iss:`5227`)
  756. - ssh kitten: A new option :code:`--symlink-strategy` to control how symlinks
  757. are copied to the remote machine (:iss:`5249`)
  758. - ssh kitten: Allow pressing :kbd:`Ctrl+C` to abort ssh before the connection is
  759. completed (:iss:`5271`)
  760. - Bash integration: Fix declare not creating global variables in .bashrc (:iss:`5254`)
  761. - Bash integration: Fix the inherit_errexit option being set by shell integration (:iss:`5349`)
  762. - :command:`kitty @ scroll-window` allow scrolling by fractions of a screen
  763. (:iss:`5294`)
  764. - remote files kitten: Fix working with files whose names have characters that
  765. need to be quoted in shell scripts (:iss:`5313`)
  766. - Expand ~ in paths configured in :opt:`editor` and :opt:`exe_search_path` (:disc:`5298`)
  767. - Allow showing the working directory of the active window in tab titles
  768. (:pull:`5314`)
  769. - ssh kitten: Allow completion of ssh options between the destination and command (:iss:`5322`)
  770. - macOS: Fix speaking selected text not working (:iss:`5357`)
  771. - Allow ignoring failure to close windows/tabs via rc commands (:disc:`5406`)
  772. - Fix hyperlinks not present when fetching text from the history buffer
  773. (:iss:`5427`)
  774. 0.25.2 [2022-06-07]
  775. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  776. - A new command :command:`edit-in-kitty` to :ref:`edit_file`
  777. - Allow getting the last non-empty command output easily via an action or
  778. remote control (:pull:`4973`)
  779. - Fix a bug that caused :opt:`macos_colorspace` to always be ``default`` regardless of its actual value (:iss:`5129`)
  780. - diff kitten: A new option :opt:`kitten-diff.ignore_name` to exclude files and directories from being scanned (:pull:`5171`)
  781. - ssh kitten: Fix bash not being executed as a login shell since kitty 0.25.0 (:iss:`5130`)
  782. - macOS: When pasting text and the clipboard has a filesystem path, paste the
  783. full path instead of the text, which is sometimes just the file name (:pull:`5142`)
  784. - macOS: Allow opening executables without a file extension with kitty as well
  785. (:iss:`5160`)
  786. - Themes kitten: Add a tab to show user defined custom color themes separately
  787. (:pull:`5150`)
  788. - Iosevka: Fix incorrect rendering when there is a combining char that does not
  789. group with its neighbors (:iss:`5153`)
  790. - Weston: Fix client side decorations flickering on slow computers during
  791. window resize (:iss:`5162`)
  792. - Remote control: Fix commands with large or asynchronous payloads like
  793. :command:`kitty @ set-backround-image`, :command:`kitty @ set-window-logo`
  794. and :command:`kitty @ select-window` not working correctly
  795. when using a socket (:iss:`5165`)
  796. - hints kitten: Fix surrounding quotes/brackets and embedded carriage returns
  797. not being removed when using line number processing (:iss:`5170`)
  798. 0.25.1 [2022-05-26]
  799. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  800. - Shell integration: Add a command to :ref:`clone_shell`
  801. - Remote control: Allow using :ref:`Boolean operators <search_syntax>` when constructing queries to match windows or tabs
  802. - Sessions: Fix :code:`os_window_size` and :code:`os_window_class` not applying to the first OS Window (:iss:`4957`)
  803. - Allow using the cwd of the oldest as well as the newest foreground process for :option:`launch --cwd` (:disc:`4869`)
  804. - Bash integration: Fix the value of :opt:`shell_integration` not taking effect if the integration script is sourced in bashrc (:pull:`4964`)
  805. - Fix a regression in the previous release that caused mouse move events to be incorrectly reported as drag events even when a button is not pressed (:iss:`4992`)
  806. - remote file kitten: Integrate with the ssh kitten for improved performance
  807. and robustness. Re-uses the control master connection of the ssh kitten to
  808. avoid round-trip latency.
  809. - Fix tab selection when closing a new tab not correct in some scenarios (:iss:`4987`)
  810. - A new action :ac:`open_url` to open the specified URL (:pull:`5004`)
  811. - A new option :opt:`select_by_word_characters_forward` that allows changing
  812. which characters are considered part of a word to the right when double clicking to select
  813. words (:pull:`5103`)
  814. - macOS: Make the global menu shortcut to open kitty website configurable (:pull:`5004`)
  815. - macOS: Add the :opt:`macos_colorspace` option to control what color space colors are rendered in (:iss:`4686`)
  816. - Fix reloading of config not working when :file:`kitty.conf` does not exist when kitty is launched (:iss:`5071`)
  817. - Fix deleting images by row not calculating image bounds correctly (:iss:`5081`)
  818. - Increase the max number of combining chars per cell from two to three, without increasing memory usage.
  819. - Linux: Load libfontconfig at runtime to allow the binaries to work for
  820. running kittens on servers without FontConfig
  821. - GNOME: Fix for high CPU usage caused by GNOME's text input subsystem going
  822. into an infinite loop when IME cursor position is updated after a done event
  823. (:iss:`5105`)
  824. 0.25.0 [2022-04-11]
  825. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  826. - :doc:`kittens/ssh`: automatic shell integration when using SSH. Easily
  827. clone local shell and editor configuration on remote machines, and automatic
  828. re-use of existing connections to avoid connection setup latency.
  829. - When pasting URLs at shell prompts automatically quote them. Also allow filtering pasted text and confirm pastes. See :opt:`paste_actions` for details. (:iss:`4873`)
  830. - Change the default value of :opt:`confirm_os_window_close` to ask for confirmation when closing windows that are not sitting at shell prompts
  831. - A new value :code:`last_reported` for :option:`launch --cwd` to use the current working directory last reported by the program running in the terminal
  832. - macOS: When using Apple's less as the pager for viewing scrollback strip out OSC codes as it can't parse them (:iss:`4788`)
  833. - diff kitten: Fix incorrect rendering in rare circumstances when scrolling after changing the context size (:iss:`4831`)
  834. - icat kitten: Fix a regression that broke :option:`kitty +kitten icat --print-window-size` (:pull:`4818`)
  835. - Wayland: Fix :opt:`hide_window_decorations` causing docked windows to be resized on blur (:iss:`4797`)
  836. - Bash integration: Prevent shell integration code from running twice if user enables both automatic and manual integration
  837. - Bash integration: Handle existing PROMPT_COMMAND ending with a literal newline
  838. - Fix continued lines not having their continued status reset on line feed (:iss:`4837`)
  839. - macOS: Allow the New kitty Tab/Window Here services to open multiple selected folders. (:pull:`4848`)
  840. - Wayland: Fix a regression that broke IME when changing windows/tabs (:iss:`4853`)
  841. - macOS: Fix Unicode paths not decoded correctly when dropping files (:pull:`4879`)
  842. - Avoid flicker when starting kittens such as the hints kitten (:iss:`4674`)
  843. - A new action :ac:`scroll_prompt_to_top` to move the current prompt to the top (:pull:`4891`)
  844. - :ac:`select_tab`: Use stable numbers when selecting the tab (:iss:`4792`)
  845. - Only check for updates in the official binary builds. Distro packages or source builds will no longer check for updates, regardless of the
  846. value of :opt:`update_check_interval`.
  847. - Fix :opt:`inactive_text_alpha` still being applied to the cursor hidden window after focus (:iss:`4928`)
  848. - Fix resizing window that is extra tall/wide because of left-over cells not
  849. working reliably (:iss:`4913`)
  850. - A new action :ac:`close_other_tabs_in_os_window` to close other tabs in the active OS window (:pull:`4944`)
  851. 0.24.4 [2022-03-03]
  852. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  853. - Shell integration: Fix the default Bash :code:`$HISTFILE` changing to :file:`~/.sh_history` instead of :file:`~/.bash_history` (:iss:`4765`)
  854. - Linux binaries: Fix binaries not working on systems with older Wayland client libraries (:iss:`4760`)
  855. - Fix a regression in the previous release that broke kittens launched with :code:`STDIN` not connected to a terminal (:iss:`4763`)
  856. - Wayland: Fix surface configure events not being acknowledged before commit
  857. the resized buffer (:pull:`4768`)
  858. 0.24.3 [2022-02-28]
  859. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  860. - Bash integration: No longer modify :file:`~/.bashrc` to load :ref:`shell integration <shell_integration>`.
  861. It is recommended to remove the lines used to load the shell integration from :file:`~/.bashrc` as they are no-ops.
  862. - macOS: Allow kitty to handle various URL types. Can be configured via
  863. :ref:`launch_actions` (:pull:`4618`)
  864. - macOS: Add a new service ``Open with kitty`` to open file types that are not
  865. recognized by the system (:pull:`4641`)
  866. - Splits layout: A new value for :option:`launch --location` to auto-select the split axis when splitting existing windows.
  867. Wide windows are split side-by-side and tall windows are split one-above-the-other
  868. - hints kitten: Fix a regression that broke recognition of path:linenumber:colnumber (:iss:`4675`)
  869. - Fix a regression in the previous release that broke :opt:`active_tab_foreground` (:iss:`4620`)
  870. - Fix :ac:`show_last_command_output` not working when the output is stored
  871. partially in the scrollback pager history buffer (:iss:`4435`)
  872. - When dropping URLs/files onto kitty at a shell prompt insert them appropriately quoted and space
  873. separated (:iss:`4734`)
  874. - Improve CWD detection when there are multiple foreground processes in the TTY process group
  875. - A new option :opt:`narrow_symbols` to turn off opportunistic wide rendering of private use codepoints
  876. - ssh kitten: Fix location of generated terminfo files on NetBSD (:iss:`4622`)
  877. - A new action to clear the screen up to the line containing the cursor, see
  878. :ac:`clear_terminal`
  879. - A new action :ac:`copy_ansi_to_clipboard` to copy the current selection with ANSI formatting codes
  880. (:iss:`4665`)
  881. - Linux: Do not rescale fallback fonts to match the main font cell height, instead just
  882. set the font size and let FreeType take care of it. This matches
  883. rendering on macOS (:iss:`4707`)
  884. - macOS: Fix a regression in the previous release that broke switching input
  885. sources by keyboard (:iss:`4621`)
  886. - macOS: Add the default shortcut :kbd:`cmd+k` to clear the terminal screen and
  887. scrollback up to the cursor (:iss:`4625`)
  888. - Fix a regression in the previous release that broke strikethrough (:disc:`4632`)
  889. - A new action :ac:`scroll_prompt_to_bottom` to move the current prompt
  890. to the bottom, filling in the window from the scrollback (:pull:`4634`)
  891. - Add two special arguments ``@first-line-on-screen`` and ``@last-line-on-screen``
  892. for the :doc:`launch <launch>` command to be used for pager positioning.
  893. (:iss:`4462`)
  894. - Linux: Fix rendering of emoji when using scalable fonts such as Segoe UI Emoji
  895. - Shell integration: bash: Dont fail if an existing PROMPT_COMMAND ends with a semi-colon (:iss:`4645`)
  896. - Shell integration: bash: Fix rendering of multiline prompts with more than two lines (:iss:`4681`)
  897. - Shell integration: fish: Check fish version 3.3.0+ and exit on outdated versions (:pull:`4745`)
  898. - Shell integration: fish: Fix pipestatus being overwritten (:pull:`4756`)
  899. - Linux: Fix fontconfig alias not being used if the aliased font is dual spaced instead of monospaced (:iss:`4649`)
  900. - macOS: Add an option :opt:`macos_menubar_title_max_length` to control the max length of the window title displayed in the global menubar (:iss:`2132`)
  901. - Fix :opt:`touch_scroll_multiplier` also taking effect in terminal programs such as vim that handle mouse events themselves (:iss:`4680`)
  902. - Fix symbol/PUA glyphs loaded via :opt:`symbol_map` instead of as fallbacks not using following spaces to render larger versions (:iss:`4670`)
  903. - macOS: Fix regression in previous release that caused Apple's global shortcuts to not work if they had never been configured on a particular machine (:iss:`4657`)
  904. - Fix a fast *click, move mouse, click* sequence causing the first click event to be discarded (:iss:`4603`)
  905. - Wayland: Fix wheel mice with line based scrolling being incorrectly handled as high precision devices (:iss:`4694`)
  906. - Wayland: Fix touchpads and high resolution wheels not scrolling at the same speed on monitors with different scales (:iss:`4703`)
  907. - Add an option :opt:`wheel_scroll_min_lines` to set the minimum number of lines for mouse wheel scrolling when using a mouse with a wheel that generates very small offsets when slow scrolling (:pull:`4710`)
  908. - macOS: Make the shortcut to toggle full screen configurable (:pull:`4714`)
  909. - macOS: Fix the mouse cursor being set to arrow after switching desktops or toggling full screen (:pull:`4716`)
  910. - Fix copying of selection after selection has been scrolled off history buffer raising an error (:iss:`4713`)
  911. 0.24.2 [2022-02-03]
  912. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  913. - macOS: Allow opening text files, images and directories with kitty when
  914. launched using "Open with" in Finder (:iss:`4460`)
  915. - Allow including config files matching glob patterns in :file:`kitty.conf`
  916. (:iss:`4533`)
  917. - Shell integration: Fix bash integration not working when ``PROMPT_COMMAND``
  918. is used to change the prompt variables (:iss:`4476`)
  919. - Shell integration: Fix cursor shape not being restored to default when
  920. running commands in the shell
  921. - Improve the UI of the ask kitten (:iss:`4545`)
  922. - Allow customizing the placement and formatting of the
  923. :opt:`tab_activity_symbol` and :opt:`bell_on_tab` symbols
  924. by adding them to the :opt:`tab_title_template` (:iss:`4581`, :pull:`4507`)
  925. - macOS: Persist "Secure Keyboard Entry" across restarts to match the behavior
  926. of Terminal.app (:iss:`4471`)
  927. - hints kitten: Fix common single letter extension files not being detected
  928. (:iss:`4491`)
  929. - Support dotted and dashed underline styles (:pull:`4529`)
  930. - For the vertical and horizontal layouts have the windows arranged on a ring
  931. rather than a plane. This means the first and last window are considered
  932. neighbors (:iss:`4494`)
  933. - A new action to clear the current selection (:iss:`4600`)
  934. - Shell integration: fish: Fix cursor shape not working with fish's vi mode
  935. (:iss:`4508`)
  936. - Shell integration: fish: Dont override fish's native title setting functionality.
  937. See `discussion <https://github.com/fish-shell/fish-shell/issues/8641>`__.
  938. - macOS: Fix hiding via :kbd:`cmd+h` not working on macOS 10.15.7 (:iss:`4472`)
  939. - Draw the dots for braille characters more evenly spaced at all font sizes (:iss:`4499`)
  940. - icat kitten: Add options to mirror images and remove their transparency
  941. before displaying them (:iss:`4513`)
  942. - macOS: Respect the users system-wide global keyboard shortcut preferences
  943. (:iss:`4501`)
  944. - macOS: Fix a few key-presses causing beeps from Cocoa's text input system
  945. (:iss:`4489`)
  946. - macOS: Fix using shortcuts from the global menu bar as subsequent key presses
  947. in a multi key mapping not working (:iss:`4519`)
  948. - Fix getting last command output not working correctly when the screen is
  949. scrolled (:pull:`4522`)
  950. - Show number of windows per tab in the :ac:`select_tab` action (:pull:`4523`)
  951. - macOS: Fix the shift key not clearing pre-edit text in IME (:iss:`4541`)
  952. - Fix clicking in a window to focus it and typing immediately sometimes having
  953. unexpected effects if at a shell prompt (:iss:`4128`)
  954. - themes kitten: Allow writing to a different file than :file:`kitty.conf`.
  955. 0.24.1 [2022-01-06]
  956. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  957. - Shell integration: Work around conflicts with some zsh plugins (:iss:`4428`)
  958. - Have the zero width space and various other characters from the *Other,
  959. formatting* Unicode category be treated as combining characters (:iss:`4439`)
  960. - Fix using ``--shell-integration`` with :file:`setup.py` broken (:iss:`4434`)
  961. - Fix showing debug information not working if kitty's :file:`STDIN` is not a tty
  962. (:iss:`4424`)
  963. - Linux: Fix a regression that broke rendering of emoji with variation selectors
  964. (:iss:`4444`)
  965. 0.24.0 [2022-01-04]
  966. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  967. - Integrate kitty closely with common shells such as zsh, fish and bash.
  968. This allows lots of niceties such as jumping to previous prompts, opening the
  969. output of the last command in a new window, etc. See :ref:`shell_integration`
  970. for details. Packagers please read :ref:`packagers`.
  971. - A new shortcut :sc:`focus_visible_window` to visually focus a window using
  972. the keyboard. Pressing it causes numbers to appear over each visible window
  973. and you can press the number to focus the corresponding window (:iss:`4110`)
  974. - A new facility :opt:`window_logo_path` to draw an arbitrary PNG image as
  975. logo in the corner of a kitty window (:pull:`4167`)
  976. - Allow rendering the cursor with a *reverse video* effect. See :opt:`cursor`
  977. for details (:iss:`126`)
  978. - Allow rendering the mouse selection with a *reverse video* effect. See
  979. :opt:`selection_foreground` (:iss:`646`)
  980. - A new option :opt:`tab_bar_align` to draw the tab bar centered or right
  981. aligned (:iss:`3946`)
  982. - Allow the user to supply a custom Python function to draw tab bar. See
  983. :opt:`tab_bar_style`
  984. - A new remote control command to :program:`change the tab color <kitty @
  985. set-tab-color>` (:iss:`1287`)
  986. - A new remote control command to :program:`visually select a window <kitty @
  987. select-window>` (:iss:`4165`)
  988. - Add support for reporting mouse events with pixel coordinates using the
  989. ``SGR_PIXEL_PROTOCOL`` introduced in xterm 359
  990. - When programs ask to read from the clipboard prompt, ask the user to allow
  991. the request by default instead of denying it by default. See
  992. :opt:`clipboard_control` for details (:iss:`4022`)
  993. - A new mappable action ``swap_with_window`` to swap the current window with another window in the tab, visually
  994. - A new :program:`remote control command <kitty @ set-enabled-layouts>` to change
  995. the enabled layouts in a tab (:iss:`4129`)
  996. - A new option :opt:`bell_path` to specify the path to a sound file
  997. to use as the bell sound
  998. - A new option :opt:`exe_search_path` to modify the locations kitty searches
  999. for executables to run (:iss:`4324`)
  1000. - broadcast kitten: Show a "fake" cursor in all windows being broadcast too
  1001. (:iss:`4225`)
  1002. - Allow defining :opt:`aliases <action_alias>` for more general actions, not just kittens
  1003. (:pull:`4260`)
  1004. - Fix a regression that caused :option:`kitty --title` to not work when
  1005. opening new OS windows using :option:`kitty --single-instance` (:iss:`3893`)
  1006. - icat kitten: Fix display of JPEG images that are rotated via EXIF data and
  1007. larger than available screen size (:iss:`3949`)
  1008. - macOS: Fix SIGUSR1 quitting kitty instead of reloading the config file (:iss:`3952`)
  1009. - Launch command: Allow specifying the OS window title
  1010. - broadcast kitten: Allow broadcasting :kbd:`ctrl+c` (:pull:`3956`)
  1011. - Fix space ligatures not working with Iosevka for some characters in the
  1012. Enclosed Alphanumeric Supplement (:iss:`3954`)
  1013. - hints kitten: Fix a regression that caused using the default open program
  1014. to trigger open actions instead of running the program (:iss:`3968`)
  1015. - Allow deleting environment variables in :opt:`env` by specifying
  1016. just the variable name, without a value
  1017. - Fix :opt:`active_tab_foreground` not being honored when :opt:`tab_bar_style`
  1018. is ``slant`` (:iss:`4053`)
  1019. - When a :opt:`tab_bar_background` is specified it should extend to the edges
  1020. of the OS window (:iss:`4054`)
  1021. - Linux: Fix IME with fcitx5 not working after fcitx5 is restarted
  1022. (:pull:`4059`)
  1023. - Various improvements to IME integration (:iss:`4219`)
  1024. - Remote file transfer: Fix transfer not working if custom ssh port or identity
  1025. is specified on the command line (:iss:`4067`)
  1026. - Unicode input kitten: Implement scrolling when more results are found than
  1027. the available display space (:pull:`4068`)
  1028. - Allow middle clicking on a tab to close it (:iss:`4151`)
  1029. - The command line option ``--watcher`` has been deprecated in favor of the
  1030. :opt:`watcher` option in :file:`kitty.conf`. It has the advantage of
  1031. applying to all windows, not just the initially created ones. Note that
  1032. ``--watcher`` now also applies to all windows, not just initially created ones.
  1033. - **Backward incompatibility**: No longer turn on the kitty extended keyboard
  1034. protocol's disambiguate mode when the client sends the XTMODKEYS escape code.
  1035. Applications must use the dedicated escape code to turn on the protocol.
  1036. (:iss:`4075`)
  1037. - Fix soft hyphens not being preserved when round tripping text through the
  1038. terminal
  1039. - macOS: Fix :kbd:`ctrl+shift` with :kbd:`Esc` or :kbd:`F1` - :kbd:`F12` not working
  1040. (:iss:`4109`)
  1041. - macOS: Fix :opt:`resize_in_steps` not working correctly on high DPI screens
  1042. (:iss:`4114`)
  1043. - Fix the :program:`resize OS Windows <kitty @ resize-os-window>` setting a
  1044. slightly incorrect size on high DPI screens (:iss:`4114`)
  1045. - :program:`kitty @ launch` - when creating tabs with the ``--match`` option create
  1046. the tab in the OS Window containing the result of the match rather than
  1047. the active OS Window (:iss:`4126`)
  1048. - Linux X11: Add support for 10bit colors (:iss:`4150`)
  1049. - Fix various issues with changing :opt:`tab_bar_background` by remote control
  1050. (:iss:`4152`)
  1051. - A new option :opt:`tab_bar_margin_color` to control the color of the tab bar
  1052. margins
  1053. - A new option :opt:`visual_bell_color` to customize the color of the visual bell
  1054. (:pull:`4181`)
  1055. - Add support for OSC 777 based desktop notifications
  1056. - Wayland: Fix pasting from applications that use a MIME type of "text/plain"
  1057. rather than "text/plain;charset=utf-8" not working (:iss:`4183`)
  1058. - A new mappable action to close windows with a confirmation (:iss:`4195`)
  1059. - When remembering OS window sizes for full screen windows use the size before
  1060. the window became fullscreen (:iss:`4221`)
  1061. - macOS: Fix keyboard input not working after toggling fullscreen till the
  1062. window is clicked in
  1063. - A new mappable action ``nth_os_window`` to focus the specified nth OS
  1064. window. (:pull:`4316`)
  1065. - macOS: The kitty window can be scrolled by the mouse wheel when OS window not
  1066. in focus. (:pull:`4371`)
  1067. - macOS: Light or dark system appearance can be specified in
  1068. :opt:`macos_titlebar_color` and used in kitty themes. (:pull:`4378`)
  1069. 0.23.1 [2021-08-17]
  1070. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1071. - macOS: Fix themes kitten failing to download themes because of missing SSL
  1072. root certificates (:iss:`3936`)
  1073. - A new option :opt:`clipboard_max_size` to control the maximum size
  1074. of data that kitty will transmit to the system clipboard on behalf of
  1075. programs running inside it (:iss:`3937`)
  1076. - When matching windows/tabs in kittens or using remote control, allow matching
  1077. by recency. ``recent:0`` matches the active window/tab, ``recent:1`` matches
  1078. the previous window/tab and so on
  1079. - themes kitten: Fix only the first custom theme file being loaded correctly
  1080. (:iss:`3938`)
  1081. 0.23.0 [2021-08-16]
  1082. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1083. - A new :doc:`themes kitten </kittens/themes>` to easily change kitty themes.
  1084. Choose from almost two hundred themes in the `kitty themes repository
  1085. <https://github.com/kovidgoyal/kitty-themes>`_
  1086. - A new style for the tab bar that makes tabs looks like the tabs in a physical
  1087. tabbed file, see :opt:`tab_bar_style`
  1088. - Make the visual bell flash more gentle, especially on dark themes
  1089. (:pull:`2937`)
  1090. - Fix :option:`kitty --title` not overriding the OS Window title when multiple
  1091. tabs are present. Also this option is no longer used as the default title for
  1092. windows, allowing individual tabs/windows to have their own titles, even when
  1093. the OS Window has a fixed overall title (:iss:`3893`)
  1094. - Linux: Fix some very long ligatures being rendered incorrectly at some font
  1095. sizes (:iss:`3896`)
  1096. - Fix shift+middle click to paste sending a mouse press event but no release
  1097. event which breaks some applications that grab the mouse but can't handle
  1098. mouse events (:iss:`3902`)
  1099. - macOS: When the language is set to English and the country to one for which
  1100. an English locale does not exist, set :envvar:`LANG` to ``en_US.UTF-8``
  1101. (:iss:`3899`)
  1102. - terminfo: Fix "cnorm" the property for setting the cursor to normal using a
  1103. solid block rather than a blinking block cursor (:iss:`3906`)
  1104. - Add :opt:`clear_all_mouse_actions` to clear all mouse actions defined to
  1105. that point (:iss:`3907`)
  1106. - Fix the remote file kitten not working when using -- with ssh. The ssh kitten
  1107. was recently changed to do this (:iss:`3929`)
  1108. - When dragging word or line selections, ensure the initially selected item is
  1109. never deselected. This matches behavior in most other programs (:iss:`3930`)
  1110. - hints kitten: Make copy/paste with the :option:`kitty +kitten hints
  1111. --program` option work when using the ``self``
  1112. :option:`kitty +kitten hints --linenum-action` (:iss:`3931`)
  1113. 0.22.2 [2021-08-02]
  1114. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1115. - macOS: Fix a long standing bug that could cause kitty windows to stop
  1116. updating, that got worse in the previous release (:iss:`3890` and
  1117. :iss:`2016`)
  1118. - Wayland: A better fix for compositors like sway that can toggle client side
  1119. decorations on and off (:iss:`3888`)
  1120. 0.22.1 [2021-07-31]
  1121. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1122. - Fix a regression in the previous release that broke ``kitty --help`` (:iss:`3869`)
  1123. - Graphics protocol: Fix composing onto currently displayed frame not updating the frame on the GPU (:iss:`3874`)
  1124. - Fix switching to previously active tab after detaching a tab not working (:pull:`3871`)
  1125. - macOS: Fix an error on Apple silicon when enumerating monitors (:pull:`3875`)
  1126. - detach_window: Allow specifying the previously active tab or the tab to the left/right of
  1127. the active tab (:disc:`3877`)
  1128. - broadcast kitten: Fix a regression in ``0.20.0`` that broke sending of some
  1129. keys, such as backspace
  1130. - Linux binary: Remove any RPATH build artifacts from bundled libraries
  1131. - Wayland: If the compositor turns off server side decorations after turning
  1132. them on do not draw client side decorations (:iss:`3888`)
  1133. 0.22.0 [2021-07-26]
  1134. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1135. - Add a new :ac:`toggle_layout` action to easily zoom/unzoom a window
  1136. - When right clicking to extend a selection, move the nearest selection
  1137. boundary rather than the end of the selection. To restore previous behavior
  1138. use ``mouse_map right press ungrabbed mouse_selection move-end``.
  1139. - When opening hyperlinks, allow defining open actions for directories
  1140. (:pull:`3836`)
  1141. - When using the OSC 52 escape code to copy to clipboard allow large
  1142. copies (up to 8MB) without needing a kitty specific chunking protocol.
  1143. Note that if you used the chunking protocol in the past, it will no longer
  1144. work and you should switch to using the unmodified protocol which has the
  1145. advantage of working with all terminal emulators.
  1146. - Fix a bug in the implementation of the synchronized updates escape code that
  1147. could cause incorrect parsing if either the pending buffer capacity or the
  1148. pending timeout were exceeded (:iss:`3779`)
  1149. - A new remote control command to :program:`resize the OS Window <kitty @
  1150. resize-os-window>`
  1151. - Graphics protocol: Add support for composing rectangles from one animation
  1152. frame onto another (:iss:`3809`)
  1153. - diff kitten: Remove limit on max line length of 4096 characters (:iss:`3806`)
  1154. - Fix turning off cursor blink via escape codes not working (:iss:`3808`)
  1155. - Allow using neighboring window operations in the stack layout. The previous
  1156. window is considered the left and top neighbor and the next window is
  1157. considered the bottom and right neighbor (:iss:`3778`)
  1158. - macOS: Render colors in the sRGB colorspace to match other macOS terminal
  1159. applications (:iss:`2249`)
  1160. - Add a new variable ``{num_window_groups}`` for the :opt:`tab_title_template`
  1161. (:iss:`3837`)
  1162. - Wayland: Fix :opt:`initial_window_width/height <remember_window_size>` specified
  1163. in cells not working on High DPI screens (:iss:`3834`)
  1164. - A new theme for the kitty website with support for dark mode.
  1165. - Render ┄ ┅ ┆ ┇ ┈ ┉ ┊ ┋ with spaces at the edges. Matches rendering in
  1166. most other programs and allows long chains of them to look better
  1167. (:iss:`3844`)
  1168. - hints kitten: Detect paths and hashes that appear over multiple lines.
  1169. Note that this means that all line breaks in the text are no longer \n
  1170. soft breaks are instead \r. If you use a custom regular expression that
  1171. is meant to match over line breaks, you will need to match over both.
  1172. (:iss:`3845`)
  1173. - Allow leading or trailing spaces in :opt:`tab_activity_symbol`
  1174. - Fix mouse actions not working when caps lock or num lock are engaged
  1175. (:iss:`3859`)
  1176. - macOS: Fix automatic detection of bold/italic faces for fonts that
  1177. use the family name as the full face name of the regular font not working
  1178. (:iss:`3861`)
  1179. - clipboard kitten: fix copies to clipboard not working without the
  1180. :option:`kitty +kitten clipboard --wait-for-completion` option
  1181. 0.21.2 [2021-06-28]
  1182. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1183. - A new ``adjust_baseline`` option to adjust the vertical alignment of text
  1184. inside a line (:pull:`3734`)
  1185. - A new :opt:`url_excluded_characters` option to exclude additional characters
  1186. when detecting URLs under the mouse (:pull:`3738`)
  1187. - Fix a regression in 0.21.0 that broke rendering of private use Unicode symbols followed
  1188. by spaces, when they also exist not followed by spaces (:iss:`3729`)
  1189. - ssh kitten: Support systems where the login shell is a non-POSIX shell
  1190. (:iss:`3405`)
  1191. - ssh kitten: Add completion (:iss:`3760`)
  1192. - ssh kitten: Fix "Connection closed" message being printed by ssh when running
  1193. remote commands
  1194. - Add support for the XTVERSION escape code
  1195. - macOS: Fix a regression in 0.21.0 that broke middle-click to paste from clipboard (:iss:`3730`)
  1196. - macOS: Fix shortcuts in the global menu bar responding slowly when cursor blink
  1197. is disabled/timed out (:iss:`3693`)
  1198. - When displaying scrollback ensure that the window does not quit if the amount
  1199. of scrollback is less than a screen and the user has the ``--quit-if-one-screen``
  1200. option enabled for less (:iss:`3740`)
  1201. - Linux: Fix Emoji/bitmapped fonts not use able in symbol_map
  1202. - query terminal kitten: Allow querying font face and size information
  1203. (:iss:`3756`)
  1204. - hyperlinked grep kitten: Fix context options not generating contextual output (:iss:`3759`)
  1205. - Allow using superscripts in tab titles (:iss:`3763`)
  1206. - Unicode input kitten: Fix searching when a word has more than 1024 matches (:iss:`3773`)
  1207. 0.21.1 [2021-06-14]
  1208. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1209. - macOS: Fix a regression in the previous release that broke rendering of
  1210. strikeout (:iss:`3717`)
  1211. - macOS: Fix a crash when rendering ligatures larger than 128 characters
  1212. (:iss:`3724`)
  1213. - Fix a regression in the previous release that could cause a crash when
  1214. changing layouts and mousing (:iss:`3713`)
  1215. 0.21.0 [2021-06-12]
  1216. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1217. - Allow reloading the :file:`kitty.conf` config file by pressing
  1218. :sc:`reload_config_file`. (:iss:`1292`)
  1219. - Allow clicking URLs to open them without needing to also hold
  1220. :kbd:`ctrl+shift`
  1221. - Allow remapping all mouse button press/release events to perform arbitrary
  1222. actions. :ref:`See details <conf-kitty-mouse.mousemap>` (:iss:`1033`)
  1223. - Support infinite length ligatures (:iss:`3504`)
  1224. - **Backward incompatibility**: The options to control which modifiers keys to
  1225. press for various mouse actions have been removed, if you used these options,
  1226. you will need to replace them with configuration using the new
  1227. :ref:`mouse actions framework <conf-kitty-mouse.mousemap>` as they will be
  1228. ignored. The options were: ``terminal_select_modifiers``,
  1229. ``rectangle_select_modifiers`` and ``open_url_modifiers``.
  1230. - Add a configurable mouse action (:kbd:`ctrl+alt+triplepress` to select from the
  1231. clicked point to the end of the line. (:iss:`3585`)
  1232. - Add the ability to un-scroll the screen to the ``kitty @ scroll-window``
  1233. remote control command (:iss:`3604`)
  1234. - A new option, :opt:`tab_bar_margin_height` to add margins around the
  1235. top and bottom edges of the tab bar (:iss:`3247`)
  1236. - Unicode input kitten: Fix a regression in 0.20.0 that broke keyboard handling
  1237. when the NumLock or CapsLock modifiers were engaged. (:iss:`3587`)
  1238. - Fix a regression in 0.20.0 that sent incorrect bytes for the :kbd:`F1`-:kbd:`F4` keys
  1239. in rmkx mode (:iss:`3586`)
  1240. - macOS: When the Apple Color Emoji font lacks an emoji glyph search for it in other
  1241. installed fonts (:iss:`3591`)
  1242. - macOS: Fix rendering getting stuck on some machines after sleep/screensaver
  1243. (:iss:`2016`)
  1244. - macOS: Add a new ``Shell`` menu to the global menubar with some commonly used
  1245. actions (:pull:`3653`)
  1246. - macOS: Fix the baseline for text not matching other CoreText based
  1247. applications for some fonts (:iss:`2022`)
  1248. - Add a few more special commandline arguments for the launch command. Now all
  1249. ``KITTY_PIPE_DATA`` is also available via command line argument substitution
  1250. (:iss:`3593`)
  1251. - Fix dynamically changing the background color in a window causing rendering
  1252. artifacts in the tab bar (:iss:`3595`)
  1253. - Fix passing STDIN to launched background processes causing them to not inherit
  1254. environment variables (:pull:`3603`)
  1255. - Fix deleting windows that are not the last window via remote control leaving
  1256. no window focused (:iss:`3619`)
  1257. - Add an option :option:`kitten @ get-text --add-cursor` to also get the current
  1258. cursor position and state as ANSI escape codes (:iss:`3625`)
  1259. - Add an option :option:`kitten @ get-text --add-wrap-markers` to add line wrap
  1260. markers to the output (:pull:`3633`)
  1261. - Improve rendering of curly underlines on HiDPI screens (:pull:`3637`)
  1262. - ssh kitten: Mimic behavior of ssh command line client more closely by
  1263. executing any command specified on the command line via the users' shell
  1264. just as ssh does (:iss:`3638`)
  1265. - Fix trailing parentheses in URLs not being detected (:iss:`3688`)
  1266. - Tab bar: Use a lower contrast color for tab separators (:pull:`3666`)
  1267. - Fix a regression that caused using the ``title`` command in session files
  1268. to stop working (:iss:`3676`)
  1269. - macOS: Fix a rare crash on exit (:iss:`3686`)
  1270. - Fix ligatures not working with the `Iosevka
  1271. <https://github.com/be5invis/Iosevka>`_ font (requires Iosevka >= 7.0.4)
  1272. (:iss:`297`)
  1273. - Remote control: Allow matching tabs by index number in currently active OS
  1274. Window (:iss:`3708`)
  1275. - ssh kitten: Fix non-standard properties in terminfo such as the ones used for
  1276. true color not being copied (:iss:`312`)
  1277. 0.20.3 [2021-05-06]
  1278. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1279. - macOS: Distribute universal binaries with both ARM and Intel architectures
  1280. - A new ``show_key`` kitten to easily see the bytes generated by the terminal
  1281. for key presses in the various keyboard modes (:pull:`3556`)
  1282. - Linux: Fix keyboard layout change keys defined via compose rules not being
  1283. ignored
  1284. - macOS: Fix Spotlight search of global menu not working in non-English locales
  1285. (:pull:`3567`)
  1286. - Fix tab activity symbol not appearing if no other changes happen in tab bar even when
  1287. there is activity in a tab (:iss:`3571`)
  1288. - Fix focus changes not being sent to windows when focused window changes
  1289. because of the previously focused window being closed (:iss:`3571`)
  1290. 0.20.2 [2021-04-28]
  1291. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1292. - A new protocol extension to :ref:`unscroll <unscroll>` text from the
  1293. scrollback buffer onto the screen. Useful, for example, to restore
  1294. the screen after showing completions below the shell prompt.
  1295. - A new remote control command :ref:`at-env` to change the default
  1296. environment passed to newly created windows (:iss:`3529`)
  1297. - Linux: Fix binary kitty builds not able to load fonts in WOFF2 format
  1298. (:iss:`3506`)
  1299. - macOS: Prevent :kbd:`option` based shortcuts for being used for global menu
  1300. actions (:iss:`3515`)
  1301. - Fix ``kitty @ close-tab`` not working with pipe based remote control
  1302. (:iss:`3510`)
  1303. - Fix removal of inactive tab that is before the currently active tab causing
  1304. the highlighted tab to be incorrect (:iss:`3516`)
  1305. - icat kitten: Respect EXIF orientation when displaying JPEG images
  1306. (:iss:`3518`)
  1307. - GNOME: Fix maximize state not being remembered when focus changes and window
  1308. decorations are hidden (:iss:`3507`)
  1309. - GNOME: Add a new :opt:`wayland_titlebar_color` option to control the color of the
  1310. kitty window title bar
  1311. - Fix reading :option:`kitty --session` from ``STDIN`` not working when the
  1312. :code:`kitty --detach` option is used (:iss:`3523`)
  1313. - Special case rendering of the few remaining Powerline box drawing chars
  1314. (:iss:`3535`)
  1315. - Fix ``kitty @ set-colors`` not working for the :opt:`active_tab_foreground`.
  1316. 0.20.1 [2021-04-19]
  1317. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1318. - icat: Fix some broken GIF images with no frame delays not being animated
  1319. (:iss:`3498`)
  1320. - hints kitten: Fix sending hyperlinks to their default handler not working
  1321. (:pull:`3500`)
  1322. - Wayland: Fix regression in previous release causing window decorations to
  1323. be drawn even when compositor supports server side decorations (:iss:`3501`)
  1324. 0.20.0 [2021-04-19]
  1325. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1326. - Support display of animated images ``kitty +kitten icat animation.gif``. See
  1327. :ref:`animation_protocol` for details on animation support in the kitty
  1328. graphics protocol.
  1329. - A new keyboard reporting protocol with various advanced features that can be
  1330. used by full screen terminal programs and even games, see
  1331. :doc:`keyboard-protocol` (:iss:`3248`)
  1332. - **Backward incompatibility**: Session files now use the full :doc:`launch <launch>`
  1333. command with all its capabilities. However, the syntax of the command is
  1334. slightly different from before. In particular watchers are now specified
  1335. directly on launch and environment variables are set using ``--env``.
  1336. - Allow setting colors when creating windows using the :doc:`launch <launch>` command.
  1337. - A new option :opt:`tab_powerline_style` to control the appearance of the tab
  1338. bar when using the powerline tab bar style.
  1339. - A new option :opt:`scrollback_fill_enlarged_window` to fill extra lines in
  1340. the window when the window is expanded with lines from the scrollback
  1341. (:pull:`3371`)
  1342. - diff kitten: Implement recursive diff over SSH (:iss:`3268`)
  1343. - ssh kitten: Allow using python instead of the shell on the server, useful if
  1344. the shell used is a non-POSIX compliant one, such as fish (:iss:`3277`)
  1345. - Add support for the color settings stack that XTerm copied from us without
  1346. acknowledgement and decided to use incompatible escape codes for.
  1347. - Add entries to the terminfo file for some user capabilities that are shared
  1348. with XTerm (:pull:`3193`)
  1349. - The launch command now does more sophisticated resolving of executables to
  1350. run. The system-wide PATH is used first, then system specific default paths,
  1351. and finally the PATH inside the shell.
  1352. - Double clicking on empty tab bar area now opens a new tab (:iss:`3201`)
  1353. - kitty @ ls: Show only environment variables that are different for each
  1354. window, by default.
  1355. - When passing a directory or a non-executable file as the program to run to
  1356. kitty opens it with the shell or by parsing the shebang, instead of just failing.
  1357. - Linux: Fix rendering of emoji followed by the graphics variation selector not
  1358. being colored with some fonts (:iss:`3211`)
  1359. - Unicode input: Fix using index in select by name mode not working for indices
  1360. larger than 16. Also using an index does not filter the list of matches. (:pull:`3219`)
  1361. - Wayland: Add support for the text input protocol (:iss:`3410`)
  1362. - Wayland: Fix mouse handling when using client side decorations
  1363. - Wayland: Fix un-maximizing a window not restoring its size to what it was
  1364. before being maximized
  1365. - GNOME/Wayland: Improve window decorations the titlebar now shows the window
  1366. title. Allow running under Wayland on GNOME by default. (:iss:`3284`)
  1367. - Panel kitten: Allow setting WM_CLASS (:iss:`3233`)
  1368. - macOS: Add menu items to close the OS window and the current tab (:pull:`3240`, :iss:`3246`)
  1369. - macOS: Allow opening script and command files with kitty (:iss:`3366`)
  1370. - Also detect ``gemini://`` URLs when hovering with the mouse (:iss:`3370`)
  1371. - When using a non-US keyboard layout and pressing :kbd:`ctrl+key` when
  1372. the key matches an English key, send that to the program running in the
  1373. terminal automatically (:iss:`2000`)
  1374. - When matching shortcuts, also match on shifted keys, so a shortcut defined as
  1375. :kbd:`ctrl+plus` will match a keyboard where you have to press
  1376. :kbd:`shift+equal` to get the plus key (:iss:`2000`)
  1377. - Fix extra space at bottom of OS window when using the fat layout with the tab bar at the
  1378. top (:iss:`3258`)
  1379. - Fix window icon not working on X11 with 64bits (:iss:`3260`)
  1380. - Fix OS window sizes under 100px resulting in scaled display (:iss:`3307`)
  1381. - Fix rendering of ligatures in the latest release of Cascadia code, which for
  1382. some reason puts empty glyphs after the ligature glyph rather than before it
  1383. (:iss:`3313`)
  1384. - Improve handling of infinite length ligatures in newer versions of FiraCode
  1385. and CascadiaCode. Now such ligatures are detected based on glyph naming
  1386. convention. This removes the gap in the ligatures at cell boundaries (:iss:`2695`)
  1387. - macOS: Disable the native operating system tabs as they are non-functional
  1388. and can be confusing (:iss:`3325`)
  1389. - hints kitten: When using the linenumber action with a background action,
  1390. preserve the working directory (:iss:`3352`)
  1391. - Graphics protocol: Fix suppression of responses not working for chunked
  1392. transmission (:iss:`3375`)
  1393. - Fix inactive tab closing causing active tab to change (:iss:`3398`)
  1394. - Fix a crash on systems using musl as libc (:iss:`3395`)
  1395. - Improve rendering of rounded corners by using a rectircle equation rather
  1396. than a cubic bezier (:iss:`3409`)
  1397. - Graphics protocol: Add a control to allow clients to specify that the cursor
  1398. should not move when displaying an image (:iss:`3411`)
  1399. - Fix marking of text not working on lines that contain zero cells
  1400. (:iss:`3403`)
  1401. - Fix the selection getting changed if the screen contents scroll while
  1402. the selection is in progress (:iss:`3431`)
  1403. - X11: Fix :opt:`resize_in_steps` being applied even when window is maximized
  1404. (:iss:`3473`)
  1405. 0.19.3 [2020-12-19]
  1406. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1407. - Happy holidays to all kitty users!
  1408. - A new :doc:`broadcast <kittens/broadcast>` kitten to type in all kitty windows
  1409. simultaneously (:iss:`1569`)
  1410. - Add a new mappable `select_tab` action to choose a tab to switch to even
  1411. when the tab bar is hidden (:iss:`3115`)
  1412. - Allow specifying text formatting in :opt:`tab_title_template` (:iss:`3146`)
  1413. - Linux: Read :opt:`font_features` from the FontConfig database as well, so
  1414. that they can be configured in a single, central location (:pull:`3174`)
  1415. - Graphics protocol: Add support for giving individual image placements their
  1416. own ids and for asking the terminal emulator to assign ids for images. Also
  1417. allow suppressing responses from the terminal to commands.
  1418. These are backwards compatible protocol extensions. (:iss:`3133`,
  1419. :iss:`3163`)
  1420. - Distribute extra pixels among all eight-blocks rather than adding them
  1421. all to the last block (:iss:`3097`)
  1422. - Fix drawing of a few sextant characters incorrect (:pull:`3105`)
  1423. - macOS: Fix minimize not working for chromeless windows (:iss:`3112`)
  1424. - Preserve lines in the scrollback if a scrolling region is defined that
  1425. is contiguous with the top of the screen (:iss:`3113`)
  1426. - Wayland: Fix key repeat being stopped by the release of an unrelated key
  1427. (:iss:`2191`)
  1428. - Add an option, :opt:`detect_urls` to control whether kitty will detect URLs
  1429. when the mouse moves over them (:pull:`3118`)
  1430. - Graphics protocol: Dont return filename in the error message when opening file
  1431. fails, since filenames can contain control characters (:iss:`3128`)
  1432. - macOS: Partial fix for traditional fullscreen not working on Big Sur
  1433. (:iss:`3100`)
  1434. - Fix one ANSI formatting escape code not being removed from the pager history
  1435. buffer when piping it as plain text (:iss:`3132`)
  1436. - Match the save/restore cursor behavior of other terminals, for the sake of
  1437. interoperability. This means that doing a DECRC without a prior DECSC is now
  1438. undefined (:iss:`1264`)
  1439. - Fix mapping ``remote_control send-text`` not working (:iss:`3147`)
  1440. - Add a ``right`` option for :opt:`tab_switch_strategy` (:pull:`3155`)
  1441. - Fix a regression in 0.19.0 that caused a rare crash when using the optional
  1442. :opt:`scrollback_pager_history_size` (:iss:`3049`)
  1443. - Full screen kittens: Fix incorrect cursor position after kitten quits
  1444. (:iss:`3176`)
  1445. 0.19.2 [2020-11-13]
  1446. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1447. - A new :doc:`kittens/query_terminal` kitten to easily query the running kitty
  1448. via escape codes to detect its version, and the values of
  1449. configuration options that enable or disable terminal features.
  1450. - Options to control mouse pointer shape, :opt:`default_pointer_shape`, and
  1451. :opt:`pointer_shape_when_dragging` (:pull:`3041`)
  1452. - Font independent rendering for braille characters, which ensures they are properly
  1453. aligned at all font sizes.
  1454. - Fix a regression in 0.19.0 that caused borders not to be drawn when setting
  1455. :opt:`window_margin_width` and keeping :opt:`draw_minimal_borders` on
  1456. (:iss:`3017`)
  1457. - Fix a regression in 0.19.0 that broke rendering of one-eight bar unicode
  1458. characters at very small font sizes (:iss:`3025`)
  1459. - Wayland: Fix a crash under GNOME when using multiple OS windows
  1460. (:pull:`3066`)
  1461. - Fix selections created by dragging upwards not being auto-cleared when
  1462. screen contents change (:pull:`3028`)
  1463. - macOS: Fix kitty not being added to PATH automatically when using pre-built
  1464. binaries (:iss:`3063`)
  1465. - Allow adding MIME definitions to kitty by placing a ``mime.types`` file in
  1466. the kitty config directory (:iss:`3056`)
  1467. - Dont ignore :option:`--title` when using a session file that defines no
  1468. windows (:iss:`3055`)
  1469. - Fix the send_text action not working in URL handlers (:iss:`3081`)
  1470. - Fix last character of URL not being detected if it is the only character on a
  1471. new line (:iss:`3088`)
  1472. - Don't restrict the ICH,DCH,REP control codes to only the current scroll region (:iss:`3090`, :iss:`3096`)
  1473. 0.19.1 [2020-10-06]
  1474. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1475. - hints kitten: Add an ``ip`` type for easy selection of IP addresses
  1476. (:pull:`3009`)
  1477. - Fix a regression that caused a segfault when using
  1478. :opt:`scrollback_pager_history_size` and it needs to be expanded (:iss:`3011`)
  1479. - Fix update available notifications repeating (:pull:`3006`)
  1480. 0.19.0 [2020-10-04]
  1481. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1482. - Add support for `hyperlinks from terminal programs
  1483. <https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda>`_.
  1484. Controlled via :opt:`allow_hyperlinks` (:iss:`68`)
  1485. - Add support for easily editing or downloading files over SSH sessions
  1486. without the need for any special software, see :doc:`kittens/remote_file`
  1487. - A new :doc:`kittens/hyperlinked_grep` kitten to easily search files and open
  1488. the results at the matched line by clicking on them.
  1489. - Allow customizing the :doc:`actions kitty takes <open_actions>` when clicking on URLs
  1490. - Improve rendering of borders when using minimal borders. Use less space and
  1491. do not display a box around active windows
  1492. - Add a new extensible escape code to allow terminal programs to trigger
  1493. desktop notifications. See :ref:`desktop_notifications` (:iss:`1474`)
  1494. - Implement special rendering for various characters from the set of "Symbols
  1495. for Legacy Computing" from the Unicode 13 standard
  1496. - Unicode input kitten: Allow choosing symbols from the NERD font as well.
  1497. These are mostly Private Use symbols not in any standard, however are common. (:iss:`2972`)
  1498. - Allow specifying border sizes in either pts or pixels. Change the default to
  1499. 0.5pt borders as this works best with the new minimal border style
  1500. - Add support for displaying correct colors with non-sRGB PNG files (Adds a
  1501. dependency on liblcms2)
  1502. - hints kitten: Add a new :option:`kitty +kitten hints --type` of ``hyperlink`` useful
  1503. for activating hyperlinks using just the keyboard
  1504. - Allow tracking focus change events in watchers (:iss:`2918`)
  1505. - Allow specifying watchers in session files and via a command line argument
  1506. (:iss:`2933`)
  1507. - Add a setting :opt:`tab_activity_symbol` to show a symbol in the tab title
  1508. if one of the windows has some activity after it was last focused
  1509. (:iss:`2515`)
  1510. - macOS: Switch to using the User Notifications framework for notifications.
  1511. The current notifications framework has been deprecated in Big Sur. The new
  1512. framework only allows notifications from signed and notarized applications,
  1513. so people using kitty from homebrew/source are out of luck. Complain to
  1514. Apple.
  1515. - When in the main screen and a program grabs the mouse, do not use the scroll
  1516. wheel events to scroll the scrollback buffer, instead send them to the
  1517. program (:iss:`2939`)
  1518. - Fix unfocused windows in which a bell occurs not changing their border color
  1519. to red until a relayout
  1520. - Linux: Fix automatic detection of bold/italic faces for fonts such as IBM
  1521. Plex Mono that have the regular face with a full name that is the same as the
  1522. family name (:iss:`2951`)
  1523. - Fix a regression that broke :opt:`kitten_alias` (:iss:`2952`)
  1524. - Fix a regression that broke the ``move_window_to_top`` action (:pull:`2953`)
  1525. - Fix a memory leak when changing font sizes
  1526. - Fix some lines in the scrollback buffer not being properly rendered after a
  1527. window resize/font size change (:iss:`2619`)
  1528. 0.18.3 [2020-08-11]
  1529. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1530. - hints kitten: Allow customizing hint colors (:pull:`2894`)
  1531. - Wayland: Fix a typo in the previous release that broke reading mouse cursor size (:iss:`2895`)
  1532. - Fix a regression in the previous release that could cause an exception during
  1533. startup in rare circumstances (:iss:`2896`)
  1534. - Fix image leaving behind a black rectangle when switch away and back to
  1535. alternate screen (:iss:`2901`)
  1536. - Fix one pixel misalignment of rounded corners when either the cell
  1537. dimensions or the thickness of the line is an odd number of pixels
  1538. (:iss:`2907`)
  1539. - Fix a regression that broke specifying OS window size in the session file
  1540. (:iss:`2908`)
  1541. 0.18.2 [2020-07-28]
  1542. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1543. - X11: Improve handling of multiple keyboards. Now pressing a modifier key in
  1544. one keyboard and a normal key in another works (:iss:`2362`). Don't rebuild
  1545. keymaps on new keyboard events that only change geometry (:iss:`2787`).
  1546. Better handling of multiple keyboards with incompatible layouts (:iss:`2726`)
  1547. - Improve anti-aliasing of triangular box drawing characters, noticeable on
  1548. low-resolution screens (:iss:`2844`)
  1549. - Fix ``kitty @ send-text`` not working reliably when using a socket for remote
  1550. control (:iss:`2852`)
  1551. - Implement support for box drawing rounded-corners characters (:iss:`2240`)
  1552. - Allow setting the class for new OS windows in a session file
  1553. - When a character from the Unicode Dingbat block is followed by a space, use
  1554. the extra space to render a larger version of the character (:iss:`2850`)
  1555. - macOS: Fix the LC_CTYPE env var being set to UTF-8 on systems in which the
  1556. language and country code do not form a valid locale (:iss:`1233`)
  1557. - macOS: Fix :kbd:`cmd+plus` not changing font size (:iss:`2839`)
  1558. - Make neighboring window selection in grid and splits layouts more intelligent
  1559. (:pull:`2840`)
  1560. - Allow passing the current selection to kittens (:iss:`2796`)
  1561. - Fix pre-edit text not always being cleared with ibus input (:iss:`2862`)
  1562. - Allow setting the :opt:`background_opacity` of new OS windows created via
  1563. :option:`kitty --single-instance` using the :option:`kitty --override` command line
  1564. argument (:iss:`2806`)
  1565. - Fix the CSI J (Erase in display ED) escape code not removing line continued
  1566. markers (:iss:`2809`)
  1567. - hints kitten: In linenumber mode expand paths that starts with ~
  1568. (:iss:`2822`)
  1569. - Fix ``launch --location=last`` not working (:iss:`2841`)
  1570. - Fix incorrect centering when a PUA or symbol glyph is followed by more than one space
  1571. - Have the :opt:`confirm_os_window_close` option also apply when closing tabs
  1572. with multiple windows (:iss:`2857`)
  1573. - Add support for legacy DECSET codes 47, 1047 and 1048 (:pull:`2871`)
  1574. - macOS: no longer render emoji 20% below the baseline. This caused some emoji
  1575. to be cut-off and also look misaligned with very high cells (:iss:`2873`)
  1576. - macOS: Make the window id of OS windows available in the ``WINDOWID``
  1577. environment variable (:pull:`2877`)
  1578. - Wayland: Fix a regression in 0.18.0 that could cause crashes related to mouse
  1579. cursors in some rare circumstances (:iss:`2810`)
  1580. - Fix change in window size that does not change number of cells not being
  1581. reported to the kernel (:iss:`2880`)
  1582. 0.18.1 [2020-06-23]
  1583. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1584. - macOS: Fix for diff kitten not working with python 3.8 (:iss:`2780`)
  1585. 0.18.0 [2020-06-20]
  1586. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1587. - Allow multiple overlay windows per normal window
  1588. - Add an option :opt:`confirm_os_window_close` to ask for confirmation
  1589. when closing an OS window with multiple kitty windows.
  1590. - Tall and Fat layouts: Add a ``mirrored`` option to put the full size window
  1591. on the opposite edge of the screen (:iss:`2654`)
  1592. - Tall and Fat layouts: Add mappable actions to increase or decrease the number
  1593. of full size windows (:iss:`2688`)
  1594. - Allow sending arbitrary signals to the current foreground process in a window
  1595. using either a mapping in kitty.conf or via remote control (:iss:`2778`)
  1596. - Allow sending the back and forward mouse buttons to terminal applications
  1597. (:pull:`2742`)
  1598. - **Backwards incompatibility**: The numbers used to encode mouse buttons
  1599. for the ``send_mouse_event`` function that can be used in kittens have
  1600. been changed (see :ref:`send_mouse_event`).
  1601. - Add a new mappable ``quit`` action to quit kitty completely.
  1602. - Fix marks using different colors with regexes using only a single color
  1603. (:pull:`2663`)
  1604. - Linux: Workaround for broken Nvidia drivers for old cards (:iss:`456`)
  1605. - Wayland: Fix kitty being killed on some Wayland compositors if a hidden window
  1606. has a lot of output (:iss:`2329`)
  1607. - BSD: Fix controlling terminal not being established (:pull:`2686`)
  1608. - Add support for the CSI REP escape code (:pull:`2702`)
  1609. - Wayland: Fix mouse cursor rendering on HiDPI screens (:pull:`2709`)
  1610. - X11: Recompile keymaps on XkbNewKeyboardNotify events (:iss:`2726`)
  1611. - X11: Reduce startup time by ~25% by only querying GLX for framebuffer
  1612. configurations once (:iss:`2754`)
  1613. - macOS: Notarize the kitty application bundle (:iss:`2040`)
  1614. - Fix the kitty shell launched via a mapping needlessly requiring
  1615. :opt:`allow_remote_control` to be turned on.
  1616. 0.17.4 [2020-05-09]
  1617. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1618. - Allow showing the name of the current layout and the number of windows
  1619. in tab titles (:iss:`2634`)
  1620. - macOS: Fix a regression in the previous release that caused ligatures to be
  1621. not be centered horizontally (:iss:`2591`)
  1622. - By default, double clicking no longer considers the : as part of words, see
  1623. :opt:`select_by_word_characters` (:iss:`2602`)
  1624. - Fix a regression that caused clicking in the padding/margins of windows in
  1625. the stack layout to switch the window to the first window (:iss:`2604`)
  1626. - macOS: Fix a regression that broke drag and drop (:iss:`2605`)
  1627. - Report modifier key state when sending wheel events to the terminal program
  1628. - Fix kitty @ send-text not working with text larger than 1024 bytes when using
  1629. :option:`kitty --listen-on` (:iss:`2607`)
  1630. - Wayland: Fix OS window title not updating for hidden windows (:iss:`2629`)
  1631. - Fix :opt:`background_tint` making the window semi-transparent (:iss:`2618`)
  1632. 0.17.3 [2020-04-23]
  1633. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1634. - Allow individually setting margins and padding for each edge (left, right,
  1635. top, bottom). Margins can also be controlled per window via remote control
  1636. (:iss:`2546`)
  1637. - Fix reverse video not being rendered correctly when using transparency or a
  1638. background image (:iss:`2419`)
  1639. - Allow mapping arbitrary remote control commands to key presses in
  1640. :file:`kitty.conf`
  1641. - X11: Fix crash when doing drag and drop from some applications (:iss:`2505`)
  1642. - Fix :option:`launch --stdin-add-formatting` not working (:iss:`2512`)
  1643. - Update to Unicode 13.0 (:iss:`2513`)
  1644. - Render country flags designated by a pair of unicode codepoints
  1645. in two cells instead of four.
  1646. - diff kitten: New option to control the background color for filler lines in
  1647. the margin (:iss:`2518`)
  1648. - Fix specifying options for layouts in the startup session file not working
  1649. (:iss:`2520`)
  1650. - macOS: Fix incorrect horizontal positioning of some full-width East Asian characters
  1651. (:iss:`1457`)
  1652. - macOS: Render multi-cell PUA characters centered, matching behavior on other
  1653. platforms
  1654. - Linux: Ignore keys if they are designated as layout/group/mode switch keys
  1655. (:iss:`2519`)
  1656. - Marks: Fix marks not handling wide characters and tab characters correctly
  1657. (:iss:`2534`)
  1658. - Add a new :opt:`listen_on` option in kitty.conf to set :option:`kitty --listen-on`
  1659. globally. Also allow using environment variables in this option (:iss:`2569`).
  1660. - Allow sending mouse events in kittens (:pull:`2538`)
  1661. - icat kitten: Fix display of 16-bit depth images (:iss:`2542`)
  1662. - Add ncurses specific terminfo definitions for strikethrough (:pull:`2567`)
  1663. - Fix a regression in 0.17 that broke displaying graphics over SSH
  1664. (:iss:`2568`)
  1665. - Fix :option:`--title` not being applied at window creation time (:iss:`2570`)
  1666. 0.17.2 [2020-03-29]
  1667. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1668. - Add a :option:`launch --watcher` option that allows defining callbacks
  1669. that are called for various events in the window's life-cycle (:iss:`2440`)
  1670. - Fix a regression in 0.17 that broke drawing of borders with non-minimal
  1671. borders (:iss:`2474`)
  1672. - Hints kitten: Allow copying to primary selection as well as clipboard
  1673. (:pull:`2487`)
  1674. - Add a new mappable action ``close_other_windows_in_tab`` to close all but the
  1675. active window (:iss:`2484`)
  1676. - Hints kitten: Adjust the default regex used to detect line numbers to handle
  1677. line+column numbers (:iss:`2268`)
  1678. - Fix blank space at the start of tab bar in the powerline style when first tab is
  1679. inactive (:iss:`2478`)
  1680. - Fix regression causing incorrect rendering of separators in tab bar when
  1681. defining a tab bar background color (:pull:`2480`)
  1682. - Fix a regression in 0.17 that broke the kitty @ launch remote command and
  1683. also broke the --tab-title option when creating a new tab. (:iss:`2488`)
  1684. - Linux: Fix selection of fonts with multiple width variants not preferring
  1685. the normal width faces (:iss:`2491`)
  1686. 0.17.1 [2020-03-24]
  1687. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1688. - Fix :opt:`cursor_underline_thickness` not working (:iss:`2465`)
  1689. - Fix a regression in 0.17 that caused tab bar background to be rendered after
  1690. the last tab as well (:iss:`2464`)
  1691. - macOS: Fix a regression in 0.17 that caused incorrect variants to be
  1692. automatically selected for some fonts (:iss:`2462`)
  1693. - Fix a regression in 0.17 that caused kitty @ set-colors to require setting
  1694. cursor_text_color (:iss:`2470`)
  1695. 0.17.0 [2020-03-24]
  1696. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1697. - :ref:`splits_layout` to arrange windows in arbitrary splits
  1698. (:iss:`2308`)
  1699. - Add support for specifying a background image, see :opt:`background_image`
  1700. (:iss:`163` and :pull:`2326`; thanks to Fredrick Brennan.)
  1701. - A new :opt:`background_tint` option to darken the background under the text
  1702. area when using background images and/or transparent windows.
  1703. - Allow selection of single cells with the mouse. Also improve mouse selection
  1704. to follow semantics common to most programs (:iss:`945`)
  1705. - New options :opt:`cursor_beam_thickness` and :opt:`cursor_underline_thickness` to control the thickness of the
  1706. beam and underline cursors (:iss:`2337` and :pull:`2342`)
  1707. - When the application running in the terminal grabs the mouse, pass middle
  1708. clicks to the application unless `terminal_select_modifiers` are
  1709. pressed (:iss:`2368`)
  1710. - A new ``copy_and_clear_or_interrupt`` function (:iss:`2403`)
  1711. - X11: Fix arrow mouse cursor using right pointing instead of the default left
  1712. pointing arrow (:iss:`2341`)
  1713. - Allow passing the currently active kitty window id in the launch command
  1714. (:iss:`2391`)
  1715. - unicode input kitten: Allow pressing :kbd:`ctrl+tab` to change the input mode
  1716. (:iss:`2343`)
  1717. - Fix a bug that prevented using custom functions with the new marks feature
  1718. (:iss:`2344`)
  1719. - Make the set of URL prefixes that are recognized while hovering with the
  1720. mouse configurable (:iss:`2416`)
  1721. - Fix border/margin/padding sizes not being recalculated on DPI change
  1722. (:iss:`2346`)
  1723. - diff kitten: Fix directory diffing with removed binary files failing
  1724. (:iss:`2378`)
  1725. - macOS: Fix menubar title not updating on OS Window focus change (:iss:`2350`)
  1726. - Fix rendering of combining characters with fonts that have glyphs for
  1727. precomposed characters but not decomposed versions (:iss:`2365`)
  1728. - Fix incorrect rendering of selection when using rectangular select and
  1729. scrolling (:iss:`2351`)
  1730. - Allow setting WM_CLASS and WM_NAME when creating new OS windows with the
  1731. launch command (:option:`launch --os-window-class`)
  1732. - macOS: When switching input method while a pending multi-key input is in
  1733. progress, clear the pending input (:iss:`2358`)
  1734. - Fix a regression in the previous release that broke switching to neighboring windows
  1735. in the Grid layout when there are less than four windows (:iss:`2377`)
  1736. - Fix colors in scrollback pager off if the window has redefined terminal
  1737. colors using escape codes (:iss:`2381`)
  1738. - Fix selection not updating properly while scrolling (:iss:`2442`)
  1739. - Allow extending selections by dragging with right button pressed
  1740. (:iss:`2445`)
  1741. - Workaround for bug in less that causes colors to reset at wrapped lines
  1742. (:iss:`2381`)
  1743. - X11/Wayland: Allow drag and drop of text/plain in addition to text/uri-list
  1744. (:iss:`2441`)
  1745. - Dont strip :code:`&` and :code:`-` from the end of URLs (:iss:`2436`)
  1746. - Fix ``@selection`` placeholder not working with launch command (:iss:`2417`)
  1747. - Drop support for python 3.5
  1748. - Wayland: Fix a crash when drag and dropping into kitty (:iss:`2432`)
  1749. - diff kitten: Fix images lingering as blank rectangles after the kitten quits
  1750. (:iss:`2449`)
  1751. - diff kitten: Fix images losing position when scrolling using mouse
  1752. wheel/touchpad
  1753. 0.16.0 [2020-01-28]
  1754. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1755. - A new :doc:`marks` feature that allows highlighting and scrolling to arbitrary
  1756. text in the terminal window.
  1757. - hints kitten: Allow pressing :sc:`goto_file_line` to quickly open
  1758. the selected file at the selected line in vim or a configurable editor (:iss:`2268`)
  1759. - Allow having more than one full height window in the :code:`tall` layout
  1760. (:iss:`2276`)
  1761. - Allow choosing OpenType features for individual fonts via the
  1762. :opt:`font_features` option. (:pull:`2248`)
  1763. - Wayland: Fix a freeze in rare circumstances when having multiple OS Windows
  1764. (:iss:`2307` and :iss:`1722`)
  1765. - Wayland: Fix window titles being set to very long strings on the order of 8KB
  1766. causing a crash (:iss:`1526`)
  1767. - Add an option :opt:`force_ltr` to turn off the display of text in RTL scripts
  1768. in right-to-left order (:pull:`2293`)
  1769. - Allow opening new tabs/windows before the current tab/window as well as after
  1770. it with the :option:`launch --location` option.
  1771. - Add a :opt:`resize_in_steps` option that can be used to resize the OS window
  1772. in steps as large as character cells (:pull:`2131`)
  1773. - When triple-click+dragging to select multiple lines, extend the selection
  1774. of the first line to match the rest on the left (:pull:`2284`)
  1775. - macOS: Add a :code:`titlebar-only` setting to
  1776. :opt:`hide_window_decorations` to only hide the title bar (:pull:`2286`)
  1777. - Fix a segfault when using ``--debug-config`` with maps (:iss:`2270`)
  1778. - ``goto_tab`` now maps numbers larger than the last tab to the last tab
  1779. (:iss:`2291`)
  1780. - Fix URL detection not working for urls of the form scheme:///url
  1781. (:iss:`2292`)
  1782. - When windows are semi-transparent and all contain graphics, correctly render
  1783. them. (:iss:`2310`)
  1784. 0.15.1 [2019-12-21]
  1785. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1786. - Fix a crash/incorrect rendering when detaching a window in some circumstances
  1787. (:iss:`2173`)
  1788. - hints kitten: Add an option :option:`kitty +kitten hints --ascending` to
  1789. control if the hints numbers increase or decrease from top to bottom
  1790. - Fix :opt:`background_opacity` incorrectly applying to selected text and
  1791. reverse video text (:iss:`2177`)
  1792. - Add a new option :opt:`tab_bar_background` to specify a different color
  1793. for the tab bar (:iss:`2198`)
  1794. - Add a new option :opt:`active_tab_title_template` to specify a different
  1795. template for active tab titles (:iss:`2198`)
  1796. - Fix lines at the edge of the window at certain windows sizes when drawing
  1797. images on a transparent window (:iss:`2079`)
  1798. - Fix window not being rendered for the first time until some input has been
  1799. received from child process (:iss:`2216`)
  1800. 0.15.0 [2019-11-27]
  1801. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1802. - Add a new action :ref:`detach_window <detach_window>` that can be used to move the current
  1803. window into a different tab (:iss:`1310`)
  1804. - Add a new action :doc:`launch <launch>` that unifies launching of processes
  1805. in new kitty windows/tabs.
  1806. - Add a new style ``powerline`` for tab bar rendering, see :opt:`tab_bar_style` (:pull:`2021`)
  1807. - Allow changing colors by mapping a keyboard shortcut to read a kitty config
  1808. file with color definitions. See the :doc:`FAQ <faq>` for details
  1809. (:iss:`2083`)
  1810. - hints kitten: Allow completely customizing the matching and actions performed
  1811. by the kitten using your own script (:iss:`2124`)
  1812. - Wayland: Fix key repeat not being stopped when focus leaves window. This is
  1813. expected behavior on Wayland, apparently (:iss:`2014`)
  1814. - When drawing unicode symbols that are followed by spaces, use multiple cells
  1815. to avoid resized or cut-off glyphs (:iss:`1452`)
  1816. - diff kitten: Allow diffing remote files easily via ssh (:iss:`727`)
  1817. - unicode input kitten: Add an option :option:`kitty +kitten unicode_input
  1818. --emoji-variation` to control the presentation variant of selected emojis
  1819. (:iss:`2139`)
  1820. - Add specialised rendering for a few more box powerline and unicode symbols
  1821. (:pull:`2074` and :pull:`2021`)
  1822. - Add a new socket only mode for :opt:`allow_remote_control`. This makes
  1823. it possible for programs running on the local machine to control kitty
  1824. but not programs running over ssh.
  1825. - hints kitten: Allow using named groups in the regular expression. The named
  1826. groups are passed to the invoked program for further processing.
  1827. - Fix a regression in 0.14.5 that caused rendering of private use glyphs
  1828. with and without spaces to be identical (:iss:`2117`)
  1829. - Wayland: Fix incorrect scale used when first creating an OS window
  1830. (:iss:`2133`)
  1831. - macOS: Disable mouse hiding by default as getting it to work robustly
  1832. on Cocoa is too much effort (:iss:`2158`)
  1833. 0.14.6 [2019-09-25]
  1834. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1835. - macOS: Fix a regression in the previous release that caused a crash when
  1836. pressing a unprintable key, such as the POWER key (:iss:`1997`)
  1837. - Fix a regression in the previous release that caused kitty to not always
  1838. respond to DPI changes (:pull:`1999`)
  1839. 0.14.5 [2019-09-23]
  1840. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1841. - Implement a hack to (mostly) preserve tabs when cat-ting a file with them and then
  1842. copying the text or passing screen contents to another program (:iss:`1829`)
  1843. - When all visible windows have the same background color, use that as the
  1844. color for the global padding, instead of the configured background color
  1845. (:iss:`1957`)
  1846. - When resetting the terminal, also reset parser state, this allows easy
  1847. recovery from incomplete escape codes (:iss:`1961`)
  1848. - Allow mapping keys commonly found on European keyboards (:pull:`1928`)
  1849. - Fix incorrect rendering of some symbols when followed by a space while using
  1850. the PowerLine font which does not have a space glyph (:iss:`1225`)
  1851. - Linux: Allow using fonts with spacing=90 in addition to fonts with
  1852. spacing=100 (:iss:`1968`)
  1853. - Use selection foreground color for underlines as well (:iss:`1982`)
  1854. 0.14.4 [2019-08-31]
  1855. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1856. - hints kitten: Add a :option:`kitty +kitten hints --alphabet` option to
  1857. control what alphabets are used for hints (:iss:`1879`)
  1858. - hints kitten: Allow specifying :option:`kitty +kitten hints --program`
  1859. multiple times to run multiple programs (:iss:`1879`)
  1860. - Add a :opt:`kitten_alias` option that can be used to alias kitten invocation
  1861. for brevity and to change kitten option defaults globally (:iss:`1879`)
  1862. - macOS: Add an option :opt:`macos_show_window_title_in` to control
  1863. showing the window title in the menubar/titlebar (:pull:`1837`)
  1864. - macOS: Allow drag and drop of text from other applications into kitty
  1865. (:pull:`1921`)
  1866. - When running kittens, use the colorscheme of the current window
  1867. rather than the configured colorscheme (:iss:`1906`)
  1868. - Don't fail to start if running the shell to read the EDITOR env var fails
  1869. (:iss:`1869`)
  1870. - Disable the ``liga`` and ``dlig`` OpenType features for broken fonts
  1871. such as Nimbus Mono.
  1872. - Fix a regression that broke setting background_opacity via remote control
  1873. (:iss:`1895`)
  1874. - Fix piping PNG images into the icat kitten not working (:iss:`1920`)
  1875. - When the OS returns a fallback font that does not actually contain glyphs
  1876. for the text, do not exhaust the list of fallback fonts (:iss:`1918`)
  1877. - Fix formatting attributes not reset across line boundaries when passing
  1878. buffer as ANSI (:iss:`1924`)
  1879. 0.14.3 [2019-07-29]
  1880. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1881. - Remote control: Add a command `kitty @ scroll-window` to scroll windows
  1882. - Allow passing a ``!neighbor`` argument to the new_window mapping to open a
  1883. new window next to the active window (:iss:`1746`)
  1884. - Document the kitty remote control protocol (:iss:`1646`)
  1885. - Add a new option :opt:`pointer_shape_when_grabbed` that allows you to control
  1886. the mouse pointer shape when the terminal programs grabs the pointer
  1887. (:iss:`1808`)
  1888. - Add an option `terminal_select_modifiers` to control which modifiers
  1889. are used to override mouse selection even when a terminal application has
  1890. grabbed the mouse (:iss:`1774`)
  1891. - When piping data to a child in the pipe command do it in a thread so as not
  1892. to block the UI (:iss:`1708`)
  1893. - unicode_input kitten: Fix a regression that broke using indices to select
  1894. recently used symbols.
  1895. - Fix a regression that caused closing an overlay window to focus
  1896. the previously focused window rather than the underlying window (:iss:`1720`)
  1897. - macOS: Reduce energy consumption when idle by shutting down Apple's display
  1898. link thread after 30 second of inactivity (:iss:`1763`)
  1899. - Linux: Fix incorrect scaling for fallback fonts when the font has an
  1900. underscore that renders out of bounds (:iss:`1713`)
  1901. - macOS: Fix finding fallback font for private use unicode symbols not working
  1902. reliably (:iss:`1650`)
  1903. - Fix an out of bounds read causing a crash when selecting text with the mouse
  1904. in the alternate screen mode (:iss:`1578`)
  1905. - Linux: Use the system "bell" sound for the terminal bell. Adds libcanberra
  1906. as a new dependency to play the system sound.
  1907. - macOS: Fix a rare deadlock causing kitty to hang (:iss:`1779`)
  1908. - Linux: Fix a regression in 0.14.0 that caused the event loop to tick
  1909. continuously, wasting CPU even when idle (:iss:`1782`)
  1910. - ssh kitten: Make argument parsing more like ssh (:iss:`1787`)
  1911. - When using :opt:`strip_trailing_spaces` do not remove empty lines
  1912. (:iss:`1802`)
  1913. - Fix a crash when displaying very large number of images (:iss:`1825`)
  1914. 0.14.2 [2019-06-09]
  1915. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1916. - Add an option :opt:`placement_strategy` to control how the cell area is
  1917. aligned inside the window when the window size is not an exact multiple
  1918. of the cell size (:pull:`1670`)
  1919. - hints kitten: Add a :option:`kitty +kitten hints --multiple-joiner` option to
  1920. control how multiple selections are serialized when copying to clipboard
  1921. or inserting into the terminal. You can have them on separate lines,
  1922. separated by arbitrary characters, or even serialized as JSON (:iss:`1665`)
  1923. - macOS: Fix a regression in the previous release that broke using
  1924. :kbd:`ctrl+shift+tab` (:iss:`1671`)
  1925. - panel kitten: Fix the contents of the panel kitten not being positioned
  1926. correctly on the vertical axis
  1927. - icat kitten: Fix a regression that broke passing directories to icat
  1928. (:iss:`1683`)
  1929. - clipboard kitten: Add a :option:`kitty +kitten clipboard --wait-for-completion`
  1930. option to have the kitten wait till copying to clipboard is complete
  1931. (:iss:`1693`)
  1932. - Allow using the :doc:`pipe <pipe>` command to send screen and scrollback
  1933. contents directly to the clipboard (:iss:`1693`)
  1934. - Linux: Disable the Wayland backend on GNOME by default as GNOME has no
  1935. support for server side decorations. Can be controlled by
  1936. :opt:`linux_display_server`.
  1937. - Add an option to control the default :opt:`update_check_interval` when
  1938. building kitty packages
  1939. - Wayland: Fix resizing the window on a compositor that does not provide
  1940. server side window decorations, such a GNOME or Weston not working
  1941. correctly (:iss:`1659`)
  1942. - Wayland: Fix crash when enabling disabling monitors on sway (:iss:`1696`)
  1943. 0.14.1 [2019-05-29]
  1944. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1945. - Add an option :opt:`command_on_bell` to run an arbitrary command when
  1946. a bell occurs (:iss:`1660`)
  1947. - Add a shortcut to toggle maximized window state :sc:`toggle_maximized`
  1948. - Add support for the underscore key found in some keyboard layouts
  1949. (:iss:`1639`)
  1950. - Fix a missing newline when using the pipe command between the
  1951. scrollback and screen contents (:iss:`1642`)
  1952. - Fix colors not being preserved when using the pipe command with
  1953. the pager history buffer (:pull:`1657`)
  1954. - macOS: Fix a regression that could cause rendering of a kitty window
  1955. to occasionally freeze in certain situations, such as moving it between
  1956. monitors or transitioning from/to fullscreen (:iss:`1641`)
  1957. - macOS: Fix a regression that caused :kbd:`cmd+v` to double up in the dvorak
  1958. keyboard layout (:iss:`1652`)
  1959. - When resizing and only a single window is present in the current layout,
  1960. use that window's background color to fill in the blank areas.
  1961. - Linux: Automatically increase cell height if the font being used is broken
  1962. and draws the underscore outside the bounding box (:iss:`690`)
  1963. - Wayland: Fix maximizing the window on a compositor that does not provide
  1964. server side window decorations, such a GNOME or Weston not working
  1965. (:iss:`1662`)
  1966. 0.14.0 [2019-05-24]
  1967. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1968. - macOS: The default behavior of the Option key has changed. It now generates
  1969. unicode characters rather than acting as the :kbd:`Alt` modifier. See
  1970. :opt:`macos_option_as_alt`.
  1971. - Support for an arbitrary number of internal clipboard buffers to copy/paste
  1972. from, see (:ref:`cpbuf`)
  1973. - Allow using the new private internal clipboard buffers with the
  1974. :opt:`copy_on_select` option (:iss:`1390`)
  1975. - macOS: Allow opening new kitty tabs/top-level windows from Finder
  1976. (:pull:`1350`)
  1977. - Add an option :opt:`disable_ligatures` to disable
  1978. multi-character ligatures under the cursor to make editing easier
  1979. or disable them completely (:iss:`461`)
  1980. - Allow creating new OS windows in session files (:iss:`1514`)
  1981. - Allow setting OS window size in session files
  1982. - Add an option :opt:`tab_switch_strategy` to control which
  1983. tab becomes active when the current tab is closed (:pull:`1524`)
  1984. - Allow specifying a value of ``none`` for the :opt:`selection_foreground`
  1985. which will cause kitty to not change text color in selections (:iss:`1358`)
  1986. - Make live resizing of OS windows smoother and add an option
  1987. ``resize_draw_strategy`` to control what is drawn while a
  1988. resize is in progress.
  1989. - macOS: Improve handling of IME extended input. Compose characters
  1990. are now highlighted and the IME panel moves along with the text
  1991. (:pull:`1586`). Also fixes handling of delete key in Chinese IME
  1992. (:iss:`1461`)
  1993. - When a window is closed, switch focus to the previously active window (if
  1994. any) instead of picking the previous window in the layout (:iss:`1450`)
  1995. - icat kitten: Add support for displaying images at http(s) URLs (:iss:`1340`)
  1996. - A new option :opt:`strip_trailing_spaces` to optionally remove trailing
  1997. spaces from lines when copying to clipboard.
  1998. - A new option :opt:`tab_bar_min_tabs` to control how many tabs must be
  1999. present before the tab-bar is shown (:iss:`1382`)
  2000. - Automatically check for new releases and notify when an update is available,
  2001. via the system notification facilities. Can be controlled by
  2002. :opt:`update_check_interval` (:iss:`1342`)
  2003. - macOS: Fix :kbd:`cmd+period` key not working (:iss:`1318`)
  2004. - macOS: Add an option `macos_show_window_title_in_menubar` to not
  2005. show the current window title in the menu-bar (:iss:`1066`)
  2006. - macOS: Workaround for cocoa bug that could cause the mouse cursor to become
  2007. hidden in other applications in rare circumstances (:iss:`1218`)
  2008. - macOS: Allow assigning only the left or right :kbd:`Option` key to work as the
  2009. :kbd:`Alt` key. See :opt:`macos_option_as_alt` for details (:iss:`1022`)
  2010. - Fix using remote control to set cursor text color causing errors when
  2011. creating new windows (:iss:`1326`)
  2012. - Fix window title for minimized windows not being updated (:iss:`1332`)
  2013. - macOS: Fix using multi-key sequences to input text ignoring the
  2014. first few key presses if the sequence is aborted (:iss:`1311`)
  2015. - macOS: Add a number of common macOS keyboard shortcuts
  2016. - macOS: Reduce energy consumption by not rendering occluded windows
  2017. - Fix scrollback pager history not being cleared when clearing the
  2018. main scrollback buffer (:iss:`1387`)
  2019. - macOS: When closing a top-level window only switch focus to the previous kitty
  2020. window if it is on the same workspace (:iss:`1379`)
  2021. - macOS: Fix :opt:`sync_to_monitor` not working on Mojave.
  2022. - macOS: Use the system cursor blink interval by default
  2023. :opt:`cursor_blink_interval`.
  2024. - Wayland: Use the kitty Wayland backend by default. Can be switched back
  2025. to using XWayland by setting the environment variable:
  2026. ``KITTY_DISABLE_WAYLAND=1``
  2027. - Add a ``no-append`` setting to :opt:`clipboard_control` to disable
  2028. the kitty copy concatenation protocol extension for OSC 52.
  2029. - Update to using the Unicode 12 standard
  2030. - Unicode input kitten: Allow using the arrow keys in code mode to go to next
  2031. and previous unicode symbol.
  2032. - macOS: Fix specifying initial window size in cells not working correctly on
  2033. Retina screens (:iss:`1444`)
  2034. - Fix a regression in version 0.13.0 that caused background colors of space
  2035. characters after private use unicode characters to not be respected
  2036. (:iss:`1455`)
  2037. - Only update the selected text to clipboard when the selection is finished,
  2038. not continuously as it is updated. (:iss:`1460`)
  2039. - Allow setting :opt:`active_border_color` to ``none`` to not draw a border
  2040. around the active window (:iss:`805`)
  2041. - Use negative values for :opt:`mouse_hide_wait` to hide the mouse cursor
  2042. immediately when pressing a key (:iss:`1534`)
  2043. - When encountering errors in :file:`kitty.conf` report them to the user
  2044. instead of failing to start.
  2045. - Allow the user to control the resize debounce time via
  2046. :opt:`resize_debounce_time`.
  2047. - Remote control: Make the :ref:`at-set-font-size` command more capable.
  2048. It can now increment font size and reset it. It also only acts on the
  2049. active top-level window, by default (:iss:`1581`)
  2050. - When launching child processes set the :code:`PWD` environment variable
  2051. (:iss:`1595`)
  2052. - X11: use the window manager's native full-screen implementation when
  2053. making windows full-screen (:iss:`1605`)
  2054. - Mouse selection: When extending by word, fix extending selection to non-word
  2055. characters not working well (:iss:`1616`)
  2056. 0.13.3 [2019-01-19]
  2057. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2058. - icat kitten: Add a ``--stdin`` option to control if image data is read from
  2059. STDIN (:iss:`1308`)
  2060. - hints kitten: Start hints numbering at one instead of zero by default. Added
  2061. an option ``--hints-offset`` to control it. (:iss:`1289`)
  2062. - Fix a regression in the previous release that broke using ``background`` for
  2063. :opt:`cursor_text_color` (:iss:`1288`)
  2064. - macOS: Fix dragging kitty window tabs in traditional full screen mode causing
  2065. crashes (:iss:`1296`)
  2066. - macOS: Ensure that when running from a bundle, the bundle kitty exe is
  2067. preferred over any kitty in PATH (:iss:`1280`)
  2068. - macOS: Fix a regression that broke mapping of :kbd:`ctrl+tab` (:iss:`1304`)
  2069. - Add a list of user-created kittens to the docs
  2070. - Fix a regression that broke changing mouse wheel scroll direction with
  2071. negative :opt:`wheel_scroll_multiplier` values in full-screen applications
  2072. like vim (:iss:`1299`)
  2073. - Fix :opt:`background_opacity` not working with pure white backgrounds
  2074. (:iss:`1285`)
  2075. - macOS: Fix "New OS Window" dock action not working when kitty is not focused
  2076. (:iss:`1312`)
  2077. - macOS: Add aliases for close window and new tab actions that conform to common
  2078. Apple shortcuts for these actions (:iss:`1313`)
  2079. - macOS: Fix some kittens causing 100% CPU usage
  2080. 0.13.2 [2019-01-04]
  2081. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2082. - Add a new option :opt:`tab_title_template` to control how tab titles
  2083. are formatted. In particular the template can be used to display
  2084. the tab number next to the title (:iss:`1223`)
  2085. - Report the current foreground processes as well as the original child process,
  2086. when using `kitty @ ls`
  2087. - Use the current working directory of the foreground process for the
  2088. `*_with_cwd` actions that open a new window with the current working
  2089. directory.
  2090. - Add a new ``copy_or_interrupt`` action that can be mapped to kbd:`ctrl+c`. It
  2091. will copy if there is a selection and interrupt otherwise (:iss:`1286`)
  2092. - Fix setting :opt:`background_opacity` causing window margins/padding to be slightly
  2093. different shade from background (:iss:`1221`)
  2094. - Handle keyboards with a "+" key (:iss:`1224`)
  2095. - Fix Private use Unicode area characters followed by spaces at the end of text
  2096. not being rendered correctly (:iss:`1210`)
  2097. - macOS: Add an entry to the dock menu to open a new OS window (:iss:`1242`)
  2098. - macOS: Fix scrolling very slowly with wheel mice not working (:iss:`1238`)
  2099. - Fix changing :opt:`cursor_text_color` via remote control not working
  2100. (:iss:`1229`)
  2101. - Add an action to resize windows that can be mapped to shortcuts in :file:`kitty.conf`
  2102. (:pull:`1245`)
  2103. - Fix using the ``new_tab !neighbor`` action changing the order of the
  2104. non-neighboring tabs (:iss:`1256`)
  2105. - macOS: Fix momentum scrolling continuing when changing the active window/tab
  2106. (:iss:`1267`)
  2107. 0.13.1 [2018-12-06]
  2108. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2109. - Fix passing input via the pipe action to a program without a window not
  2110. working.
  2111. - Linux: Fix a regression in the previous release that caused automatic
  2112. selection of bold/italic fonts when using aliases such as "monospace" to not
  2113. work (:iss:`1209`)
  2114. - Fix resizing window smaller and then restoring causing some wrapped lines to not
  2115. be properly unwrapped (:iss:`1206`)
  2116. 0.13.0 [2018-12-05]
  2117. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2118. - Add an option :opt:`scrollback_pager_history_size` to tell kitty to store
  2119. extended scrollback to use when viewing the scrollback buffer in a pager
  2120. (:iss:`970`)
  2121. - Modify the kittens sub-system to allow creating custom kittens without any
  2122. user interface. This is useful for creating more complex actions that can
  2123. be bound to key presses in :file:`kitty.conf`. See
  2124. doc:`kittens/custom`. (:iss:`870`)
  2125. - Add a new ``nth_window`` action that can be used to go to the nth window and
  2126. also previously active windows, using negative numbers. Similarly,
  2127. ``goto_tab`` now accepts negative numbers to go to previously active tabs
  2128. (:iss:`1040`)
  2129. - Allow hiding the tab bar completely, by setting :opt:`tab_bar_style` to
  2130. ``hidden``. (:iss:`1014`)
  2131. - Allow private use unicode characters to stretch over more than a single
  2132. neighboring space (:pull:`1036`)
  2133. - Add a new :opt:`touch_scroll_multiplier` option to modify the amount
  2134. scrolled by high precision scrolling devices such as touchpads (:pull:`1129`)
  2135. - icat kitten: Implement reading image data from STDIN, if STDIN is not
  2136. connected to a terminal (:iss:`1130`)
  2137. - hints kitten: Insert trailing spaces after matches when using the
  2138. ``--multiple`` option. Also add a separate ``--add-trailing-space``
  2139. option to control this behavior (:pull:`1132`)
  2140. - Fix the ``*_with_cwd`` actions using the cwd of the overlay window rather
  2141. than the underlying window's cwd (:iss:`1045`)
  2142. - Fix incorrect key repeat rate on wayland (:pull:`1055`)
  2143. - macOS: Fix drag and drop of files not working on Mojave (:iss:`1058`)
  2144. - macOS: Fix IME input for East Asian languages (:iss:`910`)
  2145. - macOS: Fix rendering frames-per-second very low when processing
  2146. large amounts of input in small chunks (:pull:`1082`)
  2147. - macOS: Fix incorrect text sizes calculated when using an external display
  2148. that is set to mirror the main display (:iss:`1056`)
  2149. - macOS: Use the system default double click interval (:pull:`1090`)
  2150. - macOS: Fix touch scrolling sensitivity low on retina screens (:iss:`1112`)
  2151. - Linux: Fix incorrect rendering of some fonts when hinting is disabled at
  2152. small sizes (:iss:`1173`)
  2153. - Linux: Fix match rules used as aliases in Fontconfig configuration not being
  2154. respected (:iss:`1085`)
  2155. - Linux: Fix a crash when using the GNU Unifont as a fallback font
  2156. (:iss:`1087`)
  2157. - Wayland: Fix copying from hidden kitty windows hanging (:iss:`1051`)
  2158. - Wayland: Add support for the primary selection protocol
  2159. implemented by some compositors (:pull:`1095`)
  2160. - Fix expansion of env vars not working in the :opt:`env` directive
  2161. (:iss:`1075`)
  2162. - Fix :opt:`mouse_hide_wait` only taking effect after an event such as cursor
  2163. blink or key press (:iss:`1073`)
  2164. - Fix the ``set_background_opacity`` action not working correctly
  2165. (:pull:`1147`)
  2166. - Fix second cell of emoji created using variation selectors not having
  2167. the same attributes as the first cell (:iss:`1109`)
  2168. - Fix focusing neighboring windows in the grid layout with less than 4 windows
  2169. not working (:iss:`1115`)
  2170. - Fix :kbd:`ctrl+shift+special` key not working in normal and application keyboard
  2171. modes (:iss:`1114`)
  2172. - Add a terminfo entry for full keyboard mode.
  2173. - Fix incorrect text-antialiasing when using very low background opacity
  2174. (:iss:`1005`)
  2175. - When double or triple clicking ignore clicks if they are "far" from each
  2176. other (:iss:`1093`)
  2177. - Follow xterm's behavior for the menu key (:iss:`597`)
  2178. - Fix hover detection of URLs not working when hovering over the first colon
  2179. and slash characters in short URLs (:iss:`1201`)
  2180. 0.12.3 [2018-09-29]
  2181. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2182. - macOS: Fix kitty window not being rendered on macOS Mojave until the window is
  2183. moved or resized at least once (:iss:`887`)
  2184. - Unicode input: Fix an error when searching for the string 'fir' (:iss:`1035`)
  2185. 0.12.2 [2018-09-24]
  2186. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2187. - A new ``last_used_layout`` function that can be mapped to a shortcut to
  2188. switch to the previously used window layout (:iss:`870`)
  2189. - New ``neighboring_window`` and ``move_window`` functions to switch to
  2190. neighboring windows in the current layout, and move them around, similar to
  2191. window movement in vim (:iss:`916`)
  2192. - A new ``pipe`` function that can be used to pipe the contents of the screen
  2193. and scrollback buffer to any desired program running in a new window, tab or
  2194. overlay window. (:iss:`933`)
  2195. - Add a new :option:`kitty --start-as` command line flag to start kitty
  2196. full-screen/maximized/minimized. This replaces the ``--start-in-fullscreen``
  2197. flag introduced in the previous release (:iss:`935`)
  2198. - When mapping the ``new_tab`` action allow specifying that the tab should open
  2199. next to the current tab instead of at the end of the tabs list (:iss:`979`)
  2200. - macOS: Add a new :opt:`macos_thicken_font` to make text rendering
  2201. on macs thicker, which makes it similar to the result of
  2202. sub-pixel antialiasing (:pull:`950`)
  2203. - macOS: Add an option :opt:`macos_traditional_fullscreen` to make
  2204. full-screening of kitty windows much faster, but less pretty. (:iss:`911`)
  2205. - Fix a bug causing incorrect line ordering when viewing the scrollback buffer
  2206. if the scrollback buffer is full (:iss:`960`)
  2207. - Fix drag-scrolling not working when the mouse leaves the window confines
  2208. (:iss:`917`)
  2209. - Workaround for broken editors like nano that cannot handle newlines in pasted text
  2210. (:iss:`994`)
  2211. - Linux: Ensure that the python embedded in the kitty binary build uses
  2212. UTF-8 mode to process command-line arguments (:iss:`924`)
  2213. - Linux: Handle fonts that contain monochrome bitmaps (such as the Terminus TTF
  2214. font) (:pull:`934`)
  2215. - Have the :option:`kitty --title` flag apply to all windows created
  2216. using :option:`kitty --session` (:iss:`921`)
  2217. - Revert change for backspacing of wide characters in the previous release,
  2218. as it breaks backspacing in some wide character aware programs (:iss:`875`)
  2219. - Fix kitty @set-colors not working for tab backgrounds when using the `fade` tabbar style
  2220. (:iss:`937`)
  2221. - macOS: Fix resizing semi-transparent windows causing the windows to be
  2222. invisible during the resize (:iss:`941`)
  2223. - Linux: Fix window icon not set on X11 for the first OS window (:iss:`961`)
  2224. - macOS: Add an :opt:`macos_custom_beam_cursor` option to use a special
  2225. mouse cursor image that can be seen on both light and dark backgrounds
  2226. (:iss:`359`)
  2227. - Remote control: Fix the ``focus_window`` command not focusing the
  2228. top-level OS window of the specified kitty window (:iss:`1003`)
  2229. - Fix using :opt:`focus_follows_mouse` causing text selection with the
  2230. mouse to malfunction when using multiple kitty windows (:iss:`1002`)
  2231. 0.12.1 [2018-09-08]
  2232. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2233. - Add a new ``--start-in-fullscreen`` command line flag to start
  2234. kitty in full screen mode (:iss:`856`)
  2235. - macOS: Fix a character that cannot be rendered in any font causing
  2236. font fallback for all subsequent characters that cannot be rendered in the
  2237. main font to fail (:iss:`799`)
  2238. - Linux: Do not enable IME input via ibus unless the ``GLFW_IM_MODULE=ibus``
  2239. environment variable is set. IME causes key processing latency and even
  2240. missed keystrokes for many people, so it is now off by default.
  2241. - Fix backspacing of wide characters in wide-character unaware programs not working (:iss:`875`)
  2242. - Linux: Fix number pad arrow keys not working when Numlock is off (:iss:`857`)
  2243. - Wayland: Implement support for clipboard copy/paste (:iss:`855`)
  2244. - Allow mapping shortcuts using the raw key code from the OS (:iss:`848`)
  2245. - Allow mapping of individual key-presses without modifiers as shortcuts
  2246. - Fix legacy invocation of icat as `kitty icat` not working (:iss:`850`)
  2247. - Improve rendering of wavy underline at small font sizes (:iss:`853`)
  2248. - Fix a regression in 0.12.0 that broke dynamic resizing of layouts (:iss:`860`)
  2249. - Wayland: Allow using the :code:`kitty --class` command line flag
  2250. to set the app id (:iss:`862`)
  2251. - Add completion of the kitty command for the fish shell (:pull:`829`)
  2252. - Linux: Fix XCompose rules with no defined symbol not working (:iss:`880`)
  2253. - Linux: Fix crash with some Nvidia drivers when creating tabs in the first
  2254. top level-window after creating a second top-level window. (:iss:`873`)
  2255. - macOS: Diff kitten: Fix syntax highlighting not working because of
  2256. a bug in the 0.12.0 macOS package
  2257. 0.12.0 [2018-09-01]
  2258. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2259. - Preserve the mouse selection even when the contents of the screen are
  2260. scrolled or overwritten provided the new text does not intersect the
  2261. selected lines.
  2262. - Linux: Implement support for Input Method Extensions (multilingual input
  2263. using standard keyboards) via `IBus
  2264. <https://github.com/ibus/ibus/wiki/ReadMe>`_ (:iss:`469`)
  2265. - Implement completion for the kitty command in bash and zsh. See
  2266. :ref:`shell_integration`.
  2267. - Render the text under the cursor in a fixed color, configurable via
  2268. the option :opt:`cursor_text_color` (:iss:`126`)
  2269. - Add an option :opt:`env` to set environment variables in child processes
  2270. from kitty.conf
  2271. - Add an action to the ``clear_terminal`` function to scroll the screen
  2272. contents into the scrollback buffer (:iss:`1113`)
  2273. - Implement high precision scrolling with the trackpad on platforms such as
  2274. macOS and Wayland that implement it. (:pull:`819`)
  2275. - macOS: Allow scrolling window contents using mouse wheel/trackpad even when the
  2276. window is not the active window (:iss:`729`)
  2277. - Remote control: Allow changing the current window layout with a new
  2278. :ref:`at-goto-layout` command (:iss:`845`)
  2279. - Remote control: Allow matching windows by the environment variables of their
  2280. child process as well
  2281. - Allow running kittens via the remote control system (:iss:`738`)
  2282. - Allow enabling remote control in only some kitty windows
  2283. - Add a keyboard shortcut to reset the terminal (:sc:`reset_terminal`). It
  2284. takes parameters so you can define your own shortcuts to clear the
  2285. screen/scrollback also (:iss:`747`)
  2286. - Fix one-pixel line appearing at window edges at some window sizes when
  2287. displaying images with background opacity enabled (:iss:`741`)
  2288. - diff kitten: Fix error when right hand side file is binary and left hand side
  2289. file is text (:pull:`752`)
  2290. - kitty @ new-window: Add a new option :option:`kitten @ new-window --window-type`
  2291. to create top-level OS windows (:iss:`770`)
  2292. - macOS: The :opt:`focus_follows_mouse` option now also works across top-level kitty OS windows
  2293. (:iss:`754`)
  2294. - Fix detection of URLs in HTML source code (URLs inside quotes) (:iss:`785`)
  2295. - Implement support for emoji skin tone modifiers (:iss:`787`)
  2296. - Round-trip the zwj unicode character. Rendering of sequences containing zwj
  2297. is still not implemented, since it can cause the collapse of an unbounded
  2298. number of characters into a single cell. However, kitty at least preserves
  2299. the zwj by storing it as a combining character.
  2300. - macOS: Disable the custom mouse cursor. Using a custom cursor fails on dual
  2301. GPU machines. I give up, Apple users will just have to live with the
  2302. limitations of their choice of OS. (:iss:`794`)
  2303. - macOS: Fix control+tab key combination not working (:iss:`801`)
  2304. - Linux: Fix slow startup on some systems caused by GLFW searching for
  2305. joysticks. Since kitty does not use joysticks, disable joystick support.
  2306. (:iss:`830`)
  2307. 0.11.3 [2018-07-10]
  2308. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2309. - Draw only the minimum borders needed for inactive windows. That is only the borders
  2310. that separate the inactive window from a neighbor. Note that setting
  2311. a non-zero window margin overrides this and causes all borders to be drawn.
  2312. The old behavior of drawing all borders can be restored via the
  2313. :opt:`draw_minimal_borders` setting in kitty.conf. (:iss:`699`)
  2314. - macOS: Add an option :opt:`macos_window_resizable` to control if kitty
  2315. top-level windows are resizable using the mouse or not (:iss:`698`)
  2316. - macOS: Use a custom mouse cursor that shows up well on both light and dark backgrounds
  2317. (:iss:`359`)
  2318. - macOS: Workaround for switching from fullscreen to windowed mode with the
  2319. titlebar hidden causing window resizing to not work. (:iss:`711`)
  2320. - Fix triple-click to select line not working when the entire line is filled
  2321. (:iss:`703`)
  2322. - When dragging to select with the mouse "grab" the mouse so that if it strays
  2323. into neighboring windows, the selection is still updated (:pull:`624`)
  2324. - When clicking in the margin/border area of a window, map the click to the
  2325. nearest cell in the window. Avoids selection with the mouse failing when
  2326. starting the selection just outside the window.
  2327. - When drag-scrolling stop the scroll when the mouse button is released.
  2328. - Fix a regression in the previous release that caused pasting large amounts
  2329. of text to be duplicated (:iss:`709`)
  2330. 0.11.2 [2018-07-01]
  2331. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2332. - Linux: Allow using XKB key names to bind shortcuts to keys not supported by GLFW (:pull:`665`)
  2333. - kitty shell: Ignore failure to read readline history file. Happens if the
  2334. user migrates their kitty cache directory between systems with incompatible
  2335. readline implementations.
  2336. - macOS: Fix an error in remote control when using --listen-on (:iss:`679`)
  2337. - hints kitten: Add a :option:`kitty +kitten hints --multiple` option to select
  2338. multiple items (:iss:`687`)
  2339. - Fix pasting large amounts of text very slow (:iss:`682`)
  2340. - Add an option :opt:`single_window_margin_width` to allow different margins
  2341. when only a single window is visible in the layout (:iss:`688`)
  2342. - Add a :option:`kitty --hold` command line option to stay open after the child process exits (:iss:`667`)
  2343. - diff kitten: When triggering a search scroll to the first match automatically
  2344. - :option:`kitty --debug-font-fallback` also prints out what basic fonts were matched
  2345. - When closing a kitty window reset the mouse cursor to its default shape and ensure it is visible (:iss:`655`).
  2346. - Remote control: Speed-up reading of command responses
  2347. - Linux installer: Fix installer failing on systems with python < 3.5
  2348. - Support "-T" as an alias for "--title" (:pull:`659`)
  2349. - Fix a regression in the previous release that broke using
  2350. ``--debug-config`` with custom key mappings (:iss:`695`)
  2351. 0.11.1 [2018-06-17]
  2352. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2353. - diff kitten: Implement searching for text in the diff (:iss:`574`)
  2354. - Add an option :opt:`startup_session` to :file:`kitty.conf` to specify a
  2355. default startup session (:iss:`641`)
  2356. - Add a command line option :option:`kitty --wait-for-single-instance-window-close`
  2357. to make :option:`kitty --single-instance` wait for the closing of the newly opened
  2358. window before quitting (:iss:`630`)
  2359. - diff kitten: Allow theming the selection background/foreground as well
  2360. - diff kitten: Display CRLF line endings using the unicode return symbol
  2361. instead of <d> as it is less intrusive (:iss:`638`)
  2362. - diff kitten: Fix default foreground/background colors not being restored when
  2363. kitten quits (:iss:`637`)
  2364. - Fix :option:`kitten @ set-colors --all` not working when more than one window
  2365. present (:iss:`632`)
  2366. - Fix a regression that broke the legacy increase/decrease_font_size actions
  2367. - Clear scrollback on reset (:iss:`631`)
  2368. 0.11.0 [2018-06-12]
  2369. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2370. - A new tab bar style "fade" in which each tab's edges fade into the background.
  2371. See :opt:`tab_bar_style` and :opt:`tab_fade` for details. The old look can be
  2372. restored by setting :opt:`tab_bar_style` to :code:`separator`.
  2373. - :doc:`Pre-compiled binaries <binary>` with all bundled dependencies for Linux
  2374. (:iss:`595`)
  2375. - A :doc:`new kitten <kittens/panel>` to create dock panels on X11 desktops
  2376. showing the output from arbitrary terminal programs.
  2377. - Reduce data sent to the GPU per render by 30% (:commit:`8dea5b3`)
  2378. - Implement changing the font size for individual top level (OS) windows
  2379. (:iss:`408`)
  2380. - When viewing the scrollback in less using :sc:`show_scrollback` and kitty
  2381. is currently scrolled, position the scrollback in less to match kitty's
  2382. scroll position. (:iss:`148`)
  2383. - ssh kitten: Support all SSH options. It can now be aliased directly to ssh
  2384. for convenience. (:pull:`591`)
  2385. - icat kitten: Add :option:`kitty +kitten icat --print-window-size` to easily
  2386. detect the window size in pixels from scripting languages (:iss:`581`)
  2387. - hints kitten: Allow selecting hashes from the terminal with
  2388. :sc:`insert_selected_hash` useful for git commits. (:pull:`604`)
  2389. - Allow specifying initial window size in number of cells in addition to pixels
  2390. (:iss:`436`)
  2391. - Add a setting to control the margins to the left and right of the tab-bar
  2392. (:iss:`584`)
  2393. - When closing a tab switch to the last active tab instead of the right-most
  2394. tab (:iss:`585`)
  2395. - Wayland: Fix kitty not starting when using wl_roots based compositors
  2396. (:iss:`157`)
  2397. - Wayland: Fix mouse wheel/touchpad scrolling in opposite direction to other apps (:iss:`594`)
  2398. - macOS: Fix the new OS window keyboard shortcut (:sc:`new_os_window`) not
  2399. working if no kitty window currently has focus. (:iss:`524`)
  2400. - macOS: Keep kitty running even when the last window is closed. This is in
  2401. line with how applications are supposed to behave on macOS (:iss:`543`).
  2402. There is a new option (:opt:`macos_quit_when_last_window_closed`) to control
  2403. this.
  2404. - macOS: Add macOS standard shortcuts for copy, paste and new OS window
  2405. (⌘+C, ⌘+V, ⌘+N)
  2406. - Add a config option (:opt:`editor`) to set the EDITOR kitty uses (:iss:`580`)
  2407. - Add a config option (``x11_hide_window_decorations``) to hide window
  2408. decorations under X11/Wayland (:iss:`607`)
  2409. - Add an option to @set-window-title to make the title change non-permanent
  2410. (:iss:`592`)
  2411. - Add support for the CSI t escape code to query window and cell sizes
  2412. (:iss:`581`)
  2413. - Linux: When using layouts that map the keys to non-ascii characters,
  2414. map shortcuts using the ascii equivalents, from the default layout.
  2415. (:iss:`606`)
  2416. - Linux: Fix fonts not being correctly read from TrueType Collection
  2417. (.ttc) files (:iss:`577`)
  2418. - Fix :opt:`inactive_text_alpha` also applying to the tab bar (:iss:`612`)
  2419. - :doc:`hints kitten <kittens/hints>`: Fix a regression that caused some blank lines to be not
  2420. be displayed.
  2421. - Linux: Include a man page and the HTML docs when building the linux-package
  2422. - Remote control: Fix kitty @ sometimes failing to read the response from
  2423. kitty. (:iss:`614`)
  2424. - Fix `kitty @ set-colors` not working with the window border colors.
  2425. (:iss:`623`)
  2426. - Fix a regression in 0.10 that caused incorrect rendering of the status bar in
  2427. irssi when used inside screen. (:iss:`621`)
  2428. 0.10.1 [2018-05-24]
  2429. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2430. - Add a kitten to easily ssh into servers that automatically copies the
  2431. terminfo files over. ``kitty +kitten ssh myserver``.
  2432. - diff kitten: Make the keyboard shortcuts configurable (:iss:`563`)
  2433. - Allow controlling *background_opacity* via either keyboard shortcuts or
  2434. remote control. Note that you must set *dynamic_background_opacity yes* in
  2435. kitty.conf first. (:iss:`569`)
  2436. - diff kitten: Add keybindings to scroll by page
  2437. - diff kitten: Fix incorrect syntax highlighting for a few file formats such as
  2438. yaml
  2439. - macOS: Fix regression that caused the *macos_option_as_alt* setting to always
  2440. be disabled for all OS windows in a kitty instance after the first window
  2441. (:iss:`571`)
  2442. - Fix Ctrl+Alt+Space not working in normal and application keyboard modes
  2443. (:iss:`562`)
  2444. 0.10.0 [2018-05-21]
  2445. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2446. - A diff kitten to show side-by-side diffs with syntax highlighting and support
  2447. for images. See :doc:`diff kitten <kittens/diff>`.
  2448. - Make windows in the various kitty layouts manually resizable. See
  2449. :ref:`layouts` for details.
  2450. - Implement support for the SGR *faint* escape code to make text blend
  2451. into the background (:iss:`446`).
  2452. - Make the hints kitten a little smarter (:commit:`ad1109b`)
  2453. so that URLs that stretch over multiple lines are detected. Also improve
  2454. detection of surrounding brackets/quotes.
  2455. - Make the kitty window id available as the environment variable
  2456. ``KITTY_WINDOW_ID`` (:iss:`532`).
  2457. - Add a "fat" layout that is similar to the "tall" layout but vertically
  2458. oriented.
  2459. - Expand environment variables in config file include directives
  2460. - Allow programs running in kitty to read/write from the clipboard (:commit:`889ca77`).
  2461. By default only writing is allowed. This feature is supported in many
  2462. terminals, search for `OSC 52 clipboard` to find out more about using it.
  2463. - Fix moving cursor outside a defined page area incorrectly causing the cursor
  2464. to be placed inside the page area. Caused incorrect rendering in neovim, in
  2465. some situations (:iss:`542`).
  2466. - Render a couple more powerline symbols directly, bypassing the font
  2467. (:iss:`550`).
  2468. - Fix ctrl+alt+<special> not working in normal and application keyboard (:iss:`548`).
  2469. - Partial fix for rendering Right-to-left languages like Arabic. Rendering of
  2470. Arabic is never going to be perfect, but now it is at least readable.
  2471. - Fix Ctrl+backspace acting as plain backspace in normal and application
  2472. keyboard modes (:iss:`538`).
  2473. - Have the paste_from_selection action paste from the clipboard on platforms
  2474. that do not have a primary selection such as Wayland and macOS
  2475. (:iss:`529`)
  2476. - Fix cursor_stop_blinking_after=0 not working (:iss:`530`)
  2477. 0.9.1 [2018-05-05]
  2478. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2479. - Show a bell symbol on the tab if a bell occurs in one of the windows in the tab and
  2480. the window is not the currently focused window
  2481. - Change the window border color if a bell occurs in an unfocused window. Can
  2482. be disabled by setting the bell_border_color to be the same as the
  2483. inactive_border_color.
  2484. - macOS: Add support for dead keys
  2485. - Unicode input: When searching by name search for prefix matches as well as
  2486. whole word matches
  2487. - Dynamically allocate the memory used for the scrollback history buffer.
  2488. Reduces startup memory consumption when using very large scrollback
  2489. buffer sizes.
  2490. - Add an option to not request window attention on bell.
  2491. - Remote control: Allow matching windows by number (visible position).
  2492. - macOS: Fix changing tab title and kitty shell not working
  2493. - When triple-clicking select all wrapped lines belonging to a single logical line.
  2494. - hints kitten: Detect bracketed URLs and don't include the closing bracket in the URL.
  2495. - When calling pass_selection_to_program use the current directory of the child
  2496. process as the cwd of the program.
  2497. - Add macos_hide_from_tasks option to hide kitty from the macOS task switcher
  2498. - macOS: When the macos_titlebar_color is set to background change the titlebar
  2499. colors to match the current background color of the active kitty window
  2500. - Add a setting to clear all shortcuts defined up to that point in the config
  2501. file(s)
  2502. - Add a setting (kitty_mod) to change the modifier used by all the default
  2503. kitty shortcuts, globally
  2504. - Fix Shift+function key not working
  2505. - Support the F13 to F25 function keys
  2506. - Don't fail to start if the user deletes the hintstyle key from their
  2507. fontconfig configuration.
  2508. - When rendering a private use unicode codepoint and a space as a two cell
  2509. ligature, set the foreground colors of the space cell to match the colors of
  2510. the first cell. Works around applications like powerline that use different
  2511. colors for the two cells.
  2512. - Fix passing @text to other programs such as when viewing the scrollback
  2513. buffer not working correctly if kitty is itself scrolled up.
  2514. - Fix window focus gained/lost events not being reported to child programs when
  2515. switching windows/tabs using the various keyboard shortcuts.
  2516. - Fix tab title not changing to reflect the window title when switching between different windows in a tab
  2517. - Ignore -e if it is specified on the command line. This is for compatibility
  2518. with broken software that assumes terminals should run with an -e option to
  2519. execute commands instead of just passing the commands as arguments.
  2520. 0.9.0 [2018-04-15]
  2521. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2522. - A new kitty command shell to allow controlling kitty via commands. Press
  2523. `ctrl+shift+escape` to run the shell.
  2524. - The hints kitten has become much more powerful. Now in addition to URLs you
  2525. can use it to select word, paths, filenames, lines, etc. from the screen.
  2526. These can be inserted into the terminal, copied to clipboard or sent to
  2527. external programs.
  2528. - Linux: Switch to libxkbcommon for keyboard handling. It allows kitty to
  2529. support XCompose and dead keys and also react to keyboard remapping/layout
  2530. change without needing a restart.
  2531. - Add support for multiple-key-sequence shortcuts
  2532. - A new remote control command `set-colors` to change the current and/or
  2533. configured colors.
  2534. - When double-clicking to select a word, select words that continue onto the
  2535. next/prev line as well.
  2536. - Add an `include` directive for the config files to read multiple config files
  2537. - Improve mouse selection for windows with padding. Moving the mouse into the
  2538. padding area now acts as if the mouse is over the nearest cell.
  2539. - Allow setting all 256 terminal colors in the config file
  2540. - Fix using `kitty --single-instance` to open a new window in a running kitty
  2541. instance, not respecting the `--directory` flag
  2542. - URL hints: Exclude trailing punctuation from URLs
  2543. - URL hints: Launch the browser from the kitty parent process rather than the
  2544. hints kitten. Fixes launching on some systems where xdg-open doesn't like
  2545. being run from a kitten.
  2546. - Allow using rectangle select mode by pressing shift in addition to the
  2547. rectangle select modifiers even when the terminal program has grabbed the
  2548. mouse.
  2549. 0.8.4 [2018-03-31]
  2550. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2551. - Fix presence of XDG_CONFIG_DIRS and absence of XDG_CONFIG_HOME preventing
  2552. kitty from starting
  2553. - Revert change in last release to cell width calculation. Instead just clip
  2554. the right edges of characters that overflow the cell by at most two pixels
  2555. 0.8.3 [2018-03-29]
  2556. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2557. - Fix a regression that broke the visual bell and invert screen colors escape
  2558. code
  2559. - Allow double-click and triple-click + drag to extend selections word at a
  2560. time or line at a time
  2561. - Add a keyboard shortcut to set the tab title
  2562. - Fix setting window title to empty via OSC escape code not working correctly
  2563. - Linux: Fix cell width calculation incorrect for some fonts (cell widths are
  2564. now calculated by actually rendering bitmaps, which is slower but more
  2565. accurate)
  2566. - Allow specifying a system wide kitty config file, for all users
  2567. - Add a --debug-config command line flag to output data about the system and
  2568. kitty configuration.
  2569. - Wayland: Fix auto-repeat of keys not working
  2570. 0.8.2 [2018-03-17]
  2571. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2572. - Allow extending existing selections by right clicking
  2573. - Add a configurable keyboard shortcut and remote command to set the font size to a specific value
  2574. - Add an option to have kitty close the window when the main processes running in it exits, even if there are still background processes writing to that terminal
  2575. - Add configurable keyboard shortcuts to switch to a specific layout
  2576. - Add a keyboard shortcut to edit the kitty config file easily
  2577. - macOS: Fix restoring of window size not correct on Retina screens
  2578. - macOS: Add a facility to specify command line arguments when running kitty from the GUI
  2579. - Add a focus-tab remote command
  2580. - Fix screen not being refreshed immediately after moving a window.
  2581. - Fix a crash when getting the contents of the scrollback buffer as text
  2582. 0.8.1 [2018-03-09]
  2583. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2584. - Extend kitty's remote control feature to work over both UNIX and TCP sockets,
  2585. so now you can control kitty from across the internet, if you want to.
  2586. - Render private use unicode characters that are followed by a space as a two
  2587. character ligature. This fixes rendering for applications that misuse
  2588. private-use characters to display square symbols.
  2589. - Fix Unicode emoji presentation variant selector causing new a fallback font
  2590. instance to be created
  2591. - Fix a rare error that prevented the Unicode input kitten from working
  2592. sometimes
  2593. - Allow using Ctrl+Alt+letter in legacy keyboard modes by outputting them as Ctrl+letter and Alt+letter.
  2594. This matches other terminals' behavior.
  2595. - Fix cursor position off-by-one on horizontal axis when resizing the terminal
  2596. - Wayland: Fix auto-repeat of keys not working
  2597. - Wayland: Add support for window decorations provided by the Wayland shell
  2598. - macOS: Fix URL hints not working
  2599. - macOS: Fix shell not starting in login mode on some computers
  2600. - macOS: Output errors into console.app when running as a bundle
  2601. 0.8.0 [2018-02-24]
  2602. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2603. - A framework for kittens, that is, small terminal programs designed to run
  2604. inside kitty and extend its capabilities. Examples include unicode input and
  2605. selecting URLs with the keyboard.
  2606. - Input arbitrary unicode characters by pressing Ctrl+Shift+u. You can choose
  2607. characters by name, by hex code, by recently used, etc. There is even and
  2608. editable Favorites list.
  2609. - Open URLs using only the keyboard. kitty has a new "hints mode". Press
  2610. Ctrl+Shift+e and all detected URLs on the screen are highlighted with a key
  2611. to press to open them. The facility is customizable so you can change
  2612. what is detected as a URL and which program is used to open it.
  2613. - Add an option to change the titlebar color of kitty windows on macOS
  2614. - Only consider Emoji characters with default Emoji presentation to be two
  2615. cells wide. This matches the standard. Also add support for the Unicode Emoji
  2616. variation presentation selector.
  2617. - Prevent video tearing during high speed scrolling by syncing draws
  2618. to the monitor's refresh rate. There is a new configuration option to
  2619. control this ``sync_to_monitor``.
  2620. - When displaying only a single window, use the default background color of the
  2621. window (which can be changed via escape codes) as the color for the margin
  2622. and padding of the window.
  2623. - Add some non standard terminfo capabilities used by neovim and tmux.
  2624. - Fix large drop in performance when using multiple top-level windows on macOS
  2625. - Fix save/restore of window sizes not working correctly.
  2626. - Remove option to use system wcwidth(). Now always use a wcwidth() based on
  2627. the Unicode standard. Only sane way.
  2628. - Fix a regression that caused a few ligature glyphs to not render correctly in
  2629. rare circumstances.
  2630. - Browsing the scrollback buffer now happens in an overlay window instead of a
  2631. new window/tab.
  2632. 0.7.1 [2018-01-31]
  2633. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2634. - Add an option to adjust the width of character cells
  2635. - Fix selecting text with the mouse in the scrollback buffer selecting text
  2636. from the line above the actually selected line
  2637. - Fix some italic fonts having the right edge of characters cut-off,
  2638. unnecessarily
  2639. 0.7.0 [2018-01-24]
  2640. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2641. - Allow controlling kitty from the shell prompt/scripts. You can
  2642. open/close/rename windows and tabs and even send input to specific windows.
  2643. See the README for details.
  2644. - Add option to put tab bar at the top instead of the bottom
  2645. - Add option to override the default shell
  2646. - Add "Horizontal" and "Vertical" window layouts
  2647. - Sessions: Allow setting titles and working directories for individual windows
  2648. - Option to copy to clipboard on mouse select
  2649. - Fix incorrect reporting of mouse move events when using the SGR protocol
  2650. - Make alt+backspace delete the previous word
  2651. - Take the mouse wheel multiplier option in to account when generating fake key
  2652. scroll events
  2653. - macOS: Fix closing top-level window does not transfer focus to other
  2654. top-level windows.
  2655. - macOS: Fix alt+arrow keys not working when disabling the macos_option_as_alt
  2656. config option.
  2657. - kitty icat: Workaround for bug in ImageMagick that would cause some images
  2658. to fail to display at certain sizes.
  2659. - Fix rendering of text with ligature fonts that do not use dummy glyphs
  2660. - Fix a regression that caused copying of the selection to clipboard to only
  2661. copy the visible part of the selection
  2662. - Fix incorrect handling of some unicode combining marks that are not re-ordered
  2663. - Fix handling on non-BMP combining characters
  2664. - Drop the dependency on libunistring
  2665. 0.6.1 [2017-12-28]
  2666. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2667. - Add an option to fade the text in inactive windows
  2668. - Add new actions to open windows/tabs/etc. with the working directory set to
  2669. the working directory of the current window.
  2670. - Automatically adjust cell size when DPI changes, for example when kitty is
  2671. moved from one monitor to another with a different DPI
  2672. - Ensure underlines are rendered even for fonts with very poor metrics
  2673. - Fix some emoji glyphs not colored on Linux
  2674. - Internal wcwidth() implementation is now auto-generated from the unicode
  2675. standard database
  2676. - Allow configuring the modifiers to use for rectangular selection with the
  2677. mouse.
  2678. - Fix incorrect minimum wayland version in the build script
  2679. - Fix a crash when detecting a URL that ends at the end of the line
  2680. - Fix regression that broke drawing of hollow cursor when window loses focus
  2681. 0.6.0 [2017-12-18]
  2682. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2683. - Support background transparency via the background_opacity option. Provided
  2684. that your OS/window manager supports transparency, you can now have kitty
  2685. render pixels that have only the default background color as
  2686. semi-transparent.
  2687. - Support multiple top level (OS) windows. These windows all share the sprite
  2688. texture cache on the GPU, further reducing overall resource usage. Use
  2689. the shortcut `ctrl+shift+n` to open a new top-level window.
  2690. - Add support for a *daemon* mode using the `--single-instance` command line
  2691. option. With this option you can have only a single kitty instance running.
  2692. All future invocations simply open new top-level windows in the existing
  2693. instance.
  2694. - Support colored emoji
  2695. - Use CoreText instead of FreeType to render text on macOS
  2696. - Support running on the "low power" GPU on dual GPU macOS machines
  2697. - Add a new "grid" window layout
  2698. - Drop the dependency on glfw (kitty now uses a modified, bundled copy of glfw)
  2699. - Add an option to control the audio bell volume on X11 systems
  2700. - Add a command line switch to set the name part of the WM_CLASS window
  2701. property independently.
  2702. - Add a command line switch to set the window title.
  2703. - Add more options to customize the tab-bar's appearance (font styles and
  2704. separator)
  2705. - Allow drag and drop of files into kitty. On drop kitty will paste the
  2706. file path to the running program.
  2707. - Add an option to control the underline style for URL highlighting on hover
  2708. - X11: Set the WINDOWID environment variable
  2709. - Fix middle and right buttons swapped when sending mouse events to child
  2710. processes
  2711. - Allow selecting in a rectangle by holding down Ctrl+Alt while dragging with
  2712. the mouse.
  2713. 0.5.1 [2017-12-01]
  2714. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2715. - Add an option to control the thickness of lines in box drawing characters
  2716. - Increase max. allowed ligature length to nine characters
  2717. - Fix text not vertically centered when adjusting line height
  2718. - Fix unicode block characters not being rendered properly
  2719. - Fix shift+up/down not generating correct escape codes
  2720. - Image display: Fix displaying images taller than two screen heights not
  2721. scrolling properly
  2722. 0.5.0 [2017-11-19]
  2723. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2724. - Add support for ligature fonts such as Fira Code, Hasklig, etc. kitty now
  2725. uses harfbuzz for text shaping which allow it to support advanced OpenType
  2726. features such as contextual alternates/ligatures/combining glyphs/etc.
  2727. - Make it easy to select fonts by allowing listing of monospace fonts using:
  2728. kitty list-fonts
  2729. - Add an option to have window focus follow mouse
  2730. - Add a keyboard shortcut (ctrl+shift+f11) to toggle fullscreen mode
  2731. - macOS: Fix handling of option key. It now behaves just like the alt key on
  2732. Linux. There is an option to make it type unicode characters instead.
  2733. - Linux: Add support for startup notification on X11 desktops. kitty will
  2734. now inform the window manager when its startup is complete.
  2735. - Fix shell prompt being duplicated when window is resized
  2736. - Fix crash when displaying more than 64 images in the same session
  2737. - Add support for colons in SGR color codes. These are generated by some
  2738. applications such as neovim when they mistakenly identify kitty as a libvte
  2739. based terminal.
  2740. - Fix mouse interaction not working in apps using obsolete mouse interaction
  2741. protocols
  2742. - Linux: no longer require glew as a dependency
  2743. 0.4.2 [2017-10-23]
  2744. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2745. - Fix a regression in 0.4.0 that broke custom key mappings
  2746. - Fix a regression in 0.4.0 that broke support for non-QWERTY keyboard layouts
  2747. - Avoid using threads to reap zombie child processes. Also prevent kitty from
  2748. hanging if the open program hangs when clicking on a URL.
  2749. 0.4.0 [2017-10-22]
  2750. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2751. - Support for drawing arbitrary raster graphics (images) in the terminal via a
  2752. new graphics protocol. kitty can draw images with full 32-bit color using both
  2753. ssh connections and files/shared memory (when available) for better
  2754. performance. The drawing primitives support alpha blending and z-index.
  2755. Images can be drawn both above and below text. See :doc:`graphics-protocol`.
  2756. for details.
  2757. - Refactor kitty's internals to make it even faster and more efficient. The CPU
  2758. usage of kitty + X server while doing intensive tasks such as scrolling a
  2759. file continuously in less has been reduced by 50%. There are now two
  2760. configuration options ``repaint_delay`` and ``input_delay`` you can use to
  2761. fine tune kitty's performance vs CPU usage profile. The CPU usage of kitty +
  2762. X when scrolling in less is now significantly better than most (all?) other
  2763. terminals. See :doc:`performance`.
  2764. - Hovering over URLs with the mouse now underlines them to indicate they
  2765. can be clicked. Hold down Ctrl+Shift while clicking to open the URL.
  2766. - Selection using the mouse is now more intelligent. It does not add
  2767. blank cells (i.e. cells that have no content) after the end of text in a
  2768. line to the selection.
  2769. - The block cursor in now fully opaque but renders the character under it in
  2770. the background color, for enhanced visibility.
  2771. - Allow combining multiple independent actions into a single shortcut
  2772. - Add a new shortcut to pass the current selection to an external program
  2773. - Allow creating shortcuts to open new windows running arbitrary commands. You
  2774. can also pass the current selection to the command as an arguments and the
  2775. contents of the screen + scrollback buffer as stdin to the command.