Download Geany-Plugins
The latest version for Linux/Unix is 1.23, you should take a look at the release notes.The latest version for Windows is 1.23, release notes.
| Download | Type | SIG | MD5 / SHA1 |
|---|---|---|---|
| geany-plugins-1.23.tar.gz | Source Code | GPG Signature | f989ced7ea717537d9645661f6a09c40 |
| geany-plugins-1.23.tar.bz2 | Source Code | GPG Signature | d851dbdaf95fb8b74ece43c0a973b748 |
| geany-plugins-1.23_setup.exe | Win32 Installer | GPG Signature | 63cb32ecf372a7584ef0eff2501b1e71 |
Older versions of Geany-Plugins can also be downloaded.
Verifying Signatures
The tarballs are signed with a GPG key to make sure the source code wasn't compromised somewhere on the net. You can verify you have the correct tarballs by checking if the GPG signature is correct. To do this, follow these instructions:
- Import the key via
gpg --recv-keys 588752a1 - Verify the downloaded archive either with
gpg --verify geany-plugins-0.20.tar.bz2.sig geany-plugins-0.20.tar.bz2orgpg --verify geany-plugins-0.20.tar.gz.sig geany-plugins-0.20.tar.gz
The command's output should state something like "Good Signature" and should return exit code 0. If you get another exit code it's likely, something went wrong.
Another complete example:
wget http://download.geany.org/hyperair-pubkey.txt
gpg --import < hyperair-pubkey.txt
gpg --verify geany-plugins-0.20.tar.bz2.sig geany-plugins-0.20.tar.bz2
Download directly from version control
You can pull the sources for Geany-Plugins directly from version control as well. To do this, just clone the Git repository like this:
git clone git://github.com/geany/geany-plugins.git geany-plugins
You can build the plugins from those sources then using Waf:
./waf configure
./waf build -p -k
You can either copy the resulting .so files to ~/.config/geany/plugins/ or install them to /usr/share/geany/ with running following command as root:
./waf install
Or either do it the autotools way as well:
./autogen.sh # Note this already runs ./configure
make
make install

