diff --git a/README.md b/README.md index 5f0582a0f..0035a1783 100644 --- a/README.md +++ b/README.md @@ -4,14 +4,14 @@ Test suite for [Aseprite](https://github.com/aseprite/aseprite) to avoid breaking backward compatibility. 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: * 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. * 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? diff --git a/scripts/version.lua b/scripts/version.lua index 9137835c1..024b43b4b 100644 --- a/scripts/version.lua +++ b/scripts/version.lua @@ -1,4 +1,4 @@ --- Copyright (C) 2019 Igara Studio S.A. +-- Copyright (C) 2019-2021 Igara Studio S.A. -- Copyright (C) 2018 David Capello -- -- 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(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) --assert(app.version > Version("1.2.10-beta4"))