Skip to content

Commit

Permalink
Merge pull request #248 from penguin-statistics/dev
Browse files Browse the repository at this point in the history
v1.1.6 Release
  • Loading branch information
AlvISsReimu authored Apr 3, 2020
2 parents b003108 + 24bece2 commit ca9317c
Show file tree
Hide file tree
Showing 59 changed files with 2,884 additions and 1,517 deletions.
5 changes: 3 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
VUE_APP_I18N_LOCALE=zh
VUE_APP_I18N_FALLBACK_LOCALE=zh
SENTRY_URL=https://sentry.io
SENTRY_ORG=penguin-statistics
SENTRY_PROJECT=frontend
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"root": true,
"globals": {
"GIT_COMMIT": true
"GIT_COMMIT": true,
"workbox": true
},
"env": {
"node": true
Expand Down
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,27 @@
<img src="https://penguin.upyun.galvincdn.com/logos/penguin_stats_logo.png"
alt="Penguin Statistics - Logo"
style="width: 64px" />
width="96px" />

# Penguin Statistics!
[![License](https://img.shields.io/github/license/penguin-statistics/frontend-v2)](https://github.com/penguin-statistics/frontend-v2/blob/dev/LICENSE)
[![Build Status](https://img.shields.io/travis/penguin-statistics/frontend-v2?logo=travis)](https://travis-ci.org/penguin-statistics/frontend-v2)
[![Last Commit](https://img.shields.io/github/last-commit/penguin-statistics/frontend-v2)](https://github.com/penguin-statistics/frontend-v2/commits/dev)
[![Docs](https://img.shields.io/badge/docs-GitBook-blue)](https://developer.penguin-stats.io)

## Contribute Guideline
Our contribute guideline can be found at [Penguin Developers](https://developer.penguin-stats.io)
This is the **frontend** project repository for the [Penguin Statistics](https://penguin-stats.io/?utm_source=github) website.

## Maintainers
This frontend project has mainly being maintained by the following contributors (in alphabetical order):
- [AlvISsReimu](https://github.com/AlvISsReimu)
- [AsahiLuna](https://github.com/AsahiLuna)
- [GalvinGao](https://github.com/GalvinGao)

> The full list of active contributors of the *Penguin Statistics* project can be found at the [Team Members page](https://penguin-stats.io/about/members) of the website.
## Supports
Thanks for the kindness support for this Open Source project from:
- [![Sentry.io](https://img.shields.io/badge/Sentry.io-DBD3E9?logo=sentry&style=flat&logoColor=DBD3E9&labelColor=16111C&color=9990AB)](https://sentry.io)

## How to contribute?
Our contribute guideline can be found at [Penguin Developers](https://developer.penguin-stats.io). PRs are always more than welcome!

1 change: 1 addition & 0 deletions docs/images/sentry.io.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 12 additions & 3 deletions now.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
{
"version": 2,
"env": {
"IS_NOW_BUILD": "yes"
}
"public": true,
"headers": [
{
"source": "/service-worker.js",
"headers" : [
{
"key" : "Cache-Control",
"value" : "public, max-age=0, must-revalidate"
}
]
}
]
}
18 changes: 10 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
{
"name": "penguin-stats-frontend",
"version": "1.1.4",
"version": "1.1.5",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "npx --max_old_space_size=4096 vue-cli-service build --modern",
"build:single": "npx --max_old_space_size=4096 vue-cli-service build",
"lint": "vue-cli-service lint",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'",
"submit": "git add . && git cz && git push"
"submit": "git add . && git cz && git push",
"preview": "yarn build && serve -s -d dist",
"preview:single": "yarn build:single && serve -s -d dist"
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@chenfengyuan/vue-number-input": "^1.2.1",
"@sentry/apm": "^5.15.4",
"@sentry/browser": "^5.6.2",
"@sentry/integrations": "^5.6.1",
"animejs": "^3.1.0",
"aos": "^2.3.4",
"clipboard-polyfill": "^2.8.6",
"core-js": "^2.6.5",
"dayjs": "^1.8.21",
"dayjs": "^1.8.23",
"extract-domain": "^2.2.1",
"js-cookie": "^2.2.1",
"secure-ls": "^1.2.6",
"vue": "^2.6.10",
"vue-analytics": "^5.22.1",
"vue-i18n": "^8.0.0",
Expand All @@ -35,7 +36,6 @@
"@mdi/font": "^3.8.95",
"@vue/cli-plugin-babel": "^3.9.0",
"@vue/cli-plugin-eslint": "^3.9.0",
"@vue/cli-plugin-pwa": "^3.10.0",
"@vue/cli-service": "^3.9.0",
"axios": "^0.19.0",
"babel-eslint": "^10.0.1",
Expand All @@ -50,9 +50,11 @@
"stylus-loader": "^3.0.1",
"vue-cli-plugin-i18n": "^0.6.1",
"vue-cli-plugin-vuetify": "^2.0.5",
"vue-svg-inline-loader": "^1.5.0",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.4.3",
"webpack": "^4.42.0"
"webpack": "^4.42.1",
"workbox-webpack-plugin": "^5.1.2"
},
"postcss": {
"plugins": {
Expand Down
Loading

0 comments on commit ca9317c

Please sign in to comment.