Skip to content

Commit

Permalink
chore: add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
u8slvn committed Aug 26, 2024
1 parent 9c6c3bf commit efc0a2a
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v0.1.0 - 2024-08-??

### Added

- Main window, borderless and always-on-top.
- Basic controls: `ESC` to quit, `Left Click` to move the window around.
- Dog states: `idle`, `idle and bark`, `walk`, `walk and bark`, `sit`, `sit and bark`, `lie down`, `lie down and bark`., `run`, `run and bark`, `stand`, `stand and bark`, `sleep`.
- Dog basic AI using Markov chains.
- 10 Dog sprites from **Pixel Dogs** by [Benvictus](https://benvictus.itch.io/pixel-dogs).
- Mountain biome.
- Infinite dog walking loop. When the dog reaches the end of the screen, it appears on the opposite side.
- Application icon and splash screen.
11 changes: 10 additions & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,13 @@ tasks:
desc: Run tests.
cmds:
- pytest tests/
- mypy
- mypy

bump-version:
desc: Bump version, define target version with "VERSION=*.*.*".
silent: true
vars:
VERSION: '{{.VERSION}}'
cmds:
- sed -i "s/^\(version = \"\)\(.\)*\"/\1{{.VERSION}}\"/" pyproject.toml
- echo "Version replaced by {{.VERSION}} in 'pyproject.toml'"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "doggo"
version = "0.1.0"
description = ""
description = "A basic dog AI using Markov chain and pygame."
authors = ["u8slvn <u8slvn@gmail.com>"]
license = "LGPL-3.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/doggo/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# --- World configuration ---

WORLD_TITLE = "Doggo"
WORLD_FPS = 60
WORLD_FPS = 30
WORLD_WIDTH = 350
WORLD_HEIGHT = 100
WORLD_GROUND_HEIGHT = 15 # The size of the ground.
Expand Down

0 comments on commit efc0a2a

Please sign in to comment.