Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.8.0 #220

Merged
merged 9 commits into from
Jul 25, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [0.8.0] - 2022-07-25

- Added audio
- Removed pynput as a dependency on windows
- A lot of spelling and grammar fixes
- Fixed Poketes not beeing freeable
- Added some game ballancing
- Trainers can now obtain more than one Pokete
- Made run away random
- Added remappable controls
- Save location is now based on XDG dirs, no intervention needed
- Added quick attacks using `yzcv` so the attackamenu can be skipped

Many thanks to everybody who contributed to this release!

## [0.7.3] - 2022-06-20

Preparation release for flatpaks. Includes:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ For an example mod see [example.py](mods/example.py).
- [ ] More maps
- [x] Types for attacks and Poketes
- [x] Evolving
- [ ] More than one Pokete for trainers
- [x] More than one Pokete for trainers
- [x] Coloured Poketes
- [x] A store to buy Poketeballs
- [x] Potions
Expand Down
9 changes: 6 additions & 3 deletions assets/AppImageBuilder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,18 @@ script:
- mkdir -p AppDir/usr/share/icons
- git clone --depth=1 https://github.com/lxgr-linux/pokete AppDir/usr/share/pokete
- git clone --depth=1 https://github.com/lxgr-linux/scrap_engine AppDir/usr/share/scrap_engine
- git clone --depth=1 https://github.com/TaylorSMarks/playsound AppDir/usr/share/playsound
- cp AppDir/usr/share/scrap_engine/scrap_engine.py AppDir/usr/share/pokete/
- cp AppDir/usr/share/pokete/assets/pokete.png AppDir/usr/share/icons/pokete.png
- cp AppDir/usr/share/playsound/playsound.py AppDir/usr/share/pokete/

AppDir:
path: AppDir
app_info:
id: com.github.lxgr-linux.pokete
name: Pokete
icon: pokete
version: 0.6.0
version: 0.8.0
exec: usr/bin/python3.10
exec_args: $APPDIR/usr/share/pokete/pokete.py --log $@
# pacman:
Expand All @@ -24,23 +26,24 @@ AppDir:
apt:
arch: amd64
sources:
- sourceline: 'deb [arch=amd64] http://archive.ubuntu.com/ubuntu/ impish main restricted universe multiverse'
- sourceline: 'deb [arch=amd64] http://archive.ubuntu.com/ubuntu/ jammy main restricted universe multiverse'
key_url: 'http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x871920d1991bc93c'
include:
- python3.10
- python3-gi
exclude:
- perl
files:
include: []
exclude:
- usr/share/man
- usr/share/pokete/assets
- usr/share/pokete/bash
- usr/share/pokete/.git
- usr/share/pokete/prepare_pages.py
- usr/share/pokete/gen_wiki.py./
- usr/share/pokete/*.md
- usr/share/scrap_engine
- usr/share/playsound
- usr/share/doc
test:
fedora-30:
Expand Down
2 changes: 1 addition & 1 deletion release.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from pathlib import Path


VERSION = "0.7.2"
VERSION = "0.8.0"
CODENAME = "Grey Edition"
SAVEPATH = Path(
os.environ.get(
Expand Down
2 changes: 1 addition & 1 deletion wiki.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
v0.7.2
v0.8.0

# Pokete Wiki
This wiki/documentation is a compilation of all Poketes, attacks, and types present in the Pokete game.
Expand Down