Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: schoero/swissqrbill
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.1.3
Choose a base ref
...
head repository: schoero/swissqrbill
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.1.4
Choose a head ref
  • 6 commits
  • 9 files changed
  • 2 contributors

Commits on Dec 8, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    56335d9 View commit details

Commits on Jan 11, 2022

  1. Fix missing corner marks in a4 (#361)

    * fix: corrected position of corner marks in a4 #360
    
    * test: add test for a4 without deptor, amount & ref
    schoero authored Jan 11, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    18e2b24 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    651501c View commit details
  3. test: cleanup

    schoero committed Jan 11, 2022

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    cfeb89a View commit details
  4. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b46d83b View commit details
  5. Release v3.1.4

    schoero committed Jan 11, 2022

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    ad201ed View commit details
Showing with 272 additions and 329 deletions.
  1. +1 −138 .eslintrc.json
  2. +5 −0 CHANGELOG.md
  3. +216 −164 package-lock.json
  4. +10 −9 package.json
  5. +5 −4 src/pdf/pdf.ts
  6. +15 −11 src/svg/svg.ts
  7. +15 −0 tests/a4-no-debtor-no-amount-no-reference.js
  8. +3 −3 tests/no-debtor-no-amount-no-reference.js
  9. +2 −0 tests/run.sh
139 changes: 1 addition & 138 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,140 +1,3 @@
{
"env": {
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-async-promise-executor": "off",
"space-infix-ops": "warn",
"no-whitespace-before-property": "warn",
"space-in-parens": [
"warn",
"never"
],
"comma-spacing": [
"warn",
{
"before": false,
"after": true
}
],
"comma-style": [
"warn",
"last"
],
"comma-dangle": [
"warn",
"never"
],
"computed-property-spacing": [
"warn",
"never"
],
"func-call-spacing": [
"warn",
"never"
],
"array-bracket-spacing": [
"warn",
"never"
],
"brace-style": [
"warn",
"1tbs",
{
"allowSingleLine": true
}
],
"function-paren-newline": [
"warn",
"never"
],
"space-before-function-paren": [
"warn",
{
"anonymous": "never",
"named": "never",
"asyncArrow": "never"
}
],
"space-before-blocks": [
"warn",
{
"functions": "always",
"keywords": "never",
"classes": "always"
}
],
"arrow-spacing": [
"warn",
{
"before": true,
"after": true
}
],
"arrow-parens": [
"warn",
"as-needed"
],
"keyword-spacing": [
"warn",
{
"overrides": {
"if": {
"before": false,
"after": false
},
"else": {
"before": true,
"after": true
},
"for": {
"after": false
},
"while": {
"after": false
}
}
}
],
"no-trailing-spaces": "warn",
"indent": [
"warn",
2,
{
"SwitchCase": 1
}
],
"prefer-const": "warn",
"no-unused-vars": "off",
"no-undef": "off",
"linebreak-style": [
"warn",
"unix"
],
"quotes": [
"warn",
"double"
],
"semi": [
"warn",
"always"
]
}
"extends": "@schoero"
}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@

# Change Log

# [v3.1.4](https://github.com/schoero/swissqrbill/compare/v3.1.3...v3.1.4) - 11.01.2022
* Fixed rendering of debtor rectangle in when page size is A4. [#361](https://github.com/schoero/SwissQRBill/pull/361)
* Fixed rendering of country code for foreign payments. [#362](https://github.com/schoero/SwissQRBill/pull/362)
* Fixed missing of `-` character in svg text rendering. [#363](https://github.com/schoero/SwissQRBill/pull/363)

# [v3.1.3](https://github.com/schoero/swissqrbill/compare/v3.1.2...v3.1.3) - 05.12.2021
* Fixed rendering of AV1 and AV2. [#357](https://github.com/schoero/SwissQRBill/pull/357)

Loading