Skip to content

Commit

Permalink
Ellas War 2.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
V-Paranoiaque committed Aug 14, 2024
1 parent 170dd8f commit 6ba61ba
Show file tree
Hide file tree
Showing 7 changed files with 92 additions and 71 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ build.json

# SonarQube
.scannerwork
.sonar
sonar-project.properties

# Generated images
src/**/*.webp
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": [
"source.fixAll.eslint"
],
"eslint.validate": ["javascript", "javascriptreact", "typescript", "vue"]
}
6 changes: 6 additions & 0 deletions CHANGELOG/CHANGELOG-2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,9 @@
# 2.0.10
* Fix marble/stone bar on touch screens
* Fix top display on Android

# 2.0.11
* Fix displayed price when liberating resources
* Fix missing translations
* Improve some texts
* Split the attack page in different URL
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget android-packageName="com.ellaswar.ewnextmobile" id="ellaswar" version="2.0.10" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget android-packageName="com.ellaswar.ewnextmobile" id="ellaswar" version="2.0.11" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>EllasWar</name>
<description>
Desktop/Mobile application for the online game ellaswar.com.
Expand Down
120 changes: 60 additions & 60 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@v-paranoiaque/ew",
"description": "Front-end of the Ellas War Game",
"version": "2.0.10",
"version": "2.0.11",
"homepage": "https://ellaswar.eu",
"author": {
"name": "Ellas War Team",
Expand Down Expand Up @@ -150,4 +150,4 @@
"runtimeVersion": "23.08"
}
}
}
}
22 changes: 14 additions & 8 deletions src/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
},
"overrides": [
{
Expand All @@ -22,10 +22,12 @@
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:eslint-comments/recommended",
"plugin:prettier/recommended",
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates",
"plugin:prettier/recommended"
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/stylistic-type-checked"
],
"rules": {
"@angular-eslint/directive-selector": [
Expand All @@ -47,8 +49,12 @@
}
},
{
"files": ["*.html"],
"excludedFiles": ["*inline-template-*.component.html"],
"files": [
"*.html"
],
"excludedFiles": [
"*inline-template-*.component.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended",
"plugin:@angular-eslint/template/accessibility",
Expand All @@ -64,4 +70,4 @@
}
}
]
}
}

0 comments on commit 6ba61ba

Please sign in to comment.