Download Geany-Plugins
The latest version is 2.0, you should take a look at the release notes.Download | Type | SIG | MD5 / SHA1 |
---|---|---|---|
geany-plugins-2.0.tar.gz | Source Code | GPG Signature | 87b17a7f3ea2402f2bbd5ca68771aafb |
geany-plugins-2.0.tar.bz2 | Source Code | GPG Signature | cb616473498a22bf6e43a9d0daaed196 |
geany-plugins-2.0_setup.exe | Win32 Installer | GPG Signature | 03b91a577607e056b060210b2327ca13 |
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:
1.38
- Import the key via
gpg --recv-keys 01380DF54FD09D02
- Verify the downloaded archive either with
gpg --verify geany-plugins-2.0.tar.bz2.sig geany-plugins-2.0.tar.bz2
orgpg --verify geany-plugins-2.0.tar.gz.sig geany-plugins-2.0.tar.gz
1.37
Note: The key B7A4039D0630EA07 is outdated, so your GPG-client might give you a warning. However, the signature itself is not affacted by this.
- Import the key via
gpg --recv-keys B7A4039D0630EA07
- Verify the downloaded archive either with
gpg --verify geany-plugins-1.38.tar.bz2.sig geany-plugins-1.38.tar.bz2
orgpg --verify geany-plugins-1.38.tar.gz.sig geany-plugins-1.38.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 https://download.geany.org/frlan-pubkey.txt
gpg --import < frlan-pubkey.txt
gpg --verify geany-plugins-2.0.tar.bz2.sig geany-plugins-2.0.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 https://github.com/geany/geany-plugins.git geany-plugins
Build and install all plugins:
./autogen.sh # Note this already runs ./configure
make
make install