Remove some images

This commit is contained in:
speedie 2023-06-25 23:36:34 +02:00
parent 84c2f951c9
commit d13ba5cd07
8 changed files with 14 additions and 20 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 818 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 628 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

View file

@ -11,7 +11,6 @@
<body>
<div class="content">
<h2>iron</h2>
<img src="../img/iron.png" width="700" alt="image">
<h2 id="what-is-iron">What is iron?</h2>
<p>iron is a minimal rautafarmi client written in Bash for GNU/Linux. It allows the user to post/recieve messages using the <a href="https://donut.gq/rautafarmi/api.php">rautafarmi API</a> and it displays the information to the user in a nice format. iron is based on the older <a href="https://speedie.site/rchat">rchat</a> rautafarmi client that used messages.txt to get messages.</p>
<h2 id="why-should-i-use-iron-over-rchat">Why should I use iron over rchat?</h2>
@ -60,24 +59,24 @@
</ul>
<h2 id="patches">Patches</h2>
<p>To submit patches, Create a pull request with your patch in the <a href="https://codeberg.org/speedie/iron/src/branch/patches">patches branch</a> or <a href="mailto:speedie@speedie.site">send me an email</a>. Patches can be generated using the &#39;diff -up&#39; command on a GNU/Linux system.</p>
<h4 id="tput-colors">tput colors</h4>
<p>This patch replaces the ANSI escape codes with tput commands. This allows for more colors and also allows you to separate your iron color scheme from your terminal color scheme (Useful if you use Pywal).</p>
<p>NOTE: The 1.1 version is compatible with 1.2 too.</p>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-tputcols-1.0.diff">iron-tputcols-1.0.diff</a>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-tputcols-1.1.diff">iron-tputcols-1.1.diff</a>
<h4 id="embed-image">Embed Image</h4>
<p>This patch adds new image functionality to iron. Specifically it allows you to post images (using the imgurl field). To post an image, simply add the link somewhere in your message. It will be moved to the Image URL field before the post is sent to the instance.</p>
<p>NOTE: The 1.1 version is compatible with 1.2 too.</p>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-embed-image-1.0.diff">iron-embed-image-1.0.diff</a>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-embed-image-1.1.diff">iron-embed-image-1.1.diff</a>
<h4 id="xresources">.Xresources</h4>
<p>This patch adds xrdb or .Xresources support to iron. Note that values must be defined with the 'iron' prefix to be used. You may modify the patch to use any values if you want which would enable Pywal support.</p>
<p>NOTE: The 1.0 version is compatible with 1.1 and 1.2 too.</p>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-xresources-1.0.diff">iron-xresources-1.0.diff</a>
<h4 id="history">History</h4>
<p>This patch adds keybinds for viewing older/newer messages. If you press 'u', you will see the newest messages. If you press 'd', you will go down the history.</p>
<p>Do note that this requires parsing ALL messages, not just the terminal size meaning loading messages takes longer. Because of this, there are two variants. The regular variant will download and parse every single message on load and then will not parse it again. The ondemand variant will only parse the old messages when navigating through the history. I personally prefer this variant!</p>
@ -85,51 +84,51 @@
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-viewhist-ondemand-1.1.diff">iron-viewhist-ondemand-1.1.diff</a>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-viewhist-1.2.diff">iron-viewhist-1.2.diff</a>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-viewhist-ondemand-1.2.diff">iron-viewhist-ondemand-1.2.diff</a>
<h4 id="nickname">Nickname</h4>
<p>This patch allows the user of iron to set nicknames for themselves. It will be saved until the ':reset' command is used (data is cleared) or the nickname is changed.</p>
<p>Once a nickname is set, messages will be sent with it. To set a nickname, simply use the ':set nickname' command.</p>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-nickname-1.1.diff">iron-nickname-1.1.diff</a>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-nickname-1.2.diff">iron-nickname-1.2.diff</a>
<h4 id="hidemessages">Hide messages</h4>
<p>This patch adds two commands, ':hide' and ':show'. The hide command will open all messages sent inside $EDITOR (or Vim if $EDITOR is not defined) and allow the user to make changes. A patch will then be created that will be applied on startup. The show command does the complete opposite, it reverts the patch.</p>
<p>This means the patch is useful for other things because it allows you to modify the messages in any way you want (or even create new ones client side).</p>
<p>NOTE: The 1.1 version is compatible with 1.2 too.</p>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-hidemessages-1.1.diff">iron-hidemessages-1.1.diff</a>
<h4 id="notification">Notification</h4>
<p>This patch implements notification support. With this patch, the latest message along with the username will be sent as a notification. It requires a notification daemon and libnotify-send to work. If it is not available, no notification will be sent.</p>
<p>NOTE: The 1.0 version is compatible with 1.1 and 1.2 too.</p>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-notification-1.0.diff">iron-notification-1.0.diff</a>
<h4 id="openurl">Open URL</h4>
<p>This patch adds a keybind to open a URL. To open the latest image sent (using the image field), you use the ':i' command. To open the latest URL sent (using the message field), you use the ':o' command. By default this patch uses xdg-open but you can change the browser to anything you want.</p>
<p>NOTE: The 1.0 version is compatible with 1.1 and 1.2 too.</p>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-openurl-1.0.diff">iron-openurl-1.0.diff</a>
<h4 id="itoedit">Insert mode editor</h4>
<p>This patch replaces the 'i' bind with the action of the ':e' command. You can still access the old insert mode by pressing 'e' though.</p>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-itoedit-1.0.diff">iron-itoedit-1.0.diff</a>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-itoedit-1.1.diff">iron-itoedit-1.1.diff</a>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-itoedit-1.2.diff">iron-itoedit-1.2.diff</a>
<h4 id="art">Art</h4>
<p>This patch allows you to add art or general text to display in the iron starter menu.</p>
<p>NOTE: The 1.0 version is compatible with 1.1 and 1.2 too.</p>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-art-1.0.diff">iron-art-1.0.diff</a>
<h4 id="refreshzoom">Refresh Zoom</h4>
<p>This patch allows iron to refresh its borders and messages based on terminal size without any reloading. This is done inside the IRON_HEADER function so any time the header is printed, the size is updated first.</p>
<p>Was considering merging this into main but decided not to as not everyone would want this!</p>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-refreshzoom-1.2.diff">iron-refreshzoom-1.2.diff</a>
<h4 id="hidestatus">Hide status</h4>
<p>This patch removes the iron version number, all separators and the instance status from the chat area so that all space (minus two lines) will be used for messages.</p>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-hidestatus-1.0.diff">iron-hidestatus-1.0.diff</a>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-hidestatus-1.1.diff">iron-hidestatus-1.1.diff</a>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-hidestatus-1.2.diff">iron-hidestatus-1.2.diff</a>
<h4 id="speedie">speedie's combo patch</h4>
<p>This patch is a combo patch. It adds embed image, hide messages, i to edit, nickname, tput colors and view history patches into one patch that can be applied to a clean iron build.</p>
<p>This diff was created for use with the Gentoo ebuild (because a few of the patches I use conflict with each other). If you want these patches, simply apply this patch.</p>
@ -137,7 +136,7 @@
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-speedie-1.1.diff">iron-speedie-1.1.diff</a>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-speedie-1.2.diff">iron-speedie-1.2.diff</a>
<a href="https://codeberg.org/speedie/iron/raw/branch/patches/iron-speedie-1.2-r2.diff">iron-speedie-1.2-r2.diff</a>
<h2 id="license">License</h2>
<p>iron, <strong>along with any contributions made to it (such as all user-submitted patches)</strong> are licensed under the GNU GPLv3 free software license.</p>
<h2 id="issues">Issues</h2>

View file

@ -12,7 +12,6 @@
<div class="content">
<h2>rchat</h2>
<p>rchat is a command-line rautafarmi instance client with Vim keybinds written in Bash. (also works in zsh)</p>
<img src="../img/rchat.png" alt="image">
<p>It is very customizable and is customized through editing with an editor.</p>
<h2>Features</h2>
<ul>
@ -68,7 +67,6 @@
<h4><a href="https://codeberg.org/speedie/rchat/raw/branch/patches/rchat-xresources-1.2.diff">rchat-xresources-1.2.diff</a></h4>
<h4><a href="https://codeberg.org/speedie/rchat/raw/branch/patches/rchat-xresources-1.3-r2.diff">rchat-xresources-1.3-r2.diff</a></h4>
<h3>Notifications</h3>
<img src="../img/notif.png" alt="image">
<p>This patch enables support for notifications in rchat using 'notify-send'. Make sure to install 'libnotify-send' before using.</p>
<h4>Author: speedie</h4>
<h4><a href="https://codeberg.org/speedie/rchat/raw/branch/patches/rchat-notification-0.5.diff">rchat-notification-0.5.diff</a></h4>
@ -82,17 +80,14 @@
<h4><a href="https://codeberg.org/speedie/rchat/raw/branch/patches/rchat-openurl-1.1.diff">rchat-openurl-1.1.diff</a></h4>
<h4><a href="https://codeberg.org/speedie/rchat/raw/branch/patches/rchat-openurl-1.2.diff">rchat-openurl-1.2.diff</a></h4>
<h3>Art</h3>
<img src="../img/rfarmi.png" alt="image">
<p>This patch adds support for art in rchat that runs before you join an instance. The art is placed in $HOME/.config/rchat/rchat_art and will run if present. The file can contain ANSI escape codes if you want colors.</p>
<h4>Author: speedie</h4>
<h4><a href="https://codeberg.org/speedie/rchat/raw/branch/patches/rchat-art-1.2.diff">rchat-art-1.2.diff</a></h4>
<h3>Tput colors</h3>
<img src="../img/rchat-tput.png" alt="image">
<p>This patch replaces the ANSI escape codes with tput commands. This allows for more colors and also allows you to separate your rchat color scheme from your terminal color scheme (Useful if you use Pywal).</p>
<h4>Author: speedie</h4>
<h4><a href="https://codeberg.org/speedie/rchat/raw/branch/patches/rchat-tputcolors-1.3-r2.diff">rchat-tputcolors-1.3-r2.diff</a></h4>
<h3>Hide status</h3>
<img src="../img/rchatdebloater.png" alt="image">
<p>This patch removes the rchat (vernum), separator and instance status from the chat area. This means messages are going to fill up the entire terminal window minus one line (used for the Insert mode).</p>
<h4>Author: speedie</h4>
<h4><a href="https://codeberg.org/speedie/rchat/raw/branch/patches/rchat-hidestatus-1.41.diff">rchat-hidestatus-1.41.diff</a></h4>