Skip to content

Commit

Permalink
Release v1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vinnymac committed Jan 3, 2017
2 parents 87cd0d4 + 423365d commit 03c318d
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@

**PokéNurse** is a desktop application for Windows and Mac that allows you to manage your pokémon from Pokémon Go without the need for a mobile device. You can now favorite, transfer, and evolve from the comfort of your own home!

## Downloads for v1.7.2
## Downloads for v1.8.0
You may view all the releases [here](https://github.com/vinnymac/PokeNurse/releases)
* [macOS](https://github.com/vinnymac/PokeNurse/releases/download/v1.7.2/PokeNurse.dmg)
* [Windows](https://github.com/vinnymac/PokeNurse/releases/download/v1.7.2/PokeNurse.exe)
* [Linux 32 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.7.2/PokeNurse-ia32.deb)
* [Linux 64 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.7.2/PokeNurse-x64.deb)
* [macOS](https://github.com/vinnymac/PokeNurse/releases/download/v1.8.0/PokeNurse.dmg)
* [Windows](https://github.com/vinnymac/PokeNurse/releases/download/v1.8.0/PokeNurse.exe)
* [Linux 32 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.8.0/PokeNurse-ia32.deb)
* [Linux 64 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.8.0/PokeNurse-x64.deb)

## Examples
![Login Window](app/loginExample.png)
Expand Down
28 changes: 27 additions & 1 deletion app/app.global.css
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,26 @@
}

.search {
margin-right: .5em;
margin-right: 2.5em;
background-color:rgba(0, 0, 0, 0.5);
border-left: 1px solid #000;
border-radius: 4px;
}

.search .input-group {
display: flex;
}

.search .input-group-addon {
background-color: transparent;
border: 1px solid;
}

.search .input-group-addon, .input-group-btn {
margin: 0;
padding-left: .3em;
padding-right: .3em;
color: rgba(255, 255, 255, .5);
}

.search label {
Expand All @@ -150,6 +168,14 @@
color: rgba(255, 255, 255, .5);
}

.search label button {
background: transparent;
border: none;
font-size: 18px;
font-weight: 300;
line-height: 1;
}

.header {
background-image: url('./imgs/bg.jpg');
background-position: center top;
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "PokeNurse",
"productName": "PokeNurse",
"version": "1.7.2",
"version": "1.8.0",
"description": "A tool for Pokémon Go to aid in transferring and evolving Pokémon",
"main": "./main.js",
"author": {
Expand Down
21 changes: 21 additions & 0 deletions app/screens/Table/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ import React, {
import {
ipcRenderer
} from 'electron'
import {
InputGroup,
FormControl,
Button,
} from 'react-bootstrap'
import $ from 'jquery'
import { connect } from 'react-redux'
import { bindActionCreators } from 'redux'
Expand Down Expand Up @@ -130,13 +135,23 @@ const Table = React.createClass({
<label htmlFor="search">
<i className="fa fa-search" aria-hidden="true" />
</label>

<input
type="search"
id="search"
placeholder="Search…"
ref={(c) => { this.search = c }}
onChange={this.onFilterChange}
/>

<label htmlFor="search">
<button
alt="Clear search field"
onClick={this.handleClearSearch}
>
x
</button>
</label>
</div>

<div>
Expand Down Expand Up @@ -322,6 +337,12 @@ const Table = React.createClass({
handleAllComplete() {
running = false
},

handleClearSearch() {
this.search.value = ''
this.onFilterChange({ target: this.search })
this.search.focus()
}
})

export default connect((state => ({
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "PokeNurse",
"version": "1.7.2",
"version": "1.8.0",
"description": "A tool for Pokémon Go to aid in transferring and evolving Pokémon",
"main": "main.js",
"scripts": {
Expand Down

0 comments on commit 03c318d

Please sign in to comment.