Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
axelberardino committed Aug 21, 2019
1 parent dba9afb commit 630fa2c
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 5 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,22 @@ To release new version, I'm using two scripts which generate the archives.

For MacOS and Linux:
```
./gen_bin.sh
./unix_release.sh
```

For Windows:
```
win_gen_bin.bat
windows_release.bat
```

Then I attached the generated archives to a new release.

Then, I generate the demo files using:
```
./gen_demo.sh
```


### Working and debugging (more technical stuff!)

If you want to work on this project or just change or improve something, you
Expand Down
2 changes: 1 addition & 1 deletion TODO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
* More rigourous item description generation
* Shop id for the link after shop generation
* Search bar? (lot of works, may easily be slow)
* Advanced query searching? (lots of work)
* Minify generated files, reducing size.
* Choose what tabs and characters to generate
* By character name
Expand Down
2 changes: 1 addition & 1 deletion data/template/parts/style.css.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
padding-right: 35px;
padding-bottom: 35px;
padding-top: 10px;
background: #191A17 url('https://www.pathofexile.com/image/profile/profile-full.jpg?1563488658105') no-repeat top left;
background: #0c0a0b url('https://www.pathofexile.com/image/profile/profile-full.jpg?1563488658105') no-repeat top left;
}
#main-page h1 {
margin-top: 20px;
Expand Down
31 changes: 30 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ More detailed instructions for your system here:

Want to see what generated files look like?

[See this one for example](http://0217021.free.fr/poe-stash/demo/cptpingu-standard-pc-2019-08-15.html)
[See this one for example](http://0217021.free.fr/poe-stash/demo/all_stash_types-standard.html)

I generated some more here: [Demo and screenshots](http://0217021.free.fr/poe-stash)

Expand Down Expand Up @@ -83,6 +83,35 @@ useful (at least for me!).

Read some explanation here: [Pricing items](prices.md)

## Search

It's possible to search for item's name, characteristic or type. Note that this
is a very naive search engine. By default everything is consider an "AND". The
"OR" can be use with the "|" symbol.

Some example:

Search for items with life on it:
```
life
```

Search for items with 3 elements:
```
fire cold lightning
```

Search for items with chaos or speed:
```
chaos | speed
```

Search for a ring, an item name "Vix Lunaris" or everything which increase
damage:
```
ring | vix lunaris | increased damage
```

## I need your help!

I'm facing some issues, I could use a hand:
Expand Down
3 changes: 3 additions & 0 deletions gen_demo.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

go run cmd/cli/main.go --account all_stash_types --demo

0 comments on commit 630fa2c

Please sign in to comment.