Skip to content

Commit

Permalink
Merge pull request #7 from Elytherion/severe-bugs-1.0.1
Browse files Browse the repository at this point in the history
Severe bugs 1.0.1
  • Loading branch information
Lukas Obermann authored Apr 15, 2018
2 parents 9b013b0 + c1343a2 commit a74a323
Show file tree
Hide file tree
Showing 42 changed files with 185 additions and 1,435 deletions.
26 changes: 25 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
# 1.0.2

- Fixed issue with rendering list items of advantages/disadvantages/special abilities.
- Fixed shortcuts being global.
- Reloading a hero with `Stigma (Albino)` won't change selected eye color anymore.

## macOS

- App now quits automatically on close.

## English Specific

- Fixed list of professions.

## German Specific

- Fixed typo in failed check description of skill "Driving".
- Fixed attribute adjustment in attributes tab.
- Fixed levels of required instances of `Principles` and `Obligations` of `Blessed One of Kor`.

# 1.0.1

- Fixed special abilities tab.

# 1.0.0

### New Features / Breaking Changes
Expand Down Expand Up @@ -39,7 +63,7 @@
- The AP cost for profession variants are now considered when calculating AP spent.
- Activating spells is now disabled the limits of EL are reached.
- Fixed showing separators when sorting spells or liturgical chants by group.
- Fxied text fields in animal section of the character sheet breaking layout or showing up twice.
- Fixed text fields in animal section of the character sheet breaking layout or showing up twice.
- Fixed AP used for dis/advantages shown in window used for adding them. Remaining parts of the old AP system have been removed.
- Fixed saving heroes (previously saved heroes are not currupted).
- Fixed filters for list of races and list of professions.
Expand Down
2 changes: 1 addition & 1 deletion app/data.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/locales/de-DE.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "optolyth",
"productName": "Optolyth",
"version": "1.0.1",
"version": "1.0.2",
"description": "A generator for heroes for the P&P-RPG 'The Dark Eye'.",
"author": {
"name": "Lukas Obermann",
Expand All @@ -13,6 +13,7 @@
"dependencies": {
"@std/esm": "^0.9.2",
"classnames": "^2.2.5",
"electron-localshortcut": "^3.1.0",
"electron-log": "^2.2.12",
"electron-updater": "^2.17.3",
"electron-window-state": "^4.1.1",
Expand Down
8 changes: 7 additions & 1 deletion src/components/ActivatableRemoveListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,13 @@ export class ActivatableRemoveListItem extends React.Component<ActivatableRemove
removeFromList = (args: DeactivateArgs) => this.props.removeFromList(args);

shouldComponentUpdate(nextProps: ActivatableRemoveListItemProps) {
return this.props.item.tier !== nextProps.item.tier || this.props.item.cost !== nextProps.item.cost || this.props.isRemovingEnabled === !nextProps.isRemovingEnabled || this.props.item.minTier !== nextProps.item.minTier || this.props.item.maxTier !== nextProps.item.maxTier || this.props.item.disabled !== nextProps.item.disabled;
return this.props.item.tier !== nextProps.item.tier ||
this.props.item.cost !== nextProps.item.cost ||
this.props.isRemovingEnabled === !nextProps.isRemovingEnabled ||
this.props.item.minTier !== nextProps.item.minTier ||
this.props.item.maxTier !== nextProps.item.maxTier ||
this.props.item.name !== nextProps.item.name ||
this.props.item.disabled !== nextProps.item.disabled;
}

render() {
Expand Down
Binary file removed src/data/TDE.accdb
Binary file not shown.
Binary file removed src/data/TDE5 Tier-based separated entries.xlsx
Binary file not shown.
Binary file removed src/data/TDE5(864).xlsx
Binary file not shown.
Binary file removed src/data/TDE5(868).xlsx
Binary file not shown.
Binary file removed src/data/TDE5.xlsx
Binary file not shown.
Binary file removed src/data/TDE5_DICT_de_DE_en_US.xlsx
Binary file not shown.
Binary file removed src/data/TDE5_Etronas.xlsx
Binary file not shown.
Binary file removed src/data/TDE5_Onyxmoon.xlsx
Binary file not shown.
Binary file removed src/data/TDE5_de-DE.xlsx
Binary file not shown.
Binary file removed src/data/TDE5_de-DE_Darki.xlsx
Binary file not shown.
Binary file removed src/data/TDE5_de-DE_Onyxmoon.xlsx
Binary file not shown.
Binary file removed src/data/TDE5_de-DE_Oorz.xlsx
Binary file not shown.
Binary file removed src/data/TDE5_en-US(880).xlsx
Binary file not shown.
Binary file removed src/data/TDE5_en-US.xlsx
Binary file not shown.
Binary file removed src/data/TDE5_en-US_MadBeard_2017_05_10.xlsx
Binary file not shown.
Binary file removed src/data/TDE5_en-US_MadBeard_2017_05_11.xlsx
Binary file not shown.
Binary file removed src/data/TDE5_nl-BE.xlsx
Binary file not shown.
5 changes: 0 additions & 5 deletions src/data/buildAllLocales.mjs

This file was deleted.

Loading

0 comments on commit a74a323

Please sign in to comment.