Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

Releases: dromara/newcar

v0.3.2-alpha

18 Jul 13:28
Compare
Choose a tag to compare

In this version, We:

  1. Adjust the default background color to black.
  2. Add new object, there are CoordinateSystem, Image and Rectangle.
  3. Export animation to video files.
  4. Change the API with a tiny changement.
  5. Improved AnimationBuilderItems.

v0.3.1-alpha

16 Apr 11:58
Compare
Choose a tag to compare

In this version, we add the class Polygon to objects!

v0.3.0-alpha

08 Apr 13:14
Compare
Choose a tag to compare

This version is first stable version!
In this version, we improved and perfected the API for both objects and animation-builder, and let them be more hommization.
Welcome link to our documents: newcar.js.org!

v0.2.0-fix-alpha

26 Feb 09:17
Compare
Choose a tag to compare
v0.2.0-fix-alpha Pre-release
Pre-release

The version is fixed, and this release will have any relation with npm version

In this version, we change the API for both AnimationBuilder and Carobj, now you just need a object can input information for build

example

In the past

const text = new Text("Hello world!", 100, 100)
text.size = 200;

Now

const text = new Text({
  text: "Hello world!",
  x: 100,
  y: 100,
  size: 200  
})

In the pst

const a = Translation.create().....

Now

const a = new Translation({
  // ......
})

v0.2.0-alpha

26 Feb 03:30
Compare
Choose a tag to compare
v0.2.0-alpha Pre-release
Pre-release

In this version, we change the API for both AnimationBuilder and Carobj, now you just need a object can input information for build

example

In the past

const text = new Text("Hello world!", 100, 100)
text.size = 200;

Now

const text = new Text({
  text: "Hello world!",
  x: 100,
  y: 100,
  size: 200  
})

In the pst

const a = Translation.create().....

Now

const a = new Translation({
  // ......
})

v0.1.0-alpha

24 Feb 14:28
Compare
Choose a tag to compare
v0.1.0-alpha Pre-release
Pre-release

In this version, we improve the user API and let it be more better.We let the AnimationBuilder with the core in same class. and we rename Car to dataSaver, and Car be the user API.

We also implement the Father And Son Objects in this version, you can add a child in a objects, and when the "father" change, "children" will follow it; but when the "children" change, "father" will not follow.

v0.0.2-alpha

26 Jan 06:55
Compare
Choose a tag to compare
v0.0.2-alpha Pre-release
Pre-release

Foundation establishment of core part