Skip to content

Commit

Permalink
Commit #9
Browse files Browse the repository at this point in the history
* `AM_GNU_GETTEXT_VERSION([0.21])` has been replaced with
  `AM_GNU_GETTEXT_VERSION([0.19])` in `configure.ac`
* A typo has been fixed
  • Loading branch information
madmurphy committed Sep 3, 2021
1 parent b3ecc35 commit 1dc8c77
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ Change Log
==========


## 1.0.5 (2021-09-03)

Changes:

* `AM_GNU_GETTEXT_VERSION([0.21])` has been replaced with
`AM_GNU_GETTEXT_VERSION([0.19])` in `configure.ac`
* A typo has been fixed


## 1.0.4 (2021-05-27)

Changes:
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dnl **************************************************************************
AC_PREREQ([2.69])

AC_INIT([Nautilus Launch],
[1.0.4],
[1.0.5],
[madmurphy333@gmail.com],
[nautilus-launch],
[https://gitlab.gnome.org/madmurphy/nautilus-launch])
Expand Down Expand Up @@ -48,7 +48,7 @@ dnl **************************************************************************

AM_GNU_GETTEXT([external])

AM_GNU_GETTEXT_VERSION([0.21])
AM_GNU_GETTEXT_VERSION([0.19])

AM_CONDITIONAL([NLS_ENABLED], [test "x${USE_NLS}" != xno])

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "Nautilus Launch",
"version": "1.0.4",
"version": "1.0.5",
"description": "A simple Nautilus extension that allows to run executables and launchers via right-click menu",
"homepage": "https://gitlab.gnome.org/madmurphy/nautilus-launch",
"author": "madmurphy",
"author": "madmurphy333@gmail.com",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
Expand All @@ -14,7 +14,7 @@
"libnautilus-extension": "*",
},
"devDependencies": {
"gettext": "*",
"gettext": ">=0.19",
"pkgconf": "*"
},
"src": [
Expand Down
2 changes: 1 addition & 1 deletion src/nautilus-launch.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@


#ifdef HAVE_CONFIG_H
#include <config.h>
#include "config.h"
#endif

#include <glib.h>
Expand Down

0 comments on commit 1dc8c77

Please sign in to comment.