From 2845a5d537d85ddd7a7b7c8cbcb3e3a4d8d924ca Mon Sep 17 00:00:00 2001 From: Akuli Date: Fri, 25 Nov 2022 17:13:22 +0200 Subject: [PATCH] Version v2022.11.25 --- CHANGELOG.md | 2 +- README.md | 4 ++-- porcupine/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1209fc5c0..020436495 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Unlike the Git commit history, this changelog does not include code cleanups and other details that don't affect using Porcupine. -## Unreleased +## v2022.11.25 New keyboard shortcuts and UI fixes: - There are new key bindings for focusing various parts of Porcupine without clicking them: Alt+Shift+D for directory tree, Alt+Shift+F for the file being edited, and Alt+Shift+C for command output. Thank you [lawson89](https://github.com/lawson89) for adding the new key bindings. diff --git a/README.md b/README.md index 27025c2be..280c1383f 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Open a terminal and run these commands: python3 -m pip install --user --upgrade pip wheel python3 -m venv porcupine-venv source porcupine-venv/bin/activate - python3 -m pip install https://github.com/Akuli/porcupine/archive/v2022.08.28.zip + python3 -m pip install https://github.com/Akuli/porcupine/archive/v2022.11.25.zip porcu If you want to leave Porcupine running and use the same terminal for something else, @@ -74,7 +74,7 @@ Then run these commands: python3 -m pip install --user --upgrade pip wheel python3 -m venv porcupine-venv source porcupine-venv/bin/activate - python3 -m pip install https://github.com/Akuli/porcupine/archive/v2022.08.28.zip + python3 -m pip install https://github.com/Akuli/porcupine/archive/v2022.11.25.zip porcu If you want to leave Porcupine running and use the same terminal for something else, diff --git a/porcupine/__init__.py b/porcupine/__init__.py index 0e24e715d..59eb037ca 100644 --- a/porcupine/__init__.py +++ b/porcupine/__init__.py @@ -11,7 +11,7 @@ import appdirs -version_info = (2022, 8, 28) # this is updated with scripts/release.py +version_info = (2022, 11, 25) # this is updated with scripts/release.py __version__ = "%d.%02d.%02d" % version_info __author__ = "Akuli" __copyright__ = "Copyright (c) 2017-2022 Akuli"