Skip to content

Commit 2845a5d

Browse files
committed
Version v2022.11.25
1 parent 42f3232 commit 2845a5d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Unlike the Git commit history, this changelog does not include code cleanups
22
and other details that don't affect using Porcupine.
33

44

5-
## Unreleased
5+
## v2022.11.25
66

77
New keyboard shortcuts and UI fixes:
88
- 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.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Open a terminal and run these commands:
5353
python3 -m pip install --user --upgrade pip wheel
5454
python3 -m venv porcupine-venv
5555
source porcupine-venv/bin/activate
56-
python3 -m pip install https://github.com/Akuli/porcupine/archive/v2022.08.28.zip
56+
python3 -m pip install https://github.com/Akuli/porcupine/archive/v2022.11.25.zip
5757
porcu
5858

5959
If you want to leave Porcupine running and use the same terminal for something else,
@@ -74,7 +74,7 @@ Then run these commands:
7474
python3 -m pip install --user --upgrade pip wheel
7575
python3 -m venv porcupine-venv
7676
source porcupine-venv/bin/activate
77-
python3 -m pip install https://github.com/Akuli/porcupine/archive/v2022.08.28.zip
77+
python3 -m pip install https://github.com/Akuli/porcupine/archive/v2022.11.25.zip
7878
porcu
7979

8080
If you want to leave Porcupine running and use the same terminal for something else,

porcupine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
import appdirs
1313

14-
version_info = (2022, 8, 28) # this is updated with scripts/release.py
14+
version_info = (2022, 11, 25) # this is updated with scripts/release.py
1515
__version__ = "%d.%02d.%02d" % version_info
1616
__author__ = "Akuli"
1717
__copyright__ = "Copyright (c) 2017-2022 Akuli"

0 commit comments

Comments
 (0)