Skip to content

Commit c7cc514

Browse files
authored
Merge pull request #18 from ful1e5/dev
😎 Smooth Animation & Latest package install using QUICK INSTALL
2 parents 9cf32a5 + 7409f05 commit c7cc514

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
## Changed
1313

1414
- `hand2` and `left_ptr` hotspots alignments fixed.
15+
- Smooth Animation with `35` Delay ([6698a56](https://github.com/ful1e5/apple_cursor/commit/6698a566c08c1f8e6a36ac7012c9a931dac2edf7))
1516
- Ignored `docs` files (**.md ,LICENCE, **.bbcode) in `build` GitHub Actions. ([0df635b](https://github.com/ful1e5/apple_cursor/commit/0df635b1cdd18840606956f2188e735321f6f8b5))
1617
- Windows Configs inside `config.py` ([e7d5092](https://github.com/ful1e5/apple_cursor/commit/e7d509295b69fbe43cdc3ea3000c493dcee47824))
1718
- Redesign **Windows package** with `install.inf`. ([5f99e05](https://github.com/ful1e5/apple_cursor/commit/5f99e0565a5730165a498695bcbba4716108e82b))

config.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import json
33

44
# Build Config
5-
delay = 50
6-
name = "MacOSBigSur"
5+
delay = 35
6+
name = "macOSBigSur"
77
sizes = [24, 28, 32, 40, 48, 56, 64, 72, 80, 88, 96]
88

99
bitmaps_dir = "./bitmaps"

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"description": "Enjoy upcoming `macOS Big Sur` Cursor Theme 🥳",
55
"main": "index.js",
66
"scripts": {
7+
"install:clean": "sudo rm -rf ~/.icons/macOSBigSur /usr/share/icons/macOSBigSur",
78
"unpack": "cd ./packages && mkdir macOSBigSur && tar -xvf macOSBigSur.tar -C macOSBigSur && cd ..",
89
"compile": "yarn clean && yarn render && yarn build",
910
"clean": "rm -rf packages bitmaps",

scripts/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ INPUT=$1
55

66
ROOT_UID=0
77
DEST_DIR=
8-
URL="https://github.com/ful1e5/apple_cursor/releases/download/1.0.1-beta/macOSBigSur.tar"
8+
URL="https://github.com/ful1e5/apple_cursor/releases/download/1.0.2/macOSBigSur.tar"
99
macOSBigSur="./macOSBigSur"
1010
DOWNLOAD_FILE_NAME="$macOSBigSur.tar"
1111

0 commit comments

Comments
 (0)