Skip to content

Commit

Permalink
Updated README, version 0.4.99
Browse files Browse the repository at this point in the history
  • Loading branch information
vacaboja committed Jun 10, 2017
1 parent fe4a1ce commit 6b6c6e9
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 16 deletions.
17 changes: 14 additions & 3 deletions README.md
Expand Up @@ -43,12 +43,23 @@ You can now launch tg by typing

Binary .deb packages can be downloaded from https://tg.ciovil.li

### Compiling from sources
## Compiling from sources

The source code of tg can probably be built by any C99 compiler, however
only gcc and clang have been tested. You need the following libraries:
gtk+3, portaudio2, fftw3 (all available as open-source).

### Compiling on Windows

It is suggested to use the msys2 platform. First install msys2 according
to the instructions at [http://www.msys2.org](http://www.msys2.org). Then
issue the following commands.

pacman -S mingw-w64-x86_64-gcc make pkg-config mingw-w64-x86_64-gtk3 mingw-w64-x86_64-portaudio mingw-w64-x86_64-fftw git
git clone https://github.com/vacaboja/tg.git
cd tg
make

### Compiling on Debian

To compile tg on Debian
Expand All @@ -63,9 +74,9 @@ known bug (https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=718221).

### Compiling on Fedora

To compile tg on Fedora (accurate as of Fedora 25)
To compile tg on Fedora

sudo dnf install fftw-devel portaudio-devel gtk2-devel
sudo dnf install fftw-devel portaudio-devel gtk3-devel
git clone https://github.com/vacaboja/tg.git
cd tg
make
4 changes: 2 additions & 2 deletions packaging/debian/changelog
@@ -1,5 +1,5 @@
tg-timer (0.4.1-test-1) UNRELEASED; urgency=medium
tg-timer (0.4.99-1) UNRELEASED; urgency=medium

* We don't keep a changelog.

-- Marcello Mamino <vacaboja@gmail.com> Fri, 26 May 2017 01:10:52 +0200
-- Marcello Mamino <vacaboja@gmail.com> Sat, 10 Jun 2017 23:19:00 +0200
20 changes: 10 additions & 10 deletions packaging/tg-timer.wxs
@@ -1,10 +1,10 @@
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product Name='Tg' Id='e64a1559-ff3f-471b-804e-edd17883d01f' UpgradeCode='088fdac7-fc91-4881-a2db-eed04425a207'
Language='1033' Codepage='1252' Version='0.4.1' Manufacturer='Marcello Mamino'>
<Product Name='Tg' Id='41846ad1-84ca-43c6-97bc-e6a30ef52f69' UpgradeCode='088fdac7-fc91-4881-a2db-eed04425a207'
Language='1033' Codepage='1252' Version='0.4.99' Manufacturer='Marcello Mamino'>

<Package Id='*' Keywords='Installer'
Description='Tg 0.4.1-test Installer'
Description='Tg 0.4.99 Installer'
Manufacturer='Marcello Mamino'
InstallerVersion='100' Languages='1033' Compressed='yes' SummaryCodepage='1252' />

Expand All @@ -17,10 +17,10 @@
<Directory Id='ProgramFilesFolder' Name='PFiles'>
<Directory Id='INSTALLDIR' Name='tg-timer'>

<Component Id='MainExecutable' Guid='598897cc-50e9-4140-a914-dd1dfeb0210e'>
<Component Id='MainExecutable' Guid='85641299-1352-4d6e-962b-3f632d58a0b4'>
<File Id='TgEXE' Name='tg.exe' DiskId='1' Source='tg.exe' KeyPath='yes'>
<Shortcut Id='startmenuTg' Directory='ProgramMenuDir' Name='Tg 0.4.1-test' WorkingDirectory='INSTALLDIR' Icon='tg.exe' IconIndex='0' Advertise='yes' />
<Shortcut Id='desktopTg' Directory='DesktopFolder' Name='Tg 0.4.1-test' WorkingDirectory='INSTALLDIR' Icon='tg.exe' IconIndex='0' Advertise='yes' />
<Shortcut Id='startmenuTg' Directory='ProgramMenuDir' Name='Tg 0.4.99' WorkingDirectory='INSTALLDIR' Icon='tg.exe' IconIndex='0' Advertise='yes' />
<Shortcut Id='desktopTg' Directory='DesktopFolder' Name='Tg 0.4.99' WorkingDirectory='INSTALLDIR' Icon='tg.exe' IconIndex='0' Advertise='yes' />
</File>
<File Id='TgDocumentICO' Name='tg-document.ico' Source='tg-document.ico' />
<ProgId Id='TgjFile' Description='Tg data file' Icon='TgDocumentICO'>
Expand All @@ -30,20 +30,20 @@
</ProgId>
</Component>

<Component Id='License' Guid='7616bbd8-3e97-4ada-ad37-4e4644485057'>
<Component Id='License' Guid='d283d117-b550-4e75-94bd-48aa3183462c'>
<File Id='License' Name='LICENSE' DiskId='1' Source='LICENSE' KeyPath='yes' />
</Component>

<Component Id='Readme' Guid='a265267e-bb31-404a-b411-41aa3b9c8aef'>
<Component Id='Readme' Guid='e47614ca-8f88-4b7b-a2f5-850913490170'>
<File Id='Readme' Name='README.md' DiskId='1' Source='README.md' KeyPath='yes' />
</Component>

</Directory>
</Directory>

<Directory Id='ProgramMenuFolder' Name='Programs'>
<Directory Id='ProgramMenuDir' Name='Tg 0.4.1-test'>
<Component Id='ProgramMenuDir' Guid='05fa3f5b-fffb-479d-8247-1860e0a1c7aa'>
<Directory Id='ProgramMenuDir' Name='Tg 0.4.99'>
<Component Id='ProgramMenuDir' Guid='46c25851-1c8c-430f-8617-21cd16450ff4'>
<RemoveFolder Id='ProgramMenuDir' On='uninstall' />
<RegistryValue Root='HKCU' Key='Software\[Manufacturer]\[ProductName]' Type='string' Value='' KeyPath='yes' />
</Component>
Expand Down
2 changes: 1 addition & 1 deletion version
@@ -1 +1 @@
0.4.1-test
0.4.99

0 comments on commit 6b6c6e9

Please sign in to comment.