Skip to content

Commit

Permalink
New patch release
Browse files Browse the repository at this point in the history
  • Loading branch information
xyproto committed Jul 22, 2023
1 parent 5e3f5de commit 8cd5259
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,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/v2.62.6/orbiton-2.62.6-linux_armv7_static.tar.xz' | tar JxC /tmp && sudo install -Dm755 /tmp/orbiton-2.62.6-linux_armv7_static/o /usr/bin/o && sudo install -Dm644 /tmp/orbiton-2.62.6-linux_armv7_static/o.1.gz /usr/share/man/man1/o.1.gz
curl -sL 'https://github.com/xyproto/orbiton/releases/download/v2.62.7/orbiton-2.62.7-linux_armv7_static.tar.xz' | tar JxC /tmp && sudo install -Dm755 /tmp/orbiton-2.62.7-linux_armv7_static/o /usr/bin/o && sudo install -Dm644 /tmp/orbiton-2.62.7-linux_armv7_static/o.1.gz /usr/share/man/man1/o.1.gz

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

Expand Down Expand Up @@ -638,6 +638,6 @@ Install (use `sudo` or `doas`, if needed):

## General info

* Version: 2.62.6
* Version: 2.62.7
* License: 3-clause BSD
* Author: Alexander F. Rødseth <[email protected]>
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 Jul 2023" "o" "User Commands"
.TH "o" 1 "22 Jul 2023" "o" "User Commands"
.SH NAME
o \- an editor
.SH SYNOPSIS
Expand Down Expand Up @@ -181,7 +181,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.62.6
2.62.7
.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 (
"github.com/xyproto/vt100"
)

const versionString = "Orbiton 2.62.6"
const versionString = "Orbiton 2.62.7"

// quitMut disallows Exit(1) while a file is being saved
var quitMut sync.Mutex
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.62.6'}
VERSION=${1:-'2.62.7'}

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
2 changes: 1 addition & 1 deletion web/docker.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

DOCKER_TAG='2.62.6'
DOCKER_TAG='2.62.7'

# Google Cloud
PROJECT_ID='personal-306017'
Expand Down

0 comments on commit 8cd5259

Please sign in to comment.