8000 Comparing v1.2.2...v1.2.3 · cjmellor/level-up · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cjmellor/level-up
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2.2
Choose a base ref
...
head repository: cjmellor/level-up
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.2.3
Choose a head ref
  • 17 commits
  • 6 files changed
  • 4 contributors

Commits on Feb 13, 2024

  1. fix-(create_streak_histories_table.php)- fixed a migration problem

    The $table->timestamp(column: 'ended_at') shouldbe 
    $table->timestamp(column: 'ended_at')->nullable()
    joydeep-bhowmik authored Feb 13, 2024
    Configuration menu
    Copy the full SHA
    8ddaf98 View commit details
    Browse the repository at this point in the history
  2. fix - (Concerns/GiveExperience.php) - Fixed null level handling in ge…

    …tLevel() & getPoints(),
    
    
    public function getPoints(): int
        {
            return $this->experience->experience_points ;
        } 
      public function getLevel(): int
        {
            return $this->experience->status->level ;
        } 
    
    to
    
    public function getPoints(): int
        {
            return $this->experience->experience_points ?? 0;
        } 
      public function getLevel(): int
        {
            return $this->experience->status->level ?? 0;
        }
    joydeep-bhowmik authored Feb 13, 2024
    Configuration menu
    Copy the full SHA
    a89c97e View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2024

  1. Update CHANGELOG

    cjmellor authored and github-actions[bot] committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    e2c8c94 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    cjmellor authored Feb 28, 2024
    Configuration menu
    Copy the full SHA
    3b9afe0 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2024

  1. #

    joydeep-bhowmik committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    b323562 View commit details
    Browse the repository at this point in the history
  2. #

    joydeep-bhowmik committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    296fc93 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    55ac6d5 View commit details
    Browse the repository at this point in the history
  4. #

    joydeep-bhowmik committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    2695d59 View commit details
    Browse the repository at this point in the history
  5. #

    joydeep-bhowmik committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    63de7ef View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    263a5b9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3798aec View commit details
    Browse the repository at this point in the history
  8. #

    joydeep-bhowmik committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    6fd22f2 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    500950c View commit details
    Browse the repository at this point in the history
  10. #

    joydeep-bhowmik committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    52a8ede View commit details
    Browse the repository at this point in the history
  11. #

    joydeep-bhowmik committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    e0020aa View commit details
    Browse the repository at this point in the history
  12. Refactor code and update documentation

    The code in `GiveExperience.php` has been refactored for improved readability and consistency. In particular, changes were made to the syntax of `if` statements and the space around the NOT operator was adjusted. The `UPGRADE.md` documentation was also updated, with versions and migration details rearranged for clearer understanding.
    cjmellor committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    66869aa View commit details
    Browse the repository at this point in the history
  13. Merge pull request #59 from joydeep-bhowmik/main

    Fixed one migration problem and  null level handling in getLevel() & getPoints(),  causing some error
    cjmellor authored Mar 1, 2024
    Configuration menu
    Copy the full SHA
    8887e95 View commit details
    Browse the repository at this point in the history
Loading
0