Skip to content

Commit

Permalink
Update to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodeflayer committed Aug 12, 2020
1 parent 5c8fa97 commit d741cc5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,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.1](https://github.com/thecodeflayer/alttp-tracker/releases/tag/1.1.1)
Current release is [1.2.0](https://github.com/thecodeflayer/alttp-tracker/releases/tag/1.2.0)
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.
Expand Down
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="10022"
android:versionName="1.1.1">
android:versionCode="10023"
android:versionName="1.2.0">

<supports-screens
android:smallScreens="true"
Expand Down
3 changes: 1 addition & 2 deletions app/utils/ModelManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import {IDefaultMapData} from '@/default-objects/DefaultMap';
import {DefaultGameSaves, DefaultGameSavesData, GameVersions, Game} from '@/default-objects/DefaultGameSaves';
import {RetroDefaultMap, RetroMapData} from '@/default-objects/RetroDefaultMap';
import {DefaultEntranceData, DefaultEntrances} from '@/default-objects/DefaultEntrances';
import {EntranceHelper} from '@/utils/EntranceHelper';

export class ModelManager {
items: DefaultItemsData;
Expand All @@ -27,7 +26,7 @@ export class ModelManager {
editGame: GameEditObj;
entrances: DefaultEntranceData;

appVersion = '1.1.1';
appVersion = '1.2.0';
itemsVersion = '0.0.1';
dungeonsVersion = '0.0.2';
mapVersion = '0.0.1';
Expand Down

0 comments on commit d741cc5

Please sign in to comment.