• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.CI/H05-Aug-2021-383174

.docker/H05-Aug-2021-10572

.github/H05-Aug-2021-641534

cmake/H05-Aug-2021-237185

docs/H05-Aug-2021-53

lib/H03-May-2022-63,75346,194

resources/H03-May-2022-347293

src/H03-May-2022-64,93850,045

tests/H03-May-2022-1,143873

tools/H05-Aug-2021-13079

.cirrus.ymlH A D05-Aug-2021875 1412

.gitattributesH A D05-Aug-202180 32

.gitignoreH A D05-Aug-20211.1 KiB10583

.gitmodulesH A D05-Aug-20211,007 3231

.prettierignoreH A D05-Aug-202156 64

.prettierrc.tomlH A D05-Aug-202197 75

BUILDING_ON_FREEBSD.mdH A D05-Aug-2021732 1712

BUILDING_ON_LINUX.mdH A D05-Aug-20212.2 KiB8247

BUILDING_ON_MAC.mdH A D05-Aug-20211.5 KiB3524

BUILDING_ON_WINDOWS.mdH A D05-Aug-20217.8 KiB13586

CHANGELOG.mdH A D05-Aug-202120.2 KiB245227

CONTRIBUTING.mdH A D05-Aug-20218.1 KiB218159

JenkinsfileH A D05-Aug-2021565 2119

LICENSEH A D05-Aug-20211 KiB2217

README.mdH A D05-Aug-20213.1 KiB6441

_.travis.ymlH A D05-Aug-20214.1 KiB9988

appveyor.ymlH A D05-Aug-20211.7 KiB6647

chatterino.proH A D03-May-202224.3 KiB677636

README.md

1![alt text](https://fourtf.com/img/chatterino-icon-64.png)
2Chatterino 2 [![GitHub Actions Build (Windows, Ubuntu, MacOS)](https://github.com/Chatterino/chatterino2/workflows/Build/badge.svg?branch=master)](https://github.com/Chatterino/chatterino2/actions?query=workflow%3ABuild+branch%3Amaster) [![Cirrus CI Build (FreeBSD only)](https://api.cirrus-ci.com/github/Chatterino/chatterino2.svg?branch=master)](https://cirrus-ci.com/github/Chatterino/chatterino2/master) [![Chocolatey Package](https://img.shields.io/chocolatey/v/chatterino?include_prereleases)](https://chocolatey.org/packages/chatterino) [![Flatpak Package](https://img.shields.io/flathub/v/com.chatterino.chatterino)](https://flathub.org/apps/details/com.chatterino.chatterino)
3============
4
5Chatterino 2 is a chat client for [Twitch.tv](https://twitch.tv).
6The Chatterino 2 wiki can be found [here](https://wiki.chatterino.com).
7Contribution guidelines can be found [here](https://wiki.chatterino.com/Contributing%20for%20Developers).
8
9## Download
10
11Current releases are available at [https://chatterino.com](https://chatterino.com).
12Windows users can also install Chatterino [from Chocolatey](https://chocolatey.org/packages/chatterino).
13
14## Nightly build
15
16You can download the latest Chatterino 2 build over [here](https://github.com/Chatterino/chatterino2/releases/tag/nightly-build)
17
18You might also need to install the [VC++ 2017 Redistributable](https://aka.ms/vs/15/release/vc_redist.x64.exe) from Microsoft if you do not have it installed already.
19If you still receive an error about `MSVCR120.dll missing`, then you should install the [VC++ 2013 Restributable](https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe).
20
21## Building
22
23To get source code with required submodules run:
24
25```
26git clone --recurse-submodules https://github.com/Chatterino/chatterino2.git
27```
28
29or
30
31```
32git clone https://github.com/Chatterino/chatterino2.git
33cd chatterino2
34git submodule update --init --recursive
35```
36
37[Building on Windows](../master/BUILDING_ON_WINDOWS.md)
38
39[Building on Linux](../master/BUILDING_ON_LINUX.md)
40
41[Building on Mac](../master/BUILDING_ON_MAC.md)
42
43[Building on FreeBSD](../master/BUILDING_ON_FREEBSD.md)
44
45## Code style
46
47The code is formatted using clang format in Qt Creator. [.clang-format](src/.clang-format) contains the style file for clang format.
48
49### Get it automated with QT Creator + Beautifier + Clang Format
50
511. Download LLVM: https://github.com/llvm/llvm-project/releases/download/llvmorg-11.0.0/LLVM-11.0.0-win64.exe
522. During the installation, make sure to add it to your path
533. In QT Creator, select `Help` > `About Plugins` > `C++` > `Beautifier` to enable the plugin
544. Restart QT Creator
555. Select `Tools` > `Options` > `Beautifier`
566. Under `General` select `Tool: ClangFormat` and enable `Automatic Formatting on File Save`
577. Under `Clang Format` select `Use predefined style: File` and `Fallback style: None`
58
59Qt creator should now format the documents when saving it.
60
61## Doxygen
62
63Doxygen is used to generate project information daily and is available [here](https://doxygen.chatterino.com).
64