Thanks to visit codestin.com
Credit goes to github.com

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: zhangicong/SimpleJSON
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: Bunny83/SimpleJSON
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 19 commits
  • 5 files changed
  • 6 contributors

Commits on Mar 19, 2020

  1. Add ulong support.

    Dan Duong committed Mar 19, 2020
    Configuration menu
    Copy the full SHA
    0f07610 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2020

  1. Configuration menu
    Copy the full SHA
    cb50cce View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2020

  1. Fixed ReadColor component order (I don't know how that even happened …

    …-.-).
    
    Added default alpha values when reading color values without an alpha component
    Bunny83 committed Sep 19, 2020
    Configuration menu
    Copy the full SHA
    baed3f9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request Bunny83#32 from danvietduong/master

    Add ulong support.
    Bunny83 authored Sep 19, 2020
    Configuration menu
    Copy the full SHA
    1eed6dc View commit details
    Browse the repository at this point in the history
  3. - Added Clear() method to JSONNode.

    - The parser will now automatically mark arrays or objects as inline when it doesn't contain any
      new line characters. This should more or less preserve the layout.
    - Added new extension file "SimpleJSONDotNetTypes.cs" to provide support for some basic .NET types
      like decimal, char, byte, sbyte, short, ushort, uint, DateTime, TimeSpan and Guid as well as some
      nullable types.
    - Fixed an error in the Unity extension file. The Color component order was wrong (it was argb, now it's rgba)
    - There are now two static float variables (ColorDefaultAlpha and Color32DefaultAlpha) to specify the default
      alpha values when reading UnityEngine.Color / Color32 values where the alpha value is absent. The default
      values are 1.0f and 255 respectively.
    Bunny83 committed Sep 19, 2020
    Configuration menu
    Copy the full SHA
    029f124 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2020

  1. Configuration menu
    Copy the full SHA
    0ffec13 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2020

  1. Merge pull request Bunny83#37 from ignus2/master

    Fixed null string implicit conversion
    Bunny83 authored Oct 4, 2020
    Configuration menu
    Copy the full SHA
    c6ed991 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2020

  1. Fix for ReadColor & ReadColor32

    Fix wrong count for missing alpha
    ziobernamac committed Oct 6, 2020
    Configuration menu
    Copy the full SHA
    d351dd3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request Bunny83#38 from ziobernamac/master

    Fix for ReadColor & ReadColor32
    Bunny83 authored Oct 6, 2020
    Configuration menu
    Copy the full SHA
    7a35246 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e2f5aa4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6fc5622 View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2021

  1. Update SimpleJSONUnity.cs

    Added "#if UNITY_5_3_OR_NEWER" to exclude the Unity specific extension from non Unity projects
    Bunny83 authored Feb 6, 2021
    Configuration menu
    Copy the full SHA
    b0dd3c0 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2021

  1. Update SimpleJSON.cs

    Replaced "s is null" with "s == null" for backward compatibility.
    Bunny83 authored Feb 23, 2021
    Configuration menu
    Copy the full SHA
    ac13597 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2022

  1. Update SimpleJSON.cs

    Fixed a few missed invariant culture cases
    Bunny83 authored Aug 3, 2022
    Configuration menu
    Copy the full SHA
    747cf4e View commit details
    Browse the repository at this point in the history
  2. Update LICENSE

    Bunny83 authored Aug 3, 2022
    Configuration menu
    Copy the full SHA
    fdb36c9 View commit details
    Browse the repository at this point in the history
  3. Update Changelog.txt

    Bunny83 authored Aug 3, 2022
    Configuration menu
    Copy the full SHA
    cb748f5 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2023

  1. Update SimpleJSON.cs

    Fixed missing invariant culture in JSONNumber
    Bunny83 authored Mar 9, 2023
    Configuration menu
    Copy the full SHA
    4861b9e View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2023

  1. JsonObject's indexer performance improvement:

    Changed JsonObject's indexer operator to use Dictionary.TryGetValue(key, out value) instead of checking the existence of the key by calling Dictionary.Contains(key) before returning the value.
    navidbigdeli54 committed Dec 13, 2023
    Configuration menu
    Copy the full SHA
    81d9a34 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2025

  1. Merge pull request Bunny83#57 from navidbigdeli54/master

    JSONObject's indexer performance improvement
    Bunny83 authored Mar 17, 2025
    Configuration menu
    Copy the full SHA
    c202d53 View commit details
    Browse the repository at this point in the history
Loading