Skip to content

Commit

Permalink
Merge pull request #19 from ful1e5/dev
Browse files Browse the repository at this point in the history
prepare v1.0.0
  • Loading branch information
ful1e5 authored Dec 30, 2023
2 parents 37dace7 + 6f4fcab commit cff286c
Show file tree
Hide file tree
Showing 42 changed files with 2,420 additions and 553 deletions.
16 changes: 13 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [v1.0.0] - 30 December 2023

### What's New?

### Fixes

- Fetch SVG by specifying `type` and `v`(version) parameters to request
- Refreshed Landing Page
- Footer added
- Privacy Policy added

## [v1.0.0-beta.0] - 19 December 2023

### :warning: Important Changes

- Public Downloads Determined by (**monthly sponsorship in cents x 3**)

### What's New?

- feature: Monochrome colored wedge animation Mode in Customize button
Expand All @@ -23,6 +29,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- ui: Footer added
- ui: Consistent Elements across pages

### Fixes

- Fetch SVG by specifying `type` and `v`(version) parameters to request

## [v1.0.0-alpha.1] - 07 December 2023

### What's New?
Expand Down
2 changes: 0 additions & 2 deletions core/builder/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,6 @@ def _assign(v) -> int:
xname="lr_angle",
),
"move": Config(
x=128,
y=128,
winname="Move",
xname="move",
links=[
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "bibata",
"description": "CLI for converting cursor svg files to png.",
"author": "Abdulkaiz Khatri <kaizmandhu@gmail.com>",
"version": "1.0.0-beta.0",
"version": "1.0.0",
"private": true,
"bugs": {
"url": "https://github.com/ful1e5/bibata/issues",
Expand Down
23 changes: 22 additions & 1 deletion src/app/(home)/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,28 @@
:root {
--bg-dark: #141414;
--bg-light: #ffffff;
--accent: #d7f47e;
--accent: #d2defc;
--accent-active: #8aa8f2;

--gradient-light: linear-gradient(
to_right,
theme(colors.fuchsia.100),
theme(colors.green.100),
theme(colors.orange.100),
theme(colors.red.100),
theme(colors.blue.100),
theme(colors.fuchsia.100)
);

--gradient-strong: linear-gradient(
to_right,
theme(colors.fuchsia.300),
theme(colors.green.300),
theme(colors.orange.300),
theme(colors.red.300),
theme(colors.blue.300),
theme(colors.fuchsia.300)
);

--text-dark: #ffffff;
--text-light: #000000;
Expand Down
Loading

0 comments on commit cff286c

Please sign in to comment.