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

Book 769 update libs #45

Merged
merged 12 commits into from
Apr 16, 2019
5 changes: 2 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
"no-unused-vars": ["error", {
"vars": "all", "args": "after-used"
}],
"keyword-spacing": ["error", { "before": true, "after": true }],
"comma-dangle": "off",
"comma-dangle": "error",
"indent": ["error", 2, {"SwitchCase": 1}],
"quotes": ["error", "single"],
"semi": ["error", "always"],
Expand All @@ -40,7 +39,7 @@
"no-loop-func": "off",
"curly": ["error", "all"],
"brace-style": ["error", "1tbs"],
"default-case": "off",
"default-case": "error",
"prefer-destructuring": "off",
"padding-line-between-statements": [
"error",
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,21 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="1.3.0-rc.0"></a>
# [1.3.0-rc.0](https://github.com/peerplays-network/BookiePro/compare/v1.2.17...v1.3.0-rc.0) (2019-04-15)


### Code Refactoring

* **ppjslibs:** update repo to use ws inside lib ([85c9162](https://github.com/peerplays-network/BookiePro/commit/85c9162))


### BREAKING CHANGES

* **ppjslibs:** peerplaysjs-ws has been replaced with the new peerplaysjs-lib, there is a testing
branch in use at the moment.



<a name="1.2.17"></a>
## [1.2.17](https://github.com/peerplays-network/BookiePro/compare/v1.2.16...v1.2.17) (2019-04-05)
12 changes: 6 additions & 6 deletions config/webpack.config.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ module.exports = {
{
test: /\.(js|jsx)$/,
loader: 'eslint',
include: paths.appSrc,
include: paths.appSrc
}
],
loaders: [
Expand Down Expand Up @@ -121,7 +121,7 @@ module.exports = {
loader: 'babel',
query: {
plugins: [
['import', [{libraryName: 'antd', style: true}]], // import less
['import', [{libraryName: 'antd', style: true}]] // import less
],
// This is a feature of `babel-loader` for webpack (not Babel itself).
// It enables caching results in ./node_modules/.cache/babel-loader/
Expand Down Expand Up @@ -156,7 +156,7 @@ module.exports = {
{
test: /\.less$/,
loader: 'style!css!postcss!less'
},
}
// ** STOP ** Are you adding a new loader?
// Remember to add the new extension(s) to the "url" loader exclusion list.
],
Expand All @@ -172,9 +172,9 @@ module.exports = {
'>1%',
'last 4 versions',
'Firefox ESR',
'not ie < 9', // React doesn't support IE8 anyway
'not ie < 9' // React doesn't support IE8 anyway
]
}),
})
];
},
plugins: [
Expand All @@ -186,7 +186,7 @@ module.exports = {
// Generates an `index.html` file with the <script> injected.
new HtmlWebpackPlugin({
inject: true,
template: paths.appHtml,
template: paths.appHtml
}),
// Makes some environment variables available to the JS code, for example:
// if (process.env.NODE_ENV === 'development') { ... }. See `./env.js`.
Expand Down
8 changes: 4 additions & 4 deletions electron-builder.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
directories:
output: dist
appId: com.peerplays.bookie
productName: BookiePro.fun
productName: BookiePro
extraMetadata:
name: BookiePro.fun
name: BookiePro
homepage: http://bookie.exchange/
description: BookiePro.fun is the first truly global betting exchange. Using a decentralized blockchain foundation, BookiePro.fun has been built to address three key challenges in sports betting today.
description: BookiePro is the first truly global betting exchange. Using a decentralized blockchain foundation, BookiePro has been built to address three key challenges in sports betting today.
author:
name: BookiePro.fun
name: BookiePro
email: [email protected]
mac:
category: public.app-category.productivity
Expand Down
Loading