Prepare 1.0

This commit is contained in:
Bleak Grey 2021-02-02 18:56:47 +03:00
parent a7c7540935
commit af1d8a4a86
3 changed files with 5 additions and 11 deletions

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2020 bleak_grey <bleakgrey@gmail.com> --> <!-- Copyright 2020 Bleak Grey -->
<component type="desktop"> <component type="desktop">
<id>com.github.bleakgrey.tootle</id> <id>com.github.bleakgrey.tootle</id>
<metadata_license>CC0-1.0</metadata_license> <metadata_license>CC0-1.0</metadata_license>
@ -76,18 +76,12 @@
</screenshots> </screenshots>
<releases> <releases>
<release version="1.0.0-alpha3" date="2020-10-30"> <release version="1.0.0" date="2021-02-02">
<description> <description>
<ul> <ul>
<li>New app icon (Kudos to Tobias Bernard!)</li> <li>Initial release</li>
<li>New interface design</li>
<li>Added Lists and Conversations</li>
<li>Fixed bugs</li>
</ul> </ul>
</description> </description>
</release> </release>
</releases> </releases>
</component> </component>

View File

@ -3,7 +3,7 @@ scalable_dir = join_paths(icons_dir, 'scalable', 'apps')
symbolic_dir = join_paths(icons_dir, 'symbolic', 'apps') symbolic_dir = join_paths(icons_dir, 'symbolic', 'apps')
install_data( install_data(
join_paths('icons', 'color-nightly.svg'), join_paths('icons', 'color.svg'),
install_dir: scalable_dir, install_dir: scalable_dir,
rename: meson.project_name() + '.svg' rename: meson.project_name() + '.svg'
) )

View File

@ -1,4 +1,4 @@
project('com.github.bleakgrey.tootle', 'vala', 'c', version: '1.0.0-alpha3') project('com.github.bleakgrey.tootle', 'vala', 'c', version: '1.0.0')
config = configuration_data() config = configuration_data()
config.set('EXEC_NAME', meson.project_name()) config.set('EXEC_NAME', meson.project_name())