Projects STRLCPY alacritty Commits 7cd180da
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■
    CHANGELOG.md
    skipped 4 lines
    5 5   
    6 6  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
    7 7   
    8  -## 0.11.0-dev
     8 +## 0.11.0-rc1
    9 9   
    10 10  ### Packaging
    11 11   
    skipped 1056 lines
  • ■ ■ ■ ■ ■ ■
    Cargo.lock
    skipped 15 lines
    16 16   
    17 17  [[package]]
    18 18  name = "alacritty"
    19  -version = "0.11.0-dev"
     19 +version = "0.11.0-rc1"
    20 20  dependencies = [
    21 21   "alacritty_config",
    22 22   "alacritty_config_derive",
    skipped 29 lines
    52 52   
    53 53  [[package]]
    54 54  name = "alacritty_config"
    55  -version = "0.1.0"
     55 +version = "0.1.0-rc1"
    56 56  dependencies = [
    57 57   "log",
    58 58   "serde",
    skipped 2 lines
    61 61   
    62 62  [[package]]
    63 63  name = "alacritty_config_derive"
    64  -version = "0.1.0"
     64 +version = "0.2.0-rc1"
    65 65  dependencies = [
    66 66   "alacritty_config",
    67 67   "log",
    skipped 6 lines
    74 74   
    75 75  [[package]]
    76 76  name = "alacritty_terminal"
    77  -version = "0.17.0-dev"
     77 +version = "0.17.0-rc1"
    78 78  dependencies = [
    79 79   "alacritty_config",
    80 80   "alacritty_config_derive",
    skipped 2085 lines
  • ■ ■ ■ ■ ■ ■
    alacritty/Cargo.toml
    1 1  [package]
    2 2  name = "alacritty"
    3  -version = "0.11.0-dev"
     3 +version = "0.11.0-rc1"
    4 4  authors = ["Christian Duerr <[email protected]>", "Joe Wilm <[email protected]>"]
    5 5  license = "Apache-2.0"
    6 6  description = "A fast, cross-platform, OpenGL terminal emulator"
    skipped 4 lines
    11 11   
    12 12  [dependencies.alacritty_terminal]
    13 13  path = "../alacritty_terminal"
    14  -version = "0.17.0-dev"
     14 +version = "0.17.0-rc1"
    15 15  default-features = false
    16 16   
    17 17  [dependencies.alacritty_config_derive]
    18 18  path = "../alacritty_config_derive"
    19  -version = "0.1.0"
     19 +version = "0.2.0-rc1"
    20 20   
    21 21  [dependencies.alacritty_config]
    22 22  path = "../alacritty_config"
    23  -version = "0.1.0"
     23 +version = "0.1.0-rc1"
    24 24   
    25 25  [dependencies]
    26 26  clap = { version = "3.0.0", features = ["derive", "env"] }
    skipped 54 lines
  • ■ ■ ■ ■
    alacritty/windows/wix/alacritty.wxs
    1 1  <?xml version="1.0" encoding="windows-1252"?>
    2 2  <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
    3  - <Product Name="Alacritty" Id="*" UpgradeCode="87c21c74-dbd5-4584-89d5-46d9cd0c40a7" Language="1033" Codepage="1252" Version="0.11.0-dev" Manufacturer="Alacritty">
     3 + <Product Name="Alacritty" Id="*" UpgradeCode="87c21c74-dbd5-4584-89d5-46d9cd0c40a7" Language="1033" Codepage="1252" Version="0.11.0-rc1" Manufacturer="Alacritty">
    4 4   <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine"/>
    5 5   <MajorUpgrade AllowSameVersionUpgrades="yes" DowngradeErrorMessage="A newer version of [ProductName] is already installed."/>
    6 6   <Icon Id="AlacrittyIco" SourceFile=".\extra\windows\alacritty.ico"/>
    skipped 59 lines
  • ■ ■ ■ ■
    alacritty_config/Cargo.toml
    1 1  [package]
    2 2  name = "alacritty_config"
    3  -version = "0.1.0"
     3 +version = "0.1.0-rc1"
    4 4  authors = ["Christian Duerr <[email protected]>"]
    5 5  license = "MIT/Apache-2.0"
    6 6  description = "Alacritty configuration abstractions"
    skipped 9 lines
  • ■ ■ ■ ■ ■ ■
    alacritty_config_derive/Cargo.toml
    1 1  [package]
    2 2  name = "alacritty_config_derive"
    3  -version = "0.1.0"
     3 +version = "0.2.0-rc1"
    4 4  authors = ["Christian Duerr <[email protected]>"]
    5 5  license = "MIT/Apache-2.0"
    6 6  description = "Failure resistant deserialization derive"
    skipped 11 lines
    18 18   
    19 19  [dev-dependencies.alacritty_config]
    20 20  path = "../alacritty_config"
    21  -version = "0.1.0"
     21 +version = "0.1.0-rc1"
    22 22   
    23 23  [dev-dependencies]
    24 24  serde = { version = "1.0.117", features = ["derive"] }
    skipped 3 lines
  • ■ ■ ■ ■ ■ ■
    alacritty_terminal/Cargo.toml
    1 1  [package]
    2 2  name = "alacritty_terminal"
    3  -version = "0.17.0-dev"
     3 +version = "0.17.0-rc1"
    4 4  authors = ["Christian Duerr <[email protected]>", "Joe Wilm <[email protected]>"]
    5 5  license = "Apache-2.0"
    6 6  description = "Library for writing terminal emulators"
    skipped 4 lines
    11 11   
    12 12  [dependencies.alacritty_config_derive]
    13 13  path = "../alacritty_config_derive"
    14  -version = "0.1.0"
     14 +version = "0.2.0-rc1"
    15 15   
    16 16  [dependencies.alacritty_config]
    17 17  path = "../alacritty_config"
    18  -version = "0.1.0"
     18 +version = "0.1.0-rc1"
    19 19   
    20 20  [dependencies]
    21 21  libc = "0.2"
    skipped 29 lines
  • ■ ■ ■ ■
    extra/alacritty-msg.man
    1  -.TH ALACRITTY-MSG "1" "October 2021" "alacritty 0.11.0-dev" "User Commands"
     1 +.TH ALACRITTY-MSG "1" "October 2021" "alacritty 0.11.0-rc1" "User Commands"
    2 2  .SH NAME
    3 3  alacritty-msg \- Send messages to Alacritty
    4 4  .SH "SYNOPSIS"
    skipped 61 lines
  • ■ ■ ■ ■
    extra/alacritty.man
    1  -.TH ALACRITTY "1" "August 2018" "alacritty 0.11.0-dev" "User Commands"
     1 +.TH ALACRITTY "1" "August 2018" "alacritty 0.11.0-rc1" "User Commands"
    2 2  .SH NAME
    3 3  Alacritty \- A fast, cross-platform, OpenGL terminal emulator
    4 4  .SH "SYNOPSIS"
    skipped 90 lines
  • ■ ■ ■ ■
    extra/osx/Alacritty.app/Contents/Info.plist
    skipped 14 lines
    15 15   <key>CFBundlePackageType</key>
    16 16   <string>APPL</string>
    17 17   <key>CFBundleShortVersionString</key>
    18  - <string>0.11.0-dev</string>
     18 + <string>0.11.0-rc1</string>
    19 19   <key>CFBundleSupportedPlatforms</key>
    20 20   <array>
    21 21   <string>MacOSX</string>
    skipped 38 lines
Please wait...
Page is in error, reload to recover