Skip to content

Commit

Permalink
New patch release
Browse files Browse the repository at this point in the history
  • Loading branch information
xyproto committed Apr 3, 2023
1 parent 3bdf3e0 commit 8b481a1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Adjust the `mv` flags and the `~/go/bin` path as needed. Perhaps `go install` wi

Alternatively, download and install a [release version](https://github.com/xyproto/orbiton/releases). For example, for Raspberry Pi 2, 3 or 4 running Linux:

curl -sL 'https://github.com/xyproto/orbiton/releases/download/2.60.3/orbiton-2.60.3-linux_armv7_static.tar.xz' | tar axC /tmp && sudo install -Dm755 /tmp/orbiton-2.60.3-linux_armv7_static/o /usr/bin/o && sudo install -Dm644 /tmp/orbiton-2.60.3-linux_armv7_static/o.1.gz /usr/share/man/man1/o.1.gz
curl -sL 'https://github.com/xyproto/orbiton/releases/download/2.60.4/orbiton-2.60.4-linux_armv7_static.tar.xz' | tar axC /tmp && sudo install -Dm755 /tmp/orbiton-2.60.4-linux_armv7_static/o /usr/bin/o && sudo install -Dm644 /tmp/orbiton-2.60.4-linux_armv7_static/o.1.gz /usr/share/man/man1/o.1.gz

## Setting `o` as the default editor for `git`

Expand Down Expand Up @@ -454,7 +454,7 @@ When editing `PKGBUILD` files, it is possible to press `ctrl-o` and select `Call

## Size

* The `o` executable is **1.5M** when built with GCC 12.60.3 (for 64-bit Linux) and compressed with `upx`.
* The `o` executable is **1.5M** when built with GCC 12.60.4 (for 64-bit Linux) and compressed with `upx`.
* This isn't as small as [e3](https://sites.google.com/site/e3editor/), an editor written in assembly (which is **234k**), but it's reasonably lean.

One way of building with `gccgo` and `upx` (in the `v2` directory):
Expand Down Expand Up @@ -570,6 +570,6 @@ Install (use `sudo`, if needed):

## General info

* Version: 2.60.3
* Version: 2.60.4
* License: 3-clause BSD
* Author: Alexander F. Rødseth <[email protected]>
2 changes: 1 addition & 1 deletion aur.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

VERSION=2.60.3
VERSION=2.60.4

rm -rf archpackages
mkdir -p archpackages
Expand Down
4 changes: 2 additions & 2 deletions o.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" -*-Nroff-*-
.\"
.TH "o" 1 "06 Mar 2023" "o" "User Commands"
.TH "o" 1 "04 Apr 2023" "o" "User Commands"
.SH NAME
o \- an editor
.SH SYNOPSIS
Expand Down Expand Up @@ -167,7 +167,7 @@ Middle-click pasting (instead of pasting with \fBctrl-v\fP) may have issues with
.sp
The smart indentation is not always smart.
.SH VERSION
2.60.3
2.60.4
.SH AUTHOR
.B o
was written by Alexander F. Rødseth <[email protected]>
2 changes: 1 addition & 1 deletion v2/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
)

const (
versionString = "Orbiton 2.60.3"
versionString = "Orbiton 2.60.4"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#

# The current version goes here, as the default value
VERSION=${1:-'2.60.3'}
VERSION=${1:-'2.60.4'}

if [ -z "$1" ]; then
echo "The current version is $VERSION, pass the new version as the first argument if you wish to change it"
Expand Down

0 comments on commit 8b481a1

Please sign in to comment.