🚀 Prepare Bibata v1.1.0

This commit is contained in:
ful1e5 2021-02-26 17:45:28 +05:30
parent 4d8f8fbc28
commit 85487c709f
5 changed files with 100 additions and 82 deletions

View file

@ -10,16 +10,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Normal tagging for **Bibata** (v1.0.0)
- Tag with `br` postfix in **Bibata Rainbow** (v1.0.0.br)
## [unreleased]
## [Bibata v1.1.0] - 26 Feb 2021
### Added
- new **[copr](https://copr.fedorainfracloud.org/coprs/peterwu/rendezvous/package/bibata-cursor-themes/)** package by @peterwu
- `.svg` files separated to `<root>/svg`
- Customizable Windows & UNIX cursors #91
- Easy build system with `Make` supports
- Make docs in[README.md](./README.md#manual-build)
- use builtin clickgen WinPackager for Windows package
- Constant frames in animated cursors
- Smooth animation in Windows cursors
- `install` & `uninstall` with `make` commands
### Changed
- Individual cursor build with clickgen v1.1.8 #93
- puppeteer 'single-process' args removed
- All Bitmapping code structured in `bitmapper` directory
- builder code structured inside `builder` directory
- `builder` package renamed to `bbpkg`
- Symblinks provided by `bbpkg`(new Bibata builder)
- Automatic build environment setup with `make`
- Logging file removed
- Fix dnf runtime requirements packages ful1e5/apple_cursor#34
- Fix grabbing cursors symlinks #87
- Fix Cursors not available for Login Window in Linux Mint 20 #88
- Dirty pixel in `move` cursor fixed #94
## [Bibata Rainbow v1.0.0] - 17 Nov 2020

View file

@ -1,6 +1,6 @@
{
"name": "bibata-cursor",
"version": "1.0.3",
"version": "1.1.0",
"description": "Material Based Cursors",
"main": "index.js",
"author": "Kaiz Khatri",

View file

@ -1,6 +1,6 @@
{
"name": "bibata-modern",
"version": "1.0.3",
"version": "1.1.0",
"description": "Rounded edges bibata cursors",
"main": "dist/index.js",
"scripts": {

View file

@ -1,6 +1,6 @@
{
"name": "bibata-original",
"version": "1.0.3",
"version": "1.1.0",
"description": "Sharp edges bibata cursors",
"main": "dist/index.js",
"scripts": {

View file

@ -5,7 +5,7 @@ from setuptools import setup
setup(
name="bbpkg",
version="1.0.4",
version="1.1.0",
description="Generate 'Bibata' cursor theme from PNGs file",
url="https://github.com/ful1e5/Bibata_Cursor",
packages=["bbpkg"],