updated changelog and version bump for testing
This commit is contained in:
parent
241cb26e14
commit
59d2e3ed43
5 changed files with 10 additions and 6 deletions
|
@ -4,8 +4,12 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
### Fixed
|
||||||
|
- Updated longpost URL (issue #92)
|
||||||
|
- Fixed broken image on oembed (issue #89)
|
||||||
|
- Fixed ERR_CLEARTEXT_NOT_PERMITTED with new min android target (issue #90)
|
||||||
|
|
||||||
## [0.7.0]
|
## [0.7.0] - 2018-11-21
|
||||||
### Fixed
|
### Fixed
|
||||||
- Sharing post preserves links
|
- Sharing post preserves links
|
||||||
- Native android build tree
|
- Native android build tree
|
||||||
|
@ -22,7 +26,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
|
||||||
- Icons added to main menu
|
- Icons added to main menu
|
||||||
- Updated to Android cordova 7.1.2
|
- Updated to Android cordova 7.1.2
|
||||||
|
|
||||||
## [0.6.3]
|
## [0.6.3] - 2018-09-03
|
||||||
### Added
|
### Added
|
||||||
- Open post in browser window
|
- Open post in browser window
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Goober, a mobile app for pnut.io
|
# Goober, a mobile app for pnut.io
|
||||||
|
|
||||||
Copyright 2017 - 2019 Morgan McMillian
|
Copyright 2017 - 2020 Morgan McMillian
|
||||||
|
|
||||||
Goober is a cross platform mobile client for pnut.io built using the Ionic framework (http://ionicframework.com/).
|
Goober is a cross platform mobile client for pnut.io built using the Ionic framework (http://ionicframework.com/).
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<widget id="com.monkeystew.goober_m" version="0.7.0" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
|
<widget id="com.monkeystew.goober_m" version="0.7.1" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
|
||||||
<name>Goober</name>
|
<name>Goober</name>
|
||||||
<description>Goober, a mobile app for pnut.io</description>
|
<description>Goober, a mobile app for pnut.io</description>
|
||||||
<author email="gilag@monkeystew.com" href="https://monkeystew.org">Morgan McMillian</author>
|
<author email="gilag@monkeystew.com" href="https://monkeystew.org">Morgan McMillian</author>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<widget id="com.monkeystew.goober_m" version="0.7.0" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
|
<widget id="com.monkeystew.goober_m" version="0.7.1" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
|
||||||
<name>Goober</name>
|
<name>Goober</name>
|
||||||
<description>Goober, a mobile app for pnut.io</description>
|
<description>Goober, a mobile app for pnut.io</description>
|
||||||
<author email="gilag@monkeystew.com" href="https://monkeystew.org">Morgan McMillian</author>
|
<author email="gilag@monkeystew.com" href="https://monkeystew.org">Morgan McMillian</author>
|
||||||
|
|
|
@ -14,7 +14,7 @@ import { NavController, NavParams } from 'ionic-angular';
|
||||||
})
|
})
|
||||||
export class AboutPage {
|
export class AboutPage {
|
||||||
|
|
||||||
private version: string = '0.7.0';
|
private version: string = '0.7.1';
|
||||||
|
|
||||||
constructor(public navCtrl: NavController, public navParams: NavParams) {
|
constructor(public navCtrl: NavController, public navParams: NavParams) {
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue