Skip to content

Commit

Permalink
Merge pull request #1 from MapsPeople/release/2.1.0
Browse files Browse the repository at this point in the history
Changed repo to be a mirror of mapsindoors_mapbox package
  • Loading branch information
matiasholst authored Jan 11, 2024
2 parents b7a470f + d070484 commit 7e6fa39
Show file tree
Hide file tree
Showing 233 changed files with 372 additions and 15,969 deletions.
51 changes: 27 additions & 24 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,27 +1,30 @@
# See https://www.dartlang.org/guides/libraries/private-files
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/

# Files and directories created by pub
.dart_tool/
.packages
build/
# If you're building an application, you may want to check-in your pubspec.lock
pubspec.lock

# Directory created by dartdoc
# If you don't generate documentation locally you can remove this line.
doc/api/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# dotenv environment variables file
.env*
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/

# Avoid committing generated Javascript files:
*.dart.js
*.info.json # Produced by the --dump-info flag.
*.js # When generated by dart2js. Don't specify *.js if your
# project includes source files written in JavaScript.
*.js_
*.js.deps
*.js.map

.flutter-plugins
.flutter-plugins-dependencies
# Flutter/Dart/Pub related
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
**/pubspec.lock <- breaks release pipeline for some reason
**/doc/api/
.dart_tool/
.packages
build/
31 changes: 31 additions & 0 deletions .pubignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/

# Flutter/Dart/Pub related
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
**/pubspec.lock
**/doc/api/
.dart_tool/
.packages
build/
example/
28 changes: 0 additions & 28 deletions .vscode/launch.json

This file was deleted.

25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Changelog

## 2.1.0

* Updated Mapsindoors SDKs
* Android to 4.2.10
* iOS to 4.2.13
* Added `showRouteLegButtons` to `MPDirectionsRenderer`
* Added `setLabelOptions` to `MapsindoorsWidget`

## 2.0.1

* RETRACTED

## 2.0.0

* Moved from mapsindoors to allow for multiple map providers
* Changes to classes:
* MapControl
* MapControl has merged with the MapsIndoorsWidget, combining them into a single entity. the Widget will still be built in the build tree, and accepts a listener as a parameter to wait for the MapControl part to be initialized.
* MapsIndoors
* Has been split up into functions on the namespace to align better with dart language standards. Some methods have changed naming to avoid collision with popular method and parameter naming (eg. MapsIndoors.load() is now loadMapsIndoors())
* Changes to the Widget
* The MapsIndoorsWidget has been changed to be a UniqueWidget, this is to ensure that the underlying MapsIndoors in the platform code can function normally.

Loading

0 comments on commit 7e6fa39

Please sign in to comment.