Skip to content

Commit

Permalink
+ travis integration
Browse files Browse the repository at this point in the history
  • Loading branch information
mazurwiktor committed Jul 22, 2018
1 parent d1d351c commit e8eaed7
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/target
**/*.rs.bk
memlyzer.log
loot_list.txt
loot_list.txt
memlyzer.tar
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: rust
rust:
- stable
script:
- cargo build --release --verbose
before_deploy:
- tar cvf memlyzer.tar start-memlyzer.sh Config.toml target/release/memlyzer
deploy:
provider: releases
api_key:
secure: $GITHUB_TOKEN
file:
- "memlyzer.tar"
skip_cleanup: true
on:
tags: true
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Build Status](https://travis-ci.org/mazurwiktor/memlyzer.svg?branch=master)](https://travis-ci.org/mazurwiktor/memlyzer)

# Memlyzer
Memlyzer is an Linux extension made for the MMORPG Tibia inspired by (both unfortunately **outdated**) [Tibialyzer](https://github.com/Mytherin/Tibialyzer) and [Flarelyzer](https://github.com/Javieracost/Flarelyzer)).

Expand All @@ -15,7 +17,14 @@ Memlyzer scans Tibia process memory and gathers information about looted items t
* **Libnotify-bin**: Library to send desktop notifications. To install it on debian based environments, you can just run `[sudo] apt-get install libnotify-bin`.


*Coming soon*
1. From [latest release](memlyzer/releases/latest) download `memlyzer.tar` archive.
2. Extract archive E.g
```bash
mkdir ~/memlyzer && cd ~/memlyzer
tar xf ./memlyzer.tar
```
3. Run `~/memlyzer/start-memlyzer.sh`


# Configuring and usage

Expand Down
10 changes: 10 additions & 0 deletions start-memlyzer.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#/usr/bin/env bash

if [ $(id -u) -ne 0 ];
then
echo "You need to be root to use memlyzer"
echo "[sudo] $0"
exit
fi

cd `dirname "$(readlink -f "$0")"` && ./target/release/memlyzer

0 comments on commit e8eaed7

Please sign in to comment.