Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Release 4.2.0 - Changes config implementation #125

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
4ebd983
Tag v 4.1.0-beta.01 refactor constants declaration
ffflabs Jan 7, 2020
4dd88b6
merge on top of [email protected]
ffflabs Jan 7, 2020
460ad4e
Example for chinese chars
ffflabs Jan 7, 2020
940a793
example with chinese fonts
ffflabs Jan 7, 2020
0528b99
added a static field to prevent the error from accessing a nonexistent
Jan 31, 2020
de06b50
attempt to meet project style requirements
Jan 31, 2020
e8ee88b
moving to Pest as test suite
ffflabs Apr 25, 2021
5452c82
merge master
ffflabs Apr 25, 2021
555926a
Merge pull request #90 from ShawnMcCool/fix-polyfills
ffflabs Apr 25, 2021
bf3174f
ignoring vscode folder
ffflabs Apr 25, 2021
406d631
enables Github Action Runner, while keeping codeception as runner
ffflabs Apr 25, 2021
b901ba4
merges uptream develop
ffflabs Apr 25, 2021
43eab82
merges upstream examples from #96
ffflabs Apr 25, 2021
acdc723
enables testing of led examples
ffflabs Apr 25, 2021
be92448
merges upstream containing PRs #100, #101 and #102
ffflabs Apr 26, 2021
70e296c
Merge branch 'release/4.1.0' into develop
ffflabs Apr 26, 2021
2700cca
merge v4.1.0
ffflabs Apr 27, 2021
47ee0ca
merge v4.1.0
ffflabs Apr 27, 2021
ef9dff8
resolve merge conflicts
ffflabs Apr 27, 2021
69cd4a5
passing tests
ffflabs Apr 27, 2021
3603278
passing tests
ffflabs Apr 27, 2021
165852e
passing tests
ffflabs Apr 27, 2021
2f8690a
disables testing
ffflabs Apr 27, 2021
48349fa
passing tests
ffflabs Apr 27, 2021
007c63e
radar debugging
ffflabs Apr 27, 2021
3c7590d
moving methods to scale class
ffflabs Apr 28, 2021
6762e51
merge master 4.1.1
ffflabs Apr 28, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
16 changes: 16 additions & 0 deletions .churn.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# The maximum number of files to display in the results table.
# Default: 10
filesToShow: 20

# The minimum score a file need to display in the results table.
# Default: 0.1
minScoreToShow: 0

# The number of parallel jobs to use when processing files.
# Default: 10
parallelJobs: 10

# How far back in the git history to count the number of commits to a file
# Can be a human readable date like 'One week ago' or a date like '2017-07-12'
# Default: '10 Years ago'
commitsSince: One year ago
9 changes: 6 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: 'ubuntu-latest'
strategy:
matrix:
php: ['7.2', '7.3', '7.4', '8.0']
php: ['7.4', '8.0']

name: PHP ${{ matrix.php }} - 'ubuntu-latest' - 'prefer-stable'

Expand All @@ -28,7 +28,10 @@ jobs:
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install PHP dependencies
run: composer update --'prefer-stable' --no-interaction --no-progress
run: composer update --'prefer-stable' --no-interaction --no-progress --ignore-platform-reqs

- name: PHPLint
run: composer lint

- name: Unit Tests
run: composer test
run: composer test
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,12 @@ nbproject
.phpcs.config.xml
.phpmd.xml
.pmd.log
psalm.xml
# ignore huge fonts
.churn.yml
.php_cs.cache
.phpcs.config.xml
.phpmd.xml
.pmd.log
psalm.xml

# ignore huge fonts
tests/_output/coverage
Examples/assets/bkai00mp.ttf
Expand Down
2 changes: 1 addition & 1 deletion .php_cs.cache

Large diffs are not rendered by default.

Loading