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

Commit

Permalink
1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin Blackman committed Apr 7, 2016
1 parent 6bc97c4 commit f898941
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

<a name="1.3.3" />
### 1.3.3 (April 6th, 2016)

#### Notes
- Disabled LeagueOfGraphs

<a name="1.3.2" />
### 1.3.2 (April 6th, 2016)

Expand Down
10 changes: 8 additions & 2 deletions README.md
Expand Up @@ -15,7 +15,7 @@ _Champion-If-Ayyy_

Latest Release Downloads: [![Downloads](https://img.shields.io/github/downloads/dustinblackman/Championify/latest/total.svg)](https://github.com/dustinblackman/Championify/releases/latest)

Championify is a little program that downloads all the recent item sets from popular websites like Champion.gg, Lolflavor, KoreanBuilds, and LeagueOfGraphs, and imports them in to your League of Legends to use within game! No hassle. Championify supports 39 languages and with plenty of new features planned and in the works!
Championify is a little program that downloads all the recent item sets from popular websites like Champion.gg, Lolflavor, and KoreanBuilds, and imports them in to your League of Legends to use within game! No hassle. Championify supports 39 languages and with plenty of new features planned and in the works!

Windows and OSX are both supported, tested on Windows 10 and OSX 10.11.3.

Expand All @@ -27,7 +27,7 @@ Check out screenshots [here](https://imgur.com/a/vgS3I)!

## Features
- Summoners Rift and ARAM Item Sets
- 4 Sources (Champion.gg, LolFlavor, KoreanBuilds, and LeagueOfGraphs)
- 3 Sources (Champion.gg, LolFlavor, and KoreanBuilds)
- Skill Priorities lists (Q.W.E.Q.E.R) or Q>E>W
- 39 Languages
- Bunch of preferences to display item sets in the way you prefer
Expand All @@ -43,6 +43,12 @@ Found [here](https://github.com/dustinblackman/Championify/releases/latest)

## [Change Log](CHANGELOG.md)

<a name="1.3.3" />
### 1.3.3 (April 6th, 2016)

#### Notes
- Disabled LeagueOfGraphs

<a name="1.3.2" />
### 1.3.2 (April 6th, 2016)

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "Championify",
"version": "1.3.2",
"version": "1.3.3",
"description": "Downloads all the recent builds from websites like Champion.gg or Lolflavor and imports them in to League of Legends.",
"main": "electron.js",
"scripts": {
Expand Down
File renamed without changes.
8 changes: 1 addition & 7 deletions src/helpers/index.js
Expand Up @@ -11,7 +11,6 @@ import viewManager from '../view_manager';

const requester = Promise.promisify(require('request'));
const prebuilts = require('../../data/prebuilts.json');
const pkg = require('../../package.json');


/**
Expand All @@ -34,12 +33,7 @@ export function EndSession(c_error) {
*/

export function request(options) {
let params = {
headers: {
'User-Agent': `Championify/${pkg.version}`
},
timeout: 10000
};
let params = {timeout: 10000};

if (R.is(String, options)) {
params.url = options;
Expand Down
2 changes: 1 addition & 1 deletion src/preferences.js
Expand Up @@ -48,7 +48,7 @@ class Preferences {
const preference_file = this.file();
if (fs.existsSync(preference_file)) {
const prefs = JSON.parse(fs.readFileSync(preference_file));
if (!prefs.prefs_version || semver.lt(prefs.prefs_version, '1.3.0')) return null;
if (!prefs.prefs_version || semver.lt(prefs.prefs_version, '1.3.3')) return null;
return prefs;
}

Expand Down
2 changes: 1 addition & 1 deletion tests/preferences.js
Expand Up @@ -4,7 +4,7 @@ import path from 'path';
const preferences = require(`../${GLOBAL.src_path}/preferences`).default;

const should = require('chai').should();
const prefs_fixture = {dir: '/123', prefs_version: '1.3.1'};
const prefs_fixture = {dir: '/123', prefs_version: '1.3.3'};

describe('src/preferences', () => {
describe('directory', () => {
Expand Down

0 comments on commit f898941

Please sign in to comment.