added icons for ios
This commit is contained in:
parent
fd3237fff1
commit
fd2e8e52e8
10 changed files with 468 additions and 92 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -34,6 +34,4 @@ UserInterfaceState.xcuserstate
|
||||||
# other bits
|
# other bits
|
||||||
pnut-oauth.ts
|
pnut-oauth.ts
|
||||||
src/pages/login/pnutauth.ts
|
src/pages/login/pnutauth.ts
|
||||||
platforms/android/.gradle/
|
platforms/
|
||||||
platforms/android/CordovaLib/build/
|
|
||||||
platforms/android/app/build/
|
|
||||||
|
|
|
@ -4,6 +4,9 @@ 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]
|
||||||
|
### Added
|
||||||
|
- iOS icons
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Paste from clipboard into login fields
|
- Paste from clipboard into login fields
|
||||||
|
|
||||||
|
|
536
package-lock.json
generated
536
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -31,6 +31,7 @@
|
||||||
"@ionic/storage": "2.1.3",
|
"@ionic/storage": "2.1.3",
|
||||||
"com-darryncampbell-cordova-plugin-intent": "^1.1.1",
|
"com-darryncampbell-cordova-plugin-intent": "^1.1.1",
|
||||||
"cordova-android-support-gradle-release": "^1.4.7",
|
"cordova-android-support-gradle-release": "^1.4.7",
|
||||||
|
"cordova-browser": "6.0.0",
|
||||||
"cordova-plugin-device": "^2.0.2",
|
"cordova-plugin-device": "^2.0.2",
|
||||||
"cordova-plugin-file": "^6.0.1",
|
"cordova-plugin-file": "^6.0.1",
|
||||||
"cordova-plugin-file-transfer": "^1.7.1",
|
"cordova-plugin-file-transfer": "^1.7.1",
|
||||||
|
@ -76,6 +77,8 @@
|
||||||
"cordova-plugin-filepath": {},
|
"cordova-plugin-filepath": {},
|
||||||
"cordova-sqlite-storage": {}
|
"cordova-sqlite-storage": {}
|
||||||
},
|
},
|
||||||
"platforms": []
|
"platforms": [
|
||||||
|
"browser"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
BIN
resources/icon-ipad-retina.png
Normal file
BIN
resources/icon-ipad-retina.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
BIN
resources/icon-ipad.png
Normal file
BIN
resources/icon-ipad.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
BIN
resources/icon-iphone-retina.png
Normal file
BIN
resources/icon-iphone-retina.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
BIN
resources/icon-iphone.png
Normal file
BIN
resources/icon-iphone.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
|
@ -8,6 +8,12 @@
|
||||||
<meta name="msapplication-tap-highlight" content="no">
|
<meta name="msapplication-tap-highlight" content="no">
|
||||||
|
|
||||||
<link rel="icon" type="image/x-icon" href="assets/icon/favicon.ico">
|
<link rel="icon" type="image/x-icon" href="assets/icon/favicon.ico">
|
||||||
|
|
||||||
|
<link rel="apple-touch-icon" href="assets/icon/icon-iphone.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="152x152" href="assets/icon/icon-ipad.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="assets/icon/icon-iphone-retina.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="167x167" href="assets/icon/icon-ipad-retina.png">
|
||||||
|
|
||||||
<link rel="manifest" href="manifest.json">
|
<link rel="manifest" href="manifest.json">
|
||||||
<meta name="theme-color" content="#4e8ef7">
|
<meta name="theme-color" content="#4e8ef7">
|
||||||
|
|
||||||
|
|
|
@ -21,9 +21,9 @@
|
||||||
</ion-card-content>
|
</ion-card-content>
|
||||||
<ion-row justify-content-end>
|
<ion-row justify-content-end>
|
||||||
<ion-col offset-0>
|
<ion-col offset-0>
|
||||||
<button ion-button (click)="attachImage()">
|
<!-- <button ion-button (click)="attachImage()">
|
||||||
<ion-icon name="attach"></ion-icon>
|
<ion-icon name="attach"></ion-icon>
|
||||||
</button>
|
</button> -->
|
||||||
</ion-col>
|
</ion-col>
|
||||||
<ion-col col-2><div text-center>{{textCount()}}</div></ion-col>
|
<ion-col col-2><div text-center>{{textCount()}}</div></ion-col>
|
||||||
<ion-col col-2>
|
<ion-col col-2>
|
||||||
|
|
Reference in a new issue