Skip to content

Commit

Permalink
update for Meson-UI patch release 0.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamer-coding committed Apr 16, 2020
1 parent 0038d9b commit 0c27ff9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion man/meson-ui.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH MESON-UI "24" "March 2020" "meson-ui 0.20.0" "User Commands"
.TH MESON-UI "16" "April 2020" "meson-ui 0.20.1" "User Commands"
.SH NAME
meson-ui is a build GUI for Meson build system a next-generation build system.
.SH DESCRIPTION
Expand Down
13 changes: 11 additions & 2 deletions mesonui/projectinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,21 @@
#


info = '''\
Meson-UI is an open source build GUI meant to be both extremely fast,
and, even more importantly, as user friendly as possible.
The main design point of Meson-UI is to provide a standalone portable
build GUI and allow the user to access all or most of Meson build
systems features.
'''

class ProjectInfo:
def get_description(self) -> str:
return 'Meson-UI is a build GUI for Meson build system.'
return info

def get_version(self) -> str:
return '0.20.0'
return '0.20.1'

def get_license(self) -> str:
return 'Apache-2.0'
Expand Down

0 comments on commit 0c27ff9

Please sign in to comment.