Skip to content

Commit

Permalink
Merge branch 'hotfix/0.14.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Kruptein committed Jan 28, 2019
2 parents a9adad9 + 6b2fff3 commit 2e60b81
Show file tree
Hide file tree
Showing 14 changed files with 17 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ All notable changes to this project will be documented in this file.

## Unreleased

## [0.14.1] - 2019-01-28

### Fixed

- A lot of things breaking due to a bug in shape ownership.

## [0.14.0] - 2019-01-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "planarally-client",
"version": "0.14.0",
"version": "0.14.1",
"description": "A companion tool for when you travel into the planes.",
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
2 changes: 1 addition & 1 deletion client/src/game/shapes/shape.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ export abstract class Shape {
}

get owners() {
return Object.freeze(this._owners);
return Object.freeze(this._owners.slice());
}

ownedBy(username?: string) {
Expand Down
2 changes: 1 addition & 1 deletion server/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.14.0
0.14.1
2 changes: 0 additions & 2 deletions server/static/js/app-legacy.786ad160.js

This file was deleted.

1 change: 0 additions & 1 deletion server/static/js/app-legacy.786ad160.js.map

This file was deleted.

2 changes: 2 additions & 0 deletions server/static/js/app-legacy.f228bc3b.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions server/static/js/app-legacy.f228bc3b.js.map

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions server/static/js/app.786ad160.js

This file was deleted.

1 change: 0 additions & 1 deletion server/static/js/app.786ad160.js.map

This file was deleted.

2 changes: 2 additions & 0 deletions server/static/js/app.f228bc3b.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions server/static/js/app.f228bc3b.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion server/templates/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><title>PlanarAlly - The companion tool for your planar travels.</title><script defer src=/static/extern/js/fontawesome-5.6.3.js integrity=sha384-EIHISlAOj4zgYieurP0SdoiBYfGJKkgWedPHH4jCzpCXLmzVsw1ouK59MuUtP4a1></script><link rel=stylesheet type=text/css href=/static/extern/css/directory.css><link href=/static/css/app.0ad52c65.css rel=preload as=style><link href=/static/js/app.786ad160.js rel=modulepreload as=script><link href=/static/js/chunk-vendors.026de90a.js rel=modulepreload as=script><link href=/static/css/app.0ad52c65.css rel=stylesheet></head><body><noscript><strong>We're sorry but PlanarAlly doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script type=module src=/static/js/chunk-vendors.026de90a.js></script><script type=module src=/static/js/app.786ad160.js></script><script>!function(){var e=document,t=e.createElement("script");if(!("noModule"in t)&&"onbeforeload"in t){var n=!1;e.addEventListener("beforeload",function(e){if(e.target===t)n=!0;else if(!e.target.hasAttribute("nomodule")||!n)return;e.preventDefault()},!0),t.type="module",t.src=".",e.head.appendChild(t),t.remove()}}();</script><script src=/static/js/chunk-vendors-legacy.026de90a.js nomodule></script><script src=/static/js/app-legacy.786ad160.js nomodule></script></body></html>
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><title>PlanarAlly - The companion tool for your planar travels.</title><script defer src=/static/extern/js/fontawesome-5.6.3.js integrity=sha384-EIHISlAOj4zgYieurP0SdoiBYfGJKkgWedPHH4jCzpCXLmzVsw1ouK59MuUtP4a1></script><link rel=stylesheet type=text/css href=/static/extern/css/directory.css><link href=/static/css/app.0ad52c65.css rel=preload as=style><link href=/static/js/app.f228bc3b.js rel=modulepreload as=script><link href=/static/js/chunk-vendors.026de90a.js rel=modulepreload as=script><link href=/static/css/app.0ad52c65.css rel=stylesheet></head><body><noscript><strong>We're sorry but PlanarAlly doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script type=module src=/static/js/chunk-vendors.026de90a.js></script><script type=module src=/static/js/app.f228bc3b.js></script><script>!function(){var e=document,t=e.createElement("script");if(!("noModule"in t)&&"onbeforeload"in t){var n=!1;e.addEventListener("beforeload",function(e){if(e.target===t)n=!0;else if(!e.target.hasAttribute("nomodule")||!n)return;e.preventDefault()},!0),t.type="module",t.src=".",e.head.appendChild(t),t.remove()}}();</script><script src=/static/js/chunk-vendors-legacy.026de90a.js nomodule></script><script src=/static/js/app-legacy.f228bc3b.js nomodule></script></body></html>

0 comments on commit 2e60b81

Please sign in to comment.