mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-15 08:09:02 +00:00
bump: version 0.0.1 → 0.1.0
This commit is contained in:
parent
f347d329ad
commit
d8efb0c2cd
4 changed files with 50 additions and 3 deletions
2
.cz.toml
2
.cz.toml
|
@ -2,7 +2,7 @@
|
|||
name = "cz_conventional_commits"
|
||||
tag_format = "$version"
|
||||
version_scheme = "semver"
|
||||
version = "0.0.1"
|
||||
version = "0.1.0"
|
||||
version_files = [
|
||||
"version.php:VERSION",
|
||||
"resources/js/package.json:version"
|
||||
|
|
47
CHANGELOG.md
Normal file
47
CHANGELOG.md
Normal file
|
@ -0,0 +1,47 @@
|
|||
## 0.1.0 (2024-08-04)
|
||||
|
||||
### Feat
|
||||
|
||||
- Add version number to layout
|
||||
- Add links to Minecraft Wiki on results page
|
||||
- Add disclaimer to footer
|
||||
- Add contact section to about page
|
||||
- Add privacy notice page
|
||||
- Add New Pairing button
|
||||
- Add audit log
|
||||
- A bit of styling for links + add thanks block for web design
|
||||
- Add about page
|
||||
- Add page indicator to navbar
|
||||
- First draft of navbar + changes to sizing
|
||||
- Add sorting options for results table
|
||||
- A bit of styling for results table
|
||||
- Add trend graphs to result page
|
||||
- Basic results page
|
||||
- Add history caching
|
||||
- Use minecraft font
|
||||
- Change loading animation
|
||||
- Add no-js fallback
|
||||
- AJAX loading with loading animation
|
||||
- Add htmx dependency
|
||||
- Add CSRF protection
|
||||
- Add voting logic
|
||||
- Redo of rating view
|
||||
- Basics for more advanced pairing
|
||||
- Add session to match view
|
||||
- Add custom user agent for API requests
|
||||
- Add commitizen and version file
|
||||
- First draft of layout
|
||||
- Show random mobs in UI
|
||||
- Basic migration system + initial migration
|
||||
- Add new mobs to database
|
||||
- Add image download logic
|
||||
|
||||
### Fix
|
||||
|
||||
- direction indicators were the wrong way round
|
||||
- Left side stopped working during previous fix
|
||||
- expectation calculation was wrong
|
||||
- winner column was read 1-indexed but written 0-indexed
|
||||
- img-preload doesn't support data prefix + running cursor fix on load doesn't work
|
||||
- Use standard html attributes
|
||||
- Loading animation issues
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mobmash",
|
||||
"version": "0.0.1",
|
||||
"version": "0.1.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
|
||||
const VERSION = "0.0.1";
|
||||
const VERSION = "0.1.0";
|
Loading…
Reference in a new issue