Update branch name of aseprite/aseprite repo

This commit is contained in:
David Capello 2021-04-07 11:29:31 -03:00
parent 5018d156bd
commit 4bd7d8eb21
2 changed files with 5 additions and 5 deletions

View File

@ -4,14 +4,14 @@ Test suite for [Aseprite](https://github.com/aseprite/aseprite)
to avoid breaking backward compatibility. to avoid breaking backward compatibility.
This project is cloned by the This project is cloned by the
[.travis.yml](https://github.com/aseprite/aseprite/blob/master/.travis.yml) file [build.yml](https://github.com/aseprite/aseprite/blob/main/.github/workflows/build.yml) file
on Aseprite project to do several automated tests: on Aseprite project to do several automated tests:
* Save/load file formats correctly. For this we have `.aseprite`, `.png`, * Save/load file formats correctly. For this we have `.aseprite`, `.png`,
`.gif`, etc. files [sprites](https://github.com/aseprite/tests/tree/master/sprites) `.gif`, etc. files [sprites](https://github.com/aseprite/tests/tree/main/sprites)
folder. folder.
* Test backward compatibility with [Aseprite CLI](https://www.aseprite.org/docs/cli/) options * Test backward compatibility with [Aseprite CLI](https://www.aseprite.org/docs/cli/) options
* Future [scripting API](https://github.com/aseprite/api) using [scripts](https://github.com/aseprite/tests/tree/master/scripts) * Future [scripting API](https://github.com/aseprite/api) using [scripts](https://github.com/aseprite/tests/tree/main/scripts)
## How to run tests? ## How to run tests?

View File

@ -1,4 +1,4 @@
-- Copyright (C) 2019 Igara Studio S.A. -- Copyright (C) 2019-2021 Igara Studio S.A.
-- Copyright (C) 2018 David Capello -- Copyright (C) 2018 David Capello
-- --
-- This file is released under the terms of the MIT license. -- This file is released under the terms of the MIT license.
@ -8,7 +8,7 @@ assert(string.sub(tostring(app.version), 1, 1) == "1")
assert(string.sub(tostring(app.version), 2, 2) == ".") assert(string.sub(tostring(app.version), 2, 2) == ".")
assert(app.version.major == 1) assert(app.version.major == 1)
-- We cannot test the specific app.version from the master branch -- We cannot test the specific app.version from the "main" branch
-- because it's "1.x-dev" (which is converted to "1.0-dev" as Version object) -- because it's "1.x-dev" (which is converted to "1.0-dev" as Version object)
--assert(app.version > Version("1.2.10-beta4")) --assert(app.version > Version("1.2.10-beta4"))