Skip to content

Commit

Permalink
Merge pull request #905 from adshares/develop
Browse files Browse the repository at this point in the history
v1.18.0
  • Loading branch information
m-pilarczyk authored Jun 2, 2022
2 parents 3118797 + 284753f commit 6079c14
Show file tree
Hide file tree
Showing 115 changed files with 18,502 additions and 5,997 deletions.
12 changes: 12 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
# For additional information regarding the format and rule options, please see:
# https://github.com/browserslist/browserslist#queries

# You can see what browsers were selected by your queries by running:
# npx browserslist

> 0.5%
last 2 versions
Firefox ESR
not dead
not IE 9-11 # For IE 9-11 support, remove 'not'.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ src/environments/*
!.vscode/extensions.json

# misc
/.angular/cache
/.sass-cache
/connect.lock
/coverage
Expand Down
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.18.0] - 2022-06-02
### Changed
- Angular 13
### Fixed
- Setting date range for charts
- User label when no e-mail

## [1.17.1] - 2022-05-30
### Fixed
- Newsletter subscription
- DCL builder link
- Edit site's option for manual approval

### Added
- Link to wiki guide on how to add an HTML file

## [1.17.0] - 2022-05-19
### Added
- Links to publisher sites in publisher panel
- Configuration default site classification and filtering options on admin panel
- Opportunity for admin to ban unban and delete users
- Opportunity for admin to ban, unban and delete users
### Changed
- Wallet login buttons visibility
- Angular 7
Expand Down Expand Up @@ -417,7 +427,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Publisher features (Sites & AdUnits)


[Unreleased]: https://github.com/adshares/adpanel/compare/v1.17.1...develop
[Unreleased]: https://github.com/adshares/adpanel/compare/v1.18.0...develop
[1.18.0]: https://github.com/adshares/adpanel/compare/v1.17.1...v1.18.0
[1.17.1]: https://github.com/adshares/adpanel/compare/v1.17.0...v1.17.1
[1.17.0]: https://github.com/adshares/adpanel/compare/v1.16.1...v1.17.0
[1.16.1]: https://github.com/adshares/adpanel/compare/v1.16.0...v1.16.1
Expand Down
53 changes: 36 additions & 17 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,19 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"allowedCommonJsDependencies": [
"assert",
"chart.js",
"crypto",
"hash.js",
"web3",
"http",
"https",
"os",
"stream",
"web3-utils",
"vm"
],
"outputPath": "dist",
"index": "src/index.html",
"main": "src/main.ts",
Expand All @@ -27,27 +40,41 @@
"styles": [
"src/styles.scss"
],
"scripts": []
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"dev": {
"budgets": [
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
],
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.dev.ts"
}
],
"optimization": false,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": false,
"extractLicenses": false,
"vendorChunk": false,
"buildOptimizer": false
"vendorChunk": false
},
"prod": {
"budgets": [
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
],
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
Expand All @@ -57,14 +84,13 @@
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
Expand All @@ -85,13 +111,6 @@
"options": {
"browserTarget": "adshares:build"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [],
"exclude": []
}
}
}
}
Expand All @@ -100,7 +119,7 @@
"schematics": {
"@schematics/angular:component": {
"prefix": "app",
"styleext": "scss"
"style": "scss"
},
"@schematics/angular:directive": {
"prefix": "app"
Expand Down
Loading

0 comments on commit 6079c14

Please sign in to comment.