Skip to content

Commit

Permalink
Version v2022.11.25
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Nov 25, 2022
1 parent 42f3232 commit 2845a5d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion porcupine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 2845a5d

Please sign in to comment.