-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ With Go 1.17 or later, `o` can be installed like this: | |
|
||
Alternatively, download and install a [release version](https://github.com/xyproto/o/releases). For example, for Raspberry Pi 2, 3 or 4 running Linux: | ||
|
||
curl -sL 'https://github.com/xyproto/o/releases/download/2.59.4/o-2.59.4-linux_armv7_static.tar.xz' | tar axC /tmp && sudo install -Dm755 /tmp/o-2.59.4-linux_armv7_static/o /usr/bin/o && sudo install -Dm644 /tmp/o-2.59.4-linux_armv7_static/o.1.gz /usr/share/man/man1/o.1.gz | ||
curl -sL 'https://github.com/xyproto/o/releases/download/2.59.5/o-2.59.5-linux_armv7_static.tar.xz' | tar axC /tmp && sudo install -Dm755 /tmp/o-2.59.5-linux_armv7_static/o /usr/bin/o && sudo install -Dm644 /tmp/o-2.59.5-linux_armv7_static/o.1.gz /usr/share/man/man1/o.1.gz | ||
|
||
## Setting `o` as the default editor for `git` | ||
|
||
|
@@ -553,6 +553,6 @@ Install (use `sudo`, if needed): | |
|
||
## General info | ||
|
||
* Version: 2.59.4 | ||
* Version: 2.59.5 | ||
* License: 3-clause BSD | ||
* Author: Alexander F. Rødseth <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/sh | ||
|
||
VERSION=2.59.4 | ||
VERSION=2.59.5 | ||
|
||
rm -rf archpackages | ||
mkdir -p archpackages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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.59.4 | ||
2.59.5 | ||
.SH AUTHOR | ||
.B o | ||
was written by Alexander F. Rødseth <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ import ( | |
) | ||
|
||
const ( | ||
versionString = "o 2.59.4" | ||
versionString = "o 2.59.5" | ||
) | ||
|
||
func main() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters