Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/platforms/tizen.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,3 +120,18 @@ _Before you run on a physical device, make sure you have enabled `Dev Mode` and
## App Config

[see: Web based config](../api/schemas/rnv.project.md)

---
## Known issues

#### Tizen 3.0 devices

Issue: The React Native component TouchableOpacity is non-functional on devices that are running Tizen TV version 3.0.

Details:

- The onPress event of TouchableOpacity does not respond when the button is pressed.
- The keydown event is not triggered upon pressing the button, while the keyup event operates as expected.

Recommendation: To achieve similar button functionality, it is necessary to create a custom button component specifically designed for Tizen TV devices.

2 changes: 1 addition & 1 deletion docs/templates/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sidebar_label: Templates

## @rnv/template-starter

Version: `1.4.0`
Version: `1.5.0`

<table>
<tr>
Expand Down
4 changes: 2 additions & 2 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ const config = {
},
{
position: 'left',
label: 'v1.4',
href: 'https://github.com/flexn-io/renative/releases/tag/1.4.0',
label: 'v1.5',
href: 'https://github.com/flexn-io/renative/releases/tag/1.5.0',
},
{
type: 'doc',
Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "renative-docs",
"version": "1.4.0",
"version": "1.5.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand Down Expand Up @@ -43,19 +43,19 @@
"@docusaurus/tsconfig": "^3.1.1",
"@docusaurus/types": "^3.1.1",
"@flexn/prettier-config": "^1.0.0",
"@rnv/core": "1.4.0",
"@rnv/engine-lightning": "1.4.0",
"@rnv/engine-rn": "1.4.0",
"@rnv/engine-rn-electron": "1.4.0",
"@rnv/engine-rn-macos": "1.4.0",
"@rnv/engine-rn-next": "1.4.0",
"@rnv/engine-rn-tvos": "1.4.0",
"@rnv/engine-rn-web": "1.4.0",
"@rnv/engine-rn-windows": "1.4.0",
"@rnv/renative": "1.4.0",
"@rnv/core": "1.5.0",
"@rnv/engine-lightning": "1.5.0",
"@rnv/engine-rn": "1.5.0",
"@rnv/engine-rn-electron": "1.5.0",
"@rnv/engine-rn-macos": "1.5.0",
"@rnv/engine-rn-next": "1.5.0",
"@rnv/engine-rn-tvos": "1.5.0",
"@rnv/engine-rn-web": "1.5.0",
"@rnv/engine-rn-windows": "1.5.0",
"@rnv/renative": "1.5.0",
"@types/mocha": "^10.0.6",
"docusaurus-plugin-typedoc": "^0.22.0",
"rnv": "1.4.0",
"rnv": "1.5.0",
"typedoc": "^0.25.8",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-zod": "1.1.2",
Expand Down
2 changes: 1 addition & 1 deletion src/components/HomepageFeatures.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const FeatureList = [
? What's your project Name? (folder will be created) hello-renative
? What workspace to use? rnv
? What template to use? @rnv/template-starter
? What @rnv/template-starter version to use? 1.4.0 (@latest)
? What @rnv/template-starter version to use? 1.5.0 (@latest)
? How to create config renative.json? Extend template (cleaner, overridable)
? What's your project Title? My Renative App
? What's your App ID? com.mycompany.hellorenative
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ function HomepageHeader() {
<div className="container">
<p className={clsx(styles.h2, styles.version_link)}>
Currently{' '}
<a className="link" href="https://github.com/flexn-io/renative/releases/tag/1.4.0" target="_blank">
v1.4
<a className="link" href="https://github.com/flexn-io/renative/releases/tag/1.5.0" target="_blank">
v1.5
<img className="link_img" src="/img/link.svg" />
</a>
</p>
Expand Down
Loading