Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
Merge pull request #441 from elyukai/release/1.3.0
  • Loading branch information
elyukai authored Mar 3, 2020
2 parents cf34748 + ee1e94c commit 81d1258
Show file tree
Hide file tree
Showing 1,041 changed files with 43,730 additions and 35,489 deletions.
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
src/App/Utilities/YAML/Schema/
*.js
*.gen.tsx
116 changes: 78 additions & 38 deletions .eslintrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ rules:
no-duplicate-case: 2
no-empty-character-class: 2
no-ex-assign: 2
no-extra-parens: 0
no-extra-semi: 2
no-inner-declarations: 1
no-invalid-regexp: 2
no-irregular-whitespace: 2
Expand Down Expand Up @@ -97,13 +95,11 @@ rules:
no-proto: 2
no-redeclare: 2
no-return-assign: 2
no-return-await: 2
no-script-url: 2
no-self-assign: 2
no-self-compare: 2
no-throw-literal: 2
no-unmodified-loop-condition: 2
no-unused-expressions: 2
no-unused-labels: 2
no-useless-call: 2
no-useless-catch: 2
Expand Down Expand Up @@ -136,9 +132,6 @@ rules:
- 2
- consistent
block-spacing: 2
brace-style:
- 2
- stroustrup
# capitalized-comments: 2
comma-dangle:
- 2
Expand All @@ -147,11 +140,9 @@ rules:
imports: always-multiline
exports: always-multiline
functions: only-multiline
comma-spacing: 2
comma-style: 2
computed-property-spacing: 2
eol-last: 2
func-call-spacing: 0
func-name-matching: 2
func-names: 2
func-style:
Expand All @@ -164,19 +155,37 @@ rules:
function-paren-newline:
- 2
- consistent
indent: 0
jsx-quotes: 2
key-spacing: 2
keyword-spacing: 2
line-comment-position: 2
lines-around-comment:
- 2
- 0
# requires an empty line before block comments
- beforeBlockComment: true
# lines-around-comment":
# - 2
# - beforeBlockComment: true
# allowBlockStart: true
# beforeLineComment: true
# requires an empty line after block comments
afterBlockComment: false
# requires an empty line before line comments
beforeLineComment: true
# requires an empty line after line comments
afterLineComment: false
# allows comments to appear at the start of block statements
allowBlockStart: true
# allows comments to appear at the end of block statements
allowBlockEnd: false
# allows comments to appear at the start of object literals
allowObjectStart: true
# allows comments to appear at the end of object literals
allowObjectEnd: false
# allows comments to appear at the start of array literals
allowArrayStart: true
# allows comments to appear at the end of array literals
allowArrayEnd: false
# allows comments to appear at the start of classes
allowClassStart: true
# allows comments to appear at the end of classes
allowClassEnd: false
ignorePattern: "^ *@"
lines-between-class-members: 2
max-len:
- 2
Expand All @@ -192,7 +201,6 @@ rules:
newline-per-chained-call:
- 2
- ignoreChainWithDepth: 2
no-array-constructor: 2
no-bitwise: 2
no-continue: 2
no-inline-comments: 2
Expand Down Expand Up @@ -225,7 +233,7 @@ rules:
- 2
- before
- overrides:
"=": after
"=": ignore
padded-blocks:
- 2
- blocks: never
Expand All @@ -240,16 +248,9 @@ rules:
quote-props:
- 2
- as-needed
quotes:
- 2
- double
- avoidEscape: true
allowTemplateLiterals: true
semi: 0
semi-spacing: 2
semi-style: 2
space-before-blocks: 2
space-before-function-paren: 2
space-in-parens: 2
space-infix-ops:
- 2
Expand All @@ -275,7 +276,6 @@ rules:
no-new-symbol: 2
no-this-before-super: 2
no-useless-computed-key: 2
no-useless-constructor: 2
no-useless-rename: 2
no-var: 2
object-shorthand: 2
Expand Down Expand Up @@ -307,18 +307,14 @@ rules:
"@typescript-eslint/await-thenable": 2
# "@typescript-eslint/class-name-casing": 2
"@typescript-eslint/consistent-type-assertions": 2
"@typescript-eslint/func-call-spacing":
- 2
- always
- allowNewlines: true
# "@typescript-eslint/indent":
# - 2
# - 2
# - flatTernaryExpressions: true
"@typescript-eslint/interface-name-prefix": 2
"@typescript-eslint/no-extra-parens":
- 1
- functions
"@typescript-eslint/member-delimiter-style":
- 2
- multiline:
delimiter: none
singleline:
delimiter: semi
requireLast: false
"@typescript-eslint/no-floating-promises": 2
"@typescript-eslint/no-for-in-array": 2
"@typescript-eslint/no-inferrable-types": 2
Expand All @@ -333,7 +329,7 @@ rules:
"@typescript-eslint/promise-function-async": 2
# "@typescript-eslint/quotes": 2
"@typescript-eslint/require-array-sort-compare": 2
# "@typescript-eslint/require-await": 2
"@typescript-eslint/require-await": 2
"@typescript-eslint/restrict-plus-operands": 2
# "@typescript-eslint/semi":
# - 2
Expand All @@ -344,6 +340,50 @@ rules:
# "@typescript-eslint/unbound-method": 2
"@typescript-eslint/unified-signatures": 2

# TypeScript Extension
brace-style: 0
"@typescript-eslint/brace-style":
- 2
- stroustrup
comma-spacing: 0
"@typescript-eslint/comma-spacing": 2
func-call-spacing: 0
"@typescript-eslint/func-call-spacing":
- 2
- always
- allowNewlines: true
indent: 0
"@typescript-eslint/indent": 0
no-array-constructor: 0
"@typescript-eslint/no-array-constructor": 2
no-extra-parens: 0
"@typescript-eslint/no-extra-parens": 0
no-extra-semi: 0
"@typescript-eslint/no-extra-semi": 2
no-unused-expressions: 0
"@typescript-eslint/no-unused-expressions": 2
"@typescript-eslint/no-unused-vars":
- 0
- varsIgnorePattern: "^_"
"@typescript-eslint/no-use-before-define": 2
no-useless-constructor: 0
"@typescript-eslint/no-useless-constructor": 2
quotes: 0
"@typescript-eslint/quotes":
- 2
- double
- avoidEscape: true
allowTemplateLiterals: true
no-return-await: 0
"@typescript-eslint/return-await": 2
semi: 0
"@typescript-eslint/semi":
- 2
- never
- beforeStatementContinuationChars: never
space-before-function-paren: 0
"@typescript-eslint/space-before-function-paren": 2

# React
react/boolean-prop-naming: 2
react/destructuring-assignment: 2
Expand Down
29 changes: 15 additions & 14 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,32 @@
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
labels: Bug
assignees: ''

---

**Describe the bug**
> A clear and concise description of what the bug is.
A clear and concise description of what the bug is.

**To Reproduce**
> Steps to reproduce the behavior:
> 1. Go to '...'
> 2. Click on '....'
> 3. Scroll down to '....'
> 4. See error
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
> A clear and concise description of what you expected to happen.
A clear and concise description of what you expected to happen.

**Screenshots**
> If applicable, add screenshots to help explain your problem.
If applicable, add screenshots to help explain your problem.

**Environment (please complete the following information):**

**Environment**
> Please complete the following information
- OS: [e.g. Windows 10]
- Version [e.g. 1.1.0]
- OS: [e.g. Windows 10]
- Version: [e.g. 1.1.0, 1.3.0-alpha.5]

**Additional context**
> Add any other context about the problem here.
Add any other context about the problem here.
8 changes: 4 additions & 4 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
name: Feature request
about: Suggest an idea for this project
title: ''
labels: feature request
labels: Feature Request
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
> A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
> A clear and concise description of what you want to happen.
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
> A clear and concise description of any alternative solutions or features you've considered.
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
> Add any other context or screenshots about the feature request here.
5 changes: 4 additions & 1 deletion .github/ISSUE_TEMPLATE/new-book-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,26 @@
name: New Book Data
about: Implement a specific part of a (new) book
title: 'Book: Section'
labels: l10n, tables
labels: 'Domain: Static Data, L10n'
assignees: ''

---

**Sources**
> List here what is included in this part of the book to implement. E.g., for special abilities, you need to list every source of entries from the book. Example (in German):
>
> - [ ] S. 133 (Berufsgeheimnisse)
> - [ ] S. 165-170 (Zauber- und Liturgiestile)
> - [ ] S. 183 (Stabzauber)
> - [ ] S. 195 (Zeremonialgegenstand Widderkeule)
**Tables**
> Delete Univ and change locale if necessary. Add specific entries if they could not be resolved.
- [ ] Univ
- [ ] L10n de-DE

**Code**
> List here what cannot be solved only using the tables. Example (in German):
>
> - [ ] Voraussetzungen Vorliebe I-II
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/publication-bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Publication bug report
about: Create a report of an bug in one of the official publications
title: ''
labels: 'Bug, Domain: Static Data, Ulisses: Bug'
assignees: ''

---

**Source (please complete the following information):**

- Book: [e.g. Magic of Aventuria I]
- Printing: [e.g. 1st]
- Page(s): [e.g. 199]
- Area: [e.g. Profession Black Mage (Demirion Ophenos's Student), AP value]

**Describe the bug**
A clear and concise description of what the bug is.

**Expected text**
A clear and concise description of what the text *should* be instead.

**Optolith Version:**
If applicable, the exact version of Optolith where you experience the bug, e.g. 1.2.0, 1.3.0-alpha.5.

**Additional context**
If needed, add any other context about the problem here.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Question
about: I have a question.
title: ''
labels: question
labels: Question
assignees: ''

---
Expand Down
10 changes: 6 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,17 @@ app/**/*.js.map
!app/index.js
/installer/
electron-builder.env
app/Database/**/*.xlsx
*.map
app/Database/de-DE/.~lock.l10n.xlsx#
app/Database/.~lock.univ.xlsx#
tablesSrc.json
app/Database
publishSettings.json

.env*

Tables.zip
tables/
deploy/tablesSrc.json
src/App/Utilities/YAML/Schema/
/lib/bs/
.merlin
.bsb.lock
*.tsbuildinfo
3 changes: 3 additions & 0 deletions .idea/.gitignore

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

Loading

0 comments on commit 81d1258

Please sign in to comment.