rattletrap 7.0.1 → 7.0.2
raw patch · 5 files changed
+8/−11 lines, 5 filesdep ~basedep ~http-clientdep ~template-haskellPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, http-client, template-haskell
API changes (from Hackage documentation)
Files
- README.markdown +1/−5
- library/Rattletrap/Decode/Content.hs +1/−1
- rattletrap.cabal +4/−4
- stack.yaml +1/−1
- tests/Main.hs +1/−0
README.markdown view
@@ -51,7 +51,7 @@ ``` sh > rattletrap --help-rattletrap.EXE version 6.4.0+rattletrap.EXE version 7.0.0 -c --compact minify JSON output -f --fast only encode or decode the header -h --help show the help@@ -92,10 +92,6 @@ `-c`) to Rattletrap. Even when the JSON is minified, it's extremely large. The output can be up to 100 times larger than the input. For example, a 1.5 MB replay turns into 31 MB of minified JSON or 159 MB of pretty-printed JSON.--Be aware that Rattletrap can output some very large numbers! Some languages,-like JavaScript, don't natively support parsing them from JSON. See issue #117-for details. ## Generate
library/Rattletrap/Decode/Content.hs view
@@ -53,7 +53,7 @@ (decodeFramesBits version numFrames maxChannels classAttributeMap) mempty frames <- either fail pure (runDecodeBits bitGet (reverseBytes stream))- unknown <- decodeWhen (version >= (868, 24, 10)) decodeWord32le+ unknown <- decodeWhen (version >= (868, 23, 9)) decodeWord32le pure (Content levels
rattletrap.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.2 name: rattletrap-version: 7.0.1+version: 7.0.2 category: Game description: Rattletrap parses and generates Rocket League replays.@@ -23,16 +23,16 @@ build-depends: aeson ^>= 1.4.2, aeson-pretty ^>= 0.8.7,- base >= 4.11.1 && < 4.13,+ base ^>= 4.11.1 || ^>= 4.12.0, binary ^>= 0.8.6, binary-bits ^>= 0.5, bytestring ^>= 0.10.8, containers ^>= 0.6.0, filepath ^>= 1.4.2,- http-client ^>= 0.5.14,+ http-client ^>= 0.6.4, http-client-tls ^>= 0.3.5, scientific ^>= 0.3.6,- template-haskell >= 2.13.0 && < 2.15,+ template-haskell ^>= 2.13.0 || ^>= 2.14.0, text ^>= 1.2.3, transformers ^>= 0.5.6, default-language: Haskell2010
stack.yaml view
@@ -1,1 +1,1 @@-resolver: lts-13.20+resolver: nightly-2019-05-27
tests/Main.hs view
@@ -117,6 +117,7 @@ , ("2cfe", "a new playstation id") , ("3381", "patch 1.37") , ("372d", "a camera yaw attribute")+ , ("383e", "older unknown content field") , ("387f", "a frozen attribute") , ("3abd", "rlcs") , ("3ea1", "a custom team name")