Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 3.8.0 #503

Merged
merged 28 commits into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
3c94957
init
RafaelBarbosatec Apr 13, 2024
a5eedf5
adiciona mais informacoes na layer
RafaelBarbosatec Apr 13, 2024
04698be
update matrix
RafaelBarbosatec Apr 18, 2024
9d68ef6
update matrix
RafaelBarbosatec Apr 18, 2024
8a317a4
adds tilelayercomponent
RafaelBarbosatec Apr 18, 2024
ee2f8ec
load assets in layer
RafaelBarbosatec Apr 20, 2024
9bb0de1
game map improvements
RafaelBarbosatec Apr 21, 2024
291794a
update changelog
RafaelBarbosatec Apr 21, 2024
93f5ec9
format
RafaelBarbosatec Apr 21, 2024
8f2480e
Merge pull request #501 from RafaelBarbosatec/refactor/adds-map-layers
RafaelBarbosatec Apr 21, 2024
2e93aee
put files example
RafaelBarbosatec Apr 21, 2024
93ecc12
improvements in the struture to support other map origin
RafaelBarbosatec Apr 21, 2024
1e5adca
improvements in the struture to support other map origin
RafaelBarbosatec Apr 21, 2024
afbd0a9
refactor worldmap
RafaelBarbosatec Apr 22, 2024
91e244c
refactor worldmap
RafaelBarbosatec Apr 22, 2024
0b0b266
finish spritefusion support fromAsset
RafaelBarbosatec Apr 22, 2024
825cd4b
adds SpritefusionNetworkReader
RafaelBarbosatec Apr 22, 2024
94478cc
update chengelog
RafaelBarbosatec Apr 22, 2024
fc5f037
format
RafaelBarbosatec Apr 22, 2024
fe77617
Merge pull request #502 from RafaelBarbosatec/feature/adds-spritefusi…
RafaelBarbosatec Apr 22, 2024
5479ea8
update lock
RafaelBarbosatec Apr 23, 2024
7529cac
Merge branch 'develop' of https://github.com/RafaelBarbosatec/bonfire…
RafaelBarbosatec Apr 23, 2024
b33d847
adds DamageHitbox
RafaelBarbosatec Apr 23, 2024
3b02b63
update changelog
RafaelBarbosatec Apr 24, 2024
7a2986f
increment version
RafaelBarbosatec Apr 24, 2024
80d409f
Update CHANGELOG.md
RafaelBarbosatec Apr 24, 2024
a7e8d52
attackable improvements
RafaelBarbosatec Apr 24, 2024
c5b5c47
format
RafaelBarbosatec Apr 26, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,5 @@ example/macos/Pods/Pods.xcodeproj/xcuserdata/rafaelbarbosa.xcuserdatad/xcschemes
example/macos/Pods/Pods.xcodeproj/xcuserdata/rafaelbarbosa.xcuserdatad/xcschemes/xcschememanagement.plist
example/macos/Pods/Target Support Files/FlutterMacOS/FlutterMacOS.debug.xcconfig
example/macos/Pods/Target Support Files/FlutterMacOS/FlutterMacOS.release.xcconfig

.fvm
11 changes: 1 addition & 10 deletions .pubignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,2 @@
example/macos/Flutter/ephemeral/Flutter-Generated.xcconfig
example/macos/Flutter/ephemeral/flutter_export_environment.sh
example/macos/Pods/Local Podspecs/FlutterMacOS.podspec.json
example/macos/Pods/Local Podspecs/shared_preferences_macos.podspec.json
example/macos/Pods/Pods.xcodeproj/project.pbxproj
example/macos/Pods/Pods.xcodeproj/xcuserdata/rafaelbarbosa.xcuserdatad/xcschemes/FlutterMacOS.xcscheme
example/macos/Pods/Pods.xcodeproj/xcuserdata/rafaelbarbosa.xcuserdatad/xcschemes/Pods-Runner.xcscheme
example/macos/Pods/Pods.xcodeproj/xcuserdata/rafaelbarbosa.xcuserdatad/xcschemes/xcschememanagement.plist
example/macos/Pods/Target Support Files/FlutterMacOS/FlutterMacOS.debug.xcconfig
example/macos/Pods/Target Support Files/FlutterMacOS/FlutterMacOS.release.xcconfig
example
media
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
# 3.8.0
- Adds `DamageHitbox`. Use it to do damage.
- `GameMap` Improvements. Now you can access the layers

Breaking Changes:
- `WorldMap` expect `List<Layer>` instead of `List<TileModel>`;
- `MatrixMapGenerator.generate` now expect `List<MatrixLayer> layers` instead og `List<List<double>> matrix`;
- `TileModel` renamed to `Tile`;
- `TileModelSprite` renamed to `TileSprite`.
- Adds support to load map built by [SpriteFusion](https://www.spritefusion.com/). Use `WorldMapBySpritefusion`.

Breaking Changes:
- Renamed `TiledReader` to `WorldMapReader`.
- Renamed `TiledReader.asset` to `WorldMapReader.fromAsset`.
- Renamed `TiledReader.network` to `WorldMapReader.fromNetwork`.

Breaking Changes:
- Renamed `AttackFromEnum` to `AttackOriginEnum`.
- Renamed `ReceivesAttackFromEnum` to `AcceptableAttackOriginEnum`.
- Renamed `die` to `onDie` in `Attackable`.
- Renamed `revive` to `onRevive` in `Attackable`.

# 3.7.1
- Fix keyboard param. [#500](https://github.com/RafaelBarbosatec/bonfire/pull/500). Thanks [jakobodman123](https://github.com/jakobodman123)

Expand Down
12 changes: 6 additions & 6 deletions example/.metadata
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# This file should be version controlled and should not be manually edited.

version:
revision: "41456452f29d64e8deb623a3c927524bcf9f111b"
revision: "7482962148e8d758338d8a28f589f317e1e42ba4"
channel: "stable"

project_type: app
Expand All @@ -13,11 +13,11 @@ project_type: app
migration:
platforms:
- platform: root
create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
- platform: linux
create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
create_revision: 7482962148e8d758338d8a28f589f317e1e42ba4
base_revision: 7482962148e8d758338d8a28f589f317e1e42ba4
- platform: macos
create_revision: 7482962148e8d758338d8a28f589f317e1e42ba4
base_revision: 7482962148e8d758338d8a28f589f317e1e42ba4

# User provided section

Expand Down
Loading
Loading