Skip to content

Commit

Permalink
Prep for 1.1.1
Browse files Browse the repository at this point in the history
thecodeflayer committed Jul 28, 2020
1 parent 214478c commit ed8809d
Showing 4 changed files with 21 additions and 7 deletions.
20 changes: 17 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
# What's New in Version 1.1.0
# What's New in Version 1.1.1

### Location Item Requirements Modal
Required items for locations can now be shown by "long pressing" on the location.

- From the Maps, this works for locations, shops and dungeons.
- From the Location Lists this works by long pressing the location title.

### Enhancements and Bug Fixes

- Fixed issue with chest saves in Dungeons screen where chest counts set to zero would be reset to max value when reloading the save.
- Fixed issue with item counts in various item shuffle modes. Items should now add up correctly.
- Location list views now have a sleeker UI.

---

## What's New in Version 1.1.0

### Retro Game Mode
Retro mode harkens back to the original Legend of Zelda.
@@ -21,8 +37,6 @@ For the tracker the following features have been added:
- App now stays in Portrait mode (Landscape mode never worked correctly)
- Fixed a bug with maps where position, scale and view mode were not getting saved.

---

## What's New in Version 1.0.0

### Logic Fixes and Testing
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ First take a look at existing issues and make sure that it hasn't been filed bef
## Installation
In order to install on Android you will have to "side-load" the APK from Github. On most modern Android platforms you can follow these steps:
1. Navigate to the latest release page on the Android device you want to install the app on.
Current release is [1.1.0](https://github.com/thecodeflayer/alttp-tracker/releases/tag/1.1.0)
Current release is [1.1.1](https://github.com/thecodeflayer/alttp-tracker/releases/tag/1.1.1)
2. Under the Assets section, click on the APK file listed on the release page.
3. You will typically receive a warning about APK files harming your device. You will need to confirm download.
4. Once downloaded, click on the downloaded APK file.
4 changes: 2 additions & 2 deletions app/App_Resources/Android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="__PACKAGE__"
android:versionCode="10021"
android:versionName="1.1.0">
android:versionCode="10022"
android:versionName="1.1.1">

<supports-screens
android:smallScreens="true"
2 changes: 1 addition & 1 deletion app/utils/ModelManager.ts
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ export class ModelManager {
gameSaves: DefaultGameSavesData;
editGame: GameEditObj;

appVersion = '1.1.0';
appVersion = '1.1.1';
itemsVersion = '0.0.1';
dungeonsVersion = '0.0.2';
mapVersion = '0.0.1';

0 comments on commit ed8809d

Please sign in to comment.