-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from ful1e5/dev
GoogleDot v1.0.0
- Loading branch information
Showing
85 changed files
with
1,945 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
patreon: KaizKhatri | ||
custom: https://www.paypal.me/kaizkhatri |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: " \U0001F41B Bug Report" | ||
about: Did something not work? | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Description of the problem | ||
|
||
## How has this issue affected you? What are you trying to accomplish? | ||
|
||
### Logs or Screenshots: (optional) | ||
|
||
### Your Environment | ||
|
||
| Software | Name/Version | | ||
| ---------------- | ------------ | | ||
| Operating System | | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
name: "\U0001F308 Feature" | ||
about: " What cool thing would you like to add?" | ||
title: '' | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
# What is this feature? | ||
# How the feature should work? | ||
# You have examples or an idea of how it can be implemented? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<!-- | ||
Please make sure you are familiar with and follow the instructions in the | ||
contributing guidelines (found in the CONTRIBUTING.md file). | ||
Please fill out the information below to expedite the review and (hopefully) | ||
merge of your pull request! | ||
--> | ||
|
||
## What kind of change does this PR introduce? | ||
|
||
<!-- Is it a Bug fix, feature, docs update, ... --> | ||
|
||
## What is the current behavior? | ||
|
||
<!-- You can also link to an open issue here --> | ||
|
||
## What is the new behavior? | ||
|
||
<!-- if this is a feature change --> | ||
|
||
## What steps did you take to test this? This is required before I can merge, make sure to test the flow you've updated. | ||
|
||
1. Step A | ||
2. Step B | ||
3. Step C | ||
|
||
## Checklist | ||
|
||
<!-- Have you done all of these things? --> | ||
<!-- add "N/A" to the end of each line that's irrelevant to your changes --> | ||
<!-- to check an item, place an "x" in the box like so: "- [x] Documentation" --> | ||
|
||
- [ ] Documentation | ||
- [ ] Testing | ||
- [ ] Ready to be merged | ||
- [ ] Added myself to contributors table | ||
|
||
<!-- feel free to add additional comments --> | ||
<!-- Thank you for contributing! --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Number of days of inactivity before an issue becomes stale | ||
daysUntilStale: 60 | ||
# Number of days of inactivity before a stale issue is closed | ||
daysUntilClose: 7 | ||
# Issues with these labels will never be considered stale | ||
exemptLabels: | ||
- pinned | ||
- security | ||
# Label to use when marking an issue as stale | ||
staleLabel: wontfix | ||
# Comment to post when marking an issue as stale. Set to `false` to disable | ||
markComment: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. Thank you | ||
for your contributions. | ||
# Comment to post when closing a stale issue. Set to `false` to disable | ||
closeComment: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
name: build | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- "**.md" | ||
- "**.bbcode" | ||
- LICENSE | ||
branches: [main, dev] | ||
|
||
pull_request: | ||
paths-ignore: | ||
- "**.md" | ||
- "**.bbcode" | ||
- LICENSE | ||
branches: [main] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install build dependencies (apt) | ||
run: | | ||
sudo apt install libx11-dev libxcursor-dev libpng-dev | ||
continue-on-error: false | ||
|
||
- name: Get yarn cache directory path | ||
id: yarn-cache-dir-path | ||
run: echo "::set-output name=dir::$(yarn cache dir)" | ||
|
||
- uses: actions/cache@v2 | ||
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | ||
with: | ||
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-yarn- | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: "12.x" | ||
- run: yarn install | ||
- run: yarn render | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.x" | ||
|
||
- name: Cache pip dependencies | ||
uses: actions/cache@v2 | ||
with: | ||
# This path is specific to Ubuntu | ||
path: ~/.cache/pip | ||
# Look to see if there is a cache hit for the corresponding requirements file | ||
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
${{ runner.os }}- | ||
- name: Install pip dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | ||
continue-on-error: false | ||
|
||
- name: Generating `GoogleDot` Cursor Theme | ||
run: python build.py | ||
|
||
- name: Compressing Artifacts | ||
run: | | ||
tar -cvzf logs.tar.gz build.log | ||
tar -cvzf bitmaps.tar.gz bitmaps | ||
tar -cvzf GoogleDot.tar.gz themes | ||
- name: Uploading `GoogleDot` Build Log artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: logs | ||
path: logs.tar.gz | ||
|
||
- name: Uploading `bitmaps` artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: bitmaps | ||
path: bitmaps.tar.gz | ||
|
||
- name: Uploading `GoogleDot` Theme artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: GoogleDot | ||
path: GoogleDot.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[b]GoogleDot [/b] Cursor Theme with [b]HiDPi[/b] Display support. This Cursor is built with [b][url=https://github.com/ful1e5/clickgen]clickgen[/url][/b] and render with the [b][url=https://github.com/puppeteer/puppeteer/]puppeteer[/url][/b]. | ||
[i]Available Sizes[/i] [b]22, 24, 28, 32, 40, 48, 56, 64, 72, 80, 88, 96 | ||
|
||
[/b][i]Get latest build[/i] @[b][url=https://github.com/ful1e5/Google_Cursor/actions]GitHub Actions[/url][/b] | ||
[i]Release Notification[/i] at [b][url=https://twitter.com/ful1e5]Twitter[/url][/b](@ful1e5) | ||
|
||
[b]Linux/X11 installation[/b] | ||
Get the latest stable Linux release from the [b][url=https://www.pling.com/p/1215613#files-panel]Pling[/url][/b]. Unpack [b].tar.gz[/b] file and follow these [b]commands[/b]. | ||
|
||
[b]Install[/b] | ||
[b]For all user:[/b] | ||
[code]sudo mv GoogleDot /usr/share/icons[/code] | ||
[b]For local user:[/b] | ||
[code]mv GoogleDot ~/.icons[/code] | ||
|
||
[b]Uninstall[/b] | ||
[b]From all user:[/b] | ||
[code]sudo rm -r /usr/share/icons/GoogleDot[/code] | ||
[b]From local user:[/b] | ||
[code]rm -r ~/.icons/GoogleDot[/code] | ||
|
||
[b]Window installation[/b] | ||
[list=1] | ||
[*]unzip [b]GoogleDot_Windows.zip[/b] file[/*] | ||
[*]Open [b]GoogleDot_Windows/[/b] in Explorer, and [b]right-click[/b] on [b]install.inf[/b].[/*] | ||
[*]Click 'Install' from the context menu, and authorise the modifications to your system.[/*] | ||
[*]Open [i]Control Panel > Personalisation and Appearance > Change mouse pointers[/i], and select [b]GoogleDot Cursors[/b].[/*] | ||
[*]Click '[b]Apply[/b]'.[/*] | ||
[/list] | ||
|
||
[b]How I help the Creator?[/b] | ||
[list=2] | ||
[*]Give a [b]Star[/b] or [b]Follow[/b] on [b][url=https://github.com/ful1e5/Google_Cursor]GitHub[/url][/b] (issues & PullRequest are welcome).[/*] | ||
[*]By giving a [b]Pling[/b] or [b][url=https://www.paypal.me/kaizkhatri]Donation[/url][/b].[/*] | ||
[*][b]Download[/b] from[url=https://www.pling.com/p/1408466/] Pling.com[/url] Product page that helps to [b]increases[/b] my [b]monthly payout[/b].[/*] | ||
[*][b][url=https://www.pling.com/support]Become Supporter of Pling.com[/url][/b], So we become [b]Full-Time [/b]Libre & FOSS content creator [b];)[/b][/*] | ||
[/list] | ||
|
||
[b]License & Terms[/b] | ||
'[b]GoogleDot[/b]' Cursor Theme is available under the terms of the [b]GPL-3.0[/b] license. |
Oops, something went wrong.