Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

post for the alpha mozregression-gui release #218

Merged
merged 2 commits into from May 11, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 21 additions & 0 deletions _layouts/home.html
@@ -0,0 +1,21 @@
---
layout: default
---
<div class="home">
{{ content }}

<br>
<h3>Recent news:</h3>
<ul class="post-list">
{% for post in site.posts limit:3 %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
&nbsp;
<span>
{% assign url = post.id | split:'/' | last | prepend: '/news.html#' %}
<a class="post-link" href="{{ url | prepend: site.baseurl }}">{{ post.title }}</a>
</span>
</li>
{% endfor %}
</ul>
</div>
12 changes: 12 additions & 0 deletions _posts/2015-05-11-gui.md
@@ -0,0 +1,12 @@
---
title: "Mozregression GUI is out!"
author: Julien Pagès
---

I am proud to announce the first release of **mozregression-gui**, a
graphical interface for mozregression!

This is a **pre-release alpha version**, provided so you can help us to find
bugs and give us some feedback.

[Give it a try]({{ "/install.html#mozregression-gui" | prepend: site.baseurl }})!
2 changes: 1 addition & 1 deletion index.md
@@ -1,5 +1,5 @@
---
layout: default
layout: home
title: Home
order: 0
main_link: True
Expand Down
30 changes: 30 additions & 0 deletions install.md
Expand Up @@ -7,6 +7,33 @@ main_link: True

# Install or upgrade

## mozregression-gui

For the graphical interface, we provide a simple installation process:

- **Windows**:
Download the latest **mozregression-gui.exe** file from the
[github releases]. Once the file is downloaded double-click on it and
follow the installation process.

- **Linux 64**:
We provide a frozen application (that includes python itself) in the
[github releases]. You can try it out by downloading the
**mozregression-gui.tar.gz**, decompress it somewhere and run the
mozregression-gui executable file.

Please note that the mozregression GUI (including the installation process)
is at a very early stage of development -- please report any bug you find.

A graphical installation process for MacOS X is planned. You can still install
the GUI directly [from github] if your OS is not supported or if you have issues
with the prebuilt packages.


## mozregression

The original command line tool.

mozregression is a Python (currently 2.7) package installable via pip. You can
follow the OS-specific instructions to install pip if you don't know how to do it:

Expand All @@ -33,3 +60,6 @@ you are on:
- **Ubuntu** / **Mac**

sudo pip install -U mozregression

[github releases]: https://github.com/mozilla/mozregression/releases
[from github]: https://github.com/mozilla/mozregression/blob/master/gui/README.rst