diff --git a/README.md b/README.md index 75c9f416..fcfca3ad 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,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.68.4/orbiton-2.68.4-linux_armv7_static.tar.xz' | tar JxC /tmp && sudo install -Dm755 /tmp/orbiton-2.68.4-linux_armv7_static/o /usr/bin/o && sudo install -Dm644 /tmp/orbiton-2.68.4-linux_armv7_static/o.1.gz /usr/share/man/man1/o.1.gz + curl -sL 'https://github.com/xyproto/orbiton/releases/download/v2.68.5/orbiton-2.68.5-linux_armv7_static.tar.xz' | tar JxC /tmp && sudo install -Dm755 /tmp/orbiton-2.68.5-linux_armv7_static/o /usr/bin/o && sudo install -Dm644 /tmp/orbiton-2.68.5-linux_armv7_static/o.1.gz /usr/share/man/man1/o.1.gz ## Setting `o` as the default editor executable for `git` @@ -701,6 +701,6 @@ The above copyright notice and this permission notice shall be included in all c ## General info -* Version: 2.68.4 +* Version: 2.68.5 * License: 3-clause BSD * Author: Alexander F. Rødseth <xyproto@archlinux.org> diff --git a/o.1 b/o.1 index 95212bbb..a74226b0 100644 --- a/o.1 +++ b/o.1 @@ -1,6 +1,6 @@ .\" -*-Nroff-*- .\" -.TH "o" 1 "01 Dec 2024" "o" "User Commands" +.TH "o" 1 "17 Dec 2024" "o" "User Commands" .SH NAME o \- an editor .SH SYNOPSIS @@ -225,7 +225,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.68.4 +2.68.5 .SH AUTHOR .B o was written by Alexander F. Rødseth diff --git a/v2/main.go b/v2/main.go index 341d74d5..956871fd 100644 --- a/v2/main.go +++ b/v2/main.go @@ -21,7 +21,7 @@ import ( ) const ( - versionString = "Orbiton 2.68.4" + versionString = "Orbiton 2.68.5" // How many lines of context above and below should the tab completion try to use? ollamaContextLines = 20 diff --git a/version.sh b/version.sh index ac7ec263..b4703440 100755 --- a/version.sh +++ b/version.sh @@ -4,7 +4,7 @@ # # The current version goes here, as the default value -VERSION=${1:-'2.68.4'} +VERSION=${1:-'2.68.5'} if [ -z "$1" ]; then echo "The current version is $VERSION, pass the new version as the first argument if you wish to change it" diff --git a/web/docker.sh b/web/docker.sh index b8ceda70..00b1a622 100755 --- a/web/docker.sh +++ b/web/docker.sh @@ -1,6 +1,6 @@ #!/bin/sh -DOCKER_TAG='2.68.4' +DOCKER_TAG='2.68.5' # Google Cloud PROJECT_ID='personal-306017'