Commit f416b5a9d33e6b3426941d7c1a792cf248101793

Authored by Perry Werneck
2 parents 9dab1b9c a46f3f89

Merge branch 'master' into develop

Showing 2 changed files with 3 additions and 2 deletions   Show diff stats
branding/metainfo.xml.in
... ... @@ -60,6 +60,6 @@
60 60 <translation type="gettext">@PRODUCT_NAME@</translation>
61 61  
62 62 <releases>
63   - <release version="@VERSION@"/>
  63 + <release version="@VERSION@" date="@RELEASE_DATE@"/>
64 64 </releases>
65 65 </component>
... ...
configure.ac
... ... @@ -72,7 +72,6 @@ case &quot;$host&quot; in
72 72 app_win32_revision=$(date +%-y.%-m.%-d.%-H)
73 73 AC_SUBST(WIN32_VERSION,$app_win32_revision)
74 74  
75   -
76 75 app_win32_file_version=$(date +%-y,%-m,%-d,%-H)
77 76 AC_SUBST(WIN32_FILE_VERSION,$app_win32_file_version)
78 77  
... ... @@ -115,6 +114,8 @@ case &quot;$host&quot; in
115 114  
116 115 esac
117 116  
  117 +app_release_date=$(date +%Y-%m-%d)
  118 +AC_SUBST(RELEASE_DATE,$app_release_date)
118 119 AC_SUBST(OSNAME,$app_cv_osname)
119 120 AC_SUBST(RLS_LDFLAGS,$app_rls_ldflags)
120 121 AC_SUBST(LIBS)
... ...