├── .config ├── lychee-external.toml ├── lychee-internal.toml └── nextest.toml ├── .github ├── FUNDING.yml └── workflows │ ├── book.yml │ ├── build.yml │ ├── checksum.yml │ ├── gh-page-unstable.yml │ ├── gh-page.yml │ ├── release.yml │ └── spell-check.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── VERSION ├── assets ├── animation.gif ├── banner.png ├── flatpak │ └── org.squidowl.halloy.json ├── fontello │ ├── config.json │ └── fontawesome-attention.svg ├── linux │ ├── icons │ │ └── hicolor │ │ │ ├── 128x128 │ │ │ └── apps │ │ │ │ └── org.squidowl.halloy.png │ │ │ ├── 16x16 │ │ │ └── apps │ │ │ │ └── org.squidowl.halloy.png │ │ │ ├── 24x24 │ │ │ └── apps │ │ │ │ └── org.squidowl.halloy.png │ │ │ ├── 256x256 │ │ │ └── apps │ │ │ │ └── org.squidowl.halloy.png │ │ │ ├── 32x32 │ │ │ └── apps │ │ │ │ └── org.squidowl.halloy.png │ │ │ ├── 48x48 │ │ │ └── apps │ │ │ │ └── org.squidowl.halloy.png │ │ │ ├── 512x512 │ │ │ └── apps │ │ │ │ └── org.squidowl.halloy.png │ │ │ ├── 64x64 │ │ │ └── apps │ │ │ │ └── org.squidowl.halloy.png │ │ │ └── 96x96 │ │ │ └── apps │ │ │ └── org.squidowl.halloy.png │ ├── org.squidowl.halloy.appdata.xml │ └── org.squidowl.halloy.desktop ├── logo-macos.png ├── logo.png ├── macos │ └── Halloy.app │ │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── halloy.icns ├── screenshot.png ├── themes │ └── ferra.toml └── windows │ ├── halloy.ico │ ├── halloy.manifest │ └── halloy.rc ├── book ├── .gitignore ├── CNAME ├── book.toml ├── src │ ├── README.md │ ├── SUMMARY.md │ ├── commands.md │ ├── configuration.md │ ├── configuration │ │ ├── actions │ │ │ ├── README.md │ │ │ ├── buffer.md │ │ │ └── sidebar.md │ │ ├── buffer │ │ │ ├── README.md │ │ │ ├── backlog-separator │ │ │ │ └── README.md │ │ │ ├── channel │ │ │ │ ├── README.md │ │ │ │ ├── message.md │ │ │ │ ├── nicklist.md │ │ │ │ └── topic-banner.md │ │ │ ├── chat-history │ │ │ │ └── README.md │ │ │ ├── commands │ │ │ │ ├── README.md │ │ │ │ └── sysinfo.md │ │ │ ├── date-separators │ │ │ │ └── README.md │ │ │ ├── emojis │ │ │ │ └── README.md │ │ │ ├── internal-messages │ │ │ │ ├── README.md │ │ │ │ ├── error.md │ │ │ │ └── success.md │ │ │ ├── mark-as-read │ │ │ │ └── README.md │ │ │ ├── nickname │ │ │ │ └── README.md │ │ │ ├── server-messages │ │ │ │ ├── README.md │ │ │ │ └── condense.md │ │ │ ├── status-message-prefix │ │ │ │ └── README.md │ │ │ ├── text-input │ │ │ │ ├── README.md │ │ │ │ ├── autocomplete.md │ │ │ │ └── nickname.md │ │ │ ├── timestamp │ │ │ │ └── README.md │ │ │ └── url │ │ │ │ └── README.md │ │ ├── cctp │ │ │ └── README.md │ │ ├── conditions.md │ │ ├── file-transfer │ │ │ ├── README.md │ │ │ ├── auto_accept.md │ │ │ └── server.md │ │ ├── font │ │ │ └── README.md │ │ ├── highlights │ │ │ ├── README.md │ │ │ ├── matches.md │ │ │ └── nickname.md │ │ ├── keyboard.md │ │ ├── logs │ │ │ └── README.md │ │ ├── notifications │ │ │ └── README.md │ │ ├── pane │ │ │ └── README.md │ │ ├── platform-specific │ │ │ ├── README.md │ │ │ ├── linux.md │ │ │ ├── macos.md │ │ │ └── windows.md │ │ ├── preview │ │ │ ├── README.md │ │ │ ├── card.md │ │ │ ├── image.md │ │ │ └── request.md │ │ ├── proxy │ │ │ ├── README.md │ │ │ ├── http.md │ │ │ ├── socks5.md │ │ │ └── tor.md │ │ ├── scale-factor.md │ │ ├── servers │ │ │ ├── README.md │ │ │ ├── filters.md │ │ │ ├── sasl-external.md │ │ │ └── sasl-plain.md │ │ ├── sidebar │ │ │ ├── README.md │ │ │ ├── scrollbar.md │ │ │ ├── unread-indicator.md │ │ │ └── user-menu.md │ │ ├── themes │ │ │ ├── README.md │ │ │ ├── base16.md │ │ │ └── community.md │ │ └── tooltips.md │ ├── get-in-touch.md │ ├── getting-started.md │ ├── guides │ │ ├── connect-with-soju.md │ │ ├── connect-with-znc.md │ │ ├── flatpaks.md │ │ ├── macos-application.md │ │ ├── monitor-users.md │ │ ├── multiple-servers.md │ │ ├── optional-features.md │ │ ├── password-file.md │ │ ├── portable-mode.md │ │ ├── pronunciation.md │ │ ├── reduce-noise.md │ │ ├── single-pane.md │ │ ├── text-formatting.md │ │ ├── unix-signals.md │ │ └── url-schemes.md │ ├── images │ │ ├── animation.gif │ │ └── banner.png │ ├── installation.md │ └── sounds │ │ ├── bloop.ogg │ │ ├── bonk.ogg │ │ ├── dong.ogg │ │ ├── drop.ogg │ │ ├── peck.ogg │ │ ├── ring.ogg │ │ ├── sing.ogg │ │ ├── squeak.ogg │ │ ├── tweep.ogg │ │ ├── whistle.ogg │ │ └── zone.ogg └── theme │ └── favicon.png ├── config.toml ├── data ├── Cargo.toml ├── build.rs ├── scripts │ └── generate-message-tests-json.sh ├── src │ ├── appearance.rs │ ├── appearance │ │ └── theme.rs │ ├── audio.rs │ ├── bin.rs │ ├── bouncer.rs │ ├── buffer.rs │ ├── channel.rs │ ├── client.rs │ ├── client │ │ └── on_connect.rs │ ├── command.rs │ ├── compression.rs │ ├── config.rs │ ├── config │ │ ├── actions.rs │ │ ├── buffer.rs │ │ ├── buffer │ │ │ ├── channel.rs │ │ │ ├── nickname.rs │ │ │ └── text_input.rs │ │ ├── ctcp.rs │ │ ├── file_transfer.rs │ │ ├── highlights.rs │ │ ├── inclusivities.rs │ │ ├── keys.rs │ │ ├── logs.rs │ │ ├── notification.rs │ │ ├── pane.rs │ │ ├── platform_specific.rs │ │ ├── preview.rs │ │ ├── proxy.rs │ │ ├── server.rs │ │ └── sidebar.rs │ ├── ctcp.rs │ ├── dashboard.rs │ ├── dcc.rs │ ├── environment.rs │ ├── file_transfer.rs │ ├── file_transfer │ │ ├── manager.rs │ │ └── task.rs │ ├── history.rs │ ├── history │ │ ├── filter.rs │ │ ├── manager.rs │ │ └── metadata.rs │ ├── input.rs │ ├── isupport.rs │ ├── lib.rs │ ├── log.rs │ ├── message.rs │ ├── message │ │ ├── broadcast.rs │ │ ├── formatting.rs │ │ ├── formatting │ │ │ └── encode.rs │ │ ├── highlight.rs │ │ └── source.rs │ ├── mode.rs │ ├── notification.rs │ ├── pane.rs │ ├── preview.rs │ ├── preview │ │ ├── cache.rs │ │ ├── card.rs │ │ └── image.rs │ ├── rate_limit.rs │ ├── serde.rs │ ├── server.rs │ ├── shortcut.rs │ ├── stream.rs │ ├── target.rs │ ├── time.rs │ ├── url.rs │ ├── user.rs │ ├── version.rs │ ├── window.rs │ └── window │ │ ├── position.rs │ │ └── size.rs └── tests │ └── message │ ├── 0e6e29a05742ed088e7e3cc0cba92c3c777e2dae.json │ ├── 15c5cb9af03918f502c230ace766355cc1e930cb.json │ └── f525f6a90ec5667c6e9b6692ec03da4ce57dbc72.json ├── fonts ├── halloy-icons.ttf ├── iosevka-term-bold.ttf ├── iosevka-term-italic.ttf ├── iosevka-term-light.ttf ├── iosevka-term-lightitalic.ttf ├── iosevka-term-regular.ttf └── iosevka-term-semibold.ttf ├── ipc ├── Cargo.toml └── src │ ├── client.rs │ ├── lib.rs │ └── server.rs ├── irc ├── Cargo.toml ├── proto │ ├── Cargo.toml │ └── src │ │ ├── command.rs │ │ ├── format.rs │ │ ├── lib.rs │ │ └── parse.rs └── src │ ├── codec.rs │ ├── connection.rs │ ├── connection │ ├── proxy.rs │ └── tls.rs │ └── lib.rs ├── rustfmt.toml ├── scripts ├── build-macos.sh ├── build-windows-installer.sh ├── build-windows.sh ├── flatpak.sh ├── format.sh ├── generate-linux-icons.sh ├── generate-macos-icns.sh ├── generate-windows-ico.sh ├── install-linux.sh ├── package-linux.sh ├── package-macos.sh └── sign-macos.sh ├── sounds ├── bloop.ogg ├── bonk.ogg ├── dong.ogg ├── drop.ogg ├── peck.ogg ├── ring.ogg ├── sing.ogg ├── squeak.ogg ├── tweep.ogg ├── whistle.ogg └── zone.ogg ├── src ├── appearance.rs ├── appearance │ ├── theme.rs │ └── theme │ │ ├── button.rs │ │ ├── checkbox.rs │ │ ├── container.rs │ │ ├── context_menu.rs │ │ ├── font_style.rs │ │ ├── menu.rs │ │ ├── pane_grid.rs │ │ ├── progress_bar.rs │ │ ├── rule.rs │ │ ├── scrollable.rs │ │ ├── selectable_text.rs │ │ ├── svg.rs │ │ ├── text.rs │ │ ├── text_editor.rs │ │ └── text_input.rs ├── audio.rs ├── buffer.rs ├── buffer │ ├── channel.rs │ ├── channel │ │ └── topic.rs │ ├── context_menu.rs │ ├── empty.rs │ ├── file_transfers.rs │ ├── highlights.rs │ ├── input_view.rs │ ├── input_view │ │ ├── completion.rs │ │ └── format_tooltip.txt │ ├── logs.rs │ ├── message_view.rs │ ├── query.rs │ ├── scroll_view.rs │ └── server.rs ├── event.rs ├── font.rs ├── icon.rs ├── logger.rs ├── main.rs ├── modal.rs ├── modal │ ├── connect_to_server.rs │ ├── image_preview.rs │ ├── prompt_before_open_url.rs │ └── reload_configuration_error.rs ├── notification.rs ├── notification │ └── toast.rs ├── platform_specific.rs ├── screen.rs ├── screen │ ├── dashboard.rs │ ├── dashboard │ │ ├── command_bar.rs │ │ ├── pane.rs │ │ ├── sidebar.rs │ │ └── theme_editor.rs │ ├── help.rs │ └── welcome.rs ├── stream.rs ├── unix_signal.rs ├── url.rs ├── widget.rs ├── widget │ ├── anchored_overlay.rs │ ├── color_picker.rs │ ├── combo_box.rs │ ├── context_menu.rs │ ├── decorate.rs │ ├── double_click.rs │ ├── double_pass.rs │ ├── font_style_pick_list.rs │ ├── key_press.rs │ ├── message_content.rs │ ├── modal.rs │ ├── notify_visibility.rs │ ├── on_resize.rs │ ├── pick_list.rs │ ├── selectable_rich_text.rs │ ├── selectable_text.rs │ ├── selectable_text │ │ └── selection.rs │ ├── shortcut.rs │ └── tooltip.rs └── window.rs └── wix ├── banner.png ├── dialog.png ├── license.rtf └── main.wxs /.config/lychee-external.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/.config/lychee-external.toml -------------------------------------------------------------------------------- /.config/lychee-internal.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/.config/lychee-internal.toml -------------------------------------------------------------------------------- /.config/nextest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/.config/nextest.toml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: casperstorm 2 | -------------------------------------------------------------------------------- /.github/workflows/book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/.github/workflows/book.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/checksum.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/.github/workflows/checksum.yml -------------------------------------------------------------------------------- /.github/workflows/gh-page-unstable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/.github/workflows/gh-page-unstable.yml -------------------------------------------------------------------------------- /.github/workflows/gh-page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/.github/workflows/gh-page.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/spell-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/.github/workflows/spell-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2025.12 2 | -------------------------------------------------------------------------------- /assets/animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/animation.gif -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/flatpak/org.squidowl.halloy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/flatpak/org.squidowl.halloy.json -------------------------------------------------------------------------------- /assets/fontello/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/fontello/config.json -------------------------------------------------------------------------------- /assets/fontello/fontawesome-attention.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/fontello/fontawesome-attention.svg -------------------------------------------------------------------------------- /assets/linux/icons/hicolor/128x128/apps/org.squidowl.halloy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/linux/icons/hicolor/128x128/apps/org.squidowl.halloy.png -------------------------------------------------------------------------------- /assets/linux/icons/hicolor/16x16/apps/org.squidowl.halloy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/linux/icons/hicolor/16x16/apps/org.squidowl.halloy.png -------------------------------------------------------------------------------- /assets/linux/icons/hicolor/24x24/apps/org.squidowl.halloy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/linux/icons/hicolor/24x24/apps/org.squidowl.halloy.png -------------------------------------------------------------------------------- /assets/linux/icons/hicolor/256x256/apps/org.squidowl.halloy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/linux/icons/hicolor/256x256/apps/org.squidowl.halloy.png -------------------------------------------------------------------------------- /assets/linux/icons/hicolor/32x32/apps/org.squidowl.halloy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/linux/icons/hicolor/32x32/apps/org.squidowl.halloy.png -------------------------------------------------------------------------------- /assets/linux/icons/hicolor/48x48/apps/org.squidowl.halloy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/linux/icons/hicolor/48x48/apps/org.squidowl.halloy.png -------------------------------------------------------------------------------- /assets/linux/icons/hicolor/512x512/apps/org.squidowl.halloy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/linux/icons/hicolor/512x512/apps/org.squidowl.halloy.png -------------------------------------------------------------------------------- /assets/linux/icons/hicolor/64x64/apps/org.squidowl.halloy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/linux/icons/hicolor/64x64/apps/org.squidowl.halloy.png -------------------------------------------------------------------------------- /assets/linux/icons/hicolor/96x96/apps/org.squidowl.halloy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/linux/icons/hicolor/96x96/apps/org.squidowl.halloy.png -------------------------------------------------------------------------------- /assets/linux/org.squidowl.halloy.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/linux/org.squidowl.halloy.appdata.xml -------------------------------------------------------------------------------- /assets/linux/org.squidowl.halloy.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/linux/org.squidowl.halloy.desktop -------------------------------------------------------------------------------- /assets/logo-macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/logo-macos.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/macos/Halloy.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/macos/Halloy.app/Contents/Info.plist -------------------------------------------------------------------------------- /assets/macos/Halloy.app/Contents/Resources/halloy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/macos/Halloy.app/Contents/Resources/halloy.icns -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /assets/themes/ferra.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/themes/ferra.toml -------------------------------------------------------------------------------- /assets/windows/halloy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/windows/halloy.ico -------------------------------------------------------------------------------- /assets/windows/halloy.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/windows/halloy.manifest -------------------------------------------------------------------------------- /assets/windows/halloy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/assets/windows/halloy.rc -------------------------------------------------------------------------------- /book/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /book/CNAME: -------------------------------------------------------------------------------- 1 | halloy.chat 2 | -------------------------------------------------------------------------------- /book/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/book.toml -------------------------------------------------------------------------------- /book/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/README.md -------------------------------------------------------------------------------- /book/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/SUMMARY.md -------------------------------------------------------------------------------- /book/src/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/commands.md -------------------------------------------------------------------------------- /book/src/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration.md -------------------------------------------------------------------------------- /book/src/configuration/actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/actions/README.md -------------------------------------------------------------------------------- /book/src/configuration/actions/buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/actions/buffer.md -------------------------------------------------------------------------------- /book/src/configuration/actions/sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/actions/sidebar.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/README.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/backlog-separator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/backlog-separator/README.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/channel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/channel/README.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/channel/message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/channel/message.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/channel/nicklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/channel/nicklist.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/channel/topic-banner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/channel/topic-banner.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/chat-history/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/chat-history/README.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/commands/README.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/commands/sysinfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/commands/sysinfo.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/date-separators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/date-separators/README.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/emojis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/emojis/README.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/internal-messages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/internal-messages/README.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/internal-messages/error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/internal-messages/error.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/internal-messages/success.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/internal-messages/success.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/mark-as-read/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/mark-as-read/README.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/nickname/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/nickname/README.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/server-messages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/server-messages/README.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/server-messages/condense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/server-messages/condense.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/status-message-prefix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/status-message-prefix/README.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/text-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/text-input/README.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/text-input/autocomplete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/text-input/autocomplete.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/text-input/nickname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/text-input/nickname.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/timestamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/timestamp/README.md -------------------------------------------------------------------------------- /book/src/configuration/buffer/url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/buffer/url/README.md -------------------------------------------------------------------------------- /book/src/configuration/cctp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/cctp/README.md -------------------------------------------------------------------------------- /book/src/configuration/conditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/conditions.md -------------------------------------------------------------------------------- /book/src/configuration/file-transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/file-transfer/README.md -------------------------------------------------------------------------------- /book/src/configuration/file-transfer/auto_accept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/file-transfer/auto_accept.md -------------------------------------------------------------------------------- /book/src/configuration/file-transfer/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/file-transfer/server.md -------------------------------------------------------------------------------- /book/src/configuration/font/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/font/README.md -------------------------------------------------------------------------------- /book/src/configuration/highlights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/highlights/README.md -------------------------------------------------------------------------------- /book/src/configuration/highlights/matches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/highlights/matches.md -------------------------------------------------------------------------------- /book/src/configuration/highlights/nickname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/highlights/nickname.md -------------------------------------------------------------------------------- /book/src/configuration/keyboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/keyboard.md -------------------------------------------------------------------------------- /book/src/configuration/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/logs/README.md -------------------------------------------------------------------------------- /book/src/configuration/notifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/notifications/README.md -------------------------------------------------------------------------------- /book/src/configuration/pane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/pane/README.md -------------------------------------------------------------------------------- /book/src/configuration/platform-specific/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/platform-specific/README.md -------------------------------------------------------------------------------- /book/src/configuration/platform-specific/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/platform-specific/linux.md -------------------------------------------------------------------------------- /book/src/configuration/platform-specific/macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/platform-specific/macos.md -------------------------------------------------------------------------------- /book/src/configuration/platform-specific/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/platform-specific/windows.md -------------------------------------------------------------------------------- /book/src/configuration/preview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/preview/README.md -------------------------------------------------------------------------------- /book/src/configuration/preview/card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/preview/card.md -------------------------------------------------------------------------------- /book/src/configuration/preview/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/preview/image.md -------------------------------------------------------------------------------- /book/src/configuration/preview/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/preview/request.md -------------------------------------------------------------------------------- /book/src/configuration/proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/proxy/README.md -------------------------------------------------------------------------------- /book/src/configuration/proxy/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/proxy/http.md -------------------------------------------------------------------------------- /book/src/configuration/proxy/socks5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/proxy/socks5.md -------------------------------------------------------------------------------- /book/src/configuration/proxy/tor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/proxy/tor.md -------------------------------------------------------------------------------- /book/src/configuration/scale-factor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/scale-factor.md -------------------------------------------------------------------------------- /book/src/configuration/servers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/servers/README.md -------------------------------------------------------------------------------- /book/src/configuration/servers/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/servers/filters.md -------------------------------------------------------------------------------- /book/src/configuration/servers/sasl-external.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/servers/sasl-external.md -------------------------------------------------------------------------------- /book/src/configuration/servers/sasl-plain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/servers/sasl-plain.md -------------------------------------------------------------------------------- /book/src/configuration/sidebar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/sidebar/README.md -------------------------------------------------------------------------------- /book/src/configuration/sidebar/scrollbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/sidebar/scrollbar.md -------------------------------------------------------------------------------- /book/src/configuration/sidebar/unread-indicator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/sidebar/unread-indicator.md -------------------------------------------------------------------------------- /book/src/configuration/sidebar/user-menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/sidebar/user-menu.md -------------------------------------------------------------------------------- /book/src/configuration/themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/themes/README.md -------------------------------------------------------------------------------- /book/src/configuration/themes/base16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/themes/base16.md -------------------------------------------------------------------------------- /book/src/configuration/themes/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/themes/community.md -------------------------------------------------------------------------------- /book/src/configuration/tooltips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/configuration/tooltips.md -------------------------------------------------------------------------------- /book/src/get-in-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/get-in-touch.md -------------------------------------------------------------------------------- /book/src/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/getting-started.md -------------------------------------------------------------------------------- /book/src/guides/connect-with-soju.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/guides/connect-with-soju.md -------------------------------------------------------------------------------- /book/src/guides/connect-with-znc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/guides/connect-with-znc.md -------------------------------------------------------------------------------- /book/src/guides/flatpaks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/guides/flatpaks.md -------------------------------------------------------------------------------- /book/src/guides/macos-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/guides/macos-application.md -------------------------------------------------------------------------------- /book/src/guides/monitor-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/guides/monitor-users.md -------------------------------------------------------------------------------- /book/src/guides/multiple-servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/guides/multiple-servers.md -------------------------------------------------------------------------------- /book/src/guides/optional-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/guides/optional-features.md -------------------------------------------------------------------------------- /book/src/guides/password-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/guides/password-file.md -------------------------------------------------------------------------------- /book/src/guides/portable-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/guides/portable-mode.md -------------------------------------------------------------------------------- /book/src/guides/pronunciation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/guides/pronunciation.md -------------------------------------------------------------------------------- /book/src/guides/reduce-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/guides/reduce-noise.md -------------------------------------------------------------------------------- /book/src/guides/single-pane.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/guides/single-pane.md -------------------------------------------------------------------------------- /book/src/guides/text-formatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/guides/text-formatting.md -------------------------------------------------------------------------------- /book/src/guides/unix-signals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/guides/unix-signals.md -------------------------------------------------------------------------------- /book/src/guides/url-schemes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/guides/url-schemes.md -------------------------------------------------------------------------------- /book/src/images/animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/images/animation.gif -------------------------------------------------------------------------------- /book/src/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/images/banner.png -------------------------------------------------------------------------------- /book/src/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/installation.md -------------------------------------------------------------------------------- /book/src/sounds/bloop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/sounds/bloop.ogg -------------------------------------------------------------------------------- /book/src/sounds/bonk.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/sounds/bonk.ogg -------------------------------------------------------------------------------- /book/src/sounds/dong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/sounds/dong.ogg -------------------------------------------------------------------------------- /book/src/sounds/drop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/sounds/drop.ogg -------------------------------------------------------------------------------- /book/src/sounds/peck.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/sounds/peck.ogg -------------------------------------------------------------------------------- /book/src/sounds/ring.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/sounds/ring.ogg -------------------------------------------------------------------------------- /book/src/sounds/sing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/sounds/sing.ogg -------------------------------------------------------------------------------- /book/src/sounds/squeak.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/sounds/squeak.ogg -------------------------------------------------------------------------------- /book/src/sounds/tweep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/sounds/tweep.ogg -------------------------------------------------------------------------------- /book/src/sounds/whistle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/sounds/whistle.ogg -------------------------------------------------------------------------------- /book/src/sounds/zone.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/src/sounds/zone.ogg -------------------------------------------------------------------------------- /book/theme/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/book/theme/favicon.png -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/config.toml -------------------------------------------------------------------------------- /data/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/Cargo.toml -------------------------------------------------------------------------------- /data/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/build.rs -------------------------------------------------------------------------------- /data/scripts/generate-message-tests-json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/scripts/generate-message-tests-json.sh -------------------------------------------------------------------------------- /data/src/appearance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/appearance.rs -------------------------------------------------------------------------------- /data/src/appearance/theme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/appearance/theme.rs -------------------------------------------------------------------------------- /data/src/audio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/audio.rs -------------------------------------------------------------------------------- /data/src/bin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/bin.rs -------------------------------------------------------------------------------- /data/src/bouncer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/bouncer.rs -------------------------------------------------------------------------------- /data/src/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/buffer.rs -------------------------------------------------------------------------------- /data/src/channel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/channel.rs -------------------------------------------------------------------------------- /data/src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/client.rs -------------------------------------------------------------------------------- /data/src/client/on_connect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/client/on_connect.rs -------------------------------------------------------------------------------- /data/src/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/command.rs -------------------------------------------------------------------------------- /data/src/compression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/compression.rs -------------------------------------------------------------------------------- /data/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config.rs -------------------------------------------------------------------------------- /data/src/config/actions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/actions.rs -------------------------------------------------------------------------------- /data/src/config/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/buffer.rs -------------------------------------------------------------------------------- /data/src/config/buffer/channel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/buffer/channel.rs -------------------------------------------------------------------------------- /data/src/config/buffer/nickname.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/buffer/nickname.rs -------------------------------------------------------------------------------- /data/src/config/buffer/text_input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/buffer/text_input.rs -------------------------------------------------------------------------------- /data/src/config/ctcp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/ctcp.rs -------------------------------------------------------------------------------- /data/src/config/file_transfer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/file_transfer.rs -------------------------------------------------------------------------------- /data/src/config/highlights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/highlights.rs -------------------------------------------------------------------------------- /data/src/config/inclusivities.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/inclusivities.rs -------------------------------------------------------------------------------- /data/src/config/keys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/keys.rs -------------------------------------------------------------------------------- /data/src/config/logs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/logs.rs -------------------------------------------------------------------------------- /data/src/config/notification.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/notification.rs -------------------------------------------------------------------------------- /data/src/config/pane.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/pane.rs -------------------------------------------------------------------------------- /data/src/config/platform_specific.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/platform_specific.rs -------------------------------------------------------------------------------- /data/src/config/preview.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/preview.rs -------------------------------------------------------------------------------- /data/src/config/proxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/proxy.rs -------------------------------------------------------------------------------- /data/src/config/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/server.rs -------------------------------------------------------------------------------- /data/src/config/sidebar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/config/sidebar.rs -------------------------------------------------------------------------------- /data/src/ctcp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/ctcp.rs -------------------------------------------------------------------------------- /data/src/dashboard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/dashboard.rs -------------------------------------------------------------------------------- /data/src/dcc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/dcc.rs -------------------------------------------------------------------------------- /data/src/environment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/environment.rs -------------------------------------------------------------------------------- /data/src/file_transfer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/file_transfer.rs -------------------------------------------------------------------------------- /data/src/file_transfer/manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/file_transfer/manager.rs -------------------------------------------------------------------------------- /data/src/file_transfer/task.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/file_transfer/task.rs -------------------------------------------------------------------------------- /data/src/history.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/history.rs -------------------------------------------------------------------------------- /data/src/history/filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/history/filter.rs -------------------------------------------------------------------------------- /data/src/history/manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/history/manager.rs -------------------------------------------------------------------------------- /data/src/history/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/history/metadata.rs -------------------------------------------------------------------------------- /data/src/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/input.rs -------------------------------------------------------------------------------- /data/src/isupport.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/isupport.rs -------------------------------------------------------------------------------- /data/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/lib.rs -------------------------------------------------------------------------------- /data/src/log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/log.rs -------------------------------------------------------------------------------- /data/src/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/message.rs -------------------------------------------------------------------------------- /data/src/message/broadcast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/message/broadcast.rs -------------------------------------------------------------------------------- /data/src/message/formatting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/message/formatting.rs -------------------------------------------------------------------------------- /data/src/message/formatting/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/message/formatting/encode.rs -------------------------------------------------------------------------------- /data/src/message/highlight.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/message/highlight.rs -------------------------------------------------------------------------------- /data/src/message/source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/message/source.rs -------------------------------------------------------------------------------- /data/src/mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/mode.rs -------------------------------------------------------------------------------- /data/src/notification.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/notification.rs -------------------------------------------------------------------------------- /data/src/pane.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/pane.rs -------------------------------------------------------------------------------- /data/src/preview.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/preview.rs -------------------------------------------------------------------------------- /data/src/preview/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/preview/cache.rs -------------------------------------------------------------------------------- /data/src/preview/card.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/preview/card.rs -------------------------------------------------------------------------------- /data/src/preview/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/preview/image.rs -------------------------------------------------------------------------------- /data/src/rate_limit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/rate_limit.rs -------------------------------------------------------------------------------- /data/src/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/serde.rs -------------------------------------------------------------------------------- /data/src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/server.rs -------------------------------------------------------------------------------- /data/src/shortcut.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/shortcut.rs -------------------------------------------------------------------------------- /data/src/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/stream.rs -------------------------------------------------------------------------------- /data/src/target.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/target.rs -------------------------------------------------------------------------------- /data/src/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/time.rs -------------------------------------------------------------------------------- /data/src/url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/url.rs -------------------------------------------------------------------------------- /data/src/user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/user.rs -------------------------------------------------------------------------------- /data/src/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/version.rs -------------------------------------------------------------------------------- /data/src/window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/window.rs -------------------------------------------------------------------------------- /data/src/window/position.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/window/position.rs -------------------------------------------------------------------------------- /data/src/window/size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/src/window/size.rs -------------------------------------------------------------------------------- /data/tests/message/0e6e29a05742ed088e7e3cc0cba92c3c777e2dae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/tests/message/0e6e29a05742ed088e7e3cc0cba92c3c777e2dae.json -------------------------------------------------------------------------------- /data/tests/message/15c5cb9af03918f502c230ace766355cc1e930cb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/tests/message/15c5cb9af03918f502c230ace766355cc1e930cb.json -------------------------------------------------------------------------------- /data/tests/message/f525f6a90ec5667c6e9b6692ec03da4ce57dbc72.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/data/tests/message/f525f6a90ec5667c6e9b6692ec03da4ce57dbc72.json -------------------------------------------------------------------------------- /fonts/halloy-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/fonts/halloy-icons.ttf -------------------------------------------------------------------------------- /fonts/iosevka-term-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/fonts/iosevka-term-bold.ttf -------------------------------------------------------------------------------- /fonts/iosevka-term-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/fonts/iosevka-term-italic.ttf -------------------------------------------------------------------------------- /fonts/iosevka-term-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/fonts/iosevka-term-light.ttf -------------------------------------------------------------------------------- /fonts/iosevka-term-lightitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/fonts/iosevka-term-lightitalic.ttf -------------------------------------------------------------------------------- /fonts/iosevka-term-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/fonts/iosevka-term-regular.ttf -------------------------------------------------------------------------------- /fonts/iosevka-term-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/fonts/iosevka-term-semibold.ttf -------------------------------------------------------------------------------- /ipc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/ipc/Cargo.toml -------------------------------------------------------------------------------- /ipc/src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/ipc/src/client.rs -------------------------------------------------------------------------------- /ipc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/ipc/src/lib.rs -------------------------------------------------------------------------------- /ipc/src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/ipc/src/server.rs -------------------------------------------------------------------------------- /irc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/irc/Cargo.toml -------------------------------------------------------------------------------- /irc/proto/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/irc/proto/Cargo.toml -------------------------------------------------------------------------------- /irc/proto/src/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/irc/proto/src/command.rs -------------------------------------------------------------------------------- /irc/proto/src/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/irc/proto/src/format.rs -------------------------------------------------------------------------------- /irc/proto/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/irc/proto/src/lib.rs -------------------------------------------------------------------------------- /irc/proto/src/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/irc/proto/src/parse.rs -------------------------------------------------------------------------------- /irc/src/codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/irc/src/codec.rs -------------------------------------------------------------------------------- /irc/src/connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/irc/src/connection.rs -------------------------------------------------------------------------------- /irc/src/connection/proxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/irc/src/connection/proxy.rs -------------------------------------------------------------------------------- /irc/src/connection/tls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/irc/src/connection/tls.rs -------------------------------------------------------------------------------- /irc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/irc/src/lib.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /scripts/build-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/scripts/build-macos.sh -------------------------------------------------------------------------------- /scripts/build-windows-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/scripts/build-windows-installer.sh -------------------------------------------------------------------------------- /scripts/build-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/scripts/build-windows.sh -------------------------------------------------------------------------------- /scripts/flatpak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/scripts/flatpak.sh -------------------------------------------------------------------------------- /scripts/format.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | cargo +nightly fmt --all 4 | -------------------------------------------------------------------------------- /scripts/generate-linux-icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/scripts/generate-linux-icons.sh -------------------------------------------------------------------------------- /scripts/generate-macos-icns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/scripts/generate-macos-icns.sh -------------------------------------------------------------------------------- /scripts/generate-windows-ico.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/scripts/generate-windows-ico.sh -------------------------------------------------------------------------------- /scripts/install-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/scripts/install-linux.sh -------------------------------------------------------------------------------- /scripts/package-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/scripts/package-linux.sh -------------------------------------------------------------------------------- /scripts/package-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/scripts/package-macos.sh -------------------------------------------------------------------------------- /scripts/sign-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/scripts/sign-macos.sh -------------------------------------------------------------------------------- /sounds/bloop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/sounds/bloop.ogg -------------------------------------------------------------------------------- /sounds/bonk.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/sounds/bonk.ogg -------------------------------------------------------------------------------- /sounds/dong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/sounds/dong.ogg -------------------------------------------------------------------------------- /sounds/drop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/sounds/drop.ogg -------------------------------------------------------------------------------- /sounds/peck.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/sounds/peck.ogg -------------------------------------------------------------------------------- /sounds/ring.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/sounds/ring.ogg -------------------------------------------------------------------------------- /sounds/sing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/sounds/sing.ogg -------------------------------------------------------------------------------- /sounds/squeak.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/sounds/squeak.ogg -------------------------------------------------------------------------------- /sounds/tweep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/sounds/tweep.ogg -------------------------------------------------------------------------------- /sounds/whistle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/sounds/whistle.ogg -------------------------------------------------------------------------------- /sounds/zone.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/sounds/zone.ogg -------------------------------------------------------------------------------- /src/appearance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance.rs -------------------------------------------------------------------------------- /src/appearance/theme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance/theme.rs -------------------------------------------------------------------------------- /src/appearance/theme/button.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance/theme/button.rs -------------------------------------------------------------------------------- /src/appearance/theme/checkbox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance/theme/checkbox.rs -------------------------------------------------------------------------------- /src/appearance/theme/container.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance/theme/container.rs -------------------------------------------------------------------------------- /src/appearance/theme/context_menu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance/theme/context_menu.rs -------------------------------------------------------------------------------- /src/appearance/theme/font_style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance/theme/font_style.rs -------------------------------------------------------------------------------- /src/appearance/theme/menu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance/theme/menu.rs -------------------------------------------------------------------------------- /src/appearance/theme/pane_grid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance/theme/pane_grid.rs -------------------------------------------------------------------------------- /src/appearance/theme/progress_bar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance/theme/progress_bar.rs -------------------------------------------------------------------------------- /src/appearance/theme/rule.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance/theme/rule.rs -------------------------------------------------------------------------------- /src/appearance/theme/scrollable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance/theme/scrollable.rs -------------------------------------------------------------------------------- /src/appearance/theme/selectable_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance/theme/selectable_text.rs -------------------------------------------------------------------------------- /src/appearance/theme/svg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance/theme/svg.rs -------------------------------------------------------------------------------- /src/appearance/theme/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance/theme/text.rs -------------------------------------------------------------------------------- /src/appearance/theme/text_editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance/theme/text_editor.rs -------------------------------------------------------------------------------- /src/appearance/theme/text_input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/appearance/theme/text_input.rs -------------------------------------------------------------------------------- /src/audio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/audio.rs -------------------------------------------------------------------------------- /src/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/buffer.rs -------------------------------------------------------------------------------- /src/buffer/channel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/buffer/channel.rs -------------------------------------------------------------------------------- /src/buffer/channel/topic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/buffer/channel/topic.rs -------------------------------------------------------------------------------- /src/buffer/context_menu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/buffer/context_menu.rs -------------------------------------------------------------------------------- /src/buffer/empty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/buffer/empty.rs -------------------------------------------------------------------------------- /src/buffer/file_transfers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/buffer/file_transfers.rs -------------------------------------------------------------------------------- /src/buffer/highlights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/buffer/highlights.rs -------------------------------------------------------------------------------- /src/buffer/input_view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/buffer/input_view.rs -------------------------------------------------------------------------------- /src/buffer/input_view/completion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/buffer/input_view/completion.rs -------------------------------------------------------------------------------- /src/buffer/input_view/format_tooltip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/buffer/input_view/format_tooltip.txt -------------------------------------------------------------------------------- /src/buffer/logs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/buffer/logs.rs -------------------------------------------------------------------------------- /src/buffer/message_view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/buffer/message_view.rs -------------------------------------------------------------------------------- /src/buffer/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/buffer/query.rs -------------------------------------------------------------------------------- /src/buffer/scroll_view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/buffer/scroll_view.rs -------------------------------------------------------------------------------- /src/buffer/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/buffer/server.rs -------------------------------------------------------------------------------- /src/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/event.rs -------------------------------------------------------------------------------- /src/font.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/font.rs -------------------------------------------------------------------------------- /src/icon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/icon.rs -------------------------------------------------------------------------------- /src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/logger.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/modal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/modal.rs -------------------------------------------------------------------------------- /src/modal/connect_to_server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/modal/connect_to_server.rs -------------------------------------------------------------------------------- /src/modal/image_preview.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/modal/image_preview.rs -------------------------------------------------------------------------------- /src/modal/prompt_before_open_url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/modal/prompt_before_open_url.rs -------------------------------------------------------------------------------- /src/modal/reload_configuration_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/modal/reload_configuration_error.rs -------------------------------------------------------------------------------- /src/notification.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/notification.rs -------------------------------------------------------------------------------- /src/notification/toast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/notification/toast.rs -------------------------------------------------------------------------------- /src/platform_specific.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/platform_specific.rs -------------------------------------------------------------------------------- /src/screen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/screen.rs -------------------------------------------------------------------------------- /src/screen/dashboard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/screen/dashboard.rs -------------------------------------------------------------------------------- /src/screen/dashboard/command_bar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/screen/dashboard/command_bar.rs -------------------------------------------------------------------------------- /src/screen/dashboard/pane.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/screen/dashboard/pane.rs -------------------------------------------------------------------------------- /src/screen/dashboard/sidebar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/screen/dashboard/sidebar.rs -------------------------------------------------------------------------------- /src/screen/dashboard/theme_editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/screen/dashboard/theme_editor.rs -------------------------------------------------------------------------------- /src/screen/help.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/screen/help.rs -------------------------------------------------------------------------------- /src/screen/welcome.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/screen/welcome.rs -------------------------------------------------------------------------------- /src/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/stream.rs -------------------------------------------------------------------------------- /src/unix_signal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/unix_signal.rs -------------------------------------------------------------------------------- /src/url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/url.rs -------------------------------------------------------------------------------- /src/widget.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget.rs -------------------------------------------------------------------------------- /src/widget/anchored_overlay.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/anchored_overlay.rs -------------------------------------------------------------------------------- /src/widget/color_picker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/color_picker.rs -------------------------------------------------------------------------------- /src/widget/combo_box.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/combo_box.rs -------------------------------------------------------------------------------- /src/widget/context_menu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/context_menu.rs -------------------------------------------------------------------------------- /src/widget/decorate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/decorate.rs -------------------------------------------------------------------------------- /src/widget/double_click.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/double_click.rs -------------------------------------------------------------------------------- /src/widget/double_pass.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/double_pass.rs -------------------------------------------------------------------------------- /src/widget/font_style_pick_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/font_style_pick_list.rs -------------------------------------------------------------------------------- /src/widget/key_press.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/key_press.rs -------------------------------------------------------------------------------- /src/widget/message_content.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/message_content.rs -------------------------------------------------------------------------------- /src/widget/modal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/modal.rs -------------------------------------------------------------------------------- /src/widget/notify_visibility.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/notify_visibility.rs -------------------------------------------------------------------------------- /src/widget/on_resize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/on_resize.rs -------------------------------------------------------------------------------- /src/widget/pick_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/pick_list.rs -------------------------------------------------------------------------------- /src/widget/selectable_rich_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/selectable_rich_text.rs -------------------------------------------------------------------------------- /src/widget/selectable_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/selectable_text.rs -------------------------------------------------------------------------------- /src/widget/selectable_text/selection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/selectable_text/selection.rs -------------------------------------------------------------------------------- /src/widget/shortcut.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/shortcut.rs -------------------------------------------------------------------------------- /src/widget/tooltip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/widget/tooltip.rs -------------------------------------------------------------------------------- /src/window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/src/window.rs -------------------------------------------------------------------------------- /wix/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/wix/banner.png -------------------------------------------------------------------------------- /wix/dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/wix/dialog.png -------------------------------------------------------------------------------- /wix/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/wix/license.rtf -------------------------------------------------------------------------------- /wix/main.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidowl/halloy/HEAD/wix/main.wxs --------------------------------------------------------------------------------