diff --git a/.github/workflows/changelog_settings.json b/.github/workflows/changelog_settings.json index 30678c9..fc03baa 100644 --- a/.github/workflows/changelog_settings.json +++ b/.github/workflows/changelog_settings.json @@ -2,7 +2,7 @@ "categories": [ { "title": "## ๐Ÿš€ Features", - "labels": ["enhancement", "feature"] + "labels": ["enhancement", "feature", "feat"] }, { "title": "## ๐Ÿ› ๏ธ Minor Changes", @@ -14,11 +14,11 @@ }, { "title": "## ๐Ÿ› Fixes", - "labels": ["bug", "fix"] + "labels": ["bug", "fix", "fixed", "fixes"] }, { "title": "## ๐Ÿ“„ Documentation", - "labels": ["documentation"] + "labels": ["documentation", "doc", "docs"] }, { "title": "## ๐Ÿงช Tests", @@ -38,8 +38,8 @@ } ], "sort": "ASC", - "template": "Total of ${{CATEGORIZED_COUNT}} new changes since ${{FROM_TAG}}:\n${{CHANGELOG}}\n", - "pr_template": "- ${{BODY}} -> Author: ${{AUTHOR}}", + "template": "New release on ${{MERGED_AT}}\nTotal of ${{CATEGORIZED_COUNT}} new changes since ${{FROM_TAG}}:\n${{CHANGELOG}}\n", + "pr_template": "- ${{BODY}}", "empty_template": "- No Changes", "max_pull_requests": 1000, "max_back_track_time_days": 1000, diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 3b4662b..e6272f8 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -12,7 +12,7 @@ on: required: true default: '2' # minor release_patch: - description: 'Release - patch number (previous 1)' + description: 'Release - patch number (previous 2)' required: true release_name: description: 'Additional name of the release' @@ -76,7 +76,7 @@ jobs: run: echo "::set-output name=latest_tag::$(git describe --tags --abbrev=0)" - name: Generate changelog text - id: changelog + id: changelog_build uses: mikepenz/release-changelog-builder-action@v2.4.2 with: configuration: ".github/workflows/changelog_settings.json" @@ -85,24 +85,18 @@ jobs: toTag: ${{ steps.head.outputs.head }} fromTag: ${{ steps.latest_tag.outputs.latest_tag }} token: ${{ secrets.GITHUB_TOKEN }} - - - name: Read CHANGELOG.md - id: package - uses: juliangruber/read-file-action@v1 - with: - path: ./CHANGELOG.md - - name: Write to CHANGELOG.md + - name: Append to CHANGELOG.md uses: DamianReeves/write-file-action@master with: path: ./CHANGELOG.md - contents: ${{ steps.changelog.outputs.changelog }}${{ steps.package.outputs.content }} + contents: \n${{ steps.changelog_build.outputs.changelog }} write-mode: append - name: Check prerelease version uses: haya14busa/action-cond@v1 - id: condval - with: + id: condval + with: # allows to get actual bool from string cond: ${{ github.event.inputs.release_suffix != '' }} if_true: true if_false: false @@ -117,8 +111,6 @@ jobs: - name: Create Release uses: ncipollo/release-action@v1 - env: - ch: ${{ steps.changelog.outputs.changelog }} with: artifacts: "${{env.bin_dir}}${{env.artifact_name}}" tag: v${{env.release_version}} @@ -129,7 +121,7 @@ jobs: omitName: false prerelease: ${{steps.condval.outputs.value}} artifactErrorsFailBuild: true - body: ${{ steps.changelog.outputs.changelog }} + body: ${{ steps.changelog_build.outputs.changelog }} token: ${{ secrets.GITHUB_TOKEN }} - name: Change default version in workflow diff --git a/CHANGELOG.md b/CHANGELOG.md index 5837575..851e3b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -- no changesTotal of 5 new changes since v3.0.2.3 +Total of 5 new changes since v3.0.2.3 ## ๐Ÿš€ Features @@ -23,929 +23,34 @@ - Update ci_cd.yml -> Author: anion0278 - Merge branch 'dev' -> Author: anion0278 - Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -:- no changesTotal of 14 new changes since v3.1.0.4 -: -## ๐Ÿš€ Features - -- feature: Invoice item groupping, better data visualization -> Author: anion0278 -- feature: post-export open folder setting attempts to reuse already opened folder if possible -> Author: anion0278 -- feature: invoice number column now works as link to seller central -> Author: anion0278 - -## ๐Ÿ› ๏ธ Minor Changes - -- change: item price aggregation using operator -> Author: anion0278 -- change: tax price calculation invariant support -> Author: anion0278 -- change: better error notification for grids, disabled virtualization -> Author: anion0278 -- change: added validation rule for Invoice item, added country exception for moss codes -> Author: anion0278 -- change: added validation rule for Invoice VM -> Author: anion0278 -- change: Fody for VMs -> Author: anion0278 -- change: improved UI, unblocking datagrid allows to edit even if there are invalid cells -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: colon position [skip ci] -> Author: anion0278 -- fix: total invoice price calculation, invariants fullfilling, refactoring -> Author: anion0278 -- fix: invocie item validation rule -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report [skip ci] -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- tests: changed invoice converter tests -> Author: anion0278 -- tests: added design-time data for main VM; Fody prop change for manual change VM -> Author: anion0278 - - -- no changesTotal of 5 new changes since v3.0.2.3 - -## ๐Ÿš€ Features - -- feature: WPF binding exceptions are now handled explicitly -> Author: anion0278 -- feature: App Center integration -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: added no-CI tag for automated commits -> Author: anion0278 -- fix: exceptions thrown when editing Pack Quantity, WarhouseProdCode or AmazonProdName in WPF for any entities except for Products -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: updated readme [skip ci] -> Author: anion0278 -- chores: improved ci/cd [skip ci] -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- chroes: added changelog formatting settings -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- Merge branch 'dev' -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -:- no changesTotal of 16 new changes since v3.1.0.4: -## ๐Ÿš€ Features - -- feature: Invoice item groupping, better data visualization -> Author: anion0278 -- feature: post-export open folder setting attempts to reuse already opened folder if possible -> Author: anion0278 -- feature: invoice number column now works as link to seller central -> Author: anion0278 - -## ๐Ÿ› ๏ธ Minor Changes - -- change: item price aggregation using operator -> Author: anion0278 -- change: tax price calculation invariant support -> Author: anion0278 -- change: better error notification for grids, disabled virtualization -> Author: anion0278 -- change: added validation rule for Invoice item, added country exception for moss codes -> Author: anion0278 -- change: added validation rule for Invoice VM -> Author: anion0278 -- change: Fody for VMs -> Author: anion0278 -- change: improved UI, unblocking datagrid allows to edit even if there are invalid cells -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: colon position [skip ci] -> Author: anion0278 -- fix: total invoice price calculation, invariants fullfilling, refactoring -> Author: anion0278 -- fix: invocie item validation rule -> Author: anion0278 -- fix: changelog formatting -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report [skip ci] -> Author: AutomatedRelease -- chore: Automated report [skip ci] -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- tests: changed invoice converter tests -> Author: anion0278 -- tests: added design-time data for main VM; Fody prop change for manual change VM -> Author: anion0278 -- adapted CI CD for publishing [skip ci] -> Author: anion0278 - - -- no changesTotal of 5 new changes since v3.0.2.3 - -## ๐Ÿš€ Features - -- feature: WPF binding exceptions are now handled explicitly -> Author: anion0278 -- feature: App Center integration -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: added no-CI tag for automated commits -> Author: anion0278 -- fix: exceptions thrown when editing Pack Quantity, WarhouseProdCode or AmazonProdName in WPF for any entities except for Products -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: updated readme [skip ci] -> Author: anion0278 -- chores: improved ci/cd [skip ci] -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- chroes: added changelog formatting settings -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- Merge branch 'dev' -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -:- no changesTotal of 14 new changes since v3.1.0.4 -: -## ๐Ÿš€ Features - -- feature: Invoice item groupping, better data visualization -> Author: anion0278 -- feature: post-export open folder setting attempts to reuse already opened folder if possible -> Author: anion0278 -- feature: invoice number column now works as link to seller central -> Author: anion0278 - -## ๐Ÿ› ๏ธ Minor Changes - -- change: item price aggregation using operator -> Author: anion0278 -- change: tax price calculation invariant support -> Author: anion0278 -- change: better error notification for grids, disabled virtualization -> Author: anion0278 -- change: added validation rule for Invoice item, added country exception for moss codes -> Author: anion0278 -- change: added validation rule for Invoice VM -> Author: anion0278 -- change: Fody for VMs -> Author: anion0278 -- change: improved UI, unblocking datagrid allows to edit even if there are invalid cells -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: colon position [skip ci] -> Author: anion0278 -- fix: total invoice price calculation, invariants fullfilling, refactoring -> Author: anion0278 -- fix: invocie item validation rule -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report [skip ci] -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- tests: changed invoice converter tests -> Author: anion0278 -- tests: added design-time data for main VM; Fody prop change for manual change VM -> Author: anion0278 - - -- no changesTotal of 5 new changes since v3.0.2.3 - -## ๐Ÿš€ Features - -- feature: WPF binding exceptions are now handled explicitly -> Author: anion0278 -- feature: App Center integration -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: added no-CI tag for automated commits -> Author: anion0278 -- fix: exceptions thrown when editing Pack Quantity, WarhouseProdCode or AmazonProdName in WPF for any entities except for Products -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: updated readme [skip ci] -> Author: anion0278 -- chores: improved ci/cd [skip ci] -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- chroes: added changelog formatting settings -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- Merge branch 'dev' -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -:- no changesTotal of 20 new changes since v3.1.0.4: -## ๐Ÿš€ Features - -- feature: Invoice item groupping, better data visualization -> Author: anion0278 -- feature: post-export open folder setting attempts to reuse already opened folder if possible -> Author: anion0278 -- feature: invoice number column now works as link to seller central -> Author: anion0278 - -## ๐Ÿ› ๏ธ Minor Changes - -- change: item price aggregation using operator -> Author: anion0278 -- change: tax price calculation invariant support -> Author: anion0278 -- change: better error notification for grids, disabled virtualization -> Author: anion0278 -- change: added validation rule for Invoice item, added country exception for moss codes -> Author: anion0278 -- change: added validation rule for Invoice VM -> Author: anion0278 -- change: Fody for VMs -> Author: anion0278 -- change: improved UI, unblocking datagrid allows to edit even if there are invalid cells -> Author: anion0278 -- change: improved project definitions -> Author: anion0278 -- change: all libs are included into single file app [skip ci] -> Author: anion0278 -- change: updated invoice and transactions configurations -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: colon position [skip ci] -> Author: anion0278 -- fix: total invoice price calculation, invariants fullfilling, refactoring -> Author: anion0278 -- fix: invocie item validation rule -> Author: anion0278 -- fix: changelog formatting -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report [skip ci] -> Author: AutomatedRelease -- chore: Automated report [skip ci] -> Author: AutomatedRelease -- chore: Automated report [skip ci] -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: the last manual update of releases list -> Author: anion0278 -- tests: changed invoice converter tests -> Author: anion0278 -- tests: added design-time data for main VM; Fody prop change for manual change VM -> Author: anion0278 -- Merge branch 'master' into dev -> Author: anion0278 -- adapted CI CD for publishing [skip ci] -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 -- chores: merge -> Author: anion0278 - - -- no changesTotal of 5 new changes since v3.0.2.3 - -## ๐Ÿš€ Features - -- feature: WPF binding exceptions are now handled explicitly -> Author: anion0278 -- feature: App Center integration -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: added no-CI tag for automated commits -> Author: anion0278 -- fix: exceptions thrown when editing Pack Quantity, WarhouseProdCode or AmazonProdName in WPF for any entities except for Products -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: updated readme [skip ci] -> Author: anion0278 -- chores: improved ci/cd [skip ci] -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- chroes: added changelog formatting settings -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- Merge branch 'dev' -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -:- no changesTotal of 14 new changes since v3.1.0.4 -: -## ๐Ÿš€ Features - -- feature: Invoice item groupping, better data visualization -> Author: anion0278 -- feature: post-export open folder setting attempts to reuse already opened folder if possible -> Author: anion0278 -- feature: invoice number column now works as link to seller central -> Author: anion0278 - -## ๐Ÿ› ๏ธ Minor Changes - -- change: item price aggregation using operator -> Author: anion0278 -- change: tax price calculation invariant support -> Author: anion0278 -- change: better error notification for grids, disabled virtualization -> Author: anion0278 -- change: added validation rule for Invoice item, added country exception for moss codes -> Author: anion0278 -- change: added validation rule for Invoice VM -> Author: anion0278 -- change: Fody for VMs -> Author: anion0278 -- change: improved UI, unblocking datagrid allows to edit even if there are invalid cells -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: colon position [skip ci] -> Author: anion0278 -- fix: total invoice price calculation, invariants fullfilling, refactoring -> Author: anion0278 -- fix: invocie item validation rule -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report [skip ci] -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- tests: changed invoice converter tests -> Author: anion0278 -- tests: added design-time data for main VM; Fody prop change for manual change VM -> Author: anion0278 - - -- no changesTotal of 5 new changes since v3.0.2.3 - -## ๐Ÿš€ Features - -- feature: WPF binding exceptions are now handled explicitly -> Author: anion0278 -- feature: App Center integration -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: added no-CI tag for automated commits -> Author: anion0278 -- fix: exceptions thrown when editing Pack Quantity, WarhouseProdCode or AmazonProdName in WPF for any entities except for Products -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: updated readme [skip ci] -> Author: anion0278 -- chores: improved ci/cd [skip ci] -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- chroes: added changelog formatting settings -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- Merge branch 'dev' -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -:- no changesTotal of 16 new changes since v3.1.0.4: -## ๐Ÿš€ Features - -- feature: Invoice item groupping, better data visualization -> Author: anion0278 -- feature: post-export open folder setting attempts to reuse already opened folder if possible -> Author: anion0278 -- feature: invoice number column now works as link to seller central -> Author: anion0278 - -## ๐Ÿ› ๏ธ Minor Changes - -- change: item price aggregation using operator -> Author: anion0278 -- change: tax price calculation invariant support -> Author: anion0278 -- change: better error notification for grids, disabled virtualization -> Author: anion0278 -- change: added validation rule for Invoice item, added country exception for moss codes -> Author: anion0278 -- change: added validation rule for Invoice VM -> Author: anion0278 -- change: Fody for VMs -> Author: anion0278 -- change: improved UI, unblocking datagrid allows to edit even if there are invalid cells -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: colon position [skip ci] -> Author: anion0278 -- fix: total invoice price calculation, invariants fullfilling, refactoring -> Author: anion0278 -- fix: invocie item validation rule -> Author: anion0278 -- fix: changelog formatting -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report [skip ci] -> Author: AutomatedRelease -- chore: Automated report [skip ci] -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- tests: changed invoice converter tests -> Author: anion0278 -- tests: added design-time data for main VM; Fody prop change for manual change VM -> Author: anion0278 -- adapted CI CD for publishing [skip ci] -> Author: anion0278 - - -- no changesTotal of 5 new changes since v3.0.2.3 - -## ๐Ÿš€ Features - -- feature: WPF binding exceptions are now handled explicitly -> Author: anion0278 -- feature: App Center integration -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: added no-CI tag for automated commits -> Author: anion0278 -- fix: exceptions thrown when editing Pack Quantity, WarhouseProdCode or AmazonProdName in WPF for any entities except for Products -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: updated readme [skip ci] -> Author: anion0278 -- chores: improved ci/cd [skip ci] -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- chroes: added changelog formatting settings -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- Merge branch 'dev' -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -:- no changesTotal of 14 new changes since v3.1.0.4 -: -## ๐Ÿš€ Features - -- feature: Invoice item groupping, better data visualization -> Author: anion0278 -- feature: post-export open folder setting attempts to reuse already opened folder if possible -> Author: anion0278 -- feature: invoice number column now works as link to seller central -> Author: anion0278 - -## ๐Ÿ› ๏ธ Minor Changes - -- change: item price aggregation using operator -> Author: anion0278 -- change: tax price calculation invariant support -> Author: anion0278 -- change: better error notification for grids, disabled virtualization -> Author: anion0278 -- change: added validation rule for Invoice item, added country exception for moss codes -> Author: anion0278 -- change: added validation rule for Invoice VM -> Author: anion0278 -- change: Fody for VMs -> Author: anion0278 -- change: improved UI, unblocking datagrid allows to edit even if there are invalid cells -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: colon position [skip ci] -> Author: anion0278 -- fix: total invoice price calculation, invariants fullfilling, refactoring -> Author: anion0278 -- fix: invocie item validation rule -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report [skip ci] -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- tests: changed invoice converter tests -> Author: anion0278 -- tests: added design-time data for main VM; Fody prop change for manual change VM -> Author: anion0278 - - -- no changesTotal of 5 new changes since v3.0.2.3 - -## ๐Ÿš€ Features - -- feature: WPF binding exceptions are now handled explicitly -> Author: anion0278 -- feature: App Center integration -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: added no-CI tag for automated commits -> Author: anion0278 -- fix: exceptions thrown when editing Pack Quantity, WarhouseProdCode or AmazonProdName in WPF for any entities except for Products -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: updated readme [skip ci] -> Author: anion0278 -- chores: improved ci/cd [skip ci] -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- chroes: added changelog formatting settings -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- Merge branch 'dev' -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -:- no changesTotal of 2 new changes since v3.2.0.7: -## ๐Ÿ› Fixes - -- fix: hotfix - disabled App center -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report [skip ci] -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -- no changesTotal of 5 new changes since v3.0.2.3 - -## ๐Ÿš€ Features - -- feature: WPF binding exceptions are now handled explicitly -> Author: anion0278 -- feature: App Center integration -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: added no-CI tag for automated commits -> Author: anion0278 -- fix: exceptions thrown when editing Pack Quantity, WarhouseProdCode or AmazonProdName in WPF for any entities except for Products -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: updated readme [skip ci] -> Author: anion0278 -- chores: improved ci/cd [skip ci] -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- chroes: added changelog formatting settings -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- Merge branch 'dev' -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -:- no changesTotal of 14 new changes since v3.1.0.4 -: -## ๐Ÿš€ Features - -- feature: Invoice item groupping, better data visualization -> Author: anion0278 -- feature: post-export open folder setting attempts to reuse already opened folder if possible -> Author: anion0278 -- feature: invoice number column now works as link to seller central -> Author: anion0278 - -## ๐Ÿ› ๏ธ Minor Changes - -- change: item price aggregation using operator -> Author: anion0278 -- change: tax price calculation invariant support -> Author: anion0278 -- change: better error notification for grids, disabled virtualization -> Author: anion0278 -- change: added validation rule for Invoice item, added country exception for moss codes -> Author: anion0278 -- change: added validation rule for Invoice VM -> Author: anion0278 -- change: Fody for VMs -> Author: anion0278 -- change: improved UI, unblocking datagrid allows to edit even if there are invalid cells -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: colon position [skip ci] -> Author: anion0278 -- fix: total invoice price calculation, invariants fullfilling, refactoring -> Author: anion0278 -- fix: invocie item validation rule -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report [skip ci] -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- tests: changed invoice converter tests -> Author: anion0278 -- tests: added design-time data for main VM; Fody prop change for manual change VM -> Author: anion0278 - - -- no changesTotal of 5 new changes since v3.0.2.3 - -## ๐Ÿš€ Features - -- feature: WPF binding exceptions are now handled explicitly -> Author: anion0278 -- feature: App Center integration -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: added no-CI tag for automated commits -> Author: anion0278 -- fix: exceptions thrown when editing Pack Quantity, WarhouseProdCode or AmazonProdName in WPF for any entities except for Products -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: updated readme [skip ci] -> Author: anion0278 -- chores: improved ci/cd [skip ci] -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- chroes: added changelog formatting settings -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- Merge branch 'dev' -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -:- no changesTotal of 16 new changes since v3.1.0.4: -## ๐Ÿš€ Features - -- feature: Invoice item groupping, better data visualization -> Author: anion0278 -- feature: post-export open folder setting attempts to reuse already opened folder if possible -> Author: anion0278 -- feature: invoice number column now works as link to seller central -> Author: anion0278 - -## ๐Ÿ› ๏ธ Minor Changes - -- change: item price aggregation using operator -> Author: anion0278 -- change: tax price calculation invariant support -> Author: anion0278 -- change: better error notification for grids, disabled virtualization -> Author: anion0278 -- change: added validation rule for Invoice item, added country exception for moss codes -> Author: anion0278 -- change: added validation rule for Invoice VM -> Author: anion0278 -- change: Fody for VMs -> Author: anion0278 -- change: improved UI, unblocking datagrid allows to edit even if there are invalid cells -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: colon position [skip ci] -> Author: anion0278 -- fix: total invoice price calculation, invariants fullfilling, refactoring -> Author: anion0278 -- fix: invocie item validation rule -> Author: anion0278 -- fix: changelog formatting -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report [skip ci] -> Author: AutomatedRelease -- chore: Automated report [skip ci] -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- tests: changed invoice converter tests -> Author: anion0278 -- tests: added design-time data for main VM; Fody prop change for manual change VM -> Author: anion0278 -- adapted CI CD for publishing [skip ci] -> Author: anion0278 - - -- no changesTotal of 5 new changes since v3.0.2.3 - -## ๐Ÿš€ Features - -- feature: WPF binding exceptions are now handled explicitly -> Author: anion0278 -- feature: App Center integration -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: added no-CI tag for automated commits -> Author: anion0278 -- fix: exceptions thrown when editing Pack Quantity, WarhouseProdCode or AmazonProdName in WPF for any entities except for Products -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: updated readme [skip ci] -> Author: anion0278 -- chores: improved ci/cd [skip ci] -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- chroes: added changelog formatting settings -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- Merge branch 'dev' -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -:- no changesTotal of 14 new changes since v3.1.0.4 -: -## ๐Ÿš€ Features - -- feature: Invoice item groupping, better data visualization -> Author: anion0278 -- feature: post-export open folder setting attempts to reuse already opened folder if possible -> Author: anion0278 -- feature: invoice number column now works as link to seller central -> Author: anion0278 - -## ๐Ÿ› ๏ธ Minor Changes - -- change: item price aggregation using operator -> Author: anion0278 -- change: tax price calculation invariant support -> Author: anion0278 -- change: better error notification for grids, disabled virtualization -> Author: anion0278 -- change: added validation rule for Invoice item, added country exception for moss codes -> Author: anion0278 -- change: added validation rule for Invoice VM -> Author: anion0278 -- change: Fody for VMs -> Author: anion0278 -- change: improved UI, unblocking datagrid allows to edit even if there are invalid cells -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: colon position [skip ci] -> Author: anion0278 -- fix: total invoice price calculation, invariants fullfilling, refactoring -> Author: anion0278 -- fix: invocie item validation rule -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report [skip ci] -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- tests: changed invoice converter tests -> Author: anion0278 -- tests: added design-time data for main VM; Fody prop change for manual change VM -> Author: anion0278 - - -- no changesTotal of 5 new changes since v3.0.2.3 - -## ๐Ÿš€ Features - -- feature: WPF binding exceptions are now handled explicitly -> Author: anion0278 -- feature: App Center integration -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: added no-CI tag for automated commits -> Author: anion0278 -- fix: exceptions thrown when editing Pack Quantity, WarhouseProdCode or AmazonProdName in WPF for any entities except for Products -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: updated readme [skip ci] -> Author: anion0278 -- chores: improved ci/cd [skip ci] -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- chroes: added changelog formatting settings -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- Merge branch 'dev' -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -:- no changesTotal of 20 new changes since v3.1.0.4: -## ๐Ÿš€ Features - -- feature: Invoice item groupping, better data visualization -> Author: anion0278 -- feature: post-export open folder setting attempts to reuse already opened folder if possible -> Author: anion0278 -- feature: invoice number column now works as link to seller central -> Author: anion0278 - -## ๐Ÿ› ๏ธ Minor Changes - -- change: item price aggregation using operator -> Author: anion0278 -- change: tax price calculation invariant support -> Author: anion0278 -- change: better error notification for grids, disabled virtualization -> Author: anion0278 -- change: added validation rule for Invoice item, added country exception for moss codes -> Author: anion0278 -- change: added validation rule for Invoice VM -> Author: anion0278 -- change: Fody for VMs -> Author: anion0278 -- change: improved UI, unblocking datagrid allows to edit even if there are invalid cells -> Author: anion0278 -- change: improved project definitions -> Author: anion0278 -- change: all libs are included into single file app [skip ci] -> Author: anion0278 -- change: updated invoice and transactions configurations -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: colon position [skip ci] -> Author: anion0278 -- fix: total invoice price calculation, invariants fullfilling, refactoring -> Author: anion0278 -- fix: invocie item validation rule -> Author: anion0278 -- fix: changelog formatting -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report [skip ci] -> Author: AutomatedRelease -- chore: Automated report [skip ci] -> Author: AutomatedRelease -- chore: Automated report [skip ci] -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: the last manual update of releases list -> Author: anion0278 -- tests: changed invoice converter tests -> Author: anion0278 -- tests: added design-time data for main VM; Fody prop change for manual change VM -> Author: anion0278 -- Merge branch 'master' into dev -> Author: anion0278 -- adapted CI CD for publishing [skip ci] -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 -- chores: merge -> Author: anion0278 - - -- no changesTotal of 5 new changes since v3.0.2.3 - -## ๐Ÿš€ Features - -- feature: WPF binding exceptions are now handled explicitly -> Author: anion0278 -- feature: App Center integration -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: added no-CI tag for automated commits -> Author: anion0278 -- fix: exceptions thrown when editing Pack Quantity, WarhouseProdCode or AmazonProdName in WPF for any entities except for Products -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: updated readme [skip ci] -> Author: anion0278 -- chores: improved ci/cd [skip ci] -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- chroes: added changelog formatting settings -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- Merge branch 'dev' -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -:- no changesTotal of 14 new changes since v3.1.0.4 -: -## ๐Ÿš€ Features - -- feature: Invoice item groupping, better data visualization -> Author: anion0278 -- feature: post-export open folder setting attempts to reuse already opened folder if possible -> Author: anion0278 -- feature: invoice number column now works as link to seller central -> Author: anion0278 - -## ๐Ÿ› ๏ธ Minor Changes - -- change: item price aggregation using operator -> Author: anion0278 -- change: tax price calculation invariant support -> Author: anion0278 -- change: better error notification for grids, disabled virtualization -> Author: anion0278 -- change: added validation rule for Invoice item, added country exception for moss codes -> Author: anion0278 -- change: added validation rule for Invoice VM -> Author: anion0278 -- change: Fody for VMs -> Author: anion0278 -- change: improved UI, unblocking datagrid allows to edit even if there are invalid cells -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: colon position [skip ci] -> Author: anion0278 -- fix: total invoice price calculation, invariants fullfilling, refactoring -> Author: anion0278 -- fix: invocie item validation rule -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report [skip ci] -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- tests: changed invoice converter tests -> Author: anion0278 -- tests: added design-time data for main VM; Fody prop change for manual change VM -> Author: anion0278 - - -- no changesTotal of 5 new changes since v3.0.2.3 - -## ๐Ÿš€ Features - -- feature: WPF binding exceptions are now handled explicitly -> Author: anion0278 -- feature: App Center integration -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: added no-CI tag for automated commits -> Author: anion0278 -- fix: exceptions thrown when editing Pack Quantity, WarhouseProdCode or AmazonProdName in WPF for any entities except for Products -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: updated readme [skip ci] -> Author: anion0278 -- chores: improved ci/cd [skip ci] -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- chroes: added changelog formatting settings -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- Merge branch 'dev' -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -:- no changesTotal of 16 new changes since v3.1.0.4: +\nNew release on ${{MERGED_AT}} +Total of 15 new changes since v3.2.1.8: ## ๐Ÿš€ Features -- feature: Invoice item groupping, better data visualization -> Author: anion0278 -- feature: post-export open folder setting attempts to reuse already opened folder if possible -> Author: anion0278 -- feature: invoice number column now works as link to seller central -> Author: anion0278 +- feature: predefined shipping types for countries, disabled product name change in UI, fixed tests -> Author: anion0278 ## ๐Ÿ› ๏ธ Minor Changes -- change: item price aggregation using operator -> Author: anion0278 -- change: tax price calculation invariant support -> Author: anion0278 -- change: better error notification for grids, disabled virtualization -> Author: anion0278 -- change: added validation rule for Invoice item, added country exception for moss codes -> Author: anion0278 -- change: added validation rule for Invoice VM -> Author: anion0278 -- change: Fody for VMs -> Author: anion0278 -- change: improved UI, unblocking datagrid allows to edit even if there are invalid cells -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: colon position [skip ci] -> Author: anion0278 -- fix: total invoice price calculation, invariants fullfilling, refactoring -> Author: anion0278 -- fix: invocie item validation rule -> Author: anion0278 -- fix: changelog formatting -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report [skip ci] -> Author: AutomatedRelease -- chore: Automated report [skip ci] -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- tests: changed invoice converter tests -> Author: anion0278 -- tests: added design-time data for main VM; Fody prop change for manual change VM -> Author: anion0278 -- adapted CI CD for publishing [skip ci] -> Author: anion0278 - - -- no changesTotal of 5 new changes since v3.0.2.3 - -## ๐Ÿš€ Features - -- feature: WPF binding exceptions are now handled explicitly -> Author: anion0278 -- feature: App Center integration -> Author: anion0278 +- change: customs declaration is remembered only if Invoice has a single item, added validation rule for its length -> Author: anion0278 ## ๐Ÿ› Fixes -- fix: added no-CI tag for automated commits -> Author: anion0278 -- fix: exceptions thrown when editing Pack Quantity, WarhouseProdCode or AmazonProdName in WPF for any entities except for Products -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: updated readme [skip ci] -> Author: anion0278 -- chores: improved ci/cd [skip ci] -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- chroes: added changelog formatting settings -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- Merge branch 'dev' -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -:- no changesTotal of 14 new changes since v3.1.0.4 -: -## ๐Ÿš€ Features - -- feature: Invoice item groupping, better data visualization -> Author: anion0278 -- feature: post-export open folder setting attempts to reuse already opened folder if possible -> Author: anion0278 -- feature: invoice number column now works as link to seller central -> Author: anion0278 - -## ๐Ÿ› ๏ธ Minor Changes - -- change: item price aggregation using operator -> Author: anion0278 -- change: tax price calculation invariant support -> Author: anion0278 -- change: better error notification for grids, disabled virtualization -> Author: anion0278 -- change: added validation rule for Invoice item, added country exception for moss codes -> Author: anion0278 -- change: added validation rule for Invoice VM -> Author: anion0278 -- change: Fody for VMs -> Author: anion0278 -- change: improved UI, unblocking datagrid allows to edit even if there are invalid cells -> Author: anion0278 +- fix: invalid amazon URL central due to case sensitivity -> Author: anion0278 +- fix: always instantiating keyborad helper -> Author: anion0278 +- fix: exception on empty Gift Wrap Tax value, changed UI -> Author: anion0278 +- fix: item price calculation for EU countries -> Author: anion0278 +- fix: missing class - naming -> Author: anion0278 +- fix: changelog prepending [skip ci] -> Author: anion0278 +- fix: max changelog length fix [skip ci] -> Author: anion0278 +- fix: change log appending -> Author: anion0278 -## ๐Ÿ› Fixes +## ๐Ÿ“„ Documentation -- fix: colon position [skip ci] -> Author: anion0278 -- fix: total invoice price calculation, invariants fullfilling, refactoring -> Author: anion0278 -- fix: invocie item validation rule -> Author: anion0278 +- doc: improved changelog formatting [skip ci] -> Author: anion0278 +- doc: cleaned changelog [skip ci] -> Author: anion0278 +- doc: improved changelog template [skip ci] -> Author: anion0278 ## ๐Ÿงฐ Chores - chore: Automated report [skip ci] -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- tests: changed invoice converter tests -> Author: anion0278 -- tests: added design-time data for main VM; Fody prop change for manual change VM -> Author: anion0278 - - -- no changesTotal of 5 new changes since v3.0.2.3 - -## ๐Ÿš€ Features - -- feature: WPF binding exceptions are now handled explicitly -> Author: anion0278 -- feature: App Center integration -> Author: anion0278 - -## ๐Ÿ› Fixes - -- fix: added no-CI tag for automated commits -> Author: anion0278 -- fix: exceptions thrown when editing Pack Quantity, WarhouseProdCode or AmazonProdName in WPF for any entities except for Products -> Author: anion0278 - -## ๐Ÿงฐ Chores - -- chore: Automated report -> Author: AutomatedRelease - -## ๐Ÿ“ฆ Uncategorized - -- chores: updated readme [skip ci] -> Author: anion0278 -- chores: improved ci/cd [skip ci] -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- chroes: added changelog formatting settings -> Author: anion0278 -- Update ci_cd.yml -> Author: anion0278 -- Merge branch 'dev' -> Author: anion0278 -- Merge branch 'master' of https://github.com/anion0278/mapp -> Author: anion0278 - - -:- no changes \ No newline at end of file +- chore: Automated report [skip ci] -> Author: AutomatedRelease \ No newline at end of file diff --git a/Mapp.UI/Properties/SharedAssemblyInfo.cs b/Mapp.UI/Properties/SharedAssemblyInfo.cs index 8724453..28c01e1 100644 --- a/Mapp.UI/Properties/SharedAssemblyInfo.cs +++ b/Mapp.UI/Properties/SharedAssemblyInfo.cs @@ -22,5 +22,5 @@ // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("2767955e-07e8-410d-83d2-8a27cf1d63d9")] -[assembly: AssemblyVersion("3.2.1.8")] -[assembly: AssemblyFileVersion("3.2.1.8")] +[assembly: AssemblyVersion("3.2.2.13")] +[assembly: AssemblyFileVersion("3.2.2.13")]