Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: okhiroyuki/cordova-plugin-fire-tv
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.6
Choose a base ref
...
head repository: okhiroyuki/cordova-plugin-fire-tv
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Dec 26, 2020

  1. fix require error

    okhiroyuki committed Dec 26, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    0c3b072 View commit details
  2. bump version

    okhiroyuki committed Dec 26, 2020
    Copy the full SHA
    3f8a46f View commit details
Showing with 4 additions and 4 deletions.
  1. +1 −1 package.json
  2. +2 −2 patch.js
  3. +1 −1 plugin.xml
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-fire-tv",
"version": "1.0.6",
"version": "1.1.0",
"description": "Cordova plugin that augments your application's Manifest.xml with Fire TV bits and pieces.",
"cordova": {
"id": "cordova-plugin-fire-tv",
4 changes: 2 additions & 2 deletions patch.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env node

module.exports = function (context) {
var fs = context.requireCordovaModule('fs'),
path = context.requireCordovaModule('path'),
var fs = require('fs'),
path = require('path'),
platformRoot = path.join(context.opts.projectRoot, 'platforms/android'),
manifestFile = path.join(platformRoot, 'AndroidManifest.xml');

2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-fire-tv"
version="1.0.4">
version="1.1.0">

<name>FireTVPlugin</name>
<description>Cordova Fire TV Plugin</description>