Skip to content

Commit

Permalink
Merge branch 'master' into fix-key-navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremypw authored Aug 5, 2024
2 parents 1a3963b + 5e26f5e commit a96dcc5
Show file tree
Hide file tree
Showing 427 changed files with 10,973 additions and 25,679 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/githubci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build:

runs-on: ubuntu-22.04
runs-on: ubuntu-latest

strategy:
fail-fast: false
Expand All @@ -24,7 +24,7 @@ jobs:
- name: Install Dependencies
run: |
apt update
apt install -y libgee-0.8-dev libgranite-dev libgtk-3-dev libhandy-1-dev libjson-glib-dev libplank-dev libsoup2.4-dev libswitchboard-2.0-dev libunity-dev libwingpanel-dev libzeitgeist-2.0-dev meson valac bc
apt install -y libadwaita-1-dev libgee-0.8-dev libgranite-dev libgtk-3-dev libhandy-1-dev libjson-glib-dev libsoup2.4-dev libswitchboard-3-dev libunity-dev libwingpanel-dev libzeitgeist-2.0-dev meson valac bc
- name: Build
env:
DESTDIR: out
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ You'll need the following dependencies:
* libjson-glib-dev
* libplank-dev
* libsoup2.4-dev
* libswitchboard-2.0-dev
* libswitchboard-3-dev
* libunity-dev
* libwingpanel-dev
* libzeitgeist-2.0-dev
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2019 elementary, Inc. <[email protected]> -->
<!-- Copyright 2019-2024 elementary, Inc. <[email protected]> -->
<component type="addon">
<id>io.elementary.wingpanel.applications-menu</id>
<translation type="gettext">slingshot</translation>
<extends>io.elementary.wingpanel</extends>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0+</project_license>
<compulsory_for_desktop>Pantheon</compulsory_for_desktop>

<icon type="stock">preferences-desktop-applications</icon>
<name>Applications Menu</name>
<summary>Open and search for apps</summary>

<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/elementary/applications-menu/master/data/screenshot.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/elementary/applications-menu/master/data/screenshot-dark.png</image>
</screenshot>
</screenshots>

<url type="bugtracker">https://github.com/elementary/applications-menu/issues</url>
<url type="donation">https://elementary.io/get-involved#funding</url>
<url type="help">https://github.com/elementary/applications-menu/discussions/categories/q-a</url>
<url type="homepage">https://elementary.io/</url>
<url type="translate">https://l10n.elementary.io/projects/wingpanel/applications-menu/</url>

<developer id="org.elementaryos">
<name>elementary, Inc.</name>
</developer>
<project_group>elementary</project_group>
<update_contact>contact_at_elementary.io</update_contact>

<releases>
<release version="8.0.0" date="2024-18-07" urgency="medium">
<description>
<p>Improvements:</p>
<ul>
<li>Updated translations</li>
</ul>
</description>
<issues>
<issue url="https://github.com/elementary/applications-menu/issues/498">Incorrectly named instant answer</issue>
<issue url="https://github.com/elementary/applications-menu/issues/566">Searching "next" shows calculated 0 as result</issue>
</issues>
</release>

<release version="2.11.1" date="2022-12-11" urgency="medium">
<description>
<p>Improvements:</p>
Expand Down Expand Up @@ -59,40 +99,6 @@
</description>
</release>

<release version="2.10.0" date="2021-11-23" urgency="medium">
<description>
<p>New features:</p>
<ul>
<li>Show search results for bookmarked folders</li>
</ul>
<p>Fixes:</p>
<ul>
<li>Prevent a potential crash on startup</li>
</ul>
<p>Minor updates:</p>
<ul>
<li>Updated translations</li>
</ul>
</description>
</release>
<release version="2.10.0" date="2021-11-23" urgency="medium" />
</releases>

<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/elementary/applications-menu/master/data/screenshot.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/elementary/applications-menu/master/data/screenshot-dark.png</image>
</screenshot>
</screenshots>
<developer_name>elementary, Inc.</developer_name>
<url type="homepage">https://elementary.io/</url>
<url type="bugtracker">https://github.com/elementary/applications-menu/issues</url>
<url type="donation">https://elementary.io/get-involved#funding</url>
<url type="help">https://elementaryos.stackexchange.com/questions/tagged/applications-menu</url>
<url type="translate">https://l10n.elementary.io/projects/wingpanel/applications-menu/</url>
<update_contact>contact_AT_elementary.io</update_contact>
<metadata_license>CC0-1.0</metadata_license>
<project_group>elementary</project_group>
<project_license>GPL-3.0+</project_license>
</component>
10 changes: 5 additions & 5 deletions data/meson.build
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
i18n.merge_file(
input: 'applications-menu.appdata.xml.in',
output: 'io.elementary.wingpanel.applications-menu.appdata.xml',
po_dir: join_paths(meson.source_root(), 'po', 'extra'),
input: 'applications-menu.metainfo.xml.in',
output: 'io.elementary.wingpanel.applications-menu.metainfo.xml',
po_dir: meson.source_root() / 'po' / 'extra',
type: 'xml',
install: true,
install_dir: join_paths(get_option('datadir'), 'metainfo'),
install_dir: datadir / 'metainfo',
)

install_data(
'io.elementary.desktop.wingpanel.applications-menu.gschema.xml',
install_dir: join_paths(datadir, 'glib-2.0', 'schemas')
install_dir: datadir / 'glib-2.0' / 'schemas'
)

2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ gobject_dep = dependency('gobject-2.0')
libsoup_dep = dependency('libsoup-2.4')
gio_unix_dep = dependency('gio-unix-2.0')
json_glib_dep = dependency('json-glib-1.0')
switchboard_dep = dependency('switchboard-2.0')
switchboard_dep = dependency('switchboard-3')
libhandy_dep = dependency('libhandy-1', version: '>= 0.83.0')
wingpanel_dep = dependency('wingpanel', version: '>=2.1.0')
posix_dep = meson.get_compiler('vala').find_library('posix')
Expand Down
2 changes: 2 additions & 0 deletions po/LINGUAS
Original file line number Diff line number Diff line change
Expand Up @@ -198,3 +198,5 @@ aa
ab
gn
an
en_ZA
pap
109 changes: 19 additions & 90 deletions po/aa.po
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-08 10:57+0000\n"
"POT-Creation-Date: 2024-07-18 21:44+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"

Expand Down Expand Up @@ -130,27 +130,27 @@ msgstr ""
msgid "No Results for “%s”"
msgstr ""

#: src/Widgets/AppContextMenu.vala:80
#: src/Widgets/AppContextMenu.vala:66
#, c-format
msgid "Open with %s Graphics"
msgstr ""

#: src/Widgets/AppContextMenu.vala:112
msgid "Remove from _Dock"
msgstr ""

#: src/Widgets/AppContextMenu.vala:114
#: src/Widgets/AppContextMenu.vala:94 src/Widgets/AppContextMenu.vala:191
msgid "Add to _Dock"
msgstr ""

#: src/Widgets/AppContextMenu.vala:128
#: src/Widgets/AppContextMenu.vala:110
msgid "Uninstall"
msgstr ""

#: src/Widgets/AppContextMenu.vala:133
#: src/Widgets/AppContextMenu.vala:115
msgid "View in AppCenter"
msgstr ""

#: src/Widgets/AppContextMenu.vala:189
msgid "Remove from _Dock"
msgstr ""

#: src/synapse-core/Actions/ClipboardCopyAction.vala:25
msgid "Copy to Clipboard"
msgstr ""
Expand Down Expand Up @@ -186,32 +186,7 @@ msgstr ""
msgid "Search the app store"
msgstr ""

#: src/synapse-plugins/appcenter-plugin.vala:88
msgid "AppCenter"
msgstr ""

#: src/synapse-plugins/appcenter-plugin.vala:89
msgid "Search for applications"
msgstr ""

#: src/synapse-plugins/appcenter-plugin.vala:93
msgid "AppCenter is not installed"
msgstr ""

#: src/synapse-plugins/calculator-plugin/calculator-plugin.vala:49
msgid "Calculator"
msgstr ""

#: src/synapse-plugins/calculator-plugin/calculator-plugin.vala:50
msgid "Calculate basic expressions."
msgstr ""

#: src/synapse-plugins/calculator-plugin/calculator-plugin.vala:54
#: src/synapse-plugins/converter-plugin/converter-plugin.vala:51
msgid "bc is not installed"
msgstr ""

#: src/synapse-plugins/calculator-plugin/calculator-plugin.vala:77
#: src/synapse-plugins/calculator-plugin/calculator-plugin.vala:74
msgid "Click to copy result to clipboard"
msgstr ""

Expand All @@ -224,10 +199,6 @@ msgstr ""
msgid "Run command"
msgstr ""

#: src/synapse-plugins/command-plugin.vala:60
msgid "Find and execute arbitrary commands."
msgstr ""

#: src/synapse-plugins/converter-plugin/converter-plugin-backend.vala:32
msgid "squared"
msgstr ""
Expand All @@ -242,67 +213,47 @@ msgstr ""
msgid "%s%s %s"
msgstr ""

#: src/synapse-plugins/converter-plugin/converter-plugin.vala:46
msgid "Converter"
msgstr ""

#: src/synapse-plugins/converter-plugin/converter-plugin.vala:47
msgid "Convert between units."
msgstr ""

#. /TRANSLATORS first %s represents unit converted from, second %s represents unit converted to
#: src/synapse-plugins/converter-plugin/converter-plugin.vala:73
#: src/synapse-plugins/converter-plugin/converter-plugin.vala:70
#, c-format
msgid "%g (%s to %s)"
msgstr ""

#: src/synapse-plugins/converter-plugin/converter-plugin.vala:76
#: src/synapse-plugins/converter-plugin/converter-plugin.vala:73
#, c-format
msgid "Click to copy %g to clipboard"
msgstr ""

#: src/synapse-plugins/desktop-file-plugin.vala:118
msgid "Search for and run applications on your computer."
msgstr ""

#: src/synapse-plugins/desktop-file-plugin.vala:321
#: src/synapse-plugins/desktop-file-plugin.vala:319
#, c-format
msgid "Open with %s"
msgstr ""

#: src/synapse-plugins/desktop-file-plugin.vala:323
#: src/synapse-plugins/desktop-file-plugin.vala:321
#, c-format
msgid "Opens current selection using %s"
msgstr ""

#: src/synapse-plugins/file-bookmarks-plugin.vala:84
#: src/synapse-plugins/file-bookmarks-plugin.vala:87
#: src/synapse-plugins/link-plugin.vala:44
#, c-format
msgid "Open %s in %s"
msgstr ""

#: src/synapse-plugins/file-bookmarks-plugin.vala:88
#: src/synapse-plugins/file-bookmarks-plugin.vala:91
msgid "Open the selected directory"
msgstr ""

#: src/synapse-plugins/file-bookmarks-plugin.vala:200
msgid "Folder Bookmarks"
msgstr ""

#: src/synapse-plugins/file-bookmarks-plugin.vala:201
msgid "Bookmarked Folders"
msgstr ""

#. Check for Special Directories
#: src/synapse-plugins/file-bookmarks-plugin.vala:219
#: src/synapse-plugins/file-bookmarks-plugin.vala:216
msgid "Home"
msgstr ""

#: src/synapse-plugins/file-bookmarks-plugin.vala:223
#: src/synapse-plugins/file-bookmarks-plugin.vala:220
msgid "Recent"
msgstr ""

#: src/synapse-plugins/file-bookmarks-plugin.vala:227
#: src/synapse-plugins/file-bookmarks-plugin.vala:224
msgid "Trash"
msgstr ""

Expand All @@ -315,23 +266,11 @@ msgstr ""
msgid "Open this link in default browser"
msgstr ""

#: src/synapse-plugins/link-plugin.vala:72
msgid "Link"
msgstr ""

#: src/synapse-plugins/link-plugin.vala:73
msgid "Open link in default browser"
msgstr ""

#: src/synapse-plugins/switchboard-plugin.vala:49
#, c-format
msgid "Open %s settings"
msgstr ""

#: src/synapse-plugins/switchboard-plugin.vala:70
msgid "Find switchboard plugs and open them."
msgstr ""

#: src/synapse-plugins/system-managment.vala:110
msgid "Lock"
msgstr ""
Expand Down Expand Up @@ -415,13 +354,3 @@ msgstr ""
msgctxt "system_management_action_keyword"
msgid "restart;reboot"
msgstr ""

#: src/synapse-plugins/system-managment.vala:507
msgid ""
"Lock the session or Log Out from it. Suspend, hibernate, restart or shutdown "
"your computer."
msgstr ""

#: src/synapse-plugins/system-managment.vala:512
msgid "ConsoleKit wasn't found"
msgstr ""
Loading

0 comments on commit a96dcc5

Please sign in to comment.