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

Revamp preferences window #6

Merged
merged 7 commits into from
Jun 25, 2016
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 7 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Infinity Visualization Plugin
=============================
Infinity
========

Plugin for [Audacious](http://audacious-media-player.org/) player that generates light effects
according to a playing sound.
Visualization plugin for [Audacious](http://audacious-media-player.org/) music player.
It generates beautiful light effects.

![Screenshot of Infinity](https://a.fsdn.com/con/app/proj/infinity-plugin/screenshots/Infinity.png)

Expand Down Expand Up @@ -32,6 +32,8 @@ Run

To enter/leave Full-Screen mode press Tab key.

![Screenshot of Infinity Settings](../screenshots/screenshot-settings.png?raw=true "Infinity Settings")

Add New Effects
---------------

Expand Down Expand Up @@ -87,11 +89,6 @@ You can control the effects using keys:
Known Bugs
----------

As of 0.8.0beta1 the settings window and the about dialog does not work.

If you have problems finding locale.h header file, try to configure with
--disable-nls option.

In Ubuntu systems over AMD64 architectures, try running configure with
--prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu

Expand Down Expand Up @@ -119,5 +116,4 @@ Releases older than 0.8.0beta1 can be found at Sourceforge: <https://sourceforge
Contributions
-------------

Your help is welcome, either coding, translating or building binary (distro)
packages.
Your help is welcome either coding, testing or building distro packages.
4 changes: 1 addition & 3 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,11 @@ libinfinite_la_SOURCES = \
renderer.cc renderer.h\
compute.c compute.h \
display.c display.h \
infconfig.c infconfig.h\
config-dialog.c config-dialog.h\
prefs.c prefs.h\
effects.c effects.h\
cputest.c cputest.h\
mmx.h types.h

INCLUDES = -I$(top_srcdir)/src -I$(top_builddir)

EXTRA_DIST = infinite_states

2 changes: 1 addition & 1 deletion src/compute.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include "config.h"
#include "compute.h"
#include "infconfig.h"
#include "prefs.h"
#ifdef MMX_DETECTION
#include "mmx.h"
#endif
Expand Down
256 changes: 0 additions & 256 deletions src/config-dialog.c

This file was deleted.

34 changes: 0 additions & 34 deletions src/config-dialog.h

This file was deleted.

2 changes: 1 addition & 1 deletion src/display.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#include "config.h"
#include "display.h"
#include "infconfig.h"
#include "prefs.h"

#define wrap(a) (a < 0 ? 0 : (a > 255 ? 255 : a))
#define assign_max(p, a) (*p <= a ? *p = a : 0)
Expand Down
Loading