Skip to content

Commit

Permalink
chore: update changelog and version for release 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanLovato committed Oct 6, 2023
1 parent 9359f0b commit eb72b36
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 6 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,32 @@

This document lists changes between releases.

## Learn GDScript From Zero 1.5.0

### Content changes

- Review every lesson and practice to make it work as well as possible for Godot 4. The course is still also compatible with Godot 3.
- Remove lesson 15, modulo.
- Add Italian translations.
- Add and update FR, ES, PT, PT_BR, and TR translations. FR and ES translations should be up to date, other languages need updates.
- Move the dot out of the quotes in lesson 3 (#793).
- Edit first lesson to be compatible with Godot 4.
- Remove type hint from code in lesson 1 practice.
- Clarify that turtle code is specific to app.
- Lesson 7 explanation fix (#865).
- Add updated translations for 6 languages.

### Bug fixes

- Update quiz that broke after text fix in l3.
- Ignore word type in glossary in lesson 25.
- Remove type inference from practice in l25.
- Add check that student isn't passing entire combo array in l20.
- Rewrite l14 practice 2 tests to be more accurate.
- Rewrite code highlight algorithm for nicer highlighting of symbols and numbers.
- Reset robot to correct position in practice l17 practice.
- Apply translations to report problem popup.

## Learn GDScript From Zero 1.4.0

*Released on May 16 2023*
Expand Down
12 changes: 6 additions & 6 deletions utils/version.gd
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# AUTO GENERATED changed_file, YOUR CHANGES WILL NOT REMAIN
class_name AppVersion

const version := "1.2.2";
const git_commit := "3b03b62420d43c7f700c593a924be162853331e8";
const git_branch := "feature/debugger-visualization";
const build_date := [2022, 09, 21, 19, 59, 52];
const build_date_unix := 1663783192;
const build_date_iso := "2022/09/21 19:59:52;"
const version := "1.5.0";
const git_commit := "9359f0bb2d0c197cf469d9b773cafc604604d65e";
const git_branch := "release";
const build_date := [2023, 10, 06, 10, 30, 59];
const build_date_unix := 1696581059;
const build_date_iso := "2023/10/06 10:30:59;"

0 comments on commit eb72b36

Please sign in to comment.