Skip to content

Commit

Permalink
Merge pull request #12 from catscarlet/dev
Browse files Browse the repository at this point in the history
Prepare v0.4.3
  • Loading branch information
catscarlet committed Dec 9, 2020
2 parents 400def2 + 6320acc commit 8ff1caa
Show file tree
Hide file tree
Showing 4 changed files with 904 additions and 901 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
vue-app/dist
vue-app/node_modules
44 changes: 22 additions & 22 deletions vue-app/package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "Web-Log-Analyzer-IceFairy",
"version": "0.4.2",
"description": "A Client-Only web log analyzing tool.",
"author": "Catscarlet <i@catscarlet.com>",
"homepage": "https://github.com/catscarlet/Web-Log-Analyzer-IceFairy",
"license": "MPL-2.0",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build"
},
"dependencies": {
"chart.js": "^2.9.3",
"element-ui": "^2.13.2",
"vue": "^2.6.12",
"vue-chartjs": "^3.5.1",
"vue-router": "^3.4.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.6",
"@vue/cli-service": "^4.5.6",
"vue-template-compiler": "^2.6.12"
}
"author": "Catscarlet <i@catscarlet.com>",
"dependencies": {
"chart.js": "^2.9.4",
"element-ui": "^2.14.1",
"vue": "^2.6.12",
"vue-chartjs": "^3.5.1",
"vue-router": "^3.4.9"
},
"description": "A Client-Only web log analyzing tool.",
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.9",
"@vue/cli-service": "^4.5.9",
"vue-template-compiler": "^2.6.12"
},
"homepage": "https://github.com/catscarlet/Web-Log-Analyzer-IceFairy",
"license": "MPL-2.0",
"name": "Web-Log-Analyzer-IceFairy",
"scripts": {
"build": "vue-cli-service build",
"serve": "vue-cli-service serve"
},
"version": "0.4.3"
}
2 changes: 1 addition & 1 deletion vue-app/src/common/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ export const WebLogAnalyzer = (reader_result) => {
function dateobj2YYYYMM(d) {
let yyyymm = d.getFullYear().toString();

if (d.getMonth() < 10) {
if (d.getMonth() < 9) {
yyyymm = yyyymm + '0';
}

Expand Down

0 comments on commit 8ff1caa

Please sign in to comment.