Skip to content

Commit

Permalink
Changed getLevel() method into getCurrentLevel() to avoid conflict wi…
Browse files Browse the repository at this point in the history
…th toponepercent/baum package
  • Loading branch information
theveloperspl committed Aug 27, 2023
0 parents commit 34fe6d9
Show file tree
Hide file tree
Showing 57 changed files with 2,477 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/level-up-main.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions .idea/php.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

103 changes: 103 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
# Changelog

All notable changes to `level-up` will be documented in this file.

## v0.0.10 - 2023-08-23

### What's Changed

- Refactor Tests by @cjmellor in https://github.com/cjmellor/level-up/pull/33

**Full Changelog**: https://github.com/cjmellor/level-up/compare/v0.0.9...v0.0.10

## v0.0.9 - 2023-08-21

### What's Changed

- Adds a feature to freeze a streak by @cjmellor in https://github.com/cjmellor/level-up/pull/32

**Full Changelog**: https://github.com/cjmellor/level-up/compare/v0.0.8...v0.0.9

## v0.0.8 - 2023-08-20

### What's Changed

- Possible `nextLevelAt()` Bug by @cjmellor in https://github.com/cjmellor/level-up/pull/26
- Missing Test by @cjmellor in https://github.com/cjmellor/level-up/pull/27
- fix: prevent grant of secret achievement twice by @ibrunotome in https://github.com/cjmellor/level-up/pull/31

**Full Changelog**: https://github.com/cjmellor/level-up/compare/v0.0.7...v0.0.8

## v0.0.7 - 2023-08-18

### What's Changed

- fix: set timestamps when creating achievements by @ibrunotome in https://github.com/cjmellor/level-up/pull/28
- Streaks by @cjmellor in https://github.com/cjmellor/level-up/pull/29

### New Contributors

- @ibrunotome made their first contribution in https://github.com/cjmellor/level-up/pull/28

**Full Changelog**: https://github.com/cjmellor/level-up/compare/v0.0.6...v0.0.7

## v0.0.6 - 2023-08-01

### What's Changed

- fix: Return correct value on next level check by @cjmellor in https://github.com/cjmellor/level-up/pull/22

**Full Changelog**: https://github.com/cjmellor/level-up/compare/v0.0.5...v0.0.6

## v0.0.5 - 2023-07-31

### What's Changed

- fix: Relationship Association by @cjmellor in https://github.com/cjmellor/level-up/pull/19
- Support PHP 8.1 by @QuintenJustus in https://github.com/cjmellor/level-up/pull/18

### New Contributors

- @QuintenJustus made their first contribution in https://github.com/cjmellor/level-up/pull/18

**Full Changelog**: https://github.com/cjmellor/level-up/compare/v0.0.4...v0.0.5

## 0.0.4 - 2023-07-24

### What's Changed

- Adding configurable user's table to level relationship migration. by @matthewscalf in https://github.com/cjmellor/level-up/pull/16

### New Contributors

- @matthewscalf made their first contribution in https://github.com/cjmellor/level-up/pull/16

**Full Changelog**: https://github.com/cjmellor/level-up/compare/v0.0.3...0.0.4

## v0.0.3 - 2023-07-22

### What's Changed

- build(deps-dev): Update rector/rector requirement from ^0.16.0 to ^0.17.6 by @dependabot in https://github.com/cjmellor/level-up/pull/7
- build(deps-dev): Update driftingly/rector-laravel requirement from ^0.17.0 to ^0.21.0 by @dependabot in https://github.com/cjmellor/level-up/pull/6
- fix: Add a Default Level by @cjmellor in https://github.com/cjmellor/level-up/pull/14
- feat: Customise constraints by @cjmellor in https://github.com/cjmellor/level-up/pull/13
- fix: Bypass Multiplier Folder Check by @cjmellor in https://github.com/cjmellor/level-up/pull/15

**Full Changelog**: https://github.com/cjmellor/level-up/compare/v0.0.2...v0.0.3

## v0.0.2 - 2023-07-14

### What's Changed

- tests: Update Test Runner by @cjmellor in https://github.com/cjmellor/level-up/pull/5

### New Contributors

- @cjmellor made their first contribution in https://github.com/cjmellor/level-up/pull/5

**Full Changelog**: https://github.com/cjmellor/level-up/compare/v0.0.1...v0.0.2

## v0.0.1 - 2023-07-13

Initial release
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) cjmellor <cmellor@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Loading

0 comments on commit 34fe6d9

Please sign in to comment.