Making WordPress.org

Changes between Initial Version and Version 1 of Ticket #6275


Ignore:
Timestamp:
04/14/2022 08:07:48 AM (3 years ago)
Author:
dd32
Comment:

Initial ticket had a typo in the format, the arrays are within the checksum-type, not within the file-level handler.. fixed that up..

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6275 – Description

    initial v1  
    2626      "sha256": "345345345345"
    2727    },
    28     "example.js": [
    29         {
    30           "md5": "34534345345",
    31           "sha256": "3453453453"
    32         },
    33         {
    34           "md5": "567567567",
    35           "sha256": "678678678678"
    36         }
    37     ],
     28    "example.js": {
     29       "md5": [ "34534345345", "567567567" ],
     30       "sha256": [ "3453453453", "678678678678" ]
     31    },
    3832.....
    3933}}}
     
    5650      "sha256": "3453453453"
    5751    },
    58     "example.js": [
    59         {
    60           "md5": "34534534534",
    61           "sha256": "345345345"
    62         },
    63         {
    64           "md5": "78978789",
    65           "sha256": "7897897897"
    66         }
    67     ],
    68     "notes.txt": [
    69         {
    70           "md5": "456456",
    71           "sha256": "45645645"
    72         },
    73         {
    74           "optional": true,
    75         }
    76     ]
     52    "example.js": {
     53       "md5": [ "34534345345", "567567567" ],
     54       "sha256": [ "3453453453", "678678678678" ]
     55    },
     56    "notes.txt": {
     57       "md5": "98098098098",
     58       "sha256": "98098098098",
     59       "optional": true,
     60    },
    7761.....
    7862}}}