mirror of
https://github.com/alexkay/spek.git
synced 2025-04-22 03:10:29 +03:00
Update for 0.4
This commit is contained in:
parent
f162976486
commit
27703fe7bd
13
NEWS
13
NEWS
@ -1,4 +1,4 @@
|
||||
Spek 0.3 - Released 2010-05-17
|
||||
Spek 0.4 - Released 2010-05-21
|
||||
==============================
|
||||
|
||||
Spek is an acoustic spectrum analyser written in Vala.
|
||||
@ -7,9 +7,10 @@ Spek is available on GNU/Linux and Windows.
|
||||
|
||||
Find out more about Spek on its website: http://spek-project.org/
|
||||
|
||||
Version 0.3 brings the following features and fixes:
|
||||
Version 0.4 brings the following features and fixes:
|
||||
|
||||
* Horizontal (time) and vertical (frequency) auto-adjustable rulers
|
||||
* Parse command line arguments, show the version when --version is passed
|
||||
* Open the file passed as an argument
|
||||
* Fix a crash when the window width becomes very small
|
||||
* Associate with audio files ("Open with..." menu in file managers)
|
||||
* Show the name of the open file in the window title
|
||||
* Support 24-bit FLACs
|
||||
* Drag and Drop support
|
||||
* Show file name and its properties in the window
|
||||
|
@ -1,6 +1,6 @@
|
||||
# configure.ac
|
||||
|
||||
AC_INIT([spek], [0.3])
|
||||
AC_INIT([spek], [0.4])
|
||||
AC_CONFIG_SRCDIR([src/spek.vala])
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
|
||||
|
@ -36,13 +36,13 @@
|
||||
</table>
|
||||
|
||||
<h2>Download</h2>
|
||||
<p><a href="http://spek.googlecode.com/files/spek-0.3.msi">Spek 0.3 for Windows</a> (x86 MSI installer, 17.1 MiB)</p>
|
||||
<p><a href="http://spek.googlecode.com/files/spek-0.3.tar.bz2">Spek 0.3 for GNU/Linux</a> (source code tar.bz2, 192 KiB)</p>
|
||||
<p><a href="http://spek.googlecode.com/files/spek-0.4.msi">Spek 0.4 for Windows</a> (x86 MSI installer, 17.1 MiB)</p>
|
||||
<p><a href="http://spek.googlecode.com/files/spek-0.4.tar.bz2">Spek 0.4 for GNU/Linux</a> (source code tar.bz2, 192 KiB)</p>
|
||||
<p>To install on Windows just download and double-click the MSI installer. After asking a few questions, Spek will install automatically.</p>
|
||||
<p>To build and run on GNU/Linux:</p>
|
||||
<!-- HTML generated using hilite.me -->
|
||||
<div style="background: #ffffff; overflow:auto;width:auto;color:black;background:white;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;"><pre style="margin: 0; line-height: 125%"><span style="color: #906030">$ </span>tar -xjvf spek-0.3.tar.bz2
|
||||
<span style="color: #906030">$ </span>cd spek-0.3
|
||||
<div style="background: #ffffff; overflow:auto;width:auto;color:black;background:white;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;"><pre style="margin: 0; line-height: 125%"><span style="color: #906030">$ </span>tar -xjvf spek-0.4.tar.bz2
|
||||
<span style="color: #906030">$ </span>cd spek-0.4
|
||||
<span style="color: #906030">$ </span>./configure
|
||||
<span style="color: #906030">$ </span>make
|
||||
<span style="color: #906030">$ </span>src/spek
|
||||
@ -53,6 +53,7 @@
|
||||
|
||||
<h2>News <a href="http://versia.com/category/spek/feed/atom/"><img src="feed-icon-14x14.png" alt="news feed"/></a></h2>
|
||||
<ul>
|
||||
<li>2010-05-21: Spek 0.4 Released</li>
|
||||
<li>2010-05-17: <a href="http://versia.com/2010/05/17/spek-0-3-released/">Spek 0.3 Released</a></li>
|
||||
<li>2010-05-15: <a href="http://versia.com/2010/05/15/spek-windows/">Spek 0.2 - now works in Windows</a></li>
|
||||
<li>2010-05-10: <a href="http://versia.com/2010/05/10/introducing-spek/">Introducing Spek</a></li>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?define ProductName = "Spek" ?>
|
||||
<?define Manufacturer = "Spek Project" ?>
|
||||
<?define ProductVersion = "0.3.0" ?>
|
||||
<?define ProductVersion = "0.4.0" ?>
|
||||
<?define UpgradeCode = "46D51DDF-5749-45E2-818B-1ACADF21C0D9" ?>
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
||||
<Product Id="*" Name="$(var.ProductName)" Language="0"
|
||||
|
Loading…
x
Reference in New Issue
Block a user