Codebase list gnome-sound-recorder / 25b37f6
New upstream version 43~beta Jeremy Bicha 1 year, 8 months ago
7 changed file(s) with 26 addition(s) and 13 deletion(s). Raw diff Collapse all Expand all
0 _build
1 **/*.swp
2 **/*.*~
3 **/tags.*
4 .flatpak
22 file: "flatpak/flatpak_ci_initiative.yml"
33
44 flatpak:
5 image: "registry.gitlab.gnome.org/gnome/gnome-runtime-images/gnome:master"
65 variables:
76 MANIFEST_PATH: "org.gnome.SoundRecorder.json"
87 BUNDLE: "sound-recorder-dev.flatpak"
2423 artifacts:
2524 paths:
2625 - ${LINT_LOG}
27 when: on_failure
26 when: on_failure
0 43.beta
1 ======
2 Port to AdwAboutWindow
3 Translations updates
4
05 42.0
16 ======
27 Translations updates
3434 </kudos>
3535 <content_rating type="oars-1.0" />
3636 <releases>
37 <release version="43.beta" date="2022-08-07" />
3738 <release version="42.0" date="2022-03-19">
3839 <description>
3940 <p>42.0 is out!</p>
00 project(
11 'gnome-sound-recorder',
2 version: '42.0',
2 version: '43.beta',
33 license: 'GPL2+',
44 meson_version: '>= 0.50.0'
55 )
00 # List of source files containing translatable strings.
11 # Please keep this file sorted alphabetically.
2 data/appdata/org.gnome.SoundRecorder.metainfo.xml.in.in
32 data/org.gnome.SoundRecorder.desktop.in.in
3 data/org.gnome.SoundRecorder.metainfo.xml.in.in
44 data/org.gnome.SoundRecorder.gschema.xml.in
55 data/ui/help-overlay.ui
66 data/ui/recorder.ui
108108 }
109109
110110 _showAbout() {
111 let aboutDialog = new Gtk.AboutDialog({
112 artists: ['Reda Lazri <the.red.shortcut@gmail.com>',
111 let aboutDialog = new Adw.AboutWindow({
112 artists: [
113 'Reda Lazri <the.red.shortcut@gmail.com>',
113114 'Garrett LeSage <garrettl@gmail.com>',
114115 'Hylke Bons <hylkebons@gmail.com>',
115 'Sam Hewitt <hewittsamuel@gmail.com>'],
116 authors: ['Meg Ford <megford@gnome.org>',
116 'Sam Hewitt <hewittsamuel@gmail.com>',
117 ],
118 developers: [
119 'Meg Ford <megford@gnome.org>',
117120 'Bilal Elmoussaoui <bil.elmoussaoui@gmail.com>',
118121 'Felipe Borges <felipeborges@gnome.org>',
119 'Kavan Mevada <kavanmevada@gmail.com>'],
122 'Kavan Mevada <kavanmevada@gmail.com>',
123 ],
120124 /* Translators: Replace "translator-credits" with your names, one name per line */
121125 translator_credits: _('translator-credits'),
122 program_name: GLib.get_application_name(),
126 application_name: GLib.get_application_name(),
123127 comments: _('A Sound Recording Application for GNOME'),
124128 license_type: Gtk.License.GPL_2_0,
125 logo_icon_name: pkg.name,
129 application_icon: pkg.name,
126130 version: pkg.version,
127131 website: 'https://wiki.gnome.org/Apps/SoundRecorder',
128 copyright: 'Copyright 2013-2019 Meg Ford\nCopyright 2019-2020 Bilal Elmoussaoui & Felipe Borges',
129 wrap_license: true,
132 copyright: 'Copyright 2013-2019 Meg Ford\nCopyright 2019-2020 Bilal Elmoussaoui &amp; Felipe Borges',
130133 modal: true,
131134 transient_for: this.window,
132135 });