Skip to content

Commit

Permalink
Inital commit
Browse files Browse the repository at this point in the history
  • Loading branch information
FlixtorMe committed Aug 9, 2014
0 parents commit 5a89a8f
Show file tree
Hide file tree
Showing 61 changed files with 25,070 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# Deployed apps should consider commenting this line out:
# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git
node_modules
23 changes: 23 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
module.exports = function (grunt) {

grunt.initConfig({
nodewebkit: {
options: {
version: '0.9.2',
keep_nw: true,
embed_nw: false,
build_dir: './builds', // Where the build version of my node-webkit app is saved
zip: true,
mac: true,
win: true,
linux32: true,
linux64: true,
mac_icns: './images/flixtor-ico.icns'
},
src: ['./src/frames/**', './src/fonts/**', './src/images/**', './src/js/**', './src/locales/**', './src/node_modules/**', './src/styles/**', './src/package.json'] // Your node-webkit app
}
});

grunt.loadNpmTasks('grunt-node-webkit-builder');
grunt.registerTask('default', ['nodewebkit']);
}
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2014

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
Flixtor
=======

Flixtor streams movies, series, videos and animes from Torrents.
Based with the peerflix module and mixed with services. All of this packaged with node-webkit in order to deliver the ultimate windows, mac and linux app.

## Latest build
Flixtor 2.0.0

## Websites
[Flixtor](http://www.flixtor.me)

## Install
git clone https://github.com/FlixtorMe/FlixtorMe.git

### Node / NPM
Install nodejs on your computer http://nodejs.org/

### Dependencies
Run 'npm install' in command prompt on the folder you clone the project. This will create a node_modules folder containing all the dependencies you need to have if you want to run the application.

### Node-webkit
Download the latest version of Node-Webkit https://github.com/rogerwang/node-webkit
Extract & copy files inside your project folder.
Replace 'ffmpegsumo' of node-webkit by one inside the librairies folder of the project.
Click the nw.exe and Flixtor should start working.

## Donate
[Flixtor donate](http://www.flixtor.me/donate/)
Bitcoin: 1EgQ6uGZV2nHWa4BZwDDbEpEnfaEwtTvan

## Comments
Flixtor is a new application and is not a segment of Popcorn Time.


Loading

0 comments on commit 5a89a8f

Please sign in to comment.