diff --git a/README.md b/README.md
index 0fcd78f..56fb8b0 100644
--- a/README.md
+++ b/README.md
@@ -36,14 +36,15 @@ DONE:
- Refresh metadata button
- Add install from .flatpakref functionality + drag and drop
- Add install from .flatpakrepo functionality + drag and drop
-
+- Add per-app permission management backend
+- Add global permission management backend
+- Add per-app permission management GUI
+- Add global permission management GUI
TODO:
-- Implement global option to allow any flatpak install desktop_app kind to access user home directory (this will be good for new users for things like discord and file sharing)
+- Update management GUI (individual apps can already be updated)
- Package information page/section.
- add about section
-- permission management GUI + backend
-- Update management GUI (individual apps can already be updated)
- General GUI layout/theming improvements
Usage (Temporary until proper packaging is added):
diff --git a/libflatpak_query.py b/libflatpak_query.py
index e9c9291..e597d6f 100755
--- a/libflatpak_query.py
+++ b/libflatpak_query.py
@@ -1206,6 +1206,7 @@ def add_file_permissions(app_id: str, path: str, perm_type=None, system=False) -
path (str): The path to grant access to. Can be:
- "home" for home directory access
- "/path/to/directory" for custom directory access
+ perm_type (str): The type of permissions to remove (e.g. "filesystems", "persistent") default is "filesystems"
system (bool): Whether to modify system-wide or user installation
Returns:
@@ -1214,7 +1215,7 @@ def add_file_permissions(app_id: str, path: str, perm_type=None, system=False) -
try:
key_file = get_perm_key_file(app_id, system)
- perm_type = perm_type or "filesystem"
+ perm_type = perm_type or "filesystems"
# Handle special case for home directory
if path.lower() == "host":
filesystem_path = "host"
@@ -1277,6 +1278,7 @@ def remove_file_permissions(app_id: str, path: str, perm_type=None, system=False
path (str): The path to revoke access to. Can be:
- "home" for home directory access
- "/path/to/directory" for custom directory access
+ perm_type (str): The type of permissions to remove (e.g. "filesystems", "persistent") default is "filesystems"
system (bool): Whether to modify system-wide or user installation
Returns:
@@ -1284,7 +1286,7 @@ def remove_file_permissions(app_id: str, path: str, perm_type=None, system=False
"""
try:
key_file = get_perm_key_file(app_id, system)
- perm_type = perm_type or "filesystem"
+ perm_type = perm_type or "filesystems"
# Handle special case for home directory
if path.lower() == "host":
@@ -1637,7 +1639,7 @@ def remove_permission_value(app_id: str, perm_type: str, value: str, system=Fals
except GLib.Error as e:
return False, f"Error removing permission: {str(e)}"
-def global_add_file_permissions(path: str, override=True, system=False) -> tuple[bool, str]:
+def global_add_file_permissions(path: str, perm_type=None, override=True, system=False) -> tuple[bool, str]:
"""
Add filesystem permissions to all Flatpak applications globally.
@@ -1645,6 +1647,7 @@ def global_add_file_permissions(path: str, override=True, system=False) -> tuple
path (str): The path to grant access to. Can be:
- "home" for home directory access
- "/path/to/directory" for custom directory access
+ perm_type (str): The type of permissions to remove (e.g. "filesystems", "persistent") default is "filesystems"
override (bool): Whether to use global metadata file instead of per-app.
system (bool): Whether to modify system-wide or user installation
@@ -1654,7 +1657,7 @@ def global_add_file_permissions(path: str, override=True, system=False) -> tuple
try:
key_file = get_perm_key_file(None, override, system)
-
+ perm_type = perm_type or "filesystems"
# Handle special case for home directory
if path.lower() == "host":
filesystem_path = "host"
@@ -1669,21 +1672,21 @@ def global_add_file_permissions(path: str, override=True, system=False) -> tuple
filesystem_path = path.rstrip('/')
if not key_file.has_group("Context"):
- key_file.set_string("Context", "filesystems", "")
+ key_file.set_string("Context", perm_type, "")
# Now get the keys
context_keys = key_file.get_keys("Context")
# Check if perm_type exists in the section
- if "filesystems" not in str(context_keys):
+ if perm_type not in str(context_keys):
# Create the key with an empty string
- key_file.set_string("Context", "filesystems", "")
+ key_file.set_string("Context", perm_type, "")
# Get existing filesystem paths
- existing_paths = key_file.get_string("Context", "filesystems")
- if existing_paths is None:
+ existing_paths = key_file.get_string("Context", perm_type)
+ if existing_paths is None or existing_paths == "":
# If no filesystems entry exists, create it
- key_file.set_string("Context", "filesystems", filesystem_path)
+ key_file.set_string("Context", perm_type, filesystem_path)
else:
# Split existing paths and check if our path already exists
existing_paths_list = existing_paths.split(';')
@@ -1694,7 +1697,7 @@ def global_add_file_permissions(path: str, override=True, system=False) -> tuple
# Only add if the path doesn't already exist
if normalized_new_path not in normalized_existing_paths:
- key_file.set_string("Context", "filesystems",
+ key_file.set_string("Context", perm_type,
existing_paths + filesystem_path + ";")
# Write the modified metadata back
@@ -1709,7 +1712,7 @@ def global_add_file_permissions(path: str, override=True, system=False) -> tuple
return False, f"Failed to modify permissions: {str(e)}"
-def global_remove_file_permissions(path: str, override=True, system=False) -> tuple[bool, str]:
+def global_remove_file_permissions(path: str, perm_type=None, override=True, system=False) -> tuple[bool, str]:
"""
Remove filesystem permissions from all Flatpak applications globally.
@@ -1717,6 +1720,7 @@ def global_remove_file_permissions(path: str, override=True, system=False) -> tu
path (str): The path to revoke access to. Can be:
- "home" for home directory access
- "/path/to/directory" for custom directory access
+ perm_type (str): The type of permissions to remove (e.g. "filesystems", "persistent") default is "filesystems"
override (bool): Whether to use global metadata file instead of per-app.
system (bool): Whether to modify system-wide or user installation
@@ -1725,7 +1729,7 @@ def global_remove_file_permissions(path: str, override=True, system=False) -> tu
"""
try:
key_file = get_perm_key_file(None, override, system)
-
+ perm_type = perm_type or "filesystems"
# Handle special case for home directory
if path.lower() == "host":
filesystem_path = "host"
@@ -1740,7 +1744,7 @@ def global_remove_file_permissions(path: str, override=True, system=False) -> tu
filesystem_path = path.rstrip('/')
# Get existing filesystem paths
- existing_paths = key_file.get_string("Context", "filesystems")
+ existing_paths = key_file.get_string("Context", perm_type)
if existing_paths is None:
return True, "No filesystem permissions to remove globally"
@@ -1762,9 +1766,9 @@ def global_remove_file_permissions(path: str, override=True, system=False) -> tu
new_permissions = ";".join(filtered_paths_list)
if new_permissions:
# Save changes
- key_file.set_string("Context", "filesystems", new_permissions)
+ key_file.set_string("Context", perm_type, new_permissions)
else:
- key_file.remove_key("Context", "filesystems")
+ key_file.remove_key("Context", perm_type)
# Write the modified metadata back
try:
@@ -2017,6 +2021,9 @@ def global_add_permission_value(perm_type: str, value: str, override=True, syste
key, val = parts
+ if val not in ['talk', 'own']:
+ return False, "Value must be in format 'key=value' with value as 'talk' or 'own'"
+
# Set the value
key_file.set_string(perm_type, key, val)
@@ -2027,6 +2034,7 @@ def global_add_permission_value(perm_type: str, value: str, override=True, syste
except GLib.Error as e:
return False, f"Error adding permission: {str(e)}"
+
def global_remove_permission_value(perm_type: str, value: str, override=True, system=False) -> tuple[bool, str]:
"""
Remove a permission value from all Flatpak applications globally.
diff --git a/main.py b/main.py
index 54f5272..ea6da48 100755
--- a/main.py
+++ b/main.py
@@ -400,7 +400,15 @@ class MainWindow(Gtk.Window):
self.top_bar.pack_start(self.component_type_combo_label, False, False, 0)
self.top_bar.pack_start(self.component_type_combo, False, False, 0)
- # Add repository button
+ # Add global overrides button
+ global_overrides_button = Gtk.Button()
+ global_overrides_button.set_tooltip_text("Global Setting Overrides")
+ global_overrides_button_icon = Gio.Icon.new_for_string('system-run')
+ global_overrides_button.set_image(Gtk.Image.new_from_gicon(global_overrides_button_icon, Gtk.IconSize.BUTTON))
+ global_overrides_button.get_style_context().add_class("dark-install-button")
+ global_overrides_button.connect("clicked", self.global_on_options_clicked)
+
+ # Add refresh metadata button
refresh_metadata_button = Gtk.Button()
refresh_metadata_button.set_tooltip_text("Refresh metadata")
refresh_metadata_button_icon = Gio.Icon.new_for_string('system-reboot-symbolic')
@@ -427,6 +435,9 @@ class MainWindow(Gtk.Window):
# Add system controls to header
self.top_bar.pack_end(system_box, False, False, 0)
+ # Add refresh metadata button
+ self.top_bar.pack_end(global_overrides_button, False, False, 0)
+
# Add refresh metadata button
self.top_bar.pack_end(refresh_metadata_button, False, False, 0)
@@ -1390,7 +1401,7 @@ class MainWindow(Gtk.Window):
button.get_style_context().add_class(add_rm_style)
buttons_box.pack_end(button, False, False, 0)
- # Install/Remove button
+ # App options button
if is_installed:
button = self.create_button(
self.on_app_options_clicked,
@@ -2094,7 +2105,7 @@ class MainWindow(Gtk.Window):
success, message = libflatpak_query.remove_file_permissions(
app_id,
path,
- None,
+ "filesystems",
self.system_mode
)
if success:
@@ -2142,7 +2153,7 @@ class MainWindow(Gtk.Window):
success, message = libflatpak_query.add_file_permissions(
app_id,
path,
- None,
+ "filesystems",
self.system_mode
)
if success:
@@ -2186,6 +2197,504 @@ class MainWindow(Gtk.Window):
parent_box.add(row)
return row, switch
+ def _global_add_bus_section(self, listbox, section_title, perm_type):
+ """Helper method to add System Bus or Session Bus section"""
+ # Add separator
+ sep = Gtk.Separator(orientation=Gtk.Orientation.HORIZONTAL)
+ listbox.add(sep)
+
+ # Add section header
+ row_header = Gtk.ListBoxRow(selectable=False)
+ box_header = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=6)
+ label_header = Gtk.Label(label=f"{section_title}",
+ use_markup=True, xalign=0)
+ box_header.pack_start(label_header, True, True, 0)
+ row_header.add(box_header)
+ listbox.add(row_header)
+
+ # Get permissions
+ success, perms = libflatpak_query.global_list_other_perm_values(perm_type, True, self.system_mode)
+ if not success:
+ perms = {"paths": []}
+
+ # Add Talks section
+ talks_row = Gtk.ListBoxRow(selectable=False)
+ talks_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=6)
+ talks_row.add(talks_box)
+
+ talks_header = Gtk.Label(label="Talks", xalign=0)
+ talks_box.pack_start(talks_header, False, False, 0)
+
+ # Add separator between header and paths
+ talks_box.pack_start(Gtk.Separator(orientation=Gtk.Orientation.HORIZONTAL),
+ False, False, 0)
+
+ # Add talk paths
+ for path in perms["paths"]:
+ if "talk" in path:
+ row = Gtk.ListBoxRow(selectable=False)
+ hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=50)
+ row.add(hbox)
+
+ vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
+ hbox.pack_start(vbox, True, True, 0)
+
+ label = Gtk.Label(label=path.split("=")[0], xalign=0)
+ vbox.pack_start(label, True, True, 0)
+
+ btn = Gtk.Button(label="Remove")
+ btn.connect("clicked", self._global_on_remove_path, path, perm_type)
+ hbox.pack_end(btn, False, True, 0)
+
+ talks_box.add(row)
+
+ listbox.add(talks_row)
+
+ # Add Owns section
+ owns_row = Gtk.ListBoxRow(selectable=False)
+ owns_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=6)
+ owns_row.add(owns_box)
+
+ owns_header = Gtk.Label(label="Owns", xalign=0)
+ owns_box.pack_start(owns_header, False, False, 0)
+
+ # Add separator between header and paths
+ owns_box.pack_start(Gtk.Separator(orientation=Gtk.Orientation.HORIZONTAL),
+ False, False, 0)
+
+ # Add own paths
+ for path in perms["paths"]:
+ if "own" in path:
+ row = Gtk.ListBoxRow(selectable=False)
+ hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=50)
+ row.add(hbox)
+
+ vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
+ hbox.pack_start(vbox, True, True, 0)
+
+ label = Gtk.Label(label=path.split("=")[0], xalign=0)
+ vbox.pack_start(label, True, True, 0)
+
+ btn = Gtk.Button(label="Remove")
+ btn.connect("clicked", self._on_global_remove_path, path, perm_type)
+ hbox.pack_end(btn, False, True, 0)
+
+ owns_box.add(row)
+
+ owns_row.show_all()
+ listbox.add(owns_row)
+
+ # Add add button
+ add_path_row = Gtk.ListBoxRow(selectable=False)
+ hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=50)
+ add_path_row.add(hbox)
+
+ btn = Gtk.Button(label="Add Path")
+ btn.connect("clicked", self._global_on_add_path, perm_type)
+ hbox.pack_end(btn, False, True, 0)
+
+ listbox.add(add_path_row)
+
+ def _global_add_path_section(self, listbox, section_title, perm_type):
+ """Helper method to add sections with paths (Persistent, Environment)"""
+ # Add separator
+ sep = Gtk.Separator(orientation=Gtk.Orientation.HORIZONTAL)
+ listbox.add(sep)
+
+ # Add section header
+ row_header = Gtk.ListBoxRow(selectable=False)
+ box_header = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=6)
+ label_header = Gtk.Label(label=f"{section_title}",
+ use_markup=True, xalign=0)
+ box_header.pack_start(label_header, True, True, 0)
+ row_header.add(box_header)
+ listbox.add(row_header)
+
+ # Get permissions
+ if perm_type == "persistent":
+ success, perms = libflatpak_query.global_list_other_perm_toggles(perm_type, True, self.system_mode)
+ else:
+ success, perms = libflatpak_query.global_list_other_perm_values(perm_type, True, self.system_mode)
+ if not success:
+ perms = {"paths": []}
+
+ # Add paths
+ for path in perms["paths"]:
+ row = Gtk.ListBoxRow(selectable=False)
+ hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=50)
+ row.add(hbox)
+
+ vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
+ hbox.pack_start(vbox, True, True, 0)
+
+ label = Gtk.Label(label=path, xalign=0)
+ vbox.pack_start(label, True, True, 0)
+
+ btn = Gtk.Button(label="Remove")
+ btn.connect("clicked", self._global_on_remove_path, path, perm_type)
+ hbox.pack_end(btn, False, True, 0)
+
+ listbox.add(row)
+
+ # Add add button
+ row = Gtk.ListBoxRow(selectable=False)
+ hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=50)
+ row.add(hbox)
+
+ btn = Gtk.Button(label="Add Path")
+ btn.connect("clicked", self._global_on_add_path, perm_type)
+ hbox.pack_end(btn, False, True, 0)
+
+ listbox.add(row)
+
+ def _global_add_filesystem_section(self, listbox, section_title):
+ """Helper method to add the Filesystems section"""
+ # Add separator
+ sep = Gtk.Separator(orientation=Gtk.Orientation.HORIZONTAL)
+ listbox.add(sep)
+
+ # Add section header
+ row_header = Gtk.ListBoxRow(selectable=False)
+ box_header = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=6)
+ label_header = Gtk.Label(label=f"{section_title}",
+ use_markup=True, xalign=0)
+ box_header.pack_start(label_header, True, True, 0)
+ row_header.add(box_header)
+ listbox.add(row_header)
+
+ # Get filesystem permissions
+ success, perms = libflatpak_query.global_list_file_perms(True, self.system_mode)
+ if not success:
+ perms = {"paths": [], "special_paths": []}
+
+ # Add special paths as toggles
+ special_paths = [
+ ("All user files", "home", "Access to all user files"),
+ ("All system files", "host", "Access to all system files"),
+ ("All system libraries, executables and static data", "host-os", "Access to system libraries and executables"),
+ ("All system configurations", "host-etc", "Access to system configurations")
+ ]
+
+ for display_text, option, description in special_paths:
+ row = Gtk.ListBoxRow(selectable=False)
+ hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=50)
+ row.add(hbox)
+
+ vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
+ hbox.pack_start(vbox, True, True, 0)
+
+ label = Gtk.Label(label=display_text, xalign=0)
+ desc = Gtk.Label(label=description, xalign=0)
+ vbox.pack_start(label, True, True, 0)
+ vbox.pack_start(desc, True, True, 0)
+
+ switch = Gtk.Switch()
+ switch.props.valign = Gtk.Align.CENTER
+ switch.set_active(option in perms["special_paths"])
+ switch.set_sensitive(True)
+ switch.connect("state-set", self._global_on_switch_toggled, "filesystems", option)
+ hbox.pack_end(switch, False, True, 0)
+
+ listbox.add(row)
+
+ # Add normal paths with remove buttons
+ for path in perms["paths"]:
+ if path != "":
+ row = Gtk.ListBoxRow(selectable=False)
+ hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=50)
+ row.add(hbox)
+
+ vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
+ hbox.pack_start(vbox, True, True, 0)
+
+ label = Gtk.Label(label=path, xalign=0)
+ vbox.pack_start(label, True, True, 0)
+
+ btn = Gtk.Button(label="Remove")
+ btn.connect("clicked", self._global_on_remove_path, path)
+ hbox.pack_end(btn, False, True, 0)
+
+ listbox.add(row)
+
+ # Add add button
+ row = Gtk.ListBoxRow(selectable=False)
+ hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=50)
+ row.add(hbox)
+
+ btn = Gtk.Button(label="Add Path")
+ btn.connect("clicked", self._global_on_add_path)
+ hbox.pack_end(btn, False, True, 0)
+
+ listbox.add(row)
+
+
+ def global_on_options_clicked(self, button):
+ """Handle the app options click"""
+
+ # Create window (as before)
+ self.global_options_window = Gtk.Window(title="Global Setting Overrides")
+ self.global_options_window.set_default_size(500, 700)
+
+ # Set subtitle
+ header_bar = Gtk.HeaderBar(title="Global Setting Overrides",
+ subtitle="Override list of resources selectively granted to applications")
+ header_bar.set_show_close_button(True)
+ self.global_options_window.set_titlebar(header_bar)
+
+ # Create main container with padding
+ box_outer = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=6)
+ box_outer.set_border_width(20)
+ self.global_options_window.add(box_outer)
+
+ # Create scrolled window for content
+ scrolled = Gtk.ScrolledWindow()
+ scrolled.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC)
+
+ # Create list box for options
+ listbox = Gtk.ListBox()
+ listbox.set_selection_mode(Gtk.SelectionMode.NONE)
+
+ # No portals section. Portals are only handled on per-user basis.
+
+ # Add other sections with correct permission types
+ self._global_add_section(listbox, "Shared", "shared", [
+ ("Network", "network", "Can communicate over network"),
+ ("Inter-process communications", "ipc", "Can communicate with other applications")
+ ])
+
+ self._global_add_section(listbox, "Sockets", "sockets", [
+ ("X11 windowing system", "x11", "Can access X11 display server"),
+ ("Wayland windowing system", "wayland", "Can access Wayland display server"),
+ ("Fallback to X11 windowing system", "fallback-x11", "Can fallback to X11 if Wayland unavailable"),
+ ("PulseAudio sound server", "pulseaudio", "Can access PulseAudio sound system"),
+ ("D-Bus session bus", "session-bus", "Can communicate with session D-Bus"),
+ ("D-Bus system bus", "system-bus", "Can communicate with system D-Bus"),
+ ("Secure Shell agent", "ssh-auth", "Can access SSH authentication agent"),
+ ("Smart cards", "pcsc", "Can access smart card readers"),
+ ("Printing system", "cups", "Can access printing subsystem"),
+ ("GPG-Agent directories", "gpg-agent", "Can access GPG keyring"),
+ ("Inherit Wayland socket", "inherit-wayland-socket", "Can inherit existing Wayland socket")
+ ])
+
+ self._global_add_section(listbox, "Devices", "devices", [
+ ("GPU Acceleration", "dri", "Can use hardware graphics acceleration"),
+ ("Input devices", "input", "Can access input devices"),
+ ("Virtualization", "kvm", "Can access virtualization services"),
+ ("Shared memory", "shm", "Can use shared memory"),
+ ("All devices (e.g. webcam)", "all", "Can access all device files")
+ ])
+
+ self._global_add_section(listbox, "Features", "features", [
+ ("Development syscalls", "devel", "Can perform development operations"),
+ ("Programs from other architectures", "multiarch", "Can execute programs from other architectures"),
+ ("Bluetooth", "bluetooth", "Can access Bluetooth hardware"),
+ ("Controller Area Network bus", "canbus", "Can access CAN bus"),
+ ("Application Shared Memory", "per-app-dev-shm", "Can use shared memory for IPC")
+ ])
+
+ # Add Filesystems section
+ self._global_add_filesystem_section(listbox, "Filesystems")
+ self._global_add_path_section(listbox, "Persistent", "persistent")
+ self._global_add_path_section(listbox, "Environment", "environment")
+ self._global_add_bus_section(listbox, "System Bus", "system_bus")
+ self._global_add_bus_section(listbox, "Session Bus", "session_bus")
+
+ # Add widgets to container
+ box_outer.pack_start(scrolled, True, True, 0)
+ scrolled.add(listbox)
+
+ # Connect destroy signal
+ self.global_options_window.connect("destroy", lambda w: w.destroy())
+
+ # Show window
+ self.global_options_window.show_all()
+
+ def _global_add_section(self, listbox, section_title, perm_type=None, section_options=None):
+ """Helper method to add a section with multiple options"""
+ # Add separator
+ sep = Gtk.Separator(orientation=Gtk.Orientation.HORIZONTAL)
+ listbox.add(sep)
+
+ # Add section header
+ row_header = Gtk.ListBoxRow(selectable=False)
+ box_header = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=6)
+ label_header = Gtk.Label(label=f"{section_title}",
+ use_markup=True, xalign=0)
+ box_header.pack_start(label_header, True, True, 0)
+ row_header.add(box_header)
+ listbox.add(row_header)
+
+ if section_title in ["Persistent", "Environment", "System Bus", "Session Bus"]:
+ success, perms = libflatpak_query.global_list_other_perm_toggles(perm_type, True, self.system_mode)
+ if not success:
+ perms = {"paths": []}
+ else:
+ success, perms = libflatpak_query.global_list_other_perm_toggles(perm_type, True, self.system_mode)
+ if not success:
+ perms = {"paths": []}
+
+ if section_options:
+ # Add options
+ for display_text, option, description in section_options:
+ row = Gtk.ListBoxRow(selectable=False)
+ hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=50)
+ row.add(hbox)
+
+ vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
+ hbox.pack_start(vbox, True, True, 0)
+
+ label = Gtk.Label(label=display_text, xalign=0)
+ desc = Gtk.Label(label=description, xalign=0)
+ vbox.pack_start(label, True, True, 0)
+ vbox.pack_start(desc, True, True, 0)
+
+ switch = Gtk.Switch()
+ switch.props.valign = Gtk.Align.CENTER
+
+ # Handle portal permissions differently
+ if section_title == "Portals":
+ if option in perms:
+ switch.set_active(perms[option] == 'yes')
+ switch.set_sensitive(True)
+ else:
+ switch.set_sensitive(False)
+ else:
+ switch.set_active(option in [p.lower() for p in perms["paths"]])
+ switch.set_sensitive(True)
+
+ switch.connect("state-set", self._global_on_switch_toggled, perm_type, option)
+ hbox.pack_end(switch, False, True, 0)
+
+ listbox.add(row)
+
+ def _global_on_switch_toggled(self, switch, state, perm_type, option):
+ """Handle switch toggle events"""
+ success, message = libflatpak_query.global_toggle_other_perms(
+ perm_type,
+ option.lower(),
+ state,
+ True,
+ self.system_mode
+ )
+
+ if not success:
+ switch.set_active(not state)
+ print(f"Error: {message}")
+
+ def _global_on_remove_path(self, button, path, perm_type=None):
+ """Handle remove path button click"""
+ if perm_type:
+ if perm_type == "persistent":
+ success, message = libflatpak_query.global_remove_file_permissions(
+ path,
+ "persistent",
+ True,
+ self.system_mode
+ )
+ else:
+ success, message = libflatpak_query.global_remove_permission_value(
+ perm_type,
+ path,
+ True,
+ self.system_mode
+ )
+ else:
+ success, message = libflatpak_query.global_remove_file_permissions(
+ path,
+ "filesystems",
+ True,
+ self.system_mode
+ )
+ if success:
+ # Refresh the current window
+ self.global_options_window.destroy()
+ self.global_on_options_clicked(None)
+
+ def _global_on_add_path(self, button, perm_type=None):
+ """Handle add path button click"""
+ dialog = Gtk.Dialog(
+ title="Add Filesystem Path",
+ parent=self.global_options_window,
+ modal=True,
+ destroy_with_parent=True,
+ )
+
+ # Add buttons separately
+ dialog.add_button("Cancel", Gtk.ResponseType.CANCEL)
+ dialog.add_button("Add", Gtk.ResponseType.OK)
+
+ entry = Gtk.Entry()
+ entry.set_placeholder_text("Enter filesystem path")
+ dialog.vbox.pack_start(entry, True, True, 0)
+ dialog.show_all()
+
+ response = dialog.run()
+ if response == Gtk.ResponseType.OK:
+ path = entry.get_text()
+ if perm_type:
+ if perm_type == "persistent":
+ success, message = libflatpak_query.global_add_file_permissions(
+ path,
+ "persistent",
+ True,
+ self.system_mode
+ )
+ else:
+ success, message = libflatpak_query.global_add_permission_value(
+ perm_type,
+ path,
+ True,
+ self.system_mode
+ )
+ else:
+ success, message = libflatpak_query.global_add_file_permissions(
+ path,
+ "filesystems",
+ True,
+ self.system_mode
+ )
+ if success:
+ # Refresh the current window
+ self.global_options_window.destroy()
+ self.global_on_options_clicked(None)
+ message_type = Gtk.MessageType.INFO
+ else:
+ message_type = Gtk.MessageType.ERROR
+ if message:
+ error_dialog = Gtk.MessageDialog(
+ transient_for=None, # Changed from self
+ modal=True,
+ destroy_with_parent=True,
+ message_type=message_type,
+ buttons=Gtk.ButtonsType.OK,
+ text=message
+ )
+ error_dialog.run()
+ error_dialog.destroy()
+ dialog.destroy()
+
+ def _global_add_option(self, parent_box, label_text, description):
+ """Helper method to add an individual option"""
+ row = Gtk.ListBoxRow(selectable=False)
+ hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=50)
+ row.add(hbox)
+
+ vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
+ hbox.pack_start(vbox, True, True, 0)
+
+ label = Gtk.Label(label=label_text, xalign=0)
+ desc = Gtk.Label(label=description, xalign=0)
+ vbox.pack_start(label, True, True, 0)
+ vbox.pack_start(desc, True, True, 0)
+
+ switch = Gtk.Switch()
+ switch.props.valign = Gtk.Align.CENTER
+ hbox.pack_end(switch, False, True, 0)
+
+ parent_box.add(row)
+ return row, switch
+
+
def on_update_clicked(self, button, app):
"""Handle the Remove button click with removal options"""
details = app.get_details()
diff --git a/subcategories_data.json b/subcategories_data.json
index 8e09ba9..0e05138 100644
--- a/subcategories_data.json
+++ b/subcategories_data.json
@@ -166,8 +166,8 @@
"aarch64"
],
"added_at": 1515152347,
- "trending": 12.723651636674514,
- "installs_last_month": 25806,
+ "trending": 10.020591184133146,
+ "installs_last_month": 25775,
"isMobileFriendly": false
},
{
@@ -212,8 +212,8 @@
"aarch64"
],
"added_at": 1524984209,
- "trending": 2.3109435394006455,
- "installs_last_month": 11339,
+ "trending": 1.6144544094536433,
+ "installs_last_month": 11392,
"isMobileFriendly": false
},
{
@@ -248,8 +248,8 @@
"aarch64"
],
"added_at": 1524984065,
- "trending": 5.982155316789067,
- "installs_last_month": 6641,
+ "trending": 4.065804841483205,
+ "installs_last_month": 6719,
"isMobileFriendly": false
},
{
@@ -284,8 +284,8 @@
"aarch64"
],
"added_at": 1527846441,
- "trending": 9.707405861783862,
- "installs_last_month": 4637,
+ "trending": 9.298643825835184,
+ "installs_last_month": 4640,
"isMobileFriendly": false
},
{
@@ -322,8 +322,8 @@
"aarch64"
],
"added_at": 1681218046,
- "trending": 7.454674157342846,
- "installs_last_month": 3794,
+ "trending": 7.825065060941292,
+ "installs_last_month": 3766,
"isMobileFriendly": false
},
{
@@ -367,8 +367,8 @@
"aarch64"
],
"added_at": 1584989949,
- "trending": 6.868606943453941,
- "installs_last_month": 2856,
+ "trending": 8.51081485782882,
+ "installs_last_month": 2833,
"isMobileFriendly": false
},
{
@@ -499,8 +499,8 @@
"aarch64"
],
"added_at": 1492029291,
- "trending": 8.802479782319523,
- "installs_last_month": 2268,
+ "trending": 8.474356795955481,
+ "installs_last_month": 2275,
"isMobileFriendly": false
},
{
@@ -534,8 +534,8 @@
"aarch64"
],
"added_at": 1609404532,
- "trending": 9.448477949969858,
- "installs_last_month": 2220,
+ "trending": 8.603522210626592,
+ "installs_last_month": 2219,
"isMobileFriendly": false
},
{
@@ -720,8 +720,8 @@
"aarch64"
],
"added_at": 1507215078,
- "trending": 16.470575955698777,
- "installs_last_month": 2215,
+ "trending": 17.061054399148446,
+ "installs_last_month": 2214,
"isMobileFriendly": false
},
{
@@ -755,8 +755,8 @@
"aarch64"
],
"added_at": 1516895653,
- "trending": 10.049498596107863,
- "installs_last_month": 2180,
+ "trending": 7.992681357595094,
+ "installs_last_month": 2207,
"isMobileFriendly": false
},
{
@@ -916,8 +916,8 @@
"aarch64"
],
"added_at": 1659508310,
- "trending": 14.490169802250072,
- "installs_last_month": 1910,
+ "trending": 13.950423078462023,
+ "installs_last_month": 1906,
"isMobileFriendly": true
},
{
@@ -961,7 +961,7 @@
"aarch64"
],
"added_at": 1526595771,
- "trending": 7.46093697517669,
+ "trending": 7.4649784582121885,
"installs_last_month": 1766,
"isMobileFriendly": false
},
@@ -1100,8 +1100,8 @@
"aarch64"
],
"added_at": 1605608829,
- "trending": 10.084907809742424,
- "installs_last_month": 1307,
+ "trending": 11.192559127396455,
+ "installs_last_month": 1336,
"isMobileFriendly": false
},
{
@@ -1269,8 +1269,8 @@
"aarch64"
],
"added_at": 1589480930,
- "trending": 9.225058793003685,
- "installs_last_month": 1270,
+ "trending": 11.5176246147508,
+ "installs_last_month": 1269,
"isMobileFriendly": false
},
{
@@ -1352,8 +1352,8 @@
"aarch64"
],
"added_at": 1516283128,
- "trending": 10.48315726399101,
- "installs_last_month": 1222,
+ "trending": 13.030056613154922,
+ "installs_last_month": 1231,
"isMobileFriendly": false
},
{
@@ -1409,8 +1409,8 @@
"aarch64"
],
"added_at": 1511268422,
- "trending": 4.651357564962158,
- "installs_last_month": 1221,
+ "trending": 6.422178383046858,
+ "installs_last_month": 1218,
"isMobileFriendly": false
},
{
@@ -1445,8 +1445,8 @@
"aarch64"
],
"added_at": 1569627455,
- "trending": 1.570154358059014,
- "installs_last_month": 931,
+ "trending": 1.6902871315901749,
+ "installs_last_month": 937,
"isMobileFriendly": false
},
{
@@ -1483,8 +1483,8 @@
"x86_64"
],
"added_at": 1600446687,
- "trending": 5.297044207887448,
- "installs_last_month": 625,
+ "trending": 5.842650455053168,
+ "installs_last_month": 606,
"isMobileFriendly": false
},
{
@@ -1518,7 +1518,7 @@
"aarch64"
],
"added_at": 1652338394,
- "trending": -0.3689142666296674,
+ "trending": 1.94158664659126,
"installs_last_month": 292,
"isMobileFriendly": false
},
@@ -1665,8 +1665,45 @@
"aarch64"
],
"added_at": 1582404328,
- "trending": 13.567220918168202,
- "installs_last_month": 281,
+ "trending": 11.247374583335246,
+ "installs_last_month": 277,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "MilkyTracker",
+ "keywords": null,
+ "summary": "Fast Tracker II inspired music tracker",
+ "description": "\n MilkyTracker is an open source, multi-platform music application for creating .MOD and .XM module files.\n It attempts to recreate the module replay and user experience of the popular DOS program Fasttracker II,\n with special playback modes available for improved Amiga ProTracker 2/3 compatibility.\n \n ",
+ "id": "org_milkytracker_MilkyTracker",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0+ AND BSD-3-Clause",
+ "is_free_license": true,
+ "app_id": "org.milkytracker.MilkyTracker",
+ "icon": "https://dl.flathub.org/media/org/milkytracker/MilkyTracker/8fbb32172d6b2ad97afd7d8d7b8bda25/icons/128x128/org.milkytracker.MilkyTracker.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Audio",
+ "AudioVideoEditing",
+ "Sequencer"
+ ],
+ "developer_name": "The MilkyTracker team",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1726311266,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1700645174,
+ "trending": 6.253486169452835,
+ "installs_last_month": 197,
"isMobileFriendly": false
},
{
@@ -1703,45 +1740,8 @@
"aarch64"
],
"added_at": 1735821490,
- "trending": 4.900359801152896,
- "installs_last_month": 212,
- "isMobileFriendly": false
- },
- {
- "name": "MilkyTracker",
- "keywords": null,
- "summary": "Fast Tracker II inspired music tracker",
- "description": "\n MilkyTracker is an open source, multi-platform music application for creating .MOD and .XM module files.\n It attempts to recreate the module replay and user experience of the popular DOS program Fasttracker II,\n with special playback modes available for improved Amiga ProTracker 2/3 compatibility.\n \n ",
- "id": "org_milkytracker_MilkyTracker",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0+ AND BSD-3-Clause",
- "is_free_license": true,
- "app_id": "org.milkytracker.MilkyTracker",
- "icon": "https://dl.flathub.org/media/org/milkytracker/MilkyTracker/8fbb32172d6b2ad97afd7d8d7b8bda25/icons/128x128/org.milkytracker.MilkyTracker.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Audio",
- "AudioVideoEditing",
- "Sequencer"
- ],
- "developer_name": "The MilkyTracker team",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1726311266,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1700645174,
- "trending": 5.521204245225851,
- "installs_last_month": 195,
+ "trending": 7.005504945515277,
+ "installs_last_month": 194,
"isMobileFriendly": false
},
{
@@ -1781,94 +1781,8 @@
"x86_64"
],
"added_at": 1661805822,
- "trending": -0.5628666379638805,
- "installs_last_month": 156,
- "isMobileFriendly": false
- },
- {
- "name": "GSequencer",
- "keywords": [
- "audio",
- "sequencer",
- "notation",
- "editor",
- "midi",
- "synth",
- "mixing",
- "effects"
- ],
- "summary": "Advanced Gtk+ Sequencer",
- "description": "GSequencer provides you various tools to play, create, edit and mix your own music.\n It features a step sequencer, piano roll, automation and wave-form editor.\n ",
- "id": "org_nongnu_gsequencer_gsequencer",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "org.nongnu.gsequencer.gsequencer",
- "icon": "https://dl.flathub.org/media/org/nongnu/gsequencer.gsequencer/01dbb457bde330ce2c53d6c75effff8b/icons/128x128/org.nongnu.gsequencer.gsequencer.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Audio",
- "Midi",
- "Sequencer",
- "AudioVideoEditing",
- "Music",
- "GTK"
- ],
- "developer_name": "Joël Krähemann",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.gnome.Platform/x86_64/45",
- "updated_at": 1743005318,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1559685891,
- "trending": 6.830309966173196,
- "installs_last_month": 122,
- "isMobileFriendly": false
- },
- {
- "name": "mhWaveEdit",
- "keywords": null,
- "summary": "mhWaveEdit is a graphical program for editing sound files",
- "description": "MhWaveEdit can play and edit sound files like .wav, .mp3, .ogg. It is intended to be user-friendly and robust. It does not require a fast computer. It supports effects like: fade in/out, Normalize, Volume adjust/fade, convert sample rate, convert sample format, byte swap, mix to mono, add channel, map channels, combine channels, speed adjustment, pipe through program.Features:Loads, plays, records and saves wav, mp3, ogg files and a few other formats as well.If the file is small, it's loaded into memory. Otherwise, it's edited on disc.Cut, copy and paste.Combine two or more files into single mp3/wav/oggVolume and speed adjustmentConvert between sample rates, sample sizes, stereo and monoYou can always undo, all the way back to the original state of the file (even when editing large files.)",
- "id": "io_github_magnush_mhWaveEdit",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0",
- "is_free_license": true,
- "app_id": "io.github.magnush.mhWaveEdit",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.github.magnush.mhWaveEdit.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Audio",
- "AudioVideoEditing",
- "Recorder"
- ],
- "developer_name": "Magnus Hjorth",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1699222262,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1699222262,
- "trending": 4.141203764898369,
- "installs_last_month": 115,
+ "trending": 0.06946144212292804,
+ "installs_last_month": 157,
"isMobileFriendly": false
},
{
@@ -1908,7 +1822,93 @@
"aarch64"
],
"added_at": 1709420160,
- "trending": 5.456990973828147,
+ "trending": 8.072905233540176,
+ "installs_last_month": 120,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "GSequencer",
+ "keywords": [
+ "audio",
+ "sequencer",
+ "notation",
+ "editor",
+ "midi",
+ "synth",
+ "mixing",
+ "effects"
+ ],
+ "summary": "Advanced Gtk+ Sequencer",
+ "description": "GSequencer provides you various tools to play, create, edit and mix your own music.\n It features a step sequencer, piano roll, automation and wave-form editor.\n ",
+ "id": "org_nongnu_gsequencer_gsequencer",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "org.nongnu.gsequencer.gsequencer",
+ "icon": "https://dl.flathub.org/media/org/nongnu/gsequencer.gsequencer/bfa928f9a41469669f49bcda3ebe0000/icons/128x128/org.nongnu.gsequencer.gsequencer.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Audio",
+ "Midi",
+ "Sequencer",
+ "AudioVideoEditing",
+ "Music",
+ "GTK"
+ ],
+ "developer_name": "Joël Krähemann",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.gnome.Platform/x86_64/45",
+ "updated_at": 1743750141,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1559685891,
+ "trending": 7.678017195512412,
+ "installs_last_month": 118,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "mhWaveEdit",
+ "keywords": null,
+ "summary": "mhWaveEdit is a graphical program for editing sound files",
+ "description": "MhWaveEdit can play and edit sound files like .wav, .mp3, .ogg. It is intended to be user-friendly and robust. It does not require a fast computer. It supports effects like: fade in/out, Normalize, Volume adjust/fade, convert sample rate, convert sample format, byte swap, mix to mono, add channel, map channels, combine channels, speed adjustment, pipe through program.Features:Loads, plays, records and saves wav, mp3, ogg files and a few other formats as well.If the file is small, it's loaded into memory. Otherwise, it's edited on disc.Cut, copy and paste.Combine two or more files into single mp3/wav/oggVolume and speed adjustmentConvert between sample rates, sample sizes, stereo and monoYou can always undo, all the way back to the original state of the file (even when editing large files.)",
+ "id": "io_github_magnush_mhWaveEdit",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0",
+ "is_free_license": true,
+ "app_id": "io.github.magnush.mhWaveEdit",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.github.magnush.mhWaveEdit.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Audio",
+ "AudioVideoEditing",
+ "Recorder"
+ ],
+ "developer_name": "Magnus Hjorth",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1699222262,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1699222262,
+ "trending": 2.995800670671661,
"installs_last_month": 115,
"isMobileFriendly": false
},
@@ -1947,8 +1947,8 @@
"aarch64"
],
"added_at": 1516896221,
- "trending": 0.761781602587297,
- "installs_last_month": 110,
+ "trending": 0.1327058038450084,
+ "installs_last_month": 114,
"isMobileFriendly": false
},
{
@@ -1987,7 +1987,7 @@
],
"added_at": 1515682193,
"trending": 0.3101710665733577,
- "installs_last_month": 71,
+ "installs_last_month": 69,
"isMobileFriendly": false
},
{
@@ -2025,8 +2025,8 @@
"aarch64"
],
"added_at": 1512404356,
- "trending": 11.25323620919921,
- "installs_last_month": 69,
+ "trending": 7.437229202448085,
+ "installs_last_month": 65,
"isMobileFriendly": false
},
{
@@ -2063,8 +2063,8 @@
"aarch64"
],
"added_at": 1644998806,
- "trending": 7.407806024654628,
- "installs_last_month": 47,
+ "trending": 14.770891673976145,
+ "installs_last_month": 50,
"isMobileFriendly": false
},
{
@@ -2108,8 +2108,8 @@
"aarch64"
],
"added_at": 1516920667,
- "trending": 1.1532917440546329,
- "installs_last_month": 43,
+ "trending": 0.3444761337350638,
+ "installs_last_month": 45,
"isMobileFriendly": false
},
{
@@ -2184,8 +2184,8 @@
"aarch64"
],
"added_at": 1516896295,
- "trending": 0.6642500127048558,
- "installs_last_month": 37,
+ "trending": 0.7236059525909909,
+ "installs_last_month": 34,
"isMobileFriendly": false
},
{
@@ -2221,13 +2221,13 @@
"aarch64"
],
"added_at": 1515682126,
- "trending": 4.459161258923554,
- "installs_last_month": 23,
+ "trending": 0.6358055295311942,
+ "installs_last_month": 27,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 8,
+ "processingTimeMs": 7,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -2491,8 +2491,8 @@
"aarch64"
],
"added_at": 1708430378,
- "trending": 10.573662201649224,
- "installs_last_month": 3014,
+ "trending": 8.96907177557702,
+ "installs_last_month": 3005,
"isMobileFriendly": false
}
],
@@ -2545,8 +2545,8 @@
"aarch64"
],
"added_at": 1561317361,
- "trending": 7.656825020674783,
- "installs_last_month": 3672,
+ "trending": 9.53599877478392,
+ "installs_last_month": 3679,
"isMobileFriendly": false
},
{
@@ -2607,8 +2607,8 @@
"aarch64"
],
"added_at": 1509301060,
- "trending": 10.094300244027464,
- "installs_last_month": 3347,
+ "trending": 7.206892347614331,
+ "installs_last_month": 3351,
"isMobileFriendly": false
},
{
@@ -2652,8 +2652,8 @@
"x86_64"
],
"added_at": 1618343817,
- "trending": 7.462607691248954,
- "installs_last_month": 2749,
+ "trending": 8.032154068216617,
+ "installs_last_month": 2780,
"isMobileFriendly": false
},
{
@@ -2694,8 +2694,8 @@
"aarch64"
],
"added_at": 1551998072,
- "trending": 6.208662424859149,
- "installs_last_month": 2223,
+ "trending": 7.811125377620675,
+ "installs_last_month": 2189,
"isMobileFriendly": false
},
{
@@ -2733,8 +2733,8 @@
"aarch64"
],
"added_at": 1643381927,
- "trending": 13.205948050094998,
- "installs_last_month": 1790,
+ "trending": 12.32000251913954,
+ "installs_last_month": 1762,
"isMobileFriendly": false
},
{
@@ -2777,8 +2777,8 @@
"aarch64"
],
"added_at": 1646984796,
- "trending": 6.087149180691498,
- "installs_last_month": 1756,
+ "trending": 6.333867561836902,
+ "installs_last_month": 1742,
"isMobileFriendly": false
},
{
@@ -2822,8 +2822,8 @@
"aarch64"
],
"added_at": 1570423408,
- "trending": 4.160612407844427,
- "installs_last_month": 1170,
+ "trending": 5.218242772564884,
+ "installs_last_month": 1173,
"isMobileFriendly": false
},
{
@@ -2866,8 +2866,8 @@
"aarch64"
],
"added_at": 1607504434,
- "trending": 2.2853524574705646,
- "installs_last_month": 858,
+ "trending": 0.9041475959494992,
+ "installs_last_month": 844,
"isMobileFriendly": false
},
{
@@ -2904,8 +2904,8 @@
"x86_64"
],
"added_at": 1600446687,
- "trending": 5.297044207887448,
- "installs_last_month": 625,
+ "trending": 5.842650455053168,
+ "installs_last_month": 606,
"isMobileFriendly": false
},
{
@@ -2934,7 +2934,7 @@
"project_license": "GPL-2.0+",
"is_free_license": true,
"app_id": "org.rncbc.qtractor",
- "icon": "https://dl.flathub.org/media/org/rncbc/qtractor/f8232488124c4c307ea0893fe8931eb9/icons/128x128/org.rncbc.qtractor.png",
+ "icon": "https://dl.flathub.org/media/org/rncbc/qtractor/1364894b40597ac7b84bf8dd48114662/icons/128x128/org.rncbc.qtractor.png",
"main_categories": "audiovideo",
"sub_categories": [
"Audio",
@@ -2950,14 +2950,14 @@
"verification_website": "rncbc.org",
"verification_timestamp": "1694345369",
"runtime": "org.kde.Platform/x86_64/6.8",
- "updated_at": 1739103386,
+ "updated_at": 1743759809,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1643704549,
- "trending": 2.7995778270024503,
- "installs_last_month": 590,
+ "trending": 3.0514381221069016,
+ "installs_last_month": 587,
"isMobileFriendly": false
},
{
@@ -2997,8 +2997,8 @@
"aarch64"
],
"added_at": 1730517694,
- "trending": 5.254670467377507,
- "installs_last_month": 505,
+ "trending": 4.8411545150327555,
+ "installs_last_month": 502,
"isMobileFriendly": false
},
{
@@ -3044,8 +3044,8 @@
"aarch64"
],
"added_at": 1641662368,
- "trending": 7.384405770805481,
- "installs_last_month": 485,
+ "trending": 6.514475345989212,
+ "installs_last_month": 486,
"isMobileFriendly": false
},
{
@@ -3080,8 +3080,8 @@
"aarch64"
],
"added_at": 1620976072,
- "trending": 2.68938157047957,
- "installs_last_month": 482,
+ "trending": 3.741578850452523,
+ "installs_last_month": 483,
"isMobileFriendly": false
},
{
@@ -3126,8 +3126,8 @@
"aarch64"
],
"added_at": 1620627935,
- "trending": 7.69201901226532,
- "installs_last_month": 453,
+ "trending": 8.981138273026694,
+ "installs_last_month": 461,
"isMobileFriendly": false
},
{
@@ -3184,8 +3184,8 @@
"aarch64"
],
"added_at": 1610015828,
- "trending": 6.418588369858509,
- "installs_last_month": 452,
+ "trending": 5.102764112911416,
+ "installs_last_month": 444,
"isMobileFriendly": false
},
{
@@ -3233,8 +3233,8 @@
"aarch64"
],
"added_at": 1597744310,
- "trending": 7.221615878211772,
- "installs_last_month": 381,
+ "trending": 5.5210511262519795,
+ "installs_last_month": 380,
"isMobileFriendly": false
},
{
@@ -3272,8 +3272,8 @@
"aarch64"
],
"added_at": 1707812492,
- "trending": 2.8933031291900217,
- "installs_last_month": 292,
+ "trending": 0.4682719195796557,
+ "installs_last_month": 295,
"isMobileFriendly": false
},
{
@@ -3309,7 +3309,7 @@
"aarch64"
],
"added_at": 1707293041,
- "trending": 7.949802737052493,
+ "trending": 7.476481543815154,
"installs_last_month": 271,
"isMobileFriendly": false
},
@@ -3352,50 +3352,8 @@
"aarch64"
],
"added_at": 1639599595,
- "trending": 6.0405421340887,
- "installs_last_month": 255,
- "isMobileFriendly": false
- },
- {
- "name": "Drumstick MIDI Monitor",
- "keywords": [
- "Midi",
- "Sequencer",
- "Player",
- "Recorder",
- "Monitor"
- ],
- "summary": "Drumstick MIDI Monitor is a MIDI monitor for Linux using ALSA sequencer",
- "description": "\n Drumstick MIDI Monitor logs MIDI events coming from MIDI external ports or applications via the ALSA sequencer,\n and from SMF (Standard MIDI files) or WRK (Cakewalk/Sonar) files. It is especially useful if you want to debug\n MIDI software or your MIDI setup. It features a nice graphical user interface, customizable event filters and\n sequencer parameters, support for MIDI and ALSA messages, and saving the recorded event list to a SMF or text file.\n \n ",
- "id": "net_sourceforge_kmidimon",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0-or-later",
- "is_free_license": true,
- "app_id": "net.sourceforge.kmidimon",
- "icon": "https://dl.flathub.org/media/net/sourceforge/kmidimon/130c446a76c20baba3134c7ecf5e9e5c/icons/128x128/net.sourceforge.kmidimon.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Audio",
- "Midi"
- ],
- "developer_name": "Pedro López-Cabanillas",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "kmidimon.sourceforge.io",
- "verification_timestamp": "1702676888",
- "runtime": "org.kde.Platform/x86_64/6.8",
- "updated_at": 1735426410,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1639599294,
- "trending": 3.3133651023357644,
- "installs_last_month": 220,
+ "trending": 7.982313857449675,
+ "installs_last_month": 236,
"isMobileFriendly": false
},
{
@@ -3477,8 +3435,46 @@
"aarch64"
],
"added_at": 1604312802,
- "trending": 10.243572739755283,
- "installs_last_month": 214,
+ "trending": 9.79813494468178,
+ "installs_last_month": 220,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Helio",
+ "keywords": null,
+ "summary": "Helio Project libre music composition software",
+ "description": "\n Helio is an attempt to rethink a music sequencer to create a\n tool that feels right. It provides a lightweight UI to help you\n get into the zone and focus on your ideas.\n \n ",
+ "id": "fm_helio_Workstation",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0",
+ "is_free_license": true,
+ "app_id": "fm.helio.Workstation",
+ "icon": "https://dl.flathub.org/media/fm/helio/Workstation/d9fb602548eca8a8631ff3a2cc7253b5/icons/128x128/fm.helio.Workstation.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Audio",
+ "Midi",
+ "Sequencer",
+ "Music"
+ ],
+ "developer_name": "Helio Developers",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1728946950,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1683544972,
+ "trending": 6.557057325951909,
+ "installs_last_month": 217,
"isMobileFriendly": false
},
{
@@ -3522,46 +3518,50 @@
"aarch64"
],
"added_at": 1596542634,
- "trending": 7.937598613339598,
- "installs_last_month": 212,
+ "trending": 6.903272525667168,
+ "installs_last_month": 213,
"isMobileFriendly": false
},
{
- "name": "Helio",
- "keywords": null,
- "summary": "Helio Project libre music composition software",
- "description": "\n Helio is an attempt to rethink a music sequencer to create a\n tool that feels right. It provides a lightweight UI to help you\n get into the zone and focus on your ideas.\n \n ",
- "id": "fm_helio_Workstation",
+ "name": "Drumstick MIDI Monitor",
+ "keywords": [
+ "Midi",
+ "Sequencer",
+ "Player",
+ "Recorder",
+ "Monitor"
+ ],
+ "summary": "Drumstick MIDI Monitor is a MIDI monitor for Linux using ALSA sequencer",
+ "description": "\n Drumstick MIDI Monitor logs MIDI events coming from MIDI external ports or applications via the ALSA sequencer,\n and from SMF (Standard MIDI files) or WRK (Cakewalk/Sonar) files. It is especially useful if you want to debug\n MIDI software or your MIDI setup. It features a nice graphical user interface, customizable event filters and\n sequencer parameters, support for MIDI and ALSA messages, and saving the recorded event list to a SMF or text file.\n \n ",
+ "id": "net_sourceforge_kmidimon",
"type": "desktop-application",
"translations": {},
- "project_license": "GPL-3.0",
+ "project_license": "GPL-2.0-or-later",
"is_free_license": true,
- "app_id": "fm.helio.Workstation",
- "icon": "https://dl.flathub.org/media/fm/helio/Workstation/d9fb602548eca8a8631ff3a2cc7253b5/icons/128x128/fm.helio.Workstation.png",
+ "app_id": "net.sourceforge.kmidimon",
+ "icon": "https://dl.flathub.org/media/net/sourceforge/kmidimon/130c446a76c20baba3134c7ecf5e9e5c/icons/128x128/net.sourceforge.kmidimon.png",
"main_categories": "audiovideo",
"sub_categories": [
"Audio",
- "Midi",
- "Sequencer",
- "Music"
+ "Midi"
],
- "developer_name": "Helio Developers",
- "verification_verified": false,
- "verification_method": "none",
+ "developer_name": "Pedro López-Cabanillas",
+ "verification_verified": true,
+ "verification_method": "website",
"verification_login_name": null,
"verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1728946950,
+ "verification_login_is_organization": "false",
+ "verification_website": "kmidimon.sourceforge.io",
+ "verification_timestamp": "1702676888",
+ "runtime": "org.kde.Platform/x86_64/6.8",
+ "updated_at": 1735426410,
"arches": [
"x86_64",
"aarch64"
],
- "added_at": 1683544972,
- "trending": 6.614735867106139,
- "installs_last_month": 207,
+ "added_at": 1639599294,
+ "trending": 3.4837924924426704,
+ "installs_last_month": 211,
"isMobileFriendly": false
},
{
@@ -3596,8 +3596,8 @@
"aarch64"
],
"added_at": 1711607059,
- "trending": 4.907385187682862,
- "installs_last_month": 206,
+ "trending": 2.8247178075067425,
+ "installs_last_month": 207,
"isMobileFriendly": false
},
{
@@ -3636,8 +3636,8 @@
"aarch64"
],
"added_at": 1697530126,
- "trending": 5.794034993218163,
- "installs_last_month": 156,
+ "trending": 3.7514726701757186,
+ "installs_last_month": 161,
"isMobileFriendly": false
},
{
@@ -3676,56 +3676,7 @@
],
"added_at": 1574236152,
"trending": 3.147460754041383,
- "installs_last_month": 140,
- "isMobileFriendly": false
- },
- {
- "name": "GSequencer",
- "keywords": [
- "audio",
- "sequencer",
- "notation",
- "editor",
- "midi",
- "synth",
- "mixing",
- "effects"
- ],
- "summary": "Advanced Gtk+ Sequencer",
- "description": "GSequencer provides you various tools to play, create, edit and mix your own music.\n It features a step sequencer, piano roll, automation and wave-form editor.\n ",
- "id": "org_nongnu_gsequencer_gsequencer",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "org.nongnu.gsequencer.gsequencer",
- "icon": "https://dl.flathub.org/media/org/nongnu/gsequencer.gsequencer/01dbb457bde330ce2c53d6c75effff8b/icons/128x128/org.nongnu.gsequencer.gsequencer.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Audio",
- "Midi",
- "Sequencer",
- "AudioVideoEditing",
- "Music",
- "GTK"
- ],
- "developer_name": "Joël Krähemann",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.gnome.Platform/x86_64/45",
- "updated_at": 1743005318,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1559685891,
- "trending": 6.830309966173196,
- "installs_last_month": 122,
+ "installs_last_month": 134,
"isMobileFriendly": false
},
{
@@ -3767,8 +3718,57 @@
"aarch64"
],
"added_at": 1717579270,
- "trending": 7.989728721158229,
- "installs_last_month": 122,
+ "trending": 7.338887519564317,
+ "installs_last_month": 121,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "GSequencer",
+ "keywords": [
+ "audio",
+ "sequencer",
+ "notation",
+ "editor",
+ "midi",
+ "synth",
+ "mixing",
+ "effects"
+ ],
+ "summary": "Advanced Gtk+ Sequencer",
+ "description": "GSequencer provides you various tools to play, create, edit and mix your own music.\n It features a step sequencer, piano roll, automation and wave-form editor.\n ",
+ "id": "org_nongnu_gsequencer_gsequencer",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "org.nongnu.gsequencer.gsequencer",
+ "icon": "https://dl.flathub.org/media/org/nongnu/gsequencer.gsequencer/bfa928f9a41469669f49bcda3ebe0000/icons/128x128/org.nongnu.gsequencer.gsequencer.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Audio",
+ "Midi",
+ "Sequencer",
+ "AudioVideoEditing",
+ "Music",
+ "GTK"
+ ],
+ "developer_name": "Joël Krähemann",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.gnome.Platform/x86_64/45",
+ "updated_at": 1743750141,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1559685891,
+ "trending": 7.678017195512412,
+ "installs_last_month": 118,
"isMobileFriendly": false
},
{
@@ -3806,8 +3806,8 @@
"aarch64"
],
"added_at": 1661842762,
- "trending": 3.358445119352756,
- "installs_last_month": 92,
+ "trending": 0.7539369652895862,
+ "installs_last_month": 98,
"isMobileFriendly": false
}
],
@@ -3974,8 +3974,8 @@
"aarch64"
],
"added_at": 1561723055,
- "trending": 10.253634416616348,
- "installs_last_month": 5077,
+ "trending": 8.953541420842866,
+ "installs_last_month": 5089,
"isMobileFriendly": false
},
{
@@ -4014,8 +4014,8 @@
"aarch64"
],
"added_at": 1561317361,
- "trending": 7.656825020674783,
- "installs_last_month": 3672,
+ "trending": 9.53599877478392,
+ "installs_last_month": 3679,
"isMobileFriendly": false
},
{
@@ -4076,8 +4076,8 @@
"aarch64"
],
"added_at": 1509301060,
- "trending": 10.094300244027464,
- "installs_last_month": 3347,
+ "trending": 7.206892347614331,
+ "installs_last_month": 3351,
"isMobileFriendly": false
},
{
@@ -4121,8 +4121,8 @@
"x86_64"
],
"added_at": 1618343817,
- "trending": 7.462607691248954,
- "installs_last_month": 2749,
+ "trending": 8.032154068216617,
+ "installs_last_month": 2780,
"isMobileFriendly": false
},
{
@@ -4162,8 +4162,8 @@
"aarch64"
],
"added_at": 1619168001,
- "trending": 0.03182851023679212,
- "installs_last_month": 377,
+ "trending": 5.176997549611801,
+ "installs_last_month": 375,
"isMobileFriendly": false
},
{
@@ -4199,8 +4199,8 @@
"x86_64"
],
"added_at": 1598302780,
- "trending": 10.281668907694538,
- "installs_last_month": 170,
+ "trending": 9.708468238531829,
+ "installs_last_month": 174,
"isMobileFriendly": false
},
{
@@ -4241,8 +4241,8 @@
"aarch64"
],
"added_at": 1613032297,
- "trending": 4.067254312551612,
- "installs_last_month": 71,
+ "trending": 5.891002476692171,
+ "installs_last_month": 72,
"isMobileFriendly": false
}
],
@@ -4291,8 +4291,8 @@
"x86_64"
],
"added_at": 1497775340,
- "trending": 12.09407750678973,
- "installs_last_month": 78043,
+ "trending": 11.95682122442609,
+ "installs_last_month": 77939,
"isMobileFriendly": false
},
{
@@ -4456,8 +4456,8 @@
"aarch64"
],
"added_at": 1504907525,
- "trending": 8.485012588295016,
- "installs_last_month": 73209,
+ "trending": 8.201222605990885,
+ "installs_last_month": 73274,
"isMobileFriendly": false
},
{
@@ -4614,8 +4614,8 @@
"aarch64"
],
"added_at": 1623314528,
- "trending": 8.177484379370773,
- "installs_last_month": 24407,
+ "trending": 7.980659104246639,
+ "installs_last_month": 25317,
"isMobileFriendly": false
},
{
@@ -4650,8 +4650,8 @@
"x86_64"
],
"added_at": 1613461650,
- "trending": 9.358390526644069,
- "installs_last_month": 21271,
+ "trending": 9.055659414138088,
+ "installs_last_month": 21159,
"isMobileFriendly": false
},
{
@@ -4698,8 +4698,8 @@
"aarch64"
],
"added_at": 1542663293,
- "trending": 14.63778953355159,
- "installs_last_month": 17208,
+ "trending": 13.693448005938643,
+ "installs_last_month": 17102,
"isMobileFriendly": false
},
{
@@ -4735,8 +4735,8 @@
"aarch64"
],
"added_at": 1617787010,
- "trending": 8.767575521475527,
- "installs_last_month": 10154,
+ "trending": 8.242931098535124,
+ "installs_last_month": 10104,
"isMobileFriendly": false
},
{
@@ -4769,8 +4769,8 @@
"x86_64"
],
"added_at": 1654844012,
- "trending": 9.551654811004514,
- "installs_last_month": 9107,
+ "trending": 9.592699473379389,
+ "installs_last_month": 9085,
"isMobileFriendly": false
},
{
@@ -4806,8 +4806,8 @@
"aarch64"
],
"added_at": 1643363667,
- "trending": 8.110501694504793,
- "installs_last_month": 7803,
+ "trending": 6.046482999170387,
+ "installs_last_month": 7743,
"isMobileFriendly": false
},
{
@@ -4845,14 +4845,14 @@
"verification_website": null,
"verification_timestamp": null,
"runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1743531689,
+ "updated_at": 1743719956,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1620163158,
- "trending": 7.757484574770701,
- "installs_last_month": 7521,
+ "trending": 7.004800685519178,
+ "installs_last_month": 7597,
"isMobileFriendly": false
},
{
@@ -5036,8 +5036,8 @@
"aarch64"
],
"added_at": 1562361625,
- "trending": 10.168206651841205,
- "installs_last_month": 6352,
+ "trending": 10.707719718077712,
+ "installs_last_month": 6411,
"isMobileFriendly": false
},
{
@@ -5077,8 +5077,8 @@
"aarch64"
],
"added_at": 1706169912,
- "trending": 9.510668952460016,
- "installs_last_month": 6137,
+ "trending": 8.33616834737214,
+ "installs_last_month": 6088,
"isMobileFriendly": false
},
{
@@ -5116,8 +5116,8 @@
"aarch64"
],
"added_at": 1634719497,
- "trending": 4.7354753637734115,
- "installs_last_month": 5805,
+ "trending": 3.9598682851234823,
+ "installs_last_month": 5813,
"isMobileFriendly": false
},
{
@@ -5152,8 +5152,8 @@
"x86_64"
],
"added_at": 1650706947,
- "trending": 5.372928176277022,
- "installs_last_month": 4757,
+ "trending": 3.545264953888947,
+ "installs_last_month": 4734,
"isMobileFriendly": false
},
{
@@ -5327,8 +5327,8 @@
"aarch64"
],
"added_at": 1653889893,
- "trending": 13.788167277043485,
- "installs_last_month": 4116,
+ "trending": 12.748359639523834,
+ "installs_last_month": 4180,
"isMobileFriendly": true
},
{
@@ -5396,8 +5396,8 @@
"aarch64"
],
"added_at": 1597519191,
- "trending": 11.959696654488114,
- "installs_last_month": 4102,
+ "trending": 12.61423817560892,
+ "installs_last_month": 4119,
"isMobileFriendly": false
},
{
@@ -5653,8 +5653,42 @@
"aarch64"
],
"added_at": 1510243839,
- "trending": 14.45458635954223,
- "installs_last_month": 4029,
+ "trending": 14.322509981180575,
+ "installs_last_month": 4020,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Plex HTPC",
+ "keywords": null,
+ "summary": "Plex HTPC client for the big screen",
+ "description": "Plex HTPC for Linux is your client for playing on your Linux computer connected to the big screen.\n It features a 10-foot interface with a powerful playback engine.\n ",
+ "id": "tv_plex_PlexHTPC",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "LicenseRef-proprietary=https://www.plex.tv/en-gb/about/privacy-legal/plex-terms-of-service/",
+ "is_free_license": false,
+ "app_id": "tv.plex.PlexHTPC",
+ "icon": "https://dl.flathub.org/media/tv/plex/PlexHTPC/da6a88044ca15ec8fdb9308244729cc0/icons/128x128/tv.plex.PlexHTPC.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Player"
+ ],
+ "developer_name": "Plex",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "plex.tv",
+ "verification_timestamp": "1681423370",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1739251467,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1654636905,
+ "trending": 9.695583818933102,
+ "installs_last_month": 3848,
"isMobileFriendly": false
},
{
@@ -5689,42 +5723,8 @@
"aarch64"
],
"added_at": 1588580723,
- "trending": 6.664082894974498,
- "installs_last_month": 3773,
- "isMobileFriendly": false
- },
- {
- "name": "Plex HTPC",
- "keywords": null,
- "summary": "Plex HTPC client for the big screen",
- "description": "Plex HTPC for Linux is your client for playing on your Linux computer connected to the big screen.\n It features a 10-foot interface with a powerful playback engine.\n ",
- "id": "tv_plex_PlexHTPC",
- "type": "desktop-application",
- "translations": {},
- "project_license": "LicenseRef-proprietary=https://www.plex.tv/en-gb/about/privacy-legal/plex-terms-of-service/",
- "is_free_license": false,
- "app_id": "tv.plex.PlexHTPC",
- "icon": "https://dl.flathub.org/media/tv/plex/PlexHTPC/da6a88044ca15ec8fdb9308244729cc0/icons/128x128/tv.plex.PlexHTPC.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Player"
- ],
- "developer_name": "Plex",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "plex.tv",
- "verification_timestamp": "1681423370",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1739251467,
- "arches": [
- "x86_64"
- ],
- "added_at": 1654636905,
- "trending": 11.460437328330135,
- "installs_last_month": 3729,
+ "trending": 6.228381962009792,
+ "installs_last_month": 3791,
"isMobileFriendly": false
},
{
@@ -5763,8 +5763,8 @@
"aarch64"
],
"added_at": 1561317361,
- "trending": 7.656825020674783,
- "installs_last_month": 3672,
+ "trending": 9.53599877478392,
+ "installs_last_month": 3679,
"isMobileFriendly": false
},
{
@@ -5993,8 +5993,8 @@
"aarch64"
],
"added_at": 1510069264,
- "trending": 13.568320459042363,
- "installs_last_month": 3132,
+ "trending": 14.200838554748303,
+ "installs_last_month": 3123,
"isMobileFriendly": false
},
{
@@ -6042,8 +6042,8 @@
"aarch64"
],
"added_at": 1544181758,
- "trending": 7.267604413607905,
- "installs_last_month": 3088,
+ "trending": 8.235373584863815,
+ "installs_last_month": 3098,
"isMobileFriendly": false
},
{
@@ -6286,8 +6286,8 @@
"aarch64"
],
"added_at": 1522329924,
- "trending": 11.55168848530722,
- "installs_last_month": 3026,
+ "trending": 10.995865490228669,
+ "installs_last_month": 3020,
"isMobileFriendly": false
},
{
@@ -6448,8 +6448,8 @@
"aarch64"
],
"added_at": 1727083656,
- "trending": 3.508701904041027,
- "installs_last_month": 2904,
+ "trending": 2.8667377636924503,
+ "installs_last_month": 2908,
"isMobileFriendly": false
},
{
@@ -6493,8 +6493,8 @@
"x86_64"
],
"added_at": 1536320908,
- "trending": 6.788715432836504,
- "installs_last_month": 2863,
+ "trending": 6.445761552885797,
+ "installs_last_month": 2869,
"isMobileFriendly": false
},
{
@@ -6536,8 +6536,8 @@
"x86_64"
],
"added_at": 1596135565,
- "trending": 10.35288030569358,
- "installs_last_month": 2815,
+ "trending": 11.649187322610016,
+ "installs_last_month": 2808,
"isMobileFriendly": false
},
{
@@ -6581,8 +6581,8 @@
"x86_64"
],
"added_at": 1618343817,
- "trending": 7.462607691248954,
- "installs_last_month": 2749,
+ "trending": 8.032154068216617,
+ "installs_last_month": 2780,
"isMobileFriendly": false
},
{
@@ -6624,7 +6624,7 @@
"aarch64"
],
"added_at": 1653374999,
- "trending": 8.217410961611922,
+ "trending": 7.950564292620639,
"installs_last_month": 2594,
"isMobileFriendly": false
},
@@ -6798,8 +6798,8 @@
"aarch64"
],
"added_at": 1720616885,
- "trending": 15.473186747616438,
- "installs_last_month": 2377,
+ "trending": 15.223130540874925,
+ "installs_last_month": 2388,
"isMobileFriendly": true
},
{
@@ -6942,8 +6942,8 @@
"aarch64"
],
"added_at": 1542019244,
- "trending": 8.4815824740929,
- "installs_last_month": 2334,
+ "trending": 8.434522391832044,
+ "installs_last_month": 2311,
"isMobileFriendly": false
},
{
@@ -6984,8 +6984,8 @@
"aarch64"
],
"added_at": 1687971591,
- "trending": 13.124204896567369,
- "installs_last_month": 2305,
+ "trending": 11.882904968615676,
+ "installs_last_month": 2308,
"isMobileFriendly": false
},
{
@@ -7117,8 +7117,8 @@
"aarch64"
],
"added_at": 1723197945,
- "trending": 12.873515376508228,
- "installs_last_month": 2149,
+ "trending": 13.662532764553294,
+ "installs_last_month": 2159,
"isMobileFriendly": false
},
{
@@ -7309,8 +7309,8 @@
"aarch64"
],
"added_at": 1494567025,
- "trending": 10.70109337884111,
- "installs_last_month": 2054,
+ "trending": 10.482461178721824,
+ "installs_last_month": 2080,
"isMobileFriendly": true
},
{
@@ -7386,8 +7386,8 @@
"aarch64"
],
"added_at": 1648572371,
- "trending": 2.0439780864132895,
- "installs_last_month": 2030,
+ "trending": 0.6993466965610134,
+ "installs_last_month": 2029,
"isMobileFriendly": false
},
{
@@ -7427,44 +7427,8 @@
"x86_64"
],
"added_at": 1667596592,
- "trending": 4.569919675160263,
- "installs_last_month": 1700,
- "isMobileFriendly": false
- },
- {
- "name": "Cozy",
- "keywords": null,
- "summary": "Listen to audio books",
- "description": "Do you like audio books? Then lets get cozy!\n Cozy is a audio book player. Here are some of the features:\n \n Import all your audio books into Cozy to browse them comfortably\n Listen to your DRM free mp3, m4b, m4a (aac, ALAC, …), flac, ogg and wav audio books\n Remembers your playback position\n Sleep timer\n Playback speed control for each book individually\n Search your library\n Multiple storage location support\n Offline Mode! This allows you to keep an audio book on your internal storage if you store your audio books on an external or network drive. Perfect to listen to on the go!\n Drag and Drop to import new audio books\n Sort your audio books by author, reader and name\n \n ",
- "id": "com_github_geigi_cozy",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0+",
- "is_free_license": true,
- "app_id": "com.github.geigi.cozy",
- "icon": "https://dl.flathub.org/media/com/github/geigi.cozy/3f111bcd3e8672588967636b9b0d2b92/icons/128x128/com.github.geigi.cozy.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Player",
- "Audio"
- ],
- "developer_name": "Julian Geywitz",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "geigi",
- "verification_login_provider": "github",
- "verification_login_is_organization": "true",
- "verification_website": null,
- "verification_timestamp": "1712154041",
- "runtime": "org.gnome.Platform/x86_64/47",
- "updated_at": 1732286511,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1511886266,
- "trending": 17.590403462080452,
- "installs_last_month": 1617,
+ "trending": 5.232186980259857,
+ "installs_last_month": 1710,
"isMobileFriendly": false
},
{
@@ -7657,8 +7621,44 @@
"aarch64"
],
"added_at": 1676881903,
- "trending": 10.452936100194744,
- "installs_last_month": 1615,
+ "trending": 10.483084063558374,
+ "installs_last_month": 1609,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Cozy",
+ "keywords": null,
+ "summary": "Listen to audio books",
+ "description": "Do you like audio books? Then lets get cozy!\n Cozy is a audio book player. Here are some of the features:\n \n Import all your audio books into Cozy to browse them comfortably\n Listen to your DRM free mp3, m4b, m4a (aac, ALAC, …), flac, ogg and wav audio books\n Remembers your playback position\n Sleep timer\n Playback speed control for each book individually\n Search your library\n Multiple storage location support\n Offline Mode! This allows you to keep an audio book on your internal storage if you store your audio books on an external or network drive. Perfect to listen to on the go!\n Drag and Drop to import new audio books\n Sort your audio books by author, reader and name\n \n ",
+ "id": "com_github_geigi_cozy",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0+",
+ "is_free_license": true,
+ "app_id": "com.github.geigi.cozy",
+ "icon": "https://dl.flathub.org/media/com/github/geigi.cozy/3f111bcd3e8672588967636b9b0d2b92/icons/128x128/com.github.geigi.cozy.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Player",
+ "Audio"
+ ],
+ "developer_name": "Julian Geywitz",
+ "verification_verified": true,
+ "verification_method": "login_provider",
+ "verification_login_name": "geigi",
+ "verification_login_provider": "github",
+ "verification_login_is_organization": "true",
+ "verification_website": null,
+ "verification_timestamp": "1712154041",
+ "runtime": "org.gnome.Platform/x86_64/47",
+ "updated_at": 1732286511,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1511886266,
+ "trending": 15.56167727107312,
+ "installs_last_month": 1591,
"isMobileFriendly": false
},
{
@@ -7693,8 +7693,8 @@
"aarch64"
],
"added_at": 1716271222,
- "trending": 5.899043550604996,
- "installs_last_month": 1445,
+ "trending": 6.934568628156844,
+ "installs_last_month": 1430,
"isMobileFriendly": false
},
{
@@ -7730,8 +7730,8 @@
"aarch64"
],
"added_at": 1586505616,
- "trending": 1.5724970532443256,
- "installs_last_month": 1272,
+ "trending": -0.8662278110319928,
+ "installs_last_month": 1285,
"isMobileFriendly": false
},
{
@@ -7771,8 +7771,64 @@
"aarch64"
],
"added_at": 1685341478,
- "trending": 0.7987039938153564,
- "installs_last_month": 1234,
+ "trending": 0.5603600359281135,
+ "installs_last_month": 1213,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "EcoTubeHQ",
+ "keywords": [
+ "downloads",
+ "videos",
+ "streaming",
+ "dvd",
+ "player",
+ "amd",
+ "nvidia",
+ "gpu",
+ "cpu",
+ "resolution",
+ "quality",
+ "youtube",
+ "playlists",
+ "vlc",
+ "mpv",
+ "linux",
+ "flatpak"
+ ],
+ "summary": "Energy Efficient Video Player",
+ "description": "\n\t\tEcoTubeHQ is a high quality video player which reduces energy usage by downloading minimal data when playing DRM-free video streaming services [YouTube, Rumble, Bitchute etc]. Hardware acceleration is used where possible to reduce the CPU load.\n \t\n Features:\n \n EcoTubeHQ automatically downloads the highest quality / lowest bitrate YouTube video, i.e. av1 codec videos are output by default, if av1 isn't available then vp9 is utilized, and if vp9 isn't available then h.264 is output. Alternatively, EcoTubeHQ can be set to download only vp9 or h.264 video.\n EcoTubeHQ offers three video upscaling techniques: AMD FidelityFX Super Resolution [BQ Best Quality], Lanczos [HQ High Quality] and Bicubic [LE Low Energy]. Using 720p AMD FSR video upscaling instead of 1080p conventional upscaling gives comparable video quality whilst significantly reducing downloaded data.\n EcoTubeHQ further minimizes data usage by restricting videos to 30fps.\n EcoTubeHQ offers two Opus audio bitrates for av1 and vp9 YouTube videos - 70kbps [default] and 160kbps.\n EcoTubeHQ can also play local video files with AMD FSR, and it offers drag and drop video playlists.\n \n ",
+ "id": "io_github_ecotubehq_player",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0+",
+ "is_free_license": true,
+ "app_id": "io.github.ecotubehq.player",
+ "icon": "https://dl.flathub.org/media/io/github/ecotubehq.player/a7c4cb2974a64fdf865defbe180d0541/icons/128x128/io.github.ecotubehq.player.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Player",
+ "Audio",
+ "Video",
+ "TV"
+ ],
+ "developer_name": "EcoTube Partners",
+ "verification_verified": true,
+ "verification_method": "login_provider",
+ "verification_login_name": "ecotubehq",
+ "verification_login_provider": "github",
+ "verification_login_is_organization": "true",
+ "verification_website": null,
+ "verification_timestamp": "1738310807",
+ "runtime": "org.gnome.Platform/x86_64/46",
+ "updated_at": 1742578355,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1726129036,
+ "trending": 1.2123396606159909,
+ "installs_last_month": 1105,
"isMobileFriendly": false
},
{
@@ -7891,64 +7947,8 @@
"aarch64"
],
"added_at": 1661806190,
- "trending": 11.261230750608432,
- "installs_last_month": 1105,
- "isMobileFriendly": false
- },
- {
- "name": "EcoTubeHQ",
- "keywords": [
- "downloads",
- "videos",
- "streaming",
- "dvd",
- "player",
- "amd",
- "nvidia",
- "gpu",
- "cpu",
- "resolution",
- "quality",
- "youtube",
- "playlists",
- "vlc",
- "mpv",
- "linux",
- "flatpak"
- ],
- "summary": "Energy Efficient Video Player",
- "description": "\n\t\tEcoTubeHQ is a high quality video player which reduces energy usage by downloading minimal data when playing DRM-free video streaming services [YouTube, Rumble, Bitchute etc]. Hardware acceleration is used where possible to reduce the CPU load.\n \t\n Features:\n \n EcoTubeHQ automatically downloads the highest quality / lowest bitrate YouTube video, i.e. av1 codec videos are output by default, if av1 isn't available then vp9 is utilized, and if vp9 isn't available then h.264 is output. Alternatively, EcoTubeHQ can be set to download only vp9 or h.264 video.\n EcoTubeHQ offers three video upscaling techniques: AMD FidelityFX Super Resolution [BQ Best Quality], Lanczos [HQ High Quality] and Bicubic [LE Low Energy]. Using 720p AMD FSR video upscaling instead of 1080p conventional upscaling gives comparable video quality whilst significantly reducing downloaded data.\n EcoTubeHQ further minimizes data usage by restricting videos to 30fps.\n EcoTubeHQ offers two Opus audio bitrates for av1 and vp9 YouTube videos - 70kbps [default] and 160kbps.\n EcoTubeHQ can also play local video files with AMD FSR, and it offers drag and drop video playlists.\n \n ",
- "id": "io_github_ecotubehq_player",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0+",
- "is_free_license": true,
- "app_id": "io.github.ecotubehq.player",
- "icon": "https://dl.flathub.org/media/io/github/ecotubehq.player/a7c4cb2974a64fdf865defbe180d0541/icons/128x128/io.github.ecotubehq.player.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Player",
- "Audio",
- "Video",
- "TV"
- ],
- "developer_name": "EcoTube Partners",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "ecotubehq",
- "verification_login_provider": "github",
- "verification_login_is_organization": "true",
- "verification_website": null,
- "verification_timestamp": "1738310807",
- "runtime": "org.gnome.Platform/x86_64/46",
- "updated_at": 1742578355,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1726129036,
- "trending": 4.614580141233804,
- "installs_last_month": 1081,
+ "trending": 10.69422642832149,
+ "installs_last_month": 1077,
"isMobileFriendly": false
},
{
@@ -7983,8 +7983,8 @@
"x86_64"
],
"added_at": 1717580511,
- "trending": 8.300959637210473,
- "installs_last_month": 1070,
+ "trending": 6.722621109108175,
+ "installs_last_month": 1057,
"isMobileFriendly": false
},
{
@@ -8024,8 +8024,8 @@
"aarch64"
],
"added_at": 1670842524,
- "trending": 4.590483865184279,
- "installs_last_month": 1012,
+ "trending": 7.692106965209289,
+ "installs_last_month": 1018,
"isMobileFriendly": false
},
{
@@ -8063,8 +8063,8 @@
"aarch64"
],
"added_at": 1701682986,
- "trending": 9.416502137573476,
- "installs_last_month": 991,
+ "trending": 10.007578126484525,
+ "installs_last_month": 1001,
"isMobileFriendly": false
},
{
@@ -8103,8 +8103,8 @@
"aarch64"
],
"added_at": 1542367807,
- "trending": 4.541613980016762,
- "installs_last_month": 977,
+ "trending": 3.4710670126886916,
+ "installs_last_month": 967,
"isMobileFriendly": false
},
{
@@ -8138,8 +8138,8 @@
"aarch64"
],
"added_at": 1508960369,
- "trending": 9.153499614339855,
- "installs_last_month": 916,
+ "trending": 8.660826063546722,
+ "installs_last_month": 951,
"isMobileFriendly": false
},
{
@@ -8179,62 +8179,90 @@
"aarch64"
],
"added_at": 1670921599,
- "trending": 8.082214546222586,
- "installs_last_month": 869,
+ "trending": 6.505668490374763,
+ "installs_last_month": 875,
"isMobileFriendly": false
},
{
- "name": "Recordbox",
- "keywords": [
- "music",
- "media",
- "player"
- ],
- "summary": "Browse and play your local music",
- "description": "\n Recordbox is a music player and library browser designed primarily to be as simple as\n possible, and tailored specifically to browsing and playing albums, rather than tracks or\n playlists. The goal of the project is to have a music player that is simple to use and offers\n a respectable feature set while not being overly complex.\n \n Features include:\n \n Integrated double-paned library browser for browsing albums, grouped by artist or genre\n Detection and display of album art\n Play queue which can hold both single tracks and entire albums with nested track lists\n Playback of music using GStreamer, with gapless playback and ReplayGain support\n Ability to both view and edit lyrics, with changes saved to the source file's metadata\n GNOME search provider integration to search for music from GNOME Shell\n \n ",
- "id": "ca_edestcroix_Recordbox",
+ "name": "Daikhan",
+ "keywords": null,
+ "summary": "Play Videos/Music with style",
+ "description": "A simple yet powerful media player with a beautiful interface. It has nice keyboard shortcuts,\n session restore capabilities, and much more.\n \n NOTE: The app is in early stages of development and bound to change significantly\n in the future.\n \n ",
+ "id": "io_gitlab_daikhan_stable",
"type": "desktop-application",
"translations": {
- "es": {
- "description": "Recordbox es un reproductor de música y un navegador de bibliotecas diseñado principalmente para ser lo más simple posible y diseñado específicamente para explorar y reproducir álbumes, en lugar de pistas o listas de reproducción. El objetivo del proyecto es tener un reproductor de música que sea fácil de usar y que ofrezca un conjunto de funciones respetable sin ser demasiado complejo.\n Características:\n \n Navegador de biblioteca de doble panel integrado para explorar álbumes, agrupados por artista o género\n Detección y visualización de carátulas de álbumes\n Cola de reproducción que puede contener tanto pistas individuales como álbumes completos con listas de pistas anidadas\n Reproducción de música con GStreamer, con reproducción sin pausas y compatibilidad con ReplayGain\n Posibilidad de ver y editar letras, con cambios guardados en los metadatos del archivo fuente\n Integración del proveedor de búsqueda de GNOME para buscar música desde GNOME Shell\n \n ",
- "summary": "Explora y reproduce tu música local"
+ "et": {
+ "description": "Lihtne, aga võimas meediamängija, millel on ilus kasutajaliides. Võimaluste hulka kuuluvad mugavad kiirklahvid, sessiooni taastamise võimalus ja palju muud.\n MÄRKUS: See rakendus on veel varases arendusjärgus ning muutub tulevikus märgatavalt.\n ",
+ "name": "Daikhan",
+ "summary": "Esita videoid ja muusikat stiilselt"
},
- "it": {
- "description": "Recordbox è un lettore musicale e catalogo pensato per essere il più semplice possibile e per la riproduzione e ricerca di album, piuttosto che di tracce e playlist. L'obiettivo del progetto è di ottenere un lettore musicale che sia semplice ed offra un adeguato insieme di funzioni evitando comlicazioni eccessive.\n Caratteristiche:\n \n Catalogo a doppio pannello per cercare album, raggruppati per artista o genere\n Riconoscimento e visualizzazione delle copertine\n Coda di riproduzione che può contenere sia tracce singole che album interi con tracce indentate\n Riproduzione mediante GStreamer, gapless e con supporto ReplayGain\n Visualizzazione e modifica dei testi, salvando le modifiche nei metadati dei file\n Integrazione con il search provider di GNOME per la ricerca di musica mediante GNOME Shell\n \n ",
- "summary": "Sfoglia e riproduci la tua musica locale"
+ "fi": {
+ "description": "Yksinkertainen mutta tehokas mediasoitin kauniilla käyttöliittymällä. Siinä on mukavia pikanäppäimiä, istunnon palautusominaisuudet ja paljon muuta.\n Huomautus: Sovellus on kehitysvaiheessa ja muuttuu merkittävästi tulevaisuudessa.\n ",
+ "name": "Daikhan",
+ "summary": "Toista videoita ja musiikkia tyylillä"
+ },
+ "pt-BR": {
+ "description": "Um reprodutor de mídia simples, mas poderoso com uma bela interface. Ele tem atalhos de teclado, restauração de sessão e muito mais.\n NOTA: O programa está em fases iniciais de desenvolvimento e pode mudar significativamente no futuro.\n ",
+ "name": "Daikhan",
+ "summary": "Reproduza vídeos/música com estilo"
+ },
+ "cs": {
+ "summary": "Přehrajte Videa/Hudbu ve stylu"
+ },
+ "de": {
+ "summary": "Spiele Videos/Musik mit Stil ab"
+ },
+ "es": {
+ "summary": "Reproduce vídeos y música con estilo"
+ },
+ "fr": {
+ "summary": "Jouez vos vidéos et votre musique avec style"
+ },
+ "hi": {
+ "summary": "अंदाज़ के साथ वीडियो/संगीत चलाएं"
+ },
+ "nl": {
+ "summary": "Speel videos of muziek af met stijl"
+ },
+ "oc": {
+ "summary": "Legissètz las vidèos e musicas amb estil"
+ },
+ "ru": {
+ "summary": "Воспроизведение видео/музыки со стилем"
+ },
+ "ta": {
+ "summary": "பாணியுடன் வீடியோக்கள்/இசையை இயக்கவும்"
},
"tr": {
- "description": "Recordbox, mümkün olduğunca basit olacak şekilde tasarlanmış ve parçalar ya da çalma listeleri yerine albümlere göz atmak ve çalmak için özel olarak tasarlanmış müzik çalar ve kitaplık tarayıcıdır. Projenin amacı, kullanımı basit ve aşırı karmaşık olmamakla birlikte dikkat çeken özellikler sunan bir müzik çalar olmaktır.\n Özellikleri şunlardır:\n \n Sanatçı ya da türe göre gruplandırılmış albümlere göz atmak için tümleşik çift bölmeli kitaplık tarayıcısı\n Albüm resmini algılama ve görüntüleme\n İç içe geçmiş parça listeleri ile hem parçaları hem de tüm albümleri tutabilen çalma kuyruğu\n Kesintisiz oynatma ve ReplayGain desteği ile GStreamer kullanarak müzik oynatma\n Kaynak dosyanın üst verilerine kaydedilen değişikliklerle şarkı sözlerini görüntüleyebilme ve düzenleyebilme\n GNOME Shell üstünden müzik aramak için GNOME arama sağlayıcısı tümleşimi\n \n ",
- "summary": "Yerel müziklerinize göz atın ve çalın"
+ "summary": "Video/Müzik oynatırken stiliniz olsun"
}
},
- "project_license": "GPL-3.0-or-later",
+ "project_license": "AGPL-3.0-or-later",
"is_free_license": true,
- "app_id": "ca.edestcroix.Recordbox",
- "icon": "https://dl.flathub.org/media/ca/edestcroix/Recordbox/37082673c2cb4f4055919f68aff3465c/icons/128x128/ca.edestcroix.Recordbox.png",
+ "app_id": "io.gitlab.daikhan.stable",
+ "icon": "https://dl.flathub.org/media/io/gitlab/daikhan.stable/166c345c7ba898f19b6e994f9a81a8ff/icons/128x128/io.gitlab.daikhan.stable.png",
"main_categories": "audiovideo",
"sub_categories": [
- "Player",
- "Audio"
+ "Player"
],
- "developer_name": "Emmett de St. Croix",
+ "developer_name": "Mazhar Hussain",
"verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "edestcroix.ca",
- "verification_timestamp": "1725373614",
- "runtime": "org.gnome.Platform/x86_64/47",
- "updated_at": 1741158147,
+ "verification_method": "login_provider",
+ "verification_login_name": "daikhan",
+ "verification_login_provider": "gitlab",
+ "verification_login_is_organization": "true",
+ "verification_website": null,
+ "verification_timestamp": "1690897411",
+ "runtime": "org.gnome.Platform/x86_64/48",
+ "updated_at": 1743578916,
"arches": [
"x86_64",
"aarch64"
],
- "added_at": 1725340905,
- "trending": 14.253912287476403,
- "installs_last_month": 832,
- "isMobileFriendly": false
+ "added_at": 1690878622,
+ "trending": 12.510073555807406,
+ "installs_last_month": 822,
+ "isMobileFriendly": true
},
{
"name": "Quod Libet",
@@ -8384,8 +8412,61 @@
"aarch64"
],
"added_at": 1527000716,
- "trending": 9.253559014396702,
- "installs_last_month": 817,
+ "trending": 8.841014102869256,
+ "installs_last_month": 818,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Recordbox",
+ "keywords": [
+ "music",
+ "media",
+ "player"
+ ],
+ "summary": "Browse and play your local music",
+ "description": "\n Recordbox is a music player and library browser designed primarily to be as simple as\n possible, and tailored specifically to browsing and playing albums, rather than tracks or\n playlists. The goal of the project is to have a music player that is simple to use and offers\n a respectable feature set while not being overly complex.\n \n Features include:\n \n Integrated double-paned library browser for browsing albums, grouped by artist or genre\n Detection and display of album art\n Play queue which can hold both single tracks and entire albums with nested track lists\n Playback of music using GStreamer, with gapless playback and ReplayGain support\n Ability to both view and edit lyrics, with changes saved to the source file's metadata\n GNOME search provider integration to search for music from GNOME Shell\n \n ",
+ "id": "ca_edestcroix_Recordbox",
+ "type": "desktop-application",
+ "translations": {
+ "es": {
+ "description": "Recordbox es un reproductor de música y un navegador de bibliotecas diseñado principalmente para ser lo más simple posible y diseñado específicamente para explorar y reproducir álbumes, en lugar de pistas o listas de reproducción. El objetivo del proyecto es tener un reproductor de música que sea fácil de usar y que ofrezca un conjunto de funciones respetable sin ser demasiado complejo.\n Características:\n \n Navegador de biblioteca de doble panel integrado para explorar álbumes, agrupados por artista o género\n Detección y visualización de carátulas de álbumes\n Cola de reproducción que puede contener tanto pistas individuales como álbumes completos con listas de pistas anidadas\n Reproducción de música con GStreamer, con reproducción sin pausas y compatibilidad con ReplayGain\n Posibilidad de ver y editar letras, con cambios guardados en los metadatos del archivo fuente\n Integración del proveedor de búsqueda de GNOME para buscar música desde GNOME Shell\n \n ",
+ "summary": "Explora y reproduce tu música local"
+ },
+ "it": {
+ "description": "Recordbox è un lettore musicale e catalogo pensato per essere il più semplice possibile e per la riproduzione e ricerca di album, piuttosto che di tracce e playlist. L'obiettivo del progetto è di ottenere un lettore musicale che sia semplice ed offra un adeguato insieme di funzioni evitando comlicazioni eccessive.\n Caratteristiche:\n \n Catalogo a doppio pannello per cercare album, raggruppati per artista o genere\n Riconoscimento e visualizzazione delle copertine\n Coda di riproduzione che può contenere sia tracce singole che album interi con tracce indentate\n Riproduzione mediante GStreamer, gapless e con supporto ReplayGain\n Visualizzazione e modifica dei testi, salvando le modifiche nei metadati dei file\n Integrazione con il search provider di GNOME per la ricerca di musica mediante GNOME Shell\n \n ",
+ "summary": "Sfoglia e riproduci la tua musica locale"
+ },
+ "tr": {
+ "description": "Recordbox, mümkün olduğunca basit olacak şekilde tasarlanmış ve parçalar ya da çalma listeleri yerine albümlere göz atmak ve çalmak için özel olarak tasarlanmış müzik çalar ve kitaplık tarayıcıdır. Projenin amacı, kullanımı basit ve aşırı karmaşık olmamakla birlikte dikkat çeken özellikler sunan bir müzik çalar olmaktır.\n Özellikleri şunlardır:\n \n Sanatçı ya da türe göre gruplandırılmış albümlere göz atmak için tümleşik çift bölmeli kitaplık tarayıcısı\n Albüm resmini algılama ve görüntüleme\n İç içe geçmiş parça listeleri ile hem parçaları hem de tüm albümleri tutabilen çalma kuyruğu\n Kesintisiz oynatma ve ReplayGain desteği ile GStreamer kullanarak müzik oynatma\n Kaynak dosyanın üst verilerine kaydedilen değişikliklerle şarkı sözlerini görüntüleyebilme ve düzenleyebilme\n GNOME Shell üstünden müzik aramak için GNOME arama sağlayıcısı tümleşimi\n \n ",
+ "summary": "Yerel müziklerinize göz atın ve çalın"
+ }
+ },
+ "project_license": "GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "ca.edestcroix.Recordbox",
+ "icon": "https://dl.flathub.org/media/ca/edestcroix/Recordbox/37082673c2cb4f4055919f68aff3465c/icons/128x128/ca.edestcroix.Recordbox.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Player",
+ "Audio"
+ ],
+ "developer_name": "Emmett de St. Croix",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "edestcroix.ca",
+ "verification_timestamp": "1725373614",
+ "runtime": "org.gnome.Platform/x86_64/47",
+ "updated_at": 1741158147,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1725340905,
+ "trending": 14.476214081616504,
+ "installs_last_month": 805,
"isMobileFriendly": false
},
{
@@ -8428,126 +8509,8 @@
"aarch64"
],
"added_at": 1627479727,
- "trending": 4.617034493930691,
- "installs_last_month": 783,
- "isMobileFriendly": false
- },
- {
- "name": "Daikhan",
- "keywords": null,
- "summary": "Play Videos/Music with style",
- "description": "A simple yet powerful media player with a beautiful interface. It has nice keyboard shortcuts,\n session restore capabilities, and much more.\n \n NOTE: The app is in early stages of development and bound to change significantly\n in the future.\n \n ",
- "id": "io_gitlab_daikhan_stable",
- "type": "desktop-application",
- "translations": {
- "et": {
- "description": "Lihtne, aga võimas meediamängija, millel on ilus kasutajaliides. Võimaluste hulka kuuluvad mugavad kiirklahvid, sessiooni taastamise võimalus ja palju muud.\n MÄRKUS: See rakendus on veel varases arendusjärgus ning muutub tulevikus märgatavalt.\n ",
- "name": "Daikhan",
- "summary": "Esita videoid ja muusikat stiilselt"
- },
- "fi": {
- "description": "Yksinkertainen mutta tehokas mediasoitin kauniilla käyttöliittymällä. Siinä on mukavia pikanäppäimiä, istunnon palautusominaisuudet ja paljon muuta.\n Huomautus: Sovellus on kehitysvaiheessa ja muuttuu merkittävästi tulevaisuudessa.\n ",
- "name": "Daikhan",
- "summary": "Toista videoita ja musiikkia tyylillä"
- },
- "pt-BR": {
- "description": "Um reprodutor de mídia simples, mas poderoso com uma bela interface. Ele tem atalhos de teclado, restauração de sessão e muito mais.\n NOTA: O programa está em fases iniciais de desenvolvimento e pode mudar significativamente no futuro.\n ",
- "name": "Daikhan",
- "summary": "Reproduza vídeos/música com estilo"
- },
- "cs": {
- "summary": "Přehrajte Videa/Hudbu ve stylu"
- },
- "de": {
- "summary": "Spiele Videos/Musik mit Stil ab"
- },
- "es": {
- "summary": "Reproduce vídeos y música con estilo"
- },
- "fr": {
- "summary": "Jouez vos vidéos et votre musique avec style"
- },
- "hi": {
- "summary": "अंदाज़ के साथ वीडियो/संगीत चलाएं"
- },
- "nl": {
- "summary": "Speel videos of muziek af met stijl"
- },
- "oc": {
- "summary": "Legissètz las vidèos e musicas amb estil"
- },
- "ru": {
- "summary": "Воспроизведение видео/музыки со стилем"
- },
- "ta": {
- "summary": "பாணியுடன் வீடியோக்கள்/இசையை இயக்கவும்"
- },
- "tr": {
- "summary": "Video/Müzik oynatırken stiliniz olsun"
- }
- },
- "project_license": "AGPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "io.gitlab.daikhan.stable",
- "icon": "https://dl.flathub.org/media/io/gitlab/daikhan.stable/166c345c7ba898f19b6e994f9a81a8ff/icons/128x128/io.gitlab.daikhan.stable.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Player"
- ],
- "developer_name": "Mazhar Hussain",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "daikhan",
- "verification_login_provider": "gitlab",
- "verification_login_is_organization": "true",
- "verification_website": null,
- "verification_timestamp": "1690897411",
- "runtime": "org.gnome.Platform/x86_64/48",
- "updated_at": 1743578916,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1690878622,
- "trending": 13.84523846619387,
- "installs_last_month": 744,
- "isMobileFriendly": true
- },
- {
- "name": "Pithos",
- "keywords": [
- "Music"
- ],
- "summary": "Pandora radio client",
- "description": "An easy to use native Pandora Radio client that is more lightweight than the pandora.com web client and integrates with the desktop.\n It supports most functionality of pandora.com such as rating songs, creating/managing stations, quickmix, etc. On top of that it has many features such as last.fm scrobbling\n ",
- "id": "io_github_Pithos",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0+",
- "is_free_license": true,
- "app_id": "io.github.Pithos",
- "icon": "https://dl.flathub.org/media/io/github/Pithos/42a43b68f0f85b87f49f9309e82eb890/icons/128x128/io.github.Pithos.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Player"
- ],
- "developer_name": "Pithos",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "pithos.github.io",
- "verification_timestamp": "1675709635",
- "runtime": "org.gnome.Platform/x86_64/47",
- "updated_at": 1731324568,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1491927202,
- "trending": 12.48170946735343,
- "installs_last_month": 733,
+ "trending": 6.344109772031835,
+ "installs_last_month": 787,
"isMobileFriendly": false
},
{
@@ -8702,8 +8665,45 @@
"aarch64"
],
"added_at": 1663217210,
- "trending": 1.8591053812488112,
- "installs_last_month": 726,
+ "trending": 1.6761602917166187,
+ "installs_last_month": 735,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Pithos",
+ "keywords": [
+ "Music"
+ ],
+ "summary": "Pandora radio client",
+ "description": "An easy to use native Pandora Radio client that is more lightweight than the pandora.com web client and integrates with the desktop.\n It supports most functionality of pandora.com such as rating songs, creating/managing stations, quickmix, etc. On top of that it has many features such as last.fm scrobbling\n ",
+ "id": "io_github_Pithos",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0+",
+ "is_free_license": true,
+ "app_id": "io.github.Pithos",
+ "icon": "https://dl.flathub.org/media/io/github/Pithos/42a43b68f0f85b87f49f9309e82eb890/icons/128x128/io.github.Pithos.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Player"
+ ],
+ "developer_name": "Pithos",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "pithos.github.io",
+ "verification_timestamp": "1675709635",
+ "runtime": "org.gnome.Platform/x86_64/47",
+ "updated_at": 1731324568,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1491927202,
+ "trending": 13.53096416195191,
+ "installs_last_month": 733,
"isMobileFriendly": false
},
{
@@ -8783,44 +8783,8 @@
"aarch64"
],
"added_at": 1710818302,
- "trending": 14.37206684488904,
- "installs_last_month": 501,
- "isMobileFriendly": false
- },
- {
- "name": "Linux Show Player",
- "keywords": null,
- "summary": "Cue player designed for stage productions",
- "description": "\n Linux Show Player, LiSP for short, is a free cue player, mainly intended for sound-playback in stage productions,\n the goal is to provide a complete playback software for musical plays, theater shows and similar.\n \n Some highlights:\n \n List layout\n Cart layout\n Concurrent cues playback\n Pre/Post wait\n Undo/Redo changes\n Realtime sound effects\n Peak and ReplayGain normalization\n MIDI and OSC support\n \n ",
- "id": "org_linuxshowplayer_LinuxShowPlayer",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0+",
- "is_free_license": true,
- "app_id": "org.linuxshowplayer.LinuxShowPlayer",
- "icon": "https://dl.flathub.org/media/org/linuxshowplayer/LinuxShowPlayer/83022726b2ad14a50a068420b463f925/icons/128x128/org.linuxshowplayer.LinuxShowPlayer.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Audio",
- "Player"
- ],
- "developer_name": "Francesco Ceruti",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "linuxshowplayer.org",
- "verification_timestamp": "1703032114",
- "runtime": "org.kde.Platform/x86_64/5.15-23.08",
- "updated_at": 1724533563,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1702976037,
- "trending": 10.417160940632863,
- "installs_last_month": 486,
+ "trending": 14.832329240745636,
+ "installs_last_month": 506,
"isMobileFriendly": false
},
{
@@ -8871,8 +8835,44 @@
"aarch64"
],
"added_at": 1630317483,
- "trending": 3.090484782154705,
- "installs_last_month": 485,
+ "trending": 1.2213518125421352,
+ "installs_last_month": 491,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Linux Show Player",
+ "keywords": null,
+ "summary": "Cue player designed for stage productions",
+ "description": "\n Linux Show Player, LiSP for short, is a free cue player, mainly intended for sound-playback in stage productions,\n the goal is to provide a complete playback software for musical plays, theater shows and similar.\n \n Some highlights:\n \n List layout\n Cart layout\n Concurrent cues playback\n Pre/Post wait\n Undo/Redo changes\n Realtime sound effects\n Peak and ReplayGain normalization\n MIDI and OSC support\n \n ",
+ "id": "org_linuxshowplayer_LinuxShowPlayer",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0+",
+ "is_free_license": true,
+ "app_id": "org.linuxshowplayer.LinuxShowPlayer",
+ "icon": "https://dl.flathub.org/media/org/linuxshowplayer/LinuxShowPlayer/83022726b2ad14a50a068420b463f925/icons/128x128/org.linuxshowplayer.LinuxShowPlayer.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Audio",
+ "Player"
+ ],
+ "developer_name": "Francesco Ceruti",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "linuxshowplayer.org",
+ "verification_timestamp": "1703032114",
+ "runtime": "org.kde.Platform/x86_64/5.15-23.08",
+ "updated_at": 1724533563,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1702976037,
+ "trending": 11.287335305215848,
+ "installs_last_month": 486,
"isMobileFriendly": false
},
{
@@ -8907,8 +8907,8 @@
"aarch64"
],
"added_at": 1668030880,
- "trending": 11.741390569437472,
- "installs_last_month": 476,
+ "trending": 9.119674288993163,
+ "installs_last_month": 467,
"isMobileFriendly": false
},
{
@@ -8959,8 +8959,8 @@
"aarch64"
],
"added_at": 1740499798,
- "trending": 6.78443736312955,
- "installs_last_month": 450,
+ "trending": 5.679080422920656,
+ "installs_last_month": 442,
"isMobileFriendly": false
},
{
@@ -9042,8 +9042,8 @@
"aarch64"
],
"added_at": 1572904522,
- "trending": 10.0394078020615,
- "installs_last_month": 436,
+ "trending": 11.70294947854463,
+ "installs_last_month": 426,
"isMobileFriendly": false
},
{
@@ -9077,8 +9077,8 @@
"x86_64"
],
"added_at": 1554327414,
- "trending": 5.842427304206787,
- "installs_last_month": 363,
+ "trending": 5.631211914347332,
+ "installs_last_month": 371,
"isMobileFriendly": false
},
{
@@ -9115,8 +9115,8 @@
"aarch64"
],
"added_at": 1716533067,
- "trending": 9.22887989104836,
- "installs_last_month": 362,
+ "trending": 10.34829390575528,
+ "installs_last_month": 367,
"isMobileFriendly": false
},
{
@@ -9218,8 +9218,8 @@
"aarch64"
],
"added_at": 1673253607,
- "trending": 9.811805463557716,
- "installs_last_month": 345,
+ "trending": 8.18551548791888,
+ "installs_last_month": 353,
"isMobileFriendly": false
},
{
@@ -9254,44 +9254,8 @@
"x86_64"
],
"added_at": 1595576998,
- "trending": 9.851333673550403,
- "installs_last_month": 297,
- "isMobileFriendly": false
- },
- {
- "name": "OpenKJ",
- "keywords": null,
- "summary": "Professional karaoke hosting software",
- "description": "Karaoke hosting software aimed at professional karaoke DJsFeatures rotation management, playback of all common karaoke formats, and various other features important for hosting a show.",
- "id": "org_openkj_OpenKJ",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "org.openkj.OpenKJ",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.openkj.OpenKJ.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Audio",
- "Player"
- ],
- "developer_name": "T. Isaac Lightburn",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.kde.Platform/x86_64/5.15",
- "updated_at": 1631648077,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1627022843,
- "trending": 0.2405280556883651,
- "installs_last_month": 286,
+ "trending": 11.013244521140978,
+ "installs_last_month": 302,
"isMobileFriendly": false
},
{
@@ -9389,10 +9353,46 @@
"aarch64"
],
"added_at": 1546536827,
- "trending": 11.815765472345248,
- "installs_last_month": 278,
+ "trending": 10.583399070899896,
+ "installs_last_month": 276,
"isMobileFriendly": true
},
+ {
+ "name": "OpenKJ",
+ "keywords": null,
+ "summary": "Professional karaoke hosting software",
+ "description": "Karaoke hosting software aimed at professional karaoke DJsFeatures rotation management, playback of all common karaoke formats, and various other features important for hosting a show.",
+ "id": "org_openkj_OpenKJ",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "org.openkj.OpenKJ",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.openkj.OpenKJ.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Audio",
+ "Player"
+ ],
+ "developer_name": "T. Isaac Lightburn",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.kde.Platform/x86_64/5.15",
+ "updated_at": 1631648077,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1627022843,
+ "trending": 0.3597895911689578,
+ "installs_last_month": 274,
+ "isMobileFriendly": false
+ },
{
"name": "HBud",
"keywords": [
@@ -9441,8 +9441,44 @@
"aarch64"
],
"added_at": 1647329299,
- "trending": 10.262655060909436,
- "installs_last_month": 277,
+ "trending": 8.877651227574939,
+ "installs_last_month": 274,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Audok",
+ "keywords": null,
+ "summary": "A free, open source music player",
+ "description": "\n Audok is a simple linux folder based music player with streamripper and converter support.\n Audok is written in python3, the graphical user interface uses gtk3.\n Audok is a free software under the GPL license.\n \n Features:\n \n play mp3,wav,flac files\n youtube-dl support (mp3 downloader)\n streamripper support\n record wav files\n covert wav,ts,flac,mp4 to mp3\n \n ",
+ "id": "com_github_kalibari_audok",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0",
+ "is_free_license": true,
+ "app_id": "com.github.kalibari.audok",
+ "icon": "https://dl.flathub.org/media/com/github/kalibari.audok/b9d608b964d8fb4ca54f5ea8ae93e0db/icons/128x128/com.github.kalibari.audok.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Audio",
+ "Player"
+ ],
+ "developer_name": "Kalibari",
+ "verification_verified": true,
+ "verification_method": "login_provider",
+ "verification_login_name": "kalibari",
+ "verification_login_provider": "github",
+ "verification_login_is_organization": "true",
+ "verification_website": null,
+ "verification_timestamp": "1712175072",
+ "runtime": "org.gnome.Platform/x86_64/47",
+ "updated_at": 1742972271,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1628623503,
+ "trending": 10.413731211044352,
+ "installs_last_month": 259,
"isMobileFriendly": false
},
{
@@ -9482,44 +9518,8 @@
"aarch64"
],
"added_at": 1606810338,
- "trending": 5.071801372717012,
- "installs_last_month": 249,
- "isMobileFriendly": false
- },
- {
- "name": "Audok",
- "keywords": null,
- "summary": "A free, open source music player",
- "description": "\n Audok is a simple linux folder based music player with streamripper and converter support.\n Audok is written in python3, the graphical user interface uses gtk3.\n Audok is a free software under the GPL license.\n \n Features:\n \n play mp3,wav,flac files\n youtube-dl support (mp3 downloader)\n streamripper support\n record wav files\n covert wav,ts,flac,mp4 to mp3\n \n ",
- "id": "com_github_kalibari_audok",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0",
- "is_free_license": true,
- "app_id": "com.github.kalibari.audok",
- "icon": "https://dl.flathub.org/media/com/github/kalibari.audok/b9d608b964d8fb4ca54f5ea8ae93e0db/icons/128x128/com.github.kalibari.audok.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Audio",
- "Player"
- ],
- "developer_name": "Kalibari",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "kalibari",
- "verification_login_provider": "github",
- "verification_login_is_organization": "true",
- "verification_website": null,
- "verification_timestamp": "1712175072",
- "runtime": "org.gnome.Platform/x86_64/47",
- "updated_at": 1742972271,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1628623503,
- "trending": 9.79674946002188,
- "installs_last_month": 248,
+ "trending": 4.85925510355531,
+ "installs_last_month": 247,
"isMobileFriendly": false
},
{
@@ -9707,8 +9707,8 @@
"aarch64"
],
"added_at": 1653287276,
- "trending": 7.565496001854672,
- "installs_last_month": 235,
+ "trending": 8.602771318687237,
+ "installs_last_month": 225,
"isMobileFriendly": false
},
{
@@ -9752,8 +9752,8 @@
"aarch64"
],
"added_at": 1716966838,
- "trending": 12.00017585503434,
- "installs_last_month": 190,
+ "trending": 11.504166197958902,
+ "installs_last_month": 183,
"isMobileFriendly": false
},
{
@@ -9804,55 +9804,10 @@
"aarch64"
],
"added_at": 1734140564,
- "trending": 3.273240083433409,
+ "trending": 3.242588899205103,
"installs_last_month": 157,
"isMobileFriendly": false
},
- {
- "name": "sView",
- "keywords": [
- "stereoscopic",
- "3d",
- "vr",
- "360",
- "180",
- "anaglyph",
- "shutter",
- "hmd",
- "glasses"
- ],
- "summary": "Stereoscopic Media Player",
- "description": "\n sView is a media player to view 3D stereoscopic videos.\n \n ",
- "id": "ru_sview_sView",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0+",
- "is_free_license": true,
- "app_id": "ru.sview.sView",
- "icon": "https://dl.flathub.org/media/ru/sview/sView/776e9bf68640f82e58de697f8c58624d/icons/128x128/ru.sview.sView.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Player"
- ],
- "developer_name": "Kirill Gavrilov Tartynskih",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1743281502,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1642624714,
- "trending": 10.67369994154367,
- "installs_last_month": 152,
- "isMobileFriendly": false
- },
{
"name": "Parlatype",
"keywords": [
@@ -9988,8 +9943,94 @@
"aarch64"
],
"added_at": 1717579979,
- "trending": 14.440369647027042,
- "installs_last_month": 150,
+ "trending": 14.838327663483252,
+ "installs_last_month": 153,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "sView",
+ "keywords": [
+ "stereoscopic",
+ "3d",
+ "vr",
+ "360",
+ "180",
+ "anaglyph",
+ "shutter",
+ "hmd",
+ "glasses"
+ ],
+ "summary": "Stereoscopic Media Player",
+ "description": "\n sView is a media player to view 3D stereoscopic videos.\n \n ",
+ "id": "ru_sview_sView",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0+",
+ "is_free_license": true,
+ "app_id": "ru.sview.sView",
+ "icon": "https://dl.flathub.org/media/ru/sview/sView/776e9bf68640f82e58de697f8c58624d/icons/128x128/ru.sview.sView.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Player"
+ ],
+ "developer_name": "Kirill Gavrilov Tartynskih",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1743281502,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1642624714,
+ "trending": 9.289105578524572,
+ "installs_last_month": 151,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "theBeat",
+ "keywords": [
+ "audio",
+ "music",
+ "cd",
+ "player"
+ ],
+ "summary": "Audio Player",
+ "description": "\n Play and organise your music. theBeat automatically discovers music on your computer and presents it in an easy-to-use interface.\n \n \n Automatically categorise your music\n Blazing fast search\n Quickly find tracks by author and artist\n Create playlists to quickly access the music you love\n \n ",
+ "id": "com_vicr123_thebeat",
+ "type": "desktop-application",
+ "project_license": "GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "com.vicr123.thebeat",
+ "icon": "https://dl.flathub.org/media/com/vicr123/thebeat/5060423b13905fa12999c92a878fde75/icons/128x128/com.vicr123.thebeat.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Audio",
+ "Music",
+ "Player"
+ ],
+ "developer_name": "Victor Tran",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "vicr123.com",
+ "verification_timestamp": "1685873104",
+ "runtime": "org.kde.Platform/x86_64/6.7",
+ "updated_at": 1730528121,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1644306647,
+ "trending": 6.183847276771334,
+ "installs_last_month": 147,
"isMobileFriendly": false
},
{
@@ -10030,51 +10071,10 @@
"x86_64"
],
"added_at": 1523975071,
- "trending": 0.5117542218738097,
+ "trending": 0.49476826114278094,
"installs_last_month": 146,
"isMobileFriendly": false
},
- {
- "name": "theBeat",
- "keywords": [
- "audio",
- "music",
- "cd",
- "player"
- ],
- "summary": "Audio Player",
- "description": "\n Play and organise your music. theBeat automatically discovers music on your computer and presents it in an easy-to-use interface.\n \n \n Automatically categorise your music\n Blazing fast search\n Quickly find tracks by author and artist\n Create playlists to quickly access the music you love\n \n ",
- "id": "com_vicr123_thebeat",
- "type": "desktop-application",
- "project_license": "GPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "com.vicr123.thebeat",
- "icon": "https://dl.flathub.org/media/com/vicr123/thebeat/5060423b13905fa12999c92a878fde75/icons/128x128/com.vicr123.thebeat.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Audio",
- "Music",
- "Player"
- ],
- "developer_name": "Victor Tran",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "vicr123.com",
- "verification_timestamp": "1685873104",
- "runtime": "org.kde.Platform/x86_64/6.7",
- "updated_at": 1730528121,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1644306647,
- "trending": 6.590595338434245,
- "installs_last_month": 142,
- "isMobileFriendly": false
- },
{
"name": "Argos",
"keywords": null,
@@ -10133,8 +10133,8 @@
"aarch64"
],
"added_at": 1661151742,
- "trending": -0.04889404559540833,
- "installs_last_month": 131,
+ "trending": 2.897884582098149,
+ "installs_last_month": 129,
"isMobileFriendly": false
},
{
@@ -10170,48 +10170,8 @@
"aarch64"
],
"added_at": 1734090220,
- "trending": 2.4259698027511787,
- "installs_last_month": 107,
- "isMobileFriendly": false
- },
- {
- "name": "Waylyrics",
- "keywords": [
- "desktop lyric"
- ],
- "summary": "Show desktop lyrics in a furry way",
- "description": "The furry way to show desktop lyrics\n ",
- "id": "io_github_waylyrics_Waylyrics",
- "type": "desktop-application",
- "translations": {
- "zh": {}
- },
- "project_license": "MIT",
- "is_free_license": true,
- "app_id": "io.github.waylyrics.Waylyrics",
- "icon": "https://dl.flathub.org/media/io/github/waylyrics.Waylyrics/ff6145bc0b789d97d91edf6679b57594/icons/128x128/io.github.waylyrics.Waylyrics.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Audio",
- "Player"
- ],
- "developer_name": "mokurin000",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "waylyrics",
- "verification_login_provider": "github",
- "verification_login_is_organization": "true",
- "verification_website": null,
- "verification_timestamp": "1714174263",
- "runtime": "org.gnome.Platform/x86_64/48",
- "updated_at": 1742920763,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1714131643,
- "trending": 11.072778491819644,
- "installs_last_month": 99,
+ "trending": 2.9139591829639544,
+ "installs_last_month": 103,
"isMobileFriendly": false
},
{
@@ -10251,8 +10211,48 @@
"aarch64"
],
"added_at": 1700120389,
- "trending": 3.95931960867551,
- "installs_last_month": 97,
+ "trending": 6.474378132824228,
+ "installs_last_month": 99,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Waylyrics",
+ "keywords": [
+ "desktop lyric"
+ ],
+ "summary": "Show desktop lyrics in a furry way",
+ "description": "The furry way to show desktop lyrics\n ",
+ "id": "io_github_waylyrics_Waylyrics",
+ "type": "desktop-application",
+ "translations": {
+ "zh": {}
+ },
+ "project_license": "MIT",
+ "is_free_license": true,
+ "app_id": "io.github.waylyrics.Waylyrics",
+ "icon": "https://dl.flathub.org/media/io/github/waylyrics.Waylyrics/ff6145bc0b789d97d91edf6679b57594/icons/128x128/io.github.waylyrics.Waylyrics.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Audio",
+ "Player"
+ ],
+ "developer_name": "mokurin000",
+ "verification_verified": true,
+ "verification_method": "login_provider",
+ "verification_login_name": "waylyrics",
+ "verification_login_provider": "github",
+ "verification_login_is_organization": "true",
+ "verification_website": null,
+ "verification_timestamp": "1714174263",
+ "runtime": "org.gnome.Platform/x86_64/48",
+ "updated_at": 1742920763,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1714131643,
+ "trending": 9.338805250750378,
+ "installs_last_month": 94,
"isMobileFriendly": false
},
{
@@ -10289,13 +10289,13 @@
"aarch64"
],
"added_at": 1637219810,
- "trending": 1.902921235270118,
- "installs_last_month": 47,
+ "trending": 0.5570737582642048,
+ "installs_last_month": 49,
"isMobileFriendly": true
}
],
"query": "",
- "processingTimeMs": 19,
+ "processingTimeMs": 15,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -10468,8 +10468,8 @@
"aarch64"
],
"added_at": 1504907525,
- "trending": 8.485012588295016,
- "installs_last_month": 73209,
+ "trending": 8.201222605990885,
+ "installs_last_month": 73274,
"isMobileFriendly": false
},
{
@@ -10502,8 +10502,8 @@
"x86_64"
],
"added_at": 1517002182,
- "trending": 15.094639028647167,
- "installs_last_month": 62432,
+ "trending": 13.33937387140898,
+ "installs_last_month": 62324,
"isMobileFriendly": false
},
{
@@ -10725,8 +10725,8 @@
"aarch64"
],
"added_at": 1682619390,
- "trending": 14.290690113767146,
- "installs_last_month": 10685,
+ "trending": 14.583849243383725,
+ "installs_last_month": 10750,
"isMobileFriendly": true
},
{
@@ -10766,8 +10766,8 @@
"aarch64"
],
"added_at": 1664952305,
- "trending": 1.1690653767548165,
- "installs_last_month": 9403,
+ "trending": 1.1210074464533897,
+ "installs_last_month": 9343,
"isMobileFriendly": false
},
{
@@ -10807,8 +10807,8 @@
"aarch64"
],
"added_at": 1706169912,
- "trending": 9.510668952460016,
- "installs_last_month": 6137,
+ "trending": 8.33616834737214,
+ "installs_last_month": 6088,
"isMobileFriendly": false
},
{
@@ -11065,8 +11065,8 @@
"aarch64"
],
"added_at": 1578297964,
- "trending": 12.489938004857985,
- "installs_last_month": 4692,
+ "trending": 13.627522822996475,
+ "installs_last_month": 4659,
"isMobileFriendly": false
},
{
@@ -11103,8 +11103,8 @@
"aarch64"
],
"added_at": 1681218046,
- "trending": 7.454674157342846,
- "installs_last_month": 3794,
+ "trending": 7.825065060941292,
+ "installs_last_month": 3766,
"isMobileFriendly": false
},
{
@@ -11143,8 +11143,8 @@
"aarch64"
],
"added_at": 1561317361,
- "trending": 7.656825020674783,
- "installs_last_month": 3672,
+ "trending": 9.53599877478392,
+ "installs_last_month": 3679,
"isMobileFriendly": false
},
{
@@ -11188,8 +11188,8 @@
"x86_64"
],
"added_at": 1618343817,
- "trending": 7.462607691248954,
- "installs_last_month": 2749,
+ "trending": 8.032154068216617,
+ "installs_last_month": 2780,
"isMobileFriendly": false
},
{
@@ -11231,7 +11231,7 @@
"aarch64"
],
"added_at": 1653374999,
- "trending": 8.217410961611922,
+ "trending": 7.950564292620639,
"installs_last_month": 2594,
"isMobileFriendly": false
},
@@ -11272,8 +11272,8 @@
"x86_64"
],
"added_at": 1667596592,
- "trending": 4.569919675160263,
- "installs_last_month": 1700,
+ "trending": 5.232186980259857,
+ "installs_last_month": 1710,
"isMobileFriendly": false
},
{
@@ -11358,8 +11358,8 @@
"aarch64"
],
"added_at": 1641901413,
- "trending": 11.31443606659558,
- "installs_last_month": 1563,
+ "trending": 11.892691526689903,
+ "installs_last_month": 1568,
"isMobileFriendly": false
},
{
@@ -11418,8 +11418,8 @@
"aarch64"
],
"added_at": 1545905016,
- "trending": 8.987573489375665,
- "installs_last_month": 1291,
+ "trending": 7.0067977521019635,
+ "installs_last_month": 1296,
"isMobileFriendly": false
},
{
@@ -11453,8 +11453,8 @@
"aarch64"
],
"added_at": 1724319884,
- "trending": 11.071826073047056,
- "installs_last_month": 1256,
+ "trending": 8.173043350090948,
+ "installs_last_month": 1274,
"isMobileFriendly": false
},
{
@@ -11517,8 +11517,8 @@
"x86_64"
],
"added_at": 1589610027,
- "trending": 9.729315226724646,
- "installs_last_month": 233,
+ "trending": 14.110433761860207,
+ "installs_last_month": 228,
"isMobileFriendly": false
},
{
@@ -11554,7 +11554,7 @@
"aarch64"
],
"added_at": 1699222262,
- "trending": 4.141203764898369,
+ "trending": 2.995800670671661,
"installs_last_month": 115,
"isMobileFriendly": false
}
@@ -11608,8 +11608,8 @@
"aarch64"
],
"added_at": 1561317361,
- "trending": 7.656825020674783,
- "installs_last_month": 3672,
+ "trending": 9.53599877478392,
+ "installs_last_month": 3679,
"isMobileFriendly": false
},
{
@@ -11670,8 +11670,8 @@
"aarch64"
],
"added_at": 1509301060,
- "trending": 10.094300244027464,
- "installs_last_month": 3347,
+ "trending": 7.206892347614331,
+ "installs_last_month": 3351,
"isMobileFriendly": false
},
{
@@ -11715,8 +11715,8 @@
"x86_64"
],
"added_at": 1618343817,
- "trending": 7.462607691248954,
- "installs_last_month": 2749,
+ "trending": 8.032154068216617,
+ "installs_last_month": 2780,
"isMobileFriendly": false
},
{
@@ -11753,8 +11753,8 @@
"x86_64"
],
"added_at": 1600446687,
- "trending": 5.297044207887448,
- "installs_last_month": 625,
+ "trending": 5.842650455053168,
+ "installs_last_month": 606,
"isMobileFriendly": false
},
{
@@ -11783,7 +11783,7 @@
"project_license": "GPL-2.0+",
"is_free_license": true,
"app_id": "org.rncbc.qtractor",
- "icon": "https://dl.flathub.org/media/org/rncbc/qtractor/f8232488124c4c307ea0893fe8931eb9/icons/128x128/org.rncbc.qtractor.png",
+ "icon": "https://dl.flathub.org/media/org/rncbc/qtractor/1364894b40597ac7b84bf8dd48114662/icons/128x128/org.rncbc.qtractor.png",
"main_categories": "audiovideo",
"sub_categories": [
"Audio",
@@ -11799,14 +11799,14 @@
"verification_website": "rncbc.org",
"verification_timestamp": "1694345369",
"runtime": "org.kde.Platform/x86_64/6.8",
- "updated_at": 1739103386,
+ "updated_at": 1743759809,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1643704549,
- "trending": 2.7995778270024503,
- "installs_last_month": 590,
+ "trending": 3.0514381221069016,
+ "installs_last_month": 587,
"isMobileFriendly": false
},
{
@@ -11851,8 +11851,8 @@
"aarch64"
],
"added_at": 1620627935,
- "trending": 7.69201901226532,
- "installs_last_month": 453,
+ "trending": 8.981138273026694,
+ "installs_last_month": 461,
"isMobileFriendly": false
},
{
@@ -11909,8 +11909,8 @@
"aarch64"
],
"added_at": 1610015828,
- "trending": 6.418588369858509,
- "installs_last_month": 452,
+ "trending": 5.102764112911416,
+ "installs_last_month": 444,
"isMobileFriendly": false
},
{
@@ -11947,8 +11947,8 @@
"aarch64"
],
"added_at": 1683544972,
- "trending": 6.614735867106139,
- "installs_last_month": 207,
+ "trending": 6.557057325951909,
+ "installs_last_month": 217,
"isMobileFriendly": false
},
{
@@ -11984,57 +11984,8 @@
"aarch64"
],
"added_at": 1700645174,
- "trending": 5.521204245225851,
- "installs_last_month": 195,
- "isMobileFriendly": false
- },
- {
- "name": "GSequencer",
- "keywords": [
- "audio",
- "sequencer",
- "notation",
- "editor",
- "midi",
- "synth",
- "mixing",
- "effects"
- ],
- "summary": "Advanced Gtk+ Sequencer",
- "description": "GSequencer provides you various tools to play, create, edit and mix your own music.\n It features a step sequencer, piano roll, automation and wave-form editor.\n ",
- "id": "org_nongnu_gsequencer_gsequencer",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "org.nongnu.gsequencer.gsequencer",
- "icon": "https://dl.flathub.org/media/org/nongnu/gsequencer.gsequencer/01dbb457bde330ce2c53d6c75effff8b/icons/128x128/org.nongnu.gsequencer.gsequencer.png",
- "main_categories": "audiovideo",
- "sub_categories": [
- "Audio",
- "Midi",
- "Sequencer",
- "AudioVideoEditing",
- "Music",
- "GTK"
- ],
- "developer_name": "Joël Krähemann",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.gnome.Platform/x86_64/45",
- "updated_at": 1743005318,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1559685891,
- "trending": 6.830309966173196,
- "installs_last_month": 122,
+ "trending": 6.253486169452835,
+ "installs_last_month": 197,
"isMobileFriendly": false
},
{
@@ -12080,10 +12031,59 @@
"aarch64"
],
"added_at": 1548276503,
- "trending": 4.575949835875141,
+ "trending": 4.452540907602669,
"installs_last_month": 120,
"isMobileFriendly": false
},
+ {
+ "name": "GSequencer",
+ "keywords": [
+ "audio",
+ "sequencer",
+ "notation",
+ "editor",
+ "midi",
+ "synth",
+ "mixing",
+ "effects"
+ ],
+ "summary": "Advanced Gtk+ Sequencer",
+ "description": "GSequencer provides you various tools to play, create, edit and mix your own music.\n It features a step sequencer, piano roll, automation and wave-form editor.\n ",
+ "id": "org_nongnu_gsequencer_gsequencer",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "org.nongnu.gsequencer.gsequencer",
+ "icon": "https://dl.flathub.org/media/org/nongnu/gsequencer.gsequencer/bfa928f9a41469669f49bcda3ebe0000/icons/128x128/org.nongnu.gsequencer.gsequencer.png",
+ "main_categories": "audiovideo",
+ "sub_categories": [
+ "Audio",
+ "Midi",
+ "Sequencer",
+ "AudioVideoEditing",
+ "Music",
+ "GTK"
+ ],
+ "developer_name": "Joël Krähemann",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.gnome.Platform/x86_64/45",
+ "updated_at": 1743750141,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1559685891,
+ "trending": 7.678017195512412,
+ "installs_last_month": 118,
+ "isMobileFriendly": false
+ },
{
"name": "Stochas",
"keywords": [
@@ -12119,8 +12119,8 @@
"aarch64"
],
"added_at": 1661842762,
- "trending": 3.358445119352756,
- "installs_last_month": 92,
+ "trending": 0.7539369652895862,
+ "installs_last_month": 98,
"isMobileFriendly": false
}
],
@@ -12202,8 +12202,8 @@
"aarch64"
],
"added_at": 1597519191,
- "trending": 11.959696654488114,
- "installs_last_month": 4102,
+ "trending": 12.61423817560892,
+ "installs_last_month": 4119,
"isMobileFriendly": false
},
{
@@ -12274,13 +12274,13 @@
"aarch64"
],
"added_at": 1521742793,
- "trending": -0.03125010640668391,
- "installs_last_month": 149,
+ "trending": 0.5659130295972262,
+ "installs_last_month": 142,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 2,
+ "processingTimeMs": 3,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -12446,8 +12446,8 @@
"aarch64"
],
"added_at": 1623314528,
- "trending": 8.177484379370773,
- "installs_last_month": 24407,
+ "trending": 7.980659104246639,
+ "installs_last_month": 25317,
"isMobileFriendly": false
},
{
@@ -12482,8 +12482,8 @@
"x86_64"
],
"added_at": 1613461650,
- "trending": 9.358390526644069,
- "installs_last_month": 21271,
+ "trending": 9.055659414138088,
+ "installs_last_month": 21159,
"isMobileFriendly": false
},
{
@@ -12530,8 +12530,8 @@
"aarch64"
],
"added_at": 1542663293,
- "trending": 14.63778953355159,
- "installs_last_month": 17208,
+ "trending": 13.693448005938643,
+ "installs_last_month": 17102,
"isMobileFriendly": false
},
{
@@ -12567,8 +12567,8 @@
"aarch64"
],
"added_at": 1617787010,
- "trending": 8.767575521475527,
- "installs_last_month": 10154,
+ "trending": 8.242931098535124,
+ "installs_last_month": 10104,
"isMobileFriendly": false
},
{
@@ -12606,14 +12606,14 @@
"verification_website": null,
"verification_timestamp": null,
"runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1743531689,
+ "updated_at": 1743719956,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1620163158,
- "trending": 7.757484574770701,
- "installs_last_month": 7521,
+ "trending": 7.004800685519178,
+ "installs_last_month": 7597,
"isMobileFriendly": false
},
{
@@ -12797,8 +12797,8 @@
"aarch64"
],
"added_at": 1562361625,
- "trending": 10.168206651841205,
- "installs_last_month": 6352,
+ "trending": 10.707719718077712,
+ "installs_last_month": 6411,
"isMobileFriendly": false
},
{
@@ -12838,8 +12838,8 @@
"aarch64"
],
"added_at": 1706169912,
- "trending": 9.510668952460016,
- "installs_last_month": 6137,
+ "trending": 8.33616834737214,
+ "installs_last_month": 6088,
"isMobileFriendly": false
},
{
@@ -12890,8 +12890,8 @@
"aarch64"
],
"added_at": 1698070219,
- "trending": 14.460220962221566,
- "installs_last_month": 1366,
+ "trending": 13.85265445047231,
+ "installs_last_month": 1306,
"isMobileFriendly": true
},
{
@@ -12927,8 +12927,8 @@
"aarch64"
],
"added_at": 1586505616,
- "trending": 1.5724970532443256,
- "installs_last_month": 1272,
+ "trending": -0.8662278110319928,
+ "installs_last_month": 1285,
"isMobileFriendly": false
},
{
@@ -12983,8 +12983,8 @@
"aarch64"
],
"added_at": 1726129036,
- "trending": 4.614580141233804,
- "installs_last_month": 1081,
+ "trending": 1.2123396606159909,
+ "installs_last_month": 1105,
"isMobileFriendly": false
},
{
@@ -13022,8 +13022,8 @@
"aarch64"
],
"added_at": 1701682986,
- "trending": 9.416502137573476,
- "installs_last_month": 991,
+ "trending": 10.007578126484525,
+ "installs_last_month": 1001,
"isMobileFriendly": false
},
{
@@ -13063,8 +13063,8 @@
"aarch64"
],
"added_at": 1741532394,
- "trending": 3.114204660838,
- "installs_last_month": 948,
+ "trending": 4.973289780911313,
+ "installs_last_month": 978,
"isMobileFriendly": false
},
{
@@ -13098,8 +13098,8 @@
"aarch64"
],
"added_at": 1678691815,
- "trending": 8.381482237275614,
- "installs_last_month": 759,
+ "trending": 7.059706537492308,
+ "installs_last_month": 751,
"isMobileFriendly": false
},
{
@@ -13140,8 +13140,8 @@
"aarch64"
],
"added_at": 1734290578,
- "trending": 13.612687266580211,
- "installs_last_month": 591,
+ "trending": 8.60207042773809,
+ "installs_last_month": 598,
"isMobileFriendly": false
},
{
@@ -13235,8 +13235,8 @@
"aarch64"
],
"added_at": 1695624253,
- "trending": 14.173178566638931,
- "installs_last_month": 557,
+ "trending": 13.81065407827587,
+ "installs_last_month": 555,
"isMobileFriendly": true
},
{
@@ -13271,8 +13271,8 @@
"aarch64"
],
"added_at": 1685340808,
- "trending": 7.207685716788648,
- "installs_last_month": 119,
+ "trending": 6.350066867370504,
+ "installs_last_month": 115,
"isMobileFriendly": false
},
{
@@ -13421,13 +13421,13 @@
"aarch64"
],
"added_at": 1664953374,
- "trending": 6.07772865693865,
+ "trending": 7.69895274337194,
"installs_last_month": 62,
"isMobileFriendly": true
}
],
"query": "",
- "processingTimeMs": 5,
+ "processingTimeMs": 4,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -13495,8 +13495,8 @@
"aarch64"
],
"added_at": 1732792119,
- "trending": 15.470972608639594,
- "installs_last_month": 808,
+ "trending": 14.303653482842147,
+ "installs_last_month": 821,
"isMobileFriendly": false
},
{
@@ -13529,8 +13529,8 @@
"x86_64"
],
"added_at": 1728976641,
- "trending": 10.788026685697954,
- "installs_last_month": 103,
+ "trending": 7.370388106714646,
+ "installs_last_month": 106,
"isMobileFriendly": false
},
{
@@ -13563,8 +13563,8 @@
"x86_64"
],
"added_at": 1726253049,
- "trending": 1.9491360610190849,
- "installs_last_month": 88,
+ "trending": 1.455620877082512,
+ "installs_last_month": 90,
"isMobileFriendly": false
},
{
@@ -13597,8 +13597,8 @@
"x86_64"
],
"added_at": 1726046707,
- "trending": 1.7742282241084522,
- "installs_last_month": 61,
+ "trending": 2.2410078593522385,
+ "installs_last_month": 67,
"isMobileFriendly": false
},
{
@@ -13632,7 +13632,7 @@
],
"added_at": 1727677770,
"trending": 9.448117996887609,
- "installs_last_month": 59,
+ "installs_last_month": 57,
"isMobileFriendly": false
},
{
@@ -13716,8 +13716,8 @@
"aarch64"
],
"added_at": 1652257274,
- "trending": 9.695371839659671,
- "installs_last_month": 2301,
+ "trending": 8.64306273211973,
+ "installs_last_month": 2318,
"isMobileFriendly": false
},
{
@@ -13752,8 +13752,8 @@
"aarch64"
],
"added_at": 1614240708,
- "trending": 1.469774126483268,
- "installs_last_month": 555,
+ "trending": 1.832537851004922,
+ "installs_last_month": 545,
"isMobileFriendly": false
},
{
@@ -13787,8 +13787,8 @@
"aarch64"
],
"added_at": 1738343011,
- "trending": 8.044869227859799,
- "installs_last_month": 259,
+ "trending": 7.966317022607469,
+ "installs_last_month": 268,
"isMobileFriendly": false
}
],
@@ -13836,14 +13836,14 @@
"verification_website": "thonny.org",
"verification_timestamp": "1683360950",
"runtime": "org.freedesktop.Sdk/x86_64/24.08",
- "updated_at": 1743289066,
+ "updated_at": 1743702195,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1631138980,
- "trending": 6.321883997163884,
- "installs_last_month": 3082,
+ "trending": 3.625873522597226,
+ "installs_last_month": 3083,
"isMobileFriendly": false
},
{
@@ -13951,8 +13951,8 @@
"aarch64"
],
"added_at": 1502263406,
- "trending": 14.77994245724364,
- "installs_last_month": 567,
+ "trending": 14.290088470063392,
+ "installs_last_month": 586,
"isMobileFriendly": true
},
{
@@ -14009,8 +14009,8 @@
"aarch64"
],
"added_at": 1664952135,
- "trending": 12.52424244692264,
- "installs_last_month": 514,
+ "trending": 12.506159380945132,
+ "installs_last_month": 516,
"isMobileFriendly": false
},
{
@@ -14043,8 +14043,8 @@
"x86_64"
],
"added_at": 1711606678,
- "trending": 2.408339362606048,
- "installs_last_month": 235,
+ "trending": 1.279593973018649,
+ "installs_last_month": 244,
"isMobileFriendly": false
},
{
@@ -14079,8 +14079,8 @@
"aarch64"
],
"added_at": 1644155066,
- "trending": 10.200108301085788,
- "installs_last_month": 172,
+ "trending": 10.060605727102912,
+ "installs_last_month": 176,
"isMobileFriendly": false
},
{
@@ -14128,13 +14128,13 @@
"aarch64"
],
"added_at": 1693384474,
- "trending": 9.251463414789963,
- "installs_last_month": 94,
+ "trending": 8.928918092478645,
+ "installs_last_month": 100,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 2,
+ "processingTimeMs": 3,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -14212,8 +14212,8 @@
"aarch64"
],
"added_at": 1629353328,
- "trending": 10.84645797089856,
- "installs_last_month": 938,
+ "trending": 12.86652387652579,
+ "installs_last_month": 950,
"isMobileFriendly": false
},
{
@@ -14247,8 +14247,8 @@
"aarch64"
],
"added_at": 1718956544,
- "trending": 5.328239915155973,
- "installs_last_month": 503,
+ "trending": 3.53051039568409,
+ "installs_last_month": 507,
"isMobileFriendly": false
},
{
@@ -14466,13 +14466,13 @@
"aarch64"
],
"added_at": 1501584244,
- "trending": 12.201673617564992,
- "installs_last_month": 464,
+ "trending": 13.19792152751947,
+ "installs_last_month": 467,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 2,
+ "processingTimeMs": 3,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -14518,8 +14518,8 @@
"aarch64"
],
"added_at": 1511228529,
- "trending": 11.11574482724602,
- "installs_last_month": 55864,
+ "trending": 10.620750151140754,
+ "installs_last_month": 55947,
"isMobileFriendly": false
},
{
@@ -14559,8 +14559,8 @@
"aarch64"
],
"added_at": 1588577796,
- "trending": 16.674974620552767,
- "installs_last_month": 14502,
+ "trending": 19.841128636195197,
+ "installs_last_month": 14740,
"isMobileFriendly": false
},
{
@@ -14602,8 +14602,8 @@
"aarch64"
],
"added_at": 1541523541,
- "trending": 7.915869440269752,
- "installs_last_month": 11395,
+ "trending": 7.869855641617045,
+ "installs_last_month": 11355,
"isMobileFriendly": false
},
{
@@ -14636,8 +14636,8 @@
"x86_64"
],
"added_at": 1512419308,
- "trending": 8.566379765619331,
- "installs_last_month": 10742,
+ "trending": 8.832309930360198,
+ "installs_last_month": 10785,
"isMobileFriendly": false
},
{
@@ -14678,8 +14678,8 @@
"x86_64"
],
"added_at": 1515761933,
- "trending": 15.108452838460012,
- "installs_last_month": 10319,
+ "trending": 14.71061919634668,
+ "installs_last_month": 10307,
"isMobileFriendly": false
},
{
@@ -14717,8 +14717,8 @@
"x86_64"
],
"added_at": 1653889917,
- "trending": 8.079686083201166,
- "installs_last_month": 8789,
+ "trending": 7.231796828922606,
+ "installs_last_month": 8782,
"isMobileFriendly": false
},
{
@@ -14757,8 +14757,8 @@
"aarch64"
],
"added_at": 1544824365,
- "trending": 10.408751760216733,
- "installs_last_month": 8161,
+ "trending": 10.656387494895974,
+ "installs_last_month": 8074,
"isMobileFriendly": false
},
{
@@ -14792,8 +14792,8 @@
"aarch64"
],
"added_at": 1573929233,
- "trending": 9.603807326865864,
- "installs_last_month": 4734,
+ "trending": 8.145218146396484,
+ "installs_last_month": 4706,
"isMobileFriendly": false
},
{
@@ -14827,8 +14827,8 @@
"aarch64"
],
"added_at": 1505809439,
- "trending": 11.240628720824144,
- "installs_last_month": 4531,
+ "trending": 9.18237117807088,
+ "installs_last_month": 4504,
"isMobileFriendly": false
},
{
@@ -14867,8 +14867,8 @@
"aarch64"
],
"added_at": 1544443055,
- "trending": 14.468351491504796,
- "installs_last_month": 3467,
+ "trending": 13.067190378292876,
+ "installs_last_month": 3424,
"isMobileFriendly": false
},
{
@@ -14908,8 +14908,8 @@
"aarch64"
],
"added_at": 1533057898,
- "trending": 8.532886830983987,
- "installs_last_month": 3169,
+ "trending": 10.803674833886417,
+ "installs_last_month": 3141,
"isMobileFriendly": false
},
{
@@ -14943,14 +14943,14 @@
"verification_website": "thonny.org",
"verification_timestamp": "1683360950",
"runtime": "org.freedesktop.Sdk/x86_64/24.08",
- "updated_at": 1743289066,
+ "updated_at": 1743702195,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1631138980,
- "trending": 6.321883997163884,
- "installs_last_month": 3082,
+ "trending": 3.625873522597226,
+ "installs_last_month": 3083,
"isMobileFriendly": false
},
{
@@ -14984,8 +14984,8 @@
"aarch64"
],
"added_at": 1572036490,
- "trending": 7.645900951035646,
- "installs_last_month": 2952,
+ "trending": 7.830281112028151,
+ "installs_last_month": 2923,
"isMobileFriendly": false
},
{
@@ -15023,8 +15023,8 @@
"aarch64"
],
"added_at": 1548926522,
- "trending": 8.114908634453503,
- "installs_last_month": 2840,
+ "trending": 7.947203848350916,
+ "installs_last_month": 2839,
"isMobileFriendly": false
},
{
@@ -15228,8 +15228,8 @@
"aarch64"
],
"added_at": 1507895172,
- "trending": 13.52854841406064,
- "installs_last_month": 2644,
+ "trending": 11.863954988571695,
+ "installs_last_month": 2629,
"isMobileFriendly": false
},
{
@@ -15267,8 +15267,8 @@
"aarch64"
],
"added_at": 1602483534,
- "trending": 10.350328202284429,
- "installs_last_month": 2491,
+ "trending": 12.173685335202304,
+ "installs_last_month": 2485,
"isMobileFriendly": false
},
{
@@ -15304,8 +15304,8 @@
"aarch64"
],
"added_at": 1583925575,
- "trending": 9.6350889983265,
- "installs_last_month": 2407,
+ "trending": 8.891224608288269,
+ "installs_last_month": 2404,
"isMobileFriendly": false
},
{
@@ -15342,8 +15342,8 @@
"aarch64"
],
"added_at": 1593156339,
- "trending": 9.072582360953584,
- "installs_last_month": 2403,
+ "trending": 6.735410934476713,
+ "installs_last_month": 2386,
"isMobileFriendly": false
},
{
@@ -15387,8 +15387,8 @@
"aarch64"
],
"added_at": 1533666080,
- "trending": 10.51771030928358,
- "installs_last_month": 2118,
+ "trending": 11.256057708463896,
+ "installs_last_month": 2145,
"isMobileFriendly": false
},
{
@@ -15438,8 +15438,8 @@
"aarch64"
],
"added_at": 1646263732,
- "trending": 16.94402581601626,
- "installs_last_month": 2094,
+ "trending": 17.665036886113935,
+ "installs_last_month": 2141,
"isMobileFriendly": false
},
{
@@ -15473,8 +15473,8 @@
"aarch64"
],
"added_at": 1620628045,
- "trending": 9.310649097042816,
- "installs_last_month": 1980,
+ "trending": 9.664978734399115,
+ "installs_last_month": 2039,
"isMobileFriendly": false
},
{
@@ -15514,8 +15514,8 @@
"aarch64"
],
"added_at": 1711214046,
- "trending": 3.5290438036980096,
- "installs_last_month": 1589,
+ "trending": 5.991954069539055,
+ "installs_last_month": 1573,
"isMobileFriendly": false
},
{
@@ -15553,8 +15553,8 @@
"aarch64"
],
"added_at": 1512667538,
- "trending": 11.594617233115963,
- "installs_last_month": 1530,
+ "trending": 9.136569548002765,
+ "installs_last_month": 1541,
"isMobileFriendly": false
},
{
@@ -15588,8 +15588,8 @@
"aarch64"
],
"added_at": 1572036896,
- "trending": 11.071043406118996,
- "installs_last_month": 1466,
+ "trending": 10.596554671176328,
+ "installs_last_month": 1485,
"isMobileFriendly": false
},
{
@@ -15631,8 +15631,8 @@
"aarch64"
],
"added_at": 1492622275,
- "trending": 12.713992276098937,
- "installs_last_month": 1391,
+ "trending": 9.475227195917816,
+ "installs_last_month": 1417,
"isMobileFriendly": false
},
{
@@ -15670,8 +15670,8 @@
"aarch64"
],
"added_at": 1541523265,
- "trending": 1.9045541460748892,
- "installs_last_month": 1330,
+ "trending": 0.757883748965458,
+ "installs_last_month": 1364,
"isMobileFriendly": false
},
{
@@ -15716,8 +15716,8 @@
"aarch64"
],
"added_at": 1653681937,
- "trending": 5.743517365857899,
- "installs_last_month": 1296,
+ "trending": 5.597922863054148,
+ "installs_last_month": 1281,
"isMobileFriendly": false
},
{
@@ -15758,8 +15758,8 @@
"aarch64"
],
"added_at": 1536937874,
- "trending": 12.06639081506879,
- "installs_last_month": 1201,
+ "trending": 9.510151999563874,
+ "installs_last_month": 1217,
"isMobileFriendly": false
},
{
@@ -15798,8 +15798,8 @@
"aarch64"
],
"added_at": 1732792171,
- "trending": 4.622646470245278,
- "installs_last_month": 1135,
+ "trending": 3.9291144470746024,
+ "installs_last_month": 1140,
"isMobileFriendly": false
},
{
@@ -15839,8 +15839,8 @@
"aarch64"
],
"added_at": 1706169139,
- "trending": 12.340228894045334,
- "installs_last_month": 1083,
+ "trending": 9.76725388988971,
+ "installs_last_month": 1091,
"isMobileFriendly": false
},
{
@@ -15874,8 +15874,8 @@
"aarch64"
],
"added_at": 1597519138,
- "trending": 7.88402306150088,
- "installs_last_month": 962,
+ "trending": 12.484326747793272,
+ "installs_last_month": 978,
"isMobileFriendly": false
},
{
@@ -16034,8 +16034,8 @@
"aarch64"
],
"added_at": 1610956326,
- "trending": 11.571521545055392,
- "installs_last_month": 921,
+ "trending": 10.48519443773504,
+ "installs_last_month": 931,
"isMobileFriendly": false
},
{
@@ -16069,8 +16069,8 @@
"aarch64"
],
"added_at": 1652852157,
- "trending": 12.964298553229296,
- "installs_last_month": 857,
+ "trending": 8.435314172766988,
+ "installs_last_month": 859,
"isMobileFriendly": false
},
{
@@ -16103,8 +16103,8 @@
"x86_64"
],
"added_at": 1700484389,
- "trending": 7.830508334970711,
- "installs_last_month": 848,
+ "trending": 8.038062236951356,
+ "installs_last_month": 841,
"isMobileFriendly": false
},
{
@@ -16138,8 +16138,8 @@
"aarch64"
],
"added_at": 1699222000,
- "trending": 6.673461044094393,
- "installs_last_month": 721,
+ "trending": 7.858137193744008,
+ "installs_last_month": 710,
"isMobileFriendly": false
},
{
@@ -16172,8 +16172,8 @@
"x86_64"
],
"added_at": 1588577876,
- "trending": 4.417521394350462,
- "installs_last_month": 689,
+ "trending": 8.430818521217649,
+ "installs_last_month": 683,
"isMobileFriendly": false
},
{
@@ -16207,8 +16207,8 @@
"aarch64"
],
"added_at": 1679817740,
- "trending": 3.8156134912355073,
- "installs_last_month": 600,
+ "trending": 2.9460196545146347,
+ "installs_last_month": 577,
"isMobileFriendly": false
},
{
@@ -16247,8 +16247,8 @@
"aarch64"
],
"added_at": 1664952422,
- "trending": 11.372060439528944,
- "installs_last_month": 560,
+ "trending": 12.974048763857637,
+ "installs_last_month": 562,
"isMobileFriendly": false
},
{
@@ -16288,47 +16288,8 @@
"aarch64"
],
"added_at": 1533314042,
- "trending": 7.335024917946248,
- "installs_last_month": 440,
- "isMobileFriendly": false
- },
- {
- "name": "GB Studio",
- "keywords": null,
- "summary": "A quick and easy to use drag and drop retro game creator for Game Boy",
- "description": "GB Studio is drag and drop game creator for making Game Boy games\n It is designed to be usable by people with little to no previous programming knowledge using simple visual scripting but also provides multiple access points for advanced users to access the game engine's virtual machine (GBVM) and to directly modify game engine's C and Z80 assembly code through plugins.\n You can generate ROM files that can be run in an emulator, on a web page or on real Game Boy hardware\n ",
- "id": "dev_gbstudio_gb-studio",
- "type": "desktop-application",
- "translations": {
- "de": {
- "description": "GB Studio ist ein Drag-and-Drop-Programm zur Erstellung von GameBoy-Spielen\n Es ist so designed, dass es auch von Personen mit geringen oder gar keinen Programmierkenntnissen mit Hilfe von einfachen visuellen Skripten verwendet werden kann. Es bietet aber auch fortgeschrittenen Benutzern mehrere Zugriffsmöglichkeiten auf die virtuelle Maschine der Spiel-Engine (GBVM) und die direkte Änderung des C und Z80-Assembler-Codes der Spiel-Engine durch Plugins.\n Du kannst ROM-Dateien erzeugen, die in einem Emulator, auf einer Webseite oder auf echter GameBoy Hardware ausgeführt werden können\n ",
- "summary": "Ein schneller und einfach zu bedienender Drag-and-Drop-Retrospielentwickler für den Game Boy"
- }
- },
- "project_license": "MIT",
- "is_free_license": true,
- "app_id": "dev.gbstudio.gb-studio",
- "icon": "https://dl.flathub.org/media/dev/gbstudio/gb-studio/87cc0e124d58bd0f39eec07cbfbbb119/icons/128x128/dev.gbstudio.gb-studio.png",
- "main_categories": "development",
- "sub_categories": [
- "IDE"
- ],
- "developer_name": "Chris Maltby",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1727905330,
- "arches": [
- "x86_64"
- ],
- "added_at": 1680418800,
- "trending": 7.658540872600113,
- "installs_last_month": 416,
+ "trending": 8.242666167626295,
+ "installs_last_month": 452,
"isMobileFriendly": false
},
{
@@ -16377,10 +16338,49 @@
"x86_64"
],
"added_at": 1685597936,
- "trending": 8.12126502791757,
+ "trending": 8.517337881445284,
"installs_last_month": 411,
"isMobileFriendly": false
},
+ {
+ "name": "GB Studio",
+ "keywords": null,
+ "summary": "A quick and easy to use drag and drop retro game creator for Game Boy",
+ "description": "GB Studio is drag and drop game creator for making Game Boy games\n It is designed to be usable by people with little to no previous programming knowledge using simple visual scripting but also provides multiple access points for advanced users to access the game engine's virtual machine (GBVM) and to directly modify game engine's C and Z80 assembly code through plugins.\n You can generate ROM files that can be run in an emulator, on a web page or on real Game Boy hardware\n ",
+ "id": "dev_gbstudio_gb-studio",
+ "type": "desktop-application",
+ "translations": {
+ "de": {
+ "description": "GB Studio ist ein Drag-and-Drop-Programm zur Erstellung von GameBoy-Spielen\n Es ist so designed, dass es auch von Personen mit geringen oder gar keinen Programmierkenntnissen mit Hilfe von einfachen visuellen Skripten verwendet werden kann. Es bietet aber auch fortgeschrittenen Benutzern mehrere Zugriffsmöglichkeiten auf die virtuelle Maschine der Spiel-Engine (GBVM) und die direkte Änderung des C und Z80-Assembler-Codes der Spiel-Engine durch Plugins.\n Du kannst ROM-Dateien erzeugen, die in einem Emulator, auf einer Webseite oder auf echter GameBoy Hardware ausgeführt werden können\n ",
+ "summary": "Ein schneller und einfach zu bedienender Drag-and-Drop-Retrospielentwickler für den Game Boy"
+ }
+ },
+ "project_license": "MIT",
+ "is_free_license": true,
+ "app_id": "dev.gbstudio.gb-studio",
+ "icon": "https://dl.flathub.org/media/dev/gbstudio/gb-studio/87cc0e124d58bd0f39eec07cbfbbb119/icons/128x128/dev.gbstudio.gb-studio.png",
+ "main_categories": "development",
+ "sub_categories": [
+ "IDE"
+ ],
+ "developer_name": "Chris Maltby",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1727905330,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1680418800,
+ "trending": 7.495821093340039,
+ "installs_last_month": 399,
+ "isMobileFriendly": false
+ },
{
"name": "STM32CubeMX",
"keywords": null,
@@ -16411,8 +16411,8 @@
"x86_64"
],
"added_at": 1732797730,
- "trending": -0.3661354713696556,
- "installs_last_month": 377,
+ "trending": 1.570733216370988,
+ "installs_last_month": 362,
"isMobileFriendly": false
},
{
@@ -16454,8 +16454,8 @@
"aarch64"
],
"added_at": 1675495041,
- "trending": 8.616223896816333,
- "installs_last_month": 306,
+ "trending": 7.849249197189581,
+ "installs_last_month": 319,
"isMobileFriendly": false
},
{
@@ -16489,8 +16489,8 @@
"aarch64"
],
"added_at": 1676357753,
- "trending": 1.4162466790746422,
- "installs_last_month": 287,
+ "trending": 1.7565036908464329,
+ "installs_last_month": 293,
"isMobileFriendly": false
},
{
@@ -16526,8 +16526,8 @@
"aarch64"
],
"added_at": 1632159437,
- "trending": 6.507360062316733,
- "installs_last_month": 286,
+ "trending": 8.450928183352119,
+ "installs_last_month": 273,
"isMobileFriendly": false
},
{
@@ -16563,8 +16563,8 @@
"x86_64"
],
"added_at": 1628624608,
- "trending": 0.8549459513513895,
- "installs_last_month": 270,
+ "trending": 1.924309543904,
+ "installs_last_month": 266,
"isMobileFriendly": false
},
{
@@ -16603,8 +16603,8 @@
"aarch64"
],
"added_at": 1628537023,
- "trending": 7.094763109438268,
- "installs_last_month": 261,
+ "trending": 0.8213206725544853,
+ "installs_last_month": 264,
"isMobileFriendly": false
},
{
@@ -16638,8 +16638,8 @@
"x86_64"
],
"added_at": 1721461326,
- "trending": 8.59985470660945,
- "installs_last_month": 237,
+ "trending": 9.9213685034504,
+ "installs_last_month": 233,
"isMobileFriendly": false
},
{
@@ -16678,8 +16678,8 @@
"aarch64"
],
"added_at": 1548003667,
- "trending": 10.414622338462182,
- "installs_last_month": 219,
+ "trending": 10.310136817704,
+ "installs_last_month": 213,
"isMobileFriendly": false
},
{
@@ -16713,45 +16713,8 @@
"aarch64"
],
"added_at": 1702977702,
- "trending": 8.35687427140784,
- "installs_last_month": 209,
- "isMobileFriendly": false
- },
- {
- "name": "Eclipse 4DIAC IDE",
- "keywords": [
- "4diac",
- "iot"
- ],
- "summary": "An OpenSource IEC 61499 compatible PLC IDE",
- "description": "\n Eclipse 4DIAC IDE is an integrated development environment based on IEC 61499. It supports the development\n of distributed industrial control solutions, deployed mainly to PLCs.\n \n \n This is the official, Eclipse Foundation build of Eclipse 4DIAC IDE, packaged into a Flatpak. It re-uses\n the signed artifacts from download.eclipse.org, but is not provided by the Eclipse 4DIAC project.\n \n ",
- "id": "org_eclipse_iot_fourdiac_Ide",
- "type": "desktop-application",
- "translations": {},
- "project_license": "EPL-2.0",
- "is_free_license": true,
- "app_id": "org.eclipse.iot.fourdiac.Ide",
- "icon": "https://dl.flathub.org/media/org/eclipse/iot.fourdiac.Ide.desktop/d7ba4d852f85a37c9d834615f9a0f9ae/icons/128x128/org.eclipse.iot.fourdiac.Ide.desktop.png",
- "main_categories": "development",
- "sub_categories": [
- "IDE"
- ],
- "developer_name": "Eclipse 4DIAC",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.gnome.Platform/x86_64/46",
- "updated_at": 1718010663,
- "arches": [
- "x86_64"
- ],
- "added_at": 1539693093,
- "trending": 5.466497909808965,
- "installs_last_month": 116,
+ "trending": 8.044490551777898,
+ "installs_last_month": 201,
"isMobileFriendly": false
},
{
@@ -16785,8 +16748,8 @@
"aarch64"
],
"added_at": 1702975052,
- "trending": 6.020538828928004,
- "installs_last_month": 114,
+ "trending": 6.0982867492012405,
+ "installs_last_month": 115,
"isMobileFriendly": false
},
{
@@ -16827,10 +16790,81 @@
"aarch64"
],
"added_at": 1724320123,
- "trending": 5.537586199178047,
+ "trending": 3.7523139806286734,
+ "installs_last_month": 114,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Eclipse 4DIAC IDE",
+ "keywords": [
+ "4diac",
+ "iot"
+ ],
+ "summary": "An OpenSource IEC 61499 compatible PLC IDE",
+ "description": "\n Eclipse 4DIAC IDE is an integrated development environment based on IEC 61499. It supports the development\n of distributed industrial control solutions, deployed mainly to PLCs.\n \n \n This is the official, Eclipse Foundation build of Eclipse 4DIAC IDE, packaged into a Flatpak. It re-uses\n the signed artifacts from download.eclipse.org, but is not provided by the Eclipse 4DIAC project.\n \n ",
+ "id": "org_eclipse_iot_fourdiac_Ide",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "EPL-2.0",
+ "is_free_license": true,
+ "app_id": "org.eclipse.iot.fourdiac.Ide",
+ "icon": "https://dl.flathub.org/media/org/eclipse/iot.fourdiac.Ide.desktop/d7ba4d852f85a37c9d834615f9a0f9ae/icons/128x128/org.eclipse.iot.fourdiac.Ide.desktop.png",
+ "main_categories": "development",
+ "sub_categories": [
+ "IDE"
+ ],
+ "developer_name": "Eclipse 4DIAC",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.gnome.Platform/x86_64/46",
+ "updated_at": 1718010663,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1539693093,
+ "trending": 4.586350844639944,
"installs_last_month": 113,
"isMobileFriendly": false
},
+ {
+ "name": "Inky",
+ "keywords": null,
+ "summary": "Write interactive narrative in inkle's markup language",
+ "description": "Inky is a editor for ink, inkle's markup language for writing\n interactive narrative in games, as used in 80 Days.\n It's an IDE (integrated development environment), because it\n gives you a single app that lets you play in the editor as you\n write, and fix any bugs in your code.\n ",
+ "id": "com_inklestudios_Inky",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "MIT",
+ "is_free_license": true,
+ "app_id": "com.inklestudios.Inky",
+ "icon": "https://dl.flathub.org/media/com/inklestudios/Inky/5a51bfd601c3acca86cd1f228ede35a7/icons/128x128/com.inklestudios.Inky.png",
+ "main_categories": "development",
+ "sub_categories": [
+ "IDE"
+ ],
+ "developer_name": "Inkle Studios",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1719592364,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1607331647,
+ "trending": 9.753771819184184,
+ "installs_last_month": 103,
+ "isMobileFriendly": false
+ },
{
"name": "Alif Programming Language",
"keywords": null,
@@ -16868,41 +16902,7 @@
],
"added_at": 1606132652,
"trending": 1.309821108138931,
- "installs_last_month": 104,
- "isMobileFriendly": false
- },
- {
- "name": "Inky",
- "keywords": null,
- "summary": "Write interactive narrative in inkle's markup language",
- "description": "Inky is a editor for ink, inkle's markup language for writing\n interactive narrative in games, as used in 80 Days.\n It's an IDE (integrated development environment), because it\n gives you a single app that lets you play in the editor as you\n write, and fix any bugs in your code.\n ",
- "id": "com_inklestudios_Inky",
- "type": "desktop-application",
- "translations": {},
- "project_license": "MIT",
- "is_free_license": true,
- "app_id": "com.inklestudios.Inky",
- "icon": "https://dl.flathub.org/media/com/inklestudios/Inky/5a51bfd601c3acca86cd1f228ede35a7/icons/128x128/com.inklestudios.Inky.png",
- "main_categories": "development",
- "sub_categories": [
- "IDE"
- ],
- "developer_name": "Inkle Studios",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1719592364,
- "arches": [
- "x86_64"
- ],
- "added_at": 1607331647,
- "trending": 8.514469489746498,
- "installs_last_month": 99,
+ "installs_last_month": 102,
"isMobileFriendly": false
},
{
@@ -16943,8 +16943,8 @@
"aarch64"
],
"added_at": 1702293492,
- "trending": 8.539482144394086,
- "installs_last_month": 70,
+ "trending": 7.380912003404469,
+ "installs_last_month": 73,
"isMobileFriendly": false
},
{
@@ -16978,8 +16978,8 @@
"aarch64"
],
"added_at": 1687350380,
- "trending": 0.6085976085790297,
- "installs_last_month": 64,
+ "trending": 3.720218104586202,
+ "installs_last_month": 65,
"isMobileFriendly": false
},
{
@@ -17015,8 +17015,8 @@
"aarch64"
],
"added_at": 1639598891,
- "trending": 5.945559800104875,
- "installs_last_month": 53,
+ "trending": 6.9683670700150255,
+ "installs_last_month": 57,
"isMobileFriendly": false
},
{
@@ -17055,7 +17055,7 @@
],
"added_at": 1706173214,
"trending": 12.62178389470815,
- "installs_last_month": 49,
+ "installs_last_month": 48,
"isMobileFriendly": false
}
],
@@ -17177,8 +17177,8 @@
"aarch64"
],
"added_at": 1502263406,
- "trending": 14.77994245724364,
- "installs_last_month": 567,
+ "trending": 14.290088470063392,
+ "installs_last_month": 586,
"isMobileFriendly": true
}
],
@@ -17226,8 +17226,8 @@
"aarch64"
],
"added_at": 1529320213,
- "trending": 5.9461116247485855,
- "installs_last_month": 1768,
+ "trending": 15.412624532871227,
+ "installs_last_month": 1784,
"isMobileFriendly": false
},
{
@@ -17422,8 +17422,8 @@
"aarch64"
],
"added_at": 1510238421,
- "trending": 11.03712835837542,
- "installs_last_month": 883,
+ "trending": 11.299882018033657,
+ "installs_last_month": 873,
"isMobileFriendly": false
},
{
@@ -17457,8 +17457,8 @@
"aarch64"
],
"added_at": 1545134477,
- "trending": 10.928742684319769,
- "installs_last_month": 614,
+ "trending": 11.063362271390163,
+ "installs_last_month": 623,
"isMobileFriendly": false
},
{
@@ -17500,8 +17500,45 @@
"aarch64"
],
"added_at": 1733191777,
- "trending": 5.558131036553577,
- "installs_last_month": 523,
+ "trending": 5.477429347418913,
+ "installs_last_month": 531,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "SmartGit",
+ "keywords": [
+ "git"
+ ],
+ "summary": "Get your commit done",
+ "description": "\n SmartGit is a powerful graphical Git client. SmartGit runs\n on all three major platforms: Linux, macOS and Windows.\n \n \n SmartGit comes with integrations for GitHub, GitLab, Azure DevOps and BitBucket for easy cloning, creating Pull Requests and adding Review Comments.\n Of course, you can use SmartGit with your own Git repositories or other hosting providers.\n \n NOTE: This wrapper is not verified by, affiliated with, or supported by syntevo GmbH.\n ",
+ "id": "com_syntevo_SmartGit",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "LicenseRef-proprietary",
+ "is_free_license": false,
+ "app_id": "com.syntevo.SmartGit",
+ "icon": "https://dl.flathub.org/media/com/syntevo/SmartGit/3596166a258288a81d91bd61018c9841/icons/128x128/com.syntevo.SmartGit.png",
+ "main_categories": "development",
+ "sub_categories": [
+ "RevisionControl"
+ ],
+ "developer_name": "syntevo GmbH",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1743517906,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1535352846,
+ "trending": 10.960288720577823,
+ "installs_last_month": 495,
"isMobileFriendly": false
},
{
@@ -17614,45 +17651,8 @@
"aarch64"
],
"added_at": 1617777728,
- "trending": 11.760680871573369,
- "installs_last_month": 498,
- "isMobileFriendly": false
- },
- {
- "name": "SmartGit",
- "keywords": [
- "git"
- ],
- "summary": "Get your commit done",
- "description": "\n SmartGit is a powerful graphical Git client. SmartGit runs\n on all three major platforms: Linux, macOS and Windows.\n \n \n SmartGit comes with integrations for GitHub, GitLab, Azure DevOps and BitBucket for easy cloning, creating Pull Requests and adding Review Comments.\n Of course, you can use SmartGit with your own Git repositories or other hosting providers.\n \n NOTE: This wrapper is not verified by, affiliated with, or supported by syntevo GmbH.\n ",
- "id": "com_syntevo_SmartGit",
- "type": "desktop-application",
- "translations": {},
- "project_license": "LicenseRef-proprietary",
- "is_free_license": false,
- "app_id": "com.syntevo.SmartGit",
- "icon": "https://dl.flathub.org/media/com/syntevo/SmartGit/3596166a258288a81d91bd61018c9841/icons/128x128/com.syntevo.SmartGit.png",
- "main_categories": "development",
- "sub_categories": [
- "RevisionControl"
- ],
- "developer_name": "syntevo GmbH",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1743517906,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1535352846,
- "trending": 9.08030824855547,
- "installs_last_month": 488,
+ "trending": 13.7063886494634,
+ "installs_last_month": 490,
"isMobileFriendly": false
},
{
@@ -17686,8 +17686,8 @@
"aarch64"
],
"added_at": 1678213047,
- "trending": 10.444992497322518,
- "installs_last_month": 484,
+ "trending": 11.72421416791826,
+ "installs_last_month": 480,
"isMobileFriendly": false
},
{
@@ -17721,8 +17721,8 @@
"aarch64"
],
"added_at": 1651742267,
- "trending": 11.21434790488598,
- "installs_last_month": 432,
+ "trending": 10.011831399258034,
+ "installs_last_month": 440,
"isMobileFriendly": false
},
{
@@ -17755,13 +17755,13 @@
"x86_64"
],
"added_at": 1709109530,
- "trending": 11.598365330174596,
- "installs_last_month": 369,
+ "trending": 11.375912845585129,
+ "installs_last_month": 362,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 3,
+ "processingTimeMs": 4,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -18002,7 +18002,7 @@
"aarch64"
],
"added_at": 1534840817,
- "trending": 13.592339098480595,
+ "trending": 14.8731784095849,
"installs_last_month": 381,
"isMobileFriendly": false
},
@@ -18047,8 +18047,8 @@
"aarch64"
],
"added_at": 1519827195,
- "trending": 13.18806886162568,
- "installs_last_month": 313,
+ "trending": 12.563376455158991,
+ "installs_last_month": 306,
"isMobileFriendly": false
},
{
@@ -18250,13 +18250,13 @@
"aarch64"
],
"added_at": 1593767059,
- "trending": 13.767908505603817,
- "installs_last_month": 212,
+ "trending": 13.870461769324947,
+ "installs_last_month": 207,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 2,
+ "processingTimeMs": 3,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -18279,7 +18279,7 @@
"project_license": "LicenseRef-proprietary",
"is_free_license": false,
"app_id": "com.getpostman.Postman",
- "icon": "https://dl.flathub.org/media/com/getpostman/Postman/e6524f98d7ce712c7e042efef4076b58/icons/128x128/com.getpostman.Postman.png",
+ "icon": "https://dl.flathub.org/media/com/getpostman/Postman/f027b80165d02ad0550835f5b3d07032/icons/128x128/com.getpostman.Postman.png",
"main_categories": "development",
"sub_categories": [
"WebDevelopment"
@@ -18293,14 +18293,14 @@
"verification_website": null,
"verification_timestamp": null,
"runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1743528581,
+ "updated_at": 1743754634,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1529683648,
- "trending": 9.239960595605076,
- "installs_last_month": 15048,
+ "trending": 9.604188790224258,
+ "installs_last_month": 15012,
"isMobileFriendly": false
},
{
@@ -18431,8 +18431,8 @@
"aarch64"
],
"added_at": 1662966825,
- "trending": 15.643245140364348,
- "installs_last_month": 3935,
+ "trending": 15.015572354863524,
+ "installs_last_month": 3974,
"isMobileFriendly": false
},
{
@@ -18482,8 +18482,8 @@
"aarch64"
],
"added_at": 1646263732,
- "trending": 16.94402581601626,
- "installs_last_month": 2094,
+ "trending": 17.665036886113935,
+ "installs_last_month": 2141,
"isMobileFriendly": false
},
{
@@ -18525,8 +18525,8 @@
"aarch64"
],
"added_at": 1492622275,
- "trending": 12.713992276098937,
- "installs_last_month": 1391,
+ "trending": 9.475227195917816,
+ "installs_last_month": 1417,
"isMobileFriendly": false
},
{
@@ -18565,8 +18565,8 @@
"aarch64"
],
"added_at": 1664952422,
- "trending": 11.372060439528944,
- "installs_last_month": 560,
+ "trending": 12.974048763857637,
+ "installs_last_month": 562,
"isMobileFriendly": false
},
{
@@ -18601,8 +18601,8 @@
"aarch64"
],
"added_at": 1664268179,
- "trending": 3.8676602451078903,
- "installs_last_month": 519,
+ "trending": 4.880314441711946,
+ "installs_last_month": 525,
"isMobileFriendly": false
},
{
@@ -18637,8 +18637,8 @@
"aarch64"
],
"added_at": 1664268148,
- "trending": 10.825118095419215,
- "installs_last_month": 497,
+ "trending": 11.088097612306314,
+ "installs_last_month": 496,
"isMobileFriendly": false
},
{
@@ -18674,8 +18674,8 @@
"aarch64"
],
"added_at": 1629216824,
- "trending": 2.645452493897019,
- "installs_last_month": 376,
+ "trending": 3.201286816147128,
+ "installs_last_month": 374,
"isMobileFriendly": false
},
{
@@ -18722,7 +18722,7 @@
"aarch64"
],
"added_at": 1684138981,
- "trending": 12.439815680067383,
+ "trending": 13.947708428173229,
"installs_last_month": 212,
"isMobileFriendly": false
},
@@ -18756,8 +18756,8 @@
"x86_64"
],
"added_at": 1726749829,
- "trending": 9.54180632326991,
- "installs_last_month": 159,
+ "trending": 7.56678005171987,
+ "installs_last_month": 166,
"isMobileFriendly": false
},
{
@@ -18941,8 +18941,8 @@
"aarch64"
],
"added_at": 1692925198,
- "trending": 1.3640366745729258,
- "installs_last_month": 102,
+ "trending": 1.417269039979489,
+ "installs_last_month": 109,
"isMobileFriendly": false
},
{
@@ -18986,8 +18986,8 @@
"x86_64"
],
"added_at": 1558032684,
- "trending": 5.482872052732695,
- "installs_last_month": 66,
+ "trending": 5.506874313101035,
+ "installs_last_month": 68,
"isMobileFriendly": false
}
],
@@ -19041,8 +19041,8 @@
"aarch64"
],
"added_at": 1666334692,
- "trending": 10.39692521324178,
- "installs_last_month": 34255,
+ "trending": 9.867398139766214,
+ "installs_last_month": 34528,
"isMobileFriendly": false
},
{
@@ -19081,8 +19081,8 @@
"x86_64"
],
"added_at": 1714032230,
- "trending": 5.8960420457107094,
- "installs_last_month": 3899,
+ "trending": 4.871336460718362,
+ "installs_last_month": 3930,
"isMobileFriendly": false
},
{
@@ -19121,8 +19121,8 @@
"aarch64"
],
"added_at": 1492084114,
- "trending": 11.911156381432692,
- "installs_last_month": 2271,
+ "trending": 9.531053891505016,
+ "installs_last_month": 2276,
"isMobileFriendly": false
},
{
@@ -19166,8 +19166,8 @@
"aarch64"
],
"added_at": 1532423485,
- "trending": 11.562163511684714,
- "installs_last_month": 1701,
+ "trending": 11.70015125398493,
+ "installs_last_month": 1721,
"isMobileFriendly": false
},
{
@@ -19202,8 +19202,8 @@
"aarch64"
],
"added_at": 1689751982,
- "trending": 12.076480278490775,
- "installs_last_month": 1390,
+ "trending": 12.68484555183518,
+ "installs_last_month": 1380,
"isMobileFriendly": false
},
{
@@ -19241,8 +19241,8 @@
"aarch64"
],
"added_at": 1673594246,
- "trending": 4.2746493419856595,
- "installs_last_month": 1223,
+ "trending": 1.0323455972862257,
+ "installs_last_month": 1222,
"isMobileFriendly": false
},
{
@@ -19281,8 +19281,8 @@
"aarch64"
],
"added_at": 1619814809,
- "trending": -0.1925801329540343,
- "installs_last_month": 916,
+ "trending": 0.7855248966554857,
+ "installs_last_month": 918,
"isMobileFriendly": false
},
{
@@ -19323,8 +19323,8 @@
"aarch64"
],
"added_at": 1544441551,
- "trending": 1.0605751236179588,
- "installs_last_month": 862,
+ "trending": 2.5667796901733055,
+ "installs_last_month": 859,
"isMobileFriendly": false
},
{
@@ -19358,43 +19358,8 @@
"aarch64"
],
"added_at": 1653890545,
- "trending": 10.234681548101618,
- "installs_last_month": 787,
- "isMobileFriendly": false
- },
- {
- "name": "ioquake3",
- "keywords": null,
- "summary": "Free and open-source Quake 3 based engine",
- "description": "\n ioquake3 is a free and open-source software first person shooter engine based on the Quake 3: Arena and Quake 3: Team Arena source code.\n \n \n The source code is licensed under the GPL version 2, and was first released under that license by id software on August 20th, 2005. Since then,\n our dedicated team has been working hard to improve it, fixing bugs, and adding just the right new features to make the engine even better than before.\n \n ",
- "id": "org_ioquake3_ioquake3",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0-or-later",
- "is_free_license": true,
- "app_id": "org.ioquake3.ioquake3",
- "icon": "https://dl.flathub.org/media/org/ioquake3/ioquake3/4a46c781a2a44e0bd7125c9de15b4903/icons/128x128/org.ioquake3.ioquake3.png",
- "main_categories": "game",
- "sub_categories": [
- "ActionGame"
- ],
- "developer_name": "The ioquake Group",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1730811122,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1694851804,
- "trending": 7.674839534543868,
- "installs_last_month": 733,
+ "trending": 10.093452593917595,
+ "installs_last_month": 782,
"isMobileFriendly": false
},
{
@@ -19428,8 +19393,43 @@
"aarch64"
],
"added_at": 1529314530,
- "trending": 6.1388242720398924,
- "installs_last_month": 727,
+ "trending": 7.14586508304694,
+ "installs_last_month": 738,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "ioquake3",
+ "keywords": null,
+ "summary": "Free and open-source Quake 3 based engine",
+ "description": "\n ioquake3 is a free and open-source software first person shooter engine based on the Quake 3: Arena and Quake 3: Team Arena source code.\n \n \n The source code is licensed under the GPL version 2, and was first released under that license by id software on August 20th, 2005. Since then,\n our dedicated team has been working hard to improve it, fixing bugs, and adding just the right new features to make the engine even better than before.\n \n ",
+ "id": "org_ioquake3_ioquake3",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0-or-later",
+ "is_free_license": true,
+ "app_id": "org.ioquake3.ioquake3",
+ "icon": "https://dl.flathub.org/media/org/ioquake3/ioquake3/4a46c781a2a44e0bd7125c9de15b4903/icons/128x128/org.ioquake3.ioquake3.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame"
+ ],
+ "developer_name": "The ioquake Group",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1730811122,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1694851804,
+ "trending": 5.307998737157676,
+ "installs_last_month": 734,
"isMobileFriendly": false
},
{
@@ -19471,8 +19471,8 @@
"x86_64"
],
"added_at": 1614754972,
- "trending": 14.577934246014925,
- "installs_last_month": 645,
+ "trending": 11.615015246828976,
+ "installs_last_month": 651,
"isMobileFriendly": false
},
{
@@ -19515,49 +19515,8 @@
"aarch64"
],
"added_at": 1494977795,
- "trending": 1.0686928703744796,
- "installs_last_month": 636,
- "isMobileFriendly": false
- },
- {
- "name": "Freedoom: Phase 1",
- "keywords": [
- "first",
- "person",
- "shooter",
- "doom",
- "freedoom"
- ],
- "summary": "First-person shooter based on the Doom engine",
- "description": "\n Freedoom: Phase 1 contains four episodes, nine levels each, to\n provide a smoothly-paced first person action game. In it is a\n wide variety of mazes and enemies to fight and challenge your\n reflexes.\n \n \n The Freedoom project aims to produce three base-game data files\n (IWADs) for Doom-compatible engines. With it comes the\n capability to also play the wide range of mods created for Doom\n by a vibrant community. Freedoom: Phase 1 is fully compatible\n with The Ultimate Doom mods.\n \n ",
- "id": "io_github_freedoom_Phase1",
- "type": "desktop-application",
- "translations": {},
- "project_license": "BSD-3-Clause",
- "is_free_license": true,
- "app_id": "io.github.freedoom.Phase1",
- "icon": "https://dl.flathub.org/media/io/github/freedoom.Phase1/b2924df02394faf679748428a9106a9f/icons/128x128/io.github.freedoom.Phase1.png",
- "main_categories": "game",
- "sub_categories": [
- "ActionGame"
- ],
- "developer_name": "Freedoom Project",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1735905272,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1572441098,
- "trending": -1.0338373430904528,
- "installs_last_month": 634,
+ "trending": 2.603694397839193,
+ "installs_last_month": 633,
"isMobileFriendly": false
},
{
@@ -19598,8 +19557,49 @@
"aarch64"
],
"added_at": 1653627129,
- "trending": 0.09088202358039554,
- "installs_last_month": 623,
+ "trending": 2.643853762846346,
+ "installs_last_month": 632,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Freedoom: Phase 1",
+ "keywords": [
+ "first",
+ "person",
+ "shooter",
+ "doom",
+ "freedoom"
+ ],
+ "summary": "First-person shooter based on the Doom engine",
+ "description": "\n Freedoom: Phase 1 contains four episodes, nine levels each, to\n provide a smoothly-paced first person action game. In it is a\n wide variety of mazes and enemies to fight and challenge your\n reflexes.\n \n \n The Freedoom project aims to produce three base-game data files\n (IWADs) for Doom-compatible engines. With it comes the\n capability to also play the wide range of mods created for Doom\n by a vibrant community. Freedoom: Phase 1 is fully compatible\n with The Ultimate Doom mods.\n \n ",
+ "id": "io_github_freedoom_Phase1",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "BSD-3-Clause",
+ "is_free_license": true,
+ "app_id": "io.github.freedoom.Phase1",
+ "icon": "https://dl.flathub.org/media/io/github/freedoom.Phase1/b2924df02394faf679748428a9106a9f/icons/128x128/io.github.freedoom.Phase1.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame"
+ ],
+ "developer_name": "Freedoom Project",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1735905272,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1572441098,
+ "trending": 0.8521762019167867,
+ "installs_last_month": 631,
"isMobileFriendly": false
},
{
@@ -19638,8 +19638,8 @@
"aarch64"
],
"added_at": 1591265312,
- "trending": 0.11901451846671196,
- "installs_last_month": 611,
+ "trending": -0.1963909296421178,
+ "installs_last_month": 616,
"isMobileFriendly": false
},
{
@@ -19691,8 +19691,8 @@
"aarch64"
],
"added_at": 1580802922,
- "trending": 12.645407809616511,
- "installs_last_month": 577,
+ "trending": 13.030788566780624,
+ "installs_last_month": 583,
"isMobileFriendly": false
},
{
@@ -19726,48 +19726,8 @@
"aarch64"
],
"added_at": 1653890694,
- "trending": 5.736234156575097,
- "installs_last_month": 564,
- "isMobileFriendly": false
- },
- {
- "name": "Total Chaos",
- "keywords": [
- "first",
- "person",
- "shooter",
- "doom"
- ],
- "summary": "Survival horror set on a remote island known as Fort Oasis",
- "description": "\n Survival horror set on a remote island known as Fort Oasis. The island was once run by a community of coal miners which one day suddenly disappeared,\n leaving behind the abandoned concrete jungle to waste away.\n \n \n Something, clearly, has gone very wrong with this place. Upon your arrival at Fort Oasis, you receive a strange radio transmission. Someone wants to be found.\n Survive in 6 chapters, against over 8 horrifying fiends with a large assortment of weapons.\n \n ",
- "id": "com_moddb_TotalChaos",
- "type": "desktop-application",
- "translations": {},
- "project_license": "CC-BY-NC-SA-3.0",
- "is_free_license": false,
- "app_id": "com.moddb.TotalChaos",
- "icon": "https://dl.flathub.org/media/com/moddb/TotalChaos/be5c6cdce97e98375fe27e6c58d59f07/icons/128x128/com.moddb.TotalChaos.png",
- "main_categories": "game",
- "sub_categories": [
- "ActionGame"
- ],
- "developer_name": "wadaholic",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1728074957,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1542096375,
- "trending": 1.102099457484683,
- "installs_last_month": 523,
+ "trending": 4.473224760018749,
+ "installs_last_month": 572,
"isMobileFriendly": false
},
{
@@ -19807,8 +19767,48 @@
"aarch64"
],
"added_at": 1707812256,
- "trending": 2.397101112231494,
- "installs_last_month": 518,
+ "trending": 0.5791473750153118,
+ "installs_last_month": 516,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Total Chaos",
+ "keywords": [
+ "first",
+ "person",
+ "shooter",
+ "doom"
+ ],
+ "summary": "Survival horror set on a remote island known as Fort Oasis",
+ "description": "\n Survival horror set on a remote island known as Fort Oasis. The island was once run by a community of coal miners which one day suddenly disappeared,\n leaving behind the abandoned concrete jungle to waste away.\n \n \n Something, clearly, has gone very wrong with this place. Upon your arrival at Fort Oasis, you receive a strange radio transmission. Someone wants to be found.\n Survive in 6 chapters, against over 8 horrifying fiends with a large assortment of weapons.\n \n ",
+ "id": "com_moddb_TotalChaos",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "CC-BY-NC-SA-3.0",
+ "is_free_license": false,
+ "app_id": "com.moddb.TotalChaos",
+ "icon": "https://dl.flathub.org/media/com/moddb/TotalChaos/be5c6cdce97e98375fe27e6c58d59f07/icons/128x128/com.moddb.TotalChaos.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame"
+ ],
+ "developer_name": "wadaholic",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1728074957,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1542096375,
+ "trending": 1.5671697019818511,
+ "installs_last_month": 515,
"isMobileFriendly": false
},
{
@@ -19848,7 +19848,7 @@
"aarch64"
],
"added_at": 1572441119,
- "trending": 1.933085028869571,
+ "trending": 0.1943341967777643,
"installs_last_month": 512,
"isMobileFriendly": false
},
@@ -19882,8 +19882,48 @@
"x86_64"
],
"added_at": 1577086268,
- "trending": 1.0226096461119265,
- "installs_last_month": 489,
+ "trending": 0.790588323315154,
+ "installs_last_month": 498,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "AAAAXY",
+ "keywords": null,
+ "summary": "Impossible spaces puzzle platformer",
+ "description": "\n Although your general goal is reaching the surprising end of the game, you are encouraged to set your own goals while playing. Exploration will be rewarded, and secrets await you!\n \n \n So jump and run around, and enjoy losing your sense of orientation in this World of Wicked Weirdness. Find out what Van Vlijmen will make you do. Pick a path, get inside a Klein Bottle, recognize some memes, and by all means: don't look up.\n \n ",
+ "id": "io_github_divverent_aaaaxy",
+ "type": "desktop-application",
+ "translations": {
+ "de": {
+ "description": "\n Obwohl es grundsätzlich darum geht, das überraschende Ende des Spiels zu finden, setze dir doch deine eigenen Ziele beim Spielen. Erforsche die unmögliche Welt dieses Spiels und finde versteckte Geheimnisse!\n \n \n Springe und laufe herum, und verliere deinen Orientierungssinn in dieser \"World of Wicked Weirdness\". Finde heraus, was Van Vlijmen von dir will. Wähle klug, krieche in eine Kleinsche Flasche, erkenne die Memes, und vor allen Dingen: schaue nicht nach oben.\n \n ",
+ "summary": "Puzzle-Platformer in unmöglichen Räumen"
+ }
+ },
+ "project_license": "Apache-2.0",
+ "is_free_license": true,
+ "app_id": "io.github.divverent.aaaaxy",
+ "icon": "https://dl.flathub.org/media/io/github/divverent.aaaaxy/d41d47e17aee071012d8ee9453d1b7e2/icons/128x128/io.github.divverent.aaaaxy.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame"
+ ],
+ "developer_name": "divVerent",
+ "verification_verified": true,
+ "verification_method": "login_provider",
+ "verification_login_name": "divverent",
+ "verification_login_provider": "github",
+ "verification_login_is_organization": "true",
+ "verification_website": null,
+ "verification_timestamp": "1717437665",
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1742838313,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1638901787,
+ "trending": 9.40987747048236,
+ "installs_last_month": 488,
"isMobileFriendly": false
},
{
@@ -19925,47 +19965,7 @@
"aarch64"
],
"added_at": 1529314411,
- "trending": 3.762514443444667,
- "installs_last_month": 488,
- "isMobileFriendly": false
- },
- {
- "name": "AAAAXY",
- "keywords": null,
- "summary": "Impossible spaces puzzle platformer",
- "description": "\n Although your general goal is reaching the surprising end of the game, you are encouraged to set your own goals while playing. Exploration will be rewarded, and secrets await you!\n \n \n So jump and run around, and enjoy losing your sense of orientation in this World of Wicked Weirdness. Find out what Van Vlijmen will make you do. Pick a path, get inside a Klein Bottle, recognize some memes, and by all means: don't look up.\n \n ",
- "id": "io_github_divverent_aaaaxy",
- "type": "desktop-application",
- "translations": {
- "de": {
- "description": "\n Obwohl es grundsätzlich darum geht, das überraschende Ende des Spiels zu finden, setze dir doch deine eigenen Ziele beim Spielen. Erforsche die unmögliche Welt dieses Spiels und finde versteckte Geheimnisse!\n \n \n Springe und laufe herum, und verliere deinen Orientierungssinn in dieser \"World of Wicked Weirdness\". Finde heraus, was Van Vlijmen von dir will. Wähle klug, krieche in eine Kleinsche Flasche, erkenne die Memes, und vor allen Dingen: schaue nicht nach oben.\n \n ",
- "summary": "Puzzle-Platformer in unmöglichen Räumen"
- }
- },
- "project_license": "Apache-2.0",
- "is_free_license": true,
- "app_id": "io.github.divverent.aaaaxy",
- "icon": "https://dl.flathub.org/media/io/github/divverent.aaaaxy/d41d47e17aee071012d8ee9453d1b7e2/icons/128x128/io.github.divverent.aaaaxy.png",
- "main_categories": "game",
- "sub_categories": [
- "ActionGame"
- ],
- "developer_name": "divVerent",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "divverent",
- "verification_login_provider": "github",
- "verification_login_is_organization": "true",
- "verification_website": null,
- "verification_timestamp": "1717437665",
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1742838313,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1638901787,
- "trending": 8.726260722777148,
+ "trending": 0.5011164801045526,
"installs_last_month": 484,
"isMobileFriendly": false
},
@@ -19999,8 +19999,8 @@
"x86_64"
],
"added_at": 1696931204,
- "trending": 0.11451203711588208,
- "installs_last_month": 460,
+ "trending": 0.44739425829068846,
+ "installs_last_month": 469,
"isMobileFriendly": false
},
{
@@ -20034,8 +20034,8 @@
"aarch64"
],
"added_at": 1697191675,
- "trending": 3.7288909693832375,
- "installs_last_month": 447,
+ "trending": 1.1452552559222169,
+ "installs_last_month": 452,
"isMobileFriendly": false
},
{
@@ -20074,7 +20074,7 @@
"aarch64"
],
"added_at": 1653552452,
- "trending": 8.207645313802784,
+ "trending": 7.946484672022694,
"installs_last_month": 446,
"isMobileFriendly": false
},
@@ -20118,8 +20118,43 @@
"aarch64"
],
"added_at": 1706558871,
- "trending": 1.386884961006936,
- "installs_last_month": 434,
+ "trending": 2.9419138139830605,
+ "installs_last_month": 423,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "AssaultCube Reloaded",
+ "keywords": null,
+ "summary": "First-person-shooter game",
+ "description": "The game offers fast paced gameplay just like its predecessor AssaultCube. Improvements over the original game include:\n \n New, diverse game modes and mutators\n Many new and different weapons\n More realistic gameplay: damage fading over distance, bleeding, drowning\n Ricochet shots (bouncing bullets)\n Chat easily visible, separated from the main console\n Less potential cheats (more server-sided code)\n Better voting system: ignore neutral votes, veto admin votes after second press\n Improved radar showing explosions and shotlines\n Killfeed making it easy to see kills\n Spawn enqueue/dequeue—no need to spam the spawn button\n \n ",
+ "id": "ca_victorz_acr_AssaultCubeReloaded",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "Zlib",
+ "is_free_license": true,
+ "app_id": "ca.victorz.acr.AssaultCubeReloaded",
+ "icon": "https://dl.flathub.org/media/ca/victorz/acr.AssaultCubeReloaded/d33ec7dd7a6b711191e114c55f64c0ca/icons/128x128/ca.victorz.acr.AssaultCubeReloaded.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame"
+ ],
+ "developer_name": "AssaultCube Reloaded Task Force",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1717620050,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1717580470,
+ "trending": 6.6349942124961805,
+ "installs_last_month": 410,
"isMobileFriendly": false
},
{
@@ -20154,83 +20189,8 @@
"x86_64"
],
"added_at": 1623578388,
- "trending": 10.336800425643656,
- "installs_last_month": 425,
- "isMobileFriendly": false
- },
- {
- "name": "Jazz² Resurrection",
- "keywords": [
- "game",
- "action",
- "platformer"
- ],
- "summary": "A re-implementation of Jazz Jackrabbit 2",
- "description": "\n\t\t\tJazz² Resurrection is re-implementation of the game Jazz Jackrabbit 2 released in 1998. It supports various versions of the game, specifically:\n\t\t\n \n Base game (including shareware demo)\n Holiday Hare '98 / Christmas Chronicles\n The Secret Files (recommended)\n \n \n\t\t\tAlso, it partially supports some features of the JJ2+ extension and MLLE.\n\t\t\n ",
- "id": "tk_deat_Jazz2Resurrection",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "tk.deat.Jazz2Resurrection",
- "icon": "https://dl.flathub.org/media/tk/deat/Jazz2Resurrection/044cb8d0c5bc739e1d717764da4463bd/icons/128x128/tk.deat.Jazz2Resurrection.png",
- "main_categories": "game",
- "sub_categories": [
- "ActionGame",
- "ArcadeGame"
- ],
- "developer_name": "Daniel Rajf",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "deat.tk",
- "verification_timestamp": "1704269387",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1739914678,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1704220783,
- "trending": 5.463274322100348,
- "installs_last_month": 395,
- "isMobileFriendly": false
- },
- {
- "name": "AssaultCube Reloaded",
- "keywords": null,
- "summary": "First-person-shooter game",
- "description": "The game offers fast paced gameplay just like its predecessor AssaultCube. Improvements over the original game include:\n \n New, diverse game modes and mutators\n Many new and different weapons\n More realistic gameplay: damage fading over distance, bleeding, drowning\n Ricochet shots (bouncing bullets)\n Chat easily visible, separated from the main console\n Less potential cheats (more server-sided code)\n Better voting system: ignore neutral votes, veto admin votes after second press\n Improved radar showing explosions and shotlines\n Killfeed making it easy to see kills\n Spawn enqueue/dequeue—no need to spam the spawn button\n \n ",
- "id": "ca_victorz_acr_AssaultCubeReloaded",
- "type": "desktop-application",
- "translations": {},
- "project_license": "Zlib",
- "is_free_license": true,
- "app_id": "ca.victorz.acr.AssaultCubeReloaded",
- "icon": "https://dl.flathub.org/media/ca/victorz/acr.AssaultCubeReloaded/d33ec7dd7a6b711191e114c55f64c0ca/icons/128x128/ca.victorz.acr.AssaultCubeReloaded.png",
- "main_categories": "game",
- "sub_categories": [
- "ActionGame"
- ],
- "developer_name": "AssaultCube Reloaded Task Force",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1717620050,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1717580470,
- "trending": 4.766062271185784,
- "installs_last_month": 392,
+ "trending": 8.988415088724729,
+ "installs_last_month": 403,
"isMobileFriendly": false
},
{
@@ -20270,7 +20230,47 @@
"aarch64"
],
"added_at": 1492280305,
- "trending": -0.434591767823409,
+ "trending": 2.7497325038076683,
+ "installs_last_month": 394,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Jazz² Resurrection",
+ "keywords": [
+ "game",
+ "action",
+ "platformer"
+ ],
+ "summary": "A re-implementation of Jazz Jackrabbit 2",
+ "description": "\n\t\t\tJazz² Resurrection is re-implementation of the game Jazz Jackrabbit 2 released in 1998. It supports various versions of the game, specifically:\n\t\t\n \n Base game (including shareware demo)\n Holiday Hare '98 / Christmas Chronicles\n The Secret Files (recommended)\n \n \n\t\t\tAlso, it partially supports some features of the JJ2+ extension and MLLE.\n\t\t\n ",
+ "id": "tk_deat_Jazz2Resurrection",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "tk.deat.Jazz2Resurrection",
+ "icon": "https://dl.flathub.org/media/tk/deat/Jazz2Resurrection/044cb8d0c5bc739e1d717764da4463bd/icons/128x128/tk.deat.Jazz2Resurrection.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame",
+ "ArcadeGame"
+ ],
+ "developer_name": "Daniel Rajf",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "deat.tk",
+ "verification_timestamp": "1704269387",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1739914678,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1704220783,
+ "trending": 5.650106681165626,
"installs_last_month": 389,
"isMobileFriendly": false
},
@@ -20308,45 +20308,8 @@
"aarch64"
],
"added_at": 1661808406,
- "trending": 1.4455481671715538,
- "installs_last_month": 362,
- "isMobileFriendly": false
- },
- {
- "name": "Pioneer",
- "keywords": null,
- "summary": "A game of lonely space adventure",
- "description": "Pioneer is a space adventure game set in our galaxy at the\n\t\t\tturn of the 31st century.\n\t\t\n The game is open-ended, and you are free to eke out whatever\n\t\t\tkind of space-faring existence you can think of. Explore\n\t\t\tand trade between millions of star systems. Turn to a\n\t\t\tlife of crime as a pirate, smuggler or bounty hunter.\n\t\t\tTravel through the territories of various factions\n\t\t\tfighting for power, freedom or self-determination. The\n\t\t\tuniverse is whatever you make of it.\n\t\t\n Pioneer is under constant development and has a friendly\n\t\t\tcommunity of players, modders and developers around it.\n\t\t\tWe'd love for you to try it and make part of the galaxy\n\t\t\tyour own!\n\t\t\n ",
- "id": "net_pioneerspacesim_Pioneer",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-only",
- "is_free_license": true,
- "app_id": "net.pioneerspacesim.Pioneer",
- "icon": "https://dl.flathub.org/media/net/pioneerspacesim/Pioneer/041232145ccfa491cffeaeef062113bd/icons/128x128/net.pioneerspacesim.Pioneer.png",
- "main_categories": "game",
- "sub_categories": [
- "AdventureGame",
- "ActionGame",
- "Simulation"
- ],
- "developer_name": "pioneerspacesim.net community",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1738613864,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1534170853,
- "trending": 6.788373686243252,
- "installs_last_month": 339,
+ "trending": 0.8579262610322068,
+ "installs_last_month": 367,
"isMobileFriendly": false
},
{
@@ -20385,8 +20348,45 @@
"aarch64"
],
"added_at": 1629662839,
- "trending": 2.137283186189088,
- "installs_last_month": 338,
+ "trending": 1.9513176472431415,
+ "installs_last_month": 336,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Pioneer",
+ "keywords": null,
+ "summary": "A game of lonely space adventure",
+ "description": "Pioneer is a space adventure game set in our galaxy at the\n\t\t\tturn of the 31st century.\n\t\t\n The game is open-ended, and you are free to eke out whatever\n\t\t\tkind of space-faring existence you can think of. Explore\n\t\t\tand trade between millions of star systems. Turn to a\n\t\t\tlife of crime as a pirate, smuggler or bounty hunter.\n\t\t\tTravel through the territories of various factions\n\t\t\tfighting for power, freedom or self-determination. The\n\t\t\tuniverse is whatever you make of it.\n\t\t\n Pioneer is under constant development and has a friendly\n\t\t\tcommunity of players, modders and developers around it.\n\t\t\tWe'd love for you to try it and make part of the galaxy\n\t\t\tyour own!\n\t\t\n ",
+ "id": "net_pioneerspacesim_Pioneer",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-only",
+ "is_free_license": true,
+ "app_id": "net.pioneerspacesim.Pioneer",
+ "icon": "https://dl.flathub.org/media/net/pioneerspacesim/Pioneer/041232145ccfa491cffeaeef062113bd/icons/128x128/net.pioneerspacesim.Pioneer.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "AdventureGame",
+ "ActionGame",
+ "Simulation"
+ ],
+ "developer_name": "pioneerspacesim.net community",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1738613864,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1534170853,
+ "trending": 6.71707679098909,
+ "installs_last_month": 335,
"isMobileFriendly": false
},
{
@@ -20419,8 +20419,8 @@
"x86_64"
],
"added_at": 1652345816,
- "trending": 9.069849665402844,
- "installs_last_month": 331,
+ "trending": 10.929777289656016,
+ "installs_last_month": 325,
"isMobileFriendly": false
},
{
@@ -20457,8 +20457,8 @@
"aarch64"
],
"added_at": 1724671668,
- "trending": 6.710486130502508,
- "installs_last_month": 317,
+ "trending": 9.517234647658324,
+ "installs_last_month": 310,
"isMobileFriendly": false
},
{
@@ -20518,8 +20518,8 @@
"aarch64"
],
"added_at": 1707812812,
- "trending": 1.7772895586456408,
- "installs_last_month": 292,
+ "trending": 2.845414480644473,
+ "installs_last_month": 300,
"isMobileFriendly": false
},
{
@@ -20555,8 +20555,8 @@
"aarch64"
],
"added_at": 1719836853,
- "trending": 7.036010317242189,
- "installs_last_month": 279,
+ "trending": 7.354525020839639,
+ "installs_last_month": 276,
"isMobileFriendly": false
},
{
@@ -20597,8 +20597,8 @@
"aarch64"
],
"added_at": 1534427983,
- "trending": 5.820068095880707,
- "installs_last_month": 270,
+ "trending": 6.332033727876238,
+ "installs_last_month": 269,
"isMobileFriendly": false
},
{
@@ -20637,8 +20637,49 @@
"aarch64"
],
"added_at": 1684139138,
- "trending": 4.489438676012078,
- "installs_last_month": 270,
+ "trending": 6.468344099010094,
+ "installs_last_month": 269,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Bugdom",
+ "keywords": null,
+ "summary": "Save Bugdom from Thorax's evil Fire Ants",
+ "description": "The Bugdom was once a peaceful place ruled by the Rollie Pollies and the Lady Bugs, but not long ago the Bugdom was overthrown by the clan of the Fire Ants. After recruiting other bugs to help fight for them, they captured all of the Lady Bugs and are holding them prisoner. The leader of the Fire Ants, the new king of the Bugdom, is King Thorax. Once he is defeated, the Bugdom will return to the peaceful place it used to be.\n You are Rollie McFly, the only remaining bug capable of saving the Lady Bugs and restoring peace to the Bugdom. Rollie has been hiding in the Lawn area of the Bugdom and will need to travel far to get to the Ant Hill where the battle with King Thorax must take place. There will be water to cross, bugs to ride, and plenty of enemy forces to defeat, but once the Fire Ants and King Thorax have been defeated, you will become the new ruler of the Bugdom and peace will be restored.\n About this port: Bugdom was released in 1999 by Pangea Software. It was a pack-in game on Macs that came out around that time. This port aims to provide the best way to experience Bugdom today. This port was made and re-released under permission from Pangea Software, Inc.\n ",
+ "id": "io_jor_bugdom",
+ "type": "desktop-application",
+ "translations": {
+ "fr": {
+ "description": "Le royaume des petites bêtes était jadis un endroit paisible régi par les coccinelles et les isopodes. Mais il y a peu, le royaume fut renversé par le clan des fourmis de feu. Après avoir rallié d’autres insectes à leur combat, ils kidnappèrent toutes les coccinelles et en firent leurs prisonnières. Le chef des fourmis de feu, le nouveau tyran du royaume des petites bêtes, c’est le Roi Thorax. Une fois Thorax battu, le royaume redeviendra paisible et juste.\n Vous êtes Rollie McFly, la dernière bestiole capable de secourir les coccinelles et de ramener la paix au royaume. Rollie s’est caché dans la Pelouse du royaume. Un long périple attend Rollie jusqu’à la Fourmillière, l’antre du Roi Thorax. Il y aura de l’eau à traverser, des insectes marins à chevaucher, et tout un tas de forces enemies à battre – mais une fois que le Roi Thorax et sa clique de fourmis de feu seront battus, vous serez le nouveau chef du royaume des petites bêtes et la paix sera revenue.\n À propos de ce portage : Bugdom fut initialement lancé en 1999 par Pangea Software. Ce jeu était fourni sur les Macs qui sortaient à cette époque. Ce portage a pour objectif d’offrir la meilleure façon de jouer à Bugdom aujourd’hui. Ce portage a été réalisé et rediffusé avec la permission de Pangea Software, Inc.\n ",
+ "summary": "Libérez le Royaume des Petites Bêtes des maléfiques fourmis de feu"
+ }
+ },
+ "project_license": "CC-BY-NC-SA-4.0",
+ "is_free_license": false,
+ "app_id": "io.jor.bugdom",
+ "icon": "https://dl.flathub.org/media/io/jor/bugdom/2319ba9f111d66262c8c33b640fbe2bf/icons/128x128/io.jor.bugdom.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame",
+ "AdventureGame"
+ ],
+ "developer_name": "Pangea Software, Inc., Iliyas Jorio",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1733056789,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1647327840,
+ "trending": 3.36116259798972,
+ "installs_last_month": 262,
"isMobileFriendly": false
},
{
@@ -20681,49 +20722,8 @@
"aarch64"
],
"added_at": 1706432661,
- "trending": 10.288429667237454,
- "installs_last_month": 265,
- "isMobileFriendly": false
- },
- {
- "name": "Bugdom",
- "keywords": null,
- "summary": "Save Bugdom from Thorax's evil Fire Ants",
- "description": "The Bugdom was once a peaceful place ruled by the Rollie Pollies and the Lady Bugs, but not long ago the Bugdom was overthrown by the clan of the Fire Ants. After recruiting other bugs to help fight for them, they captured all of the Lady Bugs and are holding them prisoner. The leader of the Fire Ants, the new king of the Bugdom, is King Thorax. Once he is defeated, the Bugdom will return to the peaceful place it used to be.\n You are Rollie McFly, the only remaining bug capable of saving the Lady Bugs and restoring peace to the Bugdom. Rollie has been hiding in the Lawn area of the Bugdom and will need to travel far to get to the Ant Hill where the battle with King Thorax must take place. There will be water to cross, bugs to ride, and plenty of enemy forces to defeat, but once the Fire Ants and King Thorax have been defeated, you will become the new ruler of the Bugdom and peace will be restored.\n About this port: Bugdom was released in 1999 by Pangea Software. It was a pack-in game on Macs that came out around that time. This port aims to provide the best way to experience Bugdom today. This port was made and re-released under permission from Pangea Software, Inc.\n ",
- "id": "io_jor_bugdom",
- "type": "desktop-application",
- "translations": {
- "fr": {
- "description": "Le royaume des petites bêtes était jadis un endroit paisible régi par les coccinelles et les isopodes. Mais il y a peu, le royaume fut renversé par le clan des fourmis de feu. Après avoir rallié d’autres insectes à leur combat, ils kidnappèrent toutes les coccinelles et en firent leurs prisonnières. Le chef des fourmis de feu, le nouveau tyran du royaume des petites bêtes, c’est le Roi Thorax. Une fois Thorax battu, le royaume redeviendra paisible et juste.\n Vous êtes Rollie McFly, la dernière bestiole capable de secourir les coccinelles et de ramener la paix au royaume. Rollie s’est caché dans la Pelouse du royaume. Un long périple attend Rollie jusqu’à la Fourmillière, l’antre du Roi Thorax. Il y aura de l’eau à traverser, des insectes marins à chevaucher, et tout un tas de forces enemies à battre – mais une fois que le Roi Thorax et sa clique de fourmis de feu seront battus, vous serez le nouveau chef du royaume des petites bêtes et la paix sera revenue.\n À propos de ce portage : Bugdom fut initialement lancé en 1999 par Pangea Software. Ce jeu était fourni sur les Macs qui sortaient à cette époque. Ce portage a pour objectif d’offrir la meilleure façon de jouer à Bugdom aujourd’hui. Ce portage a été réalisé et rediffusé avec la permission de Pangea Software, Inc.\n ",
- "summary": "Libérez le Royaume des Petites Bêtes des maléfiques fourmis de feu"
- }
- },
- "project_license": "CC-BY-NC-SA-4.0",
- "is_free_license": false,
- "app_id": "io.jor.bugdom",
- "icon": "https://dl.flathub.org/media/io/jor/bugdom/2319ba9f111d66262c8c33b640fbe2bf/icons/128x128/io.jor.bugdom.png",
- "main_categories": "game",
- "sub_categories": [
- "ActionGame",
- "AdventureGame"
- ],
- "developer_name": "Pangea Software, Inc., Iliyas Jorio",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1733056789,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1647327840,
- "trending": 1.597986296348213,
- "installs_last_month": 263,
+ "trending": 8.689709305839498,
+ "installs_last_month": 257,
"isMobileFriendly": false
},
{
@@ -20758,8 +20758,8 @@
"aarch64"
],
"added_at": 1697214015,
- "trending": 4.614185482088128,
- "installs_last_month": 247,
+ "trending": 4.274591082980994,
+ "installs_last_month": 254,
"isMobileFriendly": false
},
{
@@ -20792,8 +20792,8 @@
"x86_64"
],
"added_at": 1652853751,
- "trending": 13.366948964519295,
- "installs_last_month": 240,
+ "trending": 12.896586574406411,
+ "installs_last_month": 248,
"isMobileFriendly": false
},
{
@@ -20830,44 +20830,8 @@
"aarch64"
],
"added_at": 1660465791,
- "trending": 8.160537883756747,
- "installs_last_month": 236,
- "isMobileFriendly": false
- },
- {
- "name": "OpenClonk",
- "keywords": null,
- "summary": "Multiplayer action game where you control small and nimble humanoids",
- "description": "\n OpenClonk is a free multiplayer action game in which you control clonks, small but witty and nimble humanoid beings. The game is mainly about mining, settling and fast-paced melees.\n \n ",
- "id": "org_openclonk_OpenClonk",
- "type": "desktop-application",
- "translations": {},
- "project_license": "ISC and CC-BY-3.0",
- "is_free_license": true,
- "app_id": "org.openclonk.OpenClonk",
- "icon": "https://dl.flathub.org/media/org/openclonk/OpenClonk/1961c16ee1a119c8af72e4dd14d4b435/icons/128x128/org.openclonk.OpenClonk.png",
- "main_categories": "game",
- "sub_categories": [
- "ActionGame",
- "StrategyGame",
- "ArcadeGame"
- ],
- "developer_name": "OpenClonk contributors",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.kde.Platform/x86_64/5.15-24.08",
- "updated_at": 1742961887,
- "arches": [
- "x86_64"
- ],
- "added_at": 1522566411,
- "trending": 4.040940305437392,
- "installs_last_month": 230,
+ "trending": 8.50666142348849,
+ "installs_last_month": 232,
"isMobileFriendly": false
},
{
@@ -20902,8 +20866,44 @@
"aarch64"
],
"added_at": 1652851890,
- "trending": -0.41300961639646205,
- "installs_last_month": 229,
+ "trending": -0.5976456106318524,
+ "installs_last_month": 230,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "OpenClonk",
+ "keywords": null,
+ "summary": "Multiplayer action game where you control small and nimble humanoids",
+ "description": "\n OpenClonk is a free multiplayer action game in which you control clonks, small but witty and nimble humanoid beings. The game is mainly about mining, settling and fast-paced melees.\n \n ",
+ "id": "org_openclonk_OpenClonk",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "ISC and CC-BY-3.0",
+ "is_free_license": true,
+ "app_id": "org.openclonk.OpenClonk",
+ "icon": "https://dl.flathub.org/media/org/openclonk/OpenClonk/1961c16ee1a119c8af72e4dd14d4b435/icons/128x128/org.openclonk.OpenClonk.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame",
+ "StrategyGame",
+ "ArcadeGame"
+ ],
+ "developer_name": "OpenClonk contributors",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.kde.Platform/x86_64/5.15-24.08",
+ "updated_at": 1742961887,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1522566411,
+ "trending": 1.3213259786645442,
+ "installs_last_month": 227,
"isMobileFriendly": false
},
{
@@ -20939,48 +20939,8 @@
"x86_64"
],
"added_at": 1660796929,
- "trending": 1.0443044706242033,
- "installs_last_month": 222,
- "isMobileFriendly": false
- },
- {
- "name": "Nanosaur",
- "keywords": null,
- "summary": "Send dinosaur eggs to the future before a meteor hits the Earth!",
- "description": "You are a dinosaur (a Nanosaur to be exact) from the future who has traveled back in time to collect the eggs of 5 dinosaur species before the giant asteroid hits the earth. The “primitive” dinosaurs will attack you as you try to get their eggs, but just remember that it’s for their own good that you blast them into oblivion!\n Being a dinosaur from the future, you are equipped with several pieces of technology to help you in your mission:\n \n Fusion Blaster: a multipurpose weapon for killing things.\n Jet Pack: for flying over things that might kill you.\n Temporal Compass: for finding time portals.\n GPS Locator: for figuring out where you are and where you should go.\n \n You can jump, swim, run around, jet around, shoot stuff, etc. The general rule to playing the game is “if it moves, kill it or it’ll kill you.” You only have 20 minutes to collect all 5 egg species so being efficient about your actions is critical.\n About this port: Nanosaur was released in 1998 by Pangea Software. It was a pack-in game on Macs that came out around that time. This port aims to provide the best way to experience Nanosaur today. This port was made and re-released under permission from Pangea Software, Inc.\n ",
- "id": "io_jor_nanosaur",
- "type": "desktop-application",
- "translations": {
- "fr": {
- "description": "Vous êtes un dinosaure du futur – un Nanosaur, pour être précis – qui a remonté le temps pour récupérer les œufs de 5 espèces de dinosaures juste avant que l’astéroïde géant ne s’écrase sur Terre. Les dinosaures “primitifs” vous attaqueront lorsque que vous tenterez de prendre leurs œufs : dites-vous juste que c’est pour leur propre bien que vous en faites de la chair à pâté !\n Étant un dinosaure du futur, vous êtes équipé de gadgets ultra-sophistiqués pour mener votre mission à bien :\n \n Sulfateuse à fusion : une arme multifonction pour tuer des trucs.\n Réacteur dorsal : pour survoler les trucs qui veulent vous tuer.\n Boussole temporelle : pour trouver les portails temporels.\n Localisateur GPS : pour savoir où vous êtes et où aller.\n \n Vous pouvez sauter, nager, courir, voler, tirer, etc. L’idée générale du jeu est « si un truc bouge, tuez-le avant qu’il ne vous tue ». Vous n’avez que 20 minutes pour récupérer les 5 espèces d’œufs : il est donc crucial d’être efficace dans vos actions.\n À propos de ce portage : Nanosaur fut initialement lancé en 1998 par Pangea Software. Ce jeu était fourni sur les Macs qui sortaient à cette époque. Ce portage a pour objectif d’offrir la meilleure façon de jouer à Nanosaur aujourd’hui. Ce portage a été réalisé et rediffusé avec la permission de Pangea Software, Inc.\n ",
- "summary": "Envoyez des œufs de dinos dans le futur avant qu’une météorite ne s’écrase sur Terre !"
- }
- },
- "project_license": "CC-BY-NC-SA-4.0",
- "is_free_license": false,
- "app_id": "io.jor.nanosaur",
- "icon": "https://dl.flathub.org/media/io/jor/nanosaur/2de86e8600510a7f23749ab4c3c92a68/icons/128x128/io.jor.nanosaur.png",
- "main_categories": "game",
- "sub_categories": [
- "ActionGame"
- ],
- "developer_name": "Pangea Software, Inc., Iliyas Jorio",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1733064638,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1647501105,
- "trending": 2.4547779366604807,
- "installs_last_month": 215,
+ "trending": 0.8208276861650543,
+ "installs_last_month": 225,
"isMobileFriendly": false
},
{
@@ -21014,10 +20974,80 @@
"aarch64"
],
"added_at": 1496312355,
- "trending": 0.7248752591744565,
+ "trending": 0.4749916266780071,
"installs_last_month": 214,
"isMobileFriendly": false
},
+ {
+ "name": "Battle Tanks",
+ "keywords": null,
+ "summary": "A fun filled scrolling game with battle tanks",
+ "description": "\n Battle tanks is a fun filled old school style scrolling battle tank game.\n It has original cartoon style graphics and sound track and is multiplayer\n focused.\n Choose from 3 different vehicles and destroy your enemies using a large\n assortment of weapons.\n \n ",
+ "id": "net_sourceforge_btanks",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0",
+ "is_free_license": true,
+ "app_id": "net.sourceforge.btanks",
+ "icon": "https://dl.flathub.org/media/net/sourceforge/btanks/b81d70672f29a68c013966556aaff233/icons/128x128/net.sourceforge.btanks.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame"
+ ],
+ "developer_name": "megath",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1722313800,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1494566472,
+ "trending": 0.5714692667789913,
+ "installs_last_month": 209,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "World of PADMAN",
+ "keywords": null,
+ "summary": "Incredibly carefully designed and colorful freeware fun shooter for young and young-at-heart people",
+ "description": "\n From the earliest PadMaps for Q3A came the mod PadWorld, followed by the next colorful evolution, World of PADMAN. Developed and headed by \n cartoonist and illustrator ENTE, PadWorld Entertainment presents a freeware fun shooter, that's powered by an extended id-Tech3 graphics engine.\n \n \n WoP is the domain of ENTE's comic strip super-hero PADMAN and his motley crew. It's their mission to make your game with some seriously addictive fun, \n whatever your skill level and whatever character role you jump into.\n \n \n Over the years maps have been revamped, bots improved, Killerducks kept hungry, weapons re-polished and much more! In all, there are 24 maps. Each \n supports up to 7 game types, comprising WoP's unique Spray Your Color, Last Pad Standing, Big Balloon, and of course Capture The Lolly. Meet scaled-up \n and richly detailed environments of everyday places, where imaginative characters go berserk with an array of colorful plastic weaponry and powerups. \n Start rockin' to the soundtrack of Dieselkopf, and Neurological and listen to the Pad-Anthem, performed by Green Sun. So, grab your earphones!\n \n \n Not enough human players on public servers? Practice with bots and join the community on the official PadWorld server for the Padday community events, \n every first Sunday of a month 7:00pm (CET).\n \n ",
+ "id": "net_worldofpadman_WoP",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "LicenseRef-proprietary=https://github.com/PadWorld-Entertainment/worldofpadman/blob/main/COPYING.md",
+ "is_free_license": false,
+ "app_id": "net.worldofpadman.WoP",
+ "icon": "https://dl.flathub.org/media/net/worldofpadman/WoP/de466b55f6c5a12e17e59117b9bdeaa8/icons/128x128/net.worldofpadman.WoP.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame"
+ ],
+ "developer_name": "PadWorld Entertainment",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1734359917,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1672609649,
+ "trending": 1.957106127258326,
+ "installs_last_month": 205,
+ "isMobileFriendly": false
+ },
{
"name": "Nanosaur 2: Hatchling",
"keywords": null,
@@ -21055,27 +21085,32 @@
"aarch64"
],
"added_at": 1675625579,
- "trending": 1.7280430564023384,
- "installs_last_month": 214,
+ "trending": 0.7327113665423322,
+ "installs_last_month": 205,
"isMobileFriendly": false
},
{
- "name": "World of PADMAN",
+ "name": "Nanosaur",
"keywords": null,
- "summary": "Incredibly carefully designed and colorful freeware fun shooter for young and young-at-heart people",
- "description": "\n From the earliest PadMaps for Q3A came the mod PadWorld, followed by the next colorful evolution, World of PADMAN. Developed and headed by \n cartoonist and illustrator ENTE, PadWorld Entertainment presents a freeware fun shooter, that's powered by an extended id-Tech3 graphics engine.\n \n \n WoP is the domain of ENTE's comic strip super-hero PADMAN and his motley crew. It's their mission to make your game with some seriously addictive fun, \n whatever your skill level and whatever character role you jump into.\n \n \n Over the years maps have been revamped, bots improved, Killerducks kept hungry, weapons re-polished and much more! In all, there are 24 maps. Each \n supports up to 7 game types, comprising WoP's unique Spray Your Color, Last Pad Standing, Big Balloon, and of course Capture The Lolly. Meet scaled-up \n and richly detailed environments of everyday places, where imaginative characters go berserk with an array of colorful plastic weaponry and powerups. \n Start rockin' to the soundtrack of Dieselkopf, and Neurological and listen to the Pad-Anthem, performed by Green Sun. So, grab your earphones!\n \n \n Not enough human players on public servers? Practice with bots and join the community on the official PadWorld server for the Padday community events, \n every first Sunday of a month 7:00pm (CET).\n \n ",
- "id": "net_worldofpadman_WoP",
+ "summary": "Send dinosaur eggs to the future before a meteor hits the Earth!",
+ "description": "You are a dinosaur (a Nanosaur to be exact) from the future who has traveled back in time to collect the eggs of 5 dinosaur species before the giant asteroid hits the earth. The “primitive” dinosaurs will attack you as you try to get their eggs, but just remember that it’s for their own good that you blast them into oblivion!\n Being a dinosaur from the future, you are equipped with several pieces of technology to help you in your mission:\n \n Fusion Blaster: a multipurpose weapon for killing things.\n Jet Pack: for flying over things that might kill you.\n Temporal Compass: for finding time portals.\n GPS Locator: for figuring out where you are and where you should go.\n \n You can jump, swim, run around, jet around, shoot stuff, etc. The general rule to playing the game is “if it moves, kill it or it’ll kill you.” You only have 20 minutes to collect all 5 egg species so being efficient about your actions is critical.\n About this port: Nanosaur was released in 1998 by Pangea Software. It was a pack-in game on Macs that came out around that time. This port aims to provide the best way to experience Nanosaur today. This port was made and re-released under permission from Pangea Software, Inc.\n ",
+ "id": "io_jor_nanosaur",
"type": "desktop-application",
- "translations": {},
- "project_license": "LicenseRef-proprietary=https://github.com/PadWorld-Entertainment/worldofpadman/blob/main/COPYING.md",
+ "translations": {
+ "fr": {
+ "description": "Vous êtes un dinosaure du futur – un Nanosaur, pour être précis – qui a remonté le temps pour récupérer les œufs de 5 espèces de dinosaures juste avant que l’astéroïde géant ne s’écrase sur Terre. Les dinosaures “primitifs” vous attaqueront lorsque que vous tenterez de prendre leurs œufs : dites-vous juste que c’est pour leur propre bien que vous en faites de la chair à pâté !\n Étant un dinosaure du futur, vous êtes équipé de gadgets ultra-sophistiqués pour mener votre mission à bien :\n \n Sulfateuse à fusion : une arme multifonction pour tuer des trucs.\n Réacteur dorsal : pour survoler les trucs qui veulent vous tuer.\n Boussole temporelle : pour trouver les portails temporels.\n Localisateur GPS : pour savoir où vous êtes et où aller.\n \n Vous pouvez sauter, nager, courir, voler, tirer, etc. L’idée générale du jeu est « si un truc bouge, tuez-le avant qu’il ne vous tue ». Vous n’avez que 20 minutes pour récupérer les 5 espèces d’œufs : il est donc crucial d’être efficace dans vos actions.\n À propos de ce portage : Nanosaur fut initialement lancé en 1998 par Pangea Software. Ce jeu était fourni sur les Macs qui sortaient à cette époque. Ce portage a pour objectif d’offrir la meilleure façon de jouer à Nanosaur aujourd’hui. Ce portage a été réalisé et rediffusé avec la permission de Pangea Software, Inc.\n ",
+ "summary": "Envoyez des œufs de dinos dans le futur avant qu’une météorite ne s’écrase sur Terre !"
+ }
+ },
+ "project_license": "CC-BY-NC-SA-4.0",
"is_free_license": false,
- "app_id": "net.worldofpadman.WoP",
- "icon": "https://dl.flathub.org/media/net/worldofpadman/WoP/de466b55f6c5a12e17e59117b9bdeaa8/icons/128x128/net.worldofpadman.WoP.png",
+ "app_id": "io.jor.nanosaur",
+ "icon": "https://dl.flathub.org/media/io/jor/nanosaur/2de86e8600510a7f23749ab4c3c92a68/icons/128x128/io.jor.nanosaur.png",
"main_categories": "game",
"sub_categories": [
"ActionGame"
],
- "developer_name": "PadWorld Entertainment",
+ "developer_name": "Pangea Software, Inc., Iliyas Jorio",
"verification_verified": false,
"verification_method": "none",
"verification_login_name": null,
@@ -21084,14 +21119,49 @@
"verification_website": null,
"verification_timestamp": null,
"runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1734359917,
+ "updated_at": 1733064638,
"arches": [
"x86_64",
"aarch64"
],
- "added_at": 1672609649,
- "trending": 1.3690369017784971,
- "installs_last_month": 209,
+ "added_at": 1647501105,
+ "trending": 3.0632962607027103,
+ "installs_last_month": 202,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Reaction",
+ "keywords": null,
+ "summary": "Movie realism first-person-shooter",
+ "description": "Reaction Quake 3 ports Action Quake 2 to idTech3 for better graphics and enhanced gametypes like Teamplay, Team Deathmatch, and Capture the Briefcase. It adds fast paced gameplay with realistic weapons and damage. It adds a variety of movement options such as strafe, ramp, ladder, and double jump.\n ",
+ "id": "com_rq3_Reaction",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0",
+ "is_free_license": true,
+ "app_id": "com.rq3.Reaction",
+ "icon": "https://dl.flathub.org/media/com/rq3/Reaction/4311494a8daf503e8b2393d9de77fe68/icons/128x128/com.rq3.Reaction.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame"
+ ],
+ "developer_name": "Headshot",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1731244063,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1691735895,
+ "trending": 5.476519073888385,
+ "installs_last_month": 197,
"isMobileFriendly": false
},
{
@@ -21131,113 +21201,8 @@
"aarch64"
],
"added_at": 1572441123,
- "trending": 2.844702407206319,
- "installs_last_month": 205,
- "isMobileFriendly": false
- },
- {
- "name": "Battle Tanks",
- "keywords": null,
- "summary": "A fun filled scrolling game with battle tanks",
- "description": "\n Battle tanks is a fun filled old school style scrolling battle tank game.\n It has original cartoon style graphics and sound track and is multiplayer\n focused.\n Choose from 3 different vehicles and destroy your enemies using a large\n assortment of weapons.\n \n ",
- "id": "net_sourceforge_btanks",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0",
- "is_free_license": true,
- "app_id": "net.sourceforge.btanks",
- "icon": "https://dl.flathub.org/media/net/sourceforge/btanks/b81d70672f29a68c013966556aaff233/icons/128x128/net.sourceforge.btanks.png",
- "main_categories": "game",
- "sub_categories": [
- "ActionGame"
- ],
- "developer_name": "megath",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1722313800,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1494566472,
- "trending": 1.8140535447745636,
- "installs_last_month": 202,
- "isMobileFriendly": false
- },
- {
- "name": "Reaction",
- "keywords": null,
- "summary": "Movie realism first-person-shooter",
- "description": "Reaction Quake 3 ports Action Quake 2 to idTech3 for better graphics and enhanced gametypes like Teamplay, Team Deathmatch, and Capture the Briefcase. It adds fast paced gameplay with realistic weapons and damage. It adds a variety of movement options such as strafe, ramp, ladder, and double jump.\n ",
- "id": "com_rq3_Reaction",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0",
- "is_free_license": true,
- "app_id": "com.rq3.Reaction",
- "icon": "https://dl.flathub.org/media/com/rq3/Reaction/4311494a8daf503e8b2393d9de77fe68/icons/128x128/com.rq3.Reaction.png",
- "main_categories": "game",
- "sub_categories": [
- "ActionGame"
- ],
- "developer_name": "Headshot",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1731244063,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1691735895,
- "trending": 6.8849544359632215,
- "installs_last_month": 193,
- "isMobileFriendly": false
- },
- {
- "name": "Q2PRO",
- "keywords": null,
- "summary": "Enhanced Quake 2 client",
- "description": "Q2PRO is an enhanced, multiplayer oriented Quake 2 client and server.\n Features include:\n \n rewritten OpenGL renderer optimized for stable FPS\n enhanced client console with persistent history\n ZIP packfiles (.pkz), JPEG and PNG textures, MD3 models\n fast HTTP downloads\n multichannel sound using OpenAL\n recording from demos, forward and backward seeking\n server side multiview demos and GTV capabilities\n \n ",
- "id": "com_github_skullernet_q2pro",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0+",
- "is_free_license": true,
- "app_id": "com.github.skullernet.q2pro",
- "icon": "https://dl.flathub.org/media/com/github/skullernet.q2pro/c98119ffd70f196597fd0f5c9047c5e7/icons/128x128/com.github.skullernet.q2pro.png",
- "main_categories": "game",
- "sub_categories": [
- "ActionGame"
- ],
- "developer_name": "skullernet",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1725919933,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1596194896,
- "trending": 3.0609211872473097,
- "installs_last_month": 178,
+ "trending": 0.5099866550861151,
+ "installs_last_month": 191,
"isMobileFriendly": false
},
{
@@ -21280,43 +21245,43 @@
"aarch64"
],
"added_at": 1728282620,
- "trending": 3.903759391511739,
- "installs_last_month": 178,
+ "trending": 5.262050959160293,
+ "installs_last_month": 184,
"isMobileFriendly": false
},
{
- "name": "Tux Planet Speedrun Any%",
+ "name": "Q2PRO",
"keywords": null,
- "summary": "Speedrun your way through 10 levels using save states!",
- "description": "\n\t\t\tThe level design is unforgiving, but you have save states!\n\t\t\n \n\t\t\tUse save states and other powers to traverse 10 platforming levels.\n\t\t\n \n\t\t\tThis is a fangame of SuperTux and SuperTux Advance.\n\t\t\n ",
- "id": "io_github_dtsudo_TuxPlanetSpeedrunAnyPercent",
+ "summary": "Enhanced Quake 2 client",
+ "description": "Q2PRO is an enhanced, multiplayer oriented Quake 2 client and server.\n Features include:\n \n rewritten OpenGL renderer optimized for stable FPS\n enhanced client console with persistent history\n ZIP packfiles (.pkz), JPEG and PNG textures, MD3 models\n fast HTTP downloads\n multichannel sound using OpenAL\n recording from demos, forward and backward seeking\n server side multiview demos and GTV capabilities\n \n ",
+ "id": "com_github_skullernet_q2pro",
"type": "desktop-application",
"translations": {},
- "project_license": "GPL-3.0-only",
+ "project_license": "GPL-2.0+",
"is_free_license": true,
- "app_id": "io.github.dtsudo.TuxPlanetSpeedrunAnyPercent",
- "icon": "https://dl.flathub.org/media/io/github/dtsudo.TuxPlanetSpeedrunAnyPercent/cc22564e7b955114ad5d4f9f5a272741/icons/128x128/io.github.dtsudo.TuxPlanetSpeedrunAnyPercent.png",
+ "app_id": "com.github.skullernet.q2pro",
+ "icon": "https://dl.flathub.org/media/com/github/skullernet.q2pro/c98119ffd70f196597fd0f5c9047c5e7/icons/128x128/com.github.skullernet.q2pro.png",
"main_categories": "game",
"sub_categories": [
"ActionGame"
],
- "developer_name": "dtsudo",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "dtsudo",
- "verification_login_provider": "github",
- "verification_login_is_organization": "true",
+ "developer_name": "skullernet",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
"verification_website": null,
- "verification_timestamp": "1684088046",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1727680540,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1725919933,
"arches": [
"x86_64",
"aarch64"
],
- "added_at": 1683900890,
- "trending": 2.3423585864797163,
- "installs_last_month": 175,
+ "added_at": 1596194896,
+ "trending": 3.725093109582194,
+ "installs_last_month": 179,
"isMobileFriendly": false
},
{
@@ -21350,8 +21315,43 @@
"x86_64"
],
"added_at": 1674052009,
- "trending": -0.38263294284833305,
- "installs_last_month": 174,
+ "trending": 1.5171232179914127,
+ "installs_last_month": 179,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Tux Planet Speedrun Any%",
+ "keywords": null,
+ "summary": "Speedrun your way through 10 levels using save states!",
+ "description": "\n\t\t\tThe level design is unforgiving, but you have save states!\n\t\t\n \n\t\t\tUse save states and other powers to traverse 10 platforming levels.\n\t\t\n \n\t\t\tThis is a fangame of SuperTux and SuperTux Advance.\n\t\t\n ",
+ "id": "io_github_dtsudo_TuxPlanetSpeedrunAnyPercent",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-only",
+ "is_free_license": true,
+ "app_id": "io.github.dtsudo.TuxPlanetSpeedrunAnyPercent",
+ "icon": "https://dl.flathub.org/media/io/github/dtsudo.TuxPlanetSpeedrunAnyPercent/cc22564e7b955114ad5d4f9f5a272741/icons/128x128/io.github.dtsudo.TuxPlanetSpeedrunAnyPercent.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame"
+ ],
+ "developer_name": "dtsudo",
+ "verification_verified": true,
+ "verification_method": "login_provider",
+ "verification_login_name": "dtsudo",
+ "verification_login_provider": "github",
+ "verification_login_is_organization": "true",
+ "verification_website": null,
+ "verification_timestamp": "1684088046",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1727680540,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1683900890,
+ "trending": 2.352593044805338,
+ "installs_last_month": 172,
"isMobileFriendly": false
},
{
@@ -21385,8 +21385,8 @@
"aarch64"
],
"added_at": 1692206488,
- "trending": 12.43636870912265,
- "installs_last_month": 154,
+ "trending": 12.498138196190345,
+ "installs_last_month": 158,
"isMobileFriendly": false
},
{
@@ -21421,8 +21421,8 @@
"aarch64"
],
"added_at": 1671698736,
- "trending": 4.20600851963697,
- "installs_last_month": 148,
+ "trending": 0.5286234599129263,
+ "installs_last_month": 151,
"isMobileFriendly": false
},
{
@@ -21468,8 +21468,8 @@
"aarch64"
],
"added_at": 1736700085,
- "trending": 3.2919712941125874,
- "installs_last_month": 148,
+ "trending": 3.1494270619675913,
+ "installs_last_month": 149,
"isMobileFriendly": false
},
{
@@ -21506,7 +21506,7 @@
"x86_64"
],
"added_at": 1511954847,
- "trending": -0.12582147653048636,
+ "trending": 3.442430804903089,
"installs_last_month": 134,
"isMobileFriendly": false
},
@@ -21541,8 +21541,8 @@
"aarch64"
],
"added_at": 1685599109,
- "trending": 1.025946546582927,
- "installs_last_month": 126,
+ "trending": 0.1607121374043312,
+ "installs_last_month": 132,
"isMobileFriendly": false
},
{
@@ -21582,8 +21582,8 @@
"aarch64"
],
"added_at": 1662622023,
- "trending": 3.1527423707786064,
- "installs_last_month": 118,
+ "trending": 6.82156955703526,
+ "installs_last_month": 123,
"isMobileFriendly": false
},
{
@@ -21622,8 +21622,8 @@
"aarch64"
],
"added_at": 1647587394,
- "trending": 3.678957444104456,
- "installs_last_month": 106,
+ "trending": 2.239577113193404,
+ "installs_last_month": 111,
"isMobileFriendly": false
},
{
@@ -21660,8 +21660,8 @@
"aarch64"
],
"added_at": 1701681705,
- "trending": 1.4654554837180915,
- "installs_last_month": 99,
+ "trending": 2.407660503752612,
+ "installs_last_month": 101,
"isMobileFriendly": false
},
{
@@ -21700,8 +21700,8 @@
"aarch64"
],
"added_at": 1647501185,
- "trending": 1.906755978924583,
- "installs_last_month": 98,
+ "trending": 1.496304746181388,
+ "installs_last_month": 100,
"isMobileFriendly": false
},
{
@@ -21742,8 +21742,8 @@
"aarch64"
],
"added_at": 1731814393,
- "trending": 7.724888110199031,
- "installs_last_month": 93,
+ "trending": 7.781402095070988,
+ "installs_last_month": 97,
"isMobileFriendly": false
},
{
@@ -21779,43 +21779,8 @@
"aarch64"
],
"added_at": 1686033142,
- "trending": 2.708997578184069,
- "installs_last_month": 92,
- "isMobileFriendly": false
- },
- {
- "name": "L'Abbaye des morts",
- "keywords": null,
- "summary": "An obsolete video game for a dark passage of history",
- "description": "\n In the 13th century, the Cathars, clerics who preached about the poverty of Christ and defended life without material aspirations, were treated as heretics by the Catholic Church and expelled out of the Languedoc region in France. One of them, called Jean Raymond, found an old church in which to hide from crusaders, not knowing that beneath its ruins lay buried an ancient evil.\n \n \n Faith will be your only weapon in this platformer styled like a ZX Spectrum game. Black backgrounds, 1 color sprites and 1 bit sounds are a proper fit for a raw story. The lack of details turn on the player's imagination, creating a unique experience for each player.\n \n \n Look and feel of a ZX Spectrum game.\n 23 screens to explore.\n Riddles and hints to find items.\n Around 30 minutes of game length (once fully mastered).\n \n ",
- "id": "com_locomalito_abbayedesmorts",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0",
- "is_free_license": true,
- "app_id": "com.locomalito.abbayedesmorts",
- "icon": "https://dl.flathub.org/media/com/locomalito/abbayedesmorts/868b94010babf2e410a3196ecc3b1739/icons/128x128/com.locomalito.abbayedesmorts.png",
- "main_categories": "game",
- "sub_categories": [
- "ActionGame"
- ],
- "developer_name": "LocoMalito",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1739298211,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1571203547,
- "trending": -0.37749865951748496,
- "installs_last_month": 79,
+ "trending": 2.8260582648010475,
+ "installs_last_month": 96,
"isMobileFriendly": false
},
{
@@ -21853,8 +21818,43 @@
"aarch64"
],
"added_at": 1661843017,
- "trending": 1.0856571144851217,
- "installs_last_month": 75,
+ "trending": 1.6099762566911928,
+ "installs_last_month": 81,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "L'Abbaye des morts",
+ "keywords": null,
+ "summary": "An obsolete video game for a dark passage of history",
+ "description": "\n In the 13th century, the Cathars, clerics who preached about the poverty of Christ and defended life without material aspirations, were treated as heretics by the Catholic Church and expelled out of the Languedoc region in France. One of them, called Jean Raymond, found an old church in which to hide from crusaders, not knowing that beneath its ruins lay buried an ancient evil.\n \n \n Faith will be your only weapon in this platformer styled like a ZX Spectrum game. Black backgrounds, 1 color sprites and 1 bit sounds are a proper fit for a raw story. The lack of details turn on the player's imagination, creating a unique experience for each player.\n \n \n Look and feel of a ZX Spectrum game.\n 23 screens to explore.\n Riddles and hints to find items.\n Around 30 minutes of game length (once fully mastered).\n \n ",
+ "id": "com_locomalito_abbayedesmorts",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0",
+ "is_free_license": true,
+ "app_id": "com.locomalito.abbayedesmorts",
+ "icon": "https://dl.flathub.org/media/com/locomalito/abbayedesmorts/868b94010babf2e410a3196ecc3b1739/icons/128x128/com.locomalito.abbayedesmorts.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame"
+ ],
+ "developer_name": "LocoMalito",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1739298211,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1571203547,
+ "trending": 2.850298000426175,
+ "installs_last_month": 79,
"isMobileFriendly": false
},
{
@@ -21889,8 +21889,8 @@
"aarch64"
],
"added_at": 1653555234,
- "trending": 3.217364894835848,
- "installs_last_month": 71,
+ "trending": 1.0855619689289573,
+ "installs_last_month": 69,
"isMobileFriendly": false
},
{
@@ -21924,8 +21924,8 @@
"aarch64"
],
"added_at": 1653896019,
- "trending": 1.810127224391744,
- "installs_last_month": 55,
+ "trending": 0.7870995140614391,
+ "installs_last_month": 60,
"isMobileFriendly": false
},
{
@@ -21959,8 +21959,8 @@
"aarch64"
],
"added_at": 1728976739,
- "trending": 5.268229171207223,
- "installs_last_month": 54,
+ "trending": 5.2519419399136,
+ "installs_last_month": 58,
"isMobileFriendly": false
},
{
@@ -22002,8 +22002,8 @@
"aarch64"
],
"added_at": 1716532941,
- "trending": 12.317418040221954,
- "installs_last_month": 47,
+ "trending": 13.488469872746428,
+ "installs_last_month": 52,
"isMobileFriendly": false
},
{
@@ -22037,13 +22037,13 @@
"aarch64"
],
"added_at": 1730360459,
- "trending": 12.223742548626072,
- "installs_last_month": 24,
+ "trending": 10.23191837348403,
+ "installs_last_month": 26,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 11,
+ "processingTimeMs": 13,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -22158,8 +22158,8 @@
"aarch64"
],
"added_at": 1529141154,
- "trending": 7.790707919810666,
- "installs_last_month": 44923,
+ "trending": 7.059417978129135,
+ "installs_last_month": 45017,
"isMobileFriendly": false
},
{
@@ -22199,8 +22199,8 @@
"aarch64"
],
"added_at": 1666334692,
- "trending": 10.39692521324178,
- "installs_last_month": 34255,
+ "trending": 9.867398139766214,
+ "installs_last_month": 34528,
"isMobileFriendly": false
},
{
@@ -22239,8 +22239,8 @@
"x86_64"
],
"added_at": 1714032230,
- "trending": 5.8960420457107094,
- "installs_last_month": 3899,
+ "trending": 4.871336460718362,
+ "installs_last_month": 3930,
"isMobileFriendly": false
},
{
@@ -22281,8 +22281,8 @@
"aarch64"
],
"added_at": 1544441551,
- "trending": 1.0605751236179588,
- "installs_last_month": 862,
+ "trending": 2.5667796901733055,
+ "installs_last_month": 859,
"isMobileFriendly": false
},
{
@@ -22319,8 +22319,43 @@
"aarch64"
],
"added_at": 1680597687,
- "trending": 8.308203371250178,
- "installs_last_month": 820,
+ "trending": 9.175132497748878,
+ "installs_last_month": 806,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Katawa Shoujo",
+ "keywords": null,
+ "summary": "A bishoujo-style visual novel",
+ "description": "Katawa Shoujo is a bishoujo-style visual novel set in the fictional Yamaku High School for disabled children, located somewhere in modern Japan. Hisao Nakai, a normal boy living a normal life, has his life turned upside down when a congenital heart defect forces him to move to a new school after a long hospitalization. Despite his difficulties, Hisao is able to find friends—and perhaps love, if he plays his cards right. There are five main paths corresponding to the 5 main female characters, each path following the storyline pertaining to that character.The story is told through the perspective of the main character, using a first person narrative. The game uses a traditional text and sprite-based visual novel model with an ADV text box.Katawa Shoujo contains adult material, and was created using the Ren'Py scripting system. It is the product of an international team of amateur developers, and is available free of charge under the Creative Commons BY-NC-ND License.",
+ "id": "com_katawa_shoujo_KatawaShoujo",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "CC-BY-NC-ND-3.0",
+ "is_free_license": false,
+ "app_id": "com.katawa_shoujo.KatawaShoujo",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.katawa_shoujo.KatawaShoujo.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "AdventureGame"
+ ],
+ "developer_name": "Four Leaf Studios",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/22.08",
+ "updated_at": 1674045799,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1531738611,
+ "trending": 11.297880961750312,
+ "installs_last_month": 336,
"isMobileFriendly": false
},
{
@@ -22356,43 +22391,8 @@
"aarch64"
],
"added_at": 1534170853,
- "trending": 6.788373686243252,
- "installs_last_month": 339,
- "isMobileFriendly": false
- },
- {
- "name": "Katawa Shoujo",
- "keywords": null,
- "summary": "A bishoujo-style visual novel",
- "description": "Katawa Shoujo is a bishoujo-style visual novel set in the fictional Yamaku High School for disabled children, located somewhere in modern Japan. Hisao Nakai, a normal boy living a normal life, has his life turned upside down when a congenital heart defect forces him to move to a new school after a long hospitalization. Despite his difficulties, Hisao is able to find friends—and perhaps love, if he plays his cards right. There are five main paths corresponding to the 5 main female characters, each path following the storyline pertaining to that character.The story is told through the perspective of the main character, using a first person narrative. The game uses a traditional text and sprite-based visual novel model with an ADV text box.Katawa Shoujo contains adult material, and was created using the Ren'Py scripting system. It is the product of an international team of amateur developers, and is available free of charge under the Creative Commons BY-NC-ND License.",
- "id": "com_katawa_shoujo_KatawaShoujo",
- "type": "desktop-application",
- "translations": {},
- "project_license": "CC-BY-NC-ND-3.0",
- "is_free_license": false,
- "app_id": "com.katawa_shoujo.KatawaShoujo",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.katawa_shoujo.KatawaShoujo.png",
- "main_categories": "game",
- "sub_categories": [
- "AdventureGame"
- ],
- "developer_name": "Four Leaf Studios",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/22.08",
- "updated_at": 1674045799,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1531738611,
- "trending": 10.530387777800836,
- "installs_last_month": 325,
+ "trending": 6.71707679098909,
+ "installs_last_month": 335,
"isMobileFriendly": false
},
{
@@ -22435,8 +22435,8 @@
"aarch64"
],
"added_at": 1736044232,
- "trending": 7.54664692354056,
- "installs_last_month": 297,
+ "trending": 12.73630868884381,
+ "installs_last_month": 307,
"isMobileFriendly": false
},
{
@@ -22476,8 +22476,8 @@
"aarch64"
],
"added_at": 1647327840,
- "trending": 1.597986296348213,
- "installs_last_month": 263,
+ "trending": 3.36116259798972,
+ "installs_last_month": 262,
"isMobileFriendly": false
},
{
@@ -22512,8 +22512,8 @@
"aarch64"
],
"added_at": 1697214015,
- "trending": 4.614185482088128,
- "installs_last_month": 247,
+ "trending": 4.274591082980994,
+ "installs_last_month": 254,
"isMobileFriendly": false
},
{
@@ -22553,8 +22553,8 @@
"aarch64"
],
"added_at": 1675625579,
- "trending": 1.7280430564023384,
- "installs_last_month": 214,
+ "trending": 0.7327113665423322,
+ "installs_last_month": 205,
"isMobileFriendly": false
},
{
@@ -22597,8 +22597,8 @@
"aarch64"
],
"added_at": 1534747078,
- "trending": 11.636751403584764,
- "installs_last_month": 181,
+ "trending": 11.049821298301552,
+ "installs_last_month": 175,
"isMobileFriendly": false
},
{
@@ -22640,8 +22640,8 @@
"aarch64"
],
"added_at": 1706168911,
- "trending": 3.6227043284818863,
- "installs_last_month": 154,
+ "trending": 3.410100358436739,
+ "installs_last_month": 157,
"isMobileFriendly": false
},
{
@@ -22676,8 +22676,8 @@
"aarch64"
],
"added_at": 1671698736,
- "trending": 4.20600851963697,
- "installs_last_month": 148,
+ "trending": 0.5286234599129263,
+ "installs_last_month": 151,
"isMobileFriendly": false
},
{
@@ -22711,8 +22711,8 @@
"aarch64"
],
"added_at": 1656705134,
- "trending": 1.1189565070534235,
- "installs_last_month": 139,
+ "trending": 1.7374459176180976,
+ "installs_last_month": 141,
"isMobileFriendly": false
},
{
@@ -22752,42 +22752,8 @@
"aarch64"
],
"added_at": 1662622023,
- "trending": 3.1527423707786064,
- "installs_last_month": 118,
- "isMobileFriendly": false
- },
- {
- "name": "Digital: A Love Story",
- "keywords": null,
- "summary": "A computer mystery/romance set five minutes into the future of 1988",
- "description": "\n A computer mystery/romance set five minutes into the future of 1988.\n \n \n I can guarantee at least ONE of the following is a real feature:\n \n \n Discover a vast conspiracy lurking on the internet!\n Save the world by exploiting a buffer overflow!\n Get away with telephone fraud!\n HACK THE GIBSON!\n \n \n Which one? You'll have to dial in and see. Welcome to the 20th century.\n \n \n A pre-NaNoRenO release. Digital is released under a Creative Commons license. February 2010, by Christine Love.\n \n ",
- "id": "com_scoutshonour_Digital",
- "type": "desktop-application",
- "translations": {},
- "project_license": "CC-BY-NC-SA-3.0",
- "is_free_license": false,
- "app_id": "com.scoutshonour.Digital",
- "icon": "https://dl.flathub.org/media/com/scoutshonour/Digital/379d398d1c0bd46b0fd8f2074ea20b79/icons/128x128/com.scoutshonour.Digital.png",
- "main_categories": "game",
- "sub_categories": [
- "AdventureGame"
- ],
- "developer_name": "Christine Love (Love Conquers All Games)",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1726013601,
- "arches": [
- "x86_64"
- ],
- "added_at": 1501864934,
- "trending": 7.183501333619132,
- "installs_last_month": 102,
+ "trending": 6.82156955703526,
+ "installs_last_month": 123,
"isMobileFriendly": false
},
{
@@ -22831,43 +22797,42 @@
"aarch64"
],
"added_at": 1731989989,
- "trending": 13.45948965988536,
- "installs_last_month": 101,
+ "trending": 10.277822650901872,
+ "installs_last_month": 112,
"isMobileFriendly": false
},
{
- "name": "Scripted Journeys",
+ "name": "Digital: A Love Story",
"keywords": null,
- "summary": "Play a multi-map text adventure",
- "description": "Scripted Journeys is a text-based adventure game where players can explore various maps, solve puzzles, and embark on exciting quests. The game features rich storytelling and a variety of maps to choose from, offering a unique experience each time you play. Discover hidden secrets and unravel mysteries in this engaging adventure.\n ",
- "id": "io_github_MrPiggy92_ScriptedJourneys",
+ "summary": "A computer mystery/romance set five minutes into the future of 1988",
+ "description": "\n A computer mystery/romance set five minutes into the future of 1988.\n \n \n I can guarantee at least ONE of the following is a real feature:\n \n \n Discover a vast conspiracy lurking on the internet!\n Save the world by exploiting a buffer overflow!\n Get away with telephone fraud!\n HACK THE GIBSON!\n \n \n Which one? You'll have to dial in and see. Welcome to the 20th century.\n \n \n A pre-NaNoRenO release. Digital is released under a Creative Commons license. February 2010, by Christine Love.\n \n ",
+ "id": "com_scoutshonour_Digital",
"type": "desktop-application",
"translations": {},
- "project_license": "GPL-3.0-only",
- "is_free_license": true,
- "app_id": "io.github.MrPiggy92.ScriptedJourneys",
- "icon": "https://dl.flathub.org/media/io/github/MrPiggy92.ScriptedJourneys/c49d8201b572adf59c555dad1e92e6da/icons/128x128/io.github.MrPiggy92.ScriptedJourneys.png",
+ "project_license": "CC-BY-NC-SA-3.0",
+ "is_free_license": false,
+ "app_id": "com.scoutshonour.Digital",
+ "icon": "https://dl.flathub.org/media/com/scoutshonour/Digital/379d398d1c0bd46b0fd8f2074ea20b79/icons/128x128/com.scoutshonour.Digital.png",
"main_categories": "game",
"sub_categories": [
"AdventureGame"
],
- "developer_name": "MrPiggy92",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "MrPiggy92",
- "verification_login_provider": "github",
- "verification_login_is_organization": "true",
+ "developer_name": "Christine Love (Love Conquers All Games)",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
"verification_website": null,
- "verification_timestamp": "1726508735",
+ "verification_timestamp": null,
"runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1741549680,
+ "updated_at": 1726013601,
"arches": [
- "x86_64",
- "aarch64"
+ "x86_64"
],
- "added_at": 1726468333,
- "trending": 5.130744475045383,
- "installs_last_month": 84,
+ "added_at": 1501864934,
+ "trending": 7.71580765674013,
+ "installs_last_month": 99,
"isMobileFriendly": false
},
{
@@ -22927,10 +22892,45 @@
"aarch64"
],
"added_at": 1655046652,
- "trending": 3.1114817115081896,
- "installs_last_month": 83,
+ "trending": 4.910975435794992,
+ "installs_last_month": 91,
"isMobileFriendly": true
},
+ {
+ "name": "Scripted Journeys",
+ "keywords": null,
+ "summary": "Play a multi-map text adventure",
+ "description": "Scripted Journeys is a text-based adventure game where players can explore various maps, solve puzzles, and embark on exciting quests. The game features rich storytelling and a variety of maps to choose from, offering a unique experience each time you play. Discover hidden secrets and unravel mysteries in this engaging adventure.\n ",
+ "id": "io_github_MrPiggy92_ScriptedJourneys",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-only",
+ "is_free_license": true,
+ "app_id": "io.github.MrPiggy92.ScriptedJourneys",
+ "icon": "https://dl.flathub.org/media/io/github/MrPiggy92.ScriptedJourneys/c49d8201b572adf59c555dad1e92e6da/icons/128x128/io.github.MrPiggy92.ScriptedJourneys.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "AdventureGame"
+ ],
+ "developer_name": "MrPiggy92",
+ "verification_verified": true,
+ "verification_method": "login_provider",
+ "verification_login_name": "MrPiggy92",
+ "verification_login_provider": "github",
+ "verification_login_is_organization": "true",
+ "verification_website": null,
+ "verification_timestamp": "1726508735",
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1741549680,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1726468333,
+ "trending": 3.5024594019655897,
+ "installs_last_month": 90,
+ "isMobileFriendly": false
+ },
{
"name": "don't take it personally, babe, it just ain't your story",
"keywords": [
@@ -22964,8 +22964,8 @@
"aarch64"
],
"added_at": 1531046445,
- "trending": 3.906299871861888,
- "installs_last_month": 73,
+ "trending": 3.596287902106676,
+ "installs_last_month": 74,
"isMobileFriendly": false
},
{
@@ -23003,8 +23003,8 @@
"x86_64"
],
"added_at": 1652422481,
- "trending": 0.2958979492901318,
- "installs_last_month": 71,
+ "trending": 0.8256070381015527,
+ "installs_last_month": 74,
"isMobileFriendly": false
},
{
@@ -23038,7 +23038,7 @@
"aarch64"
],
"added_at": 1728976818,
- "trending": 4.557905165099884,
+ "trending": 5.694648799899145,
"installs_last_month": 67,
"isMobileFriendly": false
},
@@ -23080,8 +23080,8 @@
"aarch64"
],
"added_at": 1568102591,
- "trending": 0.4004668773019979,
- "installs_last_month": 36,
+ "trending": 0.4483125056612308,
+ "installs_last_month": 38,
"isMobileFriendly": false
}
],
@@ -23130,8 +23130,8 @@
"aarch64"
],
"added_at": 1692740328,
- "trending": 5.998307581411801,
- "installs_last_month": 46530,
+ "trending": 5.3838501519662225,
+ "installs_last_month": 46692,
"isMobileFriendly": false
},
{
@@ -23169,8 +23169,8 @@
"aarch64"
],
"added_at": 1640680422,
- "trending": 7.853610374674901,
- "installs_last_month": 8240,
+ "trending": 10.029128398558347,
+ "installs_last_month": 8291,
"isMobileFriendly": false
},
{
@@ -23205,8 +23205,8 @@
"aarch64"
],
"added_at": 1659507908,
- "trending": 8.296534493642183,
- "installs_last_month": 6962,
+ "trending": 6.699443487515757,
+ "installs_last_month": 7041,
"isMobileFriendly": false
},
{
@@ -23368,8 +23368,8 @@
"aarch64"
],
"added_at": 1492018328,
- "trending": 10.558123182837363,
- "installs_last_month": 3942,
+ "trending": 8.882484202373414,
+ "installs_last_month": 3955,
"isMobileFriendly": false
},
{
@@ -23408,8 +23408,8 @@
"aarch64"
],
"added_at": 1492084114,
- "trending": 11.911156381432692,
- "installs_last_month": 2271,
+ "trending": 9.531053891505016,
+ "installs_last_month": 2276,
"isMobileFriendly": false
},
{
@@ -23443,8 +23443,8 @@
"x86_64"
],
"added_at": 1601454790,
- "trending": 7.740007292567639,
- "installs_last_month": 1347,
+ "trending": 7.950810594584819,
+ "installs_last_month": 1368,
"isMobileFriendly": false
},
{
@@ -23483,8 +23483,8 @@
"aarch64"
],
"added_at": 1688972460,
- "trending": 12.47368127973824,
- "installs_last_month": 1302,
+ "trending": 12.610767868454284,
+ "installs_last_month": 1284,
"isMobileFriendly": false
},
{
@@ -23525,8 +23525,8 @@
"aarch64"
],
"added_at": 1494999624,
- "trending": 11.166899597884177,
- "installs_last_month": 1038,
+ "trending": 11.054086288536256,
+ "installs_last_month": 1040,
"isMobileFriendly": false
},
{
@@ -23564,8 +23564,8 @@
"aarch64"
],
"added_at": 1653292987,
- "trending": 9.173782931507263,
- "installs_last_month": 972,
+ "trending": 11.26513613629375,
+ "installs_last_month": 957,
"isMobileFriendly": false
},
{
@@ -23601,8 +23601,8 @@
"aarch64"
],
"added_at": 1717580224,
- "trending": 3.436763747464628,
- "installs_last_month": 908,
+ "trending": 3.759188295725188,
+ "installs_last_month": 917,
"isMobileFriendly": false
},
{
@@ -23639,8 +23639,8 @@
"aarch64"
],
"added_at": 1492202785,
- "trending": 0.07825209317172077,
- "installs_last_month": 878,
+ "trending": 1.029117669923885,
+ "installs_last_month": 874,
"isMobileFriendly": false
},
{
@@ -23680,8 +23680,8 @@
"aarch64"
],
"added_at": 1512404271,
- "trending": -0.37097599900521017,
- "installs_last_month": 818,
+ "trending": 0.007453479789956363,
+ "installs_last_month": 807,
"isMobileFriendly": false
},
{
@@ -23715,8 +23715,8 @@
"aarch64"
],
"added_at": 1493186898,
- "trending": 7.302988934966847,
- "installs_last_month": 651,
+ "trending": 11.35201106732265,
+ "installs_last_month": 663,
"isMobileFriendly": false
},
{
@@ -23759,8 +23759,50 @@
"aarch64"
],
"added_at": 1494977795,
- "trending": 1.0686928703744796,
- "installs_last_month": 636,
+ "trending": 2.603694397839193,
+ "installs_last_month": 633,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Abuse",
+ "keywords": [
+ "game",
+ "arcade",
+ "run",
+ "gun",
+ "shooter"
+ ],
+ "summary": "Dark 2D side-scrolling platform game",
+ "description": "This is an SDL port of the original game from 1995. It is a run and gun game which features pixel based lighting.\n ",
+ "id": "com_github_Xenoveritas_abuse",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0+",
+ "is_free_license": true,
+ "app_id": "com.github.Xenoveritas.abuse",
+ "icon": "https://dl.flathub.org/media/com/github/Xenoveritas.abuse/26529d372026fce8a7a70c506cb3907a/icons/128x128/com.github.Xenoveritas.abuse.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame",
+ "ActionGame"
+ ],
+ "developer_name": "Crack dot Com",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1729763547,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1653627129,
+ "trending": 2.643853762846346,
+ "installs_last_month": 632,
"isMobileFriendly": false
},
{
@@ -23812,50 +23854,8 @@
"aarch64"
],
"added_at": 1693155547,
- "trending": 13.712407097568637,
- "installs_last_month": 626,
- "isMobileFriendly": false
- },
- {
- "name": "Abuse",
- "keywords": [
- "game",
- "arcade",
- "run",
- "gun",
- "shooter"
- ],
- "summary": "Dark 2D side-scrolling platform game",
- "description": "This is an SDL port of the original game from 1995. It is a run and gun game which features pixel based lighting.\n ",
- "id": "com_github_Xenoveritas_abuse",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0+",
- "is_free_license": true,
- "app_id": "com.github.Xenoveritas.abuse",
- "icon": "https://dl.flathub.org/media/com/github/Xenoveritas.abuse/26529d372026fce8a7a70c506cb3907a/icons/128x128/com.github.Xenoveritas.abuse.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame",
- "ActionGame"
- ],
- "developer_name": "Crack dot Com",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1729763547,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1653627129,
- "trending": 0.09088202358039554,
- "installs_last_month": 623,
+ "trending": 17.520230917559783,
+ "installs_last_month": 622,
"isMobileFriendly": false
},
{
@@ -23907,8 +23907,43 @@
"aarch64"
],
"added_at": 1580802922,
- "trending": 12.645407809616511,
- "installs_last_month": 577,
+ "trending": 13.030788566780624,
+ "installs_last_month": 583,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Pixel Wheels",
+ "keywords": null,
+ "summary": "Pixel Wheels is a retro top-down race game",
+ "description": "\n Pixel Wheels is a retro top-down race game for Linux, macOS, Windows and Android.\n \n \n It features multiple tracks, vehicles. Bonus and weapons can be picked up to help you get to the finish line first!\n \n \n You can play Pixel Wheels alone or with friends.\n \n ",
+ "id": "com_agateau_PixelWheels",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "com.agateau.PixelWheels",
+ "icon": "https://dl.flathub.org/media/com/agateau/PixelWheels/4bbeb5bb032e2c5860adb50b0ac5a945/icons/128x128/com.agateau.PixelWheels.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": "Aurélien Gâteau",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "agateau.com",
+ "verification_timestamp": "1679506650",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1728743464,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1644305009,
+ "trending": 13.367957477555658,
+ "installs_last_month": 554,
"isMobileFriendly": false
},
{
@@ -23946,43 +23981,8 @@
"aarch64"
],
"added_at": 1589978148,
- "trending": 9.3363022186006,
- "installs_last_month": 544,
- "isMobileFriendly": false
- },
- {
- "name": "Pixel Wheels",
- "keywords": null,
- "summary": "Pixel Wheels is a retro top-down race game",
- "description": "\n Pixel Wheels is a retro top-down race game for Linux, macOS, Windows and Android.\n \n \n It features multiple tracks, vehicles. Bonus and weapons can be picked up to help you get to the finish line first!\n \n \n You can play Pixel Wheels alone or with friends.\n \n ",
- "id": "com_agateau_PixelWheels",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "com.agateau.PixelWheels",
- "icon": "https://dl.flathub.org/media/com/agateau/PixelWheels/4bbeb5bb032e2c5860adb50b0ac5a945/icons/128x128/com.agateau.PixelWheels.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": "Aurélien Gâteau",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "agateau.com",
- "verification_timestamp": "1679506650",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1728743464,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1644305009,
- "trending": 13.017652541253344,
- "installs_last_month": 538,
+ "trending": 9.112616413697022,
+ "installs_last_month": 553,
"isMobileFriendly": false
},
{
@@ -24016,8 +24016,8 @@
"aarch64"
],
"added_at": 1678280256,
- "trending": 10.207739363881846,
- "installs_last_month": 457,
+ "trending": 10.021726328009342,
+ "installs_last_month": 458,
"isMobileFriendly": false
},
{
@@ -24191,7 +24191,7 @@
"aarch64"
],
"added_at": 1534955335,
- "trending": 8.766493366984433,
+ "trending": 9.543822672762598,
"installs_last_month": 433,
"isMobileFriendly": false
},
@@ -24366,8 +24366,8 @@
"aarch64"
],
"added_at": 1645372514,
- "trending": 9.86179084894838,
- "installs_last_month": 421,
+ "trending": 9.51406229321996,
+ "installs_last_month": 419,
"isMobileFriendly": false
},
{
@@ -24400,8 +24400,8 @@
"x86_64"
],
"added_at": 1536318725,
- "trending": 12.659936357167403,
- "installs_last_month": 406,
+ "trending": 11.323380266836516,
+ "installs_last_month": 400,
"isMobileFriendly": false
},
{
@@ -24440,8 +24440,8 @@
"aarch64"
],
"added_at": 1704220783,
- "trending": 5.463274322100348,
- "installs_last_month": 395,
+ "trending": 5.650106681165626,
+ "installs_last_month": 389,
"isMobileFriendly": false
},
{
@@ -24627,44 +24627,8 @@
"aarch64"
],
"added_at": 1535022858,
- "trending": 11.807167749751658,
- "installs_last_month": 385,
- "isMobileFriendly": false
- },
- {
- "name": "Tiny Crate",
- "keywords": null,
- "summary": "Crate-chucking action puzzler",
- "description": "Tiny Crate is a cute little precision platformer with puzzle elements!\n Lift and toss crates to traverse over spike pits and reach higher ground!\n Weigh down buttons to create platforms and solve the puzzle!\n Push yourself and make tight jumps! You got this! <3 (:\n Controls:\n \n Arrows - Move\n X - Jump / Select\n C - Lift & Toss / Back\n Enter - Menu\n \n ",
- "id": "net_hhoney_tinycrate",
- "type": "desktop-application",
- "translations": {},
- "project_license": "Unlicense",
- "is_free_license": true,
- "app_id": "net.hhoney.tinycrate",
- "icon": "https://dl.flathub.org/media/net/hhoney/tinycrate/51f282e4729d5985d646d23a1eb63774/icons/128x128/net.hhoney.tinycrate.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame",
- "KidsGame"
- ],
- "developer_name": "HHoney Software",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "hhoney.net",
- "verification_timestamp": "1739990544",
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1741105636,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1737039810,
- "trending": 14.378846691628226,
- "installs_last_month": 368,
+ "trending": 11.73859980819387,
+ "installs_last_month": 386,
"isMobileFriendly": false
},
{
@@ -24700,8 +24664,8 @@
"aarch64"
],
"added_at": 1702299440,
- "trending": 3.36658007661981,
- "installs_last_month": 362,
+ "trending": 0.7861997609240106,
+ "installs_last_month": 368,
"isMobileFriendly": false
},
{
@@ -24739,8 +24703,44 @@
"aarch64"
],
"added_at": 1740683590,
- "trending": 11.329584751719675,
- "installs_last_month": 351,
+ "trending": 12.189388493160733,
+ "installs_last_month": 364,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Tiny Crate",
+ "keywords": null,
+ "summary": "Crate-chucking action puzzler",
+ "description": "Tiny Crate is a cute little precision platformer with puzzle elements!\n Lift and toss crates to traverse over spike pits and reach higher ground!\n Weigh down buttons to create platforms and solve the puzzle!\n Push yourself and make tight jumps! You got this! <3 (:\n Controls:\n \n Arrows - Move\n X - Jump / Select\n C - Lift & Toss / Back\n Enter - Menu\n \n ",
+ "id": "net_hhoney_tinycrate",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "Unlicense",
+ "is_free_license": true,
+ "app_id": "net.hhoney.tinycrate",
+ "icon": "https://dl.flathub.org/media/net/hhoney/tinycrate/51f282e4729d5985d646d23a1eb63774/icons/128x128/net.hhoney.tinycrate.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame",
+ "KidsGame"
+ ],
+ "developer_name": "HHoney Software",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "hhoney.net",
+ "verification_timestamp": "1739990544",
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1741105636,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1737039810,
+ "trending": 13.680056961694223,
+ "installs_last_month": 362,
"isMobileFriendly": false
},
{
@@ -24973,8 +24973,8 @@
"aarch64"
],
"added_at": 1569573432,
- "trending": 10.748725683151818,
- "installs_last_month": 347,
+ "trending": 10.516134170881015,
+ "installs_last_month": 355,
"isMobileFriendly": false
},
{
@@ -25008,7 +25008,7 @@
"aarch64"
],
"added_at": 1652851945,
- "trending": 2.3707073270108623,
+ "trending": -0.5813753897505296,
"installs_last_month": 346,
"isMobileFriendly": false
},
@@ -25046,8 +25046,8 @@
"aarch64"
],
"added_at": 1492486646,
- "trending": 12.210468472769978,
- "installs_last_month": 345,
+ "trending": 13.706557900502494,
+ "installs_last_month": 343,
"isMobileFriendly": false
},
{
@@ -25081,43 +25081,8 @@
"aarch64"
],
"added_at": 1611043716,
- "trending": 0.09796261178401512,
- "installs_last_month": 323,
- "isMobileFriendly": false
- },
- {
- "name": "Asteroids Revenge",
- "keywords": null,
- "summary": "Evade lasers as an enigmatic entity",
- "description": "Asteroids Revenge is an exciting arcade-style game where you must navigate through an asteroid field while battling against a crooked spaceship. Dodge its lasers and fight back to emerge victorious!\n Features:\n \n Fast-paced gameplay\n Challenging lasers\n minimal graphics\n Engaging sound effects\n \n ",
- "id": "io_github_mlm_games_asteroids_revenge",
- "type": "desktop-application",
- "translations": {},
- "project_license": "MIT",
- "is_free_license": true,
- "app_id": "io.github.mlm_games.asteroids_revenge",
- "icon": "https://dl.flathub.org/media/io/github/mlm_games.asteroids_revenge/f3afb0ea9afb41242221f15e32c5755d/icons/128x128/io.github.mlm_games.asteroids_revenge.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": "MLM Games",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "mlm-games",
- "verification_login_provider": "github",
- "verification_login_is_organization": "true",
- "verification_website": null,
- "verification_timestamp": "1714134700",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1743422620,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1714131282,
- "trending": 10.512708170620412,
- "installs_last_month": 309,
+ "trending": -0.32523225765933206,
+ "installs_last_month": 330,
"isMobileFriendly": false
},
{
@@ -25151,10 +25116,48 @@
"aarch64"
],
"added_at": 1494566854,
- "trending": 9.341982955408028,
+ "trending": 9.024503582920657,
"installs_last_month": 299,
"isMobileFriendly": false
},
+ {
+ "name": "PoryDrive",
+ "keywords": null,
+ "summary": "Driving Game, Catch Porygon!",
+ "description": "Drive around and \"collect\" Porygon, each time you collect a Porygon a new one will randomly spawn somewhere on the map. A Porygon colliding with a purple cube will cause it to light up blue, this can help you find them. Upon right clicking the mouse you will switch between Ariel and Close views, in the Ariel view it is easier to see which of the purple cubes that the Porygon is colliding with. You can coast the side of collisions to speed up the recharging of boost.\n Mouse locks when you click on the window, press ESCAPE to unlock the mouse.\n \n N = New Game and Car Color\n W,A,S,D = Drive Car\n Space = Brake\n L-Shift = Boost\n RIGHT CLICK/MOUSE4 = Zoom Snap Close/Ariel\n Mouse Scroll = Zoom in/out\n C = Random Car Colors\n R = Accelerate/step DNA color peel\n F = FPS to console\n P = Player stats to console\n O = Toggle auto drive\n \n ",
+ "id": "com_voxdsp_PoryDrive",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0-only",
+ "is_free_license": true,
+ "app_id": "com.voxdsp.PoryDrive",
+ "icon": "https://dl.flathub.org/media/com/voxdsp/PoryDrive/10e35d9857c7c82d489b9e14e1c943ee/icons/128x128/com.voxdsp.PoryDrive.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame",
+ "SportsGame",
+ "KidsGame",
+ "Graphics"
+ ],
+ "developer_name": "James William Fletcher",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "voxdsp.com",
+ "verification_timestamp": "1712052517",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1712322848,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1698646399,
+ "trending": 5.179973313512161,
+ "installs_last_month": 295,
+ "isMobileFriendly": false
+ },
{
"name": "Kolf",
"keywords": null,
@@ -25327,46 +25330,43 @@
"aarch64"
],
"added_at": 1646897768,
- "trending": 8.905330848461304,
- "installs_last_month": 294,
+ "trending": 8.165856152669793,
+ "installs_last_month": 288,
"isMobileFriendly": false
},
{
- "name": "PoryDrive",
+ "name": "Asteroids Revenge",
"keywords": null,
- "summary": "Driving Game, Catch Porygon!",
- "description": "Drive around and \"collect\" Porygon, each time you collect a Porygon a new one will randomly spawn somewhere on the map. A Porygon colliding with a purple cube will cause it to light up blue, this can help you find them. Upon right clicking the mouse you will switch between Ariel and Close views, in the Ariel view it is easier to see which of the purple cubes that the Porygon is colliding with. You can coast the side of collisions to speed up the recharging of boost.\n Mouse locks when you click on the window, press ESCAPE to unlock the mouse.\n \n N = New Game and Car Color\n W,A,S,D = Drive Car\n Space = Brake\n L-Shift = Boost\n RIGHT CLICK/MOUSE4 = Zoom Snap Close/Ariel\n Mouse Scroll = Zoom in/out\n C = Random Car Colors\n R = Accelerate/step DNA color peel\n F = FPS to console\n P = Player stats to console\n O = Toggle auto drive\n \n ",
- "id": "com_voxdsp_PoryDrive",
+ "summary": "Evade lasers as an enigmatic entity",
+ "description": "Asteroids Revenge is an exciting arcade-style game where you must navigate through an asteroid field while battling against a crooked spaceship. Dodge its lasers and fight back to emerge victorious!\n Features:\n \n Fast-paced gameplay\n Challenging lasers\n minimal graphics\n Engaging sound effects\n \n ",
+ "id": "io_github_mlm_games_asteroids_revenge",
"type": "desktop-application",
"translations": {},
- "project_license": "GPL-2.0-only",
+ "project_license": "MIT",
"is_free_license": true,
- "app_id": "com.voxdsp.PoryDrive",
- "icon": "https://dl.flathub.org/media/com/voxdsp/PoryDrive/10e35d9857c7c82d489b9e14e1c943ee/icons/128x128/com.voxdsp.PoryDrive.png",
+ "app_id": "io.github.mlm_games.asteroids_revenge",
+ "icon": "https://dl.flathub.org/media/io/github/mlm_games.asteroids_revenge/f3afb0ea9afb41242221f15e32c5755d/icons/128x128/io.github.mlm_games.asteroids_revenge.png",
"main_categories": "game",
"sub_categories": [
- "ArcadeGame",
- "SportsGame",
- "KidsGame",
- "Graphics"
+ "ArcadeGame"
],
- "developer_name": "James William Fletcher",
+ "developer_name": "MLM Games",
"verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "voxdsp.com",
- "verification_timestamp": "1712052517",
+ "verification_method": "login_provider",
+ "verification_login_name": "mlm-games",
+ "verification_login_provider": "github",
+ "verification_login_is_organization": "true",
+ "verification_website": null,
+ "verification_timestamp": "1714134700",
"runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1712322848,
+ "updated_at": 1743422620,
"arches": [
"x86_64",
"aarch64"
],
- "added_at": 1698646399,
- "trending": 3.686908481514328,
- "installs_last_month": 292,
+ "added_at": 1714131282,
+ "trending": 11.884123278436896,
+ "installs_last_month": 288,
"isMobileFriendly": false
},
{
@@ -25400,79 +25400,7 @@
"aarch64"
],
"added_at": 1655048584,
- "trending": 7.822144308754312,
- "installs_last_month": 286,
- "isMobileFriendly": false
- },
- {
- "name": "Dynablaster Revenge",
- "keywords": null,
- "summary": "Remake of the game Dynablaster",
- "description": "\n Dynablaster Revenge is a remake of the game Dynablaster, released by Hudson Soft in 1991.\n \n \n The goal of this remake is to keep the original game-play as untouched as possible while adding some new features such as networked multiplayer and real-time 3D rendering. In case you're not yet familiar with the original game goal, it's quite simple: Bomb all other players from the screen. Either by collecting flame extras to increase the bomb radius or by picking up bomb extras in order to have more bombs to drop you're able to surround your enemies with your bombs, or blow them away with clever bomb chain reactions.\n \n ",
- "id": "com_github_varnholt_dynablaster_revenge",
- "type": "desktop-application",
- "translations": {},
- "project_license": "CC-BY-NC-4.0",
- "is_free_license": false,
- "app_id": "com.github.varnholt.dynablaster_revenge",
- "icon": "https://dl.flathub.org/media/com/github/varnholt.dynablaster_revenge/0f64c64ce92b3938cbfb6d49bd66e8af/icons/128x128/com.github.varnholt.dynablaster_revenge.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": "Dynablaster Revenge developers",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.kde.Platform/x86_64/5.15-23.08",
- "updated_at": 1729132562,
- "arches": [
- "x86_64"
- ],
- "added_at": 1661807166,
- "trending": 11.027908958853232,
- "installs_last_month": 286,
- "isMobileFriendly": false
- },
- {
- "name": "Tuxocide",
- "keywords": null,
- "summary": "3D FPS a war rages on in antarctica",
- "description": "A war rages on in antarctica between penguins and hostile aliens...\n Tux's native home of Antarctica is being invaded by a hostile alien species!! with one mission in mind, to harvest all of the tux pelts they possibly can! Will you stop them, or aid them in their dastardly mission?\n Mouse locks when you click on the window, press ESCAPE to unlock the mouse.\n \n W,A,S,D / Arrow Keys = Move\n L-SHIFT / R-CTRL = Sprint\n Left Click = Shoot\n Right Click = Iron Sights\n \n ",
- "id": "com_voxdsp_Tuxocide",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0-only",
- "is_free_license": true,
- "app_id": "com.voxdsp.Tuxocide",
- "icon": "https://dl.flathub.org/media/com/voxdsp/Tuxocide/3bd86b4b86b0c03aec9da16f95f88358/icons/128x128/com.voxdsp.Tuxocide.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame",
- "SportsGame",
- "KidsGame",
- "Graphics"
- ],
- "developer_name": "James William Fletcher",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "voxdsp.com",
- "verification_timestamp": "1712052557",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1712163012,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1701681910,
- "trending": 4.135751648378853,
+ "trending": 8.988802395992604,
"installs_last_month": 286,
"isMobileFriendly": false
},
@@ -25597,7 +25525,41 @@
"aarch64"
],
"added_at": 1529733224,
- "trending": 11.684692297941158,
+ "trending": 9.77992360901652,
+ "installs_last_month": 285,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Dynablaster Revenge",
+ "keywords": null,
+ "summary": "Remake of the game Dynablaster",
+ "description": "\n Dynablaster Revenge is a remake of the game Dynablaster, released by Hudson Soft in 1991.\n \n \n The goal of this remake is to keep the original game-play as untouched as possible while adding some new features such as networked multiplayer and real-time 3D rendering. In case you're not yet familiar with the original game goal, it's quite simple: Bomb all other players from the screen. Either by collecting flame extras to increase the bomb radius or by picking up bomb extras in order to have more bombs to drop you're able to surround your enemies with your bombs, or blow them away with clever bomb chain reactions.\n \n ",
+ "id": "com_github_varnholt_dynablaster_revenge",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "CC-BY-NC-4.0",
+ "is_free_license": false,
+ "app_id": "com.github.varnholt.dynablaster_revenge",
+ "icon": "https://dl.flathub.org/media/com/github/varnholt.dynablaster_revenge/0f64c64ce92b3938cbfb6d49bd66e8af/icons/128x128/com.github.varnholt.dynablaster_revenge.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": "Dynablaster Revenge developers",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.kde.Platform/x86_64/5.15-23.08",
+ "updated_at": 1729132562,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1661807166,
+ "trending": 11.582609548935748,
"installs_last_month": 284,
"isMobileFriendly": false
},
@@ -25635,8 +25597,46 @@
"x86_64"
],
"added_at": 1586504666,
- "trending": 5.292580601176791,
- "installs_last_month": 277,
+ "trending": 5.053141419977233,
+ "installs_last_month": 276,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Tuxocide",
+ "keywords": null,
+ "summary": "3D FPS a war rages on in antarctica",
+ "description": "A war rages on in antarctica between penguins and hostile aliens...\n Tux's native home of Antarctica is being invaded by a hostile alien species!! with one mission in mind, to harvest all of the tux pelts they possibly can! Will you stop them, or aid them in their dastardly mission?\n Mouse locks when you click on the window, press ESCAPE to unlock the mouse.\n \n W,A,S,D / Arrow Keys = Move\n L-SHIFT / R-CTRL = Sprint\n Left Click = Shoot\n Right Click = Iron Sights\n \n ",
+ "id": "com_voxdsp_Tuxocide",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0-only",
+ "is_free_license": true,
+ "app_id": "com.voxdsp.Tuxocide",
+ "icon": "https://dl.flathub.org/media/com/voxdsp/Tuxocide/3bd86b4b86b0c03aec9da16f95f88358/icons/128x128/com.voxdsp.Tuxocide.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame",
+ "SportsGame",
+ "KidsGame",
+ "Graphics"
+ ],
+ "developer_name": "James William Fletcher",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "voxdsp.com",
+ "verification_timestamp": "1712052557",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1712163012,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1701681910,
+ "trending": 4.933188427797912,
+ "installs_last_month": 276,
"isMobileFriendly": false
},
{
@@ -25670,8 +25670,43 @@
"aarch64"
],
"added_at": 1713420163,
- "trending": 8.362506379222102,
- "installs_last_month": 268,
+ "trending": 7.657215691416045,
+ "installs_last_month": 269,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Mr Rescue",
+ "keywords": null,
+ "summary": "Arcade-style fire fighting game",
+ "description": "Mr. Rescue is an arcade styled 2d action game centered around evacuating civilians from burning buildings.\n\nThe game features fast paced fire extinguishing action, intense boss battles, a catchy soundtrack and lots of throwing people around in pseudo-randomly generated buildings.\n\nAs of version 1.02 we have added XBox 360 controller support and fullscreen modes.",
+ "id": "dk_tangramgames_mrrescue",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "Zlib",
+ "is_free_license": true,
+ "app_id": "dk.tangramgames.mrrescue",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/dk.tangramgames.mrrescue.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": "Simon Larsen",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1694115798,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1537942401,
+ "trending": 10.307058531466152,
+ "installs_last_month": 253,
"isMobileFriendly": false
},
{
@@ -25711,43 +25746,8 @@
"aarch64"
],
"added_at": 1534105794,
- "trending": 4.329388815283751,
- "installs_last_month": 256,
- "isMobileFriendly": false
- },
- {
- "name": "Mr Rescue",
- "keywords": null,
- "summary": "Arcade-style fire fighting game",
- "description": "Mr. Rescue is an arcade styled 2d action game centered around evacuating civilians from burning buildings.\n\nThe game features fast paced fire extinguishing action, intense boss battles, a catchy soundtrack and lots of throwing people around in pseudo-randomly generated buildings.\n\nAs of version 1.02 we have added XBox 360 controller support and fullscreen modes.",
- "id": "dk_tangramgames_mrrescue",
- "type": "desktop-application",
- "translations": {},
- "project_license": "Zlib",
- "is_free_license": true,
- "app_id": "dk.tangramgames.mrrescue",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/dk.tangramgames.mrrescue.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": "Simon Larsen",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1694115798,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1537942401,
- "trending": 10.621775086309366,
- "installs_last_month": 250,
+ "trending": 1.1873159995326348,
+ "installs_last_month": 252,
"isMobileFriendly": false
},
{
@@ -25788,8 +25788,8 @@
"aarch64"
],
"added_at": 1684833574,
- "trending": 10.51739027358484,
- "installs_last_month": 244,
+ "trending": 10.950089002063862,
+ "installs_last_month": 246,
"isMobileFriendly": false
},
{
@@ -25832,8 +25832,8 @@
"aarch64"
],
"added_at": 1495784008,
- "trending": -0.1717292047338015,
- "installs_last_month": 239,
+ "trending": 1.5226701017187718,
+ "installs_last_month": 241,
"isMobileFriendly": false
},
{
@@ -25870,44 +25870,45 @@
"aarch64"
],
"added_at": 1660465791,
- "trending": 8.160537883756747,
- "installs_last_month": 236,
+ "trending": 8.50666142348849,
+ "installs_last_month": 232,
"isMobileFriendly": false
},
{
- "name": "OpenClonk",
+ "name": "AstroImpact",
"keywords": null,
- "summary": "Multiplayer action game where you control small and nimble humanoids",
- "description": "\n OpenClonk is a free multiplayer action game in which you control clonks, small but witty and nimble humanoid beings. The game is mainly about mining, settling and fast-paced melees.\n \n ",
- "id": "org_openclonk_OpenClonk",
+ "summary": "Defend the planet from asteroids!",
+ "description": "Play with friends online to defend the planet! Longest time to first impact or longest time to 100% damage. You destroy asteroids by flying into them before they hit the planet!\n \n Escape to free mouse lock.\n Use W,A,S,D,Q,E,SPACE & LEFT SHIFT to move around.\n L-CTRL / Right Click to Brake.\n L-ALT / Mouse 3/4 Click to Instant Brake.\n R = Toggle auto-tilt/roll around planet.\n Q+E to stop rolling.\n F = FPS to console.\n \n ",
+ "id": "com_voxdsp_AstroImpact",
"type": "desktop-application",
"translations": {},
- "project_license": "ISC and CC-BY-3.0",
+ "project_license": "GPL-3.0",
"is_free_license": true,
- "app_id": "org.openclonk.OpenClonk",
- "icon": "https://dl.flathub.org/media/org/openclonk/OpenClonk/1961c16ee1a119c8af72e4dd14d4b435/icons/128x128/org.openclonk.OpenClonk.png",
+ "app_id": "com.voxdsp.AstroImpact",
+ "icon": "https://dl.flathub.org/media/com/voxdsp/AstroImpact/cc40d76e919eca0853728ffcb8f0fe05/icons/128x128/com.voxdsp.AstroImpact.png",
"main_categories": "game",
"sub_categories": [
- "ActionGame",
- "StrategyGame",
- "ArcadeGame"
+ "ArcadeGame",
+ "Simulation",
+ "Graphics"
],
- "developer_name": "OpenClonk contributors",
- "verification_verified": false,
- "verification_method": "none",
+ "developer_name": "James William Fletcher",
+ "verification_verified": true,
+ "verification_method": "website",
"verification_login_name": null,
"verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.kde.Platform/x86_64/5.15-24.08",
- "updated_at": 1742961887,
+ "verification_login_is_organization": "false",
+ "verification_website": "voxdsp.com",
+ "verification_timestamp": "1712052046",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1713523413,
"arches": [
- "x86_64"
+ "x86_64",
+ "aarch64"
],
- "added_at": 1522566411,
- "trending": 4.040940305437392,
- "installs_last_month": 230,
+ "added_at": 1699221678,
+ "trending": 1.4392846802361294,
+ "installs_last_month": 232,
"isMobileFriendly": false
},
{
@@ -25942,8 +25943,8 @@
"aarch64"
],
"added_at": 1652851890,
- "trending": -0.41300961639646205,
- "installs_last_month": 229,
+ "trending": -0.5976456106318524,
+ "installs_last_month": 230,
"isMobileFriendly": false
},
{
@@ -26123,8 +26124,44 @@
"aarch64"
],
"added_at": 1611325843,
- "trending": 7.932388445763273,
- "installs_last_month": 228,
+ "trending": 8.822591945528604,
+ "installs_last_month": 229,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "OpenClonk",
+ "keywords": null,
+ "summary": "Multiplayer action game where you control small and nimble humanoids",
+ "description": "\n OpenClonk is a free multiplayer action game in which you control clonks, small but witty and nimble humanoid beings. The game is mainly about mining, settling and fast-paced melees.\n \n ",
+ "id": "org_openclonk_OpenClonk",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "ISC and CC-BY-3.0",
+ "is_free_license": true,
+ "app_id": "org.openclonk.OpenClonk",
+ "icon": "https://dl.flathub.org/media/org/openclonk/OpenClonk/1961c16ee1a119c8af72e4dd14d4b435/icons/128x128/org.openclonk.OpenClonk.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame",
+ "StrategyGame",
+ "ArcadeGame"
+ ],
+ "developer_name": "OpenClonk contributors",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.kde.Platform/x86_64/5.15-24.08",
+ "updated_at": 1742961887,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1522566411,
+ "trending": 1.3213259786645442,
+ "installs_last_month": 227,
"isMobileFriendly": false
},
{
@@ -26305,47 +26342,10 @@
"aarch64"
],
"added_at": 1535032342,
- "trending": 2.4393068699640104,
+ "trending": -0.16904790939498948,
"installs_last_month": 223,
"isMobileFriendly": false
},
- {
- "name": "AstroImpact",
- "keywords": null,
- "summary": "Defend the planet from asteroids!",
- "description": "Play with friends online to defend the planet! Longest time to first impact or longest time to 100% damage. You destroy asteroids by flying into them before they hit the planet!\n \n Escape to free mouse lock.\n Use W,A,S,D,Q,E,SPACE & LEFT SHIFT to move around.\n L-CTRL / Right Click to Brake.\n L-ALT / Mouse 3/4 Click to Instant Brake.\n R = Toggle auto-tilt/roll around planet.\n Q+E to stop rolling.\n F = FPS to console.\n \n ",
- "id": "com_voxdsp_AstroImpact",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0",
- "is_free_license": true,
- "app_id": "com.voxdsp.AstroImpact",
- "icon": "https://dl.flathub.org/media/com/voxdsp/AstroImpact/cc40d76e919eca0853728ffcb8f0fe05/icons/128x128/com.voxdsp.AstroImpact.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame",
- "Simulation",
- "Graphics"
- ],
- "developer_name": "James William Fletcher",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "voxdsp.com",
- "verification_timestamp": "1712052046",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1713523413,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1699221678,
- "trending": 2.6637431821040853,
- "installs_last_month": 221,
- "isMobileFriendly": false
- },
{
"name": "Blobby Volley 2",
"keywords": null,
@@ -26377,49 +26377,8 @@
"aarch64"
],
"added_at": 1603699616,
- "trending": 2.0244224878336197,
- "installs_last_month": 215,
- "isMobileFriendly": false
- },
- {
- "name": "RPMLauncher",
- "keywords": null,
- "summary": "A better Minecraft Launcher that supports multiple platforms and many functionalities for you to explore!",
- "description": "A better Minecraft Launcher that supports multiple platforms and many functionalities for you to explore! Source Code: https://github.com/RPMTW/RPMLauncher",
- "id": "ga_rpmtw_rpmlauncher",
- "type": "desktop-application",
- "translations": {
- "zh-Hans": {
- "summary": "次世代的我的世界启动器,既保留简洁设计、支援多个平台和许多功能供您探索!"
- },
- "zh-Hant": {
- "summary": "次世代的 Minecraft 啟動器,既保留簡潔設計、支援多個平台和許多功能供您探索!"
- }
- },
- "project_license": "GPL-3.0",
- "is_free_license": true,
- "app_id": "ga.rpmtw.rpmlauncher",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/ga.rpmtw.rpmlauncher.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": "The RPMTW Team",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/22.08",
- "updated_at": 1673346146,
- "arches": [
- "x86_64"
- ],
- "added_at": 1636443878,
- "trending": 1.6559652586575702,
- "installs_last_month": 195,
+ "trending": 2.2265674283219807,
+ "installs_last_month": 222,
"isMobileFriendly": false
},
{
@@ -26459,8 +26418,156 @@
"aarch64"
],
"added_at": 1492280644,
- "trending": 9.20064122614214,
- "installs_last_month": 191,
+ "trending": 10.282897182862367,
+ "installs_last_month": 203,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "RPMLauncher",
+ "keywords": null,
+ "summary": "A better Minecraft Launcher that supports multiple platforms and many functionalities for you to explore!",
+ "description": "A better Minecraft Launcher that supports multiple platforms and many functionalities for you to explore! Source Code: https://github.com/RPMTW/RPMLauncher",
+ "id": "ga_rpmtw_rpmlauncher",
+ "type": "desktop-application",
+ "translations": {
+ "zh-Hans": {
+ "summary": "次世代的我的世界启动器,既保留简洁设计、支援多个平台和许多功能供您探索!"
+ },
+ "zh-Hant": {
+ "summary": "次世代的 Minecraft 啟動器,既保留簡潔設計、支援多個平台和許多功能供您探索!"
+ }
+ },
+ "project_license": "GPL-3.0",
+ "is_free_license": true,
+ "app_id": "ga.rpmtw.rpmlauncher",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/ga.rpmtw.rpmlauncher.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": "The RPMTW Team",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/22.08",
+ "updated_at": 1673346146,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1636443878,
+ "trending": 0.02858599567072262,
+ "installs_last_month": 196,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "TuxScape",
+ "keywords": null,
+ "summary": "Mythical adventure as Tux!",
+ "description": "Inspired by the famous game Run-Escape.\n All your stats are shown in the title bar. Smash presents and pots to get health drops, I would start on Zombies, Green Flies, Baby Dragons, Skulls and Whirlwinds. Check the readme on github.com/mrbid/TuxScape for more info.\n Mouse locks when you click on the window, press ESCAPE to unlock the mouse.\n \n Left Click = Attack\n Right Click = Target Weapon / Engage Jet Pack\n Mouse Scroll = Zoom in/out\n W,A,S,D / Arrow Keys = Move\n L-SHIFT / R-CTRL = Sprint/Fast\n Space = Jet Pack\n 1-9 = Weapon Change\n C = Toggle between First and Third person\n V / MOUSE4 = Toggle between stickey/toggle mouse clicks (good for afk)\n \n ",
+ "id": "com_voxdsp_TuxScape",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0-only",
+ "is_free_license": true,
+ "app_id": "com.voxdsp.TuxScape",
+ "icon": "https://dl.flathub.org/media/com/voxdsp/TuxScape/5e46bf2ff8b6fbf021ee972c587c2714/icons/128x128/com.voxdsp.TuxScape.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame",
+ "KidsGame",
+ "Graphics"
+ ],
+ "developer_name": "James William Fletcher",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "voxdsp.com",
+ "verification_timestamp": "1712052547",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1717800080,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1702974979,
+ "trending": 4.592493517748316,
+ "installs_last_month": 187,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "OpenOMF",
+ "keywords": null,
+ "summary": "Remake of One Must Fall 2097",
+ "description": "\n OpenOMF is an open-source remake of the 1994 DOS fighting classic One Must Fall 2097.\n \n \n One Must Fall 2097 is a 2D fighting game set in the year 2097 where pilots use Human Assisted Robots (HARs) to battle in various arenas.\n \n \n One Must Fall 2097 features a 1 player story mode, a 2 player mode, a tournament mode with RPG elements and network play.\n \n \n If you experience rendering issues where no text appears, please try flatpak run --env=LIBGL_ALWAYS_SOFTWARE=1 org.openomf.OpenOMF\n \n ",
+ "id": "org_openomf_OpenOMF",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "MIT",
+ "is_free_license": true,
+ "app_id": "org.openomf.OpenOMF",
+ "icon": "https://dl.flathub.org/media/org/openomf/OpenOMF/c903403c23ca7a230eef1c0d1b498120/icons/128x128/org.openomf.OpenOMF.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": "The OpenOMF developers",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "openomf.org",
+ "verification_timestamp": "1739311268",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1743576419,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1739282569,
+ "trending": 2.2920743740778016,
+ "installs_last_month": 187,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Lander",
+ "keywords": null,
+ "summary": "Lunar Lander style arcade game.",
+ "description": "This is a lunar lander style arcade game. Use the arrow keys to move the ship and avoid crashing into obstacles. Collect all the spinning keys and then land the ship on one of the landing pads. The levels are randomly generated and become progressively harder. ",
+ "id": "uk_me_doof_Lander",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "uk.me.doof.Lander",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/uk.me.doof.Lander.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": "Nick Gasson",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/22.08",
+ "updated_at": 1679687600,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1568837980,
+ "trending": 9.526334666360803,
+ "installs_last_month": 186,
"isMobileFriendly": false
},
{
@@ -26496,7 +26603,7 @@
"aarch64"
],
"added_at": 1716967191,
- "trending": 5.771079426250106,
+ "trending": 2.8608796315180753,
"installs_last_month": 186,
"isMobileFriendly": false
},
@@ -26533,82 +26640,10 @@
"aarch64"
],
"added_at": 1704220352,
- "trending": 3.774114016250533,
+ "trending": 6.582683357822802,
"installs_last_month": 184,
"isMobileFriendly": false
},
- {
- "name": "TuxScape",
- "keywords": null,
- "summary": "Mythical adventure as Tux!",
- "description": "Inspired by the famous game Run-Escape.\n All your stats are shown in the title bar. Smash presents and pots to get health drops, I would start on Zombies, Green Flies, Baby Dragons, Skulls and Whirlwinds. Check the readme on github.com/mrbid/TuxScape for more info.\n Mouse locks when you click on the window, press ESCAPE to unlock the mouse.\n \n Left Click = Attack\n Right Click = Target Weapon / Engage Jet Pack\n Mouse Scroll = Zoom in/out\n W,A,S,D / Arrow Keys = Move\n L-SHIFT / R-CTRL = Sprint/Fast\n Space = Jet Pack\n 1-9 = Weapon Change\n C = Toggle between First and Third person\n V / MOUSE4 = Toggle between stickey/toggle mouse clicks (good for afk)\n \n ",
- "id": "com_voxdsp_TuxScape",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0-only",
- "is_free_license": true,
- "app_id": "com.voxdsp.TuxScape",
- "icon": "https://dl.flathub.org/media/com/voxdsp/TuxScape/5e46bf2ff8b6fbf021ee972c587c2714/icons/128x128/com.voxdsp.TuxScape.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame",
- "KidsGame",
- "Graphics"
- ],
- "developer_name": "James William Fletcher",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "voxdsp.com",
- "verification_timestamp": "1712052547",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1717800080,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1702974979,
- "trending": 3.669303799896644,
- "installs_last_month": 183,
- "isMobileFriendly": false
- },
- {
- "name": "Lander",
- "keywords": null,
- "summary": "Lunar Lander style arcade game.",
- "description": "This is a lunar lander style arcade game. Use the arrow keys to move the ship and avoid crashing into obstacles. Collect all the spinning keys and then land the ship on one of the landing pads. The levels are randomly generated and become progressively harder. ",
- "id": "uk_me_doof_Lander",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "uk.me.doof.Lander",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/uk.me.doof.Lander.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": "Nick Gasson",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/22.08",
- "updated_at": 1679687600,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1568837980,
- "trending": 12.338851450856149,
- "installs_last_month": 177,
- "isMobileFriendly": false
- },
{
"name": "Bitfighter",
"keywords": null,
@@ -26640,83 +26675,8 @@
"aarch64"
],
"added_at": 1664953173,
- "trending": 0.8886622355206342,
- "installs_last_month": 168,
- "isMobileFriendly": false
- },
- {
- "name": "OpenOMF",
- "keywords": null,
- "summary": "Remake of One Must Fall 2097",
- "description": "\n OpenOMF is an open-source remake of the 1994 DOS fighting classic One Must Fall 2097.\n \n \n One Must Fall 2097 is a 2D fighting game set in the year 2097 where pilots use Human Assisted Robots (HARs) to battle in various arenas.\n \n \n One Must Fall 2097 features a 1 player story mode, a 2 player mode, a tournament mode with RPG elements and network play.\n \n \n If you experience rendering issues where no text appears, please try flatpak run --env=LIBGL_ALWAYS_SOFTWARE=1 org.openomf.OpenOMF\n \n ",
- "id": "org_openomf_OpenOMF",
- "type": "desktop-application",
- "translations": {},
- "project_license": "MIT",
- "is_free_license": true,
- "app_id": "org.openomf.OpenOMF",
- "icon": "https://dl.flathub.org/media/org/openomf/OpenOMF/c903403c23ca7a230eef1c0d1b498120/icons/128x128/org.openomf.OpenOMF.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": "The OpenOMF developers",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "openomf.org",
- "verification_timestamp": "1739311268",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1743576419,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1739282569,
- "trending": 3.1504331212262593,
- "installs_last_month": 162,
- "isMobileFriendly": false
- },
- {
- "name": "B.A.L.L.Z.",
- "keywords": null,
- "summary": "Platform/puzzle game where you control a rolling ball",
- "description": "The game is a platformer with some puzzle elements. You take control of a ball which is genetically modified by the British secret service. Your mission is to rescue captured British soldiers from a prison in Iran.The game was written in 72 hours for the TINS competition, a competition similar to Speedhack. The name TINS is an recursive acronym for 'TINS is not Speedhack'.",
- "id": "io_gitlab_ballz_Ballz",
- "type": "desktop-application",
- "translations": {
- "fr": {
- "description": "Jeu de plateforme avec quelques éléments de jeu de puzzle. Vous prenez le contrôle d'une balle génétiquement modifiée par les services secrets britanniques. Votre mission est de sauver des soldats britanniques prisonniers d'une prison en Iran.Ce jeu a été écrit en 72 heures pour la compétition TINS, similaire à Speedhack. Le nom TINS est un acronyme récursif pour 'TINS is not Speedhack' (TINS n'est pas Speedhack).",
- "summary": "Jeu de plate-forme/puzzle où vous contrôlez une balle qui roule"
- }
- },
- "project_license": "BSD-3-Clause-Clear",
- "is_free_license": true,
- "app_id": "io.gitlab.ballz.Ballz",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.gitlab.ballz.Ballz.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": null,
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/22.08",
- "updated_at": 1671698776,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1671698445,
- "trending": 0.32647514867465344,
- "installs_last_month": 161,
+ "trending": 2.259611051439154,
+ "installs_last_month": 181,
"isMobileFriendly": false
},
{
@@ -26888,8 +26848,8 @@
"aarch64"
],
"added_at": 1613427015,
- "trending": 10.8577677197399,
- "installs_last_month": 160,
+ "trending": 7.575238231234195,
+ "installs_last_month": 172,
"isMobileFriendly": false
},
{
@@ -26924,8 +26884,8 @@
"aarch64"
],
"added_at": 1737186441,
- "trending": 17.200282560764524,
- "installs_last_month": 158,
+ "trending": 14.907315193587298,
+ "installs_last_month": 161,
"isMobileFriendly": false
},
{
@@ -26961,8 +26921,8 @@
"aarch64"
],
"added_at": 1718955030,
- "trending": 1.9420897999235016,
- "installs_last_month": 152,
+ "trending": 6.020582208427875,
+ "installs_last_month": 156,
"isMobileFriendly": false
},
{
@@ -27111,8 +27071,161 @@
"aarch64"
],
"added_at": 1535036543,
- "trending": 2.3457559604977973e-05,
- "installs_last_month": 151,
+ "trending": 1.1718485773924483,
+ "installs_last_month": 154,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "When Penguins Fly",
+ "keywords": [
+ "penguin",
+ "fly",
+ "tux"
+ ],
+ "summary": "Tux the penguin learns to fly",
+ "description": "\n Tux the penguin learns to fly. A game made using Godot 4. \"When Penguins Fly\" is an Arcade-esque flying game starring our favorite Linux mascot.\n \n ",
+ "id": "page_codeberg_imbev_WhenPenguinsFly",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "page.codeberg.imbev.WhenPenguinsFly",
+ "icon": "https://dl.flathub.org/media/page/codeberg/imbev.WhenPenguinsFly/0e004efff8d8e709ec8af7f3d7ef670a/icons/128x128/page.codeberg.imbev.WhenPenguinsFly.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": "Isaac Beverly",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1716532892,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1716532892,
+ "trending": 11.75141685729706,
+ "installs_last_month": 150,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "B.A.L.L.Z.",
+ "keywords": null,
+ "summary": "Platform/puzzle game where you control a rolling ball",
+ "description": "The game is a platformer with some puzzle elements. You take control of a ball which is genetically modified by the British secret service. Your mission is to rescue captured British soldiers from a prison in Iran.The game was written in 72 hours for the TINS competition, a competition similar to Speedhack. The name TINS is an recursive acronym for 'TINS is not Speedhack'.",
+ "id": "io_gitlab_ballz_Ballz",
+ "type": "desktop-application",
+ "translations": {
+ "fr": {
+ "description": "Jeu de plateforme avec quelques éléments de jeu de puzzle. Vous prenez le contrôle d'une balle génétiquement modifiée par les services secrets britanniques. Votre mission est de sauver des soldats britanniques prisonniers d'une prison en Iran.Ce jeu a été écrit en 72 heures pour la compétition TINS, similaire à Speedhack. Le nom TINS est un acronyme récursif pour 'TINS is not Speedhack' (TINS n'est pas Speedhack).",
+ "summary": "Jeu de plate-forme/puzzle où vous contrôlez une balle qui roule"
+ }
+ },
+ "project_license": "BSD-3-Clause-Clear",
+ "is_free_license": true,
+ "app_id": "io.gitlab.ballz.Ballz",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.gitlab.ballz.Ballz.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": null,
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/22.08",
+ "updated_at": 1671698776,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1671698445,
+ "trending": 4.672636217632946,
+ "installs_last_month": 149,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Beat And Match To Pass",
+ "keywords": [
+ "game",
+ "arcade",
+ "action"
+ ],
+ "summary": "Beat them all",
+ "description": "\n This Game was made with Godot 3.5\n \n \n Gordon must kill enemies to open gates and finish levels\n \n \n Use your sword to kill number of enemies needed to open each gates. \n \n ",
+ "id": "org_dupot_beatmatchtopass",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "LGPL-2.1-only",
+ "is_free_license": true,
+ "app_id": "org.dupot.beatmatchtopass",
+ "icon": "https://dl.flathub.org/media/org/dupot/beatmatchtopass/f30eb1ea700f7377c4ae02112829f3c9/icons/128x128/org.dupot.beatmatchtopass.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": "Michael Bertocchi",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "dupot.org",
+ "verification_timestamp": "1699192773",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1736638868,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1696448257,
+ "trending": 11.258241904779926,
+ "installs_last_month": 149,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Serious Shooter",
+ "keywords": null,
+ "summary": "3D FPS approved by Uncle Sam",
+ "description": "25 Different Enemies, 3 Weapons, GOD MODE!\n ... and two secret hidden weapons bound to two keys ;)\n Mouse locks when you click on the window, press ESCAPE to unlock the mouse.\n \n W,A,S,D / Arrow Keys = Move\n L-SHIFT / R-CTRL = Sprint\n Left Click = Shoot\n Right Click = Zoom\n Mouse Scroll = Change Weapon\n \n ",
+ "id": "com_voxdsp_SeriousShooter",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0-only",
+ "is_free_license": true,
+ "app_id": "com.voxdsp.SeriousShooter",
+ "icon": "https://dl.flathub.org/media/com/voxdsp/SeriousShooter/35e7032a2b2b6ed1581a87ac8fd27dd2/icons/128x128/com.voxdsp.SeriousShooter.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame",
+ "KidsGame",
+ "Graphics"
+ ],
+ "developer_name": "James William Fletcher",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "voxdsp.com",
+ "verification_timestamp": "1712052522",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1717800127,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1703234640,
+ "trending": 6.7601779318953845,
+ "installs_last_month": 144,
"isMobileFriendly": false
},
{
@@ -27346,84 +27459,8 @@
"aarch64"
],
"added_at": 1569584029,
- "trending": 1.5779043211950534,
- "installs_last_month": 147,
- "isMobileFriendly": false
- },
- {
- "name": "When Penguins Fly",
- "keywords": [
- "penguin",
- "fly",
- "tux"
- ],
- "summary": "Tux the penguin learns to fly",
- "description": "\n Tux the penguin learns to fly. A game made using Godot 4. \"When Penguins Fly\" is an Arcade-esque flying game starring our favorite Linux mascot.\n \n ",
- "id": "page_codeberg_imbev_WhenPenguinsFly",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "page.codeberg.imbev.WhenPenguinsFly",
- "icon": "https://dl.flathub.org/media/page/codeberg/imbev.WhenPenguinsFly/0e004efff8d8e709ec8af7f3d7ef670a/icons/128x128/page.codeberg.imbev.WhenPenguinsFly.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": "Isaac Beverly",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1716532892,
- "arches": [
- "x86_64"
- ],
- "added_at": 1716532892,
- "trending": 11.365462945279855,
- "installs_last_month": 146,
- "isMobileFriendly": false
- },
- {
- "name": "Beat And Match To Pass",
- "keywords": [
- "game",
- "arcade",
- "action"
- ],
- "summary": "Beat them all",
- "description": "\n This Game was made with Godot 3.5\n \n \n Gordon must kill enemies to open gates and finish levels\n \n \n Use your sword to kill number of enemies needed to open each gates. \n \n ",
- "id": "org_dupot_beatmatchtopass",
- "type": "desktop-application",
- "translations": {},
- "project_license": "LGPL-2.1-only",
- "is_free_license": true,
- "app_id": "org.dupot.beatmatchtopass",
- "icon": "https://dl.flathub.org/media/org/dupot/beatmatchtopass/f30eb1ea700f7377c4ae02112829f3c9/icons/128x128/org.dupot.beatmatchtopass.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": "Michael Bertocchi",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "dupot.org",
- "verification_timestamp": "1699192773",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1736638868,
- "arches": [
- "x86_64"
- ],
- "added_at": 1696448257,
- "trending": 10.4084244787291,
- "installs_last_month": 145,
+ "trending": 0.015069201714804636,
+ "installs_last_month": 142,
"isMobileFriendly": false
},
{
@@ -27601,45 +27638,8 @@
"aarch64"
],
"added_at": 1653888944,
- "trending": 8.921794805495262,
- "installs_last_month": 139,
- "isMobileFriendly": false
- },
- {
- "name": "Serious Shooter",
- "keywords": null,
- "summary": "3D FPS approved by Uncle Sam",
- "description": "25 Different Enemies, 3 Weapons, GOD MODE!\n ... and two secret hidden weapons bound to two keys ;)\n Mouse locks when you click on the window, press ESCAPE to unlock the mouse.\n \n W,A,S,D / Arrow Keys = Move\n L-SHIFT / R-CTRL = Sprint\n Left Click = Shoot\n Right Click = Zoom\n Mouse Scroll = Change Weapon\n \n ",
- "id": "com_voxdsp_SeriousShooter",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0-only",
- "is_free_license": true,
- "app_id": "com.voxdsp.SeriousShooter",
- "icon": "https://dl.flathub.org/media/com/voxdsp/SeriousShooter/35e7032a2b2b6ed1581a87ac8fd27dd2/icons/128x128/com.voxdsp.SeriousShooter.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame",
- "KidsGame",
- "Graphics"
- ],
- "developer_name": "James William Fletcher",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "voxdsp.com",
- "verification_timestamp": "1712052522",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1717800127,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1703234640,
- "trending": 14.101660419413651,
- "installs_last_month": 139,
+ "trending": 7.600260252435293,
+ "installs_last_month": 135,
"isMobileFriendly": false
},
{
@@ -27682,8 +27682,8 @@
"aarch64"
],
"added_at": 1494975820,
- "trending": 12.2470330391032,
- "installs_last_month": 118,
+ "trending": 10.676525596834642,
+ "installs_last_month": 124,
"isMobileFriendly": false
},
{
@@ -27727,8 +27727,8 @@
"aarch64"
],
"added_at": 1705654905,
- "trending": 10.199428434045386,
- "installs_last_month": 113,
+ "trending": 8.45545445949073,
+ "installs_last_month": 116,
"isMobileFriendly": false
},
{
@@ -27764,8 +27764,43 @@
"aarch64"
],
"added_at": 1699518669,
- "trending": 2.915133136096465,
- "installs_last_month": 111,
+ "trending": 4.665671977061271,
+ "installs_last_month": 114,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Crayon Ball",
+ "keywords": null,
+ "summary": "A fast paced match-4 puzzler",
+ "description": "Color matching, ball popping, and physics fun!When a group of four same-colored balls touch, they will burst and an avalanche of new balls will tumble in to take their place. Quickly and strategically click to burst a few more to set up the next match even before they settle into place!Originally released in 2007 for the Mac as ScribBall, and re-masted as Crayon Ball in 2009. After finding the source code we decided to open source it. Enjoy!",
+ "id": "com_howlingmoonsoftware_CrayonBall",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-only",
+ "is_free_license": true,
+ "app_id": "com.howlingmoonsoftware.CrayonBall",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.howlingmoonsoftware.CrayonBall.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": "Howling Moon Software",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "howlingmoonsoftware.com",
+ "verification_timestamp": "1693506328",
+ "runtime": "org.freedesktop.Platform/x86_64/22.08",
+ "updated_at": 1693517288,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1693469456,
+ "trending": 13.915658998168915,
+ "installs_last_month": 109,
"isMobileFriendly": false
},
{
@@ -27801,45 +27836,10 @@
"aarch64"
],
"added_at": 1700215925,
- "trending": 0.061706152679995574,
+ "trending": 2.842037755026158,
"installs_last_month": 106,
"isMobileFriendly": false
},
- {
- "name": "Rocks'n'Diamonds",
- "keywords": null,
- "summary": "Gem collecting puzzle game",
- "description": "\n Rocks 'n' Diamonds is a action puzzle game where you have to navigate a maze\n of dirt, rocks, enemies and quicksand, while collecting gems and making it\n safely to the exit.\n Be careful not to get crushed by falling rocks or killed by an enemy.\n \n ",
- "id": "org_artsoft_rocksndiamonds",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0-or-later",
- "is_free_license": true,
- "app_id": "org.artsoft.rocksndiamonds",
- "icon": "https://dl.flathub.org/media/org/artsoft/rocksndiamonds/ccc65a6fefaf7f19eaf6749d4b61ea36/icons/128x128/org.artsoft.rocksndiamonds.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": "Artsoft Entertainment",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1739351442,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1661152273,
- "trending": 9.399676824266828,
- "installs_last_month": 103,
- "isMobileFriendly": false
- },
{
"name": "Librerama",
"keywords": null,
@@ -27884,7 +27884,51 @@
"aarch64"
],
"added_at": 1683100065,
- "trending": 4.22367941550846,
+ "trending": 1.3727781606445455,
+ "installs_last_month": 104,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Jump 'n Bump",
+ "keywords": [
+ "cute",
+ "game",
+ "bunnies",
+ "rabbits",
+ "jump",
+ "head",
+ "explode",
+ "gore"
+ ],
+ "summary": "Cute multiplayer platform game",
+ "description": "\n Jump 'n Bump is an arcade multiplayer game for the whole family.\n You play cute fluffy little bunnies and hop on each other's heads.\n \n \n At the beginning you are in the menu, where you have to let each active player\n jump over the tree trunk to enter the play area, and then walk to the right.\n You will then enter the arena. The aim is to jump on the other bunnies' heads...\n \n ",
+ "id": "io_gitlab_LibreGames_jumpnbump",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0+",
+ "is_free_license": true,
+ "app_id": "io.gitlab.LibreGames.jumpnbump",
+ "icon": "https://dl.flathub.org/media/io/gitlab/LibreGames.jumpnbump/64bb35412059a505b3a40930e51f85f5/icons/128x128/io.gitlab.LibreGames.jumpnbump.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": "Brainchild Design",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1721804367,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1721804367,
+ "trending": 11.85631576417671,
"installs_last_month": 102,
"isMobileFriendly": false
},
@@ -27919,10 +27963,80 @@
"aarch64"
],
"added_at": 1496385369,
- "trending": -0.5298256646802111,
+ "trending": 4.193014348477456,
"installs_last_month": 101,
"isMobileFriendly": false
},
+ {
+ "name": "Rocks'n'Diamonds",
+ "keywords": null,
+ "summary": "Gem collecting puzzle game",
+ "description": "\n Rocks 'n' Diamonds is a action puzzle game where you have to navigate a maze\n of dirt, rocks, enemies and quicksand, while collecting gems and making it\n safely to the exit.\n Be careful not to get crushed by falling rocks or killed by an enemy.\n \n ",
+ "id": "org_artsoft_rocksndiamonds",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0-or-later",
+ "is_free_license": true,
+ "app_id": "org.artsoft.rocksndiamonds",
+ "icon": "https://dl.flathub.org/media/org/artsoft/rocksndiamonds/ccc65a6fefaf7f19eaf6749d4b61ea36/icons/128x128/org.artsoft.rocksndiamonds.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": "Artsoft Entertainment",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1739351442,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1661152273,
+ "trending": 9.847946020134762,
+ "installs_last_month": 99,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "I Have No Tomatoes",
+ "keywords": null,
+ "summary": "Tomato smashing game",
+ "description": "I Have No Tomatoes is an extreme leisure time activity idea of which culminates in the following question: How many tomatoes can you smash in ten short minutes? If you have the time to spare, this game has the vegetables just waiting to be eliminated!",
+ "id": "net_sourceforge_tomatoes_IHaveNoTomatoes",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "Zlib",
+ "is_free_license": true,
+ "app_id": "net.sourceforge.tomatoes.IHaveNoTomatoes",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/net.sourceforge.tomatoes.IHaveNoTomatoes.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": "Mika Halttunen",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/22.08",
+ "updated_at": 1664009688,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1662709276,
+ "trending": 13.62288905376544,
+ "installs_last_month": 99,
+ "isMobileFriendly": false
+ },
{
"name": "KSnakeDuel",
"keywords": null,
@@ -28092,122 +28206,8 @@
"aarch64"
],
"added_at": 1653889025,
- "trending": 11.891313885384069,
- "installs_last_month": 101,
- "isMobileFriendly": false
- },
- {
- "name": "Crayon Ball",
- "keywords": null,
- "summary": "A fast paced match-4 puzzler",
- "description": "Color matching, ball popping, and physics fun!When a group of four same-colored balls touch, they will burst and an avalanche of new balls will tumble in to take their place. Quickly and strategically click to burst a few more to set up the next match even before they settle into place!Originally released in 2007 for the Mac as ScribBall, and re-masted as Crayon Ball in 2009. After finding the source code we decided to open source it. Enjoy!",
- "id": "com_howlingmoonsoftware_CrayonBall",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-only",
- "is_free_license": true,
- "app_id": "com.howlingmoonsoftware.CrayonBall",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.howlingmoonsoftware.CrayonBall.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": "Howling Moon Software",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "howlingmoonsoftware.com",
- "verification_timestamp": "1693506328",
- "runtime": "org.freedesktop.Platform/x86_64/22.08",
- "updated_at": 1693517288,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1693469456,
- "trending": 10.768290809161856,
- "installs_last_month": 101,
- "isMobileFriendly": false
- },
- {
- "name": "Jump 'n Bump",
- "keywords": [
- "cute",
- "game",
- "bunnies",
- "rabbits",
- "jump",
- "head",
- "explode",
- "gore"
- ],
- "summary": "Cute multiplayer platform game",
- "description": "\n Jump 'n Bump is an arcade multiplayer game for the whole family.\n You play cute fluffy little bunnies and hop on each other's heads.\n \n \n At the beginning you are in the menu, where you have to let each active player\n jump over the tree trunk to enter the play area, and then walk to the right.\n You will then enter the arena. The aim is to jump on the other bunnies' heads...\n \n ",
- "id": "io_gitlab_LibreGames_jumpnbump",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0+",
- "is_free_license": true,
- "app_id": "io.gitlab.LibreGames.jumpnbump",
- "icon": "https://dl.flathub.org/media/io/gitlab/LibreGames.jumpnbump/64bb35412059a505b3a40930e51f85f5/icons/128x128/io.gitlab.LibreGames.jumpnbump.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": "Brainchild Design",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1721804367,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1721804367,
- "trending": 10.07511482659982,
- "installs_last_month": 99,
- "isMobileFriendly": false
- },
- {
- "name": "I Have No Tomatoes",
- "keywords": null,
- "summary": "Tomato smashing game",
- "description": "I Have No Tomatoes is an extreme leisure time activity idea of which culminates in the following question: How many tomatoes can you smash in ten short minutes? If you have the time to spare, this game has the vegetables just waiting to be eliminated!",
- "id": "net_sourceforge_tomatoes_IHaveNoTomatoes",
- "type": "desktop-application",
- "translations": {},
- "project_license": "Zlib",
- "is_free_license": true,
- "app_id": "net.sourceforge.tomatoes.IHaveNoTomatoes",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/net.sourceforge.tomatoes.IHaveNoTomatoes.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": "Mika Halttunen",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/22.08",
- "updated_at": 1664009688,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1662709276,
- "trending": 11.214107492811417,
- "installs_last_month": 93,
+ "trending": 8.91249282447284,
+ "installs_last_month": 97,
"isMobileFriendly": false
},
{
@@ -28245,8 +28245,8 @@
"aarch64"
],
"added_at": 1653374853,
- "trending": -0.611078534735719,
- "installs_last_month": 90,
+ "trending": 4.930941355153968,
+ "installs_last_month": 91,
"isMobileFriendly": false
},
{
@@ -28280,8 +28280,8 @@
"aarch64"
],
"added_at": 1688972717,
- "trending": 3.758402790547721,
- "installs_last_month": 85,
+ "trending": 1.9022286751522652,
+ "installs_last_month": 80,
"isMobileFriendly": false
},
{
@@ -28411,155 +28411,10 @@
"aarch64"
],
"added_at": 1529927153,
- "trending": 2.5707064873818473,
- "installs_last_month": 84,
- "isMobileFriendly": false
- },
- {
- "name": "Hikou no mizu",
- "keywords": null,
- "summary": "Platform-based, anime-styled fighting game",
- "description": "\n Hikou no mizu is a 2D fighting game with anime-inspired graphics.\n Fights take place in interactive arenas of various sizes.\n Both networked multiplayer and local games are possible.\n Joysticks are supported and a simple AI is included for solo playing.\n \n \n Playable characters fight using natural powers such as water, lightning, or fire.\n Currently, three characters are playable: Hikou, Takino and Hana.\n \n ",
- "id": "org_hikounomizu_HikouNoMizu",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-only AND CC-BY-SA-4.0 AND CC-BY-4.0 AND CC-BY-3.0 AND OFL-1.1",
- "is_free_license": true,
- "app_id": "org.hikounomizu.HikouNoMizu",
- "icon": "https://dl.flathub.org/media/org/hikounomizu/HikouNoMizu/b4ba22c28cdf5b3294d288363e0456ca/icons/128x128/org.hikounomizu.HikouNoMizu.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": "Duncan Deveaux",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "hikounomizu.org",
- "verification_timestamp": "1682349898",
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1727898528,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1610349453,
- "trending": -0.8175527365217705,
+ "trending": 0.2513056238183642,
"installs_last_month": 79,
"isMobileFriendly": false
},
- {
- "name": "Snowboarder",
- "keywords": null,
- "summary": "3D Snowboarding",
- "description": "Use your keyboard arrow keys to move from left to right or left and right click.\n A web version is available at mrbid.github.io/snowboarder/\n ",
- "id": "com_voxdsp_Snowboarder",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0-only",
- "is_free_license": true,
- "app_id": "com.voxdsp.Snowboarder",
- "icon": "https://dl.flathub.org/media/com/voxdsp/Snowboarder/6d6c22a93bafee800ce861ad2c7a88a7/icons/128x128/com.voxdsp.Snowboarder.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame",
- "KidsGame",
- "Graphics"
- ],
- "developer_name": "James William Fletcher",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "voxdsp.com",
- "verification_timestamp": "1712052532",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1712163248,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1700215905,
- "trending": 2.18874283974135,
- "installs_last_month": 74,
- "isMobileFriendly": false
- },
- {
- "name": "Temple Driver",
- "keywords": null,
- "summary": "Terry's 1st Temple",
- "description": "Terry A. Davis was a very skilled and devote catholic programmer who sadly suffered from schizophrenia during his life, although this didn't stop Terry from becoming one of the most famous and recognisable figures of the general internet community gaining recognition from even Larry Page the co-founder of the Google search engine. What Terry managed to achieve in his life is sadly commonly undervalued and overlooked due to his schizophrenia; however what Terry managed to achieve in his programming ventures and his social media escapades, a small fragment of which considered controversial sadly given more attention than the greater body of his internet streams, truly is a remarkable feat even for an individual without mental health issues. That is to say that no one else to date has achieved the combined programming feats and social notoriety that Terry Davis, single-handedly, managed to achieve during his life. It is with great honour that I am able to write this passage about him.\n \n Left & Right Click or Arrow Keys\n F = FPS to console.\n \n Dedicated to the smartest programmer that ever lived, Terry A. Davis. (templeos.org)\n ",
- "id": "com_voxdsp_TempleDriver",
- "type": "desktop-application",
- "translations": {},
- "project_license": "MIT",
- "is_free_license": true,
- "app_id": "com.voxdsp.TempleDriver",
- "icon": "https://dl.flathub.org/media/com/voxdsp/TempleDriver/f50313c76c214a32479df498e08ee3b7/icons/128x128/com.voxdsp.TempleDriver.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame",
- "KidsGame",
- "Graphics"
- ],
- "developer_name": "James William Fletcher",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "voxdsp.com",
- "verification_timestamp": "1716316152",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1723100883,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1716271296,
- "trending": 7.41033116714361,
- "installs_last_month": 72,
- "isMobileFriendly": false
- },
- {
- "name": "RigelEngine",
- "keywords": null,
- "summary": "A modern re-implementation of the classic DOS game Duke Nukem II",
- "description": "RigelEngine is a re-implementation of the game Duke Nukem II, originally released by Apogee Software in 1993 for MS-DOS. It works as a drop-in replacement for the original executable: It reads the game's data files and plays just like the original, but runs natively on modern operating systems. On top of that, it offers various modern enhancements like higher frame rate, better game controller support, a wide-screen mode, quick saving etc.In order to run RigelEngine, the game data from the original game is required. Both the shareware version and the registered version work.You can grab the shareware version from archive.org: https://archive.org/download/msdos_DUKE2_shareware/DUKE2.zip",
- "id": "io_github_lethal_guitar_RigelEngine",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0-or-later",
- "is_free_license": true,
- "app_id": "io.github.lethal_guitar.RigelEngine",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.github.lethal_guitar.RigelEngine.png",
- "main_categories": "game",
- "sub_categories": [
- "ActionGame",
- "ArcadeGame"
- ],
- "developer_name": null,
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/21.08",
- "updated_at": 1670693885,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1653555234,
- "trending": 3.217364894835848,
- "installs_last_month": 71,
- "isMobileFriendly": false
- },
{
"name": "SpaceMiner",
"keywords": null,
@@ -28593,8 +28448,117 @@
"aarch64"
],
"added_at": 1700468163,
- "trending": 3.630013206647102,
- "installs_last_month": 71,
+ "trending": 7.028345980171517,
+ "installs_last_month": 78,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Snowboarder",
+ "keywords": null,
+ "summary": "3D Snowboarding",
+ "description": "Use your keyboard arrow keys to move from left to right or left and right click.\n A web version is available at mrbid.github.io/snowboarder/\n ",
+ "id": "com_voxdsp_Snowboarder",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0-only",
+ "is_free_license": true,
+ "app_id": "com.voxdsp.Snowboarder",
+ "icon": "https://dl.flathub.org/media/com/voxdsp/Snowboarder/6d6c22a93bafee800ce861ad2c7a88a7/icons/128x128/com.voxdsp.Snowboarder.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame",
+ "KidsGame",
+ "Graphics"
+ ],
+ "developer_name": "James William Fletcher",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "voxdsp.com",
+ "verification_timestamp": "1712052532",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1712163248,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1700215905,
+ "trending": 1.934649119785417,
+ "installs_last_month": 77,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Hikou no mizu",
+ "keywords": null,
+ "summary": "Platform-based, anime-styled fighting game",
+ "description": "\n Hikou no mizu is a 2D fighting game with anime-inspired graphics.\n Fights take place in interactive arenas of various sizes.\n Both networked multiplayer and local games are possible.\n Joysticks are supported and a simple AI is included for solo playing.\n \n \n Playable characters fight using natural powers such as water, lightning, or fire.\n Currently, three characters are playable: Hikou, Takino and Hana.\n \n ",
+ "id": "org_hikounomizu_HikouNoMizu",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-only AND CC-BY-SA-4.0 AND CC-BY-4.0 AND CC-BY-3.0 AND OFL-1.1",
+ "is_free_license": true,
+ "app_id": "org.hikounomizu.HikouNoMizu",
+ "icon": "https://dl.flathub.org/media/org/hikounomizu/HikouNoMizu/b4ba22c28cdf5b3294d288363e0456ca/icons/128x128/org.hikounomizu.HikouNoMizu.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": "Duncan Deveaux",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "hikounomizu.org",
+ "verification_timestamp": "1682349898",
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1727898528,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1610349453,
+ "trending": 2.8466423626388297,
+ "installs_last_month": 76,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Temple Driver",
+ "keywords": null,
+ "summary": "Terry's 1st Temple",
+ "description": "Terry A. Davis was a very skilled and devote catholic programmer who sadly suffered from schizophrenia during his life, although this didn't stop Terry from becoming one of the most famous and recognisable figures of the general internet community gaining recognition from even Larry Page the co-founder of the Google search engine. What Terry managed to achieve in his life is sadly commonly undervalued and overlooked due to his schizophrenia; however what Terry managed to achieve in his programming ventures and his social media escapades, a small fragment of which considered controversial sadly given more attention than the greater body of his internet streams, truly is a remarkable feat even for an individual without mental health issues. That is to say that no one else to date has achieved the combined programming feats and social notoriety that Terry Davis, single-handedly, managed to achieve during his life. It is with great honour that I am able to write this passage about him.\n \n Left & Right Click or Arrow Keys\n F = FPS to console.\n \n Dedicated to the smartest programmer that ever lived, Terry A. Davis. (templeos.org)\n ",
+ "id": "com_voxdsp_TempleDriver",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "MIT",
+ "is_free_license": true,
+ "app_id": "com.voxdsp.TempleDriver",
+ "icon": "https://dl.flathub.org/media/com/voxdsp/TempleDriver/f50313c76c214a32479df498e08ee3b7/icons/128x128/com.voxdsp.TempleDriver.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame",
+ "KidsGame",
+ "Graphics"
+ ],
+ "developer_name": "James William Fletcher",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "voxdsp.com",
+ "verification_timestamp": "1716316152",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1723100883,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1716271296,
+ "trending": 7.98711478881834,
+ "installs_last_month": 76,
"isMobileFriendly": false
},
{
@@ -28628,8 +28592,8 @@
"aarch64"
],
"added_at": 1665471742,
- "trending": 1.6578254228944551,
- "installs_last_month": 70,
+ "trending": 3.372339831934564,
+ "installs_last_month": 74,
"isMobileFriendly": false
},
{
@@ -28668,8 +28632,44 @@
"aarch64"
],
"added_at": 1652690510,
- "trending": 9.794661033472252,
- "installs_last_month": 66,
+ "trending": 12.080776976116958,
+ "installs_last_month": 69,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "RigelEngine",
+ "keywords": null,
+ "summary": "A modern re-implementation of the classic DOS game Duke Nukem II",
+ "description": "RigelEngine is a re-implementation of the game Duke Nukem II, originally released by Apogee Software in 1993 for MS-DOS. It works as a drop-in replacement for the original executable: It reads the game's data files and plays just like the original, but runs natively on modern operating systems. On top of that, it offers various modern enhancements like higher frame rate, better game controller support, a wide-screen mode, quick saving etc.In order to run RigelEngine, the game data from the original game is required. Both the shareware version and the registered version work.You can grab the shareware version from archive.org: https://archive.org/download/msdos_DUKE2_shareware/DUKE2.zip",
+ "id": "io_github_lethal_guitar_RigelEngine",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0-or-later",
+ "is_free_license": true,
+ "app_id": "io.github.lethal_guitar.RigelEngine",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.github.lethal_guitar.RigelEngine.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame",
+ "ArcadeGame"
+ ],
+ "developer_name": null,
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/21.08",
+ "updated_at": 1670693885,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1653555234,
+ "trending": 1.0855619689289573,
+ "installs_last_month": 69,
"isMobileFriendly": false
},
{
@@ -28724,45 +28724,8 @@
"aarch64"
],
"added_at": 1653336573,
- "trending": 1.487713949023338,
- "installs_last_month": 62,
- "isMobileFriendly": false
- },
- {
- "name": "The Catrooms",
- "keywords": null,
- "summary": "Liminal Cat Horror",
- "description": "The Backrooms, catified. Find all 14 trinkets before the cat emojis get you!\n Follow the floating eye to obtain the trinkets before the demonic cats get to you!! There are 14 trinkets in total and the final trinket will have no floating eye to guide you, instead the sky will turn more red the closer you are to it! Once you have won the game the sky will turn yellow.\n \n ESCAPE to release mouse lock.\n Mouse Move to Look Around.\n Arrow Keys or WASD to Move Around.\n \n ",
- "id": "com_voxdsp_TheCatrooms",
- "type": "desktop-application",
- "translations": {},
- "project_license": "MIT",
- "is_free_license": true,
- "app_id": "com.voxdsp.TheCatrooms",
- "icon": "https://dl.flathub.org/media/com/voxdsp/TheCatrooms/d8ac7a26823ffe214239a483a4180526/icons/128x128/com.voxdsp.TheCatrooms.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame",
- "KidsGame",
- "Graphics"
- ],
- "developer_name": "James William Fletcher",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "voxdsp.com",
- "verification_timestamp": "1721821193",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1727832198,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1721804464,
- "trending": 12.661744154600848,
- "installs_last_month": 58,
+ "trending": 0.26847290465567,
+ "installs_last_month": 63,
"isMobileFriendly": false
},
{
@@ -28800,8 +28763,45 @@
"aarch64"
],
"added_at": 1662409567,
- "trending": 1.8683396362297664,
- "installs_last_month": 51,
+ "trending": 1.3400101788822876,
+ "installs_last_month": 59,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "The Catrooms",
+ "keywords": null,
+ "summary": "Liminal Cat Horror",
+ "description": "The Backrooms, catified. Find all 14 trinkets before the cat emojis get you!\n Follow the floating eye to obtain the trinkets before the demonic cats get to you!! There are 14 trinkets in total and the final trinket will have no floating eye to guide you, instead the sky will turn more red the closer you are to it! Once you have won the game the sky will turn yellow.\n \n ESCAPE to release mouse lock.\n Mouse Move to Look Around.\n Arrow Keys or WASD to Move Around.\n \n ",
+ "id": "com_voxdsp_TheCatrooms",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "MIT",
+ "is_free_license": true,
+ "app_id": "com.voxdsp.TheCatrooms",
+ "icon": "https://dl.flathub.org/media/com/voxdsp/TheCatrooms/d8ac7a26823ffe214239a483a4180526/icons/128x128/com.voxdsp.TheCatrooms.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame",
+ "KidsGame",
+ "Graphics"
+ ],
+ "developer_name": "James William Fletcher",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "voxdsp.com",
+ "verification_timestamp": "1721821193",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1727832198,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1721804464,
+ "trending": 8.034267215989825,
+ "installs_last_month": 55,
"isMobileFriendly": false
},
{
@@ -28835,8 +28835,8 @@
"aarch64"
],
"added_at": 1683543522,
- "trending": 5.828126381191808,
- "installs_last_month": 46,
+ "trending": 5.933475179197854,
+ "installs_last_month": 52,
"isMobileFriendly": false
},
{
@@ -28872,10 +28872,152 @@
"aarch64"
],
"added_at": 1705488642,
- "trending": 4.399324983211869,
+ "trending": 15.42339166020288,
+ "installs_last_month": 50,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "openflap",
+ "keywords": null,
+ "summary": "A game about bouncing balls through gaps of never-ending pipes",
+ "description": "Use spacebar, mouseclick, or joystick button to jump.\n ",
+ "id": "io_gitlab_jazztickets_openflap",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-only",
+ "is_free_license": true,
+ "app_id": "io.gitlab.jazztickets.openflap",
+ "icon": "https://dl.flathub.org/media/io/gitlab/jazztickets.openflap/ddbb31e921969a4d6b58ffcbbd05dae1/icons/128x128/io.gitlab.jazztickets.openflap.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": "jazztickets",
+ "verification_verified": true,
+ "verification_method": "login_provider",
+ "verification_login_name": "jazztickets",
+ "verification_login_provider": "gitlab",
+ "verification_login_is_organization": "false",
+ "verification_website": null,
+ "verification_timestamp": "1686063875",
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1734369208,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1664952513,
+ "trending": 3.0545801447319194,
"installs_last_month": 46,
"isMobileFriendly": false
},
+ {
+ "name": "Sky Checkers",
+ "keywords": null,
+ "summary": "Blast enemies off a stage",
+ "description": "Blast off your enemies in a 1-4 multiplayer action packed battle and be the last one standing!Hook up gamepads to add more friends or host/join a game with your friends online (absent of firwall / network restrictions).",
+ "id": "net_zgcoder_skycheckers",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0+",
+ "is_free_license": true,
+ "app_id": "net.zgcoder.skycheckers",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/net.zgcoder.skycheckers.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": null,
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1694408527,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1589101423,
+ "trending": 14.077943204436927,
+ "installs_last_month": 45,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Snowball",
+ "keywords": null,
+ "summary": "Novel 3D loop/buzz wire style game",
+ "description": "Roll around collecting snow and avoiding trees until your snowball is large enough to continue to the next level.\n The snowball turns green when the next level portals have opened, the portals are located at the north and south poles of the sphere.\n The larger the snowballs you collect higher the score. Gold snow is double the reward of white.\n Picking up snow increases your speed temporarily; the idea is to enter a flow of collecting snow so that your speed stays up.\n Try not to hit the trees as they will slow you down and reduce the mass of your snowball unless your snowball is large enough to consume them. Trees will shrink slightly as you approach them to show that they can be \"consumed\" aka rolled over without a penalty to snowball size, only speed.\n The goal? If you need one: complete each level or a sequence of levels with the highest score in the shortest time. I just play it to get lost in a trance and typically play 10 minute long games.\n The \"any key\" on your keyboard will open the menu, and all the other controls are bound to the mouse:\n Left click to toggle mouse focus, scroll and right click for zoom, X1 and X2 or Mouse 4 and 5 will increment or decrement the mouse sensitivity.\n A web version is available at snowball.mobi\n ",
+ "id": "mobi_snowball_Snowball",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0-only",
+ "is_free_license": true,
+ "app_id": "mobi.snowball.Snowball",
+ "icon": "https://dl.flathub.org/media/mobi/snowball/Snowball/b79a14546a22257cca8be2559dbd0c46/icons/128x128/mobi.snowball.Snowball.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame",
+ "KidsGame",
+ "Graphics"
+ ],
+ "developer_name": "James William Fletcher",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "snowball.mobi",
+ "verification_timestamp": "1712053832",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1712163226,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1700216134,
+ "trending": 3.1056505236761502,
+ "installs_last_month": 45,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Parallel Overhead",
+ "keywords": null,
+ "summary": "Endless runner game",
+ "description": "\n\t\tParallel Overhead is a colorful endless runner game where you take control of\n\t\tthe ships Truth and Beauty on a groundbreaking trip through hyperspace. A\n\t\tstable hyperspace tunnel has finally been achieved with the two ships\n\t\tsupporting it on opposite walls of the tunnel. Well, almost stable...\n\t\tIt's up to you to keep the ships from falling through the cracks!\n\t\n ",
+ "id": "net_huitsi_ParallelOverhead",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "MIT AND CC0-1.0",
+ "is_free_license": true,
+ "app_id": "net.huitsi.ParallelOverhead",
+ "icon": "https://dl.flathub.org/media/net/huitsi/ParallelOverhead/929ba74f548444cb4a6aacf5f8ce680c/icons/128x128/net.huitsi.ParallelOverhead.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame"
+ ],
+ "developer_name": "Linus Vanas",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "huitsi.net",
+ "verification_timestamp": "1711658170",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1711707095,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1702298005,
+ "trending": 9.284104014088328,
+ "installs_last_month": 43,
+ "isMobileFriendly": false
+ },
{
"name": "rRootage",
"keywords": [
@@ -28912,150 +29054,8 @@
"aarch64"
],
"added_at": 1537354820,
- "trending": 0.19750463443651833,
- "installs_last_month": 44,
- "isMobileFriendly": false
- },
- {
- "name": "openflap",
- "keywords": null,
- "summary": "A game about bouncing balls through gaps of never-ending pipes",
- "description": "Use spacebar, mouseclick, or joystick button to jump.\n ",
- "id": "io_gitlab_jazztickets_openflap",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-only",
- "is_free_license": true,
- "app_id": "io.gitlab.jazztickets.openflap",
- "icon": "https://dl.flathub.org/media/io/gitlab/jazztickets.openflap/ddbb31e921969a4d6b58ffcbbd05dae1/icons/128x128/io.gitlab.jazztickets.openflap.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": "jazztickets",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "jazztickets",
- "verification_login_provider": "gitlab",
- "verification_login_is_organization": "false",
- "verification_website": null,
- "verification_timestamp": "1686063875",
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1734369208,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1664952513,
- "trending": 2.4862380205995067,
- "installs_last_month": 44,
- "isMobileFriendly": false
- },
- {
- "name": "Snowball",
- "keywords": null,
- "summary": "Novel 3D loop/buzz wire style game",
- "description": "Roll around collecting snow and avoiding trees until your snowball is large enough to continue to the next level.\n The snowball turns green when the next level portals have opened, the portals are located at the north and south poles of the sphere.\n The larger the snowballs you collect higher the score. Gold snow is double the reward of white.\n Picking up snow increases your speed temporarily; the idea is to enter a flow of collecting snow so that your speed stays up.\n Try not to hit the trees as they will slow you down and reduce the mass of your snowball unless your snowball is large enough to consume them. Trees will shrink slightly as you approach them to show that they can be \"consumed\" aka rolled over without a penalty to snowball size, only speed.\n The goal? If you need one: complete each level or a sequence of levels with the highest score in the shortest time. I just play it to get lost in a trance and typically play 10 minute long games.\n The \"any key\" on your keyboard will open the menu, and all the other controls are bound to the mouse:\n Left click to toggle mouse focus, scroll and right click for zoom, X1 and X2 or Mouse 4 and 5 will increment or decrement the mouse sensitivity.\n A web version is available at snowball.mobi\n ",
- "id": "mobi_snowball_Snowball",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0-only",
- "is_free_license": true,
- "app_id": "mobi.snowball.Snowball",
- "icon": "https://dl.flathub.org/media/mobi/snowball/Snowball/b79a14546a22257cca8be2559dbd0c46/icons/128x128/mobi.snowball.Snowball.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame",
- "KidsGame",
- "Graphics"
- ],
- "developer_name": "James William Fletcher",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "snowball.mobi",
- "verification_timestamp": "1712053832",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1712163226,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1700216134,
- "trending": 2.6381400902334216,
- "installs_last_month": 43,
- "isMobileFriendly": false
- },
- {
- "name": "Parallel Overhead",
- "keywords": null,
- "summary": "Endless runner game",
- "description": "\n\t\tParallel Overhead is a colorful endless runner game where you take control of\n\t\tthe ships Truth and Beauty on a groundbreaking trip through hyperspace. A\n\t\tstable hyperspace tunnel has finally been achieved with the two ships\n\t\tsupporting it on opposite walls of the tunnel. Well, almost stable...\n\t\tIt's up to you to keep the ships from falling through the cracks!\n\t\n ",
- "id": "net_huitsi_ParallelOverhead",
- "type": "desktop-application",
- "translations": {},
- "project_license": "MIT AND CC0-1.0",
- "is_free_license": true,
- "app_id": "net.huitsi.ParallelOverhead",
- "icon": "https://dl.flathub.org/media/net/huitsi/ParallelOverhead/929ba74f548444cb4a6aacf5f8ce680c/icons/128x128/net.huitsi.ParallelOverhead.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": "Linus Vanas",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "huitsi.net",
- "verification_timestamp": "1711658170",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1711707095,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1702298005,
- "trending": 14.168391487508709,
- "installs_last_month": 41,
- "isMobileFriendly": false
- },
- {
- "name": "Sky Checkers",
- "keywords": null,
- "summary": "Blast enemies off a stage",
- "description": "Blast off your enemies in a 1-4 multiplayer action packed battle and be the last one standing!Hook up gamepads to add more friends or host/join a game with your friends online (absent of firwall / network restrictions).",
- "id": "net_zgcoder_skycheckers",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0+",
- "is_free_license": true,
- "app_id": "net.zgcoder.skycheckers",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/net.zgcoder.skycheckers.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame"
- ],
- "developer_name": null,
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1694408527,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1589101423,
- "trending": 10.63241094371191,
- "installs_last_month": 37,
+ "trending": -0.08506307788774814,
+ "installs_last_month": 42,
"isMobileFriendly": false
},
{
@@ -29089,8 +29089,8 @@
"aarch64"
],
"added_at": 1540374918,
- "trending": 3.0593593152780167,
- "installs_last_month": 31,
+ "trending": 4.152717415976515,
+ "installs_last_month": 35,
"isMobileFriendly": false
},
{
@@ -29124,8 +29124,8 @@
"aarch64"
],
"added_at": 1650373306,
- "trending": -0.5087596344113949,
- "installs_last_month": 30,
+ "trending": 0.8639425992919931,
+ "installs_last_month": 34,
"isMobileFriendly": false
},
{
@@ -29159,13 +29159,13 @@
"aarch64"
],
"added_at": 1688540006,
- "trending": 0.9333709539935708,
- "installs_last_month": 18,
+ "trending": 0.8554840416939162,
+ "installs_last_month": 16,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 17,
+ "processingTimeMs": 18,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -29407,8 +29407,8 @@
"aarch64"
],
"added_at": 1513117897,
- "trending": 11.232542249597662,
- "installs_last_month": 771,
+ "trending": 13.638168934711649,
+ "installs_last_month": 789,
"isMobileFriendly": false
},
{
@@ -29442,8 +29442,8 @@
"aarch64"
],
"added_at": 1620628026,
- "trending": 11.584083790617973,
- "installs_last_month": 339,
+ "trending": 12.820606618763469,
+ "installs_last_month": 342,
"isMobileFriendly": false
},
{
@@ -29477,13 +29477,13 @@
"aarch64"
],
"added_at": 1493187784,
- "trending": 1.7197891949470732,
- "installs_last_month": 118,
+ "trending": 0.6837053790386393,
+ "installs_last_month": 119,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 2,
+ "processingTimeMs": 3,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -29719,8 +29719,8 @@
"aarch64"
],
"added_at": 1560613434,
- "trending": 14.484654456334024,
- "installs_last_month": 3131,
+ "trending": 14.947363137123872,
+ "installs_last_month": 3132,
"isMobileFriendly": true
},
{
@@ -29940,8 +29940,8 @@
"aarch64"
],
"added_at": 1532336617,
- "trending": 10.415807624456448,
- "installs_last_month": 2345,
+ "trending": 10.662014242566746,
+ "installs_last_month": 2318,
"isMobileFriendly": true
},
{
@@ -30116,8 +30116,8 @@
"aarch64"
],
"added_at": 1663682120,
- "trending": 0.2558444866982763,
- "installs_last_month": 1952,
+ "trending": 2.0151466938273987,
+ "installs_last_month": 1969,
"isMobileFriendly": false
},
{
@@ -30288,8 +30288,8 @@
"aarch64"
],
"added_at": 1711955516,
- "trending": 7.935546090275648,
- "installs_last_month": 731,
+ "trending": 7.977129871873213,
+ "installs_last_month": 733,
"isMobileFriendly": false
},
{
@@ -30329,7 +30329,7 @@
"aarch64"
],
"added_at": 1726471409,
- "trending": 14.919976572429531,
+ "trending": 14.148527063484927,
"installs_last_month": 634,
"isMobileFriendly": true
},
@@ -30503,8 +30503,8 @@
"aarch64"
],
"added_at": 1653288638,
- "trending": 9.019570876013542,
- "installs_last_month": 540,
+ "trending": 10.167751358508928,
+ "installs_last_month": 535,
"isMobileFriendly": false
},
{
@@ -30543,8 +30543,8 @@
"aarch64"
],
"added_at": 1673596234,
- "trending": 6.830373819679719,
- "installs_last_month": 515,
+ "trending": 9.478173392335188,
+ "installs_last_month": 503,
"isMobileFriendly": false
},
{
@@ -30582,8 +30582,8 @@
"aarch64"
],
"added_at": 1524771520,
- "trending": 0.7446419139817442,
- "installs_last_month": 448,
+ "trending": 1.3896586927074757,
+ "installs_last_month": 441,
"isMobileFriendly": false
},
{
@@ -30744,8 +30744,8 @@
"aarch64"
],
"added_at": 1691058689,
- "trending": 1.5038415594190369,
- "installs_last_month": 432,
+ "trending": 2.0834275068425225,
+ "installs_last_month": 435,
"isMobileFriendly": false
},
{
@@ -30927,8 +30927,8 @@
"aarch64"
],
"added_at": 1569579234,
- "trending": 10.73344880347771,
- "installs_last_month": 404,
+ "trending": 10.844881269544956,
+ "installs_last_month": 396,
"isMobileFriendly": false
},
{
@@ -31100,8 +31100,8 @@
"aarch64"
],
"added_at": 1535053065,
- "trending": 10.59946097957028,
- "installs_last_month": 326,
+ "trending": 7.8060551674179965,
+ "installs_last_month": 317,
"isMobileFriendly": false
},
{
@@ -31134,8 +31134,46 @@
"x86_64"
],
"added_at": 1588414708,
- "trending": 1.5851458086964525,
- "installs_last_month": 290,
+ "trending": 1.8270514540245144,
+ "installs_last_month": 294,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "ScidvsPC",
+ "keywords": [
+ "chess",
+ "games"
+ ],
+ "summary": "Chess Toolkit",
+ "description": "Chess GUI with the ability to run detailed chess analysis, \n to create and query huge databases, to play on-line with FICS\n and against computer opponents, and to manage computer tournaments. \n\t\t\n ",
+ "id": "net_sourceforge_scidvspc_scidvspc",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0",
+ "is_free_license": true,
+ "app_id": "net.sourceforge.scidvspc.scidvspc",
+ "icon": "https://dl.flathub.org/media/net/sourceforge/scidvspc.scidvspc/4331661bea0b547d4dd87e69aea9002a/icons/128x128/net.sourceforge.scidvspc.scidvspc.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "BoardGame"
+ ],
+ "developer_name": "scidvspc",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1739678860,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1716271271,
+ "trending": 5.684043714012444,
+ "installs_last_month": 279,
"isMobileFriendly": false
},
{
@@ -31297,80 +31335,8 @@
"aarch64"
],
"added_at": 1728978397,
- "trending": 13.42197241443512,
- "installs_last_month": 276,
- "isMobileFriendly": false
- },
- {
- "name": "ScidvsPC",
- "keywords": [
- "chess",
- "games"
- ],
- "summary": "Chess Toolkit",
- "description": "Chess GUI with the ability to run detailed chess analysis, \n to create and query huge databases, to play on-line with FICS\n and against computer opponents, and to manage computer tournaments. \n\t\t\n ",
- "id": "net_sourceforge_scidvspc_scidvspc",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0",
- "is_free_license": true,
- "app_id": "net.sourceforge.scidvspc.scidvspc",
- "icon": "https://dl.flathub.org/media/net/sourceforge/scidvspc.scidvspc/4331661bea0b547d4dd87e69aea9002a/icons/128x128/net.sourceforge.scidvspc.scidvspc.png",
- "main_categories": "game",
- "sub_categories": [
- "BoardGame"
- ],
- "developer_name": "scidvspc",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1739678860,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1716271271,
- "trending": 6.457496840283873,
- "installs_last_month": 270,
- "isMobileFriendly": false
- },
- {
- "name": "Tabletop Club",
- "keywords": null,
- "summary": "Play board games in a 3D sandbox",
- "description": "\n In Tabletop Club, you are given a box of toys to play with, and it's up to you what you do with them! Sure, you can play board games, but why not make a house made of dice, then frisbee it with a poker chip? Draw on the table while waiting for your opponent to make a move in chess, or flip the table into deep space after losing an all-in bet? The table is your oyster!\n \n \n You can play online with friends in the click of a button, no login or sign-up required! Simply host a game, and share the room code with your friends. You can also play singleplayer, with no internet connection required.\n \n \n Do you have a D&D campaign in mind? Want to command an army in Warhammer? Or is there another board game you want to play? Luckily, the game uses a modular and easy-to-use asset pack system that makes it really quick to import your images, models, music, and more!\n \n \n The game is completely free to play, and the source code is available on GitHub!\n \n \n You can also help contribute to the game! From submitting code and assets, to suggesting ideas, translating the project, or even finding bugs, there's a lot of ways that you can help make the game better and more accessible.\n \n ",
- "id": "net_tabletopclub_TabletopClub",
- "type": "desktop-application",
- "translations": {},
- "project_license": "MIT",
- "is_free_license": true,
- "app_id": "net.tabletopclub.TabletopClub",
- "icon": "https://dl.flathub.org/media/net/tabletopclub/TabletopClub/091615738f728d4cfc65b36b6992c459/icons/128x128/net.tabletopclub.TabletopClub.png",
- "main_categories": "game",
- "sub_categories": [
- "BoardGame"
- ],
- "developer_name": "Benjamin Beddows",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "tabletopclub.net",
- "verification_timestamp": "1723206362",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1725466706,
- "arches": [
- "x86_64"
- ],
- "added_at": 1723197944,
- "trending": 9.53780223865188,
- "installs_last_month": 263,
+ "trending": 13.474769574047295,
+ "installs_last_month": 274,
"isMobileFriendly": false
},
{
@@ -31549,8 +31515,42 @@
"aarch64"
],
"added_at": 1653888962,
- "trending": 12.631276816825888,
- "installs_last_month": 261,
+ "trending": 10.237956492279478,
+ "installs_last_month": 267,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Tabletop Club",
+ "keywords": null,
+ "summary": "Play board games in a 3D sandbox",
+ "description": "\n In Tabletop Club, you are given a box of toys to play with, and it's up to you what you do with them! Sure, you can play board games, but why not make a house made of dice, then frisbee it with a poker chip? Draw on the table while waiting for your opponent to make a move in chess, or flip the table into deep space after losing an all-in bet? The table is your oyster!\n \n \n You can play online with friends in the click of a button, no login or sign-up required! Simply host a game, and share the room code with your friends. You can also play singleplayer, with no internet connection required.\n \n \n Do you have a D&D campaign in mind? Want to command an army in Warhammer? Or is there another board game you want to play? Luckily, the game uses a modular and easy-to-use asset pack system that makes it really quick to import your images, models, music, and more!\n \n \n The game is completely free to play, and the source code is available on GitHub!\n \n \n You can also help contribute to the game! From submitting code and assets, to suggesting ideas, translating the project, or even finding bugs, there's a lot of ways that you can help make the game better and more accessible.\n \n ",
+ "id": "net_tabletopclub_TabletopClub",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "MIT",
+ "is_free_license": true,
+ "app_id": "net.tabletopclub.TabletopClub",
+ "icon": "https://dl.flathub.org/media/net/tabletopclub/TabletopClub/091615738f728d4cfc65b36b6992c459/icons/128x128/net.tabletopclub.TabletopClub.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "BoardGame"
+ ],
+ "developer_name": "Benjamin Beddows",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "tabletopclub.net",
+ "verification_timestamp": "1723206362",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1725466706,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1723197944,
+ "trending": 12.750172112353583,
+ "installs_last_month": 259,
"isMobileFriendly": false
},
{
@@ -31733,8 +31733,8 @@
"aarch64"
],
"added_at": 1611777475,
- "trending": 10.64631336755182,
- "installs_last_month": 233,
+ "trending": 9.861472761805189,
+ "installs_last_month": 234,
"isMobileFriendly": false
},
{
@@ -31901,8 +31901,8 @@
"aarch64"
],
"added_at": 1645738810,
- "trending": 2.5213586696770287,
- "installs_last_month": 179,
+ "trending": 1.1744466312442865,
+ "installs_last_month": 186,
"isMobileFriendly": false
},
{
@@ -32074,8 +32074,8 @@
"aarch64"
],
"added_at": 1646828622,
- "trending": 6.8507582798828315,
- "installs_last_month": 160,
+ "trending": 7.241667753330722,
+ "installs_last_month": 155,
"isMobileFriendly": false
},
{
@@ -32139,10 +32139,55 @@
"aarch64"
],
"added_at": 1652692328,
- "trending": 13.314718579117024,
- "installs_last_month": 145,
+ "trending": 13.53652857885644,
+ "installs_last_month": 147,
"isMobileFriendly": true
},
+ {
+ "name": "Zatikon",
+ "keywords": [
+ "strategy",
+ "simulation",
+ "board",
+ "tiles",
+ "multiplayer",
+ "chess",
+ "zatikon",
+ "turn-based"
+ ],
+ "summary": "Chess-like, fantasy game of conquering the enemy's castle",
+ "description": "\n Chess with less complex movement, and instead with:\n \n \n new, engaging rules\n tons of pieces to choose from\n army-building metagame\n magic!\n \n \n Zatikon offers online and local gameplay, so there's something in it for every kind of player!\n \n ",
+ "id": "com_chroniclogic_Zatikon",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "AGPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "com.chroniclogic.Zatikon",
+ "icon": "https://dl.flathub.org/media/com/chroniclogic/Zatikon/170c43c7bc84e08826c829fdabbae562/icons/128x128/com.chroniclogic.Zatikon.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "StrategyGame",
+ "BoardGame"
+ ],
+ "developer_name": "ChronicLogic",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "chroniclogic.com",
+ "verification_timestamp": "1690218915",
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1740100463,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1690213555,
+ "trending": 9.27145224489576,
+ "installs_last_month": 134,
+ "isMobileFriendly": false
+ },
{
"name": "Peg-E",
"keywords": [
@@ -32253,8 +32298,8 @@
"aarch64"
],
"added_at": 1529734045,
- "trending": 9.370206724436343,
- "installs_last_month": 135,
+ "trending": 11.203635206147329,
+ "installs_last_month": 129,
"isMobileFriendly": false
},
{
@@ -32424,53 +32469,8 @@
"aarch64"
],
"added_at": 1536053954,
- "trending": 12.006087025844762,
- "installs_last_month": 129,
- "isMobileFriendly": false
- },
- {
- "name": "Zatikon",
- "keywords": [
- "strategy",
- "simulation",
- "board",
- "tiles",
- "multiplayer",
- "chess",
- "zatikon",
- "turn-based"
- ],
- "summary": "Chess-like, fantasy game of conquering the enemy's castle",
- "description": "\n Chess with less complex movement, and instead with:\n \n \n new, engaging rules\n tons of pieces to choose from\n army-building metagame\n magic!\n \n \n Zatikon offers online and local gameplay, so there's something in it for every kind of player!\n \n ",
- "id": "com_chroniclogic_Zatikon",
- "type": "desktop-application",
- "translations": {},
- "project_license": "AGPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "com.chroniclogic.Zatikon",
- "icon": "https://dl.flathub.org/media/com/chroniclogic/Zatikon/170c43c7bc84e08826c829fdabbae562/icons/128x128/com.chroniclogic.Zatikon.png",
- "main_categories": "game",
- "sub_categories": [
- "StrategyGame",
- "BoardGame"
- ],
- "developer_name": "ChronicLogic",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "chroniclogic.com",
- "verification_timestamp": "1690218915",
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1740100463,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1690213555,
- "trending": 13.400098872168902,
- "installs_last_month": 129,
+ "trending": 9.250212153760868,
+ "installs_last_month": 127,
"isMobileFriendly": false
},
{
@@ -32503,8 +32503,8 @@
"x86_64"
],
"added_at": 1654498822,
- "trending": 8.587806199467485,
- "installs_last_month": 120,
+ "trending": 4.398082017310662,
+ "installs_last_month": 122,
"isMobileFriendly": false
},
{
@@ -32547,8 +32547,8 @@
"aarch64"
],
"added_at": 1675254821,
- "trending": 0.2728427324200702,
- "installs_last_month": 93,
+ "trending": 2.5517068871595785,
+ "installs_last_month": 97,
"isMobileFriendly": false
},
{
@@ -32726,7 +32726,7 @@
"aarch64"
],
"added_at": 1613310902,
- "trending": 7.547549459542019,
+ "trending": 10.230639418557242,
"installs_last_month": 90,
"isMobileFriendly": false
},
@@ -32761,13 +32761,13 @@
"aarch64"
],
"added_at": 1522172135,
- "trending": -0.8484956250261042,
- "installs_last_month": 37,
+ "trending": 2.8720756784868913,
+ "installs_last_month": 39,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 8,
+ "processingTimeMs": 10,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -33019,8 +33019,8 @@
"aarch64"
],
"added_at": 1513163254,
- "trending": 10.623352410516436,
- "installs_last_month": 6270,
+ "trending": 10.169402876936974,
+ "installs_last_month": 6268,
"isMobileFriendly": false
},
{
@@ -33201,8 +33201,8 @@
"aarch64"
],
"added_at": 1578906492,
- "trending": 10.102143304236977,
- "installs_last_month": 4821,
+ "trending": 8.607116743753297,
+ "installs_last_month": 4827,
"isMobileFriendly": false
},
{
@@ -33241,8 +33241,8 @@
"aarch64"
],
"added_at": 1665473510,
- "trending": 7.1760173005268495,
- "installs_last_month": 1705,
+ "trending": 8.766134356872714,
+ "installs_last_month": 1734,
"isMobileFriendly": false
},
{
@@ -33276,8 +33276,8 @@
"aarch64"
],
"added_at": 1715583133,
- "trending": 7.782660430993863,
- "installs_last_month": 647,
+ "trending": 8.321984237211797,
+ "installs_last_month": 633,
"isMobileFriendly": false
},
{
@@ -33314,8 +33314,8 @@
"aarch64"
],
"added_at": 1508229221,
- "trending": 3.3158572275722102,
- "installs_last_month": 549,
+ "trending": 1.738052030262143,
+ "installs_last_month": 552,
"isMobileFriendly": false
},
{
@@ -33551,8 +33551,8 @@
"aarch64"
],
"added_at": 1556260826,
- "trending": 12.793217712618706,
- "installs_last_month": 205,
+ "trending": 15.86877383822133,
+ "installs_last_month": 198,
"isMobileFriendly": false
},
{
@@ -33723,8 +33723,8 @@
"aarch64"
],
"added_at": 1663217129,
- "trending": 0.14230226301927829,
- "installs_last_month": 162,
+ "trending": 1.4427471549096802,
+ "installs_last_month": 169,
"isMobileFriendly": false
},
{
@@ -33762,13 +33762,13 @@
"aarch64"
],
"added_at": 1630527380,
- "trending": 0.5220090970593491,
+ "trending": 0.6196759094457304,
"installs_last_month": 35,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 4,
+ "processingTimeMs": 3,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -33816,8 +33816,8 @@
"aarch64"
],
"added_at": 1498226331,
- "trending": 8.200862966895484,
- "installs_last_month": 68078,
+ "trending": 7.536665814351391,
+ "installs_last_month": 68281,
"isMobileFriendly": false
},
{
@@ -33851,8 +33851,8 @@
"aarch64"
],
"added_at": 1491928957,
- "trending": 9.498808893732214,
- "installs_last_month": 65274,
+ "trending": 8.90838981713697,
+ "installs_last_month": 65513,
"isMobileFriendly": false
},
{
@@ -33903,8 +33903,8 @@
"aarch64"
],
"added_at": 1491928843,
- "trending": 8.676884244281256,
- "installs_last_month": 61291,
+ "trending": 7.548988034858122,
+ "installs_last_month": 61469,
"isMobileFriendly": false
},
{
@@ -33938,8 +33938,8 @@
"aarch64"
],
"added_at": 1620628900,
- "trending": 9.458415205347611,
- "installs_last_month": 60700,
+ "trending": 8.99556692210057,
+ "installs_last_month": 60804,
"isMobileFriendly": false
},
{
@@ -33979,8 +33979,8 @@
"aarch64"
],
"added_at": 1605534288,
- "trending": 13.724519889622526,
- "installs_last_month": 52755,
+ "trending": 13.202302612251929,
+ "installs_last_month": 52918,
"isMobileFriendly": false
},
{
@@ -34014,8 +34014,8 @@
"aarch64"
],
"added_at": 1633422876,
- "trending": 12.025291987111803,
- "installs_last_month": 52503,
+ "trending": 11.963401278528638,
+ "installs_last_month": 52591,
"isMobileFriendly": false
},
{
@@ -34050,8 +34050,8 @@
"aarch64"
],
"added_at": 1692740328,
- "trending": 5.998307581411801,
- "installs_last_month": 46530,
+ "trending": 5.3838501519662225,
+ "installs_last_month": 46692,
"isMobileFriendly": false
},
{
@@ -34085,8 +34085,8 @@
"aarch64"
],
"added_at": 1648060363,
- "trending": 6.199348567546892,
- "installs_last_month": 45929,
+ "trending": 5.543195294868028,
+ "installs_last_month": 46129,
"isMobileFriendly": false
},
{
@@ -34122,8 +34122,8 @@
"x86_64"
],
"added_at": 1505359219,
- "trending": 6.077263075396806,
- "installs_last_month": 14031,
+ "trending": 6.158783045048102,
+ "installs_last_month": 13967,
"isMobileFriendly": false
},
{
@@ -34161,8 +34161,8 @@
"aarch64"
],
"added_at": 1642853336,
- "trending": 6.378965359398417,
- "installs_last_month": 10991,
+ "trending": 5.383924376523713,
+ "installs_last_month": 11012,
"isMobileFriendly": false
},
{
@@ -34209,8 +34209,8 @@
"x86_64"
],
"added_at": 1657091693,
- "trending": 8.449031545437647,
- "installs_last_month": 10338,
+ "trending": 7.270360873500643,
+ "installs_last_month": 10392,
"isMobileFriendly": false
},
{
@@ -34244,8 +34244,8 @@
"aarch64"
],
"added_at": 1618816620,
- "trending": 8.58660272160892,
- "installs_last_month": 9810,
+ "trending": 9.091292074325596,
+ "installs_last_month": 9849,
"isMobileFriendly": false
},
{
@@ -34283,8 +34283,8 @@
"aarch64"
],
"added_at": 1737948437,
- "trending": 7.109315655095713,
- "installs_last_month": 9462,
+ "trending": 6.523988379073256,
+ "installs_last_month": 9504,
"isMobileFriendly": false
},
{
@@ -34321,8 +34321,8 @@
"x86_64"
],
"added_at": 1698070388,
- "trending": 7.371395746124873,
- "installs_last_month": 7494,
+ "trending": 8.15885036628234,
+ "installs_last_month": 7513,
"isMobileFriendly": false
},
{
@@ -34357,8 +34357,8 @@
"aarch64"
],
"added_at": 1659507908,
- "trending": 8.296534493642183,
- "installs_last_month": 6962,
+ "trending": 6.699443487515757,
+ "installs_last_month": 7041,
"isMobileFriendly": false
},
{
@@ -34399,8 +34399,8 @@
"x86_64"
],
"added_at": 1594584720,
- "trending": 8.104382806405875,
- "installs_last_month": 6182,
+ "trending": 6.9108504527277015,
+ "installs_last_month": 6160,
"isMobileFriendly": false
},
{
@@ -34437,43 +34437,8 @@
"aarch64"
],
"added_at": 1712524200,
- "trending": 12.463887060840555,
- "installs_last_month": 5492,
- "isMobileFriendly": false
- },
- {
- "name": "Snes9x",
- "keywords": null,
- "summary": "A Super Nintendo emulator",
- "description": "Snes9x is a portable, freeware Super Nintendo Entertainment System (SNES) emulator. It basically allows you to play most games designed for the SNES and Super Famicom Nintendo game systems on your PC or Workstation; which includes some real gems that were only ever released in Japan.\n ",
- "id": "com_snes9x_Snes9x",
- "type": "desktop-application",
- "translations": {},
- "project_license": "LicenseRef-proprietary=https://raw.githubusercontent.com/snes9xgit/snes9x/master/docs/snes9x-license.txt AND LGPL-2.1",
- "is_free_license": false,
- "app_id": "com.snes9x.Snes9x",
- "icon": "https://dl.flathub.org/media/com/snes9x/Snes9x/f3817290a4e5ec502fac6f387e97a57c/icons/128x128/com.snes9x.Snes9x.png",
- "main_categories": "game",
- "sub_categories": [
- "Emulator"
- ],
- "developer_name": "Snes9x",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1729276291,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1505402629,
- "trending": 7.242586573400105,
- "installs_last_month": 5276,
+ "trending": 10.5825263549816,
+ "installs_last_month": 5479,
"isMobileFriendly": false
},
{
@@ -34517,8 +34482,43 @@
"aarch64"
],
"added_at": 1494252581,
- "trending": 9.847215789571749,
- "installs_last_month": 5256,
+ "trending": 11.20948360081844,
+ "installs_last_month": 5260,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Snes9x",
+ "keywords": null,
+ "summary": "A Super Nintendo emulator",
+ "description": "Snes9x is a portable, freeware Super Nintendo Entertainment System (SNES) emulator. It basically allows you to play most games designed for the SNES and Super Famicom Nintendo game systems on your PC or Workstation; which includes some real gems that were only ever released in Japan.\n ",
+ "id": "com_snes9x_Snes9x",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "LicenseRef-proprietary=https://raw.githubusercontent.com/snes9xgit/snes9x/master/docs/snes9x-license.txt AND LGPL-2.1",
+ "is_free_license": false,
+ "app_id": "com.snes9x.Snes9x",
+ "icon": "https://dl.flathub.org/media/com/snes9x/Snes9x/f3817290a4e5ec502fac6f387e97a57c/icons/128x128/com.snes9x.Snes9x.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "Emulator"
+ ],
+ "developer_name": "Snes9x",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1729276291,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1505402629,
+ "trending": 7.587333821198255,
+ "installs_last_month": 5247,
"isMobileFriendly": false
},
{
@@ -34586,8 +34586,8 @@
"x86_64"
],
"added_at": 1679760631,
- "trending": 7.43109941183731,
- "installs_last_month": 4705,
+ "trending": 8.21197254837685,
+ "installs_last_month": 4675,
"isMobileFriendly": false
},
{
@@ -34627,8 +34627,8 @@
"aarch64"
],
"added_at": 1700646098,
- "trending": 10.6094409285594,
- "installs_last_month": 3878,
+ "trending": 10.167138326011948,
+ "installs_last_month": 3869,
"isMobileFriendly": false
},
{
@@ -34667,7 +34667,7 @@
"aarch64"
],
"added_at": 1601623590,
- "trending": 10.35506586518482,
+ "trending": 9.841169131529476,
"installs_last_month": 3490,
"isMobileFriendly": false
},
@@ -34734,8 +34734,8 @@
"x86_64"
],
"added_at": 1650370749,
- "trending": 5.564945051653613,
- "installs_last_month": 3097,
+ "trending": 6.467273262451971,
+ "installs_last_month": 3094,
"isMobileFriendly": false
},
{
@@ -34776,8 +34776,8 @@
"aarch64"
],
"added_at": 1662102776,
- "trending": 10.556874490102969,
- "installs_last_month": 2639,
+ "trending": 9.967105557548123,
+ "installs_last_month": 2623,
"isMobileFriendly": false
},
{
@@ -34810,8 +34810,8 @@
"x86_64"
],
"added_at": 1681453622,
- "trending": 7.460778242787713,
- "installs_last_month": 2312,
+ "trending": 5.623053107565543,
+ "installs_last_month": 2300,
"isMobileFriendly": false
},
{
@@ -34852,8 +34852,8 @@
"aarch64"
],
"added_at": 1703234864,
- "trending": 5.034115366316353,
- "installs_last_month": 2152,
+ "trending": 3.474934747008159,
+ "installs_last_month": 2165,
"isMobileFriendly": false
},
{
@@ -34887,43 +34887,8 @@
"aarch64"
],
"added_at": 1604505844,
- "trending": 6.988379318446315,
- "installs_last_month": 2017,
- "isMobileFriendly": false
- },
- {
- "name": "bsnes",
- "keywords": null,
- "summary": "Super Nintendo emulator",
- "description": "bsnes is a Super Nintendo (SNES) emulator focused on performance, features, and ease of use.Unique features of bsnes:True Super Game Boy emulation (using the SameBoy core by Lior Halphon)HD mode 7 graphics (by DerKoun) with optional supersamplingLow-level emulation of all SNES coprocessorsMulti-threaded PPU graphics rendererSpeed mode settings which retain smooth audio outputBuilt-in games database with over 1,200 game entriesBuilt-in cheat code database (by mightymo) with hundreds of game entriesBuilt-in save state manager with screenshot previews and naming capabilitiesCustomizable game mappings to support any game cartridges, including prototypes7-zip decompression supportExtensive Satellaview emulation, including BS Memory flash write and wear-leveling supportOptional higan game folder support (standard game ROM files are also supported!)Advanced mapping system allowing multiple bindings to every emulated inputStandard features of bsnes:MSU1 supportBPS and IPS soft-patching supportSave states with undo and redo support (for reverting accidental saves and loads)OpenGL multi-pass pixel shadersSeveral built-in software filters, including HQ2x (by MaxSt) and snes_ntsc (by blargg)Adaptive sync and dynamic rate control for perfect audio/video synchronizationJust-in-time input polling for minimal input latencyRun-ahead support for removing internal game engine input latencySupport for Direct3D exclusive mode videoSupport for WASAPI and ASIO exclusive mode audioPeriodic auto-saving of game savesAuto-saves of states when unloading games, and auto-resuming when reloading gamesSprite limit disable supportCubic audio interpolation supportDeinterlacing supportOptional high-level emulation of most SNES coprocessorsOptional emulation of flaws in older emulators for compatibility with older, unofficial softwareCPU, SA1, and SuperFX overclocking supportFrame advance supportCheat code search supportMovie recording and playback supportRewind supportHiDPI monitor supportMulti-monitor supportTurbo support for controller inputs",
- "id": "dev_bsnes_bsnes",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0",
- "is_free_license": true,
- "app_id": "dev.bsnes.bsnes",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/dev.bsnes.bsnes.png",
- "main_categories": "game",
- "sub_categories": [
- "Emulator"
- ],
- "developer_name": "bsnes team",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/22.08",
- "updated_at": 1693891633,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1630872859,
- "trending": 7.312978704039661,
- "installs_last_month": 1457,
+ "trending": 6.648653859836504,
+ "installs_last_month": 2031,
"isMobileFriendly": false
},
{
@@ -34972,8 +34937,43 @@
"x86_64"
],
"added_at": 1646586742,
- "trending": 10.939104053658191,
- "installs_last_month": 1448,
+ "trending": 10.663202574526323,
+ "installs_last_month": 1445,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "bsnes",
+ "keywords": null,
+ "summary": "Super Nintendo emulator",
+ "description": "bsnes is a Super Nintendo (SNES) emulator focused on performance, features, and ease of use.Unique features of bsnes:True Super Game Boy emulation (using the SameBoy core by Lior Halphon)HD mode 7 graphics (by DerKoun) with optional supersamplingLow-level emulation of all SNES coprocessorsMulti-threaded PPU graphics rendererSpeed mode settings which retain smooth audio outputBuilt-in games database with over 1,200 game entriesBuilt-in cheat code database (by mightymo) with hundreds of game entriesBuilt-in save state manager with screenshot previews and naming capabilitiesCustomizable game mappings to support any game cartridges, including prototypes7-zip decompression supportExtensive Satellaview emulation, including BS Memory flash write and wear-leveling supportOptional higan game folder support (standard game ROM files are also supported!)Advanced mapping system allowing multiple bindings to every emulated inputStandard features of bsnes:MSU1 supportBPS and IPS soft-patching supportSave states with undo and redo support (for reverting accidental saves and loads)OpenGL multi-pass pixel shadersSeveral built-in software filters, including HQ2x (by MaxSt) and snes_ntsc (by blargg)Adaptive sync and dynamic rate control for perfect audio/video synchronizationJust-in-time input polling for minimal input latencyRun-ahead support for removing internal game engine input latencySupport for Direct3D exclusive mode videoSupport for WASAPI and ASIO exclusive mode audioPeriodic auto-saving of game savesAuto-saves of states when unloading games, and auto-resuming when reloading gamesSprite limit disable supportCubic audio interpolation supportDeinterlacing supportOptional high-level emulation of most SNES coprocessorsOptional emulation of flaws in older emulators for compatibility with older, unofficial softwareCPU, SA1, and SuperFX overclocking supportFrame advance supportCheat code search supportMovie recording and playback supportRewind supportHiDPI monitor supportMulti-monitor supportTurbo support for controller inputs",
+ "id": "dev_bsnes_bsnes",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0",
+ "is_free_license": true,
+ "app_id": "dev.bsnes.bsnes",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/dev.bsnes.bsnes.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "Emulator"
+ ],
+ "developer_name": "bsnes team",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/22.08",
+ "updated_at": 1693891633,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1630872859,
+ "trending": 9.108178930583271,
+ "installs_last_month": 1430,
"isMobileFriendly": false
},
{
@@ -35007,8 +35007,8 @@
"x86_64"
],
"added_at": 1601454790,
- "trending": 7.740007292567639,
- "installs_last_month": 1347,
+ "trending": 7.950810594584819,
+ "installs_last_month": 1368,
"isMobileFriendly": false
},
{
@@ -35042,8 +35042,8 @@
"aarch64"
],
"added_at": 1505411732,
- "trending": 6.505914671356546,
- "installs_last_month": 1308,
+ "trending": 6.561992943996436,
+ "installs_last_month": 1297,
"isMobileFriendly": false
},
{
@@ -35084,8 +35084,8 @@
"aarch64"
],
"added_at": 1519631020,
- "trending": 7.461797163000329,
- "installs_last_month": 1166,
+ "trending": 7.889173497326373,
+ "installs_last_month": 1168,
"isMobileFriendly": false
},
{
@@ -35119,8 +35119,8 @@
"aarch64"
],
"added_at": 1699946368,
- "trending": 4.940654573407987,
- "installs_last_month": 1154,
+ "trending": 6.910389075510879,
+ "installs_last_month": 1137,
"isMobileFriendly": false
},
{
@@ -35161,8 +35161,8 @@
"aarch64"
],
"added_at": 1699222132,
- "trending": 4.623043832387715,
- "installs_last_month": 1077,
+ "trending": 4.977091432298159,
+ "installs_last_month": 1069,
"isMobileFriendly": false
},
{
@@ -35196,8 +35196,43 @@
"aarch64"
],
"added_at": 1630765723,
- "trending": 5.390866026690817,
- "installs_last_month": 912,
+ "trending": 6.174715879698829,
+ "installs_last_month": 904,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Mednaffe",
+ "keywords": null,
+ "summary": "A front-end (GUI) for mednafen emulator (included)",
+ "description": "Mednaffe is a front-end (GUI) for mednafen emulator which is a portable argument(command-line)-driven multi-system emulator\n The following systems are supported:\n \n Atari Lynx\n Neo Geo Pocket (Color)\n WonderSwan\n GameBoy (Color)\n GameBoy Advance\n Nintendo Entertainment System\n Super Nintendo Entertainment System/Super Famicom\n Virtual Boy\n PC Engine/TurboGrafx 16 (CD)\n SuperGrafx\n PC-FX\n Sega Game Gear\n Sega Genesis/Megadrive\n Sega Master System\n Sega Saturn (experimental, x86_64 only)\n Sony PlayStation\n \n ",
+ "id": "com_github_AmatCoder_mednaffe",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0+ and GPL-2.0+",
+ "is_free_license": true,
+ "app_id": "com.github.AmatCoder.mednaffe",
+ "icon": "https://dl.flathub.org/media/com/github/AmatCoder.mednaffe/64b78fc7a89e8d9c1c37fee70032891a/icons/128x128/com.github.AmatCoder.mednaffe.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "Emulator"
+ ],
+ "developer_name": "AmatCoder",
+ "verification_verified": true,
+ "verification_method": "login_provider",
+ "verification_login_name": "AmatCoder",
+ "verification_login_provider": "github",
+ "verification_login_is_organization": "true",
+ "verification_website": null,
+ "verification_timestamp": "1705982691",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1713081686,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1622317853,
+ "trending": 6.189018996780677,
+ "installs_last_month": 889,
"isMobileFriendly": false
},
{
@@ -35240,43 +35275,8 @@
"x86_64"
],
"added_at": 1563392544,
- "trending": 9.375271546852488,
- "installs_last_month": 880,
- "isMobileFriendly": false
- },
- {
- "name": "Mednaffe",
- "keywords": null,
- "summary": "A front-end (GUI) for mednafen emulator (included)",
- "description": "Mednaffe is a front-end (GUI) for mednafen emulator which is a portable argument(command-line)-driven multi-system emulator\n The following systems are supported:\n \n Atari Lynx\n Neo Geo Pocket (Color)\n WonderSwan\n GameBoy (Color)\n GameBoy Advance\n Nintendo Entertainment System\n Super Nintendo Entertainment System/Super Famicom\n Virtual Boy\n PC Engine/TurboGrafx 16 (CD)\n SuperGrafx\n PC-FX\n Sega Game Gear\n Sega Genesis/Megadrive\n Sega Master System\n Sega Saturn (experimental, x86_64 only)\n Sony PlayStation\n \n ",
- "id": "com_github_AmatCoder_mednaffe",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0+ and GPL-2.0+",
- "is_free_license": true,
- "app_id": "com.github.AmatCoder.mednaffe",
- "icon": "https://dl.flathub.org/media/com/github/AmatCoder.mednaffe/64b78fc7a89e8d9c1c37fee70032891a/icons/128x128/com.github.AmatCoder.mednaffe.png",
- "main_categories": "game",
- "sub_categories": [
- "Emulator"
- ],
- "developer_name": "AmatCoder",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "AmatCoder",
- "verification_login_provider": "github",
- "verification_login_is_organization": "true",
- "verification_website": null,
- "verification_timestamp": "1705982691",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1713081686,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1622317853,
- "trending": 3.2678229493424062,
- "installs_last_month": 871,
+ "trending": 8.989970879399737,
+ "installs_last_month": 875,
"isMobileFriendly": false
},
{
@@ -35310,8 +35310,47 @@
"aarch64"
],
"added_at": 1649313894,
- "trending": 7.029182903508218,
- "installs_last_month": 797,
+ "trending": 7.815517742014027,
+ "installs_last_month": 798,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "M64Py",
+ "keywords": [
+ "Emulator",
+ "Nintendo64",
+ "Mupen64plus"
+ ],
+ "summary": "A frontend for Mupen64Plus",
+ "description": "A Qt6 front-end (GUI) for Mupen64Plus, a cross-platform plugin-based Nintendo 64 emulator.\n ",
+ "id": "net_sourceforge_m64py_M64Py",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3",
+ "is_free_license": true,
+ "app_id": "net.sourceforge.m64py.M64Py",
+ "icon": "https://dl.flathub.org/media/net/sourceforge/m64py.M64Py/95503e0e7abb78789acbfa43f6a3ef42/icons/128x128/net.sourceforge.m64py.M64Py.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "Emulator"
+ ],
+ "developer_name": "Milan Nikolic",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "m64py.sourceforge.io",
+ "verification_timestamp": "1729580498",
+ "runtime": "org.kde.Platform/x86_64/6.7",
+ "updated_at": 1729759270,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1729578389,
+ "trending": 2.3174132807887187,
+ "installs_last_month": 744,
"isMobileFriendly": false
},
{
@@ -35351,47 +35390,8 @@
"aarch64"
],
"added_at": 1661808441,
- "trending": 8.381289551026677,
- "installs_last_month": 756,
- "isMobileFriendly": false
- },
- {
- "name": "M64Py",
- "keywords": [
- "Emulator",
- "Nintendo64",
- "Mupen64plus"
- ],
- "summary": "A frontend for Mupen64Plus",
- "description": "A Qt6 front-end (GUI) for Mupen64Plus, a cross-platform plugin-based Nintendo 64 emulator.\n ",
- "id": "net_sourceforge_m64py_M64Py",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3",
- "is_free_license": true,
- "app_id": "net.sourceforge.m64py.M64Py",
- "icon": "https://dl.flathub.org/media/net/sourceforge/m64py.M64Py/95503e0e7abb78789acbfa43f6a3ef42/icons/128x128/net.sourceforge.m64py.M64Py.png",
- "main_categories": "game",
- "sub_categories": [
- "Emulator"
- ],
- "developer_name": "Milan Nikolic",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "m64py.sourceforge.io",
- "verification_timestamp": "1729580498",
- "runtime": "org.kde.Platform/x86_64/6.7",
- "updated_at": 1729759270,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1729578389,
- "trending": 3.499751401284368,
- "installs_last_month": 748,
+ "trending": 8.953609831219728,
+ "installs_last_month": 740,
"isMobileFriendly": false
},
{
@@ -35430,8 +35430,8 @@
"aarch64"
],
"added_at": 1728283117,
- "trending": 2.9899714248463343,
- "installs_last_month": 695,
+ "trending": 1.6409861835053838,
+ "installs_last_month": 699,
"isMobileFriendly": false
},
{
@@ -35465,8 +35465,8 @@
"x86_64"
],
"added_at": 1672954340,
- "trending": -1.484072251904643,
- "installs_last_month": 629,
+ "trending": 2.6411222888810135,
+ "installs_last_month": 615,
"isMobileFriendly": false
},
{
@@ -35500,8 +35500,8 @@
"aarch64"
],
"added_at": 1660117784,
- "trending": 1.3403338250812424,
- "installs_last_month": 516,
+ "trending": 0.0935671390280457,
+ "installs_last_month": 515,
"isMobileFriendly": false
},
{
@@ -35543,8 +35543,8 @@
"aarch64"
],
"added_at": 1551391335,
- "trending": 4.438986692991364,
- "installs_last_month": 396,
+ "trending": 4.966377479807106,
+ "installs_last_month": 411,
"isMobileFriendly": false
},
{
@@ -35586,8 +35586,8 @@
"aarch64"
],
"added_at": 1603015060,
- "trending": 1.178541033068398,
- "installs_last_month": 353,
+ "trending": 2.372956989942975,
+ "installs_last_month": 357,
"isMobileFriendly": false
},
{
@@ -35621,8 +35621,8 @@
"aarch64"
],
"added_at": 1619416941,
- "trending": 8.852785512234913,
- "installs_last_month": 314,
+ "trending": 8.61297150739083,
+ "installs_last_month": 315,
"isMobileFriendly": false
},
{
@@ -35660,8 +35660,8 @@
"x86_64"
],
"added_at": 1715237962,
- "trending": 0.13458459831473535,
- "installs_last_month": 227,
+ "trending": 2.561101404628999,
+ "installs_last_month": 231,
"isMobileFriendly": false
},
{
@@ -35700,8 +35700,8 @@
"aarch64"
],
"added_at": 1534868874,
- "trending": 7.011322920098472,
- "installs_last_month": 78,
+ "trending": 7.348798333929377,
+ "installs_last_month": 84,
"isMobileFriendly": false
}
],
@@ -35751,8 +35751,8 @@
"aarch64"
],
"added_at": 1717580224,
- "trending": 3.436763747464628,
- "installs_last_month": 908,
+ "trending": 3.759188295725188,
+ "installs_last_month": 917,
"isMobileFriendly": false
},
{
@@ -35786,43 +35786,44 @@
"aarch64"
],
"added_at": 1733424040,
- "trending": 17.794518825370112,
- "installs_last_month": 812,
+ "trending": 13.868030580958822,
+ "installs_last_month": 781,
"isMobileFriendly": false
},
{
- "name": "Tiny Crate",
+ "name": "AI Generated Game",
"keywords": null,
- "summary": "Crate-chucking action puzzler",
- "description": "Tiny Crate is a cute little precision platformer with puzzle elements!\n Lift and toss crates to traverse over spike pits and reach higher ground!\n Weigh down buttons to create platforms and solve the puzzle!\n Push yourself and make tight jumps! You got this! <3 (:\n Controls:\n \n Arrows - Move\n X - Jump / Select\n C - Lift & Toss / Back\n Enter - Menu\n \n ",
- "id": "net_hhoney_tinycrate",
+ "summary": "Save your friends from the ghosts!",
+ "description": "Save your garden friends from the ghosts! BONK BONK!\n Mouse locks when you click on the window, press ESCAPE to unlock the mouse.\n \n W,A,S,D / Arrow Keys = Move\n L-SHIFT / R-CTRL = Sprint\n Left Click = Shoot\n Right Click = Zoom\n \n ",
+ "id": "com_voxdsp_aigeneratedgame",
"type": "desktop-application",
"translations": {},
- "project_license": "Unlicense",
+ "project_license": "GPL-2.0-only",
"is_free_license": true,
- "app_id": "net.hhoney.tinycrate",
- "icon": "https://dl.flathub.org/media/net/hhoney/tinycrate/51f282e4729d5985d646d23a1eb63774/icons/128x128/net.hhoney.tinycrate.png",
+ "app_id": "com.voxdsp.aigeneratedgame",
+ "icon": "https://dl.flathub.org/media/com/voxdsp/aigeneratedgame/e503ad6a9dd938cd54913be57445c8a3/icons/128x128/com.voxdsp.aigeneratedgame.png",
"main_categories": "game",
"sub_categories": [
"ArcadeGame",
- "KidsGame"
+ "KidsGame",
+ "Graphics"
],
- "developer_name": "HHoney Software",
+ "developer_name": "James William Fletcher",
"verification_verified": true,
"verification_method": "website",
"verification_login_name": null,
"verification_login_provider": null,
"verification_login_is_organization": "false",
- "verification_website": "hhoney.net",
- "verification_timestamp": "1739990544",
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1741105636,
+ "verification_website": "voxdsp.com",
+ "verification_timestamp": "1712052662",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1712165028,
"arches": [
"x86_64",
"aarch64"
],
- "added_at": 1737039810,
- "trending": 14.378846691628226,
+ "added_at": 1702299440,
+ "trending": 0.7861997609240106,
"installs_last_month": 368,
"isMobileFriendly": false
},
@@ -35860,44 +35861,43 @@
"aarch64"
],
"added_at": 1661808406,
- "trending": 1.4455481671715538,
- "installs_last_month": 362,
+ "trending": 0.8579262610322068,
+ "installs_last_month": 367,
"isMobileFriendly": false
},
{
- "name": "AI Generated Game",
+ "name": "Tiny Crate",
"keywords": null,
- "summary": "Save your friends from the ghosts!",
- "description": "Save your garden friends from the ghosts! BONK BONK!\n Mouse locks when you click on the window, press ESCAPE to unlock the mouse.\n \n W,A,S,D / Arrow Keys = Move\n L-SHIFT / R-CTRL = Sprint\n Left Click = Shoot\n Right Click = Zoom\n \n ",
- "id": "com_voxdsp_aigeneratedgame",
+ "summary": "Crate-chucking action puzzler",
+ "description": "Tiny Crate is a cute little precision platformer with puzzle elements!\n Lift and toss crates to traverse over spike pits and reach higher ground!\n Weigh down buttons to create platforms and solve the puzzle!\n Push yourself and make tight jumps! You got this! <3 (:\n Controls:\n \n Arrows - Move\n X - Jump / Select\n C - Lift & Toss / Back\n Enter - Menu\n \n ",
+ "id": "net_hhoney_tinycrate",
"type": "desktop-application",
"translations": {},
- "project_license": "GPL-2.0-only",
+ "project_license": "Unlicense",
"is_free_license": true,
- "app_id": "com.voxdsp.aigeneratedgame",
- "icon": "https://dl.flathub.org/media/com/voxdsp/aigeneratedgame/e503ad6a9dd938cd54913be57445c8a3/icons/128x128/com.voxdsp.aigeneratedgame.png",
+ "app_id": "net.hhoney.tinycrate",
+ "icon": "https://dl.flathub.org/media/net/hhoney/tinycrate/51f282e4729d5985d646d23a1eb63774/icons/128x128/net.hhoney.tinycrate.png",
"main_categories": "game",
"sub_categories": [
"ArcadeGame",
- "KidsGame",
- "Graphics"
+ "KidsGame"
],
- "developer_name": "James William Fletcher",
+ "developer_name": "HHoney Software",
"verification_verified": true,
"verification_method": "website",
"verification_login_name": null,
"verification_login_provider": null,
"verification_login_is_organization": "false",
- "verification_website": "voxdsp.com",
- "verification_timestamp": "1712052662",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1712165028,
+ "verification_website": "hhoney.net",
+ "verification_timestamp": "1739990544",
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1741105636,
"arches": [
"x86_64",
"aarch64"
],
- "added_at": 1702299440,
- "trending": 3.36658007661981,
+ "added_at": 1737039810,
+ "trending": 13.680056961694223,
"installs_last_month": 362,
"isMobileFriendly": false
},
@@ -35935,8 +35935,8 @@
"aarch64"
],
"added_at": 1698646399,
- "trending": 3.686908481514328,
- "installs_last_month": 292,
+ "trending": 5.179973313512161,
+ "installs_last_month": 295,
"isMobileFriendly": false
},
{
@@ -35973,8 +35973,8 @@
"aarch64"
],
"added_at": 1701681910,
- "trending": 4.135751648378853,
- "installs_last_month": 286,
+ "trending": 4.933188427797912,
+ "installs_last_month": 276,
"isMobileFriendly": false
},
{
@@ -36009,7 +36009,7 @@
"aarch64"
],
"added_at": 1664959783,
- "trending": 14.54259674213587,
+ "trending": 11.464102574436216,
"installs_last_month": 236,
"isMobileFriendly": false
},
@@ -36177,8 +36177,45 @@
"aarch64"
],
"added_at": 1523719370,
- "trending": 3.843819046301644,
- "installs_last_month": 217,
+ "trending": 1.838966957730818,
+ "installs_last_month": 223,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "TuxScape",
+ "keywords": null,
+ "summary": "Mythical adventure as Tux!",
+ "description": "Inspired by the famous game Run-Escape.\n All your stats are shown in the title bar. Smash presents and pots to get health drops, I would start on Zombies, Green Flies, Baby Dragons, Skulls and Whirlwinds. Check the readme on github.com/mrbid/TuxScape for more info.\n Mouse locks when you click on the window, press ESCAPE to unlock the mouse.\n \n Left Click = Attack\n Right Click = Target Weapon / Engage Jet Pack\n Mouse Scroll = Zoom in/out\n W,A,S,D / Arrow Keys = Move\n L-SHIFT / R-CTRL = Sprint/Fast\n Space = Jet Pack\n 1-9 = Weapon Change\n C = Toggle between First and Third person\n V / MOUSE4 = Toggle between stickey/toggle mouse clicks (good for afk)\n \n ",
+ "id": "com_voxdsp_TuxScape",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0-only",
+ "is_free_license": true,
+ "app_id": "com.voxdsp.TuxScape",
+ "icon": "https://dl.flathub.org/media/com/voxdsp/TuxScape/5e46bf2ff8b6fbf021ee972c587c2714/icons/128x128/com.voxdsp.TuxScape.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame",
+ "KidsGame",
+ "Graphics"
+ ],
+ "developer_name": "James William Fletcher",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "voxdsp.com",
+ "verification_timestamp": "1712052547",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1717800080,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1702974979,
+ "trending": 4.592493517748316,
+ "installs_last_month": 187,
"isMobileFriendly": false
},
{
@@ -36214,7 +36251,7 @@
"aarch64"
],
"added_at": 1716967191,
- "trending": 5.771079426250106,
+ "trending": 2.8608796315180753,
"installs_last_month": 186,
"isMobileFriendly": false
},
@@ -36251,47 +36288,10 @@
"aarch64"
],
"added_at": 1704220352,
- "trending": 3.774114016250533,
+ "trending": 6.582683357822802,
"installs_last_month": 184,
"isMobileFriendly": false
},
- {
- "name": "TuxScape",
- "keywords": null,
- "summary": "Mythical adventure as Tux!",
- "description": "Inspired by the famous game Run-Escape.\n All your stats are shown in the title bar. Smash presents and pots to get health drops, I would start on Zombies, Green Flies, Baby Dragons, Skulls and Whirlwinds. Check the readme on github.com/mrbid/TuxScape for more info.\n Mouse locks when you click on the window, press ESCAPE to unlock the mouse.\n \n Left Click = Attack\n Right Click = Target Weapon / Engage Jet Pack\n Mouse Scroll = Zoom in/out\n W,A,S,D / Arrow Keys = Move\n L-SHIFT / R-CTRL = Sprint/Fast\n Space = Jet Pack\n 1-9 = Weapon Change\n C = Toggle between First and Third person\n V / MOUSE4 = Toggle between stickey/toggle mouse clicks (good for afk)\n \n ",
- "id": "com_voxdsp_TuxScape",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0-only",
- "is_free_license": true,
- "app_id": "com.voxdsp.TuxScape",
- "icon": "https://dl.flathub.org/media/com/voxdsp/TuxScape/5e46bf2ff8b6fbf021ee972c587c2714/icons/128x128/com.voxdsp.TuxScape.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame",
- "KidsGame",
- "Graphics"
- ],
- "developer_name": "James William Fletcher",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "voxdsp.com",
- "verification_timestamp": "1712052547",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1717800080,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1702974979,
- "trending": 3.669303799896644,
- "installs_last_month": 183,
- "isMobileFriendly": false
- },
{
"name": "Candy Wrapper",
"keywords": null,
@@ -36324,8 +36324,8 @@
"aarch64"
],
"added_at": 1737186441,
- "trending": 17.200282560764524,
- "installs_last_month": 158,
+ "trending": 14.907315193587298,
+ "installs_last_month": 161,
"isMobileFriendly": false
},
{
@@ -36361,8 +36361,8 @@
"aarch64"
],
"added_at": 1718955030,
- "trending": 1.9420897999235016,
- "installs_last_month": 152,
+ "trending": 6.020582208427875,
+ "installs_last_month": 156,
"isMobileFriendly": false
},
{
@@ -36398,8 +36398,8 @@
"aarch64"
],
"added_at": 1643366705,
- "trending": 10.137588187774996,
- "installs_last_month": 148,
+ "trending": 10.093636420281449,
+ "installs_last_month": 150,
"isMobileFriendly": false
},
{
@@ -36435,8 +36435,8 @@
"aarch64"
],
"added_at": 1703234640,
- "trending": 14.101660419413651,
- "installs_last_month": 139,
+ "trending": 6.7601779318953845,
+ "installs_last_month": 144,
"isMobileFriendly": false
},
{
@@ -36480,8 +36480,8 @@
"aarch64"
],
"added_at": 1705654905,
- "trending": 10.199428434045386,
- "installs_last_month": 113,
+ "trending": 8.45545445949073,
+ "installs_last_month": 116,
"isMobileFriendly": false
},
{
@@ -36517,8 +36517,8 @@
"aarch64"
],
"added_at": 1699518669,
- "trending": 2.915133136096465,
- "installs_last_month": 111,
+ "trending": 4.665671977061271,
+ "installs_last_month": 114,
"isMobileFriendly": false
},
{
@@ -36554,121 +36554,10 @@
"aarch64"
],
"added_at": 1700215925,
- "trending": 0.061706152679995574,
+ "trending": 2.842037755026158,
"installs_last_month": 106,
"isMobileFriendly": false
},
- {
- "name": "Snowboarder",
- "keywords": null,
- "summary": "3D Snowboarding",
- "description": "Use your keyboard arrow keys to move from left to right or left and right click.\n A web version is available at mrbid.github.io/snowboarder/\n ",
- "id": "com_voxdsp_Snowboarder",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0-only",
- "is_free_license": true,
- "app_id": "com.voxdsp.Snowboarder",
- "icon": "https://dl.flathub.org/media/com/voxdsp/Snowboarder/6d6c22a93bafee800ce861ad2c7a88a7/icons/128x128/com.voxdsp.Snowboarder.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame",
- "KidsGame",
- "Graphics"
- ],
- "developer_name": "James William Fletcher",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "voxdsp.com",
- "verification_timestamp": "1712052532",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1712163248,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1700215905,
- "trending": 2.18874283974135,
- "installs_last_month": 74,
- "isMobileFriendly": false
- },
- {
- "name": "Dinonuggy's Journey",
- "keywords": null,
- "summary": "A pixel art 2d platformer game.",
- "description": "A pixel art 2d platformer game developed for the project week 2021 at the Marie-Curie-Gymnasium Wittenberge. You play as a nugget in dinosaur form. Find the exit and escape!",
- "id": "com_coeck_studios_Dinonuggys-Journey",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "com.coeck_studios.Dinonuggys-Journey",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.coeck_studios.Dinonuggys-Journey.png",
- "main_categories": "game",
- "sub_categories": [
- "2DGraphics",
- "KidsGame",
- "RasterGraphics"
- ],
- "developer_name": "CoEck Studios",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/22.08",
- "updated_at": 1694640794,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1641802100,
- "trending": 3.203175512772366,
- "installs_last_month": 73,
- "isMobileFriendly": false
- },
- {
- "name": "Temple Driver",
- "keywords": null,
- "summary": "Terry's 1st Temple",
- "description": "Terry A. Davis was a very skilled and devote catholic programmer who sadly suffered from schizophrenia during his life, although this didn't stop Terry from becoming one of the most famous and recognisable figures of the general internet community gaining recognition from even Larry Page the co-founder of the Google search engine. What Terry managed to achieve in his life is sadly commonly undervalued and overlooked due to his schizophrenia; however what Terry managed to achieve in his programming ventures and his social media escapades, a small fragment of which considered controversial sadly given more attention than the greater body of his internet streams, truly is a remarkable feat even for an individual without mental health issues. That is to say that no one else to date has achieved the combined programming feats and social notoriety that Terry Davis, single-handedly, managed to achieve during his life. It is with great honour that I am able to write this passage about him.\n \n Left & Right Click or Arrow Keys\n F = FPS to console.\n \n Dedicated to the smartest programmer that ever lived, Terry A. Davis. (templeos.org)\n ",
- "id": "com_voxdsp_TempleDriver",
- "type": "desktop-application",
- "translations": {},
- "project_license": "MIT",
- "is_free_license": true,
- "app_id": "com.voxdsp.TempleDriver",
- "icon": "https://dl.flathub.org/media/com/voxdsp/TempleDriver/f50313c76c214a32479df498e08ee3b7/icons/128x128/com.voxdsp.TempleDriver.png",
- "main_categories": "game",
- "sub_categories": [
- "ArcadeGame",
- "KidsGame",
- "Graphics"
- ],
- "developer_name": "James William Fletcher",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "voxdsp.com",
- "verification_timestamp": "1716316152",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1723100883,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1716271296,
- "trending": 7.41033116714361,
- "installs_last_month": 72,
- "isMobileFriendly": false
- },
{
"name": "SpaceMiner",
"keywords": null,
@@ -36702,8 +36591,119 @@
"aarch64"
],
"added_at": 1700468163,
- "trending": 3.630013206647102,
- "installs_last_month": 71,
+ "trending": 7.028345980171517,
+ "installs_last_month": 78,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Snowboarder",
+ "keywords": null,
+ "summary": "3D Snowboarding",
+ "description": "Use your keyboard arrow keys to move from left to right or left and right click.\n A web version is available at mrbid.github.io/snowboarder/\n ",
+ "id": "com_voxdsp_Snowboarder",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0-only",
+ "is_free_license": true,
+ "app_id": "com.voxdsp.Snowboarder",
+ "icon": "https://dl.flathub.org/media/com/voxdsp/Snowboarder/6d6c22a93bafee800ce861ad2c7a88a7/icons/128x128/com.voxdsp.Snowboarder.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame",
+ "KidsGame",
+ "Graphics"
+ ],
+ "developer_name": "James William Fletcher",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "voxdsp.com",
+ "verification_timestamp": "1712052532",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1712163248,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1700215905,
+ "trending": 1.934649119785417,
+ "installs_last_month": 77,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Dinonuggy's Journey",
+ "keywords": null,
+ "summary": "A pixel art 2d platformer game.",
+ "description": "A pixel art 2d platformer game developed for the project week 2021 at the Marie-Curie-Gymnasium Wittenberge. You play as a nugget in dinosaur form. Find the exit and escape!",
+ "id": "com_coeck_studios_Dinonuggys-Journey",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "com.coeck_studios.Dinonuggys-Journey",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.coeck_studios.Dinonuggys-Journey.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "2DGraphics",
+ "KidsGame",
+ "RasterGraphics"
+ ],
+ "developer_name": "CoEck Studios",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/22.08",
+ "updated_at": 1694640794,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1641802100,
+ "trending": 1.8695127867956745,
+ "installs_last_month": 76,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Temple Driver",
+ "keywords": null,
+ "summary": "Terry's 1st Temple",
+ "description": "Terry A. Davis was a very skilled and devote catholic programmer who sadly suffered from schizophrenia during his life, although this didn't stop Terry from becoming one of the most famous and recognisable figures of the general internet community gaining recognition from even Larry Page the co-founder of the Google search engine. What Terry managed to achieve in his life is sadly commonly undervalued and overlooked due to his schizophrenia; however what Terry managed to achieve in his programming ventures and his social media escapades, a small fragment of which considered controversial sadly given more attention than the greater body of his internet streams, truly is a remarkable feat even for an individual without mental health issues. That is to say that no one else to date has achieved the combined programming feats and social notoriety that Terry Davis, single-handedly, managed to achieve during his life. It is with great honour that I am able to write this passage about him.\n \n Left & Right Click or Arrow Keys\n F = FPS to console.\n \n Dedicated to the smartest programmer that ever lived, Terry A. Davis. (templeos.org)\n ",
+ "id": "com_voxdsp_TempleDriver",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "MIT",
+ "is_free_license": true,
+ "app_id": "com.voxdsp.TempleDriver",
+ "icon": "https://dl.flathub.org/media/com/voxdsp/TempleDriver/f50313c76c214a32479df498e08ee3b7/icons/128x128/com.voxdsp.TempleDriver.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ArcadeGame",
+ "KidsGame",
+ "Graphics"
+ ],
+ "developer_name": "James William Fletcher",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "voxdsp.com",
+ "verification_timestamp": "1716316152",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1723100883,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1716271296,
+ "trending": 7.98711478881834,
+ "installs_last_month": 76,
"isMobileFriendly": false
},
{
@@ -36739,8 +36739,8 @@
"aarch64"
],
"added_at": 1721804464,
- "trending": 12.661744154600848,
- "installs_last_month": 58,
+ "trending": 8.034267215989825,
+ "installs_last_month": 55,
"isMobileFriendly": false
},
{
@@ -36776,8 +36776,8 @@
"aarch64"
],
"added_at": 1705488642,
- "trending": 4.399324983211869,
- "installs_last_month": 46,
+ "trending": 15.42339166020288,
+ "installs_last_month": 50,
"isMobileFriendly": false
},
{
@@ -36813,8 +36813,8 @@
"aarch64"
],
"added_at": 1700216134,
- "trending": 2.6381400902334216,
- "installs_last_month": 43,
+ "trending": 3.1056505236761502,
+ "installs_last_month": 45,
"isMobileFriendly": false
}
],
@@ -37055,8 +37055,8 @@
"aarch64"
],
"added_at": 1560613434,
- "trending": 14.484654456334024,
- "installs_last_month": 3131,
+ "trending": 14.947363137123872,
+ "installs_last_month": 3132,
"isMobileFriendly": true
},
{
@@ -37250,8 +37250,8 @@
"aarch64"
],
"added_at": 1559735260,
- "trending": 11.194660383375496,
- "installs_last_month": 1881,
+ "trending": 12.300599086169097,
+ "installs_last_month": 1882,
"isMobileFriendly": true
},
{
@@ -37486,8 +37486,8 @@
"aarch64"
],
"added_at": 1558987994,
- "trending": 12.822555304035395,
- "installs_last_month": 1160,
+ "trending": 12.266944393313342,
+ "installs_last_month": 1179,
"isMobileFriendly": false
},
{
@@ -37549,8 +37549,8 @@
"aarch64"
],
"added_at": 1651739141,
- "trending": 14.603443669430252,
- "installs_last_month": 960,
+ "trending": 14.512495261814072,
+ "installs_last_month": 976,
"isMobileFriendly": true
},
{
@@ -37720,8 +37720,8 @@
"aarch64"
],
"added_at": 1534951430,
- "trending": 0.7912787539285486,
- "installs_last_month": 582,
+ "trending": -0.7905347305136912,
+ "installs_last_month": 588,
"isMobileFriendly": false
},
{
@@ -37760,8 +37760,8 @@
"aarch64"
],
"added_at": 1650371629,
- "trending": 12.342859949507568,
- "installs_last_month": 496,
+ "trending": 14.125468502878832,
+ "installs_last_month": 516,
"isMobileFriendly": false
},
{
@@ -37957,8 +37957,8 @@
"aarch64"
],
"added_at": 1513540331,
- "trending": 13.761442243919712,
- "installs_last_month": 446,
+ "trending": 12.504296184567044,
+ "installs_last_month": 434,
"isMobileFriendly": false
},
{
@@ -38207,8 +38207,8 @@
"aarch64"
],
"added_at": 1569577044,
- "trending": 12.218287507621683,
- "installs_last_month": 423,
+ "trending": 11.156596557197773,
+ "installs_last_month": 415,
"isMobileFriendly": false
},
{
@@ -38250,8 +38250,8 @@
"aarch64"
],
"added_at": 1510648459,
- "trending": 0.2406468382348265,
- "installs_last_month": 407,
+ "trending": 3.5089799322371684,
+ "installs_last_month": 405,
"isMobileFriendly": false
},
{
@@ -38416,8 +38416,8 @@
"aarch64"
],
"added_at": 1537521997,
- "trending": 5.48940596872505,
- "installs_last_month": 331,
+ "trending": 6.0885554273713085,
+ "installs_last_month": 330,
"isMobileFriendly": false
},
{
@@ -38530,240 +38530,8 @@
"aarch64"
],
"added_at": 1529733139,
- "trending": 9.082910926014929,
- "installs_last_month": 322,
- "isMobileFriendly": false
- },
- {
- "name": "Four-in-a-row",
- "keywords": [
- "game",
- "strategy",
- "logic"
- ],
- "summary": "Make lines of the same color to win",
- "description": "\n A family classic, the objective of Four-in-a-row is to build a line of four\n of your marbles while trying to stop your opponent (human or computer) from\n building a line of his or her own. A line can be horizontal, vertical or\n diagonal. The first player to connect four in a row is the winner!\n \n \n Four-in-a-row features multiple difficulty levels. If you’re having trouble,\n you can always ask for a hint.\n \n ",
- "id": "org_gnome_Four-in-a-row",
- "type": "desktop-application",
- "translations": {
- "ca": {
- "description": "Un clàssic familiar, l'objectiu del Quatre en ratlla és construir una línia de quatre boles mentre s'intenta evitar que l'oponent (ja sigui humà o l'ordinador) faci la seva pròpia línia. Una línia pot ser horitzontal, vertical o en diagonal. El primer jugador que aconsegueixi posar quatre boles en línia guanya!\n El Quatre en ratlla té múltiples nivells de dificultat. Si no sabeu on tirar la bola, sempre podeu demanar una pista.\n ",
- "name": "Quatre en ratlla",
- "summary": "Per guanyar feu línies del mateix color"
- },
- "cs": {
- "description": "Čtyři-v-jedné-řadě je klasická rodinná hra, jejímž cílem je uspořádat čtyři své kuličky do jedné řady, zatímco protivník (člověk nebo počítač) se vám v tom snaží zabránit a naopak vybudovat svoji vlastní řadu. Řada může být vodorovná, svislá nebo úhlopříčná. První hráč, který sestaví řadu ze čtyř kuliček, vyhrává.\n Čtyři-v-jedné-řadě nabízí několik úrovní složitosti. A vždy, když se dostanete do úzkých, můžete požádat o radu.\n ",
- "name": "Čtyři-v-jedné-řadě",
- "summary": "Soutěžte ve tvorbě úseček ze stejné barvy"
- },
- "da": {
- "description": "En familieklassiker. Målet i Fire på stribe er at danne en linje med fire kugler, mens du forhindrer menneske- eller computermodstanderen i at gøre det samme. En linje kan være vandret, lodret eller diagonal. Første spiller, der forbinder fire på stribe, vinder!\n Fire på stribe har flere sværhedsgrader. Hvis du er i problemer, kan du altid bede om et tip.\n ",
- "name": "Fire på stribe",
- "summary": "Dan linjer af samme farve for at vinde"
- },
- "de": {
- "description": "»Vier gewinnt« ist ein Familienklassiker, dessen Ziel es ist, vier Ihrer Murmeln in eine Reihe zu bringen und gleichzeitig den Gegner (Mensch oder Rechner) an der gleichen Aufgabe zu hindern. Eine Reihe kann horizontal, vertikal oder diagonal sein. Der erste Spieler, der vier in einer Reihe hat, gewinnt!\n »Vier gewinnt« hat mehrere Schwierigkeitsstufen. Wenn Sie Schwierigkeiten haben, so können Sie immer nach einem Tipp fragen.\n ",
- "name": "Vier gewinnt",
- "summary": "Im Wettkampf Reihen gleicher Farben anordnen"
- },
- "el": {
- "description": "Ένα κλασικό οικογενειακό παιχνίδι, με σκοπό τη δημιουργία μιας γραμμής με τέσσερα δικά σας κομμάτια, ενώ προσπαθείτε να εμποδίσετε τον αντίπαλό σας (άνθρωπο ή υπολογιστή) να δημιουργήσει μια δικιά του γραμμή. Μια γραμμή μπορεί να είναι οριζόντια, κάθετη ή διαγώνια. Ο πρώτος παίκτης που βάζει τέσσερα κομμάτια μαζί στη γραμμή, είναι ο νικητής!\n Το Τέσσερα στη σειρά διαθέτει πολλαπλά επίπεδα δυσκολίας. Αν έχετε πρόβλημα, μπορείτε πάντα να ζητήσετε μια υπόδειξη.\n ",
- "name": "Τέσσερα στη σειρά",
- "summary": "Φτιάξτε γραμμές του ιδίου χρώματος για να κερδίσετε"
- },
- "en-GB": {
- "description": "A family classic, the objective of Four-in-a-row is to build a line of four of your marbles while trying to stop your opponent (human or computer) from building a line of his or her own. A line can be horizontal, vertical or diagonal. The first player to connect four in a row is the winner!\n Four-in-a-row features multiple difficulty levels. If you’re having trouble, you can always ask for a hint.\n ",
- "name": "Four-in-a-row",
- "summary": "Make lines of the same colour to win"
- },
- "eo": {
- "description": "Familia klasiko. La celo de Kunligu Kvar estas konstruado de linio de kvar viaj rulglobetoj, klopodante ke via kontraŭludanto (homa aŭ komputila) konstruu sian propran linion. Linio povas esti horizontala, vertikala, aŭ diagonala. La unua ludanto, kiu kunligas kvar, gajnas!\n Kunligu Kvar havas diversajn malfacilecajn nivelojn. Se vi luktas, vi ĉiam povas peti konsileton.\n ",
- "name": "Kunligu Kvar",
- "summary": "Liniigu samkoloraĵojn por gajni"
- },
- "es": {
- "description": "Un clásico familiar, el objetivo de Cuatro en raya es construir una línea con sus cuatro canicas mientras intenta evitar su oponente (que puede ser humano o el propio equipo) haga la suya. Una línea puede ser horizontal, vertical o diagonal. El primer jugador en conseguir las cuatro en raya gana.\n Cuatro en raya tiene varios niveles de dificultad. Si tiene problemas, siempre puede pedir una pista.\n ",
- "name": "Cuatro en raya",
- "summary": "Haga líneas del mismo color para ganar"
- },
- "fa": {
- "description": "یک بازی کلاسیک خانوادگی، هدف چهار-در-یک-ردیف این است که چهارتا از تیلههای خود را در یک ردیف قرار دهید در حالی که سعی میکنید حریف خود را (انسان یا کامپیوتر) از ساختن ردیف خود متوقف کنید. یک خط میتواند عمودی، افقی یا قطری باشد. اولین بازیکنی که ردیف را بسازد برنده است!\n چهارتا در یک ردیف شامل چند سطح دشواری است. اگر به مشکلی برخوردید، همیشه میتوانید راهنمایی بگیرید.\n ",
- "name": "چهارتا در یک ردیف",
- "summary": "برای بردن خطوطی از یک رنگ ایجاد کنید"
- },
- "fi": {
- "description": "Neljä rivissä -pelin idea on rakentaa neljän marmoripallon rivi, mutta samalla estää vastustajaa rakentamasta omaa riviä. Rivi voi olla pysty- tai vaakasuorassa tai viistottain. Se pelaaja, joka pystyy ensin tehdä neljän rivin, voittaa!\n Neljä rivissä sisältää useita eri vaikeustasoja. Jos olet pulassa, voit aina pyytää vihjettä.\n ",
- "name": "Neljä rivissä",
- "summary": "Tee samanvärisiä rivejä ja voita"
- },
- "fr": {
- "description": "L’objectif de Quatre-à-la-suite est de construire une ligne de quatre billes tout en empêchant votre adversaire (humain ou électronique) de construire une telle ligne avec ses billes. Une ligne peut être horizontale, verticale ou diagonale. Le premier joueur qui connecte quatre billes à la suite gagne !\n Quatre-à-la-suite propose différents niveaux de difficulté. Si vous avez du mal, vous pouvez toujours demander une astuce.\n ",
- "name": "Quatre-à-la-suite",
- "summary": "Réaliser des lignes de la même couleur pour gagner"
- },
- "he": {
- "description": "קלסיקה משפחתית, המטרה במשחק ארבע בשורה היא להרכיב שורה של ארבע גולות תוך ניסיון למנוע זאת מהיריב (מחשב או אנושי). שורה יכולה להיות אופקית, אנכית או אלכסונית. השחקן הראשון שמחבר ארבעה בשורה הוא המנצח!\n ארבע בשורה כולל מספר רמות קושי. אם הסתבכת, תמיד ניתן לבקש רמז.\n ",
- "name": "ארבע בשורה",
- "summary": "יצירת שורות מאותו הצבע כדי לזכות"
- },
- "hr": {
- "description": "Klasična obiteljska igra, cilj igre Četiri u nizu je načiniti redak od četiri kuglica dok pokušavate spriječiti svojeg protivnika (čovjeka ili računalo) da načini vlastiti redak. Redak može biti okomit, vodoravan ili dijagonalan. Prvi igrač koji poveže četiri kuglice u redku je pobjednik!\n Četiri u nizu sadrži više razina težine. Ako imate poteškoća, uvijek možete pitati za sljedeći potez.\n ",
- "name": "Četiri u nizu",
- "summary": "Učinite redak od istih boja za pobjedu"
- },
- "hu": {
- "description": "Egy családi klasszikus, a Négyet egy sorba célja egy négy golyóból álló sor összeállítása, miközben megakadályozza ellenfelét (ember vagy számítógép) ugyanebben. A sor lehet vízszintes, függőleges vagy átlós. Aki elsőként összeköt négyet egy sorba, nyer!\n A Négyet egy sorba több nehézségi szintet tartalmaz. Ha bajban van, bármikor kérhet tippet.\n ",
- "name": "Négyet egy sorba",
- "summary": "Alkosson azonos színű sorokat a győzelemhez"
- },
- "id": {
- "description": "Permainan keluarga yang klasik, tujuan dari Four-in-a-row adalah untuk membangun suatu baris berisi empat kelereng Anda sambil mencoba menghentikan lawan Anda (orang atau komputer) membentuk suatu baris serupa. Baris bisa horisontal, vertikal, atau diagonal. Pemain pertama yang berhasil menghubungkan empat segaris adalah pemenangnya!\n Four-in-a-row bisa diatur tingkat kesulitannya. Bila Anda mengalami masalah, Anda selalu bisa meminta petunjuk.\n ",
- "name": "Four-in-a-row",
- "summary": "Buat garis dengan warna yang sama untuk menang"
- },
- "it": {
- "description": "Un classico gioco per famiglie, l'obiettivo di Forza 4 è quello di creare una riga di quattro bilie dello stesso colore mentre tenti di fermare il tuo avversario (umano o computer). Una riga può essere orizzontale, verticale o diagonale: chi riesce per primo a metterne quattro in riga vince!\n Forza 4 dispone di diversi livelli di difficoltà e se sei in difficoltà, puoi sempre chiedere un piccolo aiuto.\n ",
- "name": "Forza 4",
- "summary": "Crea delle linee dello stesso colore per vincere"
- },
- "ja": {
- "description": "四目並べは家族でも楽しめる古典的なゲームです。あなたと対戦相手 (人間またはコンピューター) で交互にビー玉を落とし、どちらが先に玉を四つ一列に並べるかを競います。並べる方向は縦、横、斜めのどれでもかまいません。相手を邪魔しながら先に四つ並べた方が勝ちです。\n 自分のレベルに合わせてコンピューターの強さを選択できます。次の一手に悩んだときは、ヒントをもらうこともできます。\n ",
- "name": "四目並べ",
- "summary": "同じ色のラインを作って競い合ってください"
- },
- "ko": {
- "description": "사목 게임의 목표는 구슬을 4개 연속으로 이으면서 상대방(사람 또는 컴퓨터)이 4개를 연속으로 잇지 못하게 만드는 것입니다. 가로 줄, 세로 줄, 대각선 줄 모두 가능합니다. 먼저 4개 연속으로 이으면 승리합니다!\n 사목은 여러가지 난이도가 있습니다. 풀기 어려우면 언제든지 힌트를 얻을 수 있습니다.\n ",
- "name": "사목",
- "summary": "같은 색을 한 줄로 놓아야 이기는 게임"
- },
- "lt": {
- "description": "Klasikinis žaidimas, keturių eilėje tikslas yra sudėti į tiesią liniją keturis savo kamuolius, tuo mat metu sutrukdant tą padaryti priešininkui (žmogui arba kompiuteriui). Linija gali būti horizontali, vertikali arba įstriža. Laimi pirmas, sudėjęs keturis kamuoliukus į liniją!\n Keturi eilėje turi kelis sudėtingumo lygius. Jei sunkiai sekasi, visada galite prašyti patarimo.\n ",
- "name": "Keturi eilėje",
- "summary": "Laimėkite sudėdami vienodos spalvos linijas"
- },
- "nl": {
- "description": "Het doel van Vier-op-een-rij, de familieklassieker, is om een rij van vier van uw knikkers te bouwen, terwijl u probeert te verhinderen dat de tegenstander (mens of computer) ditzelfde bereikt. Een rij kan horizontaal, verticaal of diagonaal zijn. De eerste speler die vier op een rij heeft wint!\n Vier-op-een-rij heeft meerdere moeilijkheidsgraden. Als u problemen heeft kunt u altijd een hint vragen.\n ",
- "name": "Vier-op-een-rij",
- "summary": "Probeer lijnen van dezelfde kleur te maken om te winnen"
- },
- "pl": {
- "description": "Klasyczna gra rodzinna Czwórki. Celem jest zbudowanie linii czterech kulek, jednocześnie próbując uniemożliwić to samo przeciwnikowi (innemu graczowi lub komputerowi). Linia może być pionowa, pozioma lub po przekątnej. Pierwszy gracz, który połączy cztery kulki wygrywa!\n Gra Czwórki zawiera kilka poziomów trudności. W razie problemów zawsze można skorzystać z podpowiedzi.\n ",
- "name": "Czwórki",
- "summary": "Utwórz linie tego samego koloru, aby wygrać"
- },
- "pt": {
- "description": "Um clássico familiar, o objetivo do Quatro-em-linha é construir uma linha de quatro esferas e simultaneamente impedir o adversário (humano ou computador) de construir a sua própria linha. Uma linha pode ser horizontal, vertical ou diagonal. O primeiro jogador a ligar quatro em linha é o vencedor!\n Quatro-em-linha dispõe de vários níveis de dificuldade. Se estiver em dificuldades, pode sempre pedir uma dica.\n ",
- "name": "Quatro-em-linha",
- "summary": "Construa linhas da mesma cor para ganhar"
- },
- "pt-BR": {
- "description": "Um clássico de família, o objetivo do Quatro em linha é criar uma linha de quatro de suas peças enquanto tenta parar seu oponente (humano ou computador) na construção de uma linha dele ou dela. Uma linha pode ser horizontal, vertical ou diagonal. O primeiro jogador a conectar quatro em uma linha é o vencedor!\n Quatro em linha possui múltiplos níveis de dificuldade. Se você está tendo dificuldade, você sempre pode solicitar uma dica.\n ",
- "name": "Quatro em linha",
- "summary": "Crie linhas da mesma cor para vencer"
- },
- "ro": {
- "description": "Un clasic de familie, obiectivul jocului Patru-în-linie este de a construi o linie cu patru din bilele la dispoziție în timp ce încercați să opriți oponentul (om sau calculator) din a construi o linie la rândul lui sau ei. O linie poate fi orizontală, verticală sau diagonală. Primul jucător care conectează patru în linie este câștigătorul!\n Patru-în-linie deține niveluri multiple de dificultate. Dacă aveți probleme, puteți întotdeauna să solicitați un indiciu.\n ",
- "name": "Patru-în-linie",
- "summary": "Creați linii de aceeași culoare pentru a câștiga"
- },
- "sv": {
- "description": "En familjeklassiker. Målet i Fyra-i-rad är att bygga en rad av fyra av dina kulor medan du försöker stoppa motståndaren (dator eller mänsklig) från att bygga en egen rad. En rad kan vara horisontell, vertikal eller diagonal. Den första spelaren som lägger fyra i rad är vinnaren!\n Fyra-i-rad erbjuder flera svårighetsgrader. Om du har problem kan du alltid be om ett tips.\n ",
- "name": "Fyra-i-rad",
- "summary": "Skapa rader med samma färg för att vinna"
- },
- "tr": {
- "description": "Bir aile klasiği, Bir-Sırada-Dört-Taş’ın amacı rakibinizin (insan veya bilgisayar) kendine ait bir çizgi oluşturmasını engellemeye çalışırken pullarınızdan dördü ile bir çizgi oluşturmaktır. Bir çizgi yatay, dikey veya köşegen olabilir. Bir sırada dört taneyi bağlayan ilk oyuncu kazanır!\n Bir-Sırada-Dört-Taşʼın birden çok zorluk düzeyi vardır. Eğer sorun yaşıyorsanız her zaman bir ipucu isteyebilirsiniz.\n ",
- "name": "Bir-Sırada-Dört-Taş",
- "summary": "Aynı renkten çizgiler yapmak için yarışın"
- },
- "uk": {
- "description": "Класична гра «Чотири в ряд», ціль якої — побудувати ряд з чотирьох кульок, і паралельно намагатись стримувати супротивника (людину або комп'ютера) зробити те саме. Рядок може бути горизонтальний, вертикальний або діагональний. Перший гравець, який з'єднає чотири у ряд, виграє!\n «Чотири в ряд» має кілька рівнів складності. Якщо у вас проблеми, ви завжди можете попрохати про підказку.\n ",
- "name": "Чотири в ряд",
- "summary": "Щоб виграти складайте лінії однакового кольору"
- },
- "zh-Hans": {
- "description": "一个家庭经典游戏,四字连线的目的是将你自己的四个弹珠连成一线同时阻止你的对手(人或者计算机)连线成功。连线可以是横的,竖的或斜的。第一个将四个弹珠连成一条线的选手将获胜!\n 四子连线有多个难度级别。如果您玩不下去,也可以获取提示。\n ",
- "name": "四子连线",
- "summary": "将四粒棋子排成一线以取胜"
- },
- "zh-Hant": {
- "description": "傳統遊戲家族之一,四子連環棋的目的是將您的彈珠四個連成一直線,同時要阻止您的對手 (人類或電腦) 完成他(她)自己的連線。連線可以是水平、垂直或斜線。第一個將四個彈珠連成一直線的玩家就是勝利者!\n 四子連環棋有多種難度等級。如果您遇到困難,可以隨時要求提示。\n ",
- "name": "四子連環棋",
- "summary": "將 4 粒棋子排成一直線"
- },
- "ar": {
- "name": "أربعة في صف",
- "summary": "تنافس للقيام بسطور من نفس اللون"
- },
- "be": {
- "name": "Чатыры ў радок",
- "summary": "Каб выйграць, складай лініі з аднаго колеру"
- },
- "bg": {
- "name": "Четири в линия",
- "summary": "За да спечелите, подредете пулове от един цвят в линия"
- },
- "et": {
- "name": "Neli-tükki-reas",
- "summary": "Ühevärviliste ridade kombineerimise võistlus"
- },
- "hi": {
- "name": "एक-पंक्ति-में-चार",
- "summary": "समान रंग की पंक्ति बनाने हेतु प्रतिस्पर्धा करें"
- },
- "nb": {
- "name": "Fire på rad",
- "summary": "Lag linjer med samme farge for å vinne"
- },
- "oc": {
- "name": "Quatre-en-seguida",
- "summary": "Realizar de linhas de la meteissa color per ganhar"
- },
- "pa": {
- "name": "ਇੱਕ ਕਤਾਰ 'ਚ ਚਾਰ",
- "summary": "ਜਿੱਤਣ ਲਈ ਉਸੇ ਰੰਗ ਦੀਆਂ ਲਾਇਨਾਂ ਬਣਾਓ"
- },
- "ru": {
- "name": "Четыре в ряд",
- "summary": "Для победы выстраивайте ряды шариков одинакового цвета"
- },
- "ta": {
- "name": "ஒரு-வரியில்-நான்கு",
- "summary": "ஒரே நிறத்திலான வரிகளை உருவாக்குவதற்்ுகாக போடிடு"
- },
- "vi": {
- "name": "Bốn-trong-một-hàng",
- "summary": "Đua để sắp dòng cùng màu để thắng"
- },
- "bn": {
- "summary": "একই রঙের সারি তৈরির জন্য প্রতিযোগিতা করুন"
- }
- },
- "project_license": "GPL-3.0+",
- "is_free_license": true,
- "app_id": "org.gnome.Four-in-a-row",
- "icon": "https://dl.flathub.org/media/org/gnome/Four-in-a-row/9db3423484702a6fd18d97b0fc0a8ddc/icons/128x128/org.gnome.Four-in-a-row.png",
- "main_categories": "game",
- "sub_categories": [
- "LogicGame"
- ],
- "developer_name": "The GNOME Project",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.gnome.Platform/x86_64/46",
- "updated_at": 1714834669,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1560614999,
- "trending": 10.741438726652598,
- "installs_last_month": 289,
+ "trending": 9.04329382774806,
+ "installs_last_month": 321,
"isMobileFriendly": false
},
{
@@ -38802,8 +38570,8 @@
"aarch64"
],
"added_at": 1731389953,
- "trending": 14.205199700067112,
- "installs_last_month": 288,
+ "trending": 15.024455358187923,
+ "installs_last_month": 289,
"isMobileFriendly": true
},
{
@@ -39041,8 +38809,305 @@
"aarch64"
],
"added_at": 1554941623,
- "trending": 4.131041903103105,
- "installs_last_month": 287,
+ "trending": 2.323464658820112,
+ "installs_last_month": 286,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Four-in-a-row",
+ "keywords": [
+ "game",
+ "strategy",
+ "logic"
+ ],
+ "summary": "Make lines of the same color to win",
+ "description": "\n A family classic, the objective of Four-in-a-row is to build a line of four\n of your marbles while trying to stop your opponent (human or computer) from\n building a line of his or her own. A line can be horizontal, vertical or\n diagonal. The first player to connect four in a row is the winner!\n \n \n Four-in-a-row features multiple difficulty levels. If you’re having trouble,\n you can always ask for a hint.\n \n ",
+ "id": "org_gnome_Four-in-a-row",
+ "type": "desktop-application",
+ "translations": {
+ "ca": {
+ "description": "Un clàssic familiar, l'objectiu del Quatre en ratlla és construir una línia de quatre boles mentre s'intenta evitar que l'oponent (ja sigui humà o l'ordinador) faci la seva pròpia línia. Una línia pot ser horitzontal, vertical o en diagonal. El primer jugador que aconsegueixi posar quatre boles en línia guanya!\n El Quatre en ratlla té múltiples nivells de dificultat. Si no sabeu on tirar la bola, sempre podeu demanar una pista.\n ",
+ "name": "Quatre en ratlla",
+ "summary": "Per guanyar feu línies del mateix color"
+ },
+ "cs": {
+ "description": "Čtyři-v-jedné-řadě je klasická rodinná hra, jejímž cílem je uspořádat čtyři své kuličky do jedné řady, zatímco protivník (člověk nebo počítač) se vám v tom snaží zabránit a naopak vybudovat svoji vlastní řadu. Řada může být vodorovná, svislá nebo úhlopříčná. První hráč, který sestaví řadu ze čtyř kuliček, vyhrává.\n Čtyři-v-jedné-řadě nabízí několik úrovní složitosti. A vždy, když se dostanete do úzkých, můžete požádat o radu.\n ",
+ "name": "Čtyři-v-jedné-řadě",
+ "summary": "Soutěžte ve tvorbě úseček ze stejné barvy"
+ },
+ "da": {
+ "description": "En familieklassiker. Målet i Fire på stribe er at danne en linje med fire kugler, mens du forhindrer menneske- eller computermodstanderen i at gøre det samme. En linje kan være vandret, lodret eller diagonal. Første spiller, der forbinder fire på stribe, vinder!\n Fire på stribe har flere sværhedsgrader. Hvis du er i problemer, kan du altid bede om et tip.\n ",
+ "name": "Fire på stribe",
+ "summary": "Dan linjer af samme farve for at vinde"
+ },
+ "de": {
+ "description": "»Vier gewinnt« ist ein Familienklassiker, dessen Ziel es ist, vier Ihrer Murmeln in eine Reihe zu bringen und gleichzeitig den Gegner (Mensch oder Rechner) an der gleichen Aufgabe zu hindern. Eine Reihe kann horizontal, vertikal oder diagonal sein. Der erste Spieler, der vier in einer Reihe hat, gewinnt!\n »Vier gewinnt« hat mehrere Schwierigkeitsstufen. Wenn Sie Schwierigkeiten haben, so können Sie immer nach einem Tipp fragen.\n ",
+ "name": "Vier gewinnt",
+ "summary": "Im Wettkampf Reihen gleicher Farben anordnen"
+ },
+ "el": {
+ "description": "Ένα κλασικό οικογενειακό παιχνίδι, με σκοπό τη δημιουργία μιας γραμμής με τέσσερα δικά σας κομμάτια, ενώ προσπαθείτε να εμποδίσετε τον αντίπαλό σας (άνθρωπο ή υπολογιστή) να δημιουργήσει μια δικιά του γραμμή. Μια γραμμή μπορεί να είναι οριζόντια, κάθετη ή διαγώνια. Ο πρώτος παίκτης που βάζει τέσσερα κομμάτια μαζί στη γραμμή, είναι ο νικητής!\n Το Τέσσερα στη σειρά διαθέτει πολλαπλά επίπεδα δυσκολίας. Αν έχετε πρόβλημα, μπορείτε πάντα να ζητήσετε μια υπόδειξη.\n ",
+ "name": "Τέσσερα στη σειρά",
+ "summary": "Φτιάξτε γραμμές του ιδίου χρώματος για να κερδίσετε"
+ },
+ "en-GB": {
+ "description": "A family classic, the objective of Four-in-a-row is to build a line of four of your marbles while trying to stop your opponent (human or computer) from building a line of his or her own. A line can be horizontal, vertical or diagonal. The first player to connect four in a row is the winner!\n Four-in-a-row features multiple difficulty levels. If you’re having trouble, you can always ask for a hint.\n ",
+ "name": "Four-in-a-row",
+ "summary": "Make lines of the same colour to win"
+ },
+ "eo": {
+ "description": "Familia klasiko. La celo de Kunligu Kvar estas konstruado de linio de kvar viaj rulglobetoj, klopodante ke via kontraŭludanto (homa aŭ komputila) konstruu sian propran linion. Linio povas esti horizontala, vertikala, aŭ diagonala. La unua ludanto, kiu kunligas kvar, gajnas!\n Kunligu Kvar havas diversajn malfacilecajn nivelojn. Se vi luktas, vi ĉiam povas peti konsileton.\n ",
+ "name": "Kunligu Kvar",
+ "summary": "Liniigu samkoloraĵojn por gajni"
+ },
+ "es": {
+ "description": "Un clásico familiar, el objetivo de Cuatro en raya es construir una línea con sus cuatro canicas mientras intenta evitar su oponente (que puede ser humano o el propio equipo) haga la suya. Una línea puede ser horizontal, vertical o diagonal. El primer jugador en conseguir las cuatro en raya gana.\n Cuatro en raya tiene varios niveles de dificultad. Si tiene problemas, siempre puede pedir una pista.\n ",
+ "name": "Cuatro en raya",
+ "summary": "Haga líneas del mismo color para ganar"
+ },
+ "fa": {
+ "description": "یک بازی کلاسیک خانوادگی، هدف چهار-در-یک-ردیف این است که چهارتا از تیلههای خود را در یک ردیف قرار دهید در حالی که سعی میکنید حریف خود را (انسان یا کامپیوتر) از ساختن ردیف خود متوقف کنید. یک خط میتواند عمودی، افقی یا قطری باشد. اولین بازیکنی که ردیف را بسازد برنده است!\n چهارتا در یک ردیف شامل چند سطح دشواری است. اگر به مشکلی برخوردید، همیشه میتوانید راهنمایی بگیرید.\n ",
+ "name": "چهارتا در یک ردیف",
+ "summary": "برای بردن خطوطی از یک رنگ ایجاد کنید"
+ },
+ "fi": {
+ "description": "Neljä rivissä -pelin idea on rakentaa neljän marmoripallon rivi, mutta samalla estää vastustajaa rakentamasta omaa riviä. Rivi voi olla pysty- tai vaakasuorassa tai viistottain. Se pelaaja, joka pystyy ensin tehdä neljän rivin, voittaa!\n Neljä rivissä sisältää useita eri vaikeustasoja. Jos olet pulassa, voit aina pyytää vihjettä.\n ",
+ "name": "Neljä rivissä",
+ "summary": "Tee samanvärisiä rivejä ja voita"
+ },
+ "fr": {
+ "description": "L’objectif de Quatre-à-la-suite est de construire une ligne de quatre billes tout en empêchant votre adversaire (humain ou électronique) de construire une telle ligne avec ses billes. Une ligne peut être horizontale, verticale ou diagonale. Le premier joueur qui connecte quatre billes à la suite gagne !\n Quatre-à-la-suite propose différents niveaux de difficulté. Si vous avez du mal, vous pouvez toujours demander une astuce.\n ",
+ "name": "Quatre-à-la-suite",
+ "summary": "Réaliser des lignes de la même couleur pour gagner"
+ },
+ "he": {
+ "description": "קלסיקה משפחתית, המטרה במשחק ארבע בשורה היא להרכיב שורה של ארבע גולות תוך ניסיון למנוע זאת מהיריב (מחשב או אנושי). שורה יכולה להיות אופקית, אנכית או אלכסונית. השחקן הראשון שמחבר ארבעה בשורה הוא המנצח!\n ארבע בשורה כולל מספר רמות קושי. אם הסתבכת, תמיד ניתן לבקש רמז.\n ",
+ "name": "ארבע בשורה",
+ "summary": "יצירת שורות מאותו הצבע כדי לזכות"
+ },
+ "hr": {
+ "description": "Klasična obiteljska igra, cilj igre Četiri u nizu je načiniti redak od četiri kuglica dok pokušavate spriječiti svojeg protivnika (čovjeka ili računalo) da načini vlastiti redak. Redak može biti okomit, vodoravan ili dijagonalan. Prvi igrač koji poveže četiri kuglice u redku je pobjednik!\n Četiri u nizu sadrži više razina težine. Ako imate poteškoća, uvijek možete pitati za sljedeći potez.\n ",
+ "name": "Četiri u nizu",
+ "summary": "Učinite redak od istih boja za pobjedu"
+ },
+ "hu": {
+ "description": "Egy családi klasszikus, a Négyet egy sorba célja egy négy golyóból álló sor összeállítása, miközben megakadályozza ellenfelét (ember vagy számítógép) ugyanebben. A sor lehet vízszintes, függőleges vagy átlós. Aki elsőként összeköt négyet egy sorba, nyer!\n A Négyet egy sorba több nehézségi szintet tartalmaz. Ha bajban van, bármikor kérhet tippet.\n ",
+ "name": "Négyet egy sorba",
+ "summary": "Alkosson azonos színű sorokat a győzelemhez"
+ },
+ "id": {
+ "description": "Permainan keluarga yang klasik, tujuan dari Four-in-a-row adalah untuk membangun suatu baris berisi empat kelereng Anda sambil mencoba menghentikan lawan Anda (orang atau komputer) membentuk suatu baris serupa. Baris bisa horisontal, vertikal, atau diagonal. Pemain pertama yang berhasil menghubungkan empat segaris adalah pemenangnya!\n Four-in-a-row bisa diatur tingkat kesulitannya. Bila Anda mengalami masalah, Anda selalu bisa meminta petunjuk.\n ",
+ "name": "Four-in-a-row",
+ "summary": "Buat garis dengan warna yang sama untuk menang"
+ },
+ "it": {
+ "description": "Un classico gioco per famiglie, l'obiettivo di Forza 4 è quello di creare una riga di quattro bilie dello stesso colore mentre tenti di fermare il tuo avversario (umano o computer). Una riga può essere orizzontale, verticale o diagonale: chi riesce per primo a metterne quattro in riga vince!\n Forza 4 dispone di diversi livelli di difficoltà e se sei in difficoltà, puoi sempre chiedere un piccolo aiuto.\n ",
+ "name": "Forza 4",
+ "summary": "Crea delle linee dello stesso colore per vincere"
+ },
+ "ja": {
+ "description": "四目並べは家族でも楽しめる古典的なゲームです。あなたと対戦相手 (人間またはコンピューター) で交互にビー玉を落とし、どちらが先に玉を四つ一列に並べるかを競います。並べる方向は縦、横、斜めのどれでもかまいません。相手を邪魔しながら先に四つ並べた方が勝ちです。\n 自分のレベルに合わせてコンピューターの強さを選択できます。次の一手に悩んだときは、ヒントをもらうこともできます。\n ",
+ "name": "四目並べ",
+ "summary": "同じ色のラインを作って競い合ってください"
+ },
+ "ko": {
+ "description": "사목 게임의 목표는 구슬을 4개 연속으로 이으면서 상대방(사람 또는 컴퓨터)이 4개를 연속으로 잇지 못하게 만드는 것입니다. 가로 줄, 세로 줄, 대각선 줄 모두 가능합니다. 먼저 4개 연속으로 이으면 승리합니다!\n 사목은 여러가지 난이도가 있습니다. 풀기 어려우면 언제든지 힌트를 얻을 수 있습니다.\n ",
+ "name": "사목",
+ "summary": "같은 색을 한 줄로 놓아야 이기는 게임"
+ },
+ "lt": {
+ "description": "Klasikinis žaidimas, keturių eilėje tikslas yra sudėti į tiesią liniją keturis savo kamuolius, tuo mat metu sutrukdant tą padaryti priešininkui (žmogui arba kompiuteriui). Linija gali būti horizontali, vertikali arba įstriža. Laimi pirmas, sudėjęs keturis kamuoliukus į liniją!\n Keturi eilėje turi kelis sudėtingumo lygius. Jei sunkiai sekasi, visada galite prašyti patarimo.\n ",
+ "name": "Keturi eilėje",
+ "summary": "Laimėkite sudėdami vienodos spalvos linijas"
+ },
+ "nl": {
+ "description": "Het doel van Vier-op-een-rij, de familieklassieker, is om een rij van vier van uw knikkers te bouwen, terwijl u probeert te verhinderen dat de tegenstander (mens of computer) ditzelfde bereikt. Een rij kan horizontaal, verticaal of diagonaal zijn. De eerste speler die vier op een rij heeft wint!\n Vier-op-een-rij heeft meerdere moeilijkheidsgraden. Als u problemen heeft kunt u altijd een hint vragen.\n ",
+ "name": "Vier-op-een-rij",
+ "summary": "Probeer lijnen van dezelfde kleur te maken om te winnen"
+ },
+ "pl": {
+ "description": "Klasyczna gra rodzinna Czwórki. Celem jest zbudowanie linii czterech kulek, jednocześnie próbując uniemożliwić to samo przeciwnikowi (innemu graczowi lub komputerowi). Linia może być pionowa, pozioma lub po przekątnej. Pierwszy gracz, który połączy cztery kulki wygrywa!\n Gra Czwórki zawiera kilka poziomów trudności. W razie problemów zawsze można skorzystać z podpowiedzi.\n ",
+ "name": "Czwórki",
+ "summary": "Utwórz linie tego samego koloru, aby wygrać"
+ },
+ "pt": {
+ "description": "Um clássico familiar, o objetivo do Quatro-em-linha é construir uma linha de quatro esferas e simultaneamente impedir o adversário (humano ou computador) de construir a sua própria linha. Uma linha pode ser horizontal, vertical ou diagonal. O primeiro jogador a ligar quatro em linha é o vencedor!\n Quatro-em-linha dispõe de vários níveis de dificuldade. Se estiver em dificuldades, pode sempre pedir uma dica.\n ",
+ "name": "Quatro-em-linha",
+ "summary": "Construa linhas da mesma cor para ganhar"
+ },
+ "pt-BR": {
+ "description": "Um clássico de família, o objetivo do Quatro em linha é criar uma linha de quatro de suas peças enquanto tenta parar seu oponente (humano ou computador) na construção de uma linha dele ou dela. Uma linha pode ser horizontal, vertical ou diagonal. O primeiro jogador a conectar quatro em uma linha é o vencedor!\n Quatro em linha possui múltiplos níveis de dificuldade. Se você está tendo dificuldade, você sempre pode solicitar uma dica.\n ",
+ "name": "Quatro em linha",
+ "summary": "Crie linhas da mesma cor para vencer"
+ },
+ "ro": {
+ "description": "Un clasic de familie, obiectivul jocului Patru-în-linie este de a construi o linie cu patru din bilele la dispoziție în timp ce încercați să opriți oponentul (om sau calculator) din a construi o linie la rândul lui sau ei. O linie poate fi orizontală, verticală sau diagonală. Primul jucător care conectează patru în linie este câștigătorul!\n Patru-în-linie deține niveluri multiple de dificultate. Dacă aveți probleme, puteți întotdeauna să solicitați un indiciu.\n ",
+ "name": "Patru-în-linie",
+ "summary": "Creați linii de aceeași culoare pentru a câștiga"
+ },
+ "sv": {
+ "description": "En familjeklassiker. Målet i Fyra-i-rad är att bygga en rad av fyra av dina kulor medan du försöker stoppa motståndaren (dator eller mänsklig) från att bygga en egen rad. En rad kan vara horisontell, vertikal eller diagonal. Den första spelaren som lägger fyra i rad är vinnaren!\n Fyra-i-rad erbjuder flera svårighetsgrader. Om du har problem kan du alltid be om ett tips.\n ",
+ "name": "Fyra-i-rad",
+ "summary": "Skapa rader med samma färg för att vinna"
+ },
+ "tr": {
+ "description": "Bir aile klasiği, Bir-Sırada-Dört-Taş’ın amacı rakibinizin (insan veya bilgisayar) kendine ait bir çizgi oluşturmasını engellemeye çalışırken pullarınızdan dördü ile bir çizgi oluşturmaktır. Bir çizgi yatay, dikey veya köşegen olabilir. Bir sırada dört taneyi bağlayan ilk oyuncu kazanır!\n Bir-Sırada-Dört-Taşʼın birden çok zorluk düzeyi vardır. Eğer sorun yaşıyorsanız her zaman bir ipucu isteyebilirsiniz.\n ",
+ "name": "Bir-Sırada-Dört-Taş",
+ "summary": "Aynı renkten çizgiler yapmak için yarışın"
+ },
+ "uk": {
+ "description": "Класична гра «Чотири в ряд», ціль якої — побудувати ряд з чотирьох кульок, і паралельно намагатись стримувати супротивника (людину або комп'ютера) зробити те саме. Рядок може бути горизонтальний, вертикальний або діагональний. Перший гравець, який з'єднає чотири у ряд, виграє!\n «Чотири в ряд» має кілька рівнів складності. Якщо у вас проблеми, ви завжди можете попрохати про підказку.\n ",
+ "name": "Чотири в ряд",
+ "summary": "Щоб виграти складайте лінії однакового кольору"
+ },
+ "zh-Hans": {
+ "description": "一个家庭经典游戏,四字连线的目的是将你自己的四个弹珠连成一线同时阻止你的对手(人或者计算机)连线成功。连线可以是横的,竖的或斜的。第一个将四个弹珠连成一条线的选手将获胜!\n 四子连线有多个难度级别。如果您玩不下去,也可以获取提示。\n ",
+ "name": "四子连线",
+ "summary": "将四粒棋子排成一线以取胜"
+ },
+ "zh-Hant": {
+ "description": "傳統遊戲家族之一,四子連環棋的目的是將您的彈珠四個連成一直線,同時要阻止您的對手 (人類或電腦) 完成他(她)自己的連線。連線可以是水平、垂直或斜線。第一個將四個彈珠連成一直線的玩家就是勝利者!\n 四子連環棋有多種難度等級。如果您遇到困難,可以隨時要求提示。\n ",
+ "name": "四子連環棋",
+ "summary": "將 4 粒棋子排成一直線"
+ },
+ "ar": {
+ "name": "أربعة في صف",
+ "summary": "تنافس للقيام بسطور من نفس اللون"
+ },
+ "be": {
+ "name": "Чатыры ў радок",
+ "summary": "Каб выйграць, складай лініі з аднаго колеру"
+ },
+ "bg": {
+ "name": "Четири в линия",
+ "summary": "За да спечелите, подредете пулове от един цвят в линия"
+ },
+ "et": {
+ "name": "Neli-tükki-reas",
+ "summary": "Ühevärviliste ridade kombineerimise võistlus"
+ },
+ "hi": {
+ "name": "एक-पंक्ति-में-चार",
+ "summary": "समान रंग की पंक्ति बनाने हेतु प्रतिस्पर्धा करें"
+ },
+ "nb": {
+ "name": "Fire på rad",
+ "summary": "Lag linjer med samme farge for å vinne"
+ },
+ "oc": {
+ "name": "Quatre-en-seguida",
+ "summary": "Realizar de linhas de la meteissa color per ganhar"
+ },
+ "pa": {
+ "name": "ਇੱਕ ਕਤਾਰ 'ਚ ਚਾਰ",
+ "summary": "ਜਿੱਤਣ ਲਈ ਉਸੇ ਰੰਗ ਦੀਆਂ ਲਾਇਨਾਂ ਬਣਾਓ"
+ },
+ "ru": {
+ "name": "Четыре в ряд",
+ "summary": "Для победы выстраивайте ряды шариков одинакового цвета"
+ },
+ "ta": {
+ "name": "ஒரு-வரியில்-நான்கு",
+ "summary": "ஒரே நிறத்திலான வரிகளை உருவாக்குவதற்்ுகாக போடிடு"
+ },
+ "vi": {
+ "name": "Bốn-trong-một-hàng",
+ "summary": "Đua để sắp dòng cùng màu để thắng"
+ },
+ "bn": {
+ "summary": "একই রঙের সারি তৈরির জন্য প্রতিযোগিতা করুন"
+ }
+ },
+ "project_license": "GPL-3.0+",
+ "is_free_license": true,
+ "app_id": "org.gnome.Four-in-a-row",
+ "icon": "https://dl.flathub.org/media/org/gnome/Four-in-a-row/9db3423484702a6fd18d97b0fc0a8ddc/icons/128x128/org.gnome.Four-in-a-row.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "LogicGame"
+ ],
+ "developer_name": "The GNOME Project",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.gnome.Platform/x86_64/46",
+ "updated_at": 1714834669,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1560614999,
+ "trending": 11.93474998122866,
+ "installs_last_month": 285,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Crossword Editor",
+ "keywords": [
+ "crossword",
+ "crossword editor",
+ "puzzle",
+ "puzzle editor",
+ "xword",
+ "ipuz",
+ "grid"
+ ],
+ "summary": "Create crossword puzzles",
+ "description": "\n A tool for authoring and editing pencil-and-paper style\n puzzles. Its features include:\n \n \n Supports multiple crossword types, including barred and cryptics\n Loads and saves .ipuz file format\n Style support for individual cells\n Suggests words when creating grids\n Hints for writing clues\n Autofill functionality\n Dictionary of words for writing clues\n \n ",
+ "id": "org_gnome_Crosswords_Editor",
+ "type": "desktop-application",
+ "translations": {
+ "es": {
+ "description": "Crear y editar crucigramas como los de lápiz y papel. La funcionalidad incluye:\n \n Soporta varios tipos de crucigramas, incluye con barras y crípticos\n Puede cargar y guardar archivos en formato .ipuz\n Soporte para estilos en casillas individuales\n Sugiere palabras al crear cuadrículas\n Ayuda al escribir pistas\n Función de auto-rellenado\n Diccionario de palabras para escribir pistas\n \n ",
+ "name": "Editor de Crucigramas",
+ "summary": "Crear crucigramas"
+ },
+ "fr": {
+ "description": "\n Prise en charge de multiples types de mots-croisés, y compris les mots-barrés et les mots cryptés\n Chargement et enregistrement vers le format de fichier .ipuz\n Suggestion de mots lors de la création de grilles\n Indications pour écrire les indices\n \n ",
+ "name": "Éditeur de Mots croisés",
+ "summary": "Créez des mots croisés"
+ },
+ "it": {
+ "description": "Un programma per creare e modificare puzzle simili a quelli cartacei. Le funzionalità includono:\n \n Supporta diversi tipi di parole crociate, incluse parole crociate a filetti e criptiche\n Carica e salva file in formato .ipuz\n Suggerisce parole durante la creazione di griglie\n Suggerimenti per scrivere le definizioni\n Completamento automatico\n Dizionario di parole per scrivere le definizioni\n \n ",
+ "name": "Editor di parole crociate",
+ "summary": "Crea parole crociate"
+ },
+ "nl": {
+ "description": "\n Ondersteuning voor meerdere typen kruiswoordpuzzels, inclusief balkjespuzzels en cryprogrammen\n Laden en opslaan in het bestandsformaat .ipuz\n Suggereert woorden bij het maken van rasters\n Tips voor het schrijven van omschrijvingen\n \n ",
+ "name": "Kruiswoordpuzzelbewerker",
+ "summary": "Maak kruiswoordpuzzels"
+ }
+ },
+ "project_license": "GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "org.gnome.Crosswords.Editor",
+ "icon": "https://dl.flathub.org/media/org/gnome/Crosswords.Editor/dd0b14d0738d6afdf5624061e136f502/icons/128x128/org.gnome.Crosswords.Editor.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "LogicGame",
+ "Construction"
+ ],
+ "developer_name": "Jonathan Blandford",
+ "verification_verified": true,
+ "verification_method": "login_provider",
+ "verification_login_name": "jrb",
+ "verification_login_provider": "gnome",
+ "verification_login_is_organization": "false",
+ "verification_website": null,
+ "verification_timestamp": "1713537516",
+ "runtime": "org.gnome.Platform/x86_64/47",
+ "updated_at": 1737480974,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1693467937,
+ "trending": 12.77329979814524,
+ "installs_last_month": 252,
"isMobileFriendly": false
},
{
@@ -39271,73 +39336,79 @@
"aarch64"
],
"added_at": 1539070827,
- "trending": 2.0151509055754673,
- "installs_last_month": 252,
+ "trending": 0.5801503705726981,
+ "installs_last_month": 251,
"isMobileFriendly": false
},
{
- "name": "Crossword Editor",
- "keywords": [
- "crossword",
- "crossword editor",
- "puzzle",
- "puzzle editor",
- "xword",
- "ipuz",
- "grid"
- ],
- "summary": "Create crossword puzzles",
- "description": "\n A tool for authoring and editing pencil-and-paper style\n puzzles. Its features include:\n \n \n Supports multiple crossword types, including barred and cryptics\n Loads and saves .ipuz file format\n Style support for individual cells\n Suggests words when creating grids\n Hints for writing clues\n Autofill functionality\n Dictionary of words for writing clues\n \n ",
- "id": "org_gnome_Crosswords_Editor",
+ "name": "Animatch",
+ "keywords": null,
+ "summary": "Match 3 with cute animals",
+ "description": "\n Solve match-three puzzles with birds, bees, kittens, frogs,\n fish and ladybugs on top of a calming autumn landscape.\n \n \n Animatch is designed to provide a bite-sized challenge to take\n on whenever you need something to occupy your mind with.\n \n ",
+ "id": "com_holypangolin_Animatch",
"type": "desktop-application",
- "translations": {
- "es": {
- "description": "Crear y editar crucigramas como los de lápiz y papel. La funcionalidad incluye:\n \n Soporta varios tipos de crucigramas, incluye con barras y crípticos\n Puede cargar y guardar archivos en formato .ipuz\n Soporte para estilos en casillas individuales\n Sugiere palabras al crear cuadrículas\n Ayuda al escribir pistas\n Función de auto-rellenado\n Diccionario de palabras para escribir pistas\n \n ",
- "name": "Editor de Crucigramas",
- "summary": "Crear crucigramas"
- },
- "fr": {
- "description": "\n Prise en charge de multiples types de mots-croisés, y compris les mots-barrés et les mots cryptés\n Chargement et enregistrement vers le format de fichier .ipuz\n Suggestion de mots lors de la création de grilles\n Indications pour écrire les indices\n \n ",
- "name": "Éditeur de Mots croisés",
- "summary": "Créez des mots croisés"
- },
- "it": {
- "description": "Un programma per creare e modificare puzzle simili a quelli cartacei. Le funzionalità includono:\n \n Supporta diversi tipi di parole crociate, incluse parole crociate a filetti e criptiche\n Carica e salva file in formato .ipuz\n Suggerisce parole durante la creazione di griglie\n Suggerimenti per scrivere le definizioni\n Completamento automatico\n Dizionario di parole per scrivere le definizioni\n \n ",
- "name": "Editor di parole crociate",
- "summary": "Crea parole crociate"
- },
- "nl": {
- "description": "\n Ondersteuning voor meerdere typen kruiswoordpuzzels, inclusief balkjespuzzels en cryprogrammen\n Laden en opslaan in het bestandsformaat .ipuz\n Suggereert woorden bij het maken van rasters\n Tips voor het schrijven van omschrijvingen\n \n ",
- "name": "Kruiswoordpuzzelbewerker",
- "summary": "Maak kruiswoordpuzzels"
- }
- },
- "project_license": "GPL-3.0-or-later",
+ "translations": {},
+ "project_license": "GPL-3.0+",
"is_free_license": true,
- "app_id": "org.gnome.Crosswords.Editor",
- "icon": "https://dl.flathub.org/media/org/gnome/Crosswords.Editor/dd0b14d0738d6afdf5624061e136f502/icons/128x128/org.gnome.Crosswords.Editor.png",
+ "app_id": "com.holypangolin.Animatch",
+ "icon": "https://dl.flathub.org/media/com/holypangolin/Animatch/3bb72d5e86b08ba804faf995d57d286d/icons/128x128/com.holypangolin.Animatch.png",
"main_categories": "game",
"sub_categories": [
- "LogicGame",
- "Construction"
+ "LogicGame"
],
- "developer_name": "Jonathan Blandford",
+ "developer_name": "Holy Pangolin",
"verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "jrb",
- "verification_login_provider": "gnome",
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
"verification_login_is_organization": "false",
- "verification_website": null,
- "verification_timestamp": "1713537516",
- "runtime": "org.gnome.Platform/x86_64/47",
- "updated_at": 1737480974,
+ "verification_website": "holypangolin.com",
+ "verification_timestamp": "1712528303",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1712517753,
"arches": [
"x86_64",
"aarch64"
],
- "added_at": 1693467937,
- "trending": 16.64300728355211,
- "installs_last_month": 250,
+ "added_at": 1712526584,
+ "trending": 11.846342297017618,
+ "installs_last_month": 242,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Anagramarama",
+ "keywords": null,
+ "summary": "Make words from a jumble of letters",
+ "description": "\n Anagramarama is a simple wordgame in which one tries to guess all the different\n permutations of a scrambled word which form another word within the\n time limit. Guess the original word and you move on to the next\n level.\n \n ",
+ "id": "com_identicalsoftware_anagramarama",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0+",
+ "is_free_license": true,
+ "app_id": "com.identicalsoftware.anagramarama",
+ "icon": "https://dl.flathub.org/media/com/identicalsoftware/anagramarama/2ddb6634f631d88a25feb651b0f4f538/icons/128x128/com.identicalsoftware.anagramarama.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "KidsGame",
+ "LogicGame"
+ ],
+ "developer_name": "Identical Games",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1742737098,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1664959783,
+ "trending": 11.464102574436216,
+ "installs_last_month": 236,
"isMobileFriendly": false
},
{
@@ -39567,79 +39638,8 @@
"aarch64"
],
"added_at": 1569571383,
- "trending": 7.677406506396325,
- "installs_last_month": 246,
- "isMobileFriendly": false
- },
- {
- "name": "Anagramarama",
- "keywords": null,
- "summary": "Make words from a jumble of letters",
- "description": "\n Anagramarama is a simple wordgame in which one tries to guess all the different\n permutations of a scrambled word which form another word within the\n time limit. Guess the original word and you move on to the next\n level.\n \n ",
- "id": "com_identicalsoftware_anagramarama",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0+",
- "is_free_license": true,
- "app_id": "com.identicalsoftware.anagramarama",
- "icon": "https://dl.flathub.org/media/com/identicalsoftware/anagramarama/2ddb6634f631d88a25feb651b0f4f538/icons/128x128/com.identicalsoftware.anagramarama.png",
- "main_categories": "game",
- "sub_categories": [
- "KidsGame",
- "LogicGame"
- ],
- "developer_name": "Identical Games",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1742737098,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1664959783,
- "trending": 14.54259674213587,
- "installs_last_month": 236,
- "isMobileFriendly": false
- },
- {
- "name": "Animatch",
- "keywords": null,
- "summary": "Match 3 with cute animals",
- "description": "\n Solve match-three puzzles with birds, bees, kittens, frogs,\n fish and ladybugs on top of a calming autumn landscape.\n \n \n Animatch is designed to provide a bite-sized challenge to take\n on whenever you need something to occupy your mind with.\n \n ",
- "id": "com_holypangolin_Animatch",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0+",
- "is_free_license": true,
- "app_id": "com.holypangolin.Animatch",
- "icon": "https://dl.flathub.org/media/com/holypangolin/Animatch/3bb72d5e86b08ba804faf995d57d286d/icons/128x128/com.holypangolin.Animatch.png",
- "main_categories": "game",
- "sub_categories": [
- "LogicGame"
- ],
- "developer_name": "Holy Pangolin",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "holypangolin.com",
- "verification_timestamp": "1712528303",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1712517753,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1712526584,
- "trending": 17.692764248449258,
- "installs_last_month": 236,
+ "trending": 9.635122020605422,
+ "installs_last_month": 234,
"isMobileFriendly": false
},
{
@@ -39843,8 +39843,8 @@
"aarch64"
],
"added_at": 1569573968,
- "trending": 15.529095809821072,
- "installs_last_month": 213,
+ "trending": 14.807822349537297,
+ "installs_last_month": 200,
"isMobileFriendly": false
},
{
@@ -39882,246 +39882,8 @@
"aarch64"
],
"added_at": 1638174046,
- "trending": 10.30632960740006,
- "installs_last_month": 194,
- "isMobileFriendly": false
- },
- {
- "name": "Kubrick",
- "keywords": null,
- "summary": "3-D Game based on Rubik's Cube",
- "description": "\n Kubrick is a game based on the Rubik's Cube™ puzzle. The cube sizes range\n from 2x2x2 up to 6x6x6, or you can play with irregular \"bricks\" such as 5x3x2\n or \"mats\" such as 6x4x1 or 2x2x1. The game has a selection of puzzles at\n several levels of difficulty, as well as demos of pretty patterns and\n solution moves, or you can make up your own puzzles.\n \n ",
- "id": "org_kde_kubrick",
- "type": "desktop-application",
- "translations": {
- "ca": {
- "description": "El Kubrick és un joc basat en el puzle del Cub de Rubik™. L'interval de mides del cub és des de 2x2x2 a 6x6x6, o es pot jugar amb «maons» irregulars com 5x3x2 o «mats» com 6x4x1 o 2x2x1. El joc té una selecció de trencaclosques de diversos nivells de dificultat, així com demostracions amb patrons interessants i moviments de solució, o es poden construir trencaclosques propis.\n ",
- "name": "Kubrick",
- "summary": "Joc en 3D basat en el cub de Rubik"
- },
- "da": {
- "description": "Kubrick er et spil baseret på Rubik's Cube™-gådelegetøjet. Terningens størrelse varierer fra 2x2x2 op til 6x6x6, eller du kan lege med uregelmæssige \"terninger\" såsom 5x3x2 eller \"måtter\" såsom 6x4x1 eller 2x2x1. Spillet har et udvalg af gådespil med forskellige sværhedsgrader, såvel som demoer af flotte mønstre og løsningstræk, eller du kan opfinde dine egne gådespil.\n ",
- "name": "Kubrick",
- "summary": "3D-spil baseret på Rubiks terning"
- },
- "de": {
- "description": "Kubrick basiert auf Rubiks Würfel™. Es sind Würfel mit einer Kantenlänge von 2×2×2 bis 6×6×6, Quader (z. B. 5×3×2) oder Matten (z. B. 6×4×1 oder 2×2×1) wählbar. Das Spiel bietet eine Auswahl verschieden-verdrehter Würfel bei unterschiedlichen Schwierigkeitsgraden und Demos von schönen Würfel und Lösungsversuche. Es können auch eigene Würfel erstellt werden.\n ",
- "name": "Kubrick",
- "summary": "3D-Spiel wie „Rubiks Würfel“"
- },
- "el": {
- "description": "Το Kubrick είναι ένα παιχνίδι με βάση το γρίφο Rubik's Cube™. Το εύρος μεγεθών του κύβου είναι από 2x2x2 έως 6x6x6 ή μπορείτε ακόμη να παίξετε και με ακανόνιστα «τούβλα» όπως 5x3x2 ή «πατάκια» 6x4x1 ή 2x2x1. Το παιχνίδι έχει μια επιλογή γρίφων σε διάφορα επίπεδα δυσκολίας, καθώς επίσης και παρουσιάσεις όμορφων μοτίβων και κινήσεων επίλυσης, ή να σχεδιάσετε το δικό σας γρίφο.\n ",
- "name": "Kubrick",
- "summary": "Τρισδιάστατο παιχνίδι με βάση τον κύβο του Ρούμπικ"
- },
- "en-GB": {
- "description": "Kubrick is a game based on the Rubik's Cube™ puzzle. The cube sizes range from 2x2x2 up to 6x6x6, or you can play with irregular \"bricks\" such as 5x3x2 or \"mats\" such as 6x4x1 or 2x2x1. The game has a selection of puzzles at several levels of difficulty, as well as demos of pretty patterns and solution moves, or you can make up your own puzzles.\n ",
- "name": "Kubrick",
- "summary": "3-D Game based on Rubik's Cube"
- },
- "eo": {
- "description": "Kubrick estas ludo bazita sur la enigmo de Rubik's Cube™. La grandecoj de la kubo varias de 2x2x2 ĝis 6x6x6, aŭ vi povas ludi per neregulaj \"brikoj\" kiel 5x3x2 aŭ \"matoj\" kiel 6x4x1 aŭ 2x2x1. La ludo havas elekton de enigmoj je pluraj niveloj de malfacileco, kaj ankaŭ demonstraĵojn de belaj ŝablonoj kaj solvomovoj, aŭ vi povas elpensi viajn proprajn enigmojn.\n ",
- "name": "Kubrick",
- "summary": "3-D-ludo bazita sur Rubik-Kubo"
- },
- "es": {
- "description": "Kubrick es un juego basado en el rompecabezas del Cubo de Rubik™. El tamaño del cubo puede variar entre 2x2x2 y 6x6x6, aunque también puede jugar con «ladrillos» irregulares (como 5x3x2) o de tipo «alfombra» (como 6x4x1 o 2x2x1). El juego contiene una selección de rompecabezas de varios niveles de dificultad, así como demostraciones de diseños interesantes y movimientos de solución. También puede crear sus propios rompecabezas.\n ",
- "name": "Kubrick",
- "summary": "Juego 3D basado en el cubo de Rubik"
- },
- "et": {
- "description": "Kubrick põhineb kogu maailmas tuntud Rubiku kuubikul. Kuubiku suurus võib olla vahemikus 2x2x2 kui 6x6x6, mängida võib ebakorrapäraste \"tahukatega\", näiteks 5x3x2, või ka \"tasapindadega\", näiteks 6x4x1 või 2x2x1. Mängus saab valida mitme raskusastme vahel, samuti saab demode abil uurida kauneid mustreid ja lahenduskäike, soovi korral võib aga kuubiku päris ise koostada.\n ",
- "name": "Kubrick",
- "summary": "3-D mäng, mille eeskujuks on Rubiku kuubik"
- },
- "fi": {
- "description": "Kubrick on Rubikin kuutioon perustuva peli. Kuution koko vaihtelee 2 × 2 × 2:sta 6 × 6 × 6:een. Voit myös pelata epäsäännöllisin 5 × 3 × 2 ”lohkoin” tai 6 × 4 × 1 tai 2 × 2 × 1 ”matoin”. Pelissä on valikoima vaikeudeltaan eritasoisia tehtäviä samoin kuin demoja asetelmista tai ratkaisusiirroista. Voit myös luoda omia tehtäviäsi.\n ",
- "name": "Kubrick",
- "summary": "Rubikin kuutioon perustuva kolmiulotteinen peli"
- },
- "fr": {
- "description": "Kubrick est un jeu inspiré du casse-tête Rubik's Cube™. Les tailles des cubes vont de 2x2x2 à 6x6x6, vous pouvez également jouer avec des « prismes », par exemple de 5x3x2, 6x4x1 ou 2x2x1. Le jeu propose une sélection de casse-têtes de différentes difficultés, ainsi que des démonstrations des solutions et d'autres motifs originaux, vous pouvez également construire vos propres casse-têtes.\n ",
- "name": "Kubrick",
- "summary": "Jeu 3D inspiré du Rubik's Cube"
- },
- "he": {
- "description": "קובייה הונגרית הוא מסמך שמבוסס על חידת Rubik's Cube™. גודלי הקובייה נעים בין 2×2×2 עד 6×6×6, או שאפשר לשחק בקוביות מוזרות כגון 5×3×2 או משטחים כגון 6×4×1 או 2×2×1. במשחק יש מגוון חידות במגוון רמות קושי, לרבות דוגמאות של תבניות יפות ומהלכי פתרון, או שאפשר להמציע חידות משלך.\n ",
- "name": "קובייה הונגרית",
- "summary": "משחק תלת־ממדי שמבוסס על משחק הקובייה ההונגרית (Rubik's Cube)"
- },
- "hu": {
- "description": "A Kubrick egy, a Rubik-kockán™ alapuló kirakós játék. A kocka méretei a 2x2x2-től a 6x6x6-ig terjednek, de játszhat szabálytalan „téglákkal” is, például 5x3x2-esekkel, vagy „szőnyegekkel”, például 6x4x1-es vagy 2x2x1-es méretűekkel. A játékban többféle nehézségi fokozatú rejtvények, valamint szép minták és megoldási lépések demói találhatók, de saját rejtvényeket is kitalálhat.\n ",
- "name": "Kubrick",
- "summary": "A Rubik kockán alapuló 3D-s játék"
- },
- "id": {
- "description": "Kubrick adalah permainan berdasarkan pada permainan teka-teki Rubik's Cube™. Jarak ukuran kubus dari 2x2x2 sampai 6x6x6, atau kamu bisa memainkan dengan sembarang \"bricks\" seperti 5x3x2 atau \"mats\" seperti 6x4x1 atau 2x2x1. Permainan harus memilih teka-teki di beberapa level sulit, begitu juga demo-demo dari pola-pola yang cantik.\n ",
- "name": "Kubrick",
- "summary": "Permainan 3-D berdasarkan pada Rubik's Cube"
- },
- "it": {
- "description": "Kubrick è un gioco basato sul cubo di Rubik™. Le dimensioni del cubo variano da 2x2x2 fino a 6x6x6, oppure si può giocare con «mattonelle» fino a 5x3x2 o «piatti» come 6x4x1 o 2x2x1. Il gioco contiene una selezione di rompicapi a diversi livelli di difficoltà, così come dimostrazioni di mosse interessanti e gradevoli e di soluzioni, oppure puoi costruire dei rompicapi come preferisci.\n ",
- "name": "Kubrick",
- "summary": "Gioco 3-D basato sul cubo di Rubik"
- },
- "ko": {
- "description": "Kubrick은 루빅스 큐브 퍼즐 기반 게임입니다. 최소 2x2x2부터 최대 6x6x6까지 정육면체 큐브나, 5x3x2 등 크기의 비정형 \"벽돌\"이나 6x4x1 또는 2x2x1 크기의 \"매트\"가 될 수도 있습니다. 게임에는 여러 다양한 난이도가 있으며, 흥미있는 패턴과 풀이법을 표시하는 데모 모드를 지원합니다. 사용자 정의 퍼즐을 만들 수도 있습니다.\n ",
- "name": "Kubrick",
- "summary": "루빅스 큐브 기반 3D 게임"
- },
- "nl": {
- "description": "Kubrick is een spel gebaseerd op de Rubik's Cube™ puzzel. De afmetingen van de kubus variëren van 2x2x2 tot aan 6x6x6, maar u kunt ook met onregelmatige \"stenen\" zoals 5x3x2 of \"matten\" zoals 6x4x1 of 2x2x1 spelen. Het spel heeft een verzameling puzzels met verschillende moeilijkheidsgraden, maar ook demo´s van mooie patronen en oplossingen, maar u kunt ook uw eigen puzzels maken.\n ",
- "name": "Kubrick",
- "summary": "3D-spel gebaseerd op de Rubik's kubus"
- },
- "pl": {
- "description": "Kubrick jest grą opartą na układance Kostki Rubika™. Rozmiary kostki są w zakresie od 2x2x2 aż do 6x6x6, ale można także grać 'nieforemnymi' kostkami takimi jak 5x3x2 lub \"matami\" takimi jak 6x4x1 lub 2x2x1. Gra zawiera wybór układanek na kilku poziomach trudności, a także dema ładnych wzorów i ruchów rozwiązujących. Jest także możliwość stworzenia własnej układanki.\n ",
- "name": "Kubrick",
- "summary": "Gra 3-D oparta na kostce Rubika"
- },
- "pt": {
- "description": "O Kubrick é um jogo baseado no 'puzzle' Cubo de Rubik™. Os tamanhos dos cubos variam de 2x2x2 até 6x6x6, ou então poderá lidar com \"tijolos\" irregulares, como o 5x3x2 ou \"tabletes\" do tipo 6x4x1 ou 2x2x1. O jogo tem uma selecção de 'puzzles' com diferentes níveis de dificuldade, assim como demonstração de padrões bonitos e jogadas de solução, podendo você também criar os seus próprios 'puzzles'.\n ",
- "name": "kubrick",
- "summary": "Jogo 3-D baseado no Cubo de Rubik"
- },
- "pt-BR": {
- "description": "Kubrick é um jogo baseado no puzzle do Cubo de Rubik™ ou também conhecido como Cubo Mágico. Os tamanhos dos cubos variam de 2x2x2 até 6x6x6, podendo também jogar com \"tijolos\" irregulares, como o 5x3x2 ou \"tabletes\" como o 6x4x1 ou 2x2x1. O jogo tem uma seleção de puzzles com diversos níveis de dificuldade, assim como demonstrações de padrões bonitos e solução de jogadas, podendo também criar os seus próprios puzzles.\n ",
- "name": "Kubrick",
- "summary": "Um jogo 3-D baseado no Cubo Mágico de Rubik"
- },
- "ru": {
- "description": "Kubrick — игра на основе кубика Рубика. Доступны размеры кубика от 2x2x2 до 6x6x6, а также возможно играть с неровными «брусками» (например, 5x3x2) или «плоскостями» (например, 6x4x1 или 2x2x1). В игре представлен набор головоломок для нескольких уровней сложности, а также демонстрации интересных шаблонов и хода решения. Кроме того, поддерживается создание пользовательских головоломок.\n ",
- "name": "Kubrick",
- "summary": "Трёхмерная игра, основанная на кубике Рубика"
- },
- "sv": {
- "description": "Kubrick är ett spel baserat på Rubiks Kub™. Kubstorlekarna går från 2 x 2 x 2 upp till 6 x 6 x 6, eller så kan man spela med oregelbundna \"tegelstenar\" såsom 5 x 3 x 2, eller \"mattor\" såsom 6 x 4 x 1 eller 2 x 2 x 1. Programmet innehåller ett urval av spel med flera svårighetsnivåer, samt demonstrationer av vackra mönster och lösningar, eller så kan man skapa egna spel.\n ",
- "name": "Kubrick",
- "summary": "Tredimensionellt spel baserat på Rubiks kub"
- },
- "tr": {
- "description": "Kubrick, Rubik's Cube™ bulmacasına dayanan bir oyundur. Küp boyutları 2x2x2 ila 6x6x6 arasında değişebilir veya 5x3x2 gibi düzensiz \"tuğlalar\" veya 6x4x1 veya 2x2x1 gibi \"paspaslar\" ile oynayabilirsiniz. Oyunun çeşitli zorluk düzeylerde bulmacalar yanısıra, güzel desen ve çözüm hamleli demolar oynayabilir veya kendi bulmacanızı yapabilirsiniz.\n ",
- "name": "Kubrick",
- "summary": "3B Rubik Küpü Temelli Oyun"
- },
- "uk": {
- "description": "Kubrick — це гра, яку засновано на головоломці Кубик Рубіка™. Розміри кубика можуть змінюватися у межах від 2x2x2 до 6x6x6, крім того, ви можете грати з неправильними «цеглинками», з розмірами на зразок 5x3x2, або «килимками», з розмірами на зразок 6x4x1 або 2x2x1. У цій грі ви можете обирати головоломки декількох рівнів складності, спостерігати за демонстрацією чудових візерунків та обертань розв’язання та створювати власні головоломки.\n ",
- "name": "Kubrick",
- "summary": "Просторова гра, заснована на кубику Рубіка"
- },
- "zh-Hant": {
- "description": "Kubrick 是基於魔術方塊(Rubik's Cube™)的益智遊戲。方塊大小可以是 2x2x2 到 6x6x6 之間的任何大小,讓您可以玩 5x3x2 的「磚頭」或是 6x4x1 或 2x2x1 的「地毯」。遊戲提供多個難度的關卡,以及樣式的範例與解答;您也可以建立自己的關卡。\n ",
- "name": "Kubrick",
- "summary": "立體的魔術方塊遊戲"
- },
- "ia": {
- "name": "Kubrick",
- "summary": "Joco de 3-D basate sur le Cubo de Rubik"
- },
- "cs": {
- "name": "Kubrick",
- "summary": "3D hra založená na Rubikově kostce"
- },
- "zh-Hans": {
- "name": "Kubrick",
- "summary": "三维魔方游戏"
- }
- },
- "project_license": "GPL-2.0+",
- "is_free_license": true,
- "app_id": "org.kde.kubrick",
- "icon": "https://dl.flathub.org/media/org/kde/kubrick.desktop/1b3f093d56adfe100e59f3a5e889492d/icons/128x128/org.kde.kubrick.desktop.png",
- "main_categories": "game",
- "sub_categories": [
- "LogicGame"
- ],
- "developer_name": "KDE",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "teams/flathub",
- "verification_login_provider": "kde",
- "verification_login_is_organization": "true",
- "verification_website": null,
- "verification_timestamp": "1681472540",
- "runtime": "org.kde.Platform/x86_64/6.8",
- "updated_at": 1741365976,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1537523426,
- "trending": 1.9567527885343243,
- "installs_last_month": 176,
- "isMobileFriendly": false
- },
- {
- "name": "Numpty Physics",
- "keywords": null,
- "summary": "A crayon-drawing based physics puzzle game",
- "description": "\n Harness gravity with your crayon and set about creating blocks, ramps,\n levers, pulleys and whatever else you fancy to get the little red thing\n to the little yellow thing.\n \n ",
- "id": "io_thp_numptyphysics",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0+",
- "is_free_license": true,
- "app_id": "io.thp.numptyphysics",
- "icon": "https://dl.flathub.org/media/io/thp/numptyphysics/3910f3d427dce37cad9f2efcf8c8c69f/icons/128x128/io.thp.numptyphysics.png",
- "main_categories": "game",
- "sub_categories": [
- "LogicGame"
- ],
- "developer_name": "Thomas Perl",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1736497903,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1492204126,
- "trending": 0.808771828721958,
- "installs_last_month": 171,
- "isMobileFriendly": false
- },
- {
- "name": "Simon Tatham's Portable Puzzle Collection",
- "keywords": null,
- "summary": "Puzzle game collection",
- "description": "Simon Tatham's Portable Puzzle Collection contains a number of popular puzzle games for a single player. It currently consists of these games:.Black Box, ball-finding puzzleBridges, bridge-placing puzzleCube, rolling cube puzzleDominosa, domino tiling puzzleFifteen, sliding block puzzleFilling, polyomino puzzleFlip, tile inversion puzzleGalaxies, symmetric polyomino puzzleGuess, combination-guessing puzzleInertia, gem-collecting puzzleKeen, arithmetic Latin square puzzleLight Up, light-bulb placing puzzleLoopy, loop-drawing puzzleMagnets, magnet-placing puzzleMap, map-colouring puzzleMosaic, number clues puzzle, similar to MinesMines, mine-finding puzzleNet, network jigsaw puzzleNetslide, toroidal sliding network puzzlePatternPearl, loop-drawing puzzlePegs, peg solitaire puzzleRange, visible-distance puzzleRectanglesSame Game, block-clearing puzzleSignpost, square-connecting puzzleSingles, number-removing puzzleSixteen, toroidal sliding block puzzleSlant, maze-drawing puzzleSolo, number placement puzzleTents, tent-placing puzzleTowers, tower-placing Latin square puzzleTwiddle, rotational sliding block puzzleUndead, monster-placing puzzleUnequal, Latin square puzzleUnruly, black and white grid puzzleUntangle, planar graph layout puzzle",
- "id": "uk_org_greenend_chiark_sgtatham_puzzles",
- "type": "desktop-application",
- "translations": {},
- "project_license": "MIT",
- "is_free_license": true,
- "app_id": "uk.org.greenend.chiark.sgtatham.puzzles",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/uk.org.greenend.chiark.sgtatham.puzzles.png",
- "main_categories": "game",
- "sub_categories": [
- "LogicGame"
- ],
- "developer_name": null,
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/22.08",
- "updated_at": 1681369992,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1681369628,
- "trending": 0.45899710404110183,
- "installs_last_month": 171,
+ "trending": 13.953525552696943,
+ "installs_last_month": 196,
"isMobileFriendly": false
},
{
@@ -40296,8 +40058,8 @@
"aarch64"
],
"added_at": 1535034062,
- "trending": 2.3132925887928115,
- "installs_last_month": 169,
+ "trending": 3.5844268920507334,
+ "installs_last_month": 176,
"isMobileFriendly": false
},
{
@@ -40331,8 +40093,246 @@
"aarch64"
],
"added_at": 1686726078,
- "trending": -0.8868704307018684,
- "installs_last_month": 168,
+ "trending": 2.329587173918428,
+ "installs_last_month": 173,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Numpty Physics",
+ "keywords": null,
+ "summary": "A crayon-drawing based physics puzzle game",
+ "description": "\n Harness gravity with your crayon and set about creating blocks, ramps,\n levers, pulleys and whatever else you fancy to get the little red thing\n to the little yellow thing.\n \n ",
+ "id": "io_thp_numptyphysics",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0+",
+ "is_free_license": true,
+ "app_id": "io.thp.numptyphysics",
+ "icon": "https://dl.flathub.org/media/io/thp/numptyphysics/3910f3d427dce37cad9f2efcf8c8c69f/icons/128x128/io.thp.numptyphysics.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "LogicGame"
+ ],
+ "developer_name": "Thomas Perl",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1736497903,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1492204126,
+ "trending": 4.303523525960391,
+ "installs_last_month": 172,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Kubrick",
+ "keywords": null,
+ "summary": "3-D Game based on Rubik's Cube",
+ "description": "\n Kubrick is a game based on the Rubik's Cube™ puzzle. The cube sizes range\n from 2x2x2 up to 6x6x6, or you can play with irregular \"bricks\" such as 5x3x2\n or \"mats\" such as 6x4x1 or 2x2x1. The game has a selection of puzzles at\n several levels of difficulty, as well as demos of pretty patterns and\n solution moves, or you can make up your own puzzles.\n \n ",
+ "id": "org_kde_kubrick",
+ "type": "desktop-application",
+ "translations": {
+ "ca": {
+ "description": "El Kubrick és un joc basat en el puzle del Cub de Rubik™. L'interval de mides del cub és des de 2x2x2 a 6x6x6, o es pot jugar amb «maons» irregulars com 5x3x2 o «mats» com 6x4x1 o 2x2x1. El joc té una selecció de trencaclosques de diversos nivells de dificultat, així com demostracions amb patrons interessants i moviments de solució, o es poden construir trencaclosques propis.\n ",
+ "name": "Kubrick",
+ "summary": "Joc en 3D basat en el cub de Rubik"
+ },
+ "da": {
+ "description": "Kubrick er et spil baseret på Rubik's Cube™-gådelegetøjet. Terningens størrelse varierer fra 2x2x2 op til 6x6x6, eller du kan lege med uregelmæssige \"terninger\" såsom 5x3x2 eller \"måtter\" såsom 6x4x1 eller 2x2x1. Spillet har et udvalg af gådespil med forskellige sværhedsgrader, såvel som demoer af flotte mønstre og løsningstræk, eller du kan opfinde dine egne gådespil.\n ",
+ "name": "Kubrick",
+ "summary": "3D-spil baseret på Rubiks terning"
+ },
+ "de": {
+ "description": "Kubrick basiert auf Rubiks Würfel™. Es sind Würfel mit einer Kantenlänge von 2×2×2 bis 6×6×6, Quader (z. B. 5×3×2) oder Matten (z. B. 6×4×1 oder 2×2×1) wählbar. Das Spiel bietet eine Auswahl verschieden-verdrehter Würfel bei unterschiedlichen Schwierigkeitsgraden und Demos von schönen Würfel und Lösungsversuche. Es können auch eigene Würfel erstellt werden.\n ",
+ "name": "Kubrick",
+ "summary": "3D-Spiel wie „Rubiks Würfel“"
+ },
+ "el": {
+ "description": "Το Kubrick είναι ένα παιχνίδι με βάση το γρίφο Rubik's Cube™. Το εύρος μεγεθών του κύβου είναι από 2x2x2 έως 6x6x6 ή μπορείτε ακόμη να παίξετε και με ακανόνιστα «τούβλα» όπως 5x3x2 ή «πατάκια» 6x4x1 ή 2x2x1. Το παιχνίδι έχει μια επιλογή γρίφων σε διάφορα επίπεδα δυσκολίας, καθώς επίσης και παρουσιάσεις όμορφων μοτίβων και κινήσεων επίλυσης, ή να σχεδιάσετε το δικό σας γρίφο.\n ",
+ "name": "Kubrick",
+ "summary": "Τρισδιάστατο παιχνίδι με βάση τον κύβο του Ρούμπικ"
+ },
+ "en-GB": {
+ "description": "Kubrick is a game based on the Rubik's Cube™ puzzle. The cube sizes range from 2x2x2 up to 6x6x6, or you can play with irregular \"bricks\" such as 5x3x2 or \"mats\" such as 6x4x1 or 2x2x1. The game has a selection of puzzles at several levels of difficulty, as well as demos of pretty patterns and solution moves, or you can make up your own puzzles.\n ",
+ "name": "Kubrick",
+ "summary": "3-D Game based on Rubik's Cube"
+ },
+ "eo": {
+ "description": "Kubrick estas ludo bazita sur la enigmo de Rubik's Cube™. La grandecoj de la kubo varias de 2x2x2 ĝis 6x6x6, aŭ vi povas ludi per neregulaj \"brikoj\" kiel 5x3x2 aŭ \"matoj\" kiel 6x4x1 aŭ 2x2x1. La ludo havas elekton de enigmoj je pluraj niveloj de malfacileco, kaj ankaŭ demonstraĵojn de belaj ŝablonoj kaj solvomovoj, aŭ vi povas elpensi viajn proprajn enigmojn.\n ",
+ "name": "Kubrick",
+ "summary": "3-D-ludo bazita sur Rubik-Kubo"
+ },
+ "es": {
+ "description": "Kubrick es un juego basado en el rompecabezas del Cubo de Rubik™. El tamaño del cubo puede variar entre 2x2x2 y 6x6x6, aunque también puede jugar con «ladrillos» irregulares (como 5x3x2) o de tipo «alfombra» (como 6x4x1 o 2x2x1). El juego contiene una selección de rompecabezas de varios niveles de dificultad, así como demostraciones de diseños interesantes y movimientos de solución. También puede crear sus propios rompecabezas.\n ",
+ "name": "Kubrick",
+ "summary": "Juego 3D basado en el cubo de Rubik"
+ },
+ "et": {
+ "description": "Kubrick põhineb kogu maailmas tuntud Rubiku kuubikul. Kuubiku suurus võib olla vahemikus 2x2x2 kui 6x6x6, mängida võib ebakorrapäraste \"tahukatega\", näiteks 5x3x2, või ka \"tasapindadega\", näiteks 6x4x1 või 2x2x1. Mängus saab valida mitme raskusastme vahel, samuti saab demode abil uurida kauneid mustreid ja lahenduskäike, soovi korral võib aga kuubiku päris ise koostada.\n ",
+ "name": "Kubrick",
+ "summary": "3-D mäng, mille eeskujuks on Rubiku kuubik"
+ },
+ "fi": {
+ "description": "Kubrick on Rubikin kuutioon perustuva peli. Kuution koko vaihtelee 2 × 2 × 2:sta 6 × 6 × 6:een. Voit myös pelata epäsäännöllisin 5 × 3 × 2 ”lohkoin” tai 6 × 4 × 1 tai 2 × 2 × 1 ”matoin”. Pelissä on valikoima vaikeudeltaan eritasoisia tehtäviä samoin kuin demoja asetelmista tai ratkaisusiirroista. Voit myös luoda omia tehtäviäsi.\n ",
+ "name": "Kubrick",
+ "summary": "Rubikin kuutioon perustuva kolmiulotteinen peli"
+ },
+ "fr": {
+ "description": "Kubrick est un jeu inspiré du casse-tête Rubik's Cube™. Les tailles des cubes vont de 2x2x2 à 6x6x6, vous pouvez également jouer avec des « prismes », par exemple de 5x3x2, 6x4x1 ou 2x2x1. Le jeu propose une sélection de casse-têtes de différentes difficultés, ainsi que des démonstrations des solutions et d'autres motifs originaux, vous pouvez également construire vos propres casse-têtes.\n ",
+ "name": "Kubrick",
+ "summary": "Jeu 3D inspiré du Rubik's Cube"
+ },
+ "he": {
+ "description": "קובייה הונגרית הוא מסמך שמבוסס על חידת Rubik's Cube™. גודלי הקובייה נעים בין 2×2×2 עד 6×6×6, או שאפשר לשחק בקוביות מוזרות כגון 5×3×2 או משטחים כגון 6×4×1 או 2×2×1. במשחק יש מגוון חידות במגוון רמות קושי, לרבות דוגמאות של תבניות יפות ומהלכי פתרון, או שאפשר להמציע חידות משלך.\n ",
+ "name": "קובייה הונגרית",
+ "summary": "משחק תלת־ממדי שמבוסס על משחק הקובייה ההונגרית (Rubik's Cube)"
+ },
+ "hu": {
+ "description": "A Kubrick egy, a Rubik-kockán™ alapuló kirakós játék. A kocka méretei a 2x2x2-től a 6x6x6-ig terjednek, de játszhat szabálytalan „téglákkal” is, például 5x3x2-esekkel, vagy „szőnyegekkel”, például 6x4x1-es vagy 2x2x1-es méretűekkel. A játékban többféle nehézségi fokozatú rejtvények, valamint szép minták és megoldási lépések demói találhatók, de saját rejtvényeket is kitalálhat.\n ",
+ "name": "Kubrick",
+ "summary": "A Rubik kockán alapuló 3D-s játék"
+ },
+ "id": {
+ "description": "Kubrick adalah permainan berdasarkan pada permainan teka-teki Rubik's Cube™. Jarak ukuran kubus dari 2x2x2 sampai 6x6x6, atau kamu bisa memainkan dengan sembarang \"bricks\" seperti 5x3x2 atau \"mats\" seperti 6x4x1 atau 2x2x1. Permainan harus memilih teka-teki di beberapa level sulit, begitu juga demo-demo dari pola-pola yang cantik.\n ",
+ "name": "Kubrick",
+ "summary": "Permainan 3-D berdasarkan pada Rubik's Cube"
+ },
+ "it": {
+ "description": "Kubrick è un gioco basato sul cubo di Rubik™. Le dimensioni del cubo variano da 2x2x2 fino a 6x6x6, oppure si può giocare con «mattonelle» fino a 5x3x2 o «piatti» come 6x4x1 o 2x2x1. Il gioco contiene una selezione di rompicapi a diversi livelli di difficoltà, così come dimostrazioni di mosse interessanti e gradevoli e di soluzioni, oppure puoi costruire dei rompicapi come preferisci.\n ",
+ "name": "Kubrick",
+ "summary": "Gioco 3-D basato sul cubo di Rubik"
+ },
+ "ko": {
+ "description": "Kubrick은 루빅스 큐브 퍼즐 기반 게임입니다. 최소 2x2x2부터 최대 6x6x6까지 정육면체 큐브나, 5x3x2 등 크기의 비정형 \"벽돌\"이나 6x4x1 또는 2x2x1 크기의 \"매트\"가 될 수도 있습니다. 게임에는 여러 다양한 난이도가 있으며, 흥미있는 패턴과 풀이법을 표시하는 데모 모드를 지원합니다. 사용자 정의 퍼즐을 만들 수도 있습니다.\n ",
+ "name": "Kubrick",
+ "summary": "루빅스 큐브 기반 3D 게임"
+ },
+ "nl": {
+ "description": "Kubrick is een spel gebaseerd op de Rubik's Cube™ puzzel. De afmetingen van de kubus variëren van 2x2x2 tot aan 6x6x6, maar u kunt ook met onregelmatige \"stenen\" zoals 5x3x2 of \"matten\" zoals 6x4x1 of 2x2x1 spelen. Het spel heeft een verzameling puzzels met verschillende moeilijkheidsgraden, maar ook demo´s van mooie patronen en oplossingen, maar u kunt ook uw eigen puzzels maken.\n ",
+ "name": "Kubrick",
+ "summary": "3D-spel gebaseerd op de Rubik's kubus"
+ },
+ "pl": {
+ "description": "Kubrick jest grą opartą na układance Kostki Rubika™. Rozmiary kostki są w zakresie od 2x2x2 aż do 6x6x6, ale można także grać 'nieforemnymi' kostkami takimi jak 5x3x2 lub \"matami\" takimi jak 6x4x1 lub 2x2x1. Gra zawiera wybór układanek na kilku poziomach trudności, a także dema ładnych wzorów i ruchów rozwiązujących. Jest także możliwość stworzenia własnej układanki.\n ",
+ "name": "Kubrick",
+ "summary": "Gra 3-D oparta na kostce Rubika"
+ },
+ "pt": {
+ "description": "O Kubrick é um jogo baseado no 'puzzle' Cubo de Rubik™. Os tamanhos dos cubos variam de 2x2x2 até 6x6x6, ou então poderá lidar com \"tijolos\" irregulares, como o 5x3x2 ou \"tabletes\" do tipo 6x4x1 ou 2x2x1. O jogo tem uma selecção de 'puzzles' com diferentes níveis de dificuldade, assim como demonstração de padrões bonitos e jogadas de solução, podendo você também criar os seus próprios 'puzzles'.\n ",
+ "name": "kubrick",
+ "summary": "Jogo 3-D baseado no Cubo de Rubik"
+ },
+ "pt-BR": {
+ "description": "Kubrick é um jogo baseado no puzzle do Cubo de Rubik™ ou também conhecido como Cubo Mágico. Os tamanhos dos cubos variam de 2x2x2 até 6x6x6, podendo também jogar com \"tijolos\" irregulares, como o 5x3x2 ou \"tabletes\" como o 6x4x1 ou 2x2x1. O jogo tem uma seleção de puzzles com diversos níveis de dificuldade, assim como demonstrações de padrões bonitos e solução de jogadas, podendo também criar os seus próprios puzzles.\n ",
+ "name": "Kubrick",
+ "summary": "Um jogo 3-D baseado no Cubo Mágico de Rubik"
+ },
+ "ru": {
+ "description": "Kubrick — игра на основе кубика Рубика. Доступны размеры кубика от 2x2x2 до 6x6x6, а также возможно играть с неровными «брусками» (например, 5x3x2) или «плоскостями» (например, 6x4x1 или 2x2x1). В игре представлен набор головоломок для нескольких уровней сложности, а также демонстрации интересных шаблонов и хода решения. Кроме того, поддерживается создание пользовательских головоломок.\n ",
+ "name": "Kubrick",
+ "summary": "Трёхмерная игра, основанная на кубике Рубика"
+ },
+ "sv": {
+ "description": "Kubrick är ett spel baserat på Rubiks Kub™. Kubstorlekarna går från 2 x 2 x 2 upp till 6 x 6 x 6, eller så kan man spela med oregelbundna \"tegelstenar\" såsom 5 x 3 x 2, eller \"mattor\" såsom 6 x 4 x 1 eller 2 x 2 x 1. Programmet innehåller ett urval av spel med flera svårighetsnivåer, samt demonstrationer av vackra mönster och lösningar, eller så kan man skapa egna spel.\n ",
+ "name": "Kubrick",
+ "summary": "Tredimensionellt spel baserat på Rubiks kub"
+ },
+ "tr": {
+ "description": "Kubrick, Rubik's Cube™ bulmacasına dayanan bir oyundur. Küp boyutları 2x2x2 ila 6x6x6 arasında değişebilir veya 5x3x2 gibi düzensiz \"tuğlalar\" veya 6x4x1 veya 2x2x1 gibi \"paspaslar\" ile oynayabilirsiniz. Oyunun çeşitli zorluk düzeylerde bulmacalar yanısıra, güzel desen ve çözüm hamleli demolar oynayabilir veya kendi bulmacanızı yapabilirsiniz.\n ",
+ "name": "Kubrick",
+ "summary": "3B Rubik Küpü Temelli Oyun"
+ },
+ "uk": {
+ "description": "Kubrick — це гра, яку засновано на головоломці Кубик Рубіка™. Розміри кубика можуть змінюватися у межах від 2x2x2 до 6x6x6, крім того, ви можете грати з неправильними «цеглинками», з розмірами на зразок 5x3x2, або «килимками», з розмірами на зразок 6x4x1 або 2x2x1. У цій грі ви можете обирати головоломки декількох рівнів складності, спостерігати за демонстрацією чудових візерунків та обертань розв’язання та створювати власні головоломки.\n ",
+ "name": "Kubrick",
+ "summary": "Просторова гра, заснована на кубику Рубіка"
+ },
+ "zh-Hant": {
+ "description": "Kubrick 是基於魔術方塊(Rubik's Cube™)的益智遊戲。方塊大小可以是 2x2x2 到 6x6x6 之間的任何大小,讓您可以玩 5x3x2 的「磚頭」或是 6x4x1 或 2x2x1 的「地毯」。遊戲提供多個難度的關卡,以及樣式的範例與解答;您也可以建立自己的關卡。\n ",
+ "name": "Kubrick",
+ "summary": "立體的魔術方塊遊戲"
+ },
+ "ia": {
+ "name": "Kubrick",
+ "summary": "Joco de 3-D basate sur le Cubo de Rubik"
+ },
+ "cs": {
+ "name": "Kubrick",
+ "summary": "3D hra založená na Rubikově kostce"
+ },
+ "zh-Hans": {
+ "name": "Kubrick",
+ "summary": "三维魔方游戏"
+ }
+ },
+ "project_license": "GPL-2.0+",
+ "is_free_license": true,
+ "app_id": "org.kde.kubrick",
+ "icon": "https://dl.flathub.org/media/org/kde/kubrick.desktop/1b3f093d56adfe100e59f3a5e889492d/icons/128x128/org.kde.kubrick.desktop.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "LogicGame"
+ ],
+ "developer_name": "KDE",
+ "verification_verified": true,
+ "verification_method": "login_provider",
+ "verification_login_name": "teams/flathub",
+ "verification_login_provider": "kde",
+ "verification_login_is_organization": "true",
+ "verification_website": null,
+ "verification_timestamp": "1681472540",
+ "runtime": "org.kde.Platform/x86_64/6.8",
+ "updated_at": 1741365976,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1537523426,
+ "trending": 4.627600949672878,
+ "installs_last_month": 172,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Simon Tatham's Portable Puzzle Collection",
+ "keywords": null,
+ "summary": "Puzzle game collection",
+ "description": "Simon Tatham's Portable Puzzle Collection contains a number of popular puzzle games for a single player. It currently consists of these games:.Black Box, ball-finding puzzleBridges, bridge-placing puzzleCube, rolling cube puzzleDominosa, domino tiling puzzleFifteen, sliding block puzzleFilling, polyomino puzzleFlip, tile inversion puzzleGalaxies, symmetric polyomino puzzleGuess, combination-guessing puzzleInertia, gem-collecting puzzleKeen, arithmetic Latin square puzzleLight Up, light-bulb placing puzzleLoopy, loop-drawing puzzleMagnets, magnet-placing puzzleMap, map-colouring puzzleMosaic, number clues puzzle, similar to MinesMines, mine-finding puzzleNet, network jigsaw puzzleNetslide, toroidal sliding network puzzlePatternPearl, loop-drawing puzzlePegs, peg solitaire puzzleRange, visible-distance puzzleRectanglesSame Game, block-clearing puzzleSignpost, square-connecting puzzleSingles, number-removing puzzleSixteen, toroidal sliding block puzzleSlant, maze-drawing puzzleSolo, number placement puzzleTents, tent-placing puzzleTowers, tower-placing Latin square puzzleTwiddle, rotational sliding block puzzleUndead, monster-placing puzzleUnequal, Latin square puzzleUnruly, black and white grid puzzleUntangle, planar graph layout puzzle",
+ "id": "uk_org_greenend_chiark_sgtatham_puzzles",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "MIT",
+ "is_free_license": true,
+ "app_id": "uk.org.greenend.chiark.sgtatham.puzzles",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/uk.org.greenend.chiark.sgtatham.puzzles.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "LogicGame"
+ ],
+ "developer_name": null,
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/22.08",
+ "updated_at": 1681369992,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1681369628,
+ "trending": 1.618227973453314,
+ "installs_last_month": 169,
"isMobileFriendly": false
},
{
@@ -40369,8 +40369,8 @@
"aarch64"
],
"added_at": 1688971948,
- "trending": 5.483609338358836,
- "installs_last_month": 161,
+ "trending": 5.415898785521158,
+ "installs_last_month": 163,
"isMobileFriendly": false
},
{
@@ -40415,8 +40415,8 @@
"aarch64"
],
"added_at": 1693287851,
- "trending": 12.165281506798747,
- "installs_last_month": 158,
+ "trending": 13.309701415711473,
+ "installs_last_month": 159,
"isMobileFriendly": false
},
{
@@ -40531,8 +40531,8 @@
"aarch64"
],
"added_at": 1529732551,
- "trending": 8.505258607532241,
- "installs_last_month": 145,
+ "trending": 8.54953315986937,
+ "installs_last_month": 147,
"isMobileFriendly": false
},
{
@@ -40566,8 +40566,8 @@
"aarch64"
],
"added_at": 1697528684,
- "trending": 8.082221047223566,
- "installs_last_month": 143,
+ "trending": 13.083797323339072,
+ "installs_last_month": 146,
"isMobileFriendly": false
},
{
@@ -40623,8 +40623,8 @@
"aarch64"
],
"added_at": 1615167969,
- "trending": 1.573902120577011,
- "installs_last_month": 136,
+ "trending": 1.598797843657911,
+ "installs_last_month": 140,
"isMobileFriendly": false
},
{
@@ -40738,136 +40738,8 @@
"aarch64"
],
"added_at": 1683788475,
- "trending": 16.287721483647715,
- "installs_last_month": 133,
- "isMobileFriendly": false
- },
- {
- "name": "Tanglet",
- "keywords": [
- "game",
- "logic"
- ],
- "summary": "Single player variant of Boggle",
- "description": "Tanglet is a single player word finding game based on Boggle. The object of the game is to list as many words as you can before the time runs out. There are several timer modes that determine how much time you start with, and if you get extra time when you find a word.\n You can join letters horizontally, vertically, or diagonally in any direction to make a word, so as long as the letters are next to each other on the board. However, you can not reuse the same letter cells in a single word. Also, each word must be at least three letters on a normal board, and four letters on a large board.\n ",
- "id": "org_gottcode_Tanglet",
- "type": "desktop-application",
- "translations": {
- "ca": {
- "description": "Tanglet és un joc de recerca de paraules per a un jugador basat en Boggle. L'objectiu del joc és llistar tantes paraula com pugueu abans de que s'acabi el temps. Hi ha distintes modalitats que determinen el temps que disposes, i si aconsegueixes temps extra per a cada paraula trobada.\n Podeu unir lletres horitzontalment, verticalment o en diagonal en qualsevol direcció per a formar una paraula, sempre i quan les lletres estiguin contigües en el tauler. Però no podeu fer servir més d'una vegada la mateixa cel·la en una paraula. També, cada paraula ha de tenir tres lletres en el tauler normal o quatre lletres en el tauler gran.\n ",
- "name": "Tanglet",
- "summary": "Variant d'un jugador de Boggle"
- },
- "cs": {
- "description": "Tanglet je hra o hledání slov postavená na Boogle. Předmětem hry je sestavení seznamu tolika slov, kolik můžete, předtím než uplyne čas. Pro časomíru je tu několik režimů, jež určují, kolik času máte na začátku, a jestli dostanete, když najdete slovo, nějaký čas navíc.\n Písmena můžete v kterémkoli směru, abyste udělali slovo, spojovat vodorovně, svisle nebo úhlopříčně tak dlouho, dokud jsou písmena na hrací desce vedle sebe. Nicméně nemůžete v jednom slově znovu použít to samé písmeno, když už jste je použili. Každé slovo také musí sestávat z alespoň tří písmen na obyčejné desce a ze čtyř na velké desce.\n ",
- "name": "Tanglet",
- "summary": "Varianta hry Boggle pro jednoho hráče"
- },
- "de": {
- "description": "Tanglet ist ein Buchstabenrätsel für eine Person, das auf Boggle basiert. Ziel des Spiels ist es, so viele Wörter wie möglich zu finden bevor die Zeit abläuft. Es gibt mehrere Spielmodi, die bestimmen, wieviel Bedenkzeit Sie am Spielanfang haben und ob die Bedenkzeit verlängert wird, wenn Sie ein Wort finden.\n Sie können Buchstaben senkrecht, waagrecht, oder diagonal in beliebiger Richtung verbinden, um ein Wort zu bilden, solange die Buchstaben auf dem Spielbrett aneinander angrenzen. Sie dürfen aber nicht dasselbe Buchstabenfeld mehrmals in einem Wort verwenden. Außerdem muss jedes Wort auf einem normalgroßen Spielbrett mindestens aus drei Buchstaben bestehen, und auf einem großen Spielbrett mindestens aus vier Buchstaben.\n ",
- "name": "Tanglet",
- "summary": "Einzelspielervariante von Boggle"
- },
- "el": {
- "description": "Το Tanglet είναι ένα single player παιχνίδι εύρεσης λέξεων πού βασίζεται στο Boggle. Το αντικείμενο του παιχνιδιού είναι η δημιουργία λιστών με όσες λέξεις γίνεται, πριν τελειώσει ο χρόνος. Υπάρχουν αρκετές λειτουργίες χρονοδιακόπτη που καθορίζουν με πόσο χρόνο μπορείτε να ξεκινήσετε και αν μπορείτε να πάρετε επιπλέον χρόνο όταν βρείτε μια λέξη.\n Μπορείτε να συντάψετε γράμματα οριζόντια, κάθετα, ή διαγώνια σε οποιαδήποτε κατεύθυνση , μόσο όσο τα γράμματα είναι δίπλα το ένα στο άλλο. Ωστόσο, δεν μπορείτε να χρησιμοποιήσετε ξανά το ίδιο γράμμα σε μια ενιαία λέξη. Επίσης, κάθε λέξη πρέπει να αποτελείται από τουλάχιστον τρία γράμματα σε έναν μικρό και τέσσερα γράμματα σε ένα μεγάλο πίνακα.\n ",
- "name": "Tanglet",
- "summary": "Single player παραλλαγή του Boggle"
- },
- "es": {
- "description": "Tanglet es un juego de buscar palabras de un sólo jugador basado en Boggle. El objeto del juego es listar tantas palabras como puedas antes de que se acabe el tiempo. Hay distintos modos que determinan con cuánto tiempo inicias, y si obtienes tiempo extra por cada palabra encontrada.\n Puedes unir letras horizontalmente, verticalmente, o diagonalmente en cualquier dirección para formar una palabra, siempre y cuando las letras están contiguas en el tablero. Sin embargo, no puedes reusar una misma celda en una sola palabra. También, cada palabra debe contener al menos tres letras en un tablero normal, o cuatro letras en un tablero grande.\n ",
- "name": "Tanglet",
- "summary": "Variante de un jugador de Boggle"
- },
- "fr": {
- "description": "Tanglet est un jeu de recherche de mots, en mode simple joueur, basé sur le fameux Boggle. L'objectif de ce jeu est de lister autant de mots que possible avant la fin du temps imparti. Plusieurs modes de minuterie sont proposés. Ils déterminent le temps de départ et le temps supplémentaire accordé lorsqu'un mot a été trouvé.\n Vous pouvez relier des lettres horizontalement, verticalement ou en diagonale dans n'importe quelle direction pour former un mot, du moment que les lettres soient à côté l'une de l'autre sur le plateau. Cependant, vous ne pouvez pas réutiliser les mêmes cellules de lettres en un seul mot. En outre, chaque mot doit être composé d'au moins trois lettres pour un plateau normal, et de quatre lettres pour un grand plateau.\n ",
- "name": "Tanglet",
- "summary": "Variante de Boggle en mode simple joueur"
- },
- "hr": {
- "description": "Tanglet je igra pronalaženja riječi za jednog igrača temeljena na igri Boggle. Cilj igre je navesti što više riječi prije isteka vremena. Postoji nekoliko timera za određivanje trajanja igre te mogućnost dobivanja dodatnog vremena kad se jedna riječ pronađe.\n Za pronalaženje riječi, slova se mogu spajati vodoravno, okomito ili dijagonalno u bilo kojem smjeru, sve dok su slova jedno do drugog na ploči. Međutim, polja slova se smiju koristiti samo jednom za svaku se riječ. Također, svaka riječ mora sadržati najmanje tri slova na normalnoj ploči i četiri slova na velikoj ploči.\n ",
- "name": "Tanglet",
- "summary": "Varijanta igre Boggle za jednog igrača"
- },
- "id": {
- "description": "Tanglet adalah game pencarian kata pemain tunggal berdasarkan Boggle.Tujuan permainan ini adalah untuk membuat daftar kata-kata sebanyak yang Anda bisa sebelum waktu habis. Ada beberapa mode pengatur waktu yang menentukan berapa banyak waktu Anda memulai, dan jika Anda mendapatkan waktu tambahan saat Anda menemukan kata.\n Anda dapat menggabungkan huruf secara horizontal, vertikal, atau diagonal ke arah mana pun untuk membuat kata, sehingga selama huruf-huruf tersebut bersebelahan di papan tulis. Namun, Anda tidak dapat menggunakan kembali sel huruf yang sama dalam satu kata. Juga, setiap kata harus setidaknya tiga huruf pada papan normal, dan empat huruf pada papan besar.\n ",
- "name": "Tanglet",
- "summary": "Varian pemain tunggal dari permainan Boggle"
- },
- "it": {
- "description": "Tanglet è un gioco per trovare parole per giocatore singolo basato su Boggle. Lo scopo del gioco è elencare quante più parole possibile prima che finisca il tempo. Esistono diverse modalità timer che determinano daquanto tempo hai iniziato e se ottieni tempo extra quando trovi una parola.\n Puoi unire le lettere in senso orizzontale, verticale o diagonale in qualsiasi direzione per creare una parola, a patto che le lettere siano una accanto all'altra sulla lavagna. Tuttavia, non è possibile riutilizzare le stesse celle di lettere in una sola parola. Inoltre, ogni parola deve contenere almeno tre lettere su una lavagna normale e quattro lettere su una lavagna grande.\n ",
- "name": "Tanglet",
- "summary": "Variante per giocatore singolo di Boggle"
- },
- "lt": {
- "description": "Tanglet yra žodžių ieškojimo žaidimas paremtas Boggle. Žaidimo tikslas yra, prieš pasibaigiant laikui, išvardinti kuo daugiau žodžių. Yra kelios laikmačio veiksenos, kurios nustato, kiek laiko duota žaidimo pradžioje, ir ar bus pridedamas laikas, esant teisingam spėjimui.\n Kad atspėtumėte žodį, galite jungti raides horizontaliai, vertikaliai, arba pagal įstrižainę bet kuria kryptimi, tol, kol raidės yra viena šalia kitos. Tačiau negalite naudoti to pačio raidės langelio vienam žodžiui. Be to, normalioje plokštėje kiekviename žodyje turi būti bent trys raidės, o didelėje plokštėje bent keturios raidės.\n ",
- "name": "Tanglet",
- "summary": "Boggle žaidimo variantas vienam žaidėjui"
- },
- "nl": {
- "description": "Tanglet is een eenpersoonsversie van een woordzoekspel gebaseerd op Boggle. Het doel van het spel is om zo veel mogelijk woorden op te schrijven voordat de tijd voorbij is. Er zijn verschillende tijdmodi die bepalen met hoe veel tijd je begint of wat voor een tijdbonus je krijgt als je een woord vind.\n Je kunt letters horizontaal, verticaal of diagonaal met elkaar verbinden om een woord te maken mits de letters naast elkaar liggen op het bord. Je kunt het letterblokje niet meer dan een keer gebruiken. Verder moet ieder woord minstens 3 letters zijn op een normaal bord en 4 op een groot bord.\n ",
- "name": "Tanglet",
- "summary": "Eenpersoonsversie van Boggle"
- },
- "pl": {
- "description": "Tanglet jest jednosobową grą polegająca na wyszukiwaniu słów, opartą na grze Boggle. Celem gry jest wyszukanie tak wielu słów jak to możliwe przed upływem czasu. Istnieje kilka trybów gry, które determinują to z jaką ilością czasu zaczynasz i czy uzyskujesz dodatkowy czas za znalezienie słowa.\n Litery możesz łączyć w słowa; pionowo, posiomo, lub po skosie, w dowolnym kierunku, dopóty dopóki litery na planszy występują obok siebie. Aczkolwiek nie możesz użyć dwa razy tej samej komórki z literą. Dodatkowo każde słowo musi się składać z co najmniej trzech liter na planszy o normalnych rozmiarach i czterech liter na dużej planszy.\n ",
- "name": "Tanglet",
- "summary": "Jednoosobowa wersja gry Boggle"
- },
- "pt": {
- "description": "O Tanglet é um jogo de um só jogador para encontrar palavras, baseado no jogo Parole. O objetivo do jogo é encontrar o máximo de palavras possível antes do tempo se esgotar. Existem vários modos de temporizador que determinam o tempo com que se começa e se se obtém tempo extra quando se encontra uma palavra.\n Pode-se juntar letras na horizontal, vertical e diagonal em qualquer direção para formar uma palavra, desde que as letras estejam logo na casa seguinte do tabuleiro. No entanto, não se pode tornar a usar uma letra de uma casa já selecionada numa só palavra. Além disso, cada palavra tem de ter pelo menos 3 letras num tabuleiro normal, e 4 letras num tabuleiro grande.\n ",
- "name": "Tanglet",
- "summary": "Uma variante do jogo Parole"
- },
- "ro": {
- "description": "Tanglet este un joc de găsit cuvinte, într-un singur jucător, bazat pe Boggle. Obiectivul jocului este de a lista cît mai multe cuvinte înainte de expirarea timpului. Există mai multe moduri de temporizare care determină cu cît de mult timp începeţi, şi dacă aveţi timp suplimentar atunci cînd găsiţi un cuvînt.\n Puteţi alătura litere orizontal, vertical, sau în diagonală, în orice direcţie pentru a face un cuvînt, atîta timp cît literele sînt una lîngă alta pe tablă. Cu toate acestea, nu aveţi posibilitatea să reutilizaţi aceleaşi celule literă într-un singur cuvînt. De asemenea, fiecare cuvînt trebuie să fie de cel puţin trei litere pe o tablă obişnuită şi patru litere pe o tablă mare.\n ",
- "name": "Tanglet",
- "summary": "Variantă de joc Boggle într-un singur jucător"
- },
- "ru": {
- "description": "Tanglet - игра для поиска слов для одного игрока, основанная на Боггл. Цель игры - перечислить как можно больше слов, прежде чем истечет время. Есть несколько режимов таймера, которые определяют ваш ход, и ваше дополнительное время, когда вы находите слово.\n Вы можете соединять буквы по горизонтали, вертикали или диагонали в любом направлении, чтобы составить слово, если буквы находятся рядом друг с другом на доске. Однако вы не можете повторно использовать одинаковые буквенные ячейки в одном слове. Кроме того, каждое слово должно содержать не менее трех букв на обычной доске и четырех букв на большой доске.\n ",
- "name": "Tanglet",
- "summary": "Вариант игры в Боггл"
- },
- "tr": {
- "description": "Tanglet, Boggle tabanlı tek oyuncu kelime bulma oyunudur. Oyunun amacı, süre dolmadan önce olabildiğince fazla kelime listelemektir. Ne kadar zamanla başlayacağınızı ve bir kelime bulduğunuzda fazladan zamanınız olup olmadığını belirleyen birkaç zamanlayıcı modları vardır.\n Harfler tahtada yan yana olduğu sürece, sözcük oluşturmak için harfleri yatay, dikey veya çapraz olarak herhangi bir yönde birleştirebilirsiniz. Ancak, aynı harf hücrelerini tek bir sözcükte yeniden kullanamazsınız. Ayrıca, her kelime normal bir tahtada en az üç harf ve büyük bir tahtada dört harf olmalıdır.\n ",
- "name": "Tanglet",
- "summary": "Boggle'ın tek oyuncu çeştilemesidir"
- },
- "uk": {
- "description": "Tanglet - це гра для пошуку слова для одного гравця, заснована на Boggle. Мета гри - перерахувати якомога більше слів до того, як закінчиться час. Існує кілька режимів таймера, які визначають, скільки часу ви витрачаєте, і чи отримуєте ви додатковий час, коли знаходите слово.\n Ви можете з’єднати букви по горизонталі, вертикалі чи діагоналі в будь-якому напрямку, щоб скласти слово, до тих пір, поки букви стоять поруч на дошці. Однак ви не можете повторно використовувати одні й ті самі літерні клітинки в одному слові. Крім того, кожне слово має містити принаймні три літери на звичайній дошці та чотири літери на великій дошці.\n ",
- "name": "Tanglet",
- "summary": "Варіант Boggle для одного гравця"
- },
- "hu": {
- "name": "Tanglet",
- "summary": "A Boggle egyjátékos változata"
- }
- },
- "project_license": "GPL-3.0+",
- "is_free_license": true,
- "app_id": "org.gottcode.Tanglet",
- "icon": "https://dl.flathub.org/media/org/gottcode/Tanglet/1dafd2f24de0818a3d7e8a9fc02c740d/icons/128x128/org.gottcode.Tanglet.png",
- "main_categories": "game",
- "sub_categories": [
- "LogicGame"
- ],
- "developer_name": "Graeme Gott",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "gottcode.org",
- "verification_timestamp": "1709812314",
- "runtime": "org.kde.Platform/x86_64/6.8",
- "updated_at": 1739983861,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1529734104,
- "trending": 9.688528717834767,
- "installs_last_month": 117,
+ "trending": 12.897521788434414,
+ "installs_last_month": 130,
"isMobileFriendly": false
},
{
@@ -41083,8 +40955,8 @@
"aarch64"
],
"added_at": 1652851872,
- "trending": 7.155995119742388,
- "installs_last_month": 117,
+ "trending": 9.28930089794864,
+ "installs_last_month": 120,
"isMobileFriendly": false
},
{
@@ -41118,8 +40990,136 @@
"aarch64"
],
"added_at": 1671485930,
- "trending": 1.555572367704901,
- "installs_last_month": 112,
+ "trending": 1.4352288696632731,
+ "installs_last_month": 116,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Tanglet",
+ "keywords": [
+ "game",
+ "logic"
+ ],
+ "summary": "Single player variant of Boggle",
+ "description": "Tanglet is a single player word finding game based on Boggle. The object of the game is to list as many words as you can before the time runs out. There are several timer modes that determine how much time you start with, and if you get extra time when you find a word.\n You can join letters horizontally, vertically, or diagonally in any direction to make a word, so as long as the letters are next to each other on the board. However, you can not reuse the same letter cells in a single word. Also, each word must be at least three letters on a normal board, and four letters on a large board.\n ",
+ "id": "org_gottcode_Tanglet",
+ "type": "desktop-application",
+ "translations": {
+ "ca": {
+ "description": "Tanglet és un joc de recerca de paraules per a un jugador basat en Boggle. L'objectiu del joc és llistar tantes paraula com pugueu abans de que s'acabi el temps. Hi ha distintes modalitats que determinen el temps que disposes, i si aconsegueixes temps extra per a cada paraula trobada.\n Podeu unir lletres horitzontalment, verticalment o en diagonal en qualsevol direcció per a formar una paraula, sempre i quan les lletres estiguin contigües en el tauler. Però no podeu fer servir més d'una vegada la mateixa cel·la en una paraula. També, cada paraula ha de tenir tres lletres en el tauler normal o quatre lletres en el tauler gran.\n ",
+ "name": "Tanglet",
+ "summary": "Variant d'un jugador de Boggle"
+ },
+ "cs": {
+ "description": "Tanglet je hra o hledání slov postavená na Boogle. Předmětem hry je sestavení seznamu tolika slov, kolik můžete, předtím než uplyne čas. Pro časomíru je tu několik režimů, jež určují, kolik času máte na začátku, a jestli dostanete, když najdete slovo, nějaký čas navíc.\n Písmena můžete v kterémkoli směru, abyste udělali slovo, spojovat vodorovně, svisle nebo úhlopříčně tak dlouho, dokud jsou písmena na hrací desce vedle sebe. Nicméně nemůžete v jednom slově znovu použít to samé písmeno, když už jste je použili. Každé slovo také musí sestávat z alespoň tří písmen na obyčejné desce a ze čtyř na velké desce.\n ",
+ "name": "Tanglet",
+ "summary": "Varianta hry Boggle pro jednoho hráče"
+ },
+ "de": {
+ "description": "Tanglet ist ein Buchstabenrätsel für eine Person, das auf Boggle basiert. Ziel des Spiels ist es, so viele Wörter wie möglich zu finden bevor die Zeit abläuft. Es gibt mehrere Spielmodi, die bestimmen, wieviel Bedenkzeit Sie am Spielanfang haben und ob die Bedenkzeit verlängert wird, wenn Sie ein Wort finden.\n Sie können Buchstaben senkrecht, waagrecht, oder diagonal in beliebiger Richtung verbinden, um ein Wort zu bilden, solange die Buchstaben auf dem Spielbrett aneinander angrenzen. Sie dürfen aber nicht dasselbe Buchstabenfeld mehrmals in einem Wort verwenden. Außerdem muss jedes Wort auf einem normalgroßen Spielbrett mindestens aus drei Buchstaben bestehen, und auf einem großen Spielbrett mindestens aus vier Buchstaben.\n ",
+ "name": "Tanglet",
+ "summary": "Einzelspielervariante von Boggle"
+ },
+ "el": {
+ "description": "Το Tanglet είναι ένα single player παιχνίδι εύρεσης λέξεων πού βασίζεται στο Boggle. Το αντικείμενο του παιχνιδιού είναι η δημιουργία λιστών με όσες λέξεις γίνεται, πριν τελειώσει ο χρόνος. Υπάρχουν αρκετές λειτουργίες χρονοδιακόπτη που καθορίζουν με πόσο χρόνο μπορείτε να ξεκινήσετε και αν μπορείτε να πάρετε επιπλέον χρόνο όταν βρείτε μια λέξη.\n Μπορείτε να συντάψετε γράμματα οριζόντια, κάθετα, ή διαγώνια σε οποιαδήποτε κατεύθυνση , μόσο όσο τα γράμματα είναι δίπλα το ένα στο άλλο. Ωστόσο, δεν μπορείτε να χρησιμοποιήσετε ξανά το ίδιο γράμμα σε μια ενιαία λέξη. Επίσης, κάθε λέξη πρέπει να αποτελείται από τουλάχιστον τρία γράμματα σε έναν μικρό και τέσσερα γράμματα σε ένα μεγάλο πίνακα.\n ",
+ "name": "Tanglet",
+ "summary": "Single player παραλλαγή του Boggle"
+ },
+ "es": {
+ "description": "Tanglet es un juego de buscar palabras de un sólo jugador basado en Boggle. El objeto del juego es listar tantas palabras como puedas antes de que se acabe el tiempo. Hay distintos modos que determinan con cuánto tiempo inicias, y si obtienes tiempo extra por cada palabra encontrada.\n Puedes unir letras horizontalmente, verticalmente, o diagonalmente en cualquier dirección para formar una palabra, siempre y cuando las letras están contiguas en el tablero. Sin embargo, no puedes reusar una misma celda en una sola palabra. También, cada palabra debe contener al menos tres letras en un tablero normal, o cuatro letras en un tablero grande.\n ",
+ "name": "Tanglet",
+ "summary": "Variante de un jugador de Boggle"
+ },
+ "fr": {
+ "description": "Tanglet est un jeu de recherche de mots, en mode simple joueur, basé sur le fameux Boggle. L'objectif de ce jeu est de lister autant de mots que possible avant la fin du temps imparti. Plusieurs modes de minuterie sont proposés. Ils déterminent le temps de départ et le temps supplémentaire accordé lorsqu'un mot a été trouvé.\n Vous pouvez relier des lettres horizontalement, verticalement ou en diagonale dans n'importe quelle direction pour former un mot, du moment que les lettres soient à côté l'une de l'autre sur le plateau. Cependant, vous ne pouvez pas réutiliser les mêmes cellules de lettres en un seul mot. En outre, chaque mot doit être composé d'au moins trois lettres pour un plateau normal, et de quatre lettres pour un grand plateau.\n ",
+ "name": "Tanglet",
+ "summary": "Variante de Boggle en mode simple joueur"
+ },
+ "hr": {
+ "description": "Tanglet je igra pronalaženja riječi za jednog igrača temeljena na igri Boggle. Cilj igre je navesti što više riječi prije isteka vremena. Postoji nekoliko timera za određivanje trajanja igre te mogućnost dobivanja dodatnog vremena kad se jedna riječ pronađe.\n Za pronalaženje riječi, slova se mogu spajati vodoravno, okomito ili dijagonalno u bilo kojem smjeru, sve dok su slova jedno do drugog na ploči. Međutim, polja slova se smiju koristiti samo jednom za svaku se riječ. Također, svaka riječ mora sadržati najmanje tri slova na normalnoj ploči i četiri slova na velikoj ploči.\n ",
+ "name": "Tanglet",
+ "summary": "Varijanta igre Boggle za jednog igrača"
+ },
+ "id": {
+ "description": "Tanglet adalah game pencarian kata pemain tunggal berdasarkan Boggle.Tujuan permainan ini adalah untuk membuat daftar kata-kata sebanyak yang Anda bisa sebelum waktu habis. Ada beberapa mode pengatur waktu yang menentukan berapa banyak waktu Anda memulai, dan jika Anda mendapatkan waktu tambahan saat Anda menemukan kata.\n Anda dapat menggabungkan huruf secara horizontal, vertikal, atau diagonal ke arah mana pun untuk membuat kata, sehingga selama huruf-huruf tersebut bersebelahan di papan tulis. Namun, Anda tidak dapat menggunakan kembali sel huruf yang sama dalam satu kata. Juga, setiap kata harus setidaknya tiga huruf pada papan normal, dan empat huruf pada papan besar.\n ",
+ "name": "Tanglet",
+ "summary": "Varian pemain tunggal dari permainan Boggle"
+ },
+ "it": {
+ "description": "Tanglet è un gioco per trovare parole per giocatore singolo basato su Boggle. Lo scopo del gioco è elencare quante più parole possibile prima che finisca il tempo. Esistono diverse modalità timer che determinano daquanto tempo hai iniziato e se ottieni tempo extra quando trovi una parola.\n Puoi unire le lettere in senso orizzontale, verticale o diagonale in qualsiasi direzione per creare una parola, a patto che le lettere siano una accanto all'altra sulla lavagna. Tuttavia, non è possibile riutilizzare le stesse celle di lettere in una sola parola. Inoltre, ogni parola deve contenere almeno tre lettere su una lavagna normale e quattro lettere su una lavagna grande.\n ",
+ "name": "Tanglet",
+ "summary": "Variante per giocatore singolo di Boggle"
+ },
+ "lt": {
+ "description": "Tanglet yra žodžių ieškojimo žaidimas paremtas Boggle. Žaidimo tikslas yra, prieš pasibaigiant laikui, išvardinti kuo daugiau žodžių. Yra kelios laikmačio veiksenos, kurios nustato, kiek laiko duota žaidimo pradžioje, ir ar bus pridedamas laikas, esant teisingam spėjimui.\n Kad atspėtumėte žodį, galite jungti raides horizontaliai, vertikaliai, arba pagal įstrižainę bet kuria kryptimi, tol, kol raidės yra viena šalia kitos. Tačiau negalite naudoti to pačio raidės langelio vienam žodžiui. Be to, normalioje plokštėje kiekviename žodyje turi būti bent trys raidės, o didelėje plokštėje bent keturios raidės.\n ",
+ "name": "Tanglet",
+ "summary": "Boggle žaidimo variantas vienam žaidėjui"
+ },
+ "nl": {
+ "description": "Tanglet is een eenpersoonsversie van een woordzoekspel gebaseerd op Boggle. Het doel van het spel is om zo veel mogelijk woorden op te schrijven voordat de tijd voorbij is. Er zijn verschillende tijdmodi die bepalen met hoe veel tijd je begint of wat voor een tijdbonus je krijgt als je een woord vind.\n Je kunt letters horizontaal, verticaal of diagonaal met elkaar verbinden om een woord te maken mits de letters naast elkaar liggen op het bord. Je kunt het letterblokje niet meer dan een keer gebruiken. Verder moet ieder woord minstens 3 letters zijn op een normaal bord en 4 op een groot bord.\n ",
+ "name": "Tanglet",
+ "summary": "Eenpersoonsversie van Boggle"
+ },
+ "pl": {
+ "description": "Tanglet jest jednosobową grą polegająca na wyszukiwaniu słów, opartą na grze Boggle. Celem gry jest wyszukanie tak wielu słów jak to możliwe przed upływem czasu. Istnieje kilka trybów gry, które determinują to z jaką ilością czasu zaczynasz i czy uzyskujesz dodatkowy czas za znalezienie słowa.\n Litery możesz łączyć w słowa; pionowo, posiomo, lub po skosie, w dowolnym kierunku, dopóty dopóki litery na planszy występują obok siebie. Aczkolwiek nie możesz użyć dwa razy tej samej komórki z literą. Dodatkowo każde słowo musi się składać z co najmniej trzech liter na planszy o normalnych rozmiarach i czterech liter na dużej planszy.\n ",
+ "name": "Tanglet",
+ "summary": "Jednoosobowa wersja gry Boggle"
+ },
+ "pt": {
+ "description": "O Tanglet é um jogo de um só jogador para encontrar palavras, baseado no jogo Parole. O objetivo do jogo é encontrar o máximo de palavras possível antes do tempo se esgotar. Existem vários modos de temporizador que determinam o tempo com que se começa e se se obtém tempo extra quando se encontra uma palavra.\n Pode-se juntar letras na horizontal, vertical e diagonal em qualquer direção para formar uma palavra, desde que as letras estejam logo na casa seguinte do tabuleiro. No entanto, não se pode tornar a usar uma letra de uma casa já selecionada numa só palavra. Além disso, cada palavra tem de ter pelo menos 3 letras num tabuleiro normal, e 4 letras num tabuleiro grande.\n ",
+ "name": "Tanglet",
+ "summary": "Uma variante do jogo Parole"
+ },
+ "ro": {
+ "description": "Tanglet este un joc de găsit cuvinte, într-un singur jucător, bazat pe Boggle. Obiectivul jocului este de a lista cît mai multe cuvinte înainte de expirarea timpului. Există mai multe moduri de temporizare care determină cu cît de mult timp începeţi, şi dacă aveţi timp suplimentar atunci cînd găsiţi un cuvînt.\n Puteţi alătura litere orizontal, vertical, sau în diagonală, în orice direcţie pentru a face un cuvînt, atîta timp cît literele sînt una lîngă alta pe tablă. Cu toate acestea, nu aveţi posibilitatea să reutilizaţi aceleaşi celule literă într-un singur cuvînt. De asemenea, fiecare cuvînt trebuie să fie de cel puţin trei litere pe o tablă obişnuită şi patru litere pe o tablă mare.\n ",
+ "name": "Tanglet",
+ "summary": "Variantă de joc Boggle într-un singur jucător"
+ },
+ "ru": {
+ "description": "Tanglet - игра для поиска слов для одного игрока, основанная на Боггл. Цель игры - перечислить как можно больше слов, прежде чем истечет время. Есть несколько режимов таймера, которые определяют ваш ход, и ваше дополнительное время, когда вы находите слово.\n Вы можете соединять буквы по горизонтали, вертикали или диагонали в любом направлении, чтобы составить слово, если буквы находятся рядом друг с другом на доске. Однако вы не можете повторно использовать одинаковые буквенные ячейки в одном слове. Кроме того, каждое слово должно содержать не менее трех букв на обычной доске и четырех букв на большой доске.\n ",
+ "name": "Tanglet",
+ "summary": "Вариант игры в Боггл"
+ },
+ "tr": {
+ "description": "Tanglet, Boggle tabanlı tek oyuncu kelime bulma oyunudur. Oyunun amacı, süre dolmadan önce olabildiğince fazla kelime listelemektir. Ne kadar zamanla başlayacağınızı ve bir kelime bulduğunuzda fazladan zamanınız olup olmadığını belirleyen birkaç zamanlayıcı modları vardır.\n Harfler tahtada yan yana olduğu sürece, sözcük oluşturmak için harfleri yatay, dikey veya çapraz olarak herhangi bir yönde birleştirebilirsiniz. Ancak, aynı harf hücrelerini tek bir sözcükte yeniden kullanamazsınız. Ayrıca, her kelime normal bir tahtada en az üç harf ve büyük bir tahtada dört harf olmalıdır.\n ",
+ "name": "Tanglet",
+ "summary": "Boggle'ın tek oyuncu çeştilemesidir"
+ },
+ "uk": {
+ "description": "Tanglet - це гра для пошуку слова для одного гравця, заснована на Boggle. Мета гри - перерахувати якомога більше слів до того, як закінчиться час. Існує кілька режимів таймера, які визначають, скільки часу ви витрачаєте, і чи отримуєте ви додатковий час, коли знаходите слово.\n Ви можете з’єднати букви по горизонталі, вертикалі чи діагоналі в будь-якому напрямку, щоб скласти слово, до тих пір, поки букви стоять поруч на дошці. Однак ви не можете повторно використовувати одні й ті самі літерні клітинки в одному слові. Крім того, кожне слово має містити принаймні три літери на звичайній дошці та чотири літери на великій дошці.\n ",
+ "name": "Tanglet",
+ "summary": "Варіант Boggle для одного гравця"
+ },
+ "hu": {
+ "name": "Tanglet",
+ "summary": "A Boggle egyjátékos változata"
+ }
+ },
+ "project_license": "GPL-3.0+",
+ "is_free_license": true,
+ "app_id": "org.gottcode.Tanglet",
+ "icon": "https://dl.flathub.org/media/org/gottcode/Tanglet/1dafd2f24de0818a3d7e8a9fc02c740d/icons/128x128/org.gottcode.Tanglet.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "LogicGame"
+ ],
+ "developer_name": "Graeme Gott",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "gottcode.org",
+ "verification_timestamp": "1709812314",
+ "runtime": "org.kde.Platform/x86_64/6.8",
+ "updated_at": 1739983861,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1529734104,
+ "trending": 11.498643141588278,
+ "installs_last_month": 115,
"isMobileFriendly": false
},
{
@@ -41159,8 +41159,8 @@
"aarch64"
],
"added_at": 1653289178,
- "trending": 1.37822830052361,
- "installs_last_month": 108,
+ "trending": 5.4122576180794395,
+ "installs_last_month": 111,
"isMobileFriendly": false
},
{
@@ -41325,8 +41325,8 @@
"aarch64"
],
"added_at": 1653889049,
- "trending": 10.312618705469625,
- "installs_last_month": 104,
+ "trending": 13.327285214484617,
+ "installs_last_month": 108,
"isMobileFriendly": false
},
{
@@ -41549,8 +41549,8 @@
"aarch64"
],
"added_at": 1507145384,
- "trending": 13.86567619609654,
- "installs_last_month": 101,
+ "trending": 12.12863626123881,
+ "installs_last_month": 97,
"isMobileFriendly": true
},
{
@@ -41667,8 +41667,8 @@
"aarch64"
],
"added_at": 1529734177,
- "trending": 8.666315316966394,
- "installs_last_month": 84,
+ "trending": 8.241331345101258,
+ "installs_last_month": 91,
"isMobileFriendly": false
},
{
@@ -41728,8 +41728,8 @@
"aarch64"
],
"added_at": 1655046652,
- "trending": 3.1114817115081896,
- "installs_last_month": 83,
+ "trending": 4.910975435794992,
+ "installs_last_month": 91,
"isMobileFriendly": true
},
{
@@ -41843,8 +41843,8 @@
"aarch64"
],
"added_at": 1529683917,
- "trending": 10.397619315431491,
- "installs_last_month": 80,
+ "trending": 10.706690202027662,
+ "installs_last_month": 79,
"isMobileFriendly": false
},
{
@@ -41954,8 +41954,42 @@
"aarch64"
],
"added_at": 1529732659,
- "trending": 10.04183444801227,
- "installs_last_month": 67,
+ "trending": 11.510879110446798,
+ "installs_last_month": 69,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Fish Fillets",
+ "keywords": null,
+ "summary": "Puzzle game with 70 levels",
+ "description": "\n Fish Fillets is a puzzle game where the player has to guide a fish through a series\n of obstacles to escape the maze.\n Fish Fillets features over 70 levels of puzzles and a comforting soundtrack.\n \n ",
+ "id": "net_sourceforge_Fillets",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0",
+ "is_free_license": true,
+ "app_id": "net.sourceforge.Fillets",
+ "icon": "https://dl.flathub.org/media/net/sourceforge/Fillets/f4494052b96d66c4bc64ce5b3eba3fc9/icons/128x128/net.sourceforge.Fillets.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "LogicGame"
+ ],
+ "developer_name": "Ivo Danihelka and others",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1730844774,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1531489235,
+ "trending": 9.968365521435045,
+ "installs_last_month": 66,
"isMobileFriendly": false
},
{
@@ -41994,27 +42028,27 @@
"aarch64"
],
"added_at": 1653030771,
- "trending": 7.217430695450487,
- "installs_last_month": 58,
+ "trending": 4.577317410320512,
+ "installs_last_month": 65,
"isMobileFriendly": false
},
{
- "name": "Fish Fillets",
+ "name": "Combined!",
"keywords": null,
- "summary": "Puzzle game with 70 levels",
- "description": "\n Fish Fillets is a puzzle game where the player has to guide a fish through a series\n of obstacles to escape the maze.\n Fish Fillets features over 70 levels of puzzles and a comforting soundtrack.\n \n ",
- "id": "net_sourceforge_Fillets",
+ "summary": "Combined! is a block puzzle game. Your goal is to connect blocks to get higher blocks on the board.",
+ "description": "Place three blocks with the same number and colour next to each other to connect them - horizontally, vertically or both. You can also rotate blocks before you place them!",
+ "id": "de_peterge_combined",
"type": "desktop-application",
"translations": {},
- "project_license": "GPL-2.0",
+ "project_license": "MIT",
"is_free_license": true,
- "app_id": "net.sourceforge.Fillets",
- "icon": "https://dl.flathub.org/media/net/sourceforge/Fillets/f4494052b96d66c4bc64ce5b3eba3fc9/icons/128x128/net.sourceforge.Fillets.png",
+ "app_id": "de.peterge.combined",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/de.peterge.combined.png",
"main_categories": "game",
"sub_categories": [
"LogicGame"
],
- "developer_name": "Ivo Danihelka and others",
+ "developer_name": "peterge",
"verification_verified": false,
"verification_method": "none",
"verification_login_name": null,
@@ -42022,14 +42056,14 @@
"verification_login_is_organization": null,
"verification_website": null,
"verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1730844774,
+ "runtime": "org.freedesktop.Platform/x86_64/21.08",
+ "updated_at": 1638528637,
"arches": [
"x86_64"
],
- "added_at": 1531489235,
- "trending": 9.89555688807587,
- "installs_last_month": 56,
+ "added_at": 1638528530,
+ "trending": 2.582479902626445,
+ "installs_last_month": 48,
"isMobileFriendly": false
},
{
@@ -42068,8 +42102,8 @@
"aarch64"
],
"added_at": 1657090710,
- "trending": 5.2297420014996,
- "installs_last_month": 43,
+ "trending": 6.730715749393484,
+ "installs_last_month": 47,
"isMobileFriendly": false
},
{
@@ -42103,7 +42137,7 @@
"aarch64"
],
"added_at": 1616832214,
- "trending": 7.616213002112647,
+ "trending": 7.636168365213894,
"installs_last_month": 35,
"isMobileFriendly": false
},
@@ -42143,41 +42177,7 @@
"aarch64"
],
"added_at": 1641162077,
- "trending": -0.18559879056726847,
- "installs_last_month": 35,
- "isMobileFriendly": false
- },
- {
- "name": "Combined!",
- "keywords": null,
- "summary": "Combined! is a block puzzle game. Your goal is to connect blocks to get higher blocks on the board.",
- "description": "Place three blocks with the same number and colour next to each other to connect them - horizontally, vertically or both. You can also rotate blocks before you place them!",
- "id": "de_peterge_combined",
- "type": "desktop-application",
- "translations": {},
- "project_license": "MIT",
- "is_free_license": true,
- "app_id": "de.peterge.combined",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/de.peterge.combined.png",
- "main_categories": "game",
- "sub_categories": [
- "LogicGame"
- ],
- "developer_name": "peterge",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/21.08",
- "updated_at": 1638528637,
- "arches": [
- "x86_64"
- ],
- "added_at": 1638528530,
- "trending": 1.0825623930510695,
+ "trending": 2.1311258160626214,
"installs_last_month": 34,
"isMobileFriendly": false
}
@@ -42232,8 +42232,8 @@
"aarch64"
],
"added_at": 1700646098,
- "trending": 10.6094409285594,
- "installs_last_month": 3878,
+ "trending": 10.167138326011948,
+ "installs_last_month": 3869,
"isMobileFriendly": false
},
{
@@ -42271,8 +42271,8 @@
"x86_64"
],
"added_at": 1510090447,
- "trending": -0.1916930219203727,
- "installs_last_month": 1965,
+ "trending": 1.4493881789965375,
+ "installs_last_month": 1948,
"isMobileFriendly": false
},
{
@@ -42310,8 +42310,8 @@
"aarch64"
],
"added_at": 1532949625,
- "trending": 7.222368932046286,
- "installs_last_month": 1494,
+ "trending": 6.746440700958008,
+ "installs_last_month": 1495,
"isMobileFriendly": false
},
{
@@ -42346,8 +42346,8 @@
"aarch64"
],
"added_at": 1689751982,
- "trending": 12.076480278490775,
- "installs_last_month": 1390,
+ "trending": 12.68484555183518,
+ "installs_last_month": 1380,
"isMobileFriendly": false
},
{
@@ -42380,8 +42380,8 @@
"x86_64"
],
"added_at": 1498638328,
- "trending": 1.5993067400025718,
- "installs_last_month": 1347,
+ "trending": 2.2882325752877386,
+ "installs_last_month": 1338,
"isMobileFriendly": false
},
{
@@ -42421,8 +42421,43 @@
"aarch64"
],
"added_at": 1668367620,
- "trending": 5.696948286270659,
- "installs_last_month": 521,
+ "trending": 3.737065279351963,
+ "installs_last_month": 518,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Flare: Empyrean Campaign",
+ "keywords": null,
+ "summary": "2D action role playing game",
+ "description": "Flare is an open source, 2D action role playing game. Its gameplay can be likened to the games in the Diablo series.The Empyrean Campaign is a game made by the Flare team. The story begins with the player being exiled from their homeland of Empyrean, resulting in them embarking on a quest to regain entry. This journey takes the player through many regions, with plenty of side quests along the way.The player can choose between three different character classes with distinct strengths and skills. Each character class has unique powers to unlock and improve as they level up.Brute - A close-quarters fighter who utilizes swords, throwing-knives and other bladed weapons.Scout - A ranged weapon and trap specialist who primarily uses bows to defeat its foes.Adept - A spell caster who challenges enemies with fire, ice and lightning-based attacks.Players may find or buy different items to protect themselves from attacks or boost their stats. These include potions, scrolls, weapons, armor, and magical artifacts. Along with the normal equipment, there are enchanted, rare, and unique pieces of gear that provide extra bonuses.The Flare engine is licensed under GPL 3, whereas the Empyrean Campaign is licensed under CC-BY-SA 3.0. Both the engine and the game content are being actively developed, including new features, art, and content.",
+ "id": "org_flarerpg_Flare",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-or-later AND CC-BY-SA-3.0",
+ "is_free_license": true,
+ "app_id": "org.flarerpg.Flare",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.flarerpg.Flare.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "RolePlaying"
+ ],
+ "developer_name": "Clint Bellanger and Contributors",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "flarerpg.org",
+ "verification_timestamp": "1738556182",
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1701658641,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1521111856,
+ "trending": 10.609851003801529,
+ "installs_last_month": 496,
"isMobileFriendly": false
},
{
@@ -42463,43 +42498,8 @@
"aarch64"
],
"added_at": 1723325353,
- "trending": 1.0705057942905905,
- "installs_last_month": 500,
- "isMobileFriendly": false
- },
- {
- "name": "Flare: Empyrean Campaign",
- "keywords": null,
- "summary": "2D action role playing game",
- "description": "Flare is an open source, 2D action role playing game. Its gameplay can be likened to the games in the Diablo series.The Empyrean Campaign is a game made by the Flare team. The story begins with the player being exiled from their homeland of Empyrean, resulting in them embarking on a quest to regain entry. This journey takes the player through many regions, with plenty of side quests along the way.The player can choose between three different character classes with distinct strengths and skills. Each character class has unique powers to unlock and improve as they level up.Brute - A close-quarters fighter who utilizes swords, throwing-knives and other bladed weapons.Scout - A ranged weapon and trap specialist who primarily uses bows to defeat its foes.Adept - A spell caster who challenges enemies with fire, ice and lightning-based attacks.Players may find or buy different items to protect themselves from attacks or boost their stats. These include potions, scrolls, weapons, armor, and magical artifacts. Along with the normal equipment, there are enchanted, rare, and unique pieces of gear that provide extra bonuses.The Flare engine is licensed under GPL 3, whereas the Empyrean Campaign is licensed under CC-BY-SA 3.0. Both the engine and the game content are being actively developed, including new features, art, and content.",
- "id": "org_flarerpg_Flare",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-or-later AND CC-BY-SA-3.0",
- "is_free_license": true,
- "app_id": "org.flarerpg.Flare",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.flarerpg.Flare.png",
- "main_categories": "game",
- "sub_categories": [
- "RolePlaying"
- ],
- "developer_name": "Clint Bellanger and Contributors",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "flarerpg.org",
- "verification_timestamp": "1738556182",
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1701658641,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1521111856,
- "trending": 11.091907262158424,
- "installs_last_month": 485,
+ "trending": 1.427453060749086,
+ "installs_last_month": 487,
"isMobileFriendly": false
},
{
@@ -42535,43 +42535,8 @@
"aarch64"
],
"added_at": 1711951074,
- "trending": 11.217229202259787,
- "installs_last_month": 442,
- "isMobileFriendly": false
- },
- {
- "name": "Eternal Lands",
- "keywords": null,
- "summary": "A free to play, graphical MMORPG",
- "description": "\n\t\tEternal Lands is a free 3D fantasy MMORPG (massively multiplayer online role playing game)\n\t\tthat can be played on Windows, Android, Linux and OSX.\n\t\t\n \n\t\tThere are 12 skills in the game: Attack, Defense, Harvest, Alchemy, Magic, Potion,\n\t\tSummoning, Manufacturing, Crafting, Engineering, Tailoring and Ranging. There are no fixed\n\t\tclass restrictions, so you can develop your character in any way you wish.\n\t\t\n \n\t\tYou, as a player, determine exactly how you develop your character. If you make mistakes,\n\t\tor decide to change or adjust your build, you can do so. Eternal Lands is not just about\n\t\tcombat. Many players focus on more peaceful activities such as collecting resources,\n\t\tcreating items, summoning monsters and so on. But if you like combat, there is plenty of it\n\t\tas well, both PvP and PvE.\n\t\t\n \n\t\tEternal Lands is owned and run by Radu Privantu. This package is built and maintained by\n\t\tone of the client developers known in game as bluap.\n\t\t\n ",
- "id": "org_pjbroad_EternallandsClient",
- "type": "desktop-application",
- "translations": {},
- "project_license": "QPL-1.0",
- "is_free_license": true,
- "app_id": "org.pjbroad.EternallandsClient",
- "icon": "https://dl.flathub.org/media/org/pjbroad/EternallandsClient/76da9854caaa28ca0c07b3a2f08c6abf/icons/128x128/org.pjbroad.EternallandsClient.png",
- "main_categories": "game",
- "sub_categories": [
- "RolePlaying"
- ],
- "developer_name": "Paul Broadhead",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "pjbroad.org",
- "verification_timestamp": "1711650609",
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1734177345,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1534498056,
- "trending": 12.475560001675657,
- "installs_last_month": 421,
+ "trending": 11.055318945600831,
+ "installs_last_month": 450,
"isMobileFriendly": false
},
{
@@ -42609,8 +42574,43 @@
"aarch64"
],
"added_at": 1668025519,
- "trending": 0.042727369881886856,
- "installs_last_month": 411,
+ "trending": 3.1570227801481803,
+ "installs_last_month": 421,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Eternal Lands",
+ "keywords": null,
+ "summary": "A free to play, graphical MMORPG",
+ "description": "\n\t\tEternal Lands is a free 3D fantasy MMORPG (massively multiplayer online role playing game)\n\t\tthat can be played on Windows, Android, Linux and OSX.\n\t\t\n \n\t\tThere are 12 skills in the game: Attack, Defense, Harvest, Alchemy, Magic, Potion,\n\t\tSummoning, Manufacturing, Crafting, Engineering, Tailoring and Ranging. There are no fixed\n\t\tclass restrictions, so you can develop your character in any way you wish.\n\t\t\n \n\t\tYou, as a player, determine exactly how you develop your character. If you make mistakes,\n\t\tor decide to change or adjust your build, you can do so. Eternal Lands is not just about\n\t\tcombat. Many players focus on more peaceful activities such as collecting resources,\n\t\tcreating items, summoning monsters and so on. But if you like combat, there is plenty of it\n\t\tas well, both PvP and PvE.\n\t\t\n \n\t\tEternal Lands is owned and run by Radu Privantu. This package is built and maintained by\n\t\tone of the client developers known in game as bluap.\n\t\t\n ",
+ "id": "org_pjbroad_EternallandsClient",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "QPL-1.0",
+ "is_free_license": true,
+ "app_id": "org.pjbroad.EternallandsClient",
+ "icon": "https://dl.flathub.org/media/org/pjbroad/EternallandsClient/76da9854caaa28ca0c07b3a2f08c6abf/icons/128x128/org.pjbroad.EternallandsClient.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "RolePlaying"
+ ],
+ "developer_name": "Paul Broadhead",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "pjbroad.org",
+ "verification_timestamp": "1711650609",
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1734177345,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1534498056,
+ "trending": 11.356829017023143,
+ "installs_last_month": 418,
"isMobileFriendly": false
},
{
@@ -42648,8 +42648,8 @@
"aarch64"
],
"added_at": 1678778647,
- "trending": 1.9226935709271744,
- "installs_last_month": 366,
+ "trending": 1.3277370906815456,
+ "installs_last_month": 363,
"isMobileFriendly": false
},
{
@@ -42688,8 +42688,8 @@
"aarch64"
],
"added_at": 1738081639,
- "trending": 4.3507024434645505,
- "installs_last_month": 242,
+ "trending": 1.8512504270150616,
+ "installs_last_month": 248,
"isMobileFriendly": false
},
{
@@ -42723,8 +42723,8 @@
"x86_64"
],
"added_at": 1674052009,
- "trending": -0.38263294284833305,
- "installs_last_month": 174,
+ "trending": 1.5171232179914127,
+ "installs_last_month": 179,
"isMobileFriendly": false
},
{
@@ -42761,8 +42761,8 @@
"aarch64"
],
"added_at": 1701681705,
- "trending": 1.4654554837180915,
- "installs_last_month": 99,
+ "trending": 2.407660503752612,
+ "installs_last_month": 101,
"isMobileFriendly": false
},
{
@@ -42798,43 +42798,8 @@
"aarch64"
],
"added_at": 1686033142,
- "trending": 2.708997578184069,
- "installs_last_month": 92,
- "isMobileFriendly": false
- },
- {
- "name": "choria",
- "keywords": null,
- "summary": "Finally, an MMORPG that's all about grinding and doing chores",
- "description": "Choose from 12 different starting builds with various play styles, as you travel through caves, lava, swamp, ice, and desert to fight 40 different monsters and conquer 16 bosses using a streamlined Active Time Battle system that supports 8 vs 8 fighters.\n During your journey, you'll find new gear to purchase, blacksmiths that can upgrade your gear, traders that can grant you special skills and items, plus a deep endgame.\n The game features sound effects, music, full keyboard/mouse rebinding support and an optional high-res texture pack for 4K displays. Play either single-player or cooperatively over the Internet/LAN.\n ",
- "id": "io_gitlab_jazztickets_choria",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-only",
- "is_free_license": true,
- "app_id": "io.gitlab.jazztickets.choria",
- "icon": "https://dl.flathub.org/media/io/gitlab/jazztickets.choria/4419047064594492a8edc2d3ddae3a03/icons/128x128/io.gitlab.jazztickets.choria.png",
- "main_categories": "game",
- "sub_categories": [
- "RolePlaying"
- ],
- "developer_name": "jazztickets",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "jazztickets",
- "verification_login_provider": "gitlab",
- "verification_login_is_organization": "false",
- "verification_website": null,
- "verification_timestamp": "1686063879",
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1734283294,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1674804010,
- "trending": 0.21218101097919173,
- "installs_last_month": 77,
+ "trending": 2.8260582648010475,
+ "installs_last_month": 96,
"isMobileFriendly": false
},
{
@@ -42881,8 +42846,43 @@
"aarch64"
],
"added_at": 1656664582,
- "trending": 9.15821602756698,
- "installs_last_month": 72,
+ "trending": 8.18621599145455,
+ "installs_last_month": 80,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "choria",
+ "keywords": null,
+ "summary": "Finally, an MMORPG that's all about grinding and doing chores",
+ "description": "Choose from 12 different starting builds with various play styles, as you travel through caves, lava, swamp, ice, and desert to fight 40 different monsters and conquer 16 bosses using a streamlined Active Time Battle system that supports 8 vs 8 fighters.\n During your journey, you'll find new gear to purchase, blacksmiths that can upgrade your gear, traders that can grant you special skills and items, plus a deep endgame.\n The game features sound effects, music, full keyboard/mouse rebinding support and an optional high-res texture pack for 4K displays. Play either single-player or cooperatively over the Internet/LAN.\n ",
+ "id": "io_gitlab_jazztickets_choria",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-only",
+ "is_free_license": true,
+ "app_id": "io.gitlab.jazztickets.choria",
+ "icon": "https://dl.flathub.org/media/io/gitlab/jazztickets.choria/4419047064594492a8edc2d3ddae3a03/icons/128x128/io.gitlab.jazztickets.choria.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "RolePlaying"
+ ],
+ "developer_name": "jazztickets",
+ "verification_verified": true,
+ "verification_method": "login_provider",
+ "verification_login_name": "jazztickets",
+ "verification_login_provider": "gitlab",
+ "verification_login_is_organization": "false",
+ "verification_website": null,
+ "verification_timestamp": "1686063879",
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1734283294,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1674804010,
+ "trending": 5.991745995940631,
+ "installs_last_month": 79,
"isMobileFriendly": false
},
{
@@ -42920,8 +42920,8 @@
"aarch64"
],
"added_at": 1655711498,
- "trending": 7.559163926412992,
- "installs_last_month": 69,
+ "trending": 6.308378444601125,
+ "installs_last_month": 70,
"isMobileFriendly": false
}
],
@@ -42979,8 +42979,8 @@
"aarch64"
],
"added_at": 1569159761,
- "trending": 10.516000541589232,
- "installs_last_month": 2276,
+ "trending": 13.202340508491073,
+ "installs_last_month": 2247,
"isMobileFriendly": false
},
{
@@ -43024,8 +43024,8 @@
"aarch64"
],
"added_at": 1532423485,
- "trending": 11.562163511684714,
- "installs_last_month": 1701,
+ "trending": 11.70015125398493,
+ "installs_last_month": 1721,
"isMobileFriendly": false
},
{
@@ -43067,8 +43067,8 @@
"aarch64"
],
"added_at": 1569159821,
- "trending": 2.1210247267373847,
- "installs_last_month": 817,
+ "trending": 1.5215668315026625,
+ "installs_last_month": 822,
"isMobileFriendly": false
},
{
@@ -43107,8 +43107,8 @@
"x86_64"
],
"added_at": 1554272352,
- "trending": 13.651859377509725,
- "installs_last_month": 722,
+ "trending": 12.018428674371467,
+ "installs_last_month": 724,
"isMobileFriendly": false
},
{
@@ -43150,8 +43150,8 @@
"aarch64"
],
"added_at": 1529314411,
- "trending": 3.762514443444667,
- "installs_last_month": 488,
+ "trending": 0.5011164801045526,
+ "installs_last_month": 484,
"isMobileFriendly": false
},
{
@@ -43191,8 +43191,8 @@
"aarch64"
],
"added_at": 1606981522,
- "trending": 4.600553105646598,
- "installs_last_month": 459,
+ "trending": 9.25844144090108,
+ "installs_last_month": 469,
"isMobileFriendly": false
},
{
@@ -43236,8 +43236,8 @@
"x86_64"
],
"added_at": 1569159667,
- "trending": 11.112147865359972,
- "installs_last_month": 441,
+ "trending": 10.671681542851635,
+ "installs_last_month": 452,
"isMobileFriendly": false
},
{
@@ -43280,8 +43280,8 @@
"aarch64"
],
"added_at": 1706558871,
- "trending": 1.386884961006936,
- "installs_last_month": 434,
+ "trending": 2.9419138139830605,
+ "installs_last_month": 423,
"isMobileFriendly": false
},
{
@@ -43316,8 +43316,8 @@
"x86_64"
],
"added_at": 1623578388,
- "trending": 10.336800425643656,
- "installs_last_month": 425,
+ "trending": 8.988415088724729,
+ "installs_last_month": 403,
"isMobileFriendly": false
},
{
@@ -43357,8 +43357,8 @@
"aarch64"
],
"added_at": 1592688282,
- "trending": 4.383779216517478,
- "installs_last_month": 359,
+ "trending": 5.526860329736145,
+ "installs_last_month": 355,
"isMobileFriendly": false
},
{
@@ -43400,8 +43400,8 @@
"aarch64"
],
"added_at": 1625034507,
- "trending": 5.634272668356654,
- "installs_last_month": 337,
+ "trending": 6.688888388593634,
+ "installs_last_month": 341,
"isMobileFriendly": false
},
{
@@ -43435,7 +43435,7 @@
"aarch64"
],
"added_at": 1709709238,
- "trending": 12.356401569360598,
+ "trending": 11.55780244706769,
"installs_last_month": 331,
"isMobileFriendly": false
},
@@ -43496,45 +43496,8 @@
"aarch64"
],
"added_at": 1707812812,
- "trending": 1.7772895586456408,
- "installs_last_month": 292,
- "isMobileFriendly": false
- },
- {
- "name": "Tremulous",
- "keywords": null,
- "summary": "Aliens vs Humans, First Person Shooter game with elements of Real Time Strategy",
- "description": "\n Tremulous is a free, open source game that blends a team based FPS with\n elements of an RTS.\n \n \n Players can choose from 2 unique races, aliens and humans.\n Players on both teams are able to build working structures in-game like an\n RTS.\n \n ",
- "id": "io_github_grangerhub_Tremulous",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0",
- "is_free_license": true,
- "app_id": "io.github.grangerhub.Tremulous",
- "icon": "https://dl.flathub.org/media/io/github/grangerhub.Tremulous/6aeae9304903c5c60002cb8369864719/icons/128x128/io.github.grangerhub.Tremulous.png",
- "main_categories": "game",
- "sub_categories": [
- "ActionGame",
- "StrategyGame",
- "Shooter"
- ],
- "developer_name": "Dark Legion Development and GrangerHub",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "grangerhub",
- "verification_login_provider": "github",
- "verification_login_is_organization": "true",
- "verification_website": null,
- "verification_timestamp": "1724681421",
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1730378570,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1719836853,
- "trending": 7.036010317242189,
- "installs_last_month": 279,
+ "trending": 2.845414480644473,
+ "installs_last_month": 300,
"isMobileFriendly": false
},
{
@@ -43571,8 +43534,115 @@
"x86_64"
],
"added_at": 1586504666,
- "trending": 5.292580601176791,
- "installs_last_month": 277,
+ "trending": 5.053141419977233,
+ "installs_last_month": 276,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Tremulous",
+ "keywords": null,
+ "summary": "Aliens vs Humans, First Person Shooter game with elements of Real Time Strategy",
+ "description": "\n Tremulous is a free, open source game that blends a team based FPS with\n elements of an RTS.\n \n \n Players can choose from 2 unique races, aliens and humans.\n Players on both teams are able to build working structures in-game like an\n RTS.\n \n ",
+ "id": "io_github_grangerhub_Tremulous",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0",
+ "is_free_license": true,
+ "app_id": "io.github.grangerhub.Tremulous",
+ "icon": "https://dl.flathub.org/media/io/github/grangerhub.Tremulous/6aeae9304903c5c60002cb8369864719/icons/128x128/io.github.grangerhub.Tremulous.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame",
+ "StrategyGame",
+ "Shooter"
+ ],
+ "developer_name": "Dark Legion Development and GrangerHub",
+ "verification_verified": true,
+ "verification_method": "login_provider",
+ "verification_login_name": "grangerhub",
+ "verification_login_provider": "github",
+ "verification_login_is_organization": "true",
+ "verification_website": null,
+ "verification_timestamp": "1724681421",
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1730378570,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1719836853,
+ "trending": 7.354525020839639,
+ "installs_last_month": 276,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Midnightmare Teddy",
+ "keywords": null,
+ "summary": "Shoot and survive",
+ "description": "You're in a dream...or maybe a nightmare! All of the toys have come alive and are chasing you. Fight them off and run to survive for as long as you can. Want the ultimate challenge? Try out Math Mode and use your number skills as a weapon to fight back the evil toys!\n ",
+ "id": "com_endlessnetwork_MidnightmareTeddy",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "LicenseRef-proprietary",
+ "is_free_license": false,
+ "app_id": "com.endlessnetwork.MidnightmareTeddy",
+ "icon": "https://dl.flathub.org/media/com/endlessnetwork/MidnightmareTeddy/cabb4fcd24958c2a8816e36e92f4dc58/icons/128x128/com.endlessnetwork.MidnightmareTeddy.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "Shooter",
+ "Education"
+ ],
+ "developer_name": "Endless Studios",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "endlessnetwork.com",
+ "verification_timestamp": "1679652958",
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1737457648,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1554214991,
+ "trending": 12.340417101143291,
+ "installs_last_month": 269,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Tesseract",
+ "keywords": null,
+ "summary": "First-person shooter with cooperative in-game map editing",
+ "description": "Tesseract is a first-person shooter game focused on instagib deathmatch\nand capture-the-flag gameplay as well as cooperative in-game map editing.\n Tesseract is based on Cube2/Sauerbraten. New rendering features include fully\ndynamic omnidirectional shadows, global illumination, HDR lighting, deferred\nshading and morphological/temporal/multisample anti-aliasing.\n ",
+ "id": "gg_tesseract_Tesseract",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "Zlib",
+ "is_free_license": true,
+ "app_id": "gg.tesseract.Tesseract",
+ "icon": "https://dl.flathub.org/media/gg/tesseract/Tesseract/f958cb94bae10bf073f19a29635798e4/icons/128x128/gg.tesseract.Tesseract.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "Shooter"
+ ],
+ "developer_name": "Lee Salzmann",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1731449278,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1691880889,
+ "trending": 1.4358016412375485,
+ "installs_last_month": 257,
"isMobileFriendly": false
},
{
@@ -43615,78 +43685,8 @@
"aarch64"
],
"added_at": 1706432661,
- "trending": 10.288429667237454,
- "installs_last_month": 265,
- "isMobileFriendly": false
- },
- {
- "name": "Midnightmare Teddy",
- "keywords": null,
- "summary": "Shoot and survive",
- "description": "You're in a dream...or maybe a nightmare! All of the toys have come alive and are chasing you. Fight them off and run to survive for as long as you can. Want the ultimate challenge? Try out Math Mode and use your number skills as a weapon to fight back the evil toys!\n ",
- "id": "com_endlessnetwork_MidnightmareTeddy",
- "type": "desktop-application",
- "translations": {},
- "project_license": "LicenseRef-proprietary",
- "is_free_license": false,
- "app_id": "com.endlessnetwork.MidnightmareTeddy",
- "icon": "https://dl.flathub.org/media/com/endlessnetwork/MidnightmareTeddy/cabb4fcd24958c2a8816e36e92f4dc58/icons/128x128/com.endlessnetwork.MidnightmareTeddy.png",
- "main_categories": "game",
- "sub_categories": [
- "Shooter",
- "Education"
- ],
- "developer_name": "Endless Studios",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "endlessnetwork.com",
- "verification_timestamp": "1679652958",
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1737457648,
- "arches": [
- "x86_64"
- ],
- "added_at": 1554214991,
- "trending": 10.968173929898946,
- "installs_last_month": 254,
- "isMobileFriendly": false
- },
- {
- "name": "Tesseract",
- "keywords": null,
- "summary": "First-person shooter with cooperative in-game map editing",
- "description": "Tesseract is a first-person shooter game focused on instagib deathmatch\nand capture-the-flag gameplay as well as cooperative in-game map editing.\n Tesseract is based on Cube2/Sauerbraten. New rendering features include fully\ndynamic omnidirectional shadows, global illumination, HDR lighting, deferred\nshading and morphological/temporal/multisample anti-aliasing.\n ",
- "id": "gg_tesseract_Tesseract",
- "type": "desktop-application",
- "translations": {},
- "project_license": "Zlib",
- "is_free_license": true,
- "app_id": "gg.tesseract.Tesseract",
- "icon": "https://dl.flathub.org/media/gg/tesseract/Tesseract/f958cb94bae10bf073f19a29635798e4/icons/128x128/gg.tesseract.Tesseract.png",
- "main_categories": "game",
- "sub_categories": [
- "Shooter"
- ],
- "developer_name": "Lee Salzmann",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1731449278,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1691880889,
- "trending": -0.15249727971929716,
- "installs_last_month": 248,
+ "trending": 8.689709305839498,
+ "installs_last_month": 257,
"isMobileFriendly": false
},
{
@@ -43725,8 +43725,93 @@
"aarch64"
],
"added_at": 1696058615,
- "trending": 4.566862897217193,
- "installs_last_month": 242,
+ "trending": 4.937420202565587,
+ "installs_last_month": 252,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "DXX-Rebirth",
+ "keywords": [
+ "Descent",
+ "6dof",
+ "scifi",
+ "flight",
+ "retro",
+ "sourceport",
+ "port"
+ ],
+ "summary": "Modern cross-platform port of the Descent engine",
+ "description": "DXX-Rebirth is a modern port of the Descent game engine, based on the late D1X and D2X source\n ports (which, in turn, were based on the original Descent source release and LDescent).\n The Rebirth Team has spent a lot of time working to improve the source code by fixing old bugs\n and adding some improvements, while always staying true to our philosophy:\n Keep it Descent!\n \n DXX-Rebirth has every little feature you may remember from the original Descent 1 & 2\n and much more. For example:\n \n Full compatibility with Descent and Descent 2, including all expansions and third-party levels.\n DXX-Rebirth runs on your favourite Operating System. We officially support Linux (and other *NIXs),\n Mac OS X and Windows. The source code can also be compiled on many other systems!\n OpenGL provides fast and smooth rendering - even on low-end systems.\n Optionally you can enable several effects like Transparency, Colored Lighting, Texture Filtering,\n FSAA, etc.\n Thanks to SDL, a wide variety of Joysticks are supported. Also you can use more Joysticks,\n buttons and axes than you can ever operate in your state of evolution.\n Joystick, Keyboard and Mouse can be used simultaneously.\n The games can display all resolutions and aspects supported by your monitor, including an\n option for VSync.\n Besides MIDI and CD-Audio (Redbook), you can play your own custom Music from your hard drive\n or a separate AddOn.\n Both games can utilize special AddOn packs to replace or expand the original game content.\n Multiplayer via UDP protocol provides a fast and easy-to-use LAN and Online action. This includes\n reliable communication causing less glitches due to lost packets.\n The ingame Demo-recording system has been improved. Demos are less glitchy and smaller while\n still still being backwards-compatible to earlier versions of the games.\n Higher game speed will not cause glitches such as unacceptable fast homing projectiles,\n incredible high damage caused by several collisions or Fusion cannon, etc.\n Player files, Savegames, Demos and Missions from DOS-Versions of the games can freely be used\n in DXX-Rebirth and vice versa.\n Mac Command keys are now working - see F1 Help. Command-Q works much like a normal Mac program\n Multiplayer support over UDP/IP (using port 42424 by default)\n Even more ...\n \n ",
+ "id": "io_github_dxx_rebirth_dxx-rebirth",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0 AND LicenseRef-proprietary=https://raw.githubusercontent.com/dxx-rebirth/dxx-rebirth/master/COPYING.txt",
+ "is_free_license": false,
+ "app_id": "io.github.dxx_rebirth.dxx-rebirth",
+ "icon": "https://dl.flathub.org/media/io/github/dxx_rebirth.dxx-rebirth/04ff4708368a0530c0528b371b2bef7a/icons/128x128/io.github.dxx_rebirth.dxx-rebirth.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "ActionGame",
+ "Shooter"
+ ],
+ "developer_name": "DXX-Rebirth Contributors",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1732660980,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1728282620,
+ "trending": 5.262050959160293,
+ "installs_last_month": 184,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "ezQuake",
+ "keywords": [
+ "quake",
+ "first",
+ "person",
+ "shooter",
+ "multiplayer"
+ ],
+ "summary": "a modern QuakeWorld client focused on competitive online play",
+ "description": "Welcome to the home of ezQuake, a modern QuakeWorld client focused on competitive online play. Combining the features of modern QuakeWorld® clients, ezQuake makes QuakeWorld® easier to start and play. The immortal first person shooter Quake® in a brand new skin with superb graphics and extremely fast gameplay.\n Features:\n \n Modern Graphics: Particle explosions, shaft beam, gunshots, nails, rocket and grenade trails, blood, and others, MD3 models, fog, water effects, killing spree messages, rain\n Modern competitive gaming features: Fullbright skins, forcing team/enemy colors, advanced weapon handling, teamplay messages, auto game recording, automated screenshots and console logging\n Graphics customization: Customize your HUD, colors of walls and liquids, turn superfluous graphics effects off, change world textures, crosshair, sky picture, console background, game font\n Independent Physics: Get the smoothest experience possible without being limited by server or network settings\n Integrated Server Browser: Easy searching and filtering of online servers\n Enhanced demo/QTV playback: View recorded games from multiple points of view, watch action on radar, all player stats in a handy table, autotrack the strongest player\n \n Commercial data files are required to run the supported games. These can be aquired though a multitude of sources. See the manual for more info on this.\n ",
+ "id": "io_github_ezQuake",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0",
+ "is_free_license": true,
+ "app_id": "io.github.ezQuake",
+ "icon": "https://dl.flathub.org/media/io/github/ezQuake/de70166e235e651c577a58ac225f5116/icons/128x128/io.github.ezQuake.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "Shooter"
+ ],
+ "developer_name": "ezQuake team",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1742815187,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1570002057,
+ "trending": 1.807652748884375,
+ "installs_last_month": 181,
"isMobileFriendly": false
},
{
@@ -43777,95 +43862,10 @@
"aarch64"
],
"added_at": 1710817544,
- "trending": 9.33859031347784,
- "installs_last_month": 181,
- "isMobileFriendly": false
- },
- {
- "name": "DXX-Rebirth",
- "keywords": [
- "Descent",
- "6dof",
- "scifi",
- "flight",
- "retro",
- "sourceport",
- "port"
- ],
- "summary": "Modern cross-platform port of the Descent engine",
- "description": "DXX-Rebirth is a modern port of the Descent game engine, based on the late D1X and D2X source\n ports (which, in turn, were based on the original Descent source release and LDescent).\n The Rebirth Team has spent a lot of time working to improve the source code by fixing old bugs\n and adding some improvements, while always staying true to our philosophy:\n Keep it Descent!\n \n DXX-Rebirth has every little feature you may remember from the original Descent 1 & 2\n and much more. For example:\n \n Full compatibility with Descent and Descent 2, including all expansions and third-party levels.\n DXX-Rebirth runs on your favourite Operating System. We officially support Linux (and other *NIXs),\n Mac OS X and Windows. The source code can also be compiled on many other systems!\n OpenGL provides fast and smooth rendering - even on low-end systems.\n Optionally you can enable several effects like Transparency, Colored Lighting, Texture Filtering,\n FSAA, etc.\n Thanks to SDL, a wide variety of Joysticks are supported. Also you can use more Joysticks,\n buttons and axes than you can ever operate in your state of evolution.\n Joystick, Keyboard and Mouse can be used simultaneously.\n The games can display all resolutions and aspects supported by your monitor, including an\n option for VSync.\n Besides MIDI and CD-Audio (Redbook), you can play your own custom Music from your hard drive\n or a separate AddOn.\n Both games can utilize special AddOn packs to replace or expand the original game content.\n Multiplayer via UDP protocol provides a fast and easy-to-use LAN and Online action. This includes\n reliable communication causing less glitches due to lost packets.\n The ingame Demo-recording system has been improved. Demos are less glitchy and smaller while\n still still being backwards-compatible to earlier versions of the games.\n Higher game speed will not cause glitches such as unacceptable fast homing projectiles,\n incredible high damage caused by several collisions or Fusion cannon, etc.\n Player files, Savegames, Demos and Missions from DOS-Versions of the games can freely be used\n in DXX-Rebirth and vice versa.\n Mac Command keys are now working - see F1 Help. Command-Q works much like a normal Mac program\n Multiplayer support over UDP/IP (using port 42424 by default)\n Even more ...\n \n ",
- "id": "io_github_dxx_rebirth_dxx-rebirth",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0 AND LicenseRef-proprietary=https://raw.githubusercontent.com/dxx-rebirth/dxx-rebirth/master/COPYING.txt",
- "is_free_license": false,
- "app_id": "io.github.dxx_rebirth.dxx-rebirth",
- "icon": "https://dl.flathub.org/media/io/github/dxx_rebirth.dxx-rebirth/04ff4708368a0530c0528b371b2bef7a/icons/128x128/io.github.dxx_rebirth.dxx-rebirth.png",
- "main_categories": "game",
- "sub_categories": [
- "ActionGame",
- "Shooter"
- ],
- "developer_name": "DXX-Rebirth Contributors",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1732660980,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1728282620,
- "trending": 3.903759391511739,
+ "trending": 8.499295908892389,
"installs_last_month": 178,
"isMobileFriendly": false
},
- {
- "name": "ezQuake",
- "keywords": [
- "quake",
- "first",
- "person",
- "shooter",
- "multiplayer"
- ],
- "summary": "a modern QuakeWorld client focused on competitive online play",
- "description": "Welcome to the home of ezQuake, a modern QuakeWorld client focused on competitive online play. Combining the features of modern QuakeWorld® clients, ezQuake makes QuakeWorld® easier to start and play. The immortal first person shooter Quake® in a brand new skin with superb graphics and extremely fast gameplay.\n Features:\n \n Modern Graphics: Particle explosions, shaft beam, gunshots, nails, rocket and grenade trails, blood, and others, MD3 models, fog, water effects, killing spree messages, rain\n Modern competitive gaming features: Fullbright skins, forcing team/enemy colors, advanced weapon handling, teamplay messages, auto game recording, automated screenshots and console logging\n Graphics customization: Customize your HUD, colors of walls and liquids, turn superfluous graphics effects off, change world textures, crosshair, sky picture, console background, game font\n Independent Physics: Get the smoothest experience possible without being limited by server or network settings\n Integrated Server Browser: Easy searching and filtering of online servers\n Enhanced demo/QTV playback: View recorded games from multiple points of view, watch action on radar, all player stats in a handy table, autotrack the strongest player\n \n Commercial data files are required to run the supported games. These can be aquired though a multitude of sources. See the manual for more info on this.\n ",
- "id": "io_github_ezQuake",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0",
- "is_free_license": true,
- "app_id": "io.github.ezQuake",
- "icon": "https://dl.flathub.org/media/io/github/ezQuake/de70166e235e651c577a58ac225f5116/icons/128x128/io.github.ezQuake.png",
- "main_categories": "game",
- "sub_categories": [
- "Shooter"
- ],
- "developer_name": "ezQuake team",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1742815187,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1570002057,
- "trending": 1.2158521655345498,
- "installs_last_month": 174,
- "isMobileFriendly": false
- },
{
"name": "SPRAWL 96",
"keywords": [
@@ -43909,8 +43909,8 @@
"aarch64"
],
"added_at": 1736700085,
- "trending": 3.2919712941125874,
- "installs_last_month": 148,
+ "trending": 3.1494270619675913,
+ "installs_last_month": 149,
"isMobileFriendly": false
},
{
@@ -43954,8 +43954,8 @@
"x86_64"
],
"added_at": 1693820560,
- "trending": 1.2572827133152875,
- "installs_last_month": 138,
+ "trending": 0.003302152150301385,
+ "installs_last_month": 139,
"isMobileFriendly": false
},
{
@@ -43991,8 +43991,8 @@
"aarch64"
],
"added_at": 1686033142,
- "trending": 2.708997578184069,
- "installs_last_month": 92,
+ "trending": 2.8260582648010475,
+ "installs_last_month": 96,
"isMobileFriendly": false
},
{
@@ -44036,8 +44036,8 @@
"x86_64"
],
"added_at": 1737604641,
- "trending": 1.4582997307057997,
- "installs_last_month": 92,
+ "trending": 1.5687856036197745,
+ "installs_last_month": 87,
"isMobileFriendly": false
},
{
@@ -44079,8 +44079,8 @@
"aarch64"
],
"added_at": 1716532941,
- "trending": 12.317418040221954,
- "installs_last_month": 47,
+ "trending": 13.488469872746428,
+ "installs_last_month": 52,
"isMobileFriendly": false
}
],
@@ -44134,8 +44134,8 @@
"aarch64"
],
"added_at": 1666334692,
- "trending": 10.39692521324178,
- "installs_last_month": 34255,
+ "trending": 9.867398139766214,
+ "installs_last_month": 34528,
"isMobileFriendly": false
},
{
@@ -44187,8 +44187,8 @@
"aarch64"
],
"added_at": 1494566610,
- "trending": 12.006669285547742,
- "installs_last_month": 5919,
+ "trending": 11.969720572183718,
+ "installs_last_month": 5889,
"isMobileFriendly": true
},
{
@@ -44227,8 +44227,8 @@
"x86_64"
],
"added_at": 1714032230,
- "trending": 5.8960420457107094,
- "installs_last_month": 3899,
+ "trending": 4.871336460718362,
+ "installs_last_month": 3930,
"isMobileFriendly": false
},
{
@@ -44278,8 +44278,8 @@
"aarch64"
],
"added_at": 1588103212,
- "trending": 6.461465599649916,
- "installs_last_month": 1844,
+ "trending": 6.6833303468481295,
+ "installs_last_month": 1808,
"isMobileFriendly": false
},
{
@@ -44358,8 +44358,8 @@
"aarch64"
],
"added_at": 1597649163,
- "trending": 13.326890010874813,
- "installs_last_month": 1429,
+ "trending": 10.579324839622346,
+ "installs_last_month": 1437,
"isMobileFriendly": false
},
{
@@ -44408,8 +44408,8 @@
"aarch64"
],
"added_at": 1525380833,
- "trending": -0.04477070490098312,
- "installs_last_month": 1305,
+ "trending": 2.510263576480025,
+ "installs_last_month": 1322,
"isMobileFriendly": false
},
{
@@ -44475,8 +44475,8 @@
"x86_64"
],
"added_at": 1521176376,
- "trending": 18.961613137603827,
- "installs_last_month": 1217,
+ "trending": 14.269059062798084,
+ "installs_last_month": 1247,
"isMobileFriendly": false
},
{
@@ -44510,8 +44510,8 @@
"aarch64"
],
"added_at": 1569159471,
- "trending": -0.3687331707117454,
- "installs_last_month": 1197,
+ "trending": 0.9189224838236048,
+ "installs_last_month": 1203,
"isMobileFriendly": false
},
{
@@ -44611,8 +44611,8 @@
"aarch64"
],
"added_at": 1560974118,
- "trending": 4.652328707837079,
- "installs_last_month": 1075,
+ "trending": 6.906754427778947,
+ "installs_last_month": 1060,
"isMobileFriendly": false
},
{
@@ -44659,8 +44659,8 @@
"aarch64"
],
"added_at": 1587042299,
- "trending": 2.043977987989054,
- "installs_last_month": 627,
+ "trending": 0.44124822827409294,
+ "installs_last_month": 618,
"isMobileFriendly": false
},
{
@@ -44696,8 +44696,8 @@
"x86_64"
],
"added_at": 1653032695,
- "trending": 7.460468008974314,
- "installs_last_month": 496,
+ "trending": 10.0450763581136,
+ "installs_last_month": 493,
"isMobileFriendly": false
},
{
@@ -44740,8 +44740,8 @@
"aarch64"
],
"added_at": 1689577012,
- "trending": 8.231240113598243,
- "installs_last_month": 442,
+ "trending": 10.489061321180571,
+ "installs_last_month": 435,
"isMobileFriendly": false
},
{
@@ -44775,8 +44775,8 @@
"aarch64"
],
"added_at": 1622107260,
- "trending": 4.6891148180015945,
- "installs_last_month": 412,
+ "trending": 3.5265838814028063,
+ "installs_last_month": 418,
"isMobileFriendly": false
},
{
@@ -44809,8 +44809,8 @@
"x86_64"
],
"added_at": 1629280840,
- "trending": 6.92029119964764,
- "installs_last_month": 392,
+ "trending": 6.392407237788906,
+ "installs_last_month": 386,
"isMobileFriendly": false
},
{
@@ -44844,8 +44844,43 @@
"aarch64"
],
"added_at": 1717580246,
- "trending": 3.718237927886736,
- "installs_last_month": 352,
+ "trending": 3.382932746864491,
+ "installs_last_month": 349,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Micropolis",
+ "keywords": null,
+ "summary": "City building game",
+ "description": "City-building simulation based on the source release of SimCity by originally developed by Maxis and published by Electronic Arts in 1989.\n ",
+ "id": "com_donhopkins_Micropolis",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "com.donhopkins.Micropolis",
+ "icon": "https://dl.flathub.org/media/com/donhopkins/Micropolis/9b8e0c3663002dbd8c5d1644d5ff0c27/icons/128x128/com.donhopkins.Micropolis.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "Simulation"
+ ],
+ "developer_name": "Will Wright, Don Hopkins",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1714895672,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1714895672,
+ "trending": 10.254061588045625,
+ "installs_last_month": 339,
"isMobileFriendly": false
},
{
@@ -44881,43 +44916,8 @@
"aarch64"
],
"added_at": 1534170853,
- "trending": 6.788373686243252,
- "installs_last_month": 339,
- "isMobileFriendly": false
- },
- {
- "name": "Micropolis",
- "keywords": null,
- "summary": "City building game",
- "description": "City-building simulation based on the source release of SimCity by originally developed by Maxis and published by Electronic Arts in 1989.\n ",
- "id": "com_donhopkins_Micropolis",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "com.donhopkins.Micropolis",
- "icon": "https://dl.flathub.org/media/com/donhopkins/Micropolis/9b8e0c3663002dbd8c5d1644d5ff0c27/icons/128x128/com.donhopkins.Micropolis.png",
- "main_categories": "game",
- "sub_categories": [
- "Simulation"
- ],
- "developer_name": "Will Wright, Don Hopkins",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1714895672,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1714895672,
- "trending": 9.323315826608054,
- "installs_last_month": 331,
+ "trending": 6.71707679098909,
+ "installs_last_month": 335,
"isMobileFriendly": false
},
{
@@ -44952,8 +44952,8 @@
"aarch64"
],
"added_at": 1611071198,
- "trending": 6.729809171109418,
- "installs_last_month": 284,
+ "trending": 8.71500374926249,
+ "installs_last_month": 287,
"isMobileFriendly": false
},
{
@@ -44987,8 +44987,78 @@
"aarch64"
],
"added_at": 1580324052,
- "trending": 5.7536997655879345,
- "installs_last_month": 280,
+ "trending": 5.791476605221739,
+ "installs_last_month": 278,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "EmptyEpsilon",
+ "keywords": null,
+ "summary": "Spaceship bridge simulator game",
+ "description": "EmptyEpsilon is a spaceship bridge simulator game. It's fully open source, so it can be modified in any way people wish.\n EmptyEpsilon places you in the roles of a spaceship's bridge officers, like those seen in Star Trek. While you can play EmptyEpsilon alone or with friends, the best experience involves 6 players working together on each ship.\n Each officer fills a unique role: Captain, Helms, Weapons, Relay, Science, and Engineering. Except for the Captain, each officer operates part of the ship through a specialized screen. The Captain relies on their trusty crew to report information and follow orders.\n ",
+ "id": "io_github_daid_EmptyEpsilon",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0-only AND LicenseRef-TurboSquid-Royalty-Free-License AND OFL-1.1 AND Apache-2.0",
+ "is_free_license": false,
+ "app_id": "io.github.daid.EmptyEpsilon",
+ "icon": "https://dl.flathub.org/media/io/github/daid.EmptyEpsilon/0ea0c765b88aa37deef2ad750d5cf516/icons/128x128/io.github.daid.EmptyEpsilon.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "Simulation"
+ ],
+ "developer_name": "daid",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1734209536,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1729019296,
+ "trending": 10.745719709051793,
+ "installs_last_month": 263,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Search and Rescue II",
+ "keywords": null,
+ "summary": "Rescue Helicopter Simulator",
+ "description": "Search and Rescue II is a rescue helicopter simulator for Linux. It features several missions where the player pilots a helicopter in order to rescue people in distress. There are several scenarios and helicopter models.",
+ "id": "io_github_searchandrescue2_sar2",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0",
+ "is_free_license": true,
+ "app_id": "io.github.searchandrescue2.sar2",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.github.searchandrescue2.sar2.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "Simulation"
+ ],
+ "developer_name": null,
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/22.08",
+ "updated_at": 1691391264,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1691391264,
+ "trending": 2.717359176152208,
+ "installs_last_month": 258,
"isMobileFriendly": false
},
{
@@ -45026,78 +45096,8 @@
"aarch64"
],
"added_at": 1620632153,
- "trending": 7.547375280801416,
- "installs_last_month": 260,
- "isMobileFriendly": false
- },
- {
- "name": "EmptyEpsilon",
- "keywords": null,
- "summary": "Spaceship bridge simulator game",
- "description": "EmptyEpsilon is a spaceship bridge simulator game. It's fully open source, so it can be modified in any way people wish.\n EmptyEpsilon places you in the roles of a spaceship's bridge officers, like those seen in Star Trek. While you can play EmptyEpsilon alone or with friends, the best experience involves 6 players working together on each ship.\n Each officer fills a unique role: Captain, Helms, Weapons, Relay, Science, and Engineering. Except for the Captain, each officer operates part of the ship through a specialized screen. The Captain relies on their trusty crew to report information and follow orders.\n ",
- "id": "io_github_daid_EmptyEpsilon",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0-only AND LicenseRef-TurboSquid-Royalty-Free-License AND OFL-1.1 AND Apache-2.0",
- "is_free_license": false,
- "app_id": "io.github.daid.EmptyEpsilon",
- "icon": "https://dl.flathub.org/media/io/github/daid.EmptyEpsilon/0ea0c765b88aa37deef2ad750d5cf516/icons/128x128/io.github.daid.EmptyEpsilon.png",
- "main_categories": "game",
- "sub_categories": [
- "Simulation"
- ],
- "developer_name": "daid",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1734209536,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1729019296,
- "trending": 13.930095120247898,
- "installs_last_month": 257,
- "isMobileFriendly": false
- },
- {
- "name": "Search and Rescue II",
- "keywords": null,
- "summary": "Rescue Helicopter Simulator",
- "description": "Search and Rescue II is a rescue helicopter simulator for Linux. It features several missions where the player pilots a helicopter in order to rescue people in distress. There are several scenarios and helicopter models.",
- "id": "io_github_searchandrescue2_sar2",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0",
- "is_free_license": true,
- "app_id": "io.github.searchandrescue2.sar2",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.github.searchandrescue2.sar2.png",
- "main_categories": "game",
- "sub_categories": [
- "Simulation"
- ],
- "developer_name": null,
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/22.08",
- "updated_at": 1691391264,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1691391264,
- "trending": 3.441401793105033,
- "installs_last_month": 242,
+ "trending": 5.539406315517073,
+ "installs_last_month": 256,
"isMobileFriendly": false
},
{
@@ -45133,8 +45133,8 @@
"aarch64"
],
"added_at": 1699221678,
- "trending": 2.6637431821040853,
- "installs_last_month": 221,
+ "trending": 1.4392846802361294,
+ "installs_last_month": 232,
"isMobileFriendly": false
},
{
@@ -45168,8 +45168,8 @@
"aarch64"
],
"added_at": 1740201023,
- "trending": 2.747954086783515,
- "installs_last_month": 198,
+ "trending": 5.606480990913813,
+ "installs_last_month": 190,
"isMobileFriendly": false
},
{
@@ -45211,8 +45211,8 @@
"aarch64"
],
"added_at": 1717580020,
- "trending": 5.991897371624075,
- "installs_last_month": 180,
+ "trending": 7.077212286750973,
+ "installs_last_month": 179,
"isMobileFriendly": false
},
{
@@ -45251,8 +45251,8 @@
"aarch64"
],
"added_at": 1734159557,
- "trending": 1.9243247601975524,
- "installs_last_month": 157,
+ "trending": 6.68682516931375,
+ "installs_last_month": 164,
"isMobileFriendly": false
},
{
@@ -45285,8 +45285,8 @@
"x86_64"
],
"added_at": 1594634163,
- "trending": 8.046617839606842,
- "installs_last_month": 144,
+ "trending": 7.1169003286827985,
+ "installs_last_month": 138,
"isMobileFriendly": false
},
{
@@ -45329,8 +45329,8 @@
"aarch64"
],
"added_at": 1494975820,
- "trending": 12.2470330391032,
- "installs_last_month": 118,
+ "trending": 10.676525596834642,
+ "installs_last_month": 124,
"isMobileFriendly": false
},
{
@@ -45374,8 +45374,8 @@
"aarch64"
],
"added_at": 1705654905,
- "trending": 10.199428434045386,
- "installs_last_month": 113,
+ "trending": 8.45545445949073,
+ "installs_last_month": 116,
"isMobileFriendly": false
}
],
@@ -45423,8 +45423,8 @@
"aarch64"
],
"added_at": 1540375117,
- "trending": 0.0679554555421138,
- "installs_last_month": 815,
+ "trending": 3.070525390823194,
+ "installs_last_month": 817,
"isMobileFriendly": false
},
{
@@ -45457,8 +45457,8 @@
"x86_64"
],
"added_at": 1533027644,
- "trending": 2.54365708028113,
- "installs_last_month": 579,
+ "trending": 0.12408027402129208,
+ "installs_last_month": 578,
"isMobileFriendly": false
},
{
@@ -45498,8 +45498,8 @@
"aarch64"
],
"added_at": 1707812256,
- "trending": 2.397101112231494,
- "installs_last_month": 518,
+ "trending": 0.5791473750153118,
+ "installs_last_month": 516,
"isMobileFriendly": false
},
{
@@ -45533,8 +45533,8 @@
"aarch64"
],
"added_at": 1662103928,
- "trending": 3.895467304166602,
- "installs_last_month": 480,
+ "trending": 0.6330721978303189,
+ "installs_last_month": 478,
"isMobileFriendly": false
},
{
@@ -45573,8 +45573,8 @@
"aarch64"
],
"added_at": 1652258283,
- "trending": 0.21382835868228975,
- "installs_last_month": 404,
+ "trending": 0.6899300632793194,
+ "installs_last_month": 396,
"isMobileFriendly": false
},
{
@@ -45614,8 +45614,8 @@
"aarch64"
],
"added_at": 1492280305,
- "trending": -0.434591767823409,
- "installs_last_month": 389,
+ "trending": 2.7497325038076683,
+ "installs_last_month": 394,
"isMobileFriendly": false
},
{
@@ -45649,8 +45649,8 @@
"aarch64"
],
"added_at": 1672610373,
- "trending": 10.364230986872927,
- "installs_last_month": 372,
+ "trending": 11.312740743268552,
+ "installs_last_month": 379,
"isMobileFriendly": false
},
{
@@ -45687,8 +45687,8 @@
"aarch64"
],
"added_at": 1698646399,
- "trending": 3.686908481514328,
- "installs_last_month": 292,
+ "trending": 5.179973313512161,
+ "installs_last_month": 295,
"isMobileFriendly": false
},
{
@@ -45725,8 +45725,8 @@
"aarch64"
],
"added_at": 1701681910,
- "trending": 4.135751648378853,
- "installs_last_month": 286,
+ "trending": 4.933188427797912,
+ "installs_last_month": 276,
"isMobileFriendly": false
},
{
@@ -45766,8 +45766,8 @@
"aarch64"
],
"added_at": 1493187935,
- "trending": 9.680354606603956,
- "installs_last_month": 228,
+ "trending": 10.477002066723914,
+ "installs_last_month": 227,
"isMobileFriendly": false
},
{
@@ -45808,8 +45808,8 @@
"aarch64"
],
"added_at": 1680077665,
- "trending": 1.3418464562800567,
- "installs_last_month": 201,
+ "trending": 1.2600994774354226,
+ "installs_last_month": 191,
"isMobileFriendly": false
},
{
@@ -45847,8 +45847,8 @@
"aarch64"
],
"added_at": 1704220281,
- "trending": 2.6585846329699683,
- "installs_last_month": 178,
+ "trending": -1.2952890361195124,
+ "installs_last_month": 174,
"isMobileFriendly": false
},
{
@@ -45890,8 +45890,8 @@
"aarch64"
],
"added_at": 1695625746,
- "trending": 9.626279692182724,
- "installs_last_month": 136,
+ "trending": 7.579427083604887,
+ "installs_last_month": 137,
"isMobileFriendly": false
},
{
@@ -45925,8 +45925,8 @@
"aarch64"
],
"added_at": 1656705045,
- "trending": 9.703379621624045,
- "installs_last_month": 91,
+ "trending": 11.950358069672246,
+ "installs_last_month": 94,
"isMobileFriendly": false
},
{
@@ -46056,13 +46056,13 @@
"aarch64"
],
"added_at": 1529927153,
- "trending": 2.5707064873818473,
- "installs_last_month": 84,
+ "trending": 0.2513056238183642,
+ "installs_last_month": 79,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 4,
+ "processingTimeMs": 3,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -46132,8 +46132,8 @@
"aarch64"
],
"added_at": 1492488841,
- "trending": 15.8749710266223,
- "installs_last_month": 6661,
+ "trending": 14.82240032332431,
+ "installs_last_month": 6676,
"isMobileFriendly": false
},
{
@@ -46167,8 +46167,8 @@
"aarch64"
],
"added_at": 1512123081,
- "trending": 20.099428499000737,
- "installs_last_month": 2380,
+ "trending": 11.722035253897175,
+ "installs_last_month": 2348,
"isMobileFriendly": false
},
{
@@ -46206,8 +46206,8 @@
"aarch64"
],
"added_at": 1531742097,
- "trending": 4.398054109243775,
- "installs_last_month": 2089,
+ "trending": 5.2861963720604885,
+ "installs_last_month": 2077,
"isMobileFriendly": false
},
{
@@ -46279,8 +46279,8 @@
"aarch64"
],
"added_at": 1494867889,
- "trending": 10.140734687273191,
- "installs_last_month": 1885,
+ "trending": 8.046570669129634,
+ "installs_last_month": 1839,
"isMobileFriendly": false
},
{
@@ -46323,8 +46323,8 @@
"aarch64"
],
"added_at": 1610614423,
- "trending": 8.92767706541585,
- "installs_last_month": 1408,
+ "trending": 10.69072975992356,
+ "installs_last_month": 1427,
"isMobileFriendly": false
},
{
@@ -46393,8 +46393,8 @@
"aarch64"
],
"added_at": 1533334334,
- "trending": 6.582612492098626,
- "installs_last_month": 1244,
+ "trending": 5.4190951036573125,
+ "installs_last_month": 1269,
"isMobileFriendly": false
},
{
@@ -46432,140 +46432,10 @@
"aarch64"
],
"added_at": 1674804656,
- "trending": 14.338660255037931,
- "installs_last_month": 678,
+ "trending": 12.93202814798676,
+ "installs_last_month": 665,
"isMobileFriendly": false
},
- {
- "name": "fheroes2",
- "keywords": [
- "heroes2",
- "homm2"
- ],
- "summary": "fheroes2 is a recreation of the Heroes of Might and Magic II game engine",
- "description": "This open source multiplatform project, written from scratch, is designed to reproduce the original game with significant improvements to the gameplay, graphics and logic (including support for high-resolution graphics, improved AI, numerous fixes and UI improvements), breathing new life into one of the most addictive turn-based strategy games.\n ",
- "id": "io_github_ihhub_Fheroes2",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0",
- "is_free_license": true,
- "app_id": "io.github.ihhub.Fheroes2",
- "icon": "https://dl.flathub.org/media/io/github/ihhub.Fheroes2/c45113b857b37366b8a8e462ff744ce5/icons/128x128/io.github.ihhub.Fheroes2.png",
- "main_categories": "game",
- "sub_categories": [
- "StrategyGame"
- ],
- "developer_name": "fheroes2 Resurrection team",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "ihhub",
- "verification_login_provider": "github",
- "verification_login_is_organization": "true",
- "verification_website": null,
- "verification_timestamp": "1697351982",
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1742744004,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1653030446,
- "trending": 3.037913490253426,
- "installs_last_month": 636,
- "isMobileFriendly": false
- },
- {
- "name": "VCMI",
- "keywords": [
- "heroes3",
- "homm3"
- ],
- "summary": "Open-source game engine for Heroes of Might and Magic III",
- "description": "VCMI is an open-source engine for Heroes of Might and Magic III with new possibilities. Years of intensive work resulted in an impressive amount of features. Among the current features are:\n \n Complete gameplay mechanics\n Almost all objects, abilities, spells and other content\n Basic battle AI and adventure AI\n Many GUI improvements: high resolutions, stack queue, creature window\n Advanced and easy mod support - add new towns, creatures, heroes, artifacts and spells without limits or conflicts\n Launcher for easy configuration - download mods from our server and install them immediately!\n Random map generator that supports objects added by mods\n \n Note: In order to play the game using VCMI you need to own data files for Heroes of Might and Magic III: The Shadow of Death.\n If you want help, please check our forum, bug tracker or GitHub page.\n ",
- "id": "eu_vcmi_VCMI",
- "type": "desktop-application",
- "translations": {
- "cs": {
- "description": "VCMI je engine s otevřeným kódem a novými možnostmi pro Heroes of Might and Magic III. Roky usilovné práce vyústily v úchvatném počtu nových funkcí. Mezi současnými funkcemi jsou:\n \n Kompletní herní mechaniky\n Skoro všechny předměty, schopnosti, kouzla a ostatní obsah\n Základní AI boje a mapy světa\n Mnoho vylepšení rozhraní: vyšší rozlišení, fronta oddílů a okno bojovníků\n Pokročilá a jednoduchá podpora modifikací - přidání nových měst, bojovníků, hrdinů, artefaktů a kouzel bez limitů a konfliktů\n Spouštěč pro jednoduché nastavení - stahujte modifikace z našeho serveru a hned je instalujte!\n Náhodný generátor map, který podporuje předměty přidané modifikacemi\n \n Poznámka: pokud chcete hrát hru přes VCMI, musíte vlastnit datové soubory Heroes of Might and Magic III: The Shadow of Death.\n Pokud chcete pomoct, prosíme, podívejte se na naše fórum nebo GitHub.\n ",
- "summary": "Herní engine s otevřeným kódem pro Heroes of Might and Magic III"
- },
- "de": {
- "description": "VCMI ist eine Open-Source-Engine für Heroes of Might and Magic III mit neuen Möglichkeiten. Jahrelange intensive Arbeit führte zu einer beeindruckenden Anzahl von Features. Zu den aktuellen Features gehören:\n \n Vollständige Spielmechanik\n Fast alle Objekte, Fähigkeiten, Zaubersprüche und andere Inhalte\n Grundlegende Kampf- und Abenteuer-KI\n Viele GUI-Verbesserungen: Hohe Auflösungen, Truppenwarteschlange, Kreaturenfenster\n Erweiterte und einfache Mod-Unterstützung - füge neue Städte, Kreaturen, Helden, Artefakte und Zaubersprüche ohne Einschränkungen oder Konflikte hinzu\n Launcher für einfache Konfiguration - Mods von unserem Server herunterladen und sofort installieren!\n Zufallsgenerator für Karten, der von Mods hinzugefügte Objekte unterstützt\n \n Hinweis: Um das Spiel mit VCMI spielen zu können, sind die Originaldateien für Heroes of Might and Magic III: The Shadow of Death erforderlich.\n Wird Hilfe benötigt, besucht bitte unser Forum, den Bugtracker oder die GitHub-Seite.\n ",
- "summary": "Open-Source-Spielengine für Heroes of Might and Magic III"
- },
- "uk": {
- "description": "VCMI - це рушій з відкритим початковим кодом для Heroes of Might and Magic III з новими можливостями. Роки інтенсивної роботи вилилися у вражаючу кількість функцій. Серед поточних можливостей можна виділити наступні:\n \n Уся ігрова механіка\n Практично всі об'єкти, вміння, закляття та інший вміст\n Базовий ШІ для бою та для мапи пригод\n Численні покращення графічного інтерфейсу: висока роздільна здатність, черга ходу істот, нове вікно істот\n Просунута і проста підтримка модів - додавайте нові міста, істот, героїв, артефакти і закляття без обмежень і конфліктів\n Лаунчер для легкого налаштування гри - завантажуйте моди з нашого сервера та встановлюйте їх одразу!\n Генератор випадкових карт, який підтримує об'єкти, додані модами\n \n Примітка: Для того, щоб грати в гру за допомогою VCMI, вам потрібно мати файли даних для гри Heroes of Might and Magic III: The Shadow of Death.\n Якщо вам потрібна допомога, зверніться до нашого форуму, баг-трекера або на сторінку GitHub.\n ",
- "summary": "Ігровий рушій з відкритим початковим кодом для Heroes of Might and Magic III"
- }
- },
- "project_license": "GPL-2.0-or-later",
- "is_free_license": true,
- "app_id": "eu.vcmi.VCMI",
- "icon": "https://dl.flathub.org/media/eu/vcmi/VCMI/7ab2dfe3c67a80d33376b66a86ab20d2/icons/128x128/eu.vcmi.VCMI.png",
- "main_categories": "game",
- "sub_categories": [
- "StrategyGame"
- ],
- "developer_name": "VCMI Team",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "vcmi.eu",
- "verification_timestamp": "1698584822",
- "runtime": "org.kde.Platform/x86_64/6.8",
- "updated_at": 1742880993,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1631052729,
- "trending": 1.427118318094448,
- "installs_last_month": 635,
- "isMobileFriendly": false
- },
- {
- "name": "Flood It",
- "keywords": [
- "game",
- "strategy",
- "flood",
- "flood-it"
- ],
- "summary": "Flood the board",
- "description": "\n Flood It is a game with the simple premise of flooding the entire board with one color in the least amount of moves possible.\n\n Challenge yourself with this simple, yet addictive strategy game, where you need to flood-it as efficiently as you can!\n \n ",
- "id": "io_github_tfuxu_floodit",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "io.github.tfuxu.floodit",
- "icon": "https://dl.flathub.org/media/io/github/tfuxu.floodit/a521967f125521df0528db5ffb9037f4/icons/128x128/io.github.tfuxu.floodit.png",
- "main_categories": "game",
- "sub_categories": [
- "StrategyGame",
- "BoardGame"
- ],
- "developer_name": "tfuxu",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "tfuxu",
- "verification_login_provider": "github",
- "verification_login_is_organization": "true",
- "verification_website": null,
- "verification_timestamp": "1726492229",
- "runtime": "org.gnome.Platform/x86_64/47",
- "updated_at": 1728227185,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1726471409,
- "trending": 14.919976572429531,
- "installs_last_month": 634,
- "isMobileFriendly": true
- },
{
"name": "KMines",
"keywords": null,
@@ -46739,8 +46609,138 @@
"aarch64"
],
"added_at": 1646828660,
- "trending": 7.001950704525912,
- "installs_last_month": 629,
+ "trending": 7.339765407807096,
+ "installs_last_month": 647,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "fheroes2",
+ "keywords": [
+ "heroes2",
+ "homm2"
+ ],
+ "summary": "fheroes2 is a recreation of the Heroes of Might and Magic II game engine",
+ "description": "This open source multiplatform project, written from scratch, is designed to reproduce the original game with significant improvements to the gameplay, graphics and logic (including support for high-resolution graphics, improved AI, numerous fixes and UI improvements), breathing new life into one of the most addictive turn-based strategy games.\n ",
+ "id": "io_github_ihhub_Fheroes2",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0",
+ "is_free_license": true,
+ "app_id": "io.github.ihhub.Fheroes2",
+ "icon": "https://dl.flathub.org/media/io/github/ihhub.Fheroes2/c45113b857b37366b8a8e462ff744ce5/icons/128x128/io.github.ihhub.Fheroes2.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "StrategyGame"
+ ],
+ "developer_name": "fheroes2 Resurrection team",
+ "verification_verified": true,
+ "verification_method": "login_provider",
+ "verification_login_name": "ihhub",
+ "verification_login_provider": "github",
+ "verification_login_is_organization": "true",
+ "verification_website": null,
+ "verification_timestamp": "1697351982",
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1742744004,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1653030446,
+ "trending": 0.22312313410101536,
+ "installs_last_month": 639,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Flood It",
+ "keywords": [
+ "game",
+ "strategy",
+ "flood",
+ "flood-it"
+ ],
+ "summary": "Flood the board",
+ "description": "\n Flood It is a game with the simple premise of flooding the entire board with one color in the least amount of moves possible.\n\n Challenge yourself with this simple, yet addictive strategy game, where you need to flood-it as efficiently as you can!\n \n ",
+ "id": "io_github_tfuxu_floodit",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "io.github.tfuxu.floodit",
+ "icon": "https://dl.flathub.org/media/io/github/tfuxu.floodit/a521967f125521df0528db5ffb9037f4/icons/128x128/io.github.tfuxu.floodit.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "StrategyGame",
+ "BoardGame"
+ ],
+ "developer_name": "tfuxu",
+ "verification_verified": true,
+ "verification_method": "login_provider",
+ "verification_login_name": "tfuxu",
+ "verification_login_provider": "github",
+ "verification_login_is_organization": "true",
+ "verification_website": null,
+ "verification_timestamp": "1726492229",
+ "runtime": "org.gnome.Platform/x86_64/47",
+ "updated_at": 1728227185,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1726471409,
+ "trending": 14.148527063484927,
+ "installs_last_month": 634,
+ "isMobileFriendly": true
+ },
+ {
+ "name": "VCMI",
+ "keywords": [
+ "heroes3",
+ "homm3"
+ ],
+ "summary": "Open-source game engine for Heroes of Might and Magic III",
+ "description": "VCMI is an open-source engine for Heroes of Might and Magic III with new possibilities. Years of intensive work resulted in an impressive amount of features. Among the current features are:\n \n Complete gameplay mechanics\n Almost all objects, abilities, spells and other content\n Basic battle AI and adventure AI\n Many GUI improvements: high resolutions, stack queue, creature window\n Advanced and easy mod support - add new towns, creatures, heroes, artifacts and spells without limits or conflicts\n Launcher for easy configuration - download mods from our server and install them immediately!\n Random map generator that supports objects added by mods\n \n Note: In order to play the game using VCMI you need to own data files for Heroes of Might and Magic III: The Shadow of Death.\n If you want help, please check our forum, bug tracker or GitHub page.\n ",
+ "id": "eu_vcmi_VCMI",
+ "type": "desktop-application",
+ "translations": {
+ "cs": {
+ "description": "VCMI je engine s otevřeným kódem a novými možnostmi pro Heroes of Might and Magic III. Roky usilovné práce vyústily v úchvatném počtu nových funkcí. Mezi současnými funkcemi jsou:\n \n Kompletní herní mechaniky\n Skoro všechny předměty, schopnosti, kouzla a ostatní obsah\n Základní AI boje a mapy světa\n Mnoho vylepšení rozhraní: vyšší rozlišení, fronta oddílů a okno bojovníků\n Pokročilá a jednoduchá podpora modifikací - přidání nových měst, bojovníků, hrdinů, artefaktů a kouzel bez limitů a konfliktů\n Spouštěč pro jednoduché nastavení - stahujte modifikace z našeho serveru a hned je instalujte!\n Náhodný generátor map, který podporuje předměty přidané modifikacemi\n \n Poznámka: pokud chcete hrát hru přes VCMI, musíte vlastnit datové soubory Heroes of Might and Magic III: The Shadow of Death.\n Pokud chcete pomoct, prosíme, podívejte se na naše fórum nebo GitHub.\n ",
+ "summary": "Herní engine s otevřeným kódem pro Heroes of Might and Magic III"
+ },
+ "de": {
+ "description": "VCMI ist eine Open-Source-Engine für Heroes of Might and Magic III mit neuen Möglichkeiten. Jahrelange intensive Arbeit führte zu einer beeindruckenden Anzahl von Features. Zu den aktuellen Features gehören:\n \n Vollständige Spielmechanik\n Fast alle Objekte, Fähigkeiten, Zaubersprüche und andere Inhalte\n Grundlegende Kampf- und Abenteuer-KI\n Viele GUI-Verbesserungen: Hohe Auflösungen, Truppenwarteschlange, Kreaturenfenster\n Erweiterte und einfache Mod-Unterstützung - füge neue Städte, Kreaturen, Helden, Artefakte und Zaubersprüche ohne Einschränkungen oder Konflikte hinzu\n Launcher für einfache Konfiguration - Mods von unserem Server herunterladen und sofort installieren!\n Zufallsgenerator für Karten, der von Mods hinzugefügte Objekte unterstützt\n \n Hinweis: Um das Spiel mit VCMI spielen zu können, sind die Originaldateien für Heroes of Might and Magic III: The Shadow of Death erforderlich.\n Wird Hilfe benötigt, besucht bitte unser Forum, den Bugtracker oder die GitHub-Seite.\n ",
+ "summary": "Open-Source-Spielengine für Heroes of Might and Magic III"
+ },
+ "uk": {
+ "description": "VCMI - це рушій з відкритим початковим кодом для Heroes of Might and Magic III з новими можливостями. Роки інтенсивної роботи вилилися у вражаючу кількість функцій. Серед поточних можливостей можна виділити наступні:\n \n Уся ігрова механіка\n Практично всі об'єкти, вміння, закляття та інший вміст\n Базовий ШІ для бою та для мапи пригод\n Численні покращення графічного інтерфейсу: висока роздільна здатність, черга ходу істот, нове вікно істот\n Просунута і проста підтримка модів - додавайте нові міста, істот, героїв, артефакти і закляття без обмежень і конфліктів\n Лаунчер для легкого налаштування гри - завантажуйте моди з нашого сервера та встановлюйте їх одразу!\n Генератор випадкових карт, який підтримує об'єкти, додані модами\n \n Примітка: Для того, щоб грати в гру за допомогою VCMI, вам потрібно мати файли даних для гри Heroes of Might and Magic III: The Shadow of Death.\n Якщо вам потрібна допомога, зверніться до нашого форуму, баг-трекера або на сторінку GitHub.\n ",
+ "summary": "Ігровий рушій з відкритим початковим кодом для Heroes of Might and Magic III"
+ }
+ },
+ "project_license": "GPL-2.0-or-later",
+ "is_free_license": true,
+ "app_id": "eu.vcmi.VCMI",
+ "icon": "https://dl.flathub.org/media/eu/vcmi/VCMI/7ab2dfe3c67a80d33376b66a86ab20d2/icons/128x128/eu.vcmi.VCMI.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "StrategyGame"
+ ],
+ "developer_name": "VCMI Team",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "vcmi.eu",
+ "verification_timestamp": "1698584822",
+ "runtime": "org.kde.Platform/x86_64/6.8",
+ "updated_at": 1742880993,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1631052729,
+ "trending": 0.7530193502224218,
+ "installs_last_month": 628,
"isMobileFriendly": false
},
{
@@ -46777,8 +46777,8 @@
"aarch64"
],
"added_at": 1693938227,
- "trending": 0.5614241313608244,
- "installs_last_month": 606,
+ "trending": 1.6342233336698129,
+ "installs_last_month": 605,
"isMobileFriendly": false
},
{
@@ -46820,8 +46820,8 @@
"aarch64"
],
"added_at": 1555315489,
- "trending": 10.664325682423232,
- "installs_last_month": 551,
+ "trending": 10.993231707606052,
+ "installs_last_month": 561,
"isMobileFriendly": false
},
{
@@ -46855,8 +46855,8 @@
"aarch64"
],
"added_at": 1681976765,
- "trending": 1.1653090902208187,
- "installs_last_month": 545,
+ "trending": 3.9670546574539385,
+ "installs_last_month": 537,
"isMobileFriendly": true
},
{
@@ -46895,8 +46895,8 @@
"aarch64"
],
"added_at": 1673596234,
- "trending": 6.830373819679719,
- "installs_last_month": 515,
+ "trending": 9.478173392335188,
+ "installs_last_month": 503,
"isMobileFriendly": false
},
{
@@ -47055,8 +47055,8 @@
"aarch64"
],
"added_at": 1553248706,
- "trending": 9.784646947174146,
- "installs_last_month": 505,
+ "trending": 10.725899474895272,
+ "installs_last_month": 496,
"isMobileFriendly": false
},
{
@@ -47090,8 +47090,8 @@
"aarch64"
],
"added_at": 1652852067,
- "trending": 11.177543255148246,
- "installs_last_month": 482,
+ "trending": 11.652940025064517,
+ "installs_last_month": 493,
"isMobileFriendly": false
},
{
@@ -47134,8 +47134,8 @@
"aarch64"
],
"added_at": 1689577012,
- "trending": 8.231240113598243,
- "installs_last_month": 442,
+ "trending": 10.489061321180571,
+ "installs_last_month": 435,
"isMobileFriendly": false
},
{
@@ -47170,8 +47170,8 @@
"x86_64"
],
"added_at": 1623578388,
- "trending": 10.336800425643656,
- "installs_last_month": 425,
+ "trending": 8.988415088724729,
+ "installs_last_month": 403,
"isMobileFriendly": false
},
{
@@ -47350,8 +47350,8 @@
"aarch64"
],
"added_at": 1535740814,
- "trending": 9.534183508613744,
- "installs_last_month": 384,
+ "trending": 8.825947073912356,
+ "installs_last_month": 391,
"isMobileFriendly": false
},
{
@@ -47393,43 +47393,8 @@
"aarch64"
],
"added_at": 1674806370,
- "trending": 3.0691349866979944,
- "installs_last_month": 344,
- "isMobileFriendly": false
- },
- {
- "name": "FreeCol",
- "keywords": null,
- "summary": "FreeCol a turn-based strategy game.",
- "description": "The FreeCol team aims to create an Open Source version of Colonization (released under the GPL). At first we'll try to make an exact clone of Colonization. The visuals will be brought up to date with more recent standards but will remain clean, simple and functional. Certain new 'features' will be implemented but the gameplay and the rules will be exactly the same as the original game. Examples of modern features are: an isometric map and multiplayer support.This clone will be developed incrementally and result in FreeCol 1.0.0 which will be an almost exact Colonization clone. Incremental development basically means that we'll add features one at a time. This allows us to have a running program at all times and also to release an unfinished but working game once in a while.Once FreeCol 1.0.0 is finished we'll start working towards FreeCol 2.0.0. FreeCol 2 will go beyond the original Colonization and will have many new features, it will be an implementation of our (and our users') image of what Colonization 2 would have been.",
- "id": "org_freecol_FreeCol",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0",
- "is_free_license": true,
- "app_id": "org.freecol.FreeCol",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.freecol.FreeCol.png",
- "main_categories": "game",
- "sub_categories": [
- "StrategyGame"
- ],
- "developer_name": null,
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1704342026,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1555318249,
- "trending": 12.472327716204148,
- "installs_last_month": 313,
+ "trending": 4.62145705214059,
+ "installs_last_month": 339,
"isMobileFriendly": false
},
{
@@ -47466,8 +47431,43 @@
"aarch64"
],
"added_at": 1647933876,
- "trending": 11.730801304875678,
- "installs_last_month": 312,
+ "trending": 12.817701713600478,
+ "installs_last_month": 319,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "FreeCol",
+ "keywords": null,
+ "summary": "FreeCol a turn-based strategy game.",
+ "description": "The FreeCol team aims to create an Open Source version of Colonization (released under the GPL). At first we'll try to make an exact clone of Colonization. The visuals will be brought up to date with more recent standards but will remain clean, simple and functional. Certain new 'features' will be implemented but the gameplay and the rules will be exactly the same as the original game. Examples of modern features are: an isometric map and multiplayer support.This clone will be developed incrementally and result in FreeCol 1.0.0 which will be an almost exact Colonization clone. Incremental development basically means that we'll add features one at a time. This allows us to have a running program at all times and also to release an unfinished but working game once in a while.Once FreeCol 1.0.0 is finished we'll start working towards FreeCol 2.0.0. FreeCol 2 will go beyond the original Colonization and will have many new features, it will be an implementation of our (and our users') image of what Colonization 2 would have been.",
+ "id": "org_freecol_FreeCol",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0",
+ "is_free_license": true,
+ "app_id": "org.freecol.FreeCol",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.freecol.FreeCol.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "StrategyGame"
+ ],
+ "developer_name": null,
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1704342026,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1555318249,
+ "trending": 11.03305084703102,
+ "installs_last_month": 314,
"isMobileFriendly": false
},
{
@@ -47501,8 +47501,8 @@
"aarch64"
],
"added_at": 1653627168,
- "trending": 9.042737885039957,
- "installs_last_month": 301,
+ "trending": 8.684893443029518,
+ "installs_last_month": 300,
"isMobileFriendly": false
},
{
@@ -47537,8 +47537,8 @@
"aarch64"
],
"added_at": 1611071198,
- "trending": 6.729809171109418,
- "installs_last_month": 284,
+ "trending": 8.71500374926249,
+ "installs_last_month": 287,
"isMobileFriendly": false
},
{
@@ -47574,8 +47574,8 @@
"aarch64"
],
"added_at": 1719836853,
- "trending": 7.036010317242189,
- "installs_last_month": 279,
+ "trending": 7.354525020839639,
+ "installs_last_month": 276,
"isMobileFriendly": false
},
{
@@ -47608,8 +47608,8 @@
"x86_64"
],
"added_at": 1584043199,
- "trending": 0.9003161084198182,
- "installs_last_month": 278,
+ "trending": 4.771876152119991,
+ "installs_last_month": 273,
"isMobileFriendly": false
},
{
@@ -47655,8 +47655,8 @@
"aarch64"
],
"added_at": 1598614050,
- "trending": 2.8118252904294785,
- "installs_last_month": 253,
+ "trending": 0.3561269650868498,
+ "installs_last_month": 246,
"isMobileFriendly": false
},
{
@@ -47691,8 +47691,8 @@
"x86_64"
],
"added_at": 1522566411,
- "trending": 4.040940305437392,
- "installs_last_month": 230,
+ "trending": 1.3213259786645442,
+ "installs_last_month": 227,
"isMobileFriendly": false
},
{
@@ -47862,8 +47862,8 @@
"aarch64"
],
"added_at": 1535998113,
- "trending": 2.071467925176321,
- "installs_last_month": 203,
+ "trending": 0.9593016251759444,
+ "installs_last_month": 204,
"isMobileFriendly": false
},
{
@@ -47911,54 +47911,8 @@
"aarch64"
],
"added_at": 1665124484,
- "trending": -0.3685615959635593,
- "installs_last_month": 197,
- "isMobileFriendly": false
- },
- {
- "name": "C-evo: New Horizons",
- "keywords": [
- "strategy",
- "simulation",
- "civilization",
- "tiles",
- "history",
- "mankind",
- "multiplayer",
- "turn-based",
- "game",
- "empire"
- ],
- "summary": "Turn-based empire building game",
- "description": "With a time scope of several thousand years, it covers aspects of exploration and expansion, industry and agriculture, warfare and diplomacy, science and administration.\n C-evo follows the spirit of popular turn-based strategy games from the mid 90s, but with more emphasis on powerful AI and careful design of the rules, resulting in a true challenge.\n It is a turn-based strategy game inspired by Civilization 2 game where you can build your own empire.\n New Horizons edition is a continuation of the last released original C-evo version with many quality improvements:\n \n Full Linux platform support\n Zoomable map by mouse wheel with three tile sizes\n User defined key mapping\n Many sample maps included\n Multiple localizations included\n High DPI and scaling support\n Multi monitor support\n And much more\n \n ",
- "id": "net_zdechov_app_C-evo",
- "type": "desktop-application",
- "translations": {},
- "project_license": "CC0-1.0",
- "is_free_license": true,
- "app_id": "net.zdechov.app.C-evo",
- "icon": "https://dl.flathub.org/media/net/zdechov/app.C-evo/9d5af378e9fd8a0a82bd7061ccfb6680/icons/128x128/net.zdechov.app.C-evo.png",
- "main_categories": "game",
- "sub_categories": [
- "StrategyGame"
- ],
- "developer_name": "Chronos",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "zdechov.net",
- "verification_timestamp": "1731600631",
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1740744924,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1731594382,
- "trending": 7.826055827950731,
- "installs_last_month": 197,
+ "trending": 3.280487061891094,
+ "installs_last_month": 199,
"isMobileFriendly": false
},
{
@@ -48112,8 +48066,8 @@
"aarch64"
],
"added_at": 1653287128,
- "trending": 9.112638884037704,
- "installs_last_month": 188,
+ "trending": 10.849977884292787,
+ "installs_last_month": 189,
"isMobileFriendly": false
},
{
@@ -48146,8 +48100,89 @@
"x86_64"
],
"added_at": 1659334605,
- "trending": 13.863186559189913,
- "installs_last_month": 178,
+ "trending": 10.807531312231813,
+ "installs_last_month": 188,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "C-evo: New Horizons",
+ "keywords": [
+ "strategy",
+ "simulation",
+ "civilization",
+ "tiles",
+ "history",
+ "mankind",
+ "multiplayer",
+ "turn-based",
+ "game",
+ "empire"
+ ],
+ "summary": "Turn-based empire building game",
+ "description": "With a time scope of several thousand years, it covers aspects of exploration and expansion, industry and agriculture, warfare and diplomacy, science and administration.\n C-evo follows the spirit of popular turn-based strategy games from the mid 90s, but with more emphasis on powerful AI and careful design of the rules, resulting in a true challenge.\n It is a turn-based strategy game inspired by Civilization 2 game where you can build your own empire.\n New Horizons edition is a continuation of the last released original C-evo version with many quality improvements:\n \n Full Linux platform support\n Zoomable map by mouse wheel with three tile sizes\n User defined key mapping\n Many sample maps included\n Multiple localizations included\n High DPI and scaling support\n Multi monitor support\n And much more\n \n ",
+ "id": "net_zdechov_app_C-evo",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "CC0-1.0",
+ "is_free_license": true,
+ "app_id": "net.zdechov.app.C-evo",
+ "icon": "https://dl.flathub.org/media/net/zdechov/app.C-evo/9d5af378e9fd8a0a82bd7061ccfb6680/icons/128x128/net.zdechov.app.C-evo.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "StrategyGame"
+ ],
+ "developer_name": "Chronos",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "zdechov.net",
+ "verification_timestamp": "1731600631",
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1740744924,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1731594382,
+ "trending": 10.387903612923443,
+ "installs_last_month": 187,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "MegaMek",
+ "keywords": null,
+ "summary": "Fight using giant robots, tanks, and/or infantry on a hex-based map.",
+ "description": "MegaMek is a Java version of BattleTech that you can play with your friends over the internet.Players can create their own units, maps, and scenarios for use with MegaMek. MegaMek supports all unit types, from infantry, battlemechs, and vehicles, to aerospace fighters, dropships, and warships. Ground battles as well as space battles can be played.",
+ "id": "org_megamek_MegaMek",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0+",
+ "is_free_license": true,
+ "app_id": "org.megamek.MegaMek",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.megamek.MegaMek.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "StrategyGame"
+ ],
+ "developer_name": null,
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/22.08",
+ "updated_at": 1675931286,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1675931044,
+ "trending": 6.475607638392429,
+ "installs_last_month": 172,
"isMobileFriendly": false
},
{
@@ -48188,43 +48223,8 @@
"aarch64"
],
"added_at": 1653292044,
- "trending": 3.007258605776713,
- "installs_last_month": 168,
- "isMobileFriendly": false
- },
- {
- "name": "MegaMek",
- "keywords": null,
- "summary": "Fight using giant robots, tanks, and/or infantry on a hex-based map.",
- "description": "MegaMek is a Java version of BattleTech that you can play with your friends over the internet.Players can create their own units, maps, and scenarios for use with MegaMek. MegaMek supports all unit types, from infantry, battlemechs, and vehicles, to aerospace fighters, dropships, and warships. Ground battles as well as space battles can be played.",
- "id": "org_megamek_MegaMek",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0+",
- "is_free_license": true,
- "app_id": "org.megamek.MegaMek",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.megamek.MegaMek.png",
- "main_categories": "game",
- "sub_categories": [
- "StrategyGame"
- ],
- "developer_name": null,
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/22.08",
- "updated_at": 1675931286,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1675931044,
- "trending": 7.63924403686617,
- "installs_last_month": 167,
+ "trending": 0.08222770773269494,
+ "installs_last_month": 163,
"isMobileFriendly": false
},
{
@@ -48266,8 +48266,8 @@
"aarch64"
],
"added_at": 1716270864,
- "trending": 1.8731287206130705,
- "installs_last_month": 163,
+ "trending": 3.317291490645026,
+ "installs_last_month": 162,
"isMobileFriendly": false
},
{
@@ -48301,8 +48301,8 @@
"aarch64"
],
"added_at": 1732892250,
- "trending": 6.710084365174122,
- "installs_last_month": 161,
+ "trending": 8.742896148398373,
+ "installs_last_month": 159,
"isMobileFriendly": false
},
{
@@ -48336,8 +48336,42 @@
"aarch64"
],
"added_at": 1533057439,
- "trending": 10.761849775609395,
- "installs_last_month": 155,
+ "trending": 11.065860899677451,
+ "installs_last_month": 157,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Wyrmsun",
+ "keywords": null,
+ "summary": "Strategy game based on history, mythology and fiction",
+ "description": "\n In the Wyrmsun universe a myriad of inhabited planets exist. Humans dwell on Earth, while dwarves inhabit Nidavellir and elves nourish the world of Alfheim. These peoples struggle to carve a place for themselves with their tools of stone, bronze and iron. And perhaps one day they will meet one another, beyond the stars...\n \n \n Features:\n \n \n Retro-style graphics\n 3 playable civilizations, and a number of non-playable ones\n Scenarios playable on a huge map\n Dozens of units, buildings and technologies\n Personal names and traits for units\n Units can earn experience, being able to upgrade to new unit types or acquire new abilities upon level-up\n Persistent heroes, who carry over their level and abilities throughout scenarios\n Possibility to create your own custom persistent heroes\n Normal, magic-enchanted and unique items drop from enemies\n Cave, Conifer Forest, Dungeon, Fairlimbed Forest and Swamp tilesets\n Dozens of maps of real and fictional locations to choose from, as well as random maps\n Very moddable game, with mod-loading capability built in\n In-game encyclopedia, allowing players to learn more about the units, buildings and other elements of the game, as well as their historical and mythological sources of inspiration\n \n ",
+ "id": "io_github_Andrettin_Wyrmsun",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0",
+ "is_free_license": true,
+ "app_id": "io.github.Andrettin.Wyrmsun",
+ "icon": "https://dl.flathub.org/media/io/github/Andrettin.Wyrmsun/93a52aae5f0466ca07bc25c0be7ff601/icons/128x128/io.github.Andrettin.Wyrmsun.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "StrategyGame"
+ ],
+ "developer_name": "Andrettin",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.kde.Platform/x86_64/5.15-23.08",
+ "updated_at": 1740595760,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1653030126,
+ "trending": 1.3035448961457403,
+ "installs_last_month": 149,
"isMobileFriendly": false
},
{
@@ -48514,77 +48548,8 @@
"aarch64"
],
"added_at": 1534868586,
- "trending": 7.377393689501628,
- "installs_last_month": 152,
- "isMobileFriendly": false
- },
- {
- "name": "Advanced Strategic Command",
- "keywords": null,
- "summary": "Turn-based strategy game",
- "description": "Advanced Strategic Command is a free, turn based strategy game. It is designed in the tradition of the Battle Isle series from Bluebyte and is currently available for Windows and Linux.ASC can be played both against the AI and against other human players, using hotseat or PlayByMail. It is also used to run the multiplayer universe Project Battle Planets.",
- "id": "org_asc_hq_ASC",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0-or-later",
- "is_free_license": true,
- "app_id": "org.asc_hq.ASC",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.asc_hq.ASC.png",
- "main_categories": "game",
- "sub_categories": [
- "StrategyGame"
- ],
- "developer_name": null,
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/22.08",
- "updated_at": 1702997612,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1702997612,
- "trending": 6.833838481896379,
- "installs_last_month": 140,
- "isMobileFriendly": false
- },
- {
- "name": "Wyrmsun",
- "keywords": null,
- "summary": "Strategy game based on history, mythology and fiction",
- "description": "\n In the Wyrmsun universe a myriad of inhabited planets exist. Humans dwell on Earth, while dwarves inhabit Nidavellir and elves nourish the world of Alfheim. These peoples struggle to carve a place for themselves with their tools of stone, bronze and iron. And perhaps one day they will meet one another, beyond the stars...\n \n \n Features:\n \n \n Retro-style graphics\n 3 playable civilizations, and a number of non-playable ones\n Scenarios playable on a huge map\n Dozens of units, buildings and technologies\n Personal names and traits for units\n Units can earn experience, being able to upgrade to new unit types or acquire new abilities upon level-up\n Persistent heroes, who carry over their level and abilities throughout scenarios\n Possibility to create your own custom persistent heroes\n Normal, magic-enchanted and unique items drop from enemies\n Cave, Conifer Forest, Dungeon, Fairlimbed Forest and Swamp tilesets\n Dozens of maps of real and fictional locations to choose from, as well as random maps\n Very moddable game, with mod-loading capability built in\n In-game encyclopedia, allowing players to learn more about the units, buildings and other elements of the game, as well as their historical and mythological sources of inspiration\n \n ",
- "id": "io_github_Andrettin_Wyrmsun",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0",
- "is_free_license": true,
- "app_id": "io.github.Andrettin.Wyrmsun",
- "icon": "https://dl.flathub.org/media/io/github/Andrettin.Wyrmsun/93a52aae5f0466ca07bc25c0be7ff601/icons/128x128/io.github.Andrettin.Wyrmsun.png",
- "main_categories": "game",
- "sub_categories": [
- "StrategyGame"
- ],
- "developer_name": "Andrettin",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.kde.Platform/x86_64/5.15-23.08",
- "updated_at": 1740595760,
- "arches": [
- "x86_64"
- ],
- "added_at": 1653030126,
- "trending": 1.469358907736642,
- "installs_last_month": 137,
+ "trending": 6.745405517061613,
+ "installs_last_month": 148,
"isMobileFriendly": false
},
{
@@ -48628,8 +48593,88 @@
"aarch64"
],
"added_at": 1661807319,
- "trending": 1.272742692180718,
- "installs_last_month": 135,
+ "trending": 1.2141434371432518,
+ "installs_last_month": 145,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Advanced Strategic Command",
+ "keywords": null,
+ "summary": "Turn-based strategy game",
+ "description": "Advanced Strategic Command is a free, turn based strategy game. It is designed in the tradition of the Battle Isle series from Bluebyte and is currently available for Windows and Linux.ASC can be played both against the AI and against other human players, using hotseat or PlayByMail. It is also used to run the multiplayer universe Project Battle Planets.",
+ "id": "org_asc_hq_ASC",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0-or-later",
+ "is_free_license": true,
+ "app_id": "org.asc_hq.ASC",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.asc_hq.ASC.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "StrategyGame"
+ ],
+ "developer_name": null,
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/22.08",
+ "updated_at": 1702997612,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1702997612,
+ "trending": 6.788168364510517,
+ "installs_last_month": 144,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Zatikon",
+ "keywords": [
+ "strategy",
+ "simulation",
+ "board",
+ "tiles",
+ "multiplayer",
+ "chess",
+ "zatikon",
+ "turn-based"
+ ],
+ "summary": "Chess-like, fantasy game of conquering the enemy's castle",
+ "description": "\n Chess with less complex movement, and instead with:\n \n \n new, engaging rules\n tons of pieces to choose from\n army-building metagame\n magic!\n \n \n Zatikon offers online and local gameplay, so there's something in it for every kind of player!\n \n ",
+ "id": "com_chroniclogic_Zatikon",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "AGPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "com.chroniclogic.Zatikon",
+ "icon": "https://dl.flathub.org/media/com/chroniclogic/Zatikon/170c43c7bc84e08826c829fdabbae562/icons/128x128/com.chroniclogic.Zatikon.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "StrategyGame",
+ "BoardGame"
+ ],
+ "developer_name": "ChronicLogic",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "chroniclogic.com",
+ "verification_timestamp": "1690218915",
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1740100463,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1690213555,
+ "trending": 9.27145224489576,
+ "installs_last_month": 134,
"isMobileFriendly": false
},
{
@@ -48666,8 +48711,8 @@
"aarch64"
],
"added_at": 1600446404,
- "trending": 2.102241440975112,
- "installs_last_month": 132,
+ "trending": 1.1684045265199583,
+ "installs_last_month": 131,
"isMobileFriendly": false
},
{
@@ -48844,52 +48889,7 @@
"aarch64"
],
"added_at": 1603907849,
- "trending": 9.445742434271716,
- "installs_last_month": 129,
- "isMobileFriendly": false
- },
- {
- "name": "Zatikon",
- "keywords": [
- "strategy",
- "simulation",
- "board",
- "tiles",
- "multiplayer",
- "chess",
- "zatikon",
- "turn-based"
- ],
- "summary": "Chess-like, fantasy game of conquering the enemy's castle",
- "description": "\n Chess with less complex movement, and instead with:\n \n \n new, engaging rules\n tons of pieces to choose from\n army-building metagame\n magic!\n \n \n Zatikon offers online and local gameplay, so there's something in it for every kind of player!\n \n ",
- "id": "com_chroniclogic_Zatikon",
- "type": "desktop-application",
- "translations": {},
- "project_license": "AGPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "com.chroniclogic.Zatikon",
- "icon": "https://dl.flathub.org/media/com/chroniclogic/Zatikon/170c43c7bc84e08826c829fdabbae562/icons/128x128/com.chroniclogic.Zatikon.png",
- "main_categories": "game",
- "sub_categories": [
- "StrategyGame",
- "BoardGame"
- ],
- "developer_name": "ChronicLogic",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "chroniclogic.com",
- "verification_timestamp": "1690218915",
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1740100463,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1690213555,
- "trending": 13.400098872168902,
+ "trending": 7.0408709290684754,
"installs_last_month": 129,
"isMobileFriendly": false
},
@@ -48935,8 +48935,50 @@
"aarch64"
],
"added_at": 1736043556,
- "trending": 8.003974204457165,
- "installs_last_month": 114,
+ "trending": 8.466695800336906,
+ "installs_last_month": 116,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "OpenDungeonsPlus",
+ "keywords": [
+ "Dungeons",
+ "Strategy",
+ "Sim",
+ "Kepper",
+ "Dungeon",
+ "Manager",
+ "Creatures"
+ ],
+ "summary": "manage Creatures and Dungeons in the style of Dungeon Keeper",
+ "description": "\t\ta better fork of Opendungeons : with enhanced editor and tile - geometry distortions\n Feel free to say what do you think about new Fog of War system --- please contact me via Discord.\n The up to now console commands are in the package cheats. For example to call command fps with argument 30 type cheats.fps(30)\n\n\t\tAPRIL 2023: Now with build-in PYTHON support in game console\n\n\t\tFEBRUARY 2023: Improved Combat Pit a.k.a Arena\n\n\t\tJANUARY 2023: Now with improved prison chamber.\n NOTE: On some linux distros ( like OpenSuse) it might require the command \" xhost +local: \" as regular user to run, before the command \" snap run opendungeons-plus \" . The game REQUIRES the graphic option 'Separate Shading Objects' to be enabled.\n OpenDungeons is an open source, real time strategy game sharing game elements with the Dungeon Keeper series and Evil Genius. Players build an underground dungeon which is inhabited by creatures. Players fight each other for control of the underground by indirectly commanding their creatures, directly casting spells in combat, and luring enemies into sinister traps. \n ",
+ "id": "io_github_tomluchowski_OpenDungeonsPlus",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0",
+ "is_free_license": true,
+ "app_id": "io.github.tomluchowski.OpenDungeonsPlus",
+ "icon": "https://dl.flathub.org/media/io/github/tomluchowski.OpenDungeonsPlus/6ab46ba929e828e2b083cf73e27260fb/icons/128x128/io.github.tomluchowski.OpenDungeonsPlus.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "StrategyGame"
+ ],
+ "developer_name": "Thomas Luchowski",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1742064924,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1728979088,
+ "trending": 0.46708208544477103,
+ "installs_last_month": 111,
"isMobileFriendly": false
},
{
@@ -48970,7 +49012,7 @@
"aarch64"
],
"added_at": 1673249119,
- "trending": 3.3420773535234725,
+ "trending": 7.827452021728504,
"installs_last_month": 106,
"isMobileFriendly": false
},
@@ -49131,50 +49173,8 @@
"aarch64"
],
"added_at": 1536062355,
- "trending": 1.104693830781168,
- "installs_last_month": 105,
- "isMobileFriendly": false
- },
- {
- "name": "OpenDungeonsPlus",
- "keywords": [
- "Dungeons",
- "Strategy",
- "Sim",
- "Kepper",
- "Dungeon",
- "Manager",
- "Creatures"
- ],
- "summary": "manage Creatures and Dungeons in the style of Dungeon Keeper",
- "description": "\t\ta better fork of Opendungeons : with enhanced editor and tile - geometry distortions\n Feel free to say what do you think about new Fog of War system --- please contact me via Discord.\n The up to now console commands are in the package cheats. For example to call command fps with argument 30 type cheats.fps(30)\n\n\t\tAPRIL 2023: Now with build-in PYTHON support in game console\n\n\t\tFEBRUARY 2023: Improved Combat Pit a.k.a Arena\n\n\t\tJANUARY 2023: Now with improved prison chamber.\n NOTE: On some linux distros ( like OpenSuse) it might require the command \" xhost +local: \" as regular user to run, before the command \" snap run opendungeons-plus \" . The game REQUIRES the graphic option 'Separate Shading Objects' to be enabled.\n OpenDungeons is an open source, real time strategy game sharing game elements with the Dungeon Keeper series and Evil Genius. Players build an underground dungeon which is inhabited by creatures. Players fight each other for control of the underground by indirectly commanding their creatures, directly casting spells in combat, and luring enemies into sinister traps. \n ",
- "id": "io_github_tomluchowski_OpenDungeonsPlus",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0",
- "is_free_license": true,
- "app_id": "io.github.tomluchowski.OpenDungeonsPlus",
- "icon": "https://dl.flathub.org/media/io/github/tomluchowski.OpenDungeonsPlus/6ab46ba929e828e2b083cf73e27260fb/icons/128x128/io.github.tomluchowski.OpenDungeonsPlus.png",
- "main_categories": "game",
- "sub_categories": [
- "StrategyGame"
- ],
- "developer_name": "Thomas Luchowski",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1742064924,
- "arches": [
- "x86_64"
- ],
- "added_at": 1728979088,
- "trending": 4.2978269555911055,
- "installs_last_month": 102,
+ "trending": 1.114832895224434,
+ "installs_last_month": 101,
"isMobileFriendly": false
},
{
@@ -49211,8 +49211,179 @@
"aarch64"
],
"added_at": 1701681705,
- "trending": 1.4654554837180915,
- "installs_last_month": 99,
+ "trending": 2.407660503752612,
+ "installs_last_month": 101,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Killbots",
+ "keywords": null,
+ "summary": "Outsmart the killer robots to win",
+ "description": "How will you get away from the killer robots bent on destruction? Figure it out in this simple, entertaining game. You may be outnumbered by an endless stream of robots, but with your intelligence and handy teleportation device you can defeat them. Outsmart all of the killer robots to win and live to tell the tale!\n ",
+ "id": "org_kde_killbots",
+ "type": "desktop-application",
+ "translations": {
+ "ar": {
+ "description": "كيف تبتعد عن الآليين المصممين على التدمير؟ اكتشفها في هذه اللعبة المسلية البسيطة. قد يفوقنك في العدد ولكن بذكائك وجهاز النقل الآني سهل الاستخدام يمكنك هزيمتهم. تغلب على كل الآليين للفوز والعيش لتروي الحكاية!\n ",
+ "name": "معركة الآليين",
+ "summary": "تغلب على الآليين للفوز"
+ },
+ "ca": {
+ "description": "Com aconseguireu escapar dels robots assassins propensos a la destrucció? Imagineu-ho amb aquest joc senzill i entretingut. Estareu superat en nombre per una munió sense fi de robots, però amb la teva intel·ligència i amb un dispositiu pràctic de teletransport els podreu guanyar. Supereu amb intel·ligència als robots assassins per a guanyar i viure per a explicar la proesa.\n ",
+ "name": "Killbots",
+ "summary": "Supera amb intel·ligència als robots assassins per a guanyar"
+ },
+ "de": {
+ "description": "Wie wollen Sie den Killerrobotern entkommen, die auf Zerstörung aus sind? Natürlich in diesem einfachen, unterhaltsamen Spiel. Sie sind vielleicht in der Unterzahl gegen eine endlose Anzahl von Robotern, aber mit Ihrer Intelligenz und Ihrem praktischen Teleportationsgerät können Sie sie besiegen. Überlisten Sie alle Killerroboter, um zu gewinnen und zu überleben. \n ",
+ "name": "Killbots",
+ "summary": "Killermaschinen überlisten, um zu gewinnen"
+ },
+ "el": {
+ "description": "Πώς θα ξεφύγεις από τα ρομπότ δολοφόνους που φέρνουν την καταστροφή; Ανακάλύψέ το με αυτό το απλό, διασκεδαστικό παιχνίδι. Μπορεί να σε κατακλύσει μια ατελείωτη ροή από ρομπότ, αλλά με τη νοημοσύνη σου και τη συσκευή τηλεμεταφοράς μπορεί να τα νικήσεις. Γίνετε εξυπνότεροι από τα ρομπότ δολοφόνους και επιβιώστε για να διηγηθείτε πώς τα καταφέρατε!\n ",
+ "name": "Killbots",
+ "summary": "Γίνετε εξυπνότεροι από τα ρομπότ-δολοφόνους για να κερδίσετε"
+ },
+ "en-GB": {
+ "description": "How will you get away from the killer robots bent on destruction? Figure it out in this simple, entertaining game. You may be outnumbered by an endless stream of robots, but with your intelligence and handy teleportation device you can defeat them. Outsmart all of the killer robots to win and live to tell the tale!\n ",
+ "name": "Killbots",
+ "summary": "Outsmart the killer robots to win"
+ },
+ "eo": {
+ "description": "Kiel vi foriros de la murdaj robotoj fiksitaj al detruo? Eltrovu ĝin en ĉi tiu simpla, amuza ludo. Vi eble estas plimultita de senfina fluo de robotoj, sed per via inteligenteco kaj oportuna teleportada aparato vi povas venki ilin. Superu ĉiujn murdrobotojn por venki kaj vivi por rakonti la rakonton!\n ",
+ "name": "Killbots",
+ "summary": "Superruzu la murdistajn robotojn por venki"
+ },
+ "es": {
+ "description": "¿Cómo escaparías de los robots asesinos y propensos a la destrucción? Resuélvelo en este juego sencillo y entretenido. Puedes verte desbordado por una oleada interminable de robots, aunque puedes vencerlos con tu ingenio y un práctico dispositivo de teletransporte. ¡Sé más astuto que los robots asesinos para ganar y sobrevive para poder contarlo!\n ",
+ "name": "Killbots",
+ "summary": "Sé más astuto que los robots asesinos para ganar"
+ },
+ "et": {
+ "description": "Kuidas pääseda tapjarobotite eest, kes on saadetud just sind hävitama? Selles selle köitva mängu sisu peitubki. Lõputu robotite voog jätab sind alati vähemusse, kuid nutikuse ja mugava teleportatsiooniseadme abil on võimalik neist siiski jagu saada. Kavalda tapjarobotid üle ja jää ellu, kuni võid oma võidulugu kogu maailmale pajatada!\n ",
+ "name": "Killbots",
+ "summary": "Võitmiseks on tarvis tapjarobotid üle kavaldada"
+ },
+ "fi": {
+ "description": "Kuinka pääset pakoon tuhoasi tavoittelevia tappajarobotteja? Selvitä se tässä yksinkertaisessa mutta viihdyttävässä pelissä. Jäät ehkä robottien loputtoman tulvan alle, mutta älylläsi ja kätevällä teleportaatiolaitteella voit päihittää ne. Voita ja selviä kertomaan tarinasi olemalla tappajarobotteja nokkelampi!\n ",
+ "name": "Killbots",
+ "summary": "Voita päihittämällä tappajarobotit"
+ },
+ "fr": {
+ "description": "Comment allez-vous parvenir à échapper aux robots tueurs qui cherchent à vous détruire ? Trouvez la solution dans ce jeu simple et amusant. Vous allez être débordé par une invasion infinie de robots, mais votre intelligence et votre téléporteur vous permettront de les vaincre. Soyez plus malin que les robots tueurs pour remporter la partie et raconter votre épopée aux générations futures !\n ",
+ "name": "Killbots",
+ "summary": "Soyez plus malin que les robots tueurs pour gagner"
+ },
+ "he": {
+ "description": "איך מתרחקים מהרובוטים הקטלניים שמנסים להשמיד אותך? זאת השאלה שצריך לפצח במשחק המהנה והפשוט הזה. אולי יש כמות גדולה של רובוטים סביבך אך החוכמה והתקן השיגור היעיל שלך יכולים להביס אותם. מערימים על כל הרובוטים וזוכים להעביר את המורשת הלאה!\n ",
+ "name": "מתקפת רובוטים",
+ "summary": "צריך להערים על הרובוטים הקטלניים כדי לנצח"
+ },
+ "hu": {
+ "description": "Hogyan fog elmenekülni a pusztításra törő gyilkos robotok elől? Találja ki ebben az egyszerű, szórakoztató játékban. Lehet, hogy túlerőben van a robotok végtelen sora, de az intelligenciájával és a praktikus teleportáló eszközeivel legyőzheti őket. Járjon túl az összes gyilkos robot eszén, hogy győzzön, és elmesélhesse a történetet!\n ",
+ "name": "Killbots",
+ "summary": "Járjon túl a gyilkos robotok eszén a győzelemhez"
+ },
+ "id": {
+ "description": "Bagaimana cara kamu bisa lolos dari robot pembunuh yang bertekad menghancurkan? Cari tahu di permainan sederhana yang menghibur ini. Kamu mungkin kalah jumlah dengan robot yang tak ada habisnya, tetapi dengan peranti teleportasi yang cerdas dan praktis kamu bisa mengalahkannya. Siasati semua robot pembunuh untuk menang dan hidup untuk menceritakan kisahnya!\n ",
+ "name": "Killbots",
+ "summary": "Siasati robot pembunuh untuk menang"
+ },
+ "it": {
+ "description": "Come farai ad allontanarti dai robot killer votati alla distruzione? Scoprilo in questo gioco semplice e divertente. Potresti essere messo in inferiorità numerica da un flusso infinito di robot, ma potrai sconfiggerli con la tua intelligenza e con un pratico dispositivo di teletrasporto. Supera in astuzia tutti i robot killer per vincere e sopravvivere!\n ",
+ "name": "Killbots",
+ "summary": "Supera in astuzia i robot killer per vincere"
+ },
+ "ko": {
+ "description": "파괴의 신 킬러 로봇으로부터 어떻게 도망쳐야 할까요? 이 간단하고 재미있는 게임에서 알아 보십시오. 킬러 로봇이 끊임없이 공격해 오지만 전략적 움직임과 텔레포트로 로봇을 무찌를 수 있습니다. 킬러 로봇으로부터 살아남아서 전설을 이야기해 주세요!\n ",
+ "name": "Killbots",
+ "summary": "킬러 로봇을 뛰어넘어서 이기십시오"
+ },
+ "nl": {
+ "description": "Hoe weet u de killer-robots, gericht op vernietiging, te ontwijken? Zoek het uit in dit eenvoudige, onderhoudende spel. U kunt overweldigd worden door een eindeloze stroom robots, maar met uw intelligentie en handig apparaat voor teleporteren kunt u ze verslaan. Wees slimmer dan alle killer-robots om te winnen en leef om het te vertellen!\n ",
+ "name": "Killbots",
+ "summary": "Wees slimmer dan de killer-robots om te winnen"
+ },
+ "pl": {
+ "description": "W jaki sposób uciekniesz przed zabójczymi robotami nastawionymi na zniszczenie? Dowiedz się tego w tej prostej, wciągającej grze. Roboty mogą przeważać liczebnie, lecz dzięki twojej inteligencji i przydatnemu urządzeniu do teleportacji możesz je pokonać. Przechytrz wszystkie zabójcze roboty, aby wygrać i móc o tym snuć opowieści!\n ",
+ "name": "Killbots",
+ "summary": "Przechytrz zabójcze roboty, aby wygrać"
+ },
+ "pt": {
+ "description": "Como é que se poderá escapar dos robots assassinos focados na destruição? Descubra neste jogo simples e de entretenimento. Poderá ser sobrecarregado com uma sequência infinita de robots, mas com a sua inteligência e um dispositivo de tele-transporte útil, podê-los-á derrotar. Seja mais esperto que os robots assassinos para ganhar e sobreviver para contar a história!\n ",
+ "name": "Killbots",
+ "summary": "Seja mais esperto que os robots assassinos para ganhar"
+ },
+ "pt-BR": {
+ "description": "Como você vai escapar dos robôs assassinos com focados na destruição? Descubra neste jogo simples e de entretenimento. Você poderá estar em desvantagem com uma sequência infinita de robôs, mas com a sua inteligência e um prático dispositivo de teletransporte, eles poderão ser derrotados. Seja mais esperto que os robôs assassinos para ganhar e sobreviver para contar a história!\n ",
+ "name": "Killbots",
+ "summary": "Seja mais esperto que os robots assassinos para ganhar"
+ },
+ "ru": {
+ "description": "Как спастись от роботов-убийц, которые всё уничтожают? Придумать выход поможет эта простая увлекательная игра. Роботы могут идти нескончаемым потоком, но их можно одолеть с помощью вашего интеллекта и полезного устройства для телепортации. Перехитрите всех роботов-убийц, чтобы выжить и поведать об этом!\n ",
+ "name": "Killbots",
+ "summary": "Перехитрите роботов-убийц, чтобы выиграть"
+ },
+ "sv": {
+ "description": "Hur kommer du undan från mördarrobotarna inriktade på förintelse? Räkna ut det i det här enkla, underhållande spelet. Du kan vara övermannad av ett ändlös flöde av robotar, men med din intelligens och praktiska teleporteringsenhet kan du besegra dem. Överlista alla mördarrobotarna för att vinna och överleva så att du kan berätta om det.\n ",
+ "name": "Killbots",
+ "summary": "Överlista mördarrobotar för att vinna"
+ },
+ "tr": {
+ "description": "Yok etmeye ant içmiş katil robotlardan nice kaçacaksınız? Bu eğlendirici, yalın oyunda bunu bulun. Sayısız robot üzerinize gelecektir; ancak zekanız ve kullanışlı ışınlanma aygıtınızla onları yenebilirsiniz. Öykünüzü anlatabilmek için robotları alt edin!\n ",
+ "name": "Killbots",
+ "summary": "Kazanmak için katil robotları alt edin"
+ },
+ "uk": {
+ "description": "Як втекти від роботів-вбивць, єдиною метою яких є руйнування? Спробуйте впоратися із цим завданням у нашій простій, але захопливій грі. Хай роботів дуже багато, але за допомогою вашого інтелекту та зручного пристрою для телепортування ви можете їх перемогти. Обдуріть вбивць, щоб виграти гру, і живіть далі, щоб розповісти світові вашу історію!\n ",
+ "name": "Killbots",
+ "summary": "Обдуріть роботів-вбивць, щоб виграти"
+ },
+ "zh-Hans": {
+ "description": "如何从专事毁灭的杀手机器人手中逃脱?在这个简单有趣的游戏中找出来。这无尽的机器人流可能从数量上胜过你,但是依靠你的智慧和好用的传送设备你可以打败它们。以智慧胜过所有杀手机器人来获取胜利,活下来讲述你的故事!\n ",
+ "name": "Killbots",
+ "summary": "在智斗中胜过杀手机器人来获取胜利"
+ },
+ "zh-Hant": {
+ "description": "您會如何逃離一心要摧毀您的殺手機器人呢?在這個簡單又好玩的遊戲裡探索吧。您可能會遇到無止盡的機器人,但是利用您的機智和一台傳送裝置您是可以贏過它們的。拼過所有殺手機器人的挑戰,然後活下來炫耀您的經驗吧!\n ",
+ "name": "Killbots",
+ "summary": "利用您的機智贏過殺手機器人們"
+ },
+ "cs": {
+ "name": "Killbots",
+ "summary": "Přechytračte ostatní roboty"
+ },
+ "da": {
+ "name": "Killbots"
+ },
+ "ia": {
+ "name": "Killbots"
+ }
+ },
+ "project_license": "GPL-2.0+ and GFDL-1.3",
+ "is_free_license": true,
+ "app_id": "org.kde.killbots",
+ "icon": "https://dl.flathub.org/media/org/kde/killbots/989c56dc39cbc167a603dd253fc42894/icons/128x128/org.kde.killbots.png",
+ "main_categories": "game",
+ "sub_categories": [
+ "StrategyGame"
+ ],
+ "developer_name": "KDE",
+ "verification_verified": true,
+ "verification_method": "login_provider",
+ "verification_login_name": "teams/flathub",
+ "verification_login_provider": "kde",
+ "verification_login_is_organization": "true",
+ "verification_website": null,
+ "verification_timestamp": "1681472064",
+ "runtime": "org.kde.Platform/x86_64/6.8",
+ "updated_at": 1741309698,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1535052976,
+ "trending": 12.380228514523676,
+ "installs_last_month": 95,
"isMobileFriendly": false
},
{
@@ -49387,179 +49558,8 @@
"aarch64"
],
"added_at": 1535175109,
- "trending": 2.128565926606834,
- "installs_last_month": 94,
- "isMobileFriendly": false
- },
- {
- "name": "Killbots",
- "keywords": null,
- "summary": "Outsmart the killer robots to win",
- "description": "How will you get away from the killer robots bent on destruction? Figure it out in this simple, entertaining game. You may be outnumbered by an endless stream of robots, but with your intelligence and handy teleportation device you can defeat them. Outsmart all of the killer robots to win and live to tell the tale!\n ",
- "id": "org_kde_killbots",
- "type": "desktop-application",
- "translations": {
- "ar": {
- "description": "كيف تبتعد عن الآليين المصممين على التدمير؟ اكتشفها في هذه اللعبة المسلية البسيطة. قد يفوقنك في العدد ولكن بذكائك وجهاز النقل الآني سهل الاستخدام يمكنك هزيمتهم. تغلب على كل الآليين للفوز والعيش لتروي الحكاية!\n ",
- "name": "معركة الآليين",
- "summary": "تغلب على الآليين للفوز"
- },
- "ca": {
- "description": "Com aconseguireu escapar dels robots assassins propensos a la destrucció? Imagineu-ho amb aquest joc senzill i entretingut. Estareu superat en nombre per una munió sense fi de robots, però amb la teva intel·ligència i amb un dispositiu pràctic de teletransport els podreu guanyar. Supereu amb intel·ligència als robots assassins per a guanyar i viure per a explicar la proesa.\n ",
- "name": "Killbots",
- "summary": "Supera amb intel·ligència als robots assassins per a guanyar"
- },
- "de": {
- "description": "Wie wollen Sie den Killerrobotern entkommen, die auf Zerstörung aus sind? Natürlich in diesem einfachen, unterhaltsamen Spiel. Sie sind vielleicht in der Unterzahl gegen eine endlose Anzahl von Robotern, aber mit Ihrer Intelligenz und Ihrem praktischen Teleportationsgerät können Sie sie besiegen. Überlisten Sie alle Killerroboter, um zu gewinnen und zu überleben. \n ",
- "name": "Killbots",
- "summary": "Killermaschinen überlisten, um zu gewinnen"
- },
- "el": {
- "description": "Πώς θα ξεφύγεις από τα ρομπότ δολοφόνους που φέρνουν την καταστροφή; Ανακάλύψέ το με αυτό το απλό, διασκεδαστικό παιχνίδι. Μπορεί να σε κατακλύσει μια ατελείωτη ροή από ρομπότ, αλλά με τη νοημοσύνη σου και τη συσκευή τηλεμεταφοράς μπορεί να τα νικήσεις. Γίνετε εξυπνότεροι από τα ρομπότ δολοφόνους και επιβιώστε για να διηγηθείτε πώς τα καταφέρατε!\n ",
- "name": "Killbots",
- "summary": "Γίνετε εξυπνότεροι από τα ρομπότ-δολοφόνους για να κερδίσετε"
- },
- "en-GB": {
- "description": "How will you get away from the killer robots bent on destruction? Figure it out in this simple, entertaining game. You may be outnumbered by an endless stream of robots, but with your intelligence and handy teleportation device you can defeat them. Outsmart all of the killer robots to win and live to tell the tale!\n ",
- "name": "Killbots",
- "summary": "Outsmart the killer robots to win"
- },
- "eo": {
- "description": "Kiel vi foriros de la murdaj robotoj fiksitaj al detruo? Eltrovu ĝin en ĉi tiu simpla, amuza ludo. Vi eble estas plimultita de senfina fluo de robotoj, sed per via inteligenteco kaj oportuna teleportada aparato vi povas venki ilin. Superu ĉiujn murdrobotojn por venki kaj vivi por rakonti la rakonton!\n ",
- "name": "Killbots",
- "summary": "Superruzu la murdistajn robotojn por venki"
- },
- "es": {
- "description": "¿Cómo escaparías de los robots asesinos y propensos a la destrucción? Resuélvelo en este juego sencillo y entretenido. Puedes verte desbordado por una oleada interminable de robots, aunque puedes vencerlos con tu ingenio y un práctico dispositivo de teletransporte. ¡Sé más astuto que los robots asesinos para ganar y sobrevive para poder contarlo!\n ",
- "name": "Killbots",
- "summary": "Sé más astuto que los robots asesinos para ganar"
- },
- "et": {
- "description": "Kuidas pääseda tapjarobotite eest, kes on saadetud just sind hävitama? Selles selle köitva mängu sisu peitubki. Lõputu robotite voog jätab sind alati vähemusse, kuid nutikuse ja mugava teleportatsiooniseadme abil on võimalik neist siiski jagu saada. Kavalda tapjarobotid üle ja jää ellu, kuni võid oma võidulugu kogu maailmale pajatada!\n ",
- "name": "Killbots",
- "summary": "Võitmiseks on tarvis tapjarobotid üle kavaldada"
- },
- "fi": {
- "description": "Kuinka pääset pakoon tuhoasi tavoittelevia tappajarobotteja? Selvitä se tässä yksinkertaisessa mutta viihdyttävässä pelissä. Jäät ehkä robottien loputtoman tulvan alle, mutta älylläsi ja kätevällä teleportaatiolaitteella voit päihittää ne. Voita ja selviä kertomaan tarinasi olemalla tappajarobotteja nokkelampi!\n ",
- "name": "Killbots",
- "summary": "Voita päihittämällä tappajarobotit"
- },
- "fr": {
- "description": "Comment allez-vous parvenir à échapper aux robots tueurs qui cherchent à vous détruire ? Trouvez la solution dans ce jeu simple et amusant. Vous allez être débordé par une invasion infinie de robots, mais votre intelligence et votre téléporteur vous permettront de les vaincre. Soyez plus malin que les robots tueurs pour remporter la partie et raconter votre épopée aux générations futures !\n ",
- "name": "Killbots",
- "summary": "Soyez plus malin que les robots tueurs pour gagner"
- },
- "he": {
- "description": "איך מתרחקים מהרובוטים הקטלניים שמנסים להשמיד אותך? זאת השאלה שצריך לפצח במשחק המהנה והפשוט הזה. אולי יש כמות גדולה של רובוטים סביבך אך החוכמה והתקן השיגור היעיל שלך יכולים להביס אותם. מערימים על כל הרובוטים וזוכים להעביר את המורשת הלאה!\n ",
- "name": "מתקפת רובוטים",
- "summary": "צריך להערים על הרובוטים הקטלניים כדי לנצח"
- },
- "hu": {
- "description": "Hogyan fog elmenekülni a pusztításra törő gyilkos robotok elől? Találja ki ebben az egyszerű, szórakoztató játékban. Lehet, hogy túlerőben van a robotok végtelen sora, de az intelligenciájával és a praktikus teleportáló eszközeivel legyőzheti őket. Járjon túl az összes gyilkos robot eszén, hogy győzzön, és elmesélhesse a történetet!\n ",
- "name": "Killbots",
- "summary": "Járjon túl a gyilkos robotok eszén a győzelemhez"
- },
- "id": {
- "description": "Bagaimana cara kamu bisa lolos dari robot pembunuh yang bertekad menghancurkan? Cari tahu di permainan sederhana yang menghibur ini. Kamu mungkin kalah jumlah dengan robot yang tak ada habisnya, tetapi dengan peranti teleportasi yang cerdas dan praktis kamu bisa mengalahkannya. Siasati semua robot pembunuh untuk menang dan hidup untuk menceritakan kisahnya!\n ",
- "name": "Killbots",
- "summary": "Siasati robot pembunuh untuk menang"
- },
- "it": {
- "description": "Come farai ad allontanarti dai robot killer votati alla distruzione? Scoprilo in questo gioco semplice e divertente. Potresti essere messo in inferiorità numerica da un flusso infinito di robot, ma potrai sconfiggerli con la tua intelligenza e con un pratico dispositivo di teletrasporto. Supera in astuzia tutti i robot killer per vincere e sopravvivere!\n ",
- "name": "Killbots",
- "summary": "Supera in astuzia i robot killer per vincere"
- },
- "ko": {
- "description": "파괴의 신 킬러 로봇으로부터 어떻게 도망쳐야 할까요? 이 간단하고 재미있는 게임에서 알아 보십시오. 킬러 로봇이 끊임없이 공격해 오지만 전략적 움직임과 텔레포트로 로봇을 무찌를 수 있습니다. 킬러 로봇으로부터 살아남아서 전설을 이야기해 주세요!\n ",
- "name": "Killbots",
- "summary": "킬러 로봇을 뛰어넘어서 이기십시오"
- },
- "nl": {
- "description": "Hoe weet u de killer-robots, gericht op vernietiging, te ontwijken? Zoek het uit in dit eenvoudige, onderhoudende spel. U kunt overweldigd worden door een eindeloze stroom robots, maar met uw intelligentie en handig apparaat voor teleporteren kunt u ze verslaan. Wees slimmer dan alle killer-robots om te winnen en leef om het te vertellen!\n ",
- "name": "Killbots",
- "summary": "Wees slimmer dan de killer-robots om te winnen"
- },
- "pl": {
- "description": "W jaki sposób uciekniesz przed zabójczymi robotami nastawionymi na zniszczenie? Dowiedz się tego w tej prostej, wciągającej grze. Roboty mogą przeważać liczebnie, lecz dzięki twojej inteligencji i przydatnemu urządzeniu do teleportacji możesz je pokonać. Przechytrz wszystkie zabójcze roboty, aby wygrać i móc o tym snuć opowieści!\n ",
- "name": "Killbots",
- "summary": "Przechytrz zabójcze roboty, aby wygrać"
- },
- "pt": {
- "description": "Como é que se poderá escapar dos robots assassinos focados na destruição? Descubra neste jogo simples e de entretenimento. Poderá ser sobrecarregado com uma sequência infinita de robots, mas com a sua inteligência e um dispositivo de tele-transporte útil, podê-los-á derrotar. Seja mais esperto que os robots assassinos para ganhar e sobreviver para contar a história!\n ",
- "name": "Killbots",
- "summary": "Seja mais esperto que os robots assassinos para ganhar"
- },
- "pt-BR": {
- "description": "Como você vai escapar dos robôs assassinos com focados na destruição? Descubra neste jogo simples e de entretenimento. Você poderá estar em desvantagem com uma sequência infinita de robôs, mas com a sua inteligência e um prático dispositivo de teletransporte, eles poderão ser derrotados. Seja mais esperto que os robôs assassinos para ganhar e sobreviver para contar a história!\n ",
- "name": "Killbots",
- "summary": "Seja mais esperto que os robots assassinos para ganhar"
- },
- "ru": {
- "description": "Как спастись от роботов-убийц, которые всё уничтожают? Придумать выход поможет эта простая увлекательная игра. Роботы могут идти нескончаемым потоком, но их можно одолеть с помощью вашего интеллекта и полезного устройства для телепортации. Перехитрите всех роботов-убийц, чтобы выжить и поведать об этом!\n ",
- "name": "Killbots",
- "summary": "Перехитрите роботов-убийц, чтобы выиграть"
- },
- "sv": {
- "description": "Hur kommer du undan från mördarrobotarna inriktade på förintelse? Räkna ut det i det här enkla, underhållande spelet. Du kan vara övermannad av ett ändlös flöde av robotar, men med din intelligens och praktiska teleporteringsenhet kan du besegra dem. Överlista alla mördarrobotarna för att vinna och överleva så att du kan berätta om det.\n ",
- "name": "Killbots",
- "summary": "Överlista mördarrobotar för att vinna"
- },
- "tr": {
- "description": "Yok etmeye ant içmiş katil robotlardan nice kaçacaksınız? Bu eğlendirici, yalın oyunda bunu bulun. Sayısız robot üzerinize gelecektir; ancak zekanız ve kullanışlı ışınlanma aygıtınızla onları yenebilirsiniz. Öykünüzü anlatabilmek için robotları alt edin!\n ",
- "name": "Killbots",
- "summary": "Kazanmak için katil robotları alt edin"
- },
- "uk": {
- "description": "Як втекти від роботів-вбивць, єдиною метою яких є руйнування? Спробуйте впоратися із цим завданням у нашій простій, але захопливій грі. Хай роботів дуже багато, але за допомогою вашого інтелекту та зручного пристрою для телепортування ви можете їх перемогти. Обдуріть вбивць, щоб виграти гру, і живіть далі, щоб розповісти світові вашу історію!\n ",
- "name": "Killbots",
- "summary": "Обдуріть роботів-вбивць, щоб виграти"
- },
- "zh-Hans": {
- "description": "如何从专事毁灭的杀手机器人手中逃脱?在这个简单有趣的游戏中找出来。这无尽的机器人流可能从数量上胜过你,但是依靠你的智慧和好用的传送设备你可以打败它们。以智慧胜过所有杀手机器人来获取胜利,活下来讲述你的故事!\n ",
- "name": "Killbots",
- "summary": "在智斗中胜过杀手机器人来获取胜利"
- },
- "zh-Hant": {
- "description": "您會如何逃離一心要摧毀您的殺手機器人呢?在這個簡單又好玩的遊戲裡探索吧。您可能會遇到無止盡的機器人,但是利用您的機智和一台傳送裝置您是可以贏過它們的。拼過所有殺手機器人的挑戰,然後活下來炫耀您的經驗吧!\n ",
- "name": "Killbots",
- "summary": "利用您的機智贏過殺手機器人們"
- },
- "cs": {
- "name": "Killbots",
- "summary": "Přechytračte ostatní roboty"
- },
- "da": {
- "name": "Killbots"
- },
- "ia": {
- "name": "Killbots"
- }
- },
- "project_license": "GPL-2.0+ and GFDL-1.3",
- "is_free_license": true,
- "app_id": "org.kde.killbots",
- "icon": "https://dl.flathub.org/media/org/kde/killbots/989c56dc39cbc167a603dd253fc42894/icons/128x128/org.kde.killbots.png",
- "main_categories": "game",
- "sub_categories": [
- "StrategyGame"
- ],
- "developer_name": "KDE",
- "verification_verified": true,
- "verification_method": "login_provider",
- "verification_login_name": "teams/flathub",
- "verification_login_provider": "kde",
- "verification_login_is_organization": "true",
- "verification_website": null,
- "verification_timestamp": "1681472064",
- "runtime": "org.kde.Platform/x86_64/6.8",
- "updated_at": 1741309698,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1535052976,
- "trending": 8.2853472302809,
- "installs_last_month": 92,
+ "trending": 1.6082369656679358,
+ "installs_last_month": 91,
"isMobileFriendly": false
},
{
@@ -49602,8 +49602,8 @@
"aarch64"
],
"added_at": 1674804482,
- "trending": 1.3685380223395984,
- "installs_last_month": 82,
+ "trending": 0.5142197032653434,
+ "installs_last_month": 88,
"isMobileFriendly": false
},
{
@@ -49688,8 +49688,8 @@
"aarch64"
],
"added_at": 1683543619,
- "trending": 2.7186367027308016,
- "installs_last_month": 74,
+ "trending": 2.725586272001996,
+ "installs_last_month": 76,
"isMobileFriendly": false
},
{
@@ -49860,8 +49860,8 @@
"aarch64"
],
"added_at": 1535998155,
- "trending": 5.925955543592654,
- "installs_last_month": 69,
+ "trending": 5.56141338227886,
+ "installs_last_month": 74,
"isMobileFriendly": false
},
{
@@ -49895,8 +49895,8 @@
"aarch64"
],
"added_at": 1693817913,
- "trending": 4.184036159692472,
- "installs_last_month": 34,
+ "trending": 4.152830451019613,
+ "installs_last_month": 32,
"isMobileFriendly": false
},
{
@@ -49939,13 +49939,13 @@
"aarch64"
],
"added_at": 1593335719,
- "trending": 1.046277100138454,
- "installs_last_month": 22,
+ "trending": 1.72194334589098,
+ "installs_last_month": 28,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 11,
+ "processingTimeMs": 13,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -50187,8 +50187,8 @@
"aarch64"
],
"added_at": 1507913183,
- "trending": 6.081639316289759,
- "installs_last_month": 86770,
+ "trending": 5.529375113115509,
+ "installs_last_month": 87644,
"isMobileFriendly": false
},
{
@@ -50369,8 +50369,8 @@
"aarch64"
],
"added_at": 1515426923,
- "trending": 9.69087535793366,
- "installs_last_month": 29029,
+ "trending": 9.916595722146756,
+ "installs_last_month": 28934,
"isMobileFriendly": false
},
{
@@ -50479,15 +50479,15 @@
"verification_login_is_organization": "true",
"verification_website": null,
"verification_timestamp": "1691981026",
- "runtime": "org.gnome.Platform/x86_64/47",
- "updated_at": 1728337874,
+ "runtime": "org.gnome.Platform/x86_64/48",
+ "updated_at": 1743733895,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1545160256,
- "trending": 11.636648403725683,
- "installs_last_month": 8550,
+ "trending": 12.579792476584494,
+ "installs_last_month": 8531,
"isMobileFriendly": false
},
{
@@ -50717,8 +50717,8 @@
"aarch64"
],
"added_at": 1501347955,
- "trending": 13.146965425267467,
- "installs_last_month": 4873,
+ "trending": 14.744109726416337,
+ "installs_last_month": 4766,
"isMobileFriendly": false
},
{
@@ -50867,8 +50867,8 @@
"x86_64"
],
"added_at": 1552521014,
- "trending": 8.475862462496925,
- "installs_last_month": 4184,
+ "trending": 11.957688535415926,
+ "installs_last_month": 4185,
"isMobileFriendly": false
},
{
@@ -51059,8 +51059,8 @@
"aarch64"
],
"added_at": 1535101380,
- "trending": 12.370270446514088,
- "installs_last_month": 4165,
+ "trending": 13.45255275552272,
+ "installs_last_month": 4142,
"isMobileFriendly": false
},
{
@@ -51113,8 +51113,8 @@
"aarch64"
],
"added_at": 1569160081,
- "trending": 6.0490426791562895,
- "installs_last_month": 2622,
+ "trending": 7.6911240877124545,
+ "installs_last_month": 2574,
"isMobileFriendly": false
},
{
@@ -51329,8 +51329,8 @@
"aarch64"
],
"added_at": 1632216005,
- "trending": 9.493128333720634,
- "installs_last_month": 2597,
+ "trending": 10.040828145671366,
+ "installs_last_month": 2561,
"isMobileFriendly": false
},
{
@@ -51491,8 +51491,8 @@
"aarch64"
],
"added_at": 1491912608,
- "trending": 9.846788252375214,
- "installs_last_month": 2025,
+ "trending": 12.146006876822709,
+ "installs_last_month": 2045,
"isMobileFriendly": false
},
{
@@ -51527,8 +51527,8 @@
"aarch64"
],
"added_at": 1530101282,
- "trending": 7.7242614647459344,
- "installs_last_month": 1765,
+ "trending": 8.247340001919707,
+ "installs_last_month": 1785,
"isMobileFriendly": false
},
{
@@ -51574,8 +51574,8 @@
"aarch64"
],
"added_at": 1576949749,
- "trending": 8.227288962980303,
- "installs_last_month": 1620,
+ "trending": 9.06800721492854,
+ "installs_last_month": 1632,
"isMobileFriendly": false
},
{
@@ -51609,8 +51609,8 @@
"x86_64"
],
"added_at": 1646382533,
- "trending": 8.431699126244666,
- "installs_last_month": 1524,
+ "trending": 8.671484168705799,
+ "installs_last_month": 1485,
"isMobileFriendly": false
},
{
@@ -51646,8 +51646,8 @@
"aarch64"
],
"added_at": 1584687957,
- "trending": -0.5969416818249037,
- "installs_last_month": 1471,
+ "trending": 1.521438531499256,
+ "installs_last_month": 1483,
"isMobileFriendly": false
},
{
@@ -51682,8 +51682,8 @@
"aarch64"
],
"added_at": 1494999503,
- "trending": 8.695357262721146,
- "installs_last_month": 1107,
+ "trending": 10.933543671791238,
+ "installs_last_month": 1108,
"isMobileFriendly": false
},
{
@@ -51740,8 +51740,8 @@
"aarch64"
],
"added_at": 1675323888,
- "trending": 11.576926643479313,
- "installs_last_month": 983,
+ "trending": 12.338700836736049,
+ "installs_last_month": 976,
"isMobileFriendly": false
},
{
@@ -51775,8 +51775,8 @@
"x86_64"
],
"added_at": 1527195269,
- "trending": 2.419475908922979,
- "installs_last_month": 938,
+ "trending": 2.7182801252498177,
+ "installs_last_month": 946,
"isMobileFriendly": false
},
{
@@ -51818,8 +51818,8 @@
"aarch64"
],
"added_at": 1581456843,
- "trending": 6.139473726029808,
- "installs_last_month": 863,
+ "trending": 10.03040504178487,
+ "installs_last_month": 849,
"isMobileFriendly": false
},
{
@@ -51865,8 +51865,8 @@
"aarch64"
],
"added_at": 1533313900,
- "trending": 7.519239023964574,
- "installs_last_month": 830,
+ "trending": 8.99361849467159,
+ "installs_last_month": 818,
"isMobileFriendly": false
},
{
@@ -51909,8 +51909,8 @@
"aarch64"
],
"added_at": 1533642989,
- "trending": 12.368600719994497,
- "installs_last_month": 782,
+ "trending": 11.7069738665598,
+ "installs_last_month": 801,
"isMobileFriendly": false
},
{
@@ -51981,8 +51981,8 @@
"aarch64"
],
"added_at": 1693099281,
- "trending": 1.0197788778997692,
- "installs_last_month": 756,
+ "trending": 0.2943435318234774,
+ "installs_last_month": 737,
"isMobileFriendly": false
},
{
@@ -52023,8 +52023,8 @@
"aarch64"
],
"added_at": 1627289817,
- "trending": 14.064103083828964,
- "installs_last_month": 544,
+ "trending": 13.94837867956624,
+ "installs_last_month": 545,
"isMobileFriendly": false
},
{
@@ -52058,8 +52058,8 @@
"aarch64"
],
"added_at": 1695295005,
- "trending": 10.10009346389806,
- "installs_last_month": 524,
+ "trending": 9.450091925933538,
+ "installs_last_month": 527,
"isMobileFriendly": false
},
{
@@ -52105,8 +52105,8 @@
"aarch64"
],
"added_at": 1518650307,
- "trending": 7.538842689256384,
- "installs_last_month": 443,
+ "trending": 9.424594537468256,
+ "installs_last_month": 432,
"isMobileFriendly": false
},
{
@@ -52142,8 +52142,8 @@
"aarch64"
],
"added_at": 1722667073,
- "trending": 8.839671344447598,
- "installs_last_month": 361,
+ "trending": 6.440087302271057,
+ "installs_last_month": 347,
"isMobileFriendly": false
},
{
@@ -52184,8 +52184,8 @@
"aarch64"
],
"added_at": 1610613500,
- "trending": 5.115418467243851,
- "installs_last_month": 321,
+ "trending": 7.362683679118491,
+ "installs_last_month": 319,
"isMobileFriendly": false
},
{
@@ -52225,8 +52225,8 @@
"aarch64"
],
"added_at": 1632924203,
- "trending": 14.458274039322294,
- "installs_last_month": 299,
+ "trending": 15.173136947814744,
+ "installs_last_month": 307,
"isMobileFriendly": false
},
{
@@ -52269,8 +52269,8 @@
"x86_64"
],
"added_at": 1728977151,
- "trending": 4.149039816291582,
- "installs_last_month": 295,
+ "trending": 5.210375306484146,
+ "installs_last_month": 292,
"isMobileFriendly": false
},
{
@@ -52307,8 +52307,8 @@
"aarch64"
],
"added_at": 1715582112,
- "trending": 8.124513513038593,
- "installs_last_month": 244,
+ "trending": 6.155432060874581,
+ "installs_last_month": 241,
"isMobileFriendly": false
},
{
@@ -52348,8 +52348,8 @@
"aarch64"
],
"added_at": 1693288565,
- "trending": 4.1719157493671695,
- "installs_last_month": 228,
+ "trending": 3.6124913868256248,
+ "installs_last_month": 222,
"isMobileFriendly": false
},
{
@@ -52385,8 +52385,8 @@
"aarch64"
],
"added_at": 1633814086,
- "trending": 9.22801027351884,
- "installs_last_month": 162,
+ "trending": 11.985631146267789,
+ "installs_last_month": 163,
"isMobileFriendly": false
},
{
@@ -52420,10 +52420,47 @@
"aarch64"
],
"added_at": 1699220563,
- "trending": 3.054600165865233,
+ "trending": 3.686425141256033,
"installs_last_month": 141,
"isMobileFriendly": false
},
+ {
+ "name": "FOSStriangulator",
+ "keywords": null,
+ "summary": "A tool for making triangulated illustrations out of photos",
+ "description": "A tool for making triangulated illustrations out of photos",
+ "id": "org_enjoyingfoss_FOSStriangulator",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0-only",
+ "is_free_license": true,
+ "app_id": "org.enjoyingfoss.FOSStriangulator",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.enjoyingfoss.FOSStriangulator.png",
+ "main_categories": "graphics",
+ "sub_categories": [
+ "2DGraphics",
+ "Java",
+ "VectorGraphics"
+ ],
+ "developer_name": null,
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1694460859,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1611221418,
+ "trending": -0.606631747016622,
+ "installs_last_month": 104,
+ "isMobileFriendly": false
+ },
{
"name": "KGraphViewer",
"keywords": null,
@@ -52582,8 +52619,8 @@
"aarch64"
],
"added_at": 1670839153,
- "trending": 6.965783690796494,
- "installs_last_month": 106,
+ "trending": 10.32662521648369,
+ "installs_last_month": 104,
"isMobileFriendly": false
},
{
@@ -52714,45 +52751,8 @@
"aarch64"
],
"added_at": 1549030167,
- "trending": 8.665498000779849,
- "installs_last_month": 99,
- "isMobileFriendly": false
- },
- {
- "name": "FOSStriangulator",
- "keywords": null,
- "summary": "A tool for making triangulated illustrations out of photos",
- "description": "A tool for making triangulated illustrations out of photos",
- "id": "org_enjoyingfoss_FOSStriangulator",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0-only",
- "is_free_license": true,
- "app_id": "org.enjoyingfoss.FOSStriangulator",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.enjoyingfoss.FOSStriangulator.png",
- "main_categories": "graphics",
- "sub_categories": [
- "2DGraphics",
- "Java",
- "VectorGraphics"
- ],
- "developer_name": null,
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1694460859,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1611221418,
- "trending": 0.9618364662742596,
- "installs_last_month": 99,
+ "trending": 8.63581222729754,
+ "installs_last_month": 96,
"isMobileFriendly": false
},
{
@@ -52786,7 +52786,7 @@
"aarch64"
],
"added_at": 1597043509,
- "trending": 0.33434610918493757,
+ "trending": 0.9416292591251104,
"installs_last_month": 96,
"isMobileFriendly": false
},
@@ -52828,8 +52828,8 @@
"aarch64"
],
"added_at": 1740511578,
- "trending": 3.073970880971254,
- "installs_last_month": 86,
+ "trending": 4.456832772240226,
+ "installs_last_month": 78,
"isMobileFriendly": false
},
{
@@ -52937,7 +52937,7 @@
],
"added_at": 1690703469,
"trending": 7.4258674386377805,
- "installs_last_month": 70,
+ "installs_last_month": 69,
"isMobileFriendly": false
},
{
@@ -52981,7 +52981,7 @@
],
"added_at": 1702298026,
"trending": 7.633521442260931,
- "installs_last_month": 55,
+ "installs_last_month": 53,
"isMobileFriendly": false
},
{
@@ -53058,8 +53058,8 @@
"aarch64"
],
"added_at": 1686904298,
- "trending": 9.6801585314181,
- "installs_last_month": 26,
+ "trending": 6.697819891291061,
+ "installs_last_month": 29,
"isMobileFriendly": false
},
{
@@ -53109,8 +53109,8 @@
"aarch64"
],
"added_at": 1609367784,
- "trending": 10.111629771590229,
- "installs_last_month": 20,
+ "trending": 9.542180008490076,
+ "installs_last_month": 22,
"isMobileFriendly": false
},
{
@@ -53151,7 +53151,7 @@
}
],
"query": "",
- "processingTimeMs": 10,
+ "processingTimeMs": 9,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -53202,13 +53202,13 @@
"verification_website": null,
"verification_timestamp": null,
"runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1743535495,
+ "updated_at": 1743726485,
"arches": [
"x86_64"
],
"added_at": 1492029203,
- "trending": 13.584876866669044,
- "installs_last_month": 21443,
+ "trending": 10.529053000350904,
+ "installs_last_month": 21556,
"isMobileFriendly": false
},
{
@@ -53256,8 +53256,8 @@
"aarch64"
],
"added_at": 1587977342,
- "trending": 13.197379845911984,
- "installs_last_month": 11306,
+ "trending": 14.194865552891969,
+ "installs_last_month": 11299,
"isMobileFriendly": false
},
{
@@ -53305,8 +53305,8 @@
"aarch64"
],
"added_at": 1704947779,
- "trending": 8.98280465363363,
- "installs_last_month": 7691,
+ "trending": 9.395247285213518,
+ "installs_last_month": 7657,
"isMobileFriendly": false
},
{
@@ -53353,8 +53353,8 @@
"x86_64"
],
"added_at": 1570749895,
- "trending": 8.751801725232784,
- "installs_last_month": 2722,
+ "trending": 8.744855229949838,
+ "installs_last_month": 2721,
"isMobileFriendly": false
},
{
@@ -53387,8 +53387,8 @@
"x86_64"
],
"added_at": 1635841433,
- "trending": 8.69960693967958,
- "installs_last_month": 1571,
+ "trending": 7.377674482172365,
+ "installs_last_month": 1581,
"isMobileFriendly": false
},
{
@@ -53472,8 +53472,8 @@
"aarch64"
],
"added_at": 1717581622,
- "trending": 15.712543891608918,
- "installs_last_month": 1455,
+ "trending": 14.894605868921383,
+ "installs_last_month": 1470,
"isMobileFriendly": false
},
{
@@ -53537,8 +53537,8 @@
"aarch64"
],
"added_at": 1534106050,
- "trending": 11.001978423876343,
- "installs_last_month": 1305,
+ "trending": 8.68572111157361,
+ "installs_last_month": 1321,
"isMobileFriendly": false
},
{
@@ -53572,8 +53572,8 @@
"x86_64"
],
"added_at": 1617052444,
- "trending": 6.86063902615949,
- "installs_last_month": 1266,
+ "trending": 7.155025995595325,
+ "installs_last_month": 1262,
"isMobileFriendly": false
},
{
@@ -53612,8 +53612,8 @@
"aarch64"
],
"added_at": 1566193625,
- "trending": 7.813644419454896,
- "installs_last_month": 1078,
+ "trending": 7.763833764647129,
+ "installs_last_month": 1070,
"isMobileFriendly": false
},
{
@@ -53649,8 +53649,8 @@
"aarch64"
],
"added_at": 1618295586,
- "trending": 0.6741690534880512,
- "installs_last_month": 1029,
+ "trending": 3.8302324417650375,
+ "installs_last_month": 1045,
"isMobileFriendly": false
},
{
@@ -53685,8 +53685,8 @@
"aarch64"
],
"added_at": 1706170421,
- "trending": 10.998514477226555,
- "installs_last_month": 932,
+ "trending": 8.81048033165973,
+ "installs_last_month": 923,
"isMobileFriendly": false
},
{
@@ -53726,8 +53726,8 @@
"aarch64"
],
"added_at": 1656789987,
- "trending": 5.467583422893564,
- "installs_last_month": 659,
+ "trending": 3.821834808476658,
+ "installs_last_month": 658,
"isMobileFriendly": false
},
{
@@ -53774,8 +53774,8 @@
"x86_64"
],
"added_at": 1689139787,
- "trending": 6.056866003729801,
- "installs_last_month": 618,
+ "trending": 7.123316875503431,
+ "installs_last_month": 617,
"isMobileFriendly": false
},
{
@@ -53826,8 +53826,8 @@
"x86_64"
],
"added_at": 1646382871,
- "trending": 6.068374052148361,
- "installs_last_month": 542,
+ "trending": 4.643506553338735,
+ "installs_last_month": 547,
"isMobileFriendly": false
},
{
@@ -53861,7 +53861,7 @@
"aarch64"
],
"added_at": 1549030305,
- "trending": 9.2574053275969,
+ "trending": 7.489320400003027,
"installs_last_month": 358,
"isMobileFriendly": false
},
@@ -53909,8 +53909,8 @@
"x86_64"
],
"added_at": 1714134302,
- "trending": -0.514583547641889,
- "installs_last_month": 327,
+ "trending": 0.36192368646196793,
+ "installs_last_month": 330,
"isMobileFriendly": false
},
{
@@ -53958,8 +53958,8 @@
"aarch64"
],
"added_at": 1640942143,
- "trending": 3.064706174926567,
- "installs_last_month": 296,
+ "trending": 2.5575604164411794,
+ "installs_last_month": 294,
"isMobileFriendly": false
},
{
@@ -53992,8 +53992,8 @@
"x86_64"
],
"added_at": 1584728951,
- "trending": 1.1429066615979313,
- "installs_last_month": 255,
+ "trending": 0.785773842434504,
+ "installs_last_month": 264,
"isMobileFriendly": false
},
{
@@ -54027,8 +54027,8 @@
"aarch64"
],
"added_at": 1523357460,
- "trending": 6.827715723335377,
- "installs_last_month": 254,
+ "trending": 9.655506286872283,
+ "installs_last_month": 252,
"isMobileFriendly": false
},
{
@@ -54061,8 +54061,8 @@
"x86_64"
],
"added_at": 1740275069,
- "trending": 3.5152979086112577,
- "installs_last_month": 169,
+ "trending": 3.81643336977989,
+ "installs_last_month": 172,
"isMobileFriendly": false
},
{
@@ -54095,8 +54095,8 @@
"x86_64"
],
"added_at": 1704479660,
- "trending": 4.681994277415798,
- "installs_last_month": 158,
+ "trending": 4.308157638634171,
+ "installs_last_month": 156,
"isMobileFriendly": false
},
{
@@ -54137,8 +54137,8 @@
"aarch64"
],
"added_at": 1691394672,
- "trending": 9.87128521160554,
- "installs_last_month": 148,
+ "trending": 13.38664478091626,
+ "installs_last_month": 150,
"isMobileFriendly": false
},
{
@@ -54173,7 +54173,7 @@
],
"added_at": 1645522176,
"trending": 5.362434831159005,
- "installs_last_month": 73,
+ "installs_last_month": 72,
"isMobileFriendly": false
}
],
@@ -54264,8 +54264,8 @@
"aarch64"
],
"added_at": 1529320559,
- "trending": 4.30993629349379,
- "installs_last_month": 1188,
+ "trending": 5.555187380437769,
+ "installs_last_month": 1160,
"isMobileFriendly": false
},
{
@@ -54313,8 +54313,8 @@
"aarch64"
],
"added_at": 1675625326,
- "trending": 8.060153378590002,
- "installs_last_month": 835,
+ "trending": 7.820838580036169,
+ "installs_last_month": 850,
"isMobileFriendly": false
}
],
@@ -54547,8 +54547,8 @@
"aarch64"
],
"added_at": 1604311353,
- "trending": 12.27648397179913,
- "installs_last_month": 12321,
+ "trending": 11.642276767732168,
+ "installs_last_month": 13089,
"isMobileFriendly": false
},
{
@@ -54647,8 +54647,8 @@
"aarch64"
],
"added_at": 1493820137,
- "trending": 7.116808961435685,
- "installs_last_month": 6563,
+ "trending": 7.627396081161051,
+ "installs_last_month": 6599,
"isMobileFriendly": false
},
{
@@ -54820,8 +54820,8 @@
"aarch64"
],
"added_at": 1590656772,
- "trending": 6.109066301036719,
- "installs_last_month": 4270,
+ "trending": 5.376169242363517,
+ "installs_last_month": 4299,
"isMobileFriendly": false
},
{
@@ -54970,8 +54970,8 @@
"x86_64"
],
"added_at": 1552521014,
- "trending": 8.475862462496925,
- "installs_last_month": 4184,
+ "trending": 11.957688535415926,
+ "installs_last_month": 4185,
"isMobileFriendly": false
},
{
@@ -55188,8 +55188,8 @@
"aarch64"
],
"added_at": 1537942745,
- "trending": 9.222658893354314,
- "installs_last_month": 3949,
+ "trending": 8.123179008400808,
+ "installs_last_month": 3947,
"isMobileFriendly": false
},
{
@@ -55242,8 +55242,8 @@
"aarch64"
],
"added_at": 1569160081,
- "trending": 6.0490426791562895,
- "installs_last_month": 2622,
+ "trending": 7.6911240877124545,
+ "installs_last_month": 2574,
"isMobileFriendly": false
},
{
@@ -55458,8 +55458,8 @@
"aarch64"
],
"added_at": 1632216005,
- "trending": 9.493128333720634,
- "installs_last_month": 2597,
+ "trending": 10.040828145671366,
+ "installs_last_month": 2561,
"isMobileFriendly": false
},
{
@@ -55694,8 +55694,8 @@
"aarch64"
],
"added_at": 1504908959,
- "trending": 11.561608997641873,
- "installs_last_month": 1777,
+ "trending": 11.974920611843162,
+ "installs_last_month": 1738,
"isMobileFriendly": false
},
{
@@ -55729,7 +55729,7 @@
"aarch64"
],
"added_at": 1632394398,
- "trending": 11.465878063068136,
+ "trending": 11.850482678252266,
"installs_last_month": 1660,
"isMobileFriendly": false
},
@@ -55776,8 +55776,8 @@
"aarch64"
],
"added_at": 1654498649,
- "trending": 12.520949147123169,
- "installs_last_month": 1572,
+ "trending": 11.40080028478032,
+ "installs_last_month": 1567,
"isMobileFriendly": false
},
{
@@ -55819,8 +55819,8 @@
"aarch64"
],
"added_at": 1604472263,
- "trending": 12.958050689622535,
- "installs_last_month": 1021,
+ "trending": 12.498541616588383,
+ "installs_last_month": 1016,
"isMobileFriendly": false
},
{
@@ -55936,8 +55936,8 @@
"aarch64"
],
"added_at": 1588835645,
- "trending": 5.263960790675915,
- "installs_last_month": 339,
+ "trending": 7.7313688200820465,
+ "installs_last_month": 334,
"isMobileFriendly": false
},
{
@@ -56098,8 +56098,8 @@
"aarch64"
],
"added_at": 1642623110,
- "trending": 11.80944647726439,
- "installs_last_month": 305,
+ "trending": 12.631519248491228,
+ "installs_last_month": 297,
"isMobileFriendly": false
},
{
@@ -56134,8 +56134,8 @@
"aarch64"
],
"added_at": 1612518480,
- "trending": 8.111673568651446,
- "installs_last_month": 258,
+ "trending": 8.882143023139072,
+ "installs_last_month": 263,
"isMobileFriendly": false
},
{
@@ -56179,8 +56179,8 @@
"aarch64"
],
"added_at": 1704220813,
- "trending": 9.744750723485376,
- "installs_last_month": 199,
+ "trending": 7.921453942216554,
+ "installs_last_month": 200,
"isMobileFriendly": false
},
{
@@ -56314,8 +56314,8 @@
"aarch64"
],
"added_at": 1643795741,
- "trending": 12.650020850091884,
- "installs_last_month": 193,
+ "trending": 15.607882523241994,
+ "installs_last_month": 187,
"isMobileFriendly": false
},
{
@@ -56349,8 +56349,8 @@
"aarch64"
],
"added_at": 1609089747,
- "trending": 7.203715661149286,
- "installs_last_month": 172,
+ "trending": 8.749819386599619,
+ "installs_last_month": 169,
"isMobileFriendly": false
},
{
@@ -56384,8 +56384,8 @@
"aarch64"
],
"added_at": 1658438671,
- "trending": 11.022406703554452,
- "installs_last_month": 74,
+ "trending": 13.388888989162888,
+ "installs_last_month": 75,
"isMobileFriendly": true
}
],
@@ -56433,8 +56433,8 @@
"aarch64"
],
"added_at": 1536914776,
- "trending": 6.88363520587696,
- "installs_last_month": 3908,
+ "trending": 8.853983073952232,
+ "installs_last_month": 3915,
"isMobileFriendly": false
},
{
@@ -56482,8 +56482,8 @@
"aarch64"
],
"added_at": 1640942143,
- "trending": 3.064706174926567,
- "installs_last_month": 296,
+ "trending": 2.5575604164411794,
+ "installs_last_month": 294,
"isMobileFriendly": false
}
],
@@ -56730,8 +56730,8 @@
"aarch64"
],
"added_at": 1507913183,
- "trending": 6.081639316289759,
- "installs_last_month": 86770,
+ "trending": 5.529375113115509,
+ "installs_last_month": 87644,
"isMobileFriendly": false
},
{
@@ -56912,8 +56912,8 @@
"aarch64"
],
"added_at": 1515426923,
- "trending": 9.69087535793366,
- "installs_last_month": 29029,
+ "trending": 9.916595722146756,
+ "installs_last_month": 28934,
"isMobileFriendly": false
},
{
@@ -57022,15 +57022,15 @@
"verification_login_is_organization": "true",
"verification_website": null,
"verification_timestamp": "1691981026",
- "runtime": "org.gnome.Platform/x86_64/47",
- "updated_at": 1728337874,
+ "runtime": "org.gnome.Platform/x86_64/48",
+ "updated_at": 1743733895,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1545160256,
- "trending": 11.636648403725683,
- "installs_last_month": 8550,
+ "trending": 12.579792476584494,
+ "installs_last_month": 8531,
"isMobileFriendly": false
},
{
@@ -57260,8 +57260,8 @@
"aarch64"
],
"added_at": 1501347955,
- "trending": 13.146965425267467,
- "installs_last_month": 4873,
+ "trending": 14.744109726416337,
+ "installs_last_month": 4766,
"isMobileFriendly": false
},
{
@@ -57410,8 +57410,8 @@
"x86_64"
],
"added_at": 1552521014,
- "trending": 8.475862462496925,
- "installs_last_month": 4184,
+ "trending": 11.957688535415926,
+ "installs_last_month": 4185,
"isMobileFriendly": false
},
{
@@ -57602,8 +57602,8 @@
"aarch64"
],
"added_at": 1535101380,
- "trending": 12.370270446514088,
- "installs_last_month": 4165,
+ "trending": 13.45255275552272,
+ "installs_last_month": 4142,
"isMobileFriendly": false
},
{
@@ -57637,8 +57637,8 @@
"x86_64"
],
"added_at": 1683789134,
- "trending": 7.400062947430418,
- "installs_last_month": 4126,
+ "trending": 8.848487578254291,
+ "installs_last_month": 4113,
"isMobileFriendly": false
},
{
@@ -57672,8 +57672,8 @@
"x86_64"
],
"added_at": 1666335052,
- "trending": 5.71704074395931,
- "installs_last_month": 3512,
+ "trending": 7.884849095489468,
+ "installs_last_month": 3515,
"isMobileFriendly": false
},
{
@@ -57726,8 +57726,8 @@
"aarch64"
],
"added_at": 1569160081,
- "trending": 6.0490426791562895,
- "installs_last_month": 2622,
+ "trending": 7.6911240877124545,
+ "installs_last_month": 2574,
"isMobileFriendly": false
},
{
@@ -57942,8 +57942,8 @@
"aarch64"
],
"added_at": 1632216005,
- "trending": 9.493128333720634,
- "installs_last_month": 2597,
+ "trending": 10.040828145671366,
+ "installs_last_month": 2561,
"isMobileFriendly": false
},
{
@@ -57978,8 +57978,8 @@
"aarch64"
],
"added_at": 1530101282,
- "trending": 7.7242614647459344,
- "installs_last_month": 1765,
+ "trending": 8.247340001919707,
+ "installs_last_month": 1785,
"isMobileFriendly": false
},
{
@@ -58025,8 +58025,8 @@
"aarch64"
],
"added_at": 1576949749,
- "trending": 8.227288962980303,
- "installs_last_month": 1620,
+ "trending": 9.06800721492854,
+ "installs_last_month": 1632,
"isMobileFriendly": false
},
{
@@ -58062,8 +58062,8 @@
"aarch64"
],
"added_at": 1584687957,
- "trending": -0.5969416818249037,
- "installs_last_month": 1471,
+ "trending": 1.521438531499256,
+ "installs_last_month": 1483,
"isMobileFriendly": false
},
{
@@ -58098,8 +58098,8 @@
"aarch64"
],
"added_at": 1494999503,
- "trending": 8.695357262721146,
- "installs_last_month": 1107,
+ "trending": 10.933543671791238,
+ "installs_last_month": 1108,
"isMobileFriendly": false
},
{
@@ -58133,8 +58133,8 @@
"x86_64"
],
"added_at": 1527195269,
- "trending": 2.419475908922979,
- "installs_last_month": 938,
+ "trending": 2.7182801252498177,
+ "installs_last_month": 946,
"isMobileFriendly": false
},
{
@@ -58178,8 +58178,8 @@
"aarch64"
],
"added_at": 1524505098,
- "trending": 7.588311472910556,
- "installs_last_month": 842,
+ "trending": 7.661603096947432,
+ "installs_last_month": 819,
"isMobileFriendly": false
},
{
@@ -58222,8 +58222,8 @@
"aarch64"
],
"added_at": 1533642989,
- "trending": 12.368600719994497,
- "installs_last_month": 782,
+ "trending": 11.7069738665598,
+ "installs_last_month": 801,
"isMobileFriendly": false
},
{
@@ -58294,8 +58294,8 @@
"aarch64"
],
"added_at": 1693099281,
- "trending": 1.0197788778997692,
- "installs_last_month": 756,
+ "trending": 0.2943435318234774,
+ "installs_last_month": 737,
"isMobileFriendly": false
},
{
@@ -58336,8 +58336,8 @@
"aarch64"
],
"added_at": 1610613500,
- "trending": 5.115418467243851,
- "installs_last_month": 321,
+ "trending": 7.362683679118491,
+ "installs_last_month": 319,
"isMobileFriendly": false
},
{
@@ -58377,8 +58377,8 @@
"aarch64"
],
"added_at": 1632924203,
- "trending": 14.458274039322294,
- "installs_last_month": 299,
+ "trending": 15.173136947814744,
+ "installs_last_month": 307,
"isMobileFriendly": false
},
{
@@ -58415,8 +58415,8 @@
"aarch64"
],
"added_at": 1715582112,
- "trending": 8.124513513038593,
- "installs_last_month": 244,
+ "trending": 6.155432060874581,
+ "installs_last_month": 241,
"isMobileFriendly": false
},
{
@@ -58456,8 +58456,8 @@
"aarch64"
],
"added_at": 1693288565,
- "trending": 4.1719157493671695,
- "installs_last_month": 228,
+ "trending": 3.6124913868256248,
+ "installs_last_month": 222,
"isMobileFriendly": false
},
{
@@ -58493,8 +58493,8 @@
"aarch64"
],
"added_at": 1633814086,
- "trending": 9.22801027351884,
- "installs_last_month": 162,
+ "trending": 11.985631146267789,
+ "installs_last_month": 163,
"isMobileFriendly": false
},
{
@@ -58625,8 +58625,8 @@
"aarch64"
],
"added_at": 1549030167,
- "trending": 8.665498000779849,
- "installs_last_month": 99,
+ "trending": 8.63581222729754,
+ "installs_last_month": 96,
"isMobileFriendly": false
},
{
@@ -58667,8 +58667,8 @@
"aarch64"
],
"added_at": 1740511578,
- "trending": 3.073970880971254,
- "installs_last_month": 86,
+ "trending": 4.456832772240226,
+ "installs_last_month": 78,
"isMobileFriendly": false
},
{
@@ -58776,7 +58776,7 @@
],
"added_at": 1690703469,
"trending": 7.4258674386377805,
- "installs_last_month": 70,
+ "installs_last_month": 69,
"isMobileFriendly": false
},
{
@@ -58826,13 +58826,13 @@
"aarch64"
],
"added_at": 1609367784,
- "trending": 10.111629771590229,
- "installs_last_month": 20,
+ "trending": 9.542180008490076,
+ "installs_last_month": 22,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 7,
+ "processingTimeMs": 8,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -59062,8 +59062,8 @@
"aarch64"
],
"added_at": 1674053091,
- "trending": 12.922211843066885,
- "installs_last_month": 7436,
+ "trending": 8.30364050096181,
+ "installs_last_month": 7435,
"isMobileFriendly": false
},
{
@@ -59097,8 +59097,8 @@
"x86_64"
],
"added_at": 1666335052,
- "trending": 5.71704074395931,
- "installs_last_month": 3512,
+ "trending": 7.884849095489468,
+ "installs_last_month": 3515,
"isMobileFriendly": false
},
{
@@ -59137,8 +59137,8 @@
"aarch64"
],
"added_at": 1535561442,
- "trending": 9.335135327487096,
- "installs_last_month": 2081,
+ "trending": 8.42334311713236,
+ "installs_last_month": 2070,
"isMobileFriendly": false
},
{
@@ -59325,8 +59325,8 @@
"aarch64"
],
"added_at": 1702975151,
- "trending": 14.104049920368947,
- "installs_last_month": 1510,
+ "trending": 12.941258517615204,
+ "installs_last_month": 1520,
"isMobileFriendly": false
},
{
@@ -59403,8 +59403,8 @@
"aarch64"
],
"added_at": 1529320559,
- "trending": 4.30993629349379,
- "installs_last_month": 1188,
+ "trending": 5.555187380437769,
+ "installs_last_month": 1160,
"isMobileFriendly": false
},
{
@@ -59608,55 +59608,10 @@
"aarch64"
],
"added_at": 1727081852,
- "trending": 5.094150296016428,
+ "trending": 4.56322362616042,
"installs_last_month": 1132,
"isMobileFriendly": false
},
- {
- "name": "Image Scan",
- "keywords": null,
- "summary": "Image acquisition utilities for Epson",
- "description": "\n This software provides applications to easily turn hard-copy\n documents and imagery into formats that are more amenable to\n computer processing.\n \n \n This software only works with Epson scanners.\n \n ",
- "id": "com_github_utsushi_Utsushi",
- "type": "desktop-application",
- "translations": {
- "es": {
- "name": "Escáner Epson",
- "summary": "Haz copias digitales de tus fotos y documentos"
- },
- "pt-BR": {
- "name": "Scanner da Epson",
- "summary": "Faça cópias digitais de suas fotos e documentos"
- }
- },
- "project_license": "GPL-3.0",
- "is_free_license": true,
- "app_id": "com.github.utsushi.Utsushi",
- "icon": "https://dl.flathub.org/media/com/github/utsushi.Utsushi/b6bf8b62add23123bd2f65d343f78fb3/icons/128x128/com.github.utsushi.Utsushi.png",
- "main_categories": "graphics",
- "sub_categories": [
- "RasterGraphics",
- "Scanning"
- ],
- "developer_name": "SEIKO EPSON CORPORATION",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1710891074,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1524505098,
- "trending": 7.588311472910556,
- "installs_last_month": 842,
- "isMobileFriendly": false
- },
{
"name": "gImageReader",
"keywords": [
@@ -59702,8 +59657,53 @@
"aarch64"
],
"added_at": 1675625326,
- "trending": 8.060153378590002,
- "installs_last_month": 835,
+ "trending": 7.820838580036169,
+ "installs_last_month": 850,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Image Scan",
+ "keywords": null,
+ "summary": "Image acquisition utilities for Epson",
+ "description": "\n This software provides applications to easily turn hard-copy\n documents and imagery into formats that are more amenable to\n computer processing.\n \n \n This software only works with Epson scanners.\n \n ",
+ "id": "com_github_utsushi_Utsushi",
+ "type": "desktop-application",
+ "translations": {
+ "es": {
+ "name": "Escáner Epson",
+ "summary": "Haz copias digitales de tus fotos y documentos"
+ },
+ "pt-BR": {
+ "name": "Scanner da Epson",
+ "summary": "Faça cópias digitais de suas fotos e documentos"
+ }
+ },
+ "project_license": "GPL-3.0",
+ "is_free_license": true,
+ "app_id": "com.github.utsushi.Utsushi",
+ "icon": "https://dl.flathub.org/media/com/github/utsushi.Utsushi/b6bf8b62add23123bd2f65d343f78fb3/icons/128x128/com.github.utsushi.Utsushi.png",
+ "main_categories": "graphics",
+ "sub_categories": [
+ "RasterGraphics",
+ "Scanning"
+ ],
+ "developer_name": "SEIKO EPSON CORPORATION",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1710891074,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1524505098,
+ "trending": 7.661603096947432,
+ "installs_last_month": 819,
"isMobileFriendly": false
},
{
@@ -59740,8 +59740,8 @@
"aarch64"
],
"added_at": 1643795709,
- "trending": 10.571430129066211,
- "installs_last_month": 737,
+ "trending": 14.076745104315428,
+ "installs_last_month": 722,
"isMobileFriendly": false
}
],
@@ -59909,8 +59909,8 @@
"aarch64"
],
"added_at": 1633090643,
- "trending": 14.456822190071131,
- "installs_last_month": 4491,
+ "trending": 12.665886608675205,
+ "installs_last_month": 4499,
"isMobileFriendly": false
},
{
@@ -59944,8 +59944,8 @@
"x86_64"
],
"added_at": 1646382533,
- "trending": 8.431699126244666,
- "installs_last_month": 1524,
+ "trending": 8.671484168705799,
+ "installs_last_month": 1485,
"isMobileFriendly": false
},
{
@@ -59991,8 +59991,8 @@
"aarch64"
],
"added_at": 1533313900,
- "trending": 7.519239023964574,
- "installs_last_month": 830,
+ "trending": 8.99361849467159,
+ "installs_last_month": 818,
"isMobileFriendly": false
},
{
@@ -60035,8 +60035,8 @@
"aarch64"
],
"added_at": 1533642989,
- "trending": 12.368600719994497,
- "installs_last_month": 782,
+ "trending": 11.7069738665598,
+ "installs_last_month": 801,
"isMobileFriendly": false
},
{
@@ -60077,8 +60077,8 @@
"aarch64"
],
"added_at": 1627289817,
- "trending": 14.064103083828964,
- "installs_last_month": 544,
+ "trending": 13.94837867956624,
+ "installs_last_month": 545,
"isMobileFriendly": false
},
{
@@ -60178,8 +60178,8 @@
"aarch64"
],
"added_at": 1621924425,
- "trending": 7.933689694225752,
- "installs_last_month": 509,
+ "trending": 8.099323645981572,
+ "installs_last_month": 496,
"isMobileFriendly": false
},
{
@@ -60215,8 +60215,8 @@
"aarch64"
],
"added_at": 1722667073,
- "trending": 8.839671344447598,
- "installs_last_month": 361,
+ "trending": 6.440087302271057,
+ "installs_last_month": 347,
"isMobileFriendly": false
},
{
@@ -60250,8 +60250,8 @@
"aarch64"
],
"added_at": 1600349360,
- "trending": 10.12595060819056,
- "installs_last_month": 302,
+ "trending": 8.622252545810252,
+ "installs_last_month": 300,
"isMobileFriendly": false
},
{
@@ -60294,8 +60294,8 @@
"x86_64"
],
"added_at": 1728977151,
- "trending": 4.149039816291582,
- "installs_last_month": 295,
+ "trending": 5.210375306484146,
+ "installs_last_month": 292,
"isMobileFriendly": false
},
{
@@ -60331,8 +60331,8 @@
"aarch64"
],
"added_at": 1633814086,
- "trending": 9.22801027351884,
- "installs_last_month": 162,
+ "trending": 11.985631146267789,
+ "installs_last_month": 163,
"isMobileFriendly": false
},
{
@@ -60368,8 +60368,8 @@
"aarch64"
],
"added_at": 1611221418,
- "trending": 0.9618364662742596,
- "installs_last_month": 99,
+ "trending": -0.606631747016622,
+ "installs_last_month": 104,
"isMobileFriendly": false
},
{
@@ -60410,7 +60410,7 @@
}
],
"query": "",
- "processingTimeMs": 4,
+ "processingTimeMs": 3,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -60628,8 +60628,8 @@
"aarch64"
],
"added_at": 1524945841,
- "trending": 11.343222532431804,
- "installs_last_month": 22630,
+ "trending": 11.137328187857388,
+ "installs_last_month": 22653,
"isMobileFriendly": false
},
{
@@ -60848,8 +60848,8 @@
"aarch64"
],
"added_at": 1604311353,
- "trending": 12.27648397179913,
- "installs_last_month": 12321,
+ "trending": 11.642276767732168,
+ "installs_last_month": 13089,
"isMobileFriendly": false
},
{
@@ -61080,8 +61080,8 @@
"aarch64"
],
"added_at": 1680758681,
- "trending": 14.392633370923567,
- "installs_last_month": 8980,
+ "trending": 12.632302437328542,
+ "installs_last_month": 9041,
"isMobileFriendly": true
},
{
@@ -61311,8 +61311,8 @@
"aarch64"
],
"added_at": 1501347955,
- "trending": 13.146965425267467,
- "installs_last_month": 4873,
+ "trending": 14.744109726416337,
+ "installs_last_month": 4766,
"isMobileFriendly": false
},
{
@@ -61416,7 +61416,7 @@
"project_license": "GPL-3.0-or-later",
"is_free_license": true,
"app_id": "info.febvre.Komikku",
- "icon": "https://dl.flathub.org/media/info/febvre/Komikku/59b0416b86efa41bddc7d4b36537da3e/icons/128x128/info.febvre.Komikku.png",
+ "icon": "https://dl.flathub.org/media/info/febvre/Komikku/1c9108853483f58a3af0a3ea74dbbf03/icons/128x128/info.febvre.Komikku.png",
"main_categories": "graphics",
"sub_categories": [
"Viewer",
@@ -61431,14 +61431,14 @@
"verification_website": "febvre.info",
"verification_timestamp": "1675957988",
"runtime": "org.gnome.Platform/x86_64/48",
- "updated_at": 1743175346,
+ "updated_at": 1743768654,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1573564346,
- "trending": 14.174901675453455,
- "installs_last_month": 4513,
+ "trending": 14.64051887189055,
+ "installs_last_month": 4403,
"isMobileFriendly": true
},
{
@@ -61587,8 +61587,8 @@
"x86_64"
],
"added_at": 1552521014,
- "trending": 8.475862462496925,
- "installs_last_month": 4184,
+ "trending": 11.957688535415926,
+ "installs_last_month": 4185,
"isMobileFriendly": false
},
{
@@ -61803,8 +61803,8 @@
"aarch64"
],
"added_at": 1632216005,
- "trending": 9.493128333720634,
- "installs_last_month": 2597,
+ "trending": 10.040828145671366,
+ "installs_last_month": 2561,
"isMobileFriendly": false
},
{
@@ -61847,8 +61847,8 @@
"aarch64"
],
"added_at": 1715583219,
- "trending": 13.87601496325738,
- "installs_last_month": 1481,
+ "trending": 17.860189586349232,
+ "installs_last_month": 1527,
"isMobileFriendly": true
},
{
@@ -61884,8 +61884,8 @@
"aarch64"
],
"added_at": 1584687957,
- "trending": -0.5969416818249037,
- "installs_last_month": 1471,
+ "trending": 1.521438531499256,
+ "installs_last_month": 1483,
"isMobileFriendly": false
},
{
@@ -61969,8 +61969,8 @@
"aarch64"
],
"added_at": 1717581622,
- "trending": 15.712543891608918,
- "installs_last_month": 1455,
+ "trending": 14.894605868921383,
+ "installs_last_month": 1470,
"isMobileFriendly": false
},
{
@@ -62004,8 +62004,8 @@
"x86_64"
],
"added_at": 1617052444,
- "trending": 6.86063902615949,
- "installs_last_month": 1266,
+ "trending": 7.155025995595325,
+ "installs_last_month": 1262,
"isMobileFriendly": false
},
{
@@ -62190,8 +62190,8 @@
"aarch64"
],
"added_at": 1621319023,
- "trending": 13.369676001618956,
- "installs_last_month": 1132,
+ "trending": 11.03391180919681,
+ "installs_last_month": 1124,
"isMobileFriendly": false
},
{
@@ -62226,8 +62226,8 @@
"aarch64"
],
"added_at": 1640767119,
- "trending": 1.1873066954637015,
- "installs_last_month": 1082,
+ "trending": 2.637866755254094,
+ "installs_last_month": 1092,
"isMobileFriendly": false
},
{
@@ -62269,8 +62269,49 @@
"aarch64"
],
"added_at": 1604472263,
- "trending": 12.958050689622535,
- "installs_last_month": 1021,
+ "trending": 12.498541616588383,
+ "installs_last_month": 1016,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "YACReader",
+ "keywords": [
+ "comic",
+ "viewer",
+ "pdf",
+ "reader"
+ ],
+ "summary": "Yet another comic reader",
+ "description": "\n Read, browse and manage your comics collection.\n All you need to enjoy your digital comics.\n \n \n Browse your comics collections using beautiful, customizable and smooth \"comic flow\"\n transitions.\n \n Features:\n \n File support: YACReader supports a wide variety of comic files and image types. rar,\n zip, cbr, cbz, tar, pdf, 7z and cb7, jpeg, gif, png, tiff and bmp.\n Configure your reading: Image rotation, double page mode, full size view, fullscreen\n mode, customizable background color, custom page fitting mode, bookmarks, resume\n reading, eye candy 'go to' and more.\n Image improvements: Bring to life your old comics with the image adjustments\n available in the reading mode. Use the brightness, contrast and gamma sliders and\n enjoy the new vibrant colors.\n Track your readings: YACReaderLibrary organizes your comics and keeps track of your\n reading progress and your collections' status.\n Tags (comic vine): Download your comics' information from Comic Vine. Title, number,\n volumen, authors and more.\n Search: Find your comics quickly using the built-in search engine. No matter how big\n is your collection, YACReaderLibrary will find anything instantly.\n \n ",
+ "id": "com_yacreader_YACReader",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-only",
+ "is_free_license": true,
+ "app_id": "com.yacreader.YACReader",
+ "icon": "https://dl.flathub.org/media/com/yacreader/YACReader/29d4c4e2d5d461ebf60d124e14a12e9a/icons/128x128/com.yacreader.YACReader.png",
+ "main_categories": "graphics",
+ "sub_categories": [
+ "Viewer",
+ "Office"
+ ],
+ "developer_name": "Luis Ángel San Martín Rodríguez",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.kde.Platform/x86_64/6.8",
+ "updated_at": 1737201299,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1665124496,
+ "trending": 10.37202767408635,
+ "installs_last_month": 939,
"isMobileFriendly": false
},
{
@@ -62342,49 +62383,8 @@
"aarch64"
],
"added_at": 1520507892,
- "trending": 11.52396948615434,
- "installs_last_month": 957,
- "isMobileFriendly": false
- },
- {
- "name": "YACReader",
- "keywords": [
- "comic",
- "viewer",
- "pdf",
- "reader"
- ],
- "summary": "Yet another comic reader",
- "description": "\n Read, browse and manage your comics collection.\n All you need to enjoy your digital comics.\n \n \n Browse your comics collections using beautiful, customizable and smooth \"comic flow\"\n transitions.\n \n Features:\n \n File support: YACReader supports a wide variety of comic files and image types. rar,\n zip, cbr, cbz, tar, pdf, 7z and cb7, jpeg, gif, png, tiff and bmp.\n Configure your reading: Image rotation, double page mode, full size view, fullscreen\n mode, customizable background color, custom page fitting mode, bookmarks, resume\n reading, eye candy 'go to' and more.\n Image improvements: Bring to life your old comics with the image adjustments\n available in the reading mode. Use the brightness, contrast and gamma sliders and\n enjoy the new vibrant colors.\n Track your readings: YACReaderLibrary organizes your comics and keeps track of your\n reading progress and your collections' status.\n Tags (comic vine): Download your comics' information from Comic Vine. Title, number,\n volumen, authors and more.\n Search: Find your comics quickly using the built-in search engine. No matter how big\n is your collection, YACReaderLibrary will find anything instantly.\n \n ",
- "id": "com_yacreader_YACReader",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-only",
- "is_free_license": true,
- "app_id": "com.yacreader.YACReader",
- "icon": "https://dl.flathub.org/media/com/yacreader/YACReader/29d4c4e2d5d461ebf60d124e14a12e9a/icons/128x128/com.yacreader.YACReader.png",
- "main_categories": "graphics",
- "sub_categories": [
- "Viewer",
- "Office"
- ],
- "developer_name": "Luis Ángel San Martín Rodríguez",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.kde.Platform/x86_64/6.8",
- "updated_at": 1737201299,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1665124496,
- "trending": 7.553982130227791,
- "installs_last_month": 917,
+ "trending": 10.901587962672808,
+ "installs_last_month": 936,
"isMobileFriendly": false
},
{
@@ -62475,7 +62475,7 @@
"aarch64"
],
"added_at": 1579371240,
- "trending": 1.5365133392968509,
+ "trending": 2.6124918204846868,
"installs_last_month": 716,
"isMobileFriendly": false
},
@@ -62510,8 +62510,8 @@
"aarch64"
],
"added_at": 1662621591,
- "trending": 10.927537361354206,
- "installs_last_month": 691,
+ "trending": 10.62100472235673,
+ "installs_last_month": 688,
"isMobileFriendly": false
},
{
@@ -62663,8 +62663,8 @@
"aarch64"
],
"added_at": 1621235741,
- "trending": 8.227289675380057,
- "installs_last_month": 574,
+ "trending": 5.983799399195448,
+ "installs_last_month": 573,
"isMobileFriendly": false
},
{
@@ -62715,8 +62715,8 @@
"x86_64"
],
"added_at": 1646382871,
- "trending": 6.068374052148361,
- "installs_last_month": 542,
+ "trending": 4.643506553338735,
+ "installs_last_month": 547,
"isMobileFriendly": false
},
{
@@ -62923,8 +62923,8 @@
"aarch64"
],
"added_at": 1634243903,
- "trending": 8.240158069188121,
- "installs_last_month": 474,
+ "trending": 8.734336886011715,
+ "installs_last_month": 471,
"isMobileFriendly": false
},
{
@@ -62986,8 +62986,8 @@
"aarch64"
],
"added_at": 1712519508,
- "trending": 10.69915634862489,
- "installs_last_month": 302,
+ "trending": 9.509128002705069,
+ "installs_last_month": 308,
"isMobileFriendly": false
},
{
@@ -63021,8 +63021,8 @@
"aarch64"
],
"added_at": 1563956778,
- "trending": 6.040090082577166,
- "installs_last_month": 268,
+ "trending": 9.556047633244324,
+ "installs_last_month": 266,
"isMobileFriendly": false
},
{
@@ -63062,8 +63062,8 @@
"aarch64"
],
"added_at": 1693288565,
- "trending": 4.1719157493671695,
- "installs_last_month": 228,
+ "trending": 3.6124913868256248,
+ "installs_last_month": 222,
"isMobileFriendly": false
},
{
@@ -63186,8 +63186,8 @@
"aarch64"
],
"added_at": 1702975328,
- "trending": 6.097923643975098,
- "installs_last_month": 223,
+ "trending": 8.904067723569565,
+ "installs_last_month": 219,
"isMobileFriendly": false
},
{
@@ -63224,8 +63224,8 @@
"aarch64"
],
"added_at": 1707919907,
- "trending": 2.7067267893236093,
- "installs_last_month": 169,
+ "trending": 2.3632716153541766,
+ "installs_last_month": 165,
"isMobileFriendly": false
},
{
@@ -63265,8 +63265,8 @@
"aarch64"
],
"added_at": 1617952868,
- "trending": 2.911267814320749,
- "installs_last_month": 166,
+ "trending": -0.5515743448232797,
+ "installs_last_month": 162,
"isMobileFriendly": false
},
{
@@ -63304,8 +63304,8 @@
"aarch64"
],
"added_at": 1669571538,
- "trending": 6.092889927775236,
- "installs_last_month": 124,
+ "trending": 6.102844196534721,
+ "installs_last_month": 123,
"isMobileFriendly": false
},
{
@@ -63466,8 +63466,8 @@
"aarch64"
],
"added_at": 1670839153,
- "trending": 6.965783690796494,
- "installs_last_month": 106,
+ "trending": 10.32662521648369,
+ "installs_last_month": 104,
"isMobileFriendly": false
},
{
@@ -63514,8 +63514,8 @@
"aarch64"
],
"added_at": 1690459341,
- "trending": 9.308901991596793,
- "installs_last_month": 96,
+ "trending": 7.696838429609895,
+ "installs_last_month": 94,
"isMobileFriendly": false
},
{
@@ -63550,7 +63550,7 @@
],
"added_at": 1645522176,
"trending": 5.362434831159005,
- "installs_last_month": 73,
+ "installs_last_month": 72,
"isMobileFriendly": false
},
{
@@ -63600,13 +63600,13 @@
"aarch64"
],
"added_at": 1609367784,
- "trending": 10.111629771590229,
- "installs_last_month": 20,
+ "trending": 9.542180008490076,
+ "installs_last_month": 22,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 9,
+ "processingTimeMs": 8,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -63662,8 +63662,8 @@
"aarch64"
],
"added_at": 1522565212,
- "trending": 10.63973334369284,
- "installs_last_month": 27807,
+ "trending": 10.145137104492306,
+ "installs_last_month": 27806,
"isMobileFriendly": false
},
{
@@ -63697,8 +63697,8 @@
"x86_64"
],
"added_at": 1510122100,
- "trending": 10.064211092911997,
- "installs_last_month": 24355,
+ "trending": 7.787915692843559,
+ "installs_last_month": 24374,
"isMobileFriendly": false
},
{
@@ -63754,8 +63754,8 @@
"aarch64"
],
"added_at": 1663217081,
- "trending": 6.778604648863296,
- "installs_last_month": 21281,
+ "trending": 6.260721892086824,
+ "installs_last_month": 21289,
"isMobileFriendly": false
},
{
@@ -63793,8 +63793,8 @@
"x86_64"
],
"added_at": 1672904297,
- "trending": 7.720704712336479,
- "installs_last_month": 21176,
+ "trending": 8.006534120820795,
+ "installs_last_month": 21274,
"isMobileFriendly": false
},
{
@@ -63829,8 +63829,8 @@
"aarch64"
],
"added_at": 1559372566,
- "trending": 8.964593163162984,
- "installs_last_month": 18004,
+ "trending": 8.931676538207599,
+ "installs_last_month": 18157,
"isMobileFriendly": false
},
{
@@ -63878,8 +63878,8 @@
"aarch64"
],
"added_at": 1661808065,
- "trending": 7.980134292912356,
- "installs_last_month": 10002,
+ "trending": 8.500308858576183,
+ "installs_last_month": 9839,
"isMobileFriendly": false
},
{
@@ -63924,8 +63924,8 @@
"aarch64"
],
"added_at": 1510519332,
- "trending": 11.463321497138674,
- "installs_last_month": 5803,
+ "trending": 11.493531104384733,
+ "installs_last_month": 5814,
"isMobileFriendly": false
},
{
@@ -63959,8 +63959,8 @@
"x86_64"
],
"added_at": 1592206236,
- "trending": 7.207498815403039,
- "installs_last_month": 3102,
+ "trending": 8.409294056639723,
+ "installs_last_month": 3097,
"isMobileFriendly": false
},
{
@@ -64064,8 +64064,8 @@
"aarch64"
],
"added_at": 1594807973,
- "trending": 13.672971490366043,
- "installs_last_month": 2873,
+ "trending": 11.656566176995437,
+ "installs_last_month": 2870,
"isMobileFriendly": false
},
{
@@ -64098,8 +64098,8 @@
"x86_64"
],
"added_at": 1705654761,
- "trending": 7.723360901862176,
- "installs_last_month": 1317,
+ "trending": 6.416029016634608,
+ "installs_last_month": 1305,
"isMobileFriendly": false
},
{
@@ -64140,8 +64140,8 @@
"aarch64"
],
"added_at": 1710843054,
- "trending": 14.09917704133819,
- "installs_last_month": 1299,
+ "trending": 14.424964974971427,
+ "installs_last_month": 1276,
"isMobileFriendly": false
},
{
@@ -64174,8 +64174,8 @@
"x86_64"
],
"added_at": 1548358512,
- "trending": 10.361196944565952,
- "installs_last_month": 1147,
+ "trending": 8.979215408634698,
+ "installs_last_month": 1157,
"isMobileFriendly": false
},
{
@@ -64218,8 +64218,8 @@
"aarch64"
],
"added_at": 1546941692,
- "trending": 4.015082072263641,
- "installs_last_month": 1141,
+ "trending": 5.813628678629519,
+ "installs_last_month": 1109,
"isMobileFriendly": false
},
{
@@ -64260,8 +64260,8 @@
"aarch64"
],
"added_at": 1606129535,
- "trending": 11.23986996465358,
- "installs_last_month": 1095,
+ "trending": 10.993122249431496,
+ "installs_last_month": 1098,
"isMobileFriendly": false
},
{
@@ -64307,8 +64307,8 @@
"aarch64"
],
"added_at": 1653029838,
- "trending": 7.127307057817744,
- "installs_last_month": 1051,
+ "trending": 7.569677355325513,
+ "installs_last_month": 1019,
"isMobileFriendly": false
},
{
@@ -64470,8 +64470,8 @@
"aarch64"
],
"added_at": 1526596299,
- "trending": 8.62545492653496,
- "installs_last_month": 1015,
+ "trending": 9.186000053744062,
+ "installs_last_month": 988,
"isMobileFriendly": false
},
{
@@ -64510,8 +64510,44 @@
"aarch64"
],
"added_at": 1555318467,
- "trending": 9.854381877374616,
- "installs_last_month": 994,
+ "trending": 9.32347402264362,
+ "installs_last_month": 985,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "BlueBubbles",
+ "keywords": null,
+ "summary": "BlueBubbles client for Linux",
+ "description": "\n Open-source and cross-platform ecosystem of apps aimed to bring iMessage to Android, Windows, Linux, and the Web!\n \n ",
+ "id": "app_bluebubbles_BlueBubbles",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "Apache-2.0",
+ "is_free_license": true,
+ "app_id": "app.bluebubbles.BlueBubbles",
+ "icon": "https://dl.flathub.org/media/app/bluebubbles/BlueBubbles/25c75e74324cb88ef8fc1aa187998006/icons/128x128/app.bluebubbles.BlueBubbles.png",
+ "main_categories": "network",
+ "sub_categories": [
+ "InstantMessaging",
+ "Chat"
+ ],
+ "developer_name": "BlueBubbles",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "bluebubbles.app",
+ "verification_timestamp": "1683481241",
+ "runtime": "org.gnome.Platform/x86_64/48",
+ "updated_at": 1743628900,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1656320516,
+ "trending": 12.008278372200785,
+ "installs_last_month": 870,
"isMobileFriendly": false
},
{
@@ -64663,46 +64699,10 @@
"aarch64"
],
"added_at": 1656789845,
- "trending": 16.304168280588147,
- "installs_last_month": 858,
+ "trending": 13.82445721203282,
+ "installs_last_month": 868,
"isMobileFriendly": true
},
- {
- "name": "BlueBubbles",
- "keywords": null,
- "summary": "BlueBubbles client for Linux",
- "description": "\n Open-source and cross-platform ecosystem of apps aimed to bring iMessage to Android, Windows, Linux, and the Web!\n \n ",
- "id": "app_bluebubbles_BlueBubbles",
- "type": "desktop-application",
- "translations": {},
- "project_license": "Apache-2.0",
- "is_free_license": true,
- "app_id": "app.bluebubbles.BlueBubbles",
- "icon": "https://dl.flathub.org/media/app/bluebubbles/BlueBubbles/25c75e74324cb88ef8fc1aa187998006/icons/128x128/app.bluebubbles.BlueBubbles.png",
- "main_categories": "network",
- "sub_categories": [
- "InstantMessaging",
- "Chat"
- ],
- "developer_name": "BlueBubbles",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "bluebubbles.app",
- "verification_timestamp": "1683481241",
- "runtime": "org.gnome.Platform/x86_64/48",
- "updated_at": 1743628900,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1656320516,
- "trending": 12.238914407338228,
- "installs_last_month": 856,
- "isMobileFriendly": false
- },
{
"name": "Dino",
"keywords": [
@@ -64855,8 +64855,8 @@
"aarch64"
],
"added_at": 1655734570,
- "trending": 14.194540689076083,
- "installs_last_month": 803,
+ "trending": 14.901445160653305,
+ "installs_last_month": 818,
"isMobileFriendly": false
},
{
@@ -64905,8 +64905,8 @@
"aarch64"
],
"added_at": 1741811470,
- "trending": 10.859533742685043,
- "installs_last_month": 772,
+ "trending": 10.27977198808973,
+ "installs_last_month": 812,
"isMobileFriendly": false
},
{
@@ -64941,7 +64941,7 @@
"aarch64"
],
"added_at": 1646993368,
- "trending": 6.957792339806819,
+ "trending": 7.87028985797443,
"installs_last_month": 728,
"isMobileFriendly": false
},
@@ -64988,8 +64988,8 @@
"x86_64"
],
"added_at": 1607504318,
- "trending": 0.824337411568085,
- "installs_last_month": 564,
+ "trending": -1.058726319896189,
+ "installs_last_month": 556,
"isMobileFriendly": false
},
{
@@ -65026,8 +65026,8 @@
"aarch64"
],
"added_at": 1735763745,
- "trending": 5.487386143907521,
- "installs_last_month": 551,
+ "trending": 5.887574467492339,
+ "installs_last_month": 554,
"isMobileFriendly": false
},
{
@@ -65063,8 +65063,8 @@
"aarch64"
],
"added_at": 1643364345,
- "trending": 9.11354183337504,
- "installs_last_month": 486,
+ "trending": 9.43909737905363,
+ "installs_last_month": 487,
"isMobileFriendly": false
},
{
@@ -65204,8 +65204,8 @@
"aarch64"
],
"added_at": 1685515610,
- "trending": 9.435977290948983,
- "installs_last_month": 423,
+ "trending": 13.162055342914496,
+ "installs_last_month": 417,
"isMobileFriendly": true
},
{
@@ -65248,7 +65248,7 @@
"aarch64"
],
"added_at": 1651741948,
- "trending": 14.235502808616245,
+ "trending": 15.429370612555026,
"installs_last_month": 336,
"isMobileFriendly": true
},
@@ -65349,8 +65349,8 @@
"aarch64"
],
"added_at": 1735822042,
- "trending": 2.134005348391368,
- "installs_last_month": 187,
+ "trending": 1.1474631320140585,
+ "installs_last_month": 169,
"isMobileFriendly": false
},
{
@@ -65387,8 +65387,8 @@
"aarch64"
],
"added_at": 1567020533,
- "trending": 6.228258789523473,
- "installs_last_month": 154,
+ "trending": 7.371138654623796,
+ "installs_last_month": 159,
"isMobileFriendly": false
},
{
@@ -65423,8 +65423,8 @@
"aarch64"
],
"added_at": 1615670471,
- "trending": 0.9798689727567712,
- "installs_last_month": 135,
+ "trending": -0.5239182738961423,
+ "installs_last_month": 139,
"isMobileFriendly": false
},
{
@@ -65481,7 +65481,7 @@
],
"added_at": 1520326486,
"trending": 11.427997755425748,
- "installs_last_month": 118,
+ "installs_last_month": 111,
"isMobileFriendly": false
},
{
@@ -65517,7 +65517,7 @@
],
"added_at": 1510246806,
"trending": 9.183200959907316,
- "installs_last_month": 104,
+ "installs_last_month": 92,
"isMobileFriendly": false
},
{
@@ -65553,44 +65553,7 @@
],
"added_at": 1679761368,
"trending": 5.108183194431726,
- "installs_last_month": 92,
- "isMobileFriendly": false
- },
- {
- "name": "Moment",
- "keywords": null,
- "summary": "Customizable and keyboard-operable Matrix client",
- "description": "A fancy, customizable, keyboard-operable Matrix chat client for encrypted and decentralized communication.\n ",
- "id": "xyz_mx_moment_moment",
- "type": "desktop-application",
- "translations": {},
- "project_license": "LGPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "xyz.mx_moment.moment",
- "icon": "https://dl.flathub.org/media/xyz/mx_moment/moment/b0e96128dcf4bf73ffb999903cde1a55/icons/128x128/xyz.mx_moment.moment.png",
- "main_categories": "network",
- "sub_categories": [
- "Chat",
- "InstantMessaging",
- "Qt"
- ],
- "developer_name": "Moment contributors",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "mx-moment.xyz",
- "verification_timestamp": "1677413025",
- "runtime": "org.kde.Platform/x86_64/5.15-23.08",
- "updated_at": 1709826684,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1643787450,
- "trending": 4.749141654567384,
- "installs_last_month": 70,
+ "installs_last_month": 91,
"isMobileFriendly": false
},
{
@@ -65633,7 +65596,44 @@
"aarch64"
],
"added_at": 1648448463,
- "trending": 0.43957882613639776,
+ "trending": 0.5883430789350063,
+ "installs_last_month": 70,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Moment",
+ "keywords": null,
+ "summary": "Customizable and keyboard-operable Matrix client",
+ "description": "A fancy, customizable, keyboard-operable Matrix chat client for encrypted and decentralized communication.\n ",
+ "id": "xyz_mx_moment_moment",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "LGPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "xyz.mx_moment.moment",
+ "icon": "https://dl.flathub.org/media/xyz/mx_moment/moment/b0e96128dcf4bf73ffb999903cde1a55/icons/128x128/xyz.mx_moment.moment.png",
+ "main_categories": "network",
+ "sub_categories": [
+ "Chat",
+ "InstantMessaging",
+ "Qt"
+ ],
+ "developer_name": "Moment contributors",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "mx-moment.xyz",
+ "verification_timestamp": "1677413025",
+ "runtime": "org.kde.Platform/x86_64/5.15-23.08",
+ "updated_at": 1709826684,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1643787450,
+ "trending": 4.749141654567384,
"installs_last_month": 68,
"isMobileFriendly": false
},
@@ -65709,8 +65709,8 @@
"aarch64"
],
"added_at": 1646071591,
- "trending": -0.92102200277045,
- "installs_last_month": 53,
+ "trending": 1.0749988951432432,
+ "installs_last_month": 52,
"isMobileFriendly": false
},
{
@@ -65744,8 +65744,8 @@
"x86_64"
],
"added_at": 1743319740,
- "trending": 3.2500000000000013,
- "installs_last_month": 35,
+ "trending": 2.5428571428571427,
+ "installs_last_month": 42,
"isMobileFriendly": false
},
{
@@ -65847,8 +65847,8 @@
"aarch64"
],
"added_at": 1522565212,
- "trending": 10.63973334369284,
- "installs_last_month": 27807,
+ "trending": 10.145137104492306,
+ "installs_last_month": 27806,
"isMobileFriendly": false
},
{
@@ -65891,8 +65891,8 @@
"aarch64"
],
"added_at": 1700056998,
- "trending": 9.37531321627358,
- "installs_last_month": 22482,
+ "trending": 9.385475786044696,
+ "installs_last_month": 22513,
"isMobileFriendly": false
},
{
@@ -65940,8 +65940,8 @@
"aarch64"
],
"added_at": 1661808065,
- "trending": 7.980134292912356,
- "installs_last_month": 10002,
+ "trending": 8.500308858576183,
+ "installs_last_month": 9839,
"isMobileFriendly": false
},
{
@@ -65974,8 +65974,8 @@
"x86_64"
],
"added_at": 1719821016,
- "trending": 0.8158665852520537,
- "installs_last_month": 6715,
+ "trending": 1.3131116004306056,
+ "installs_last_month": 6714,
"isMobileFriendly": false
},
{
@@ -66183,8 +66183,8 @@
"aarch64"
],
"added_at": 1507020869,
- "trending": 11.348035496251194,
- "installs_last_month": 3697,
+ "trending": 13.35797712912108,
+ "installs_last_month": 3606,
"isMobileFriendly": true
},
{
@@ -66221,8 +66221,8 @@
"aarch64"
],
"added_at": 1555272588,
- "trending": 10.009254842380193,
- "installs_last_month": 2482,
+ "trending": 8.404433834302576,
+ "installs_last_month": 2489,
"isMobileFriendly": false
},
{
@@ -66258,8 +66258,8 @@
"x86_64"
],
"added_at": 1634584766,
- "trending": 7.528537523478664,
- "installs_last_month": 2248,
+ "trending": 11.953958170604215,
+ "installs_last_month": 2220,
"isMobileFriendly": false
},
{
@@ -66305,8 +66305,8 @@
"aarch64"
],
"added_at": 1568838350,
- "trending": 4.89242823837857,
- "installs_last_month": 487,
+ "trending": 6.996268425340272,
+ "installs_last_month": 473,
"isMobileFriendly": false
},
{
@@ -66347,8 +66347,8 @@
"aarch64"
],
"added_at": 1539693914,
- "trending": 1.771372048856973,
- "installs_last_month": 247,
+ "trending": -0.09136002683488398,
+ "installs_last_month": 237,
"isMobileFriendly": false
}
],
@@ -66409,8 +66409,8 @@
"aarch64"
],
"added_at": 1522565212,
- "trending": 10.63973334369284,
- "installs_last_month": 27807,
+ "trending": 10.145137104492306,
+ "installs_last_month": 27806,
"isMobileFriendly": false
},
{
@@ -66453,8 +66453,8 @@
"aarch64"
],
"added_at": 1700056998,
- "trending": 9.37531321627358,
- "installs_last_month": 22482,
+ "trending": 9.385475786044696,
+ "installs_last_month": 22513,
"isMobileFriendly": false
},
{
@@ -66492,8 +66492,8 @@
"x86_64"
],
"added_at": 1672904297,
- "trending": 7.720704712336479,
- "installs_last_month": 21176,
+ "trending": 8.006534120820795,
+ "installs_last_month": 21274,
"isMobileFriendly": false
},
{
@@ -66541,8 +66541,8 @@
"aarch64"
],
"added_at": 1661808065,
- "trending": 7.980134292912356,
- "installs_last_month": 10002,
+ "trending": 8.500308858576183,
+ "installs_last_month": 9839,
"isMobileFriendly": false
},
{
@@ -66640,8 +66640,8 @@
"aarch64"
],
"added_at": 1691391496,
- "trending": 14.880233071989474,
- "installs_last_month": 4771,
+ "trending": 14.386829521375567,
+ "installs_last_month": 4796,
"isMobileFriendly": true
},
{
@@ -66670,7 +66670,7 @@
"project_license": "GPL-3.0",
"is_free_license": true,
"app_id": "io.github.martinrotter.rssguard",
- "icon": "https://dl.flathub.org/media/io/github/martinrotter.rssguard/4aee8760c19acb7990e6c414fdca48d0/icons/128x128/io.github.martinrotter.rssguard.png",
+ "icon": "https://dl.flathub.org/media/io/github/martinrotter.rssguard/7fc4f761a5d89d76343ae23b7f4ea1f1/icons/128x128/io.github.martinrotter.rssguard.png",
"main_categories": "network",
"sub_categories": [
"Feed",
@@ -66685,14 +66685,14 @@
"verification_website": null,
"verification_timestamp": "1675935135",
"runtime": "org.kde.Platform/x86_64/6.8",
- "updated_at": 1743625853,
+ "updated_at": 1743748287,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1671699609,
- "trending": 7.616259463977164,
- "installs_last_month": 1375,
+ "trending": 10.382169490204769,
+ "installs_last_month": 1339,
"isMobileFriendly": false
},
{
@@ -66855,8 +66855,8 @@
"aarch64"
],
"added_at": 1624185992,
- "trending": 13.96657609879682,
- "installs_last_month": 1295,
+ "trending": 11.78419086227125,
+ "installs_last_month": 1309,
"isMobileFriendly": true
},
{
@@ -67001,8 +67001,8 @@
"aarch64"
],
"added_at": 1567512518,
- "trending": 12.457220935387502,
- "installs_last_month": 1028,
+ "trending": 11.086202069079192,
+ "installs_last_month": 1017,
"isMobileFriendly": false
},
{
@@ -67037,8 +67037,8 @@
"aarch64"
],
"added_at": 1609312149,
- "trending": 8.994320120537676,
- "installs_last_month": 868,
+ "trending": 9.05659954031865,
+ "installs_last_month": 870,
"isMobileFriendly": false
},
{
@@ -67231,8 +67231,8 @@
"aarch64"
],
"added_at": 1644441223,
- "trending": 15.141792527954028,
- "installs_last_month": 693,
+ "trending": 13.366865408880551,
+ "installs_last_month": 670,
"isMobileFriendly": false
},
{
@@ -67272,8 +67272,8 @@
"aarch64"
],
"added_at": 1733626889,
- "trending": 12.382796965596697,
- "installs_last_month": 459,
+ "trending": 11.482489628565853,
+ "installs_last_month": 463,
"isMobileFriendly": true
},
{
@@ -67319,8 +67319,8 @@
"aarch64"
],
"added_at": 1722114940,
- "trending": 13.252428155863248,
- "installs_last_month": 334,
+ "trending": 13.801076157772696,
+ "installs_last_month": 336,
"isMobileFriendly": true
},
{
@@ -67349,7 +67349,7 @@
"project_license": "GPL-3.0",
"is_free_license": true,
"app_id": "io.github.martinrotter.rssguardlite",
- "icon": "https://dl.flathub.org/media/io/github/martinrotter.rssguardlite/a59d5a75a9478a9e21f8bafb384570a3/icons/128x128/io.github.martinrotter.rssguardlite.png",
+ "icon": "https://dl.flathub.org/media/io/github/martinrotter.rssguardlite/fed00ef3f2f2f4812fbaad0050052e82/icons/128x128/io.github.martinrotter.rssguardlite.png",
"main_categories": "network",
"sub_categories": [
"Feed",
@@ -67364,14 +67364,14 @@
"verification_website": null,
"verification_timestamp": "1675934516",
"runtime": "org.kde.Platform/x86_64/6.8",
- "updated_at": 1743625386,
+ "updated_at": 1743747322,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1671788181,
- "trending": 7.929025160030055,
- "installs_last_month": 330,
+ "trending": 9.037530906583129,
+ "installs_last_month": 308,
"isMobileFriendly": false
},
{
@@ -67413,8 +67413,46 @@
"aarch64"
],
"added_at": 1633348020,
- "trending": 10.986109334083102,
- "installs_last_month": 229,
+ "trending": 12.08097882199868,
+ "installs_last_month": 223,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "RetroShare-gui",
+ "keywords": null,
+ "summary": "Secure communication for everyone",
+ "description": "RetroShare establish encrypted connections between you and your friends to create a network of computers, and provides various distributed services on top of it: forums, channels, chat, mail...RetroShare is fully decentralized, and designed to provide maximum security and anonymity to its users beyond direct friends.Retroshare is entirely free and open-source software. There are no hidden costs, no ads and no terms of service.",
+ "id": "cc_retroshare_retroshare-gui",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "AGPL-3.0-only and LGPL-3.0-or-later and GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "cc.retroshare.retroshare-gui",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/cc.retroshare.retroshare-gui.png",
+ "main_categories": "network",
+ "sub_categories": [
+ "Chat",
+ "Feed",
+ "InstantMessaging",
+ "P2P"
+ ],
+ "developer_name": null,
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.kde.Platform/x86_64/5.15",
+ "updated_at": 1652423306,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1567020533,
+ "trending": 7.371138654623796,
+ "installs_last_month": 159,
"isMobileFriendly": false
},
{
@@ -67598,45 +67636,7 @@
],
"added_at": 1621235992,
"trending": 10.559147397692849,
- "installs_last_month": 156,
- "isMobileFriendly": false
- },
- {
- "name": "RetroShare-gui",
- "keywords": null,
- "summary": "Secure communication for everyone",
- "description": "RetroShare establish encrypted connections between you and your friends to create a network of computers, and provides various distributed services on top of it: forums, channels, chat, mail...RetroShare is fully decentralized, and designed to provide maximum security and anonymity to its users beyond direct friends.Retroshare is entirely free and open-source software. There are no hidden costs, no ads and no terms of service.",
- "id": "cc_retroshare_retroshare-gui",
- "type": "desktop-application",
- "translations": {},
- "project_license": "AGPL-3.0-only and LGPL-3.0-or-later and GPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "cc.retroshare.retroshare-gui",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/cc.retroshare.retroshare-gui.png",
- "main_categories": "network",
- "sub_categories": [
- "Chat",
- "Feed",
- "InstantMessaging",
- "P2P"
- ],
- "developer_name": null,
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.kde.Platform/x86_64/5.15",
- "updated_at": 1652423306,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1567020533,
- "trending": 6.228258789523473,
- "installs_last_month": 154,
+ "installs_last_month": 151,
"isMobileFriendly": false
},
{
@@ -67675,8 +67675,8 @@
"aarch64"
],
"added_at": 1735821815,
- "trending": 13.714367545933747,
- "installs_last_month": 117,
+ "trending": 14.076146395313344,
+ "installs_last_month": 122,
"isMobileFriendly": false
},
{
@@ -67712,7 +67712,7 @@
],
"added_at": 1659961539,
"trending": 7.145606798260681,
- "installs_last_month": 51,
+ "installs_last_month": 48,
"isMobileFriendly": false
}
],
@@ -67767,8 +67767,8 @@
"aarch64"
],
"added_at": 1521176433,
- "trending": 9.509084962403383,
- "installs_last_month": 41817,
+ "trending": 9.57265240554738,
+ "installs_last_month": 41727,
"isMobileFriendly": false
},
{
@@ -67802,8 +67802,8 @@
"aarch64"
],
"added_at": 1502991255,
- "trending": 11.302097620854385,
- "installs_last_month": 9706,
+ "trending": 8.8506160521932,
+ "installs_last_month": 9709,
"isMobileFriendly": false
},
{
@@ -68014,8 +68014,8 @@
"aarch64"
],
"added_at": 1502346171,
- "trending": 12.046947229497574,
- "installs_last_month": 7934,
+ "trending": 11.856418487508822,
+ "installs_last_month": 7992,
"isMobileFriendly": false
},
{
@@ -68053,8 +68053,8 @@
"aarch64"
],
"added_at": 1655825139,
- "trending": 3.6297509362201783,
- "installs_last_month": 2989,
+ "trending": 4.4065974992954775,
+ "installs_last_month": 3026,
"isMobileFriendly": false
},
{
@@ -68158,8 +68158,8 @@
"aarch64"
],
"added_at": 1594807973,
- "trending": 13.672971490366043,
- "installs_last_month": 2873,
+ "trending": 11.656566176995437,
+ "installs_last_month": 2870,
"isMobileFriendly": false
},
{
@@ -68340,8 +68340,8 @@
"aarch64"
],
"added_at": 1603098559,
- "trending": 11.37551740623655,
- "installs_last_month": 2738,
+ "trending": 10.708997502727165,
+ "installs_last_month": 2769,
"isMobileFriendly": false
},
{
@@ -68380,8 +68380,8 @@
"x86_64"
],
"added_at": 1655201066,
- "trending": 6.3392573971484305,
- "installs_last_month": 2659,
+ "trending": 5.9594745298829865,
+ "installs_last_month": 2570,
"isMobileFriendly": false
},
{
@@ -68419,8 +68419,8 @@
"aarch64"
],
"added_at": 1621319461,
- "trending": 3.035754200109228,
- "installs_last_month": 2383,
+ "trending": 2.6166045975161305,
+ "installs_last_month": 2399,
"isMobileFriendly": false
},
{
@@ -68453,8 +68453,8 @@
"x86_64"
],
"added_at": 1589572794,
- "trending": 6.902074605841239,
- "installs_last_month": 2250,
+ "trending": 8.145503781102787,
+ "installs_last_month": 2226,
"isMobileFriendly": false
},
{
@@ -68493,8 +68493,8 @@
"aarch64"
],
"added_at": 1613727018,
- "trending": 8.800693422485402,
- "installs_last_month": 1994,
+ "trending": 9.715906064167584,
+ "installs_last_month": 1986,
"isMobileFriendly": false
},
{
@@ -68535,45 +68535,10 @@
"aarch64"
],
"added_at": 1614083958,
- "trending": 6.915968833096427,
+ "trending": 8.308041987812022,
"installs_last_month": 1701,
"isMobileFriendly": false
},
- {
- "name": "HakuNeko",
- "keywords": null,
- "summary": "A cross-platform downloader for manga and anime from various websites",
- "description": "HakuNeko is a cross-platform downloader for manga and anime from various websites. HakuNeko was made to help users downloading media for circumstances that require offline usage. The philosophy is ad-hoc consumption, get it when you going to read/watch it. It is not meant to be a mass downloader to stock up thousands of chapters that are just collected and will probably never be read.",
- "id": "io_github_hakuneko_HakuNeko",
- "type": "desktop-application",
- "translations": {},
- "project_license": "Unlicense",
- "is_free_license": true,
- "app_id": "io.github.hakuneko.HakuNeko",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.github.hakuneko.HakuNeko.png",
- "main_categories": "network",
- "sub_categories": [
- "FileTransfer"
- ],
- "developer_name": "The HakuNeko Development Team",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1704873639,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1584083098,
- "trending": -0.8647515566694948,
- "installs_last_month": 1558,
- "isMobileFriendly": false
- },
{
"name": "uGet",
"keywords": [
@@ -68609,8 +68574,43 @@
"aarch64"
],
"added_at": 1705484927,
- "trending": 7.513960538447102,
- "installs_last_month": 1557,
+ "trending": 7.0863296988126585,
+ "installs_last_month": 1566,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "HakuNeko",
+ "keywords": null,
+ "summary": "A cross-platform downloader for manga and anime from various websites",
+ "description": "HakuNeko is a cross-platform downloader for manga and anime from various websites. HakuNeko was made to help users downloading media for circumstances that require offline usage. The philosophy is ad-hoc consumption, get it when you going to read/watch it. It is not meant to be a mass downloader to stock up thousands of chapters that are just collected and will probably never be read.",
+ "id": "io_github_hakuneko_HakuNeko",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "Unlicense",
+ "is_free_license": true,
+ "app_id": "io.github.hakuneko.HakuNeko",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.github.hakuneko.HakuNeko.png",
+ "main_categories": "network",
+ "sub_categories": [
+ "FileTransfer"
+ ],
+ "developer_name": "The HakuNeko Development Team",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1704873639,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1584083098,
+ "trending": 2.705005408864105,
+ "installs_last_month": 1532,
"isMobileFriendly": false
},
{
@@ -68624,7 +68624,7 @@
"project_license": "GPL-2.0+",
"is_free_license": true,
"app_id": "io.github.martchus.syncthingtray",
- "icon": "https://dl.flathub.org/media/io/github/martchus.syncthingtray/4c2a075b49d182abb8e3138ba75f2136/icons/128x128/io.github.martchus.syncthingtray.png",
+ "icon": "https://dl.flathub.org/media/io/github/martchus.syncthingtray/bd10dba2b03e7fb94e905acf2ea46d24/icons/128x128/io.github.martchus.syncthingtray.png",
"main_categories": "network",
"sub_categories": [
"FileTransfer"
@@ -68638,14 +68638,14 @@
"verification_website": "martchus.github.io",
"verification_timestamp": "1727540837",
"runtime": "org.kde.Platform/x86_64/6.8",
- "updated_at": 1741815337,
+ "updated_at": 1743718534,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1716271651,
- "trending": 4.768289774457065,
- "installs_last_month": 1515,
+ "trending": 6.541978011616505,
+ "installs_last_month": 1512,
"isMobileFriendly": false
},
{
@@ -68686,8 +68686,8 @@
"aarch64"
],
"added_at": 1638863697,
- "trending": 8.028795485812738,
- "installs_last_month": 1461,
+ "trending": 9.619139000608271,
+ "installs_last_month": 1447,
"isMobileFriendly": false
},
{
@@ -68721,8 +68721,8 @@
"aarch64"
],
"added_at": 1659335188,
- "trending": 0.7303874821286804,
- "installs_last_month": 1259,
+ "trending": -0.540132974620674,
+ "installs_last_month": 1267,
"isMobileFriendly": false
},
{
@@ -68756,8 +68756,8 @@
"x86_64"
],
"added_at": 1513541965,
- "trending": 11.207264559376116,
- "installs_last_month": 1184,
+ "trending": 11.447805995995646,
+ "installs_last_month": 1203,
"isMobileFriendly": false
},
{
@@ -68794,8 +68794,8 @@
"aarch64"
],
"added_at": 1693589782,
- "trending": 7.03340182928777,
- "installs_last_month": 1011,
+ "trending": 6.140296464880133,
+ "installs_last_month": 1019,
"isMobileFriendly": false
},
{
@@ -68836,8 +68836,8 @@
"aarch64"
],
"added_at": 1685340359,
- "trending": 3.3670372891842035,
- "installs_last_month": 982,
+ "trending": 3.2638260478746375,
+ "installs_last_month": 965,
"isMobileFriendly": false
},
{
@@ -69011,8 +69011,8 @@
"aarch64"
],
"added_at": 1642284577,
- "trending": 6.9630353887546015,
- "installs_last_month": 896,
+ "trending": 5.892913130459307,
+ "installs_last_month": 898,
"isMobileFriendly": false
},
{
@@ -69061,8 +69061,8 @@
"aarch64"
],
"added_at": 1741811470,
- "trending": 10.859533742685043,
- "installs_last_month": 772,
+ "trending": 10.27977198808973,
+ "installs_last_month": 812,
"isMobileFriendly": false
},
{
@@ -69095,8 +69095,8 @@
"x86_64"
],
"added_at": 1648496823,
- "trending": 2.578406414423627,
- "installs_last_month": 742,
+ "trending": 1.6097767586601064,
+ "installs_last_month": 758,
"isMobileFriendly": false
},
{
@@ -69176,7 +69176,7 @@
"aarch64"
],
"added_at": 1633081084,
- "trending": 12.187658613708775,
+ "trending": 8.94490015874701,
"installs_last_month": 740,
"isMobileFriendly": false
},
@@ -69212,8 +69212,8 @@
"aarch64"
],
"added_at": 1649660029,
- "trending": 2.9935373948401964,
- "installs_last_month": 650,
+ "trending": 1.8221989978079136,
+ "installs_last_month": 658,
"isMobileFriendly": false
},
{
@@ -69248,8 +69248,8 @@
"aarch64"
],
"added_at": 1623052890,
- "trending": 0.8872122912976039,
- "installs_last_month": 305,
+ "trending": 2.23930332267377,
+ "installs_last_month": 320,
"isMobileFriendly": false
},
{
@@ -69282,8 +69282,8 @@
"x86_64"
],
"added_at": 1591265261,
- "trending": 7.529255755272565,
- "installs_last_month": 236,
+ "trending": 5.540098276690889,
+ "installs_last_month": 235,
"isMobileFriendly": false
},
{
@@ -69326,8 +69326,8 @@
"aarch64"
],
"added_at": 1649062659,
- "trending": 12.543591172931045,
- "installs_last_month": 216,
+ "trending": 13.976968534348106,
+ "installs_last_month": 222,
"isMobileFriendly": false
},
{
@@ -69364,8 +69364,8 @@
"x86_64"
],
"added_at": 1665426170,
- "trending": 2.0903722215947416,
- "installs_last_month": 188,
+ "trending": -0.39784760738679514,
+ "installs_last_month": 187,
"isMobileFriendly": false
},
{
@@ -69465,8 +69465,8 @@
"aarch64"
],
"added_at": 1735822042,
- "trending": 2.134005348391368,
- "installs_last_month": 187,
+ "trending": 1.1474631320140585,
+ "installs_last_month": 169,
"isMobileFriendly": false
},
{
@@ -69499,8 +69499,8 @@
"x86_64"
],
"added_at": 1506255705,
- "trending": 9.529074558516722,
- "installs_last_month": 56,
+ "trending": 8.877527718860918,
+ "installs_last_month": 55,
"isMobileFriendly": false
}
],
@@ -69548,8 +69548,8 @@
"aarch64"
],
"added_at": 1658744039,
- "trending": 1.8083723427276184,
- "installs_last_month": 1179,
+ "trending": 0.4763753924484071,
+ "installs_last_month": 1187,
"isMobileFriendly": false
},
{
@@ -69583,8 +69583,8 @@
"aarch64"
],
"added_at": 1607335297,
- "trending": 3.176785842219701,
- "installs_last_month": 364,
+ "trending": 3.637571111547652,
+ "installs_last_month": 352,
"isMobileFriendly": false
},
{
@@ -69618,8 +69618,8 @@
"aarch64"
],
"added_at": 1607335388,
- "trending": 3.5641445728470504,
- "installs_last_month": 280,
+ "trending": 5.451134923438148,
+ "installs_last_month": 285,
"isMobileFriendly": false
},
{
@@ -69657,8 +69657,8 @@
"aarch64"
],
"added_at": 1708946424,
- "trending": 3.1988137053752235,
- "installs_last_month": 143,
+ "trending": 1.8040217098288465,
+ "installs_last_month": 138,
"isMobileFriendly": false
},
{
@@ -69692,8 +69692,8 @@
"aarch64"
],
"added_at": 1700216301,
- "trending": 2.8492762915419387,
- "installs_last_month": 91,
+ "trending": 4.139281702098262,
+ "installs_last_month": 90,
"isMobileFriendly": false
},
{
@@ -69727,8 +69727,8 @@
"aarch64"
],
"added_at": 1623052942,
- "trending": 4.60281097488209,
- "installs_last_month": 18,
+ "trending": 4.952602323768065,
+ "installs_last_month": 21,
"isMobileFriendly": false
}
],
@@ -69775,8 +69775,8 @@
"x86_64"
],
"added_at": 1497772963,
- "trending": 11.633518240845826,
- "installs_last_month": 119837,
+ "trending": 12.031733781297056,
+ "installs_last_month": 120065,
"isMobileFriendly": false
},
{
@@ -69819,8 +69819,8 @@
"aarch64"
],
"added_at": 1507069248,
- "trending": 15.1414624700274,
- "installs_last_month": 83567,
+ "trending": 13.99259068902878,
+ "installs_last_month": 83481,
"isMobileFriendly": false
},
{
@@ -69867,8 +69867,8 @@
"aarch64"
],
"added_at": 1522565212,
- "trending": 10.63973334369284,
- "installs_last_month": 27807,
+ "trending": 10.145137104492306,
+ "installs_last_month": 27806,
"isMobileFriendly": false
},
{
@@ -69903,8 +69903,8 @@
"x86_64"
],
"added_at": 1516794576,
- "trending": 8.190449450362031,
- "installs_last_month": 26534,
+ "trending": 8.533349412220135,
+ "installs_last_month": 26486,
"isMobileFriendly": false
},
{
@@ -69938,8 +69938,8 @@
"x86_64"
],
"added_at": 1510122100,
- "trending": 10.064211092911997,
- "installs_last_month": 24355,
+ "trending": 7.787915692843559,
+ "installs_last_month": 24374,
"isMobileFriendly": false
},
{
@@ -69995,8 +69995,8 @@
"aarch64"
],
"added_at": 1663217081,
- "trending": 6.778604648863296,
- "installs_last_month": 21281,
+ "trending": 6.260721892086824,
+ "installs_last_month": 21289,
"isMobileFriendly": false
},
{
@@ -70034,8 +70034,8 @@
"x86_64"
],
"added_at": 1672904297,
- "trending": 7.720704712336479,
- "installs_last_month": 21176,
+ "trending": 8.006534120820795,
+ "installs_last_month": 21274,
"isMobileFriendly": false
},
{
@@ -70075,8 +70075,8 @@
"aarch64"
],
"added_at": 1701681679,
- "trending": 4.358029607214179,
- "installs_last_month": 18640,
+ "trending": 4.31515853752618,
+ "installs_last_month": 18566,
"isMobileFriendly": false
},
{
@@ -70109,8 +70109,8 @@
"x86_64"
],
"added_at": 1503571282,
- "trending": 14.894872220465455,
- "installs_last_month": 12104,
+ "trending": 15.52155458932243,
+ "installs_last_month": 12252,
"isMobileFriendly": false
},
{
@@ -70158,8 +70158,8 @@
"aarch64"
],
"added_at": 1661808065,
- "trending": 7.980134292912356,
- "installs_last_month": 10002,
+ "trending": 8.500308858576183,
+ "installs_last_month": 9839,
"isMobileFriendly": false
},
{
@@ -70204,8 +70204,8 @@
"aarch64"
],
"added_at": 1510519332,
- "trending": 11.463321497138674,
- "installs_last_month": 5803,
+ "trending": 11.493531104384733,
+ "installs_last_month": 5814,
"isMobileFriendly": false
},
{
@@ -70242,8 +70242,8 @@
"aarch64"
],
"added_at": 1654507031,
- "trending": 7.479184270872085,
- "installs_last_month": 5479,
+ "trending": 6.965129023180274,
+ "installs_last_month": 5453,
"isMobileFriendly": false
},
{
@@ -70277,8 +70277,8 @@
"x86_64"
],
"added_at": 1508304361,
- "trending": 5.767479818965193,
- "installs_last_month": 4304,
+ "trending": 6.009681651356763,
+ "installs_last_month": 4323,
"isMobileFriendly": false
},
{
@@ -70316,8 +70316,8 @@
"aarch64"
],
"added_at": 1629662557,
- "trending": 2.9550872182178116,
- "installs_last_month": 3725,
+ "trending": 4.4753723728992565,
+ "installs_last_month": 3721,
"isMobileFriendly": false
},
{
@@ -70351,8 +70351,8 @@
"x86_64"
],
"added_at": 1592206236,
- "trending": 7.207498815403039,
- "installs_last_month": 3102,
+ "trending": 8.409294056639723,
+ "installs_last_month": 3097,
"isMobileFriendly": false
},
{
@@ -70456,8 +70456,8 @@
"aarch64"
],
"added_at": 1594807973,
- "trending": 13.672971490366043,
- "installs_last_month": 2873,
+ "trending": 11.656566176995437,
+ "installs_last_month": 2870,
"isMobileFriendly": false
},
{
@@ -70491,8 +70491,8 @@
"aarch64"
],
"added_at": 1654498919,
- "trending": 9.568586867309008,
- "installs_last_month": 2718,
+ "trending": 11.8878028136774,
+ "installs_last_month": 2701,
"isMobileFriendly": false
},
{
@@ -70530,8 +70530,8 @@
"aarch64"
],
"added_at": 1713420722,
- "trending": 5.657088930401741,
- "installs_last_month": 2373,
+ "trending": 6.487417714951547,
+ "installs_last_month": 2374,
"isMobileFriendly": false
},
{
@@ -70565,8 +70565,8 @@
"aarch64"
],
"added_at": 1541920814,
- "trending": 9.11774282743213,
- "installs_last_month": 1814,
+ "trending": 9.075878381835958,
+ "installs_last_month": 1803,
"isMobileFriendly": false
},
{
@@ -70610,8 +70610,8 @@
"aarch64"
],
"added_at": 1702306357,
- "trending": 11.508373549378112,
- "installs_last_month": 1743,
+ "trending": 11.215987109563407,
+ "installs_last_month": 1734,
"isMobileFriendly": false
},
{
@@ -70645,8 +70645,8 @@
"aarch64"
],
"added_at": 1635015429,
- "trending": 7.139060157730777,
- "installs_last_month": 1650,
+ "trending": 10.816475886519967,
+ "installs_last_month": 1688,
"isMobileFriendly": false
},
{
@@ -70680,8 +70680,8 @@
"aarch64"
],
"added_at": 1670840398,
- "trending": 4.347988062899224,
- "installs_last_month": 1502,
+ "trending": 7.082835860029084,
+ "installs_last_month": 1504,
"isMobileFriendly": false
},
{
@@ -70856,8 +70856,8 @@
"aarch64"
],
"added_at": 1510662667,
- "trending": 15.197341199205272,
- "installs_last_month": 1423,
+ "trending": 13.621636771106846,
+ "installs_last_month": 1415,
"isMobileFriendly": true
},
{
@@ -70899,8 +70899,8 @@
"aarch64"
],
"added_at": 1728978462,
- "trending": 2.262875629179278,
- "installs_last_month": 1361,
+ "trending": 1.9076269209601733,
+ "installs_last_month": 1362,
"isMobileFriendly": false
},
{
@@ -70941,8 +70941,8 @@
"aarch64"
],
"added_at": 1710843054,
- "trending": 14.09917704133819,
- "installs_last_month": 1299,
+ "trending": 14.424964974971427,
+ "installs_last_month": 1276,
"isMobileFriendly": false
},
{
@@ -70985,8 +70985,8 @@
"aarch64"
],
"added_at": 1546941692,
- "trending": 4.015082072263641,
- "installs_last_month": 1141,
+ "trending": 5.813628678629519,
+ "installs_last_month": 1109,
"isMobileFriendly": false
},
{
@@ -71027,8 +71027,43 @@
"aarch64"
],
"added_at": 1606129535,
- "trending": 11.23986996465358,
- "installs_last_month": 1095,
+ "trending": 10.993122249431496,
+ "installs_last_month": 1098,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Rocket.Chat",
+ "keywords": null,
+ "summary": "Open Source Team Communication",
+ "description": "Rocket.Chat is free, unlimited and open source.\n Replace email & Slack with the ultimate team chat software solution.\n ",
+ "id": "chat_rocket_RocketChat",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "MIT",
+ "is_free_license": true,
+ "app_id": "chat.rocket.RocketChat",
+ "icon": "https://dl.flathub.org/media/chat/rocket/RocketChat/08832bf64dabd2d4842ee7108ec96e30/icons/128x128/chat.rocket.RocketChat.png",
+ "main_categories": "network",
+ "sub_categories": [
+ "InstantMessaging"
+ ],
+ "developer_name": "Rocket.Chat",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1743059602,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1530909420,
+ "trending": 6.360323864090117,
+ "installs_last_month": 1044,
"isMobileFriendly": false
},
{
@@ -71074,43 +71109,8 @@
"aarch64"
],
"added_at": 1653029838,
- "trending": 7.127307057817744,
- "installs_last_month": 1051,
- "isMobileFriendly": false
- },
- {
- "name": "Rocket.Chat",
- "keywords": null,
- "summary": "Open Source Team Communication",
- "description": "Rocket.Chat is free, unlimited and open source.\n Replace email & Slack with the ultimate team chat software solution.\n ",
- "id": "chat_rocket_RocketChat",
- "type": "desktop-application",
- "translations": {},
- "project_license": "MIT",
- "is_free_license": true,
- "app_id": "chat.rocket.RocketChat",
- "icon": "https://dl.flathub.org/media/chat/rocket/RocketChat/08832bf64dabd2d4842ee7108ec96e30/icons/128x128/chat.rocket.RocketChat.png",
- "main_categories": "network",
- "sub_categories": [
- "InstantMessaging"
- ],
- "developer_name": "Rocket.Chat",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1743059602,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1530909420,
- "trending": 6.261741632023315,
- "installs_last_month": 1036,
+ "trending": 7.569677355325513,
+ "installs_last_month": 1019,
"isMobileFriendly": false
},
{
@@ -71272,8 +71272,8 @@
"aarch64"
],
"added_at": 1526596299,
- "trending": 8.62545492653496,
- "installs_last_month": 1015,
+ "trending": 9.186000053744062,
+ "installs_last_month": 988,
"isMobileFriendly": false
},
{
@@ -71308,46 +71308,8 @@
"aarch64"
],
"added_at": 1656320516,
- "trending": 12.238914407338228,
- "installs_last_month": 856,
- "isMobileFriendly": false
- },
- {
- "name": "Chatterino",
- "keywords": [
- "chat",
- "twitch"
- ],
- "summary": "Chat client for twitch.tv",
- "description": "\n Chatterino is a chat client for Twitch.tv.\n \n ",
- "id": "com_chatterino_chatterino",
- "type": "desktop-application",
- "translations": {},
- "project_license": "MIT",
- "is_free_license": true,
- "app_id": "com.chatterino.chatterino",
- "icon": "https://dl.flathub.org/media/com/chatterino/chatterino.desktop/35a47af42e5e1b03e41b44074bb87873/icons/128x128/com.chatterino.chatterino.desktop.png",
- "main_categories": "network",
- "sub_categories": [
- "InstantMessaging"
- ],
- "developer_name": "Chatterino Developers",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "chatterino.com",
- "verification_timestamp": "1678645225",
- "runtime": "org.kde.Platform/x86_64/6.8",
- "updated_at": 1742747090,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1617112696,
- "trending": 7.982562175500821,
- "installs_last_month": 850,
+ "trending": 12.008278372200785,
+ "installs_last_month": 870,
"isMobileFriendly": false
},
{
@@ -71391,8 +71353,8 @@
"aarch64"
],
"added_at": 1580410069,
- "trending": 13.922291352022825,
- "installs_last_month": 849,
+ "trending": 15.376051322863558,
+ "installs_last_month": 851,
"isMobileFriendly": false
},
{
@@ -71425,8 +71387,46 @@
"x86_64"
],
"added_at": 1556619810,
- "trending": 8.14061509527274,
- "installs_last_month": 835,
+ "trending": 10.135628082534566,
+ "installs_last_month": 848,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Chatterino",
+ "keywords": [
+ "chat",
+ "twitch"
+ ],
+ "summary": "Chat client for twitch.tv",
+ "description": "\n Chatterino is a chat client for Twitch.tv.\n \n ",
+ "id": "com_chatterino_chatterino",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "MIT",
+ "is_free_license": true,
+ "app_id": "com.chatterino.chatterino",
+ "icon": "https://dl.flathub.org/media/com/chatterino/chatterino.desktop/35a47af42e5e1b03e41b44074bb87873/icons/128x128/com.chatterino.chatterino.desktop.png",
+ "main_categories": "network",
+ "sub_categories": [
+ "InstantMessaging"
+ ],
+ "developer_name": "Chatterino Developers",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "chatterino.com",
+ "verification_timestamp": "1678645225",
+ "runtime": "org.kde.Platform/x86_64/6.8",
+ "updated_at": 1742747090,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1617112696,
+ "trending": 8.947368871672664,
+ "installs_last_month": 848,
"isMobileFriendly": false
},
{
@@ -71581,8 +71581,8 @@
"aarch64"
],
"added_at": 1655734570,
- "trending": 14.194540689076083,
- "installs_last_month": 803,
+ "trending": 14.901445160653305,
+ "installs_last_month": 818,
"isMobileFriendly": false
},
{
@@ -71631,8 +71631,8 @@
"aarch64"
],
"added_at": 1741811470,
- "trending": 10.859533742685043,
- "installs_last_month": 772,
+ "trending": 10.27977198808973,
+ "installs_last_month": 812,
"isMobileFriendly": false
},
{
@@ -71667,7 +71667,7 @@
"aarch64"
],
"added_at": 1646993368,
- "trending": 6.957792339806819,
+ "trending": 7.87028985797443,
"installs_last_month": 728,
"isMobileFriendly": false
},
@@ -71859,8 +71859,8 @@
"aarch64"
],
"added_at": 1535617771,
- "trending": 7.831663732282495,
- "installs_last_month": 655,
+ "trending": 9.028215307747606,
+ "installs_last_month": 654,
"isMobileFriendly": false
},
{
@@ -71905,8 +71905,8 @@
"aarch64"
],
"added_at": 1718713823,
- "trending": 9.023371730890746,
- "installs_last_month": 582,
+ "trending": 7.56309079446273,
+ "installs_last_month": 587,
"isMobileFriendly": false
},
{
@@ -71952,8 +71952,8 @@
"x86_64"
],
"added_at": 1607504318,
- "trending": 0.824337411568085,
- "installs_last_month": 564,
+ "trending": -1.058726319896189,
+ "installs_last_month": 556,
"isMobileFriendly": false
},
{
@@ -71990,8 +71990,8 @@
"aarch64"
],
"added_at": 1735763745,
- "trending": 5.487386143907521,
- "installs_last_month": 551,
+ "trending": 5.887574467492339,
+ "installs_last_month": 554,
"isMobileFriendly": false
},
{
@@ -72027,43 +72027,8 @@
"aarch64"
],
"added_at": 1643364345,
- "trending": 9.11354183337504,
- "installs_last_month": 486,
- "isMobileFriendly": false
- },
- {
- "name": "Zulip",
- "keywords": null,
- "summary": "Zulip Desktop Client for Linux",
- "description": "\n Zulip is a powerful, open source group chat application that combines the immediacy of real-time chat with the productivity benefits of threaded conversations. Zulip is used by open source projects, Fortune 500 companies, large standards bodies, and others who need a real-time chat system that allows users to easily process hundreds or thousands of messages a day.\n \n ",
- "id": "org_zulip_Zulip",
- "type": "desktop-application",
- "translations": {},
- "project_license": "Apache-2.0",
- "is_free_license": true,
- "app_id": "org.zulip.Zulip",
- "icon": "https://dl.flathub.org/media/org/zulip/Zulip/976c38210860467660e6edf71c870253/icons/128x128/org.zulip.Zulip.png",
- "main_categories": "network",
- "sub_categories": [
- "InstantMessaging"
- ],
- "developer_name": "Kandra Labs, Inc.",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "zulip.org",
- "verification_timestamp": "1699568166",
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1741904686,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1524984886,
- "trending": 8.151807399089858,
- "installs_last_month": 426,
+ "trending": 9.43909737905363,
+ "installs_last_month": 487,
"isMobileFriendly": false
},
{
@@ -72203,10 +72168,45 @@
"aarch64"
],
"added_at": 1685515610,
- "trending": 9.435977290948983,
- "installs_last_month": 423,
+ "trending": 13.162055342914496,
+ "installs_last_month": 417,
"isMobileFriendly": true
},
+ {
+ "name": "Zulip",
+ "keywords": null,
+ "summary": "Zulip Desktop Client for Linux",
+ "description": "\n Zulip is a powerful, open source group chat application that combines the immediacy of real-time chat with the productivity benefits of threaded conversations. Zulip is used by open source projects, Fortune 500 companies, large standards bodies, and others who need a real-time chat system that allows users to easily process hundreds or thousands of messages a day.\n \n ",
+ "id": "org_zulip_Zulip",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "Apache-2.0",
+ "is_free_license": true,
+ "app_id": "org.zulip.Zulip",
+ "icon": "https://dl.flathub.org/media/org/zulip/Zulip/976c38210860467660e6edf71c870253/icons/128x128/org.zulip.Zulip.png",
+ "main_categories": "network",
+ "sub_categories": [
+ "InstantMessaging"
+ ],
+ "developer_name": "Kandra Labs, Inc.",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "zulip.org",
+ "verification_timestamp": "1699568166",
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1741904686,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1524984886,
+ "trending": 8.206340138485752,
+ "installs_last_month": 415,
+ "isMobileFriendly": false
+ },
{
"name": "GNUnet Messenger",
"keywords": [
@@ -72247,7 +72247,7 @@
"aarch64"
],
"added_at": 1651741948,
- "trending": 14.235502808616245,
+ "trending": 15.429370612555026,
"installs_last_month": 336,
"isMobileFriendly": true
},
@@ -72281,8 +72281,8 @@
"x86_64"
],
"added_at": 1683224181,
- "trending": 1.7382062409592705,
- "installs_last_month": 274,
+ "trending": 4.1262830509720505,
+ "installs_last_month": 272,
"isMobileFriendly": false
},
{
@@ -72320,8 +72320,8 @@
"aarch64"
],
"added_at": 1655711495,
- "trending": 3.2332347271149087,
- "installs_last_month": 215,
+ "trending": 0.9808400913838572,
+ "installs_last_month": 224,
"isMobileFriendly": false
},
{
@@ -72354,8 +72354,8 @@
"x86_64"
],
"added_at": 1629723099,
- "trending": 9.033337971768235,
- "installs_last_month": 202,
+ "trending": 5.302045346072125,
+ "installs_last_month": 211,
"isMobileFriendly": false
},
{
@@ -72389,8 +72389,8 @@
"aarch64"
],
"added_at": 1702975001,
- "trending": 9.366000413405851,
- "installs_last_month": 198,
+ "trending": 13.899167514081183,
+ "installs_last_month": 195,
"isMobileFriendly": false
},
{
@@ -72490,8 +72490,8 @@
"aarch64"
],
"added_at": 1735822042,
- "trending": 2.134005348391368,
- "installs_last_month": 187,
+ "trending": 1.1474631320140585,
+ "installs_last_month": 169,
"isMobileFriendly": false
},
{
@@ -72528,8 +72528,8 @@
"aarch64"
],
"added_at": 1567020533,
- "trending": 6.228258789523473,
- "installs_last_month": 154,
+ "trending": 7.371138654623796,
+ "installs_last_month": 159,
"isMobileFriendly": false
},
{
@@ -72563,8 +72563,8 @@
"aarch64"
],
"added_at": 1739255849,
- "trending": 4.328174053312441,
- "installs_last_month": 146,
+ "trending": 3.4216627605498555,
+ "installs_last_month": 148,
"isMobileFriendly": false
},
{
@@ -72599,8 +72599,8 @@
"aarch64"
],
"added_at": 1615670471,
- "trending": 0.9798689727567712,
- "installs_last_month": 135,
+ "trending": -0.5239182738961423,
+ "installs_last_month": 139,
"isMobileFriendly": false
},
{
@@ -72657,7 +72657,7 @@
],
"added_at": 1520326486,
"trending": 11.427997755425748,
- "installs_last_month": 118,
+ "installs_last_month": 111,
"isMobileFriendly": false
},
{
@@ -72729,44 +72729,7 @@
],
"added_at": 1679761368,
"trending": 5.108183194431726,
- "installs_last_month": 92,
- "isMobileFriendly": false
- },
- {
- "name": "Moment",
- "keywords": null,
- "summary": "Customizable and keyboard-operable Matrix client",
- "description": "A fancy, customizable, keyboard-operable Matrix chat client for encrypted and decentralized communication.\n ",
- "id": "xyz_mx_moment_moment",
- "type": "desktop-application",
- "translations": {},
- "project_license": "LGPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "xyz.mx_moment.moment",
- "icon": "https://dl.flathub.org/media/xyz/mx_moment/moment/b0e96128dcf4bf73ffb999903cde1a55/icons/128x128/xyz.mx_moment.moment.png",
- "main_categories": "network",
- "sub_categories": [
- "Chat",
- "InstantMessaging",
- "Qt"
- ],
- "developer_name": "Moment contributors",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "mx-moment.xyz",
- "verification_timestamp": "1677413025",
- "runtime": "org.kde.Platform/x86_64/5.15-23.08",
- "updated_at": 1709826684,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1643787450,
- "trending": 4.749141654567384,
- "installs_last_month": 70,
+ "installs_last_month": 91,
"isMobileFriendly": false
},
{
@@ -72809,7 +72772,44 @@
"aarch64"
],
"added_at": 1648448463,
- "trending": 0.43957882613639776,
+ "trending": 0.5883430789350063,
+ "installs_last_month": 70,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Moment",
+ "keywords": null,
+ "summary": "Customizable and keyboard-operable Matrix client",
+ "description": "A fancy, customizable, keyboard-operable Matrix chat client for encrypted and decentralized communication.\n ",
+ "id": "xyz_mx_moment_moment",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "LGPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "xyz.mx_moment.moment",
+ "icon": "https://dl.flathub.org/media/xyz/mx_moment/moment/b0e96128dcf4bf73ffb999903cde1a55/icons/128x128/xyz.mx_moment.moment.png",
+ "main_categories": "network",
+ "sub_categories": [
+ "Chat",
+ "InstantMessaging",
+ "Qt"
+ ],
+ "developer_name": "Moment contributors",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "mx-moment.xyz",
+ "verification_timestamp": "1677413025",
+ "runtime": "org.kde.Platform/x86_64/5.15-23.08",
+ "updated_at": 1709826684,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1643787450,
+ "trending": 4.749141654567384,
"installs_last_month": 68,
"isMobileFriendly": false
},
@@ -72851,8 +72851,8 @@
"aarch64"
],
"added_at": 1646071591,
- "trending": -0.92102200277045,
- "installs_last_month": 53,
+ "trending": 1.0749988951432432,
+ "installs_last_month": 52,
"isMobileFriendly": false
},
{
@@ -73006,8 +73006,8 @@
"aarch64"
],
"added_at": 1651757020,
- "trending": 9.891946343032046,
- "installs_last_month": 42,
+ "trending": 10.047494130207577,
+ "installs_last_month": 50,
"isMobileFriendly": false
},
{
@@ -73041,8 +73041,8 @@
"x86_64"
],
"added_at": 1743319740,
- "trending": 3.2500000000000013,
- "installs_last_month": 35,
+ "trending": 2.5428571428571427,
+ "installs_last_month": 42,
"isMobileFriendly": false
},
{
@@ -73079,7 +73079,7 @@
],
"added_at": 1540376347,
"trending": 1.3536422557629124,
- "installs_last_month": 30,
+ "installs_last_month": 26,
"isMobileFriendly": false
},
{
@@ -73216,8 +73216,8 @@
"aarch64"
],
"added_at": 1522565212,
- "trending": 10.63973334369284,
- "installs_last_month": 27807,
+ "trending": 10.145137104492306,
+ "installs_last_month": 27806,
"isMobileFriendly": false
},
{
@@ -73265,8 +73265,8 @@
"aarch64"
],
"added_at": 1661808065,
- "trending": 7.980134292912356,
- "installs_last_month": 10002,
+ "trending": 8.500308858576183,
+ "installs_last_month": 9839,
"isMobileFriendly": false
},
{
@@ -73399,8 +73399,8 @@
"aarch64"
],
"added_at": 1491927224,
- "trending": 6.54993287680468,
- "installs_last_month": 1372,
+ "trending": 7.809518103397909,
+ "installs_last_month": 1377,
"isMobileFriendly": false
},
{
@@ -73612,8 +73612,8 @@
"aarch64"
],
"added_at": 1496249218,
- "trending": 13.644787532891383,
- "installs_last_month": 708,
+ "trending": 13.6501003586066,
+ "installs_last_month": 702,
"isMobileFriendly": true
},
{
@@ -73651,8 +73651,8 @@
"aarch64"
],
"added_at": 1688295728,
- "trending": 6.810335165223001,
- "installs_last_month": 515,
+ "trending": 5.425712585242444,
+ "installs_last_month": 509,
"isMobileFriendly": false
},
{
@@ -73831,8 +73831,8 @@
"aarch64"
],
"added_at": 1564429730,
- "trending": 11.288938433439528,
- "installs_last_month": 478,
+ "trending": 12.435433898643344,
+ "installs_last_month": 481,
"isMobileFriendly": false
},
{
@@ -73889,7 +73889,7 @@
],
"added_at": 1520326486,
"trending": 11.427997755425748,
- "installs_last_month": 118,
+ "installs_last_month": 111,
"isMobileFriendly": false
},
{
@@ -73925,7 +73925,7 @@
],
"added_at": 1510246806,
"trending": 9.183200959907316,
- "installs_last_month": 104,
+ "installs_last_month": 92,
"isMobileFriendly": false
}
],
@@ -73977,8 +73977,8 @@
"aarch64"
],
"added_at": 1548320805,
- "trending": 6.031459030773508,
- "installs_last_month": 4573,
+ "trending": 8.529610562844926,
+ "installs_last_month": 4538,
"isMobileFriendly": false
},
{
@@ -74012,8 +74012,8 @@
"aarch64"
],
"added_at": 1731213968,
- "trending": 9.88974163541443,
- "installs_last_month": 309,
+ "trending": 9.215750145795967,
+ "installs_last_month": 315,
"isMobileFriendly": false
},
{
@@ -74047,8 +74047,8 @@
"aarch64"
],
"added_at": 1743170724,
- "trending": 3.1928321905303485,
- "installs_last_month": 184,
+ "trending": 3.254846909387089,
+ "installs_last_month": 233,
"isMobileFriendly": false
},
{
@@ -74082,8 +74082,8 @@
"aarch64"
],
"added_at": 1723197946,
- "trending": 12.388371829078732,
- "installs_last_month": 130,
+ "trending": 11.297414299137662,
+ "installs_last_month": 134,
"isMobileFriendly": false
},
{
@@ -74117,8 +74117,8 @@
"aarch64"
],
"added_at": 1712516416,
- "trending": 11.73375197779425,
- "installs_last_month": 67,
+ "trending": 12.712389436932463,
+ "installs_last_month": 87,
"isMobileFriendly": false
},
{
@@ -74158,7 +74158,7 @@
}
],
"query": "",
- "processingTimeMs": 3,
+ "processingTimeMs": 2,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -74214,8 +74214,8 @@
"aarch64"
],
"added_at": 1522565212,
- "trending": 10.63973334369284,
- "installs_last_month": 27807,
+ "trending": 10.145137104492306,
+ "installs_last_month": 27806,
"isMobileFriendly": false
},
{
@@ -74263,8 +74263,8 @@
"aarch64"
],
"added_at": 1661808065,
- "trending": 7.980134292912356,
- "installs_last_month": 10002,
+ "trending": 8.500308858576183,
+ "installs_last_month": 9839,
"isMobileFriendly": false
},
{
@@ -74293,7 +74293,7 @@
"project_license": "GPL-3.0",
"is_free_license": true,
"app_id": "io.github.martinrotter.rssguard",
- "icon": "https://dl.flathub.org/media/io/github/martinrotter.rssguard/4aee8760c19acb7990e6c414fdca48d0/icons/128x128/io.github.martinrotter.rssguard.png",
+ "icon": "https://dl.flathub.org/media/io/github/martinrotter.rssguard/7fc4f761a5d89d76343ae23b7f4ea1f1/icons/128x128/io.github.martinrotter.rssguard.png",
"main_categories": "network",
"sub_categories": [
"Feed",
@@ -74308,14 +74308,14 @@
"verification_website": null,
"verification_timestamp": "1675935135",
"runtime": "org.kde.Platform/x86_64/6.8",
- "updated_at": 1743625853,
+ "updated_at": 1743748287,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1671699609,
- "trending": 7.616259463977164,
- "installs_last_month": 1375,
+ "trending": 10.382169490204769,
+ "installs_last_month": 1339,
"isMobileFriendly": false
},
{
@@ -74508,8 +74508,8 @@
"aarch64"
],
"added_at": 1644441223,
- "trending": 15.141792527954028,
- "installs_last_month": 693,
+ "trending": 13.366865408880551,
+ "installs_last_month": 670,
"isMobileFriendly": false
},
{
@@ -74552,8 +74552,8 @@
"aarch64"
],
"added_at": 1601877108,
- "trending": 8.663362648581924,
- "installs_last_month": 352,
+ "trending": 9.75558660774313,
+ "installs_last_month": 357,
"isMobileFriendly": false
},
{
@@ -74582,7 +74582,7 @@
"project_license": "GPL-3.0",
"is_free_license": true,
"app_id": "io.github.martinrotter.rssguardlite",
- "icon": "https://dl.flathub.org/media/io/github/martinrotter.rssguardlite/a59d5a75a9478a9e21f8bafb384570a3/icons/128x128/io.github.martinrotter.rssguardlite.png",
+ "icon": "https://dl.flathub.org/media/io/github/martinrotter.rssguardlite/fed00ef3f2f2f4812fbaad0050052e82/icons/128x128/io.github.martinrotter.rssguardlite.png",
"main_categories": "network",
"sub_categories": [
"Feed",
@@ -74597,14 +74597,14 @@
"verification_website": null,
"verification_timestamp": "1675934516",
"runtime": "org.kde.Platform/x86_64/6.8",
- "updated_at": 1743625386,
+ "updated_at": 1743747322,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1671788181,
- "trending": 7.929025160030055,
- "installs_last_month": 330,
+ "trending": 9.037530906583129,
+ "installs_last_month": 308,
"isMobileFriendly": false
},
{
@@ -74646,8 +74646,8 @@
"aarch64"
],
"added_at": 1633348020,
- "trending": 10.986109334083102,
- "installs_last_month": 229,
+ "trending": 12.08097882199868,
+ "installs_last_month": 223,
"isMobileFriendly": false
},
{
@@ -74714,8 +74714,8 @@
"aarch64"
],
"added_at": 1528371169,
- "trending": 9.517193158131136,
- "installs_last_month": 174,
+ "trending": 10.22799449956458,
+ "installs_last_month": 178,
"isMobileFriendly": false
},
{
@@ -74899,7 +74899,7 @@
],
"added_at": 1621235992,
"trending": 10.559147397692849,
- "installs_last_month": 156,
+ "installs_last_month": 151,
"isMobileFriendly": false
},
{
@@ -74974,7 +74974,7 @@
"aarch64"
],
"added_at": 1734348007,
- "trending": 11.885586771055078,
+ "trending": 10.787486268771405,
"installs_last_month": 67,
"isMobileFriendly": true
},
@@ -75011,12 +75011,12 @@
],
"added_at": 1659961539,
"trending": 7.145606798260681,
- "installs_last_month": 51,
+ "installs_last_month": 48,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 4,
+ "processingTimeMs": 3,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -75066,8 +75066,8 @@
"aarch64"
],
"added_at": 1521176433,
- "trending": 9.509084962403383,
- "installs_last_month": 41817,
+ "trending": 9.57265240554738,
+ "installs_last_month": 41727,
"isMobileFriendly": false
},
{
@@ -75278,8 +75278,8 @@
"aarch64"
],
"added_at": 1502346171,
- "trending": 12.046947229497574,
- "installs_last_month": 7934,
+ "trending": 11.856418487508822,
+ "installs_last_month": 7992,
"isMobileFriendly": false
},
{
@@ -75313,8 +75313,8 @@
"x86_64"
],
"added_at": 1508304361,
- "trending": 5.767479818965193,
- "installs_last_month": 4304,
+ "trending": 6.009681651356763,
+ "installs_last_month": 4323,
"isMobileFriendly": false
},
{
@@ -75352,8 +75352,8 @@
"aarch64"
],
"added_at": 1655825139,
- "trending": 3.6297509362201783,
- "installs_last_month": 2989,
+ "trending": 4.4065974992954775,
+ "installs_last_month": 3026,
"isMobileFriendly": false
},
{
@@ -75457,8 +75457,8 @@
"aarch64"
],
"added_at": 1594807973,
- "trending": 13.672971490366043,
- "installs_last_month": 2873,
+ "trending": 11.656566176995437,
+ "installs_last_month": 2870,
"isMobileFriendly": false
},
{
@@ -75639,8 +75639,8 @@
"aarch64"
],
"added_at": 1603098559,
- "trending": 11.37551740623655,
- "installs_last_month": 2738,
+ "trending": 10.708997502727165,
+ "installs_last_month": 2769,
"isMobileFriendly": false
},
{
@@ -75679,8 +75679,8 @@
"x86_64"
],
"added_at": 1655201066,
- "trending": 6.3392573971484305,
- "installs_last_month": 2659,
+ "trending": 5.9594745298829865,
+ "installs_last_month": 2570,
"isMobileFriendly": false
},
{
@@ -75719,8 +75719,8 @@
"aarch64"
],
"added_at": 1613727018,
- "trending": 8.800693422485402,
- "installs_last_month": 1994,
+ "trending": 9.715906064167584,
+ "installs_last_month": 1986,
"isMobileFriendly": false
},
{
@@ -75819,7 +75819,7 @@
"aarch64"
],
"added_at": 1577116401,
- "trending": 14.478058632675346,
+ "trending": 15.33859911834417,
"installs_last_month": 1613,
"isMobileFriendly": true
},
@@ -75861,8 +75861,8 @@
"aarch64"
],
"added_at": 1638863697,
- "trending": 8.028795485812738,
- "installs_last_month": 1461,
+ "trending": 9.619139000608271,
+ "installs_last_month": 1447,
"isMobileFriendly": false
},
{
@@ -75896,8 +75896,8 @@
"x86_64"
],
"added_at": 1513541965,
- "trending": 11.207264559376116,
- "installs_last_month": 1184,
+ "trending": 11.447805995995646,
+ "installs_last_month": 1203,
"isMobileFriendly": false
},
{
@@ -75936,8 +75936,8 @@
"aarch64"
],
"added_at": 1540997872,
- "trending": 6.881471491554768,
- "installs_last_month": 967,
+ "trending": 7.002085571440079,
+ "installs_last_month": 973,
"isMobileFriendly": false
},
{
@@ -75986,8 +75986,8 @@
"aarch64"
],
"added_at": 1741811470,
- "trending": 10.859533742685043,
- "installs_last_month": 772,
+ "trending": 10.27977198808973,
+ "installs_last_month": 812,
"isMobileFriendly": false
},
{
@@ -76067,7 +76067,7 @@
"aarch64"
],
"added_at": 1633081084,
- "trending": 12.187658613708775,
+ "trending": 8.94490015874701,
"installs_last_month": 740,
"isMobileFriendly": false
},
@@ -76103,8 +76103,8 @@
"aarch64"
],
"added_at": 1649660029,
- "trending": 2.9935373948401964,
- "installs_last_month": 650,
+ "trending": 1.8221989978079136,
+ "installs_last_month": 658,
"isMobileFriendly": false
},
{
@@ -76165,8 +76165,8 @@
"aarch64"
],
"added_at": 1742789756,
- "trending": 3.8535690032295378,
- "installs_last_month": 555,
+ "trending": 2.958018204014585,
+ "installs_last_month": 605,
"isMobileFriendly": false
},
{
@@ -76200,8 +76200,8 @@
"aarch64"
],
"added_at": 1620631972,
- "trending": 6.503739426751424,
- "installs_last_month": 541,
+ "trending": 4.1536737056297435,
+ "installs_last_month": 540,
"isMobileFriendly": false
},
{
@@ -76237,8 +76237,8 @@
"aarch64"
],
"added_at": 1643364345,
- "trending": 9.11354183337504,
- "installs_last_month": 486,
+ "trending": 9.43909737905363,
+ "installs_last_month": 487,
"isMobileFriendly": false
},
{
@@ -76273,8 +76273,8 @@
"aarch64"
],
"added_at": 1623052890,
- "trending": 0.8872122912976039,
- "installs_last_month": 305,
+ "trending": 2.23930332267377,
+ "installs_last_month": 320,
"isMobileFriendly": false
},
{
@@ -76317,8 +76317,46 @@
"aarch64"
],
"added_at": 1649062659,
- "trending": 12.543591172931045,
- "installs_last_month": 216,
+ "trending": 13.976968534348106,
+ "installs_last_month": 222,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "RetroShare-gui",
+ "keywords": null,
+ "summary": "Secure communication for everyone",
+ "description": "RetroShare establish encrypted connections between you and your friends to create a network of computers, and provides various distributed services on top of it: forums, channels, chat, mail...RetroShare is fully decentralized, and designed to provide maximum security and anonymity to its users beyond direct friends.Retroshare is entirely free and open-source software. There are no hidden costs, no ads and no terms of service.",
+ "id": "cc_retroshare_retroshare-gui",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "AGPL-3.0-only and LGPL-3.0-or-later and GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "cc.retroshare.retroshare-gui",
+ "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/cc.retroshare.retroshare-gui.png",
+ "main_categories": "network",
+ "sub_categories": [
+ "Chat",
+ "Feed",
+ "InstantMessaging",
+ "P2P"
+ ],
+ "developer_name": null,
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.kde.Platform/x86_64/5.15",
+ "updated_at": 1652423306,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1567020533,
+ "trending": 7.371138654623796,
+ "installs_last_month": 159,
"isMobileFriendly": false
},
{
@@ -76357,46 +76395,8 @@
"aarch64"
],
"added_at": 1662410452,
- "trending": 8.366482574722932,
- "installs_last_month": 162,
- "isMobileFriendly": false
- },
- {
- "name": "RetroShare-gui",
- "keywords": null,
- "summary": "Secure communication for everyone",
- "description": "RetroShare establish encrypted connections between you and your friends to create a network of computers, and provides various distributed services on top of it: forums, channels, chat, mail...RetroShare is fully decentralized, and designed to provide maximum security and anonymity to its users beyond direct friends.Retroshare is entirely free and open-source software. There are no hidden costs, no ads and no terms of service.",
- "id": "cc_retroshare_retroshare-gui",
- "type": "desktop-application",
- "translations": {},
- "project_license": "AGPL-3.0-only and LGPL-3.0-or-later and GPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "cc.retroshare.retroshare-gui",
- "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/cc.retroshare.retroshare-gui.png",
- "main_categories": "network",
- "sub_categories": [
- "Chat",
- "Feed",
- "InstantMessaging",
- "P2P"
- ],
- "developer_name": null,
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.kde.Platform/x86_64/5.15",
- "updated_at": 1652423306,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1567020533,
- "trending": 6.228258789523473,
- "installs_last_month": 154,
+ "trending": 9.70881319135989,
+ "installs_last_month": 156,
"isMobileFriendly": false
},
{
@@ -76429,8 +76429,8 @@
"aarch64"
],
"added_at": 1537882650,
- "trending": 2.2900558910049984,
- "installs_last_month": 147,
+ "trending": 0.11765107723659109,
+ "installs_last_month": 155,
"isMobileFriendly": false
},
{
@@ -76469,8 +76469,8 @@
"aarch64"
],
"added_at": 1698965712,
- "trending": 14.206657651951046,
- "installs_last_month": 110,
+ "trending": 18.14611089861299,
+ "installs_last_month": 107,
"isMobileFriendly": false
},
{
@@ -76506,8 +76506,8 @@
"aarch64"
],
"added_at": 1621496967,
- "trending": 2.1043044096889965,
- "installs_last_month": 103,
+ "trending": 0.021666185015360107,
+ "installs_last_month": 99,
"isMobileFriendly": false
},
{
@@ -76669,8 +76669,8 @@
"aarch64"
],
"added_at": 1598900260,
- "trending": 4.410991106780804,
- "installs_last_month": 3809,
+ "trending": 4.843181423001092,
+ "installs_last_month": 3769,
"isMobileFriendly": false
},
{
@@ -76714,7 +76714,7 @@
"aarch64"
],
"added_at": 1666335013,
- "trending": 8.574428161718494,
+ "trending": 7.327320171514071,
"installs_last_month": 3381,
"isMobileFriendly": false
},
@@ -76750,8 +76750,8 @@
"aarch64"
],
"added_at": 1665473180,
- "trending": 3.6601545394426873,
- "installs_last_month": 2432,
+ "trending": 4.68036995677765,
+ "installs_last_month": 2482,
"isMobileFriendly": false
},
{
@@ -76787,8 +76787,8 @@
"x86_64"
],
"added_at": 1726750143,
- "trending": 6.598119817996582,
- "installs_last_month": 2233,
+ "trending": 9.54792538505214,
+ "installs_last_month": 2253,
"isMobileFriendly": false
},
{
@@ -76822,8 +76822,8 @@
"aarch64"
],
"added_at": 1675322851,
- "trending": 3.208473936377924,
- "installs_last_month": 1860,
+ "trending": 6.779565967225352,
+ "installs_last_month": 1853,
"isMobileFriendly": false
},
{
@@ -77011,8 +77011,8 @@
"aarch64"
],
"added_at": 1645372718,
- "trending": 7.9218276343862755,
- "installs_last_month": 1687,
+ "trending": 10.26150344058645,
+ "installs_last_month": 1675,
"isMobileFriendly": false
},
{
@@ -77047,8 +77047,8 @@
"aarch64"
],
"added_at": 1529927519,
- "trending": 1.3026199489818142,
- "installs_last_month": 993,
+ "trending": 0.3568190944322924,
+ "installs_last_month": 985,
"isMobileFriendly": false
},
{
@@ -77082,8 +77082,8 @@
"aarch64"
],
"added_at": 1637954239,
- "trending": 13.698569552499537,
- "installs_last_month": 790,
+ "trending": 12.853385277438433,
+ "installs_last_month": 796,
"isMobileFriendly": false
},
{
@@ -77117,8 +77117,8 @@
"aarch64"
],
"added_at": 1681369689,
- "trending": 7.664057700733112,
- "installs_last_month": 665,
+ "trending": 7.206974372936005,
+ "installs_last_month": 684,
"isMobileFriendly": false
},
{
@@ -77179,8 +77179,8 @@
"aarch64"
],
"added_at": 1742789756,
- "trending": 3.8535690032295378,
- "installs_last_month": 555,
+ "trending": 2.958018204014585,
+ "installs_last_month": 605,
"isMobileFriendly": false
},
{
@@ -77213,8 +77213,8 @@
"x86_64"
],
"added_at": 1588580387,
- "trending": -0.8301716308740369,
- "installs_last_month": 501,
+ "trending": 0.3970117851625998,
+ "installs_last_month": 503,
"isMobileFriendly": false
},
{
@@ -77247,8 +77247,8 @@
"aarch64"
],
"added_at": 1726045123,
- "trending": 14.445307051084267,
- "installs_last_month": 424,
+ "trending": 16.266015528131398,
+ "installs_last_month": 419,
"isMobileFriendly": false
},
{
@@ -77283,8 +77283,8 @@
"x86_64"
],
"added_at": 1724319732,
- "trending": 4.952822711312492,
- "installs_last_month": 421,
+ "trending": 8.137934803595304,
+ "installs_last_month": 414,
"isMobileFriendly": false
},
{
@@ -77322,8 +77322,8 @@
"x86_64"
],
"added_at": 1592209356,
- "trending": 9.551351001786117,
- "installs_last_month": 369,
+ "trending": 8.059442685491014,
+ "installs_last_month": 354,
"isMobileFriendly": false
},
{
@@ -77357,8 +77357,8 @@
"aarch64"
],
"added_at": 1689189653,
- "trending": 8.15438580604528,
- "installs_last_month": 278,
+ "trending": 8.114987821543652,
+ "installs_last_month": 281,
"isMobileFriendly": false
},
{
@@ -77393,8 +77393,8 @@
"x86_64"
],
"added_at": 1649323569,
- "trending": 4.066457633828771,
- "installs_last_month": 250,
+ "trending": 3.868944383481695,
+ "installs_last_month": 247,
"isMobileFriendly": false
},
{
@@ -77432,8 +77432,8 @@
"aarch64"
],
"added_at": 1652253555,
- "trending": 6.528138981429784,
- "installs_last_month": 137,
+ "trending": 7.88820628793117,
+ "installs_last_month": 129,
"isMobileFriendly": false
}
],
@@ -77482,8 +77482,8 @@
"x86_64"
],
"added_at": 1516794576,
- "trending": 8.190449450362031,
- "installs_last_month": 26534,
+ "trending": 8.533349412220135,
+ "installs_last_month": 26486,
"isMobileFriendly": false
},
{
@@ -77520,8 +77520,8 @@
"aarch64"
],
"added_at": 1735763745,
- "trending": 5.487386143907521,
- "installs_last_month": 551,
+ "trending": 5.887574467492339,
+ "installs_last_month": 554,
"isMobileFriendly": false
},
{
@@ -77554,8 +77554,8 @@
"x86_64"
],
"added_at": 1585691219,
- "trending": 2.0009073325418503,
- "installs_last_month": 301,
+ "trending": 1.8401825962010416,
+ "installs_last_month": 305,
"isMobileFriendly": false
}
],
@@ -77604,8 +77604,8 @@
"x86_64"
],
"added_at": 1516794576,
- "trending": 8.190449450362031,
- "installs_last_month": 26534,
+ "trending": 8.533349412220135,
+ "installs_last_month": 26486,
"isMobileFriendly": false
},
{
@@ -77650,8 +77650,8 @@
"aarch64"
],
"added_at": 1510519332,
- "trending": 11.463321497138674,
- "installs_last_month": 5803,
+ "trending": 11.493531104384733,
+ "installs_last_month": 5814,
"isMobileFriendly": false
},
{
@@ -77692,8 +77692,8 @@
"aarch64"
],
"added_at": 1606129535,
- "trending": 11.23986996465358,
- "installs_last_month": 1095,
+ "trending": 10.993122249431496,
+ "installs_last_month": 1098,
"isMobileFriendly": false
},
{
@@ -77739,8 +77739,8 @@
"x86_64"
],
"added_at": 1607504318,
- "trending": 0.824337411568085,
- "installs_last_month": 564,
+ "trending": -1.058726319896189,
+ "installs_last_month": 556,
"isMobileFriendly": false
},
{
@@ -77777,8 +77777,8 @@
"aarch64"
],
"added_at": 1735763745,
- "trending": 5.487386143907521,
- "installs_last_month": 551,
+ "trending": 5.887574467492339,
+ "installs_last_month": 554,
"isMobileFriendly": false
},
{
@@ -77821,8 +77821,8 @@
"aarch64"
],
"added_at": 1648448463,
- "trending": 0.43957882613639776,
- "installs_last_month": 68,
+ "trending": 0.5883430789350063,
+ "installs_last_month": 70,
"isMobileFriendly": false
},
{
@@ -77863,8 +77863,8 @@
"aarch64"
],
"added_at": 1646071591,
- "trending": -0.92102200277045,
- "installs_last_month": 53,
+ "trending": 1.0749988951432432,
+ "installs_last_month": 52,
"isMobileFriendly": false
},
{
@@ -77962,8 +77962,8 @@
"aarch64"
],
"added_at": 1689081703,
- "trending": 10.56211493645326,
- "installs_last_month": 166622,
+ "trending": 10.489237006758149,
+ "installs_last_month": 165462,
"isMobileFriendly": false
},
{
@@ -77977,7 +77977,7 @@
"project_license": "LicenseRef-proprietary",
"is_free_license": false,
"app_id": "com.google.Chrome",
- "icon": "https://dl.flathub.org/media/com/google/Chrome/e68a064608760c43a867768aa6e65119/icons/128x128/com.google.Chrome.png",
+ "icon": "https://dl.flathub.org/media/com/google/Chrome/4d620fb1a0c72f4f1f513adf9f8a3e15/icons/128x128/com.google.Chrome.png",
"main_categories": "network",
"sub_categories": [
"WebBrowser"
@@ -77991,13 +77991,13 @@
"verification_website": null,
"verification_timestamp": null,
"runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1742964418,
+ "updated_at": 1743729353,
"arches": [
"x86_64"
],
"added_at": 1596138378,
- "trending": 8.18425908758924,
- "installs_last_month": 156640,
+ "trending": 8.317793533724984,
+ "installs_last_month": 156636,
"isMobileFriendly": false
},
{
@@ -78031,8 +78031,8 @@
"aarch64"
],
"added_at": 1602485316,
- "trending": 10.254307172911236,
- "installs_last_month": 133937,
+ "trending": 9.419638482452244,
+ "installs_last_month": 133112,
"isMobileFriendly": false
},
{
@@ -78072,8 +78072,8 @@
"aarch64"
],
"added_at": 1736875532,
- "trending": 8.915284321391514,
- "installs_last_month": 59980,
+ "trending": 9.736564692349274,
+ "installs_last_month": 57466,
"isMobileFriendly": false
},
{
@@ -78111,8 +78111,8 @@
"aarch64"
],
"added_at": 1621435841,
- "trending": 6.610937409149541,
- "installs_last_month": 51863,
+ "trending": 6.778790852545413,
+ "installs_last_month": 49893,
"isMobileFriendly": false
},
{
@@ -78145,8 +78145,8 @@
"x86_64"
],
"added_at": 1608538115,
- "trending": 6.678858514130379,
- "installs_last_month": 38570,
+ "trending": 7.584919803546958,
+ "installs_last_month": 38660,
"isMobileFriendly": false
},
{
@@ -78164,7 +78164,7 @@
"project_license": "BSD-3-Clause and LGPL-2.1+ and Apache-2.0 and IJG and MIT and GPL-2.0+ and ISC and OpenSSL and (MPL-1.1 or GPL-2.0 or LGPL-2.0)",
"is_free_license": true,
"app_id": "org.chromium.Chromium",
- "icon": "https://dl.flathub.org/media/org/chromium/Chromium/4d618291fff2b89d520d42dfb9da4783/icons/128x128/org.chromium.Chromium.png",
+ "icon": "https://dl.flathub.org/media/org/chromium/Chromium/6091ad23a9829ad29275add7407cbcb4/icons/128x128/org.chromium.Chromium.png",
"main_categories": "network",
"sub_categories": [
"WebBrowser"
@@ -78178,14 +78178,14 @@
"verification_website": null,
"verification_timestamp": null,
"runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1742978442,
+ "updated_at": 1743743904,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1602842796,
- "trending": 7.247257245734313,
- "installs_last_month": 27731,
+ "trending": 6.618116894150813,
+ "installs_last_month": 27670,
"isMobileFriendly": false
},
{
@@ -78218,8 +78218,8 @@
"x86_64"
],
"added_at": 1705483230,
- "trending": 0.12547705463366143,
- "installs_last_month": 23736,
+ "trending": 0.11764695810271109,
+ "installs_last_month": 23711,
"isMobileFriendly": false
},
{
@@ -78262,8 +78262,8 @@
"aarch64"
],
"added_at": 1700056998,
- "trending": 9.37531321627358,
- "installs_last_month": 22482,
+ "trending": 9.385475786044696,
+ "installs_last_month": 22513,
"isMobileFriendly": false
},
{
@@ -78301,8 +78301,8 @@
"x86_64"
],
"added_at": 1672904297,
- "trending": 7.720704712336479,
- "installs_last_month": 21176,
+ "trending": 8.006534120820795,
+ "installs_last_month": 21274,
"isMobileFriendly": false
},
{
@@ -78346,8 +78346,8 @@
"aarch64"
],
"added_at": 1713599371,
- "trending": 10.63280350346048,
- "installs_last_month": 20305,
+ "trending": 9.506595832463454,
+ "installs_last_month": 20116,
"isMobileFriendly": false
},
{
@@ -78386,8 +78386,8 @@
"aarch64"
],
"added_at": 1652423514,
- "trending": 9.948652526751564,
- "installs_last_month": 19539,
+ "trending": 9.52400731306284,
+ "installs_last_month": 18702,
"isMobileFriendly": false
},
{
@@ -78425,8 +78425,8 @@
"x86_64"
],
"added_at": 1679762198,
- "trending": 7.426665040056221,
- "installs_last_month": 9945,
+ "trending": 8.168343858640247,
+ "installs_last_month": 9648,
"isMobileFriendly": false
},
{
@@ -78466,8 +78466,48 @@
"x86_64"
],
"added_at": 1681368803,
- "trending": 4.536633456988032,
- "installs_last_month": 8863,
+ "trending": 5.33944801448229,
+ "installs_last_month": 8584,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Yandex Browser",
+ "keywords": null,
+ "summary": "Web browser from Yandex",
+ "description": "New Yandex Browser with AI search and Alisa voice assistant is a modern fast web browser with familiar user interface.\n ",
+ "id": "ru_yandex_Browser",
+ "type": "desktop-application",
+ "translations": {
+ "ru": {
+ "description": "Новый Яндекс.Браузер с нейросилами и встроенной Алисой предлагает современный дизайн и высокое\n быстродействие при работе с веб-сайтами.\n ",
+ "name": "Яндекс.Браузер",
+ "summary": "Веб-браузер от компании Яндекс"
+ }
+ },
+ "project_license": "LicenseRef-proprietary=https://yandex.ru/legal/browser_agreement",
+ "is_free_license": false,
+ "app_id": "ru.yandex.Browser",
+ "icon": "https://dl.flathub.org/media/ru/yandex/Browser/f9252728cdfd4a055ea86c191100c833/icons/128x128/ru.yandex.Browser.png",
+ "main_categories": "network",
+ "sub_categories": [
+ "WebBrowser"
+ ],
+ "developer_name": "Yandex",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1739310658,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1681370718,
+ "trending": 9.129546001028237,
+ "installs_last_month": 6562,
"isMobileFriendly": false
},
{
@@ -78724,50 +78764,10 @@
"aarch64"
],
"added_at": 1510309691,
- "trending": 13.743412124026657,
- "installs_last_month": 6630,
+ "trending": 13.05870487609673,
+ "installs_last_month": 6553,
"isMobileFriendly": true
},
- {
- "name": "Yandex Browser",
- "keywords": null,
- "summary": "Web browser from Yandex",
- "description": "New Yandex Browser with AI search and Alisa voice assistant is a modern fast web browser with familiar user interface.\n ",
- "id": "ru_yandex_Browser",
- "type": "desktop-application",
- "translations": {
- "ru": {
- "description": "Новый Яндекс.Браузер с нейросилами и встроенной Алисой предлагает современный дизайн и высокое\n быстродействие при работе с веб-сайтами.\n ",
- "name": "Яндекс.Браузер",
- "summary": "Веб-браузер от компании Яндекс"
- }
- },
- "project_license": "LicenseRef-proprietary=https://yandex.ru/legal/browser_agreement",
- "is_free_license": false,
- "app_id": "ru.yandex.Browser",
- "icon": "https://dl.flathub.org/media/ru/yandex/Browser/f9252728cdfd4a055ea86c191100c833/icons/128x128/ru.yandex.Browser.png",
- "main_categories": "network",
- "sub_categories": [
- "WebBrowser"
- ],
- "developer_name": "Yandex",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1739310658,
- "arches": [
- "x86_64"
- ],
- "added_at": 1681370718,
- "trending": 11.23163024904172,
- "installs_last_month": 6564,
- "isMobileFriendly": false
- },
{
"name": "Google Chrome (unstable)",
"keywords": [
@@ -78800,8 +78800,8 @@
"x86_64"
],
"added_at": 1647615634,
- "trending": 7.323013335868985,
- "installs_last_month": 4977,
+ "trending": 7.338956525531797,
+ "installs_last_month": 4946,
"isMobileFriendly": false
},
{
@@ -78995,8 +78995,8 @@
"aarch64"
],
"added_at": 1642712970,
- "trending": 10.841345761515514,
- "installs_last_month": 4112,
+ "trending": 10.99446397222125,
+ "installs_last_month": 4056,
"isMobileFriendly": false
},
{
@@ -79034,8 +79034,8 @@
"x86_64"
],
"added_at": 1719821042,
- "trending": 4.640566776227698,
- "installs_last_month": 3039,
+ "trending": 4.349557077390587,
+ "installs_last_month": 2998,
"isMobileFriendly": false
},
{
@@ -79049,7 +79049,7 @@
"project_license": "LicenseRef-proprietary",
"is_free_license": false,
"app_id": "com.microsoft.EdgeDev",
- "icon": "https://dl.flathub.org/media/com/microsoft/EdgeDev/a2fdb479c195dd6030f9f81ac76807c9/icons/128x128/com.microsoft.EdgeDev.png",
+ "icon": "https://dl.flathub.org/media/com/microsoft/EdgeDev/96407b40fd263ec195bb787beaed71f4/icons/128x128/com.microsoft.EdgeDev.png",
"main_categories": "network",
"sub_categories": [
"WebBrowser"
@@ -79063,13 +79063,13 @@
"verification_website": null,
"verification_timestamp": null,
"runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1743031469,
+ "updated_at": 1743716895,
"arches": [
"x86_64"
],
"added_at": 1681370714,
- "trending": 5.2853467059951305,
- "installs_last_month": 2297,
+ "trending": 5.35682518792477,
+ "installs_last_month": 2290,
"isMobileFriendly": false
},
{
@@ -79197,8 +79197,8 @@
"aarch64"
],
"added_at": 1568146117,
- "trending": 15.79538941382486,
- "installs_last_month": 1020,
+ "trending": 14.733257221604031,
+ "installs_last_month": 1012,
"isMobileFriendly": true
},
{
@@ -79232,8 +79232,8 @@
"aarch64"
],
"added_at": 1724319311,
- "trending": 12.35738582811594,
- "installs_last_month": 998,
+ "trending": 13.26987370464271,
+ "installs_last_month": 1009,
"isMobileFriendly": false
},
{
@@ -79266,48 +79266,8 @@
"x86_64"
],
"added_at": 1737610298,
- "trending": 5.363275700237141,
- "installs_last_month": 845,
- "isMobileFriendly": false
- },
- {
- "name": "Hüma Browser",
- "keywords": [
- "Internet",
- "WWW",
- "Browser",
- "Web",
- "Explorer"
- ],
- "summary": "Hüma is an open source, freedom and privacy orientated experimental web browser.",
- "description": "Hüma Browser is a web browser developed by prioritising user freedom, transparency and originality.\n \n Web App Sidebar\n Work Spaces\n Hüma Explorer\n Customizable UI\n Vertical Tabs\n And more...\n \n ",
- "id": "com_humatarayici_od",
- "type": "desktop-application",
- "translations": {},
- "project_license": "MPL-2.0",
- "is_free_license": true,
- "app_id": "com.humatarayici.od",
- "icon": "https://dl.flathub.org/media/com/humatarayici/od/2927ea94cd0863177015a9934dfa3abd/icons/128x128/com.humatarayici.od.png",
- "main_categories": "network",
- "sub_categories": [
- "WebBrowser"
- ],
- "developer_name": "Egehan KAHRAMAN",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/23.08",
- "updated_at": 1726045045,
- "arches": [
- "x86_64"
- ],
- "added_at": 1726045045,
- "trending": 0.6538540380749605,
- "installs_last_month": 646,
+ "trending": 4.394349498044564,
+ "installs_last_month": 833,
"isMobileFriendly": false
},
{
@@ -79453,10 +79413,50 @@
"aarch64"
],
"added_at": 1496063708,
- "trending": 7.376808914931349,
+ "trending": 8.140497328019826,
"installs_last_month": 634,
"isMobileFriendly": false
},
+ {
+ "name": "Hüma Browser",
+ "keywords": [
+ "Internet",
+ "WWW",
+ "Browser",
+ "Web",
+ "Explorer"
+ ],
+ "summary": "Hüma is an open source, freedom and privacy orientated experimental web browser.",
+ "description": "Hüma Browser is a web browser developed by prioritising user freedom, transparency and originality.\n \n Web App Sidebar\n Work Spaces\n Hüma Explorer\n Customizable UI\n Vertical Tabs\n And more...\n \n ",
+ "id": "com_humatarayici_od",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "MPL-2.0",
+ "is_free_license": true,
+ "app_id": "com.humatarayici.od",
+ "icon": "https://dl.flathub.org/media/com/humatarayici/od/2927ea94cd0863177015a9934dfa3abd/icons/128x128/com.humatarayici.od.png",
+ "main_categories": "network",
+ "sub_categories": [
+ "WebBrowser"
+ ],
+ "developer_name": "Egehan KAHRAMAN",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/23.08",
+ "updated_at": 1726045045,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1726045045,
+ "trending": -0.29957001059290267,
+ "installs_last_month": 626,
+ "isMobileFriendly": false
+ },
{
"name": "qutebrowser",
"keywords": [
@@ -79490,8 +79490,8 @@
"aarch64"
],
"added_at": 1561112595,
- "trending": 8.772284775736962,
- "installs_last_month": 508,
+ "trending": 7.792384963892861,
+ "installs_last_month": 471,
"isMobileFriendly": false
},
{
@@ -79677,8 +79677,8 @@
"aarch64"
],
"added_at": 1623402066,
- "trending": 12.0667713253302,
- "installs_last_month": 389,
+ "trending": 15.806776261071647,
+ "installs_last_month": 395,
"isMobileFriendly": false
},
{
@@ -79717,8 +79717,8 @@
"aarch64"
],
"added_at": 1650740090,
- "trending": 3.057186071858422,
- "installs_last_month": 313,
+ "trending": 1.3420279484505528,
+ "installs_last_month": 308,
"isMobileFriendly": false
},
{
@@ -79764,8 +79764,8 @@
"x86_64"
],
"added_at": 1741611475,
- "trending": 0.6271309563906499,
- "installs_last_month": 291,
+ "trending": 0.7137359011415301,
+ "installs_last_month": 307,
"isMobileFriendly": false
},
{
@@ -79798,8 +79798,8 @@
"x86_64"
],
"added_at": 1644006729,
- "trending": 7.496633931449276,
- "installs_last_month": 259,
+ "trending": 8.158002530375741,
+ "installs_last_month": 252,
"isMobileFriendly": false
},
{
@@ -79841,8 +79841,8 @@
"aarch64"
],
"added_at": 1731596428,
- "trending": 11.192092279428888,
- "installs_last_month": 257,
+ "trending": 11.622399693458147,
+ "installs_last_month": 250,
"isMobileFriendly": false
},
{
@@ -79876,8 +79876,8 @@
"aarch64"
],
"added_at": 1652339943,
- "trending": 5.634305124621983,
- "installs_last_month": 243,
+ "trending": 6.607182575028032,
+ "installs_last_month": 241,
"isMobileFriendly": false
},
{
@@ -79922,8 +79922,8 @@
"aarch64"
],
"added_at": 1651135125,
- "trending": 5.646340811785612,
- "installs_last_month": 72,
+ "trending": 5.1792876488728075,
+ "installs_last_month": 78,
"isMobileFriendly": false
}
],
@@ -79981,8 +79981,8 @@
"aarch64"
],
"added_at": 1713599371,
- "trending": 10.63280350346048,
- "installs_last_month": 20305,
+ "trending": 9.506595832463454,
+ "installs_last_month": 20116,
"isMobileFriendly": false
},
{
@@ -80041,8 +80041,8 @@
"aarch64"
],
"added_at": 1606129807,
- "trending": 9.833475022052452,
- "installs_last_month": 96,
+ "trending": 9.851943574385576,
+ "installs_last_month": 99,
"isMobileFriendly": false
}
],
@@ -80290,8 +80290,8 @@
"aarch64"
],
"added_at": 1501344818,
- "trending": 12.676601915470249,
- "installs_last_month": 10227,
+ "trending": 12.475836349910876,
+ "installs_last_month": 10389,
"isMobileFriendly": true
},
{
@@ -80543,8 +80543,8 @@
"aarch64"
],
"added_at": 1538568898,
- "trending": 13.877186358911471,
- "installs_last_month": 5608,
+ "trending": 13.135021500684786,
+ "installs_last_month": 5504,
"isMobileFriendly": false
},
{
@@ -80591,8 +80591,8 @@
"aarch64"
],
"added_at": 1575622210,
- "trending": 11.05519780497962,
- "installs_last_month": 1000,
+ "trending": 9.918361540994638,
+ "installs_last_month": 994,
"isMobileFriendly": false
},
{
@@ -80631,8 +80631,8 @@
"aarch64"
],
"added_at": 1545401252,
- "trending": 12.15907451106881,
- "installs_last_month": 817,
+ "trending": 11.45817617279492,
+ "installs_last_month": 831,
"isMobileFriendly": false
},
{
@@ -80666,8 +80666,8 @@
"aarch64"
],
"added_at": 1719937942,
- "trending": 16.151368687067894,
- "installs_last_month": 395,
+ "trending": 14.622192798233051,
+ "installs_last_month": 402,
"isMobileFriendly": false
},
{
@@ -80720,8 +80720,8 @@
"aarch64"
],
"added_at": 1662409159,
- "trending": 10.0328370177083,
- "installs_last_month": 310,
+ "trending": 7.920668240637399,
+ "installs_last_month": 321,
"isMobileFriendly": false
},
{
@@ -80843,8 +80843,8 @@
"aarch64"
],
"added_at": 1529733918,
- "trending": 1.499497790341051,
- "installs_last_month": 188,
+ "trending": -0.210697826647801,
+ "installs_last_month": 187,
"isMobileFriendly": false
},
{
@@ -80889,8 +80889,8 @@
"aarch64"
],
"added_at": 1537267165,
- "trending": 6.4196121113632625,
- "installs_last_month": 47,
+ "trending": 8.12167707512064,
+ "installs_last_month": 49,
"isMobileFriendly": false
},
{
@@ -80977,7 +80977,7 @@
"x86_64"
],
"added_at": 1689751793,
- "trending": 7.907710462660534,
+ "trending": 6.672907120273912,
"installs_last_month": 236,
"isMobileFriendly": false
},
@@ -81332,8 +81332,8 @@
"aarch64"
],
"added_at": 1538568898,
- "trending": 13.877186358911471,
- "installs_last_month": 5608,
+ "trending": 13.135021500684786,
+ "installs_last_month": 5504,
"isMobileFriendly": false
},
{
@@ -81569,8 +81569,8 @@
"aarch64"
],
"added_at": 1523975311,
- "trending": 13.216758988874986,
- "installs_last_month": 4801,
+ "trending": 12.679652120216186,
+ "installs_last_month": 4848,
"isMobileFriendly": true
},
{
@@ -81617,8 +81617,8 @@
"aarch64"
],
"added_at": 1575622210,
- "trending": 11.05519780497962,
- "installs_last_month": 1000,
+ "trending": 9.918361540994638,
+ "installs_last_month": 994,
"isMobileFriendly": false
},
{
@@ -81671,8 +81671,8 @@
"aarch64"
],
"added_at": 1662409159,
- "trending": 10.0328370177083,
- "installs_last_month": 310,
+ "trending": 7.920668240637399,
+ "installs_last_month": 321,
"isMobileFriendly": false
}
],
@@ -81722,7 +81722,7 @@
"x86_64"
],
"added_at": 1648191987,
- "trending": 2.7882024002699444,
+ "trending": 1.166138304642506,
"installs_last_month": 530,
"isMobileFriendly": false
},
@@ -81896,8 +81896,8 @@
"aarch64"
],
"added_at": 1640766471,
- "trending": 10.121909863039493,
- "installs_last_month": 507,
+ "trending": 10.884811593921995,
+ "installs_last_month": 521,
"isMobileFriendly": false
},
{
@@ -82044,8 +82044,8 @@
"aarch64"
],
"added_at": 1653288367,
- "trending": 6.95610256655244,
- "installs_last_month": 171,
+ "trending": 8.077265511782521,
+ "installs_last_month": 170,
"isMobileFriendly": false
}
],
@@ -82094,8 +82094,8 @@
"aarch64"
],
"added_at": 1615625043,
- "trending": 11.038722178022784,
- "installs_last_month": 497,
+ "trending": 12.28485640006882,
+ "installs_last_month": 496,
"isMobileFriendly": false
},
{
@@ -82129,8 +82129,8 @@
"aarch64"
],
"added_at": 1591265164,
- "trending": 19.744486801511552,
- "installs_last_month": 351,
+ "trending": 13.24855486509665,
+ "installs_last_month": 366,
"isMobileFriendly": false
},
{
@@ -82168,7 +82168,7 @@
],
"added_at": 1676540627,
"trending": 1.707094920053888,
- "installs_last_month": 106,
+ "installs_last_month": 105,
"isMobileFriendly": false
},
{
@@ -82202,8 +82202,8 @@
"aarch64"
],
"added_at": 1636926451,
- "trending": 3.323139973536619,
- "installs_last_month": 78,
+ "trending": 2.319123782641012,
+ "installs_last_month": 73,
"isMobileFriendly": false
}
],
@@ -82469,8 +82469,8 @@
"aarch64"
],
"added_at": 1538568898,
- "trending": 13.877186358911471,
- "installs_last_month": 5608,
+ "trending": 13.135021500684786,
+ "installs_last_month": 5504,
"isMobileFriendly": false
},
{
@@ -82503,8 +82503,8 @@
"x86_64"
],
"added_at": 1566630679,
- "trending": 10.769090944322038,
- "installs_last_month": 2043,
+ "trending": 10.378189395398596,
+ "installs_last_month": 2056,
"isMobileFriendly": false
},
{
@@ -82551,8 +82551,8 @@
"aarch64"
],
"added_at": 1575622210,
- "trending": 11.05519780497962,
- "installs_last_month": 1000,
+ "trending": 9.918361540994638,
+ "installs_last_month": 994,
"isMobileFriendly": false
},
{
@@ -82585,8 +82585,8 @@
"x86_64"
],
"added_at": 1600446464,
- "trending": -0.052226365037948086,
- "installs_last_month": 524,
+ "trending": 1.0869559364431192,
+ "installs_last_month": 530,
"isMobileFriendly": false
},
{
@@ -82629,12 +82629,12 @@
],
"added_at": 1690198344,
"trending": 1.8160641516149656,
- "installs_last_month": 45,
+ "installs_last_month": 41,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 3,
+ "processingTimeMs": 2,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -82749,8 +82749,8 @@
"aarch64"
],
"added_at": 1667147308,
- "trending": 13.462496990336549,
- "installs_last_month": 2514,
+ "trending": 14.019070123990234,
+ "installs_last_month": 2533,
"isMobileFriendly": false
},
{
@@ -82788,8 +82788,8 @@
"aarch64"
],
"added_at": 1614075157,
- "trending": 10.245022313114838,
- "installs_last_month": 1299,
+ "trending": 10.374054150521197,
+ "installs_last_month": 1298,
"isMobileFriendly": false
},
{
@@ -82829,8 +82829,8 @@
"aarch64"
],
"added_at": 1508225235,
- "trending": 15.763917206449475,
- "installs_last_month": 1175,
+ "trending": 11.2199508023499,
+ "installs_last_month": 1205,
"isMobileFriendly": false
},
{
@@ -82984,8 +82984,8 @@
"aarch64"
],
"added_at": 1690197819,
- "trending": 3.800805633385574,
- "installs_last_month": 985,
+ "trending": 3.530010431914993,
+ "installs_last_month": 983,
"isMobileFriendly": false
},
{
@@ -83021,8 +83021,8 @@
"aarch64"
],
"added_at": 1567107220,
- "trending": 0.5615639453690945,
- "installs_last_month": 688,
+ "trending": 1.293547330910567,
+ "installs_last_month": 681,
"isMobileFriendly": false
},
{
@@ -83175,8 +83175,8 @@
"aarch64"
],
"added_at": 1542107666,
- "trending": 3.576554694698766,
- "installs_last_month": 509,
+ "trending": 5.627823406626664,
+ "installs_last_month": 505,
"isMobileFriendly": false
},
{
@@ -83210,8 +83210,42 @@
"aarch64"
],
"added_at": 1729590526,
- "trending": 1.6833972681121283,
- "installs_last_month": 432,
+ "trending": 2.6921742746122277,
+ "installs_last_month": 434,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Blockstream Green",
+ "keywords": null,
+ "summary": "A simple and secure Bitcoin and Liquid Network wallet",
+ "description": "\n Built by one of the most respected teams in the Bitcoin industry, Blockstream Green is supported across multiple platforms and is designed for Bitcoin beginners and power users alike.\n \n ",
+ "id": "com_blockstream_Green",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-only",
+ "is_free_license": true,
+ "app_id": "com.blockstream.Green",
+ "icon": "https://dl.flathub.org/media/com/blockstream/Green/65feb8196589d5a42620b3cc88b29cfb/icons/128x128/com.blockstream.Green.png",
+ "main_categories": "office",
+ "sub_categories": [
+ "Finance"
+ ],
+ "developer_name": "Blockstream",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "blockstream.com",
+ "verification_timestamp": "1688394843",
+ "runtime": "org.kde.Platform/x86_64/6.7",
+ "updated_at": 1743513880,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1686032755,
+ "trending": 2.042672126507546,
+ "installs_last_month": 395,
"isMobileFriendly": false
},
{
@@ -83245,42 +83279,8 @@
"aarch64"
],
"added_at": 1628622425,
- "trending": 7.176734606798888,
- "installs_last_month": 396,
- "isMobileFriendly": false
- },
- {
- "name": "Blockstream Green",
- "keywords": null,
- "summary": "A simple and secure Bitcoin and Liquid Network wallet",
- "description": "\n Built by one of the most respected teams in the Bitcoin industry, Blockstream Green is supported across multiple platforms and is designed for Bitcoin beginners and power users alike.\n \n ",
- "id": "com_blockstream_Green",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-only",
- "is_free_license": true,
- "app_id": "com.blockstream.Green",
- "icon": "https://dl.flathub.org/media/com/blockstream/Green/65feb8196589d5a42620b3cc88b29cfb/icons/128x128/com.blockstream.Green.png",
- "main_categories": "office",
- "sub_categories": [
- "Finance"
- ],
- "developer_name": "Blockstream",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "blockstream.com",
- "verification_timestamp": "1688394843",
- "runtime": "org.kde.Platform/x86_64/6.7",
- "updated_at": 1743513880,
- "arches": [
- "x86_64"
- ],
- "added_at": 1686032755,
- "trending": 3.132555024630852,
- "installs_last_month": 376,
+ "trending": 9.089977416872776,
+ "installs_last_month": 373,
"isMobileFriendly": false
},
{
@@ -83314,8 +83314,8 @@
"aarch64"
],
"added_at": 1695972618,
- "trending": 10.13379071484598,
- "installs_last_month": 320,
+ "trending": 7.306568456510267,
+ "installs_last_month": 330,
"isMobileFriendly": false
},
{
@@ -83358,8 +83358,52 @@
"x86_64"
],
"added_at": 1718954571,
- "trending": 3.126776768712544,
- "installs_last_month": 261,
+ "trending": 2.9277722016167305,
+ "installs_last_month": 256,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Grisbi",
+ "keywords": [
+ "finance"
+ ],
+ "summary": "Personal finances manager",
+ "description": "\n Grisbi is a very functional personal financial management program\n with a lot of features: checking, cash and liabilities accounts,\n several accounts with automatic contra entries, several currencies,\n including euro, arbitrary currency for every operation, money\n interchange fees, switch to euro account per account, description\n of the transactions with third parties, categories, sub-categories,\n financial year, notes, breakdown, transfers between accounts, even\n for accounts of different currencies, bank reconciliation, scheduled\n transactions, automatic recall of last transaction for every third\n party, nice and easy user interface, user manual, QIF import/export.\n \n ",
+ "id": "org_grisbi_Grisbi",
+ "type": "desktop-application",
+ "translations": {
+ "de": {
+ "description": "Grisbi ist ein Programm für die Verwaltung von persönlichen Finanzen mit einer großen Fülle an Funktionalität: Bargeldkonten, Girokonten, Sparkonten, Kreditkonten, automatische Gegenbuchung bei Umbuchen, Mehrwährungsfähigkeit, Kategorien, Gruppen, zahlreiche Detailinformationen für Buchungen, Umbuchungen, Geplante Buchungen, Splittbuchungen, Abstimmungen, Berichte, Importe und Exporte im QIF oder CSV Format, benutzerfreundliche Oberfläche, Benutzerhandbuch.\n "
+ },
+ "fr": {
+ "description": "Grisbi est un logiciel libre de comptabilité personnelle très fonctionnel comprenant de nombreuses fonctionnalités : compte bancaires, de caisse et de passif, comptes multiples avec contre-opérations automatiques, devises multiples incluant l'euro, devise arbitraire pour chaque opération, frais de conversion, passage à l'euro par compte, description des transactions externes,catégories, sous-catégories, année fiscale, notes, résumés, transfers entre comptes même pour des comptes avec des devises différentes, réconciliation bancaire, transactions programmées, rappel de la dernière transaction pour chaque tiers, interface simple et agréable, manuel utilisateur, import/export QIF.\n "
+ }
+ },
+ "project_license": "GPL-2.0-or-later",
+ "is_free_license": true,
+ "app_id": "org.grisbi.Grisbi",
+ "icon": "https://dl.flathub.org/media/org/grisbi/Grisbi/2fa537dd700b9e5b48f5707fa7098af8/icons/128x128/org.grisbi.Grisbi.png",
+ "main_categories": "office",
+ "sub_categories": [
+ "Finance"
+ ],
+ "developer_name": "Grisbi Team",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.gnome.Platform/x86_64/46",
+ "updated_at": 1727080271,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1692817122,
+ "trending": 7.497278627618531,
+ "installs_last_month": 208,
"isMobileFriendly": false
},
{
@@ -83405,52 +83449,8 @@
"aarch64"
],
"added_at": 1603699442,
- "trending": 7.015804247361081,
- "installs_last_month": 213,
- "isMobileFriendly": false
- },
- {
- "name": "Grisbi",
- "keywords": [
- "finance"
- ],
- "summary": "Personal finances manager",
- "description": "\n Grisbi is a very functional personal financial management program\n with a lot of features: checking, cash and liabilities accounts,\n several accounts with automatic contra entries, several currencies,\n including euro, arbitrary currency for every operation, money\n interchange fees, switch to euro account per account, description\n of the transactions with third parties, categories, sub-categories,\n financial year, notes, breakdown, transfers between accounts, even\n for accounts of different currencies, bank reconciliation, scheduled\n transactions, automatic recall of last transaction for every third\n party, nice and easy user interface, user manual, QIF import/export.\n \n ",
- "id": "org_grisbi_Grisbi",
- "type": "desktop-application",
- "translations": {
- "de": {
- "description": "Grisbi ist ein Programm für die Verwaltung von persönlichen Finanzen mit einer großen Fülle an Funktionalität: Bargeldkonten, Girokonten, Sparkonten, Kreditkonten, automatische Gegenbuchung bei Umbuchen, Mehrwährungsfähigkeit, Kategorien, Gruppen, zahlreiche Detailinformationen für Buchungen, Umbuchungen, Geplante Buchungen, Splittbuchungen, Abstimmungen, Berichte, Importe und Exporte im QIF oder CSV Format, benutzerfreundliche Oberfläche, Benutzerhandbuch.\n "
- },
- "fr": {
- "description": "Grisbi est un logiciel libre de comptabilité personnelle très fonctionnel comprenant de nombreuses fonctionnalités : compte bancaires, de caisse et de passif, comptes multiples avec contre-opérations automatiques, devises multiples incluant l'euro, devise arbitraire pour chaque opération, frais de conversion, passage à l'euro par compte, description des transactions externes,catégories, sous-catégories, année fiscale, notes, résumés, transfers entre comptes même pour des comptes avec des devises différentes, réconciliation bancaire, transactions programmées, rappel de la dernière transaction pour chaque tiers, interface simple et agréable, manuel utilisateur, import/export QIF.\n "
- }
- },
- "project_license": "GPL-2.0-or-later",
- "is_free_license": true,
- "app_id": "org.grisbi.Grisbi",
- "icon": "https://dl.flathub.org/media/org/grisbi/Grisbi/2fa537dd700b9e5b48f5707fa7098af8/icons/128x128/org.grisbi.Grisbi.png",
- "main_categories": "office",
- "sub_categories": [
- "Finance"
- ],
- "developer_name": "Grisbi Team",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.gnome.Platform/x86_64/46",
- "updated_at": 1727080271,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1692817122,
- "trending": 5.73026700616565,
- "installs_last_month": 201,
+ "trending": 5.55708278863076,
+ "installs_last_month": 204,
"isMobileFriendly": false
},
{
@@ -83494,8 +83494,8 @@
"x86_64"
],
"added_at": 1617692573,
- "trending": 0.36268279424331384,
- "installs_last_month": 190,
+ "trending": 1.0891507539266194,
+ "installs_last_month": 200,
"isMobileFriendly": false
},
{
@@ -83534,8 +83534,8 @@
"aarch64"
],
"added_at": 1552896231,
- "trending": 1.2633629361562082,
- "installs_last_month": 186,
+ "trending": 0.4329414763391991,
+ "installs_last_month": 188,
"isMobileFriendly": false
},
{
@@ -83576,8 +83576,8 @@
"aarch64"
],
"added_at": 1642019159,
- "trending": 8.168549997463218,
- "installs_last_month": 172,
+ "trending": 7.368694650235589,
+ "installs_last_month": 170,
"isMobileFriendly": false
},
{
@@ -83611,8 +83611,8 @@
"aarch64"
],
"added_at": 1656709788,
- "trending": 8.505508825062478,
- "installs_last_month": 149,
+ "trending": 6.773758567752379,
+ "installs_last_month": 148,
"isMobileFriendly": false
},
{
@@ -83681,8 +83681,8 @@
"x86_64"
],
"added_at": 1694162398,
- "trending": 6.019000869917082,
- "installs_last_month": 146,
+ "trending": 5.967600405292309,
+ "installs_last_month": 143,
"isMobileFriendly": false
},
{
@@ -83723,8 +83723,8 @@
"aarch64"
],
"added_at": 1730904595,
- "trending": 2.829311441044936,
- "installs_last_month": 120,
+ "trending": 2.075760198621672,
+ "installs_last_month": 122,
"isMobileFriendly": false
},
{
@@ -83760,8 +83760,8 @@
"aarch64"
],
"added_at": 1729673025,
- "trending": 14.954903451218264,
- "installs_last_month": 94,
+ "trending": 13.997313044472763,
+ "installs_last_month": 103,
"isMobileFriendly": true
},
{
@@ -83797,43 +83797,8 @@
"aarch64"
],
"added_at": 1732074361,
- "trending": 3.0571404953429253,
- "installs_last_month": 87,
- "isMobileFriendly": false
- },
- {
- "name": "Blackcoin More",
- "keywords": null,
- "summary": "True Decentralised Digital Currency",
- "description": "\n Blackcoin is the original decentralised and eco-friendly currency with near-instant transaction speeds and negligible transaction fees built upon Proof of Stake 3.0 since 2014! Blackcoin More wallet enables anyone to send and receive Blackcoin and mine new coins by staking. Blackcoin More is built on a secure and solid base and has the full support of the Blackcoin community and its developers.\n \n ",
- "id": "org_blackcoin_blackcoin-more",
- "type": "desktop-application",
- "translations": {},
- "project_license": "MIT",
- "is_free_license": true,
- "app_id": "org.blackcoin.blackcoin-more",
- "icon": "https://dl.flathub.org/media/org/blackcoin/blackcoin-more/61d3f919f6f2162a031d51f54d71047e/icons/128x128/org.blackcoin.blackcoin-more.png",
- "main_categories": "office",
- "sub_categories": [
- "Finance"
- ],
- "developer_name": "Blackcoin Team",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "blackcoin.org",
- "verification_timestamp": "1691743964",
- "runtime": "org.freedesktop.Platform/x86_64/22.08",
- "updated_at": 1718867114,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1672610319,
- "trending": 8.244603004242528,
- "installs_last_month": 56,
+ "trending": 2.4165522937698105,
+ "installs_last_month": 89,
"isMobileFriendly": false
},
{
@@ -83870,6 +83835,41 @@
"installs_last_month": 56,
"isMobileFriendly": false
},
+ {
+ "name": "Blackcoin More",
+ "keywords": null,
+ "summary": "True Decentralised Digital Currency",
+ "description": "\n Blackcoin is the original decentralised and eco-friendly currency with near-instant transaction speeds and negligible transaction fees built upon Proof of Stake 3.0 since 2014! Blackcoin More wallet enables anyone to send and receive Blackcoin and mine new coins by staking. Blackcoin More is built on a secure and solid base and has the full support of the Blackcoin community and its developers.\n \n ",
+ "id": "org_blackcoin_blackcoin-more",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "MIT",
+ "is_free_license": true,
+ "app_id": "org.blackcoin.blackcoin-more",
+ "icon": "https://dl.flathub.org/media/org/blackcoin/blackcoin-more/61d3f919f6f2162a031d51f54d71047e/icons/128x128/org.blackcoin.blackcoin-more.png",
+ "main_categories": "office",
+ "sub_categories": [
+ "Finance"
+ ],
+ "developer_name": "Blackcoin Team",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "blackcoin.org",
+ "verification_timestamp": "1691743964",
+ "runtime": "org.freedesktop.Platform/x86_64/22.08",
+ "updated_at": 1718867114,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1672610319,
+ "trending": 10.741870304628186,
+ "installs_last_month": 53,
+ "isMobileFriendly": false
+ },
{
"name": "Seal One",
"keywords": null,
@@ -83901,8 +83901,8 @@
"aarch64"
],
"added_at": 1693548067,
- "trending": 0.5191853573802528,
- "installs_last_month": 50,
+ "trending": 2.552594247158079,
+ "installs_last_month": 51,
"isMobileFriendly": false
},
{
@@ -83943,44 +83943,10 @@
"aarch64"
],
"added_at": 1698742266,
- "trending": 7.171869230165394,
+ "trending": 6.63797858404898,
"installs_last_month": 42,
"isMobileFriendly": false
},
- {
- "name": "Ywallet",
- "keywords": null,
- "summary": "Light Wallet for Ycash and Zcash",
- "description": "Fastest synchronization of all the wallets on the market\n Supports every feature of shielded y/zcash\n Track your wallet performance and expenditures\n Watch-only and Cold Wallet\n ",
- "id": "app_ywallet_Ywallet",
- "type": "desktop-application",
- "translations": {},
- "project_license": "MIT",
- "is_free_license": true,
- "app_id": "app.ywallet.Ywallet",
- "icon": "https://dl.flathub.org/media/app/ywallet/Ywallet/bd31f04f1f9214f89faa1c1034389941/icons/128x128/app.ywallet.Ywallet.png",
- "main_categories": "office",
- "sub_categories": [
- "Finance"
- ],
- "developer_name": "Hanh Huynh Huu",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/22.08",
- "updated_at": 1709474369,
- "arches": [
- "x86_64"
- ],
- "added_at": 1665962962,
- "trending": 9.718184850451324,
- "installs_last_month": 40,
- "isMobileFriendly": false
- },
{
"name": "OfficeFactoring",
"keywords": null,
@@ -84020,6 +83986,40 @@
"installs_last_month": 36,
"isMobileFriendly": false
},
+ {
+ "name": "Ywallet",
+ "keywords": null,
+ "summary": "Light Wallet for Ycash and Zcash",
+ "description": "Fastest synchronization of all the wallets on the market\n Supports every feature of shielded y/zcash\n Track your wallet performance and expenditures\n Watch-only and Cold Wallet\n ",
+ "id": "app_ywallet_Ywallet",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "MIT",
+ "is_free_license": true,
+ "app_id": "app.ywallet.Ywallet",
+ "icon": "https://dl.flathub.org/media/app/ywallet/Ywallet/bd31f04f1f9214f89faa1c1034389941/icons/128x128/app.ywallet.Ywallet.png",
+ "main_categories": "office",
+ "sub_categories": [
+ "Finance"
+ ],
+ "developer_name": "Hanh Huynh Huu",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/22.08",
+ "updated_at": 1709474369,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1665962962,
+ "trending": 9.718184850451324,
+ "installs_last_month": 36,
+ "isMobileFriendly": false
+ },
{
"name": "Groestlcoin Core",
"keywords": null,
@@ -84053,8 +84053,8 @@
"aarch64"
],
"added_at": 1589287558,
- "trending": 1.9643618570785035,
- "installs_last_month": 30,
+ "trending": 0.30237202984950184,
+ "installs_last_month": 34,
"isMobileFriendly": false
},
{
@@ -84122,7 +84122,7 @@
],
"added_at": 1679761462,
"trending": 2.001593590944556,
- "installs_last_month": 27,
+ "installs_last_month": 23,
"isMobileFriendly": false
},
{
@@ -84155,8 +84155,8 @@
"x86_64"
],
"added_at": 1742842042,
- "trending": 8.776281209488332,
- "installs_last_month": 19,
+ "trending": 9.625188684588196,
+ "installs_last_month": 21,
"isMobileFriendly": false
},
{
@@ -84197,7 +84197,7 @@
"aarch64"
],
"added_at": 1714895548,
- "trending": 6.877963596336063,
+ "trending": 0.6198765253952343,
"installs_last_month": 10,
"isMobileFriendly": false
}
@@ -84257,8 +84257,8 @@
"x86_64"
],
"added_at": 1573549240,
- "trending": 7.155285828494719,
- "installs_last_month": 38007,
+ "trending": 8.226683613226733,
+ "installs_last_month": 38040,
"isMobileFriendly": false
},
{
@@ -84300,8 +84300,8 @@
"aarch64"
],
"added_at": 1714895621,
- "trending": 7.390644183573702,
- "installs_last_month": 587,
+ "trending": 6.824199108027768,
+ "installs_last_month": 572,
"isMobileFriendly": false
},
{
@@ -84337,8 +84337,8 @@
"aarch64"
],
"added_at": 1722667131,
- "trending": 4.805196832646559,
- "installs_last_month": 503,
+ "trending": 4.35810235514673,
+ "installs_last_month": 507,
"isMobileFriendly": false
},
{
@@ -84372,8 +84372,8 @@
"aarch64"
],
"added_at": 1506590504,
- "trending": -0.3834178418459808,
- "installs_last_month": 155,
+ "trending": 0.42814231878320785,
+ "installs_last_month": 156,
"isMobileFriendly": false
},
{
@@ -84407,8 +84407,8 @@
"aarch64"
],
"added_at": 1668366986,
- "trending": 1.231188812038246,
- "installs_last_month": 108,
+ "trending": 1.283051204367726,
+ "installs_last_month": 115,
"isMobileFriendly": false
}
],
@@ -84455,8 +84455,8 @@
"x86_64"
],
"added_at": 1733627609,
- "trending": 13.03536634268166,
- "installs_last_month": 1730,
+ "trending": 10.768498923010318,
+ "installs_last_month": 1764,
"isMobileFriendly": false
},
{
@@ -84546,8 +84546,8 @@
"aarch64"
],
"added_at": 1594042726,
- "trending": 6.416834604307949,
- "installs_last_month": 662,
+ "trending": 7.342823871514996,
+ "installs_last_month": 669,
"isMobileFriendly": false
},
{
@@ -84594,10 +84594,48 @@
"aarch64"
],
"added_at": 1676882400,
- "trending": 14.375131570943465,
- "installs_last_month": 609,
+ "trending": 14.186164832161168,
+ "installs_last_month": 590,
"isMobileFriendly": true
},
+ {
+ "name": "Lonewolf",
+ "keywords": [
+ "kanban",
+ "productivity"
+ ],
+ "summary": "Organize your tasks",
+ "description": "\n Lonewolf is a productivity application based on the principles of Kanban.\n \n \n Manages lists\n Create cards\n Organize cards with lables\n Set due dates for yourself\n Add attchments\n Write descriptions of your tasks in markdown\n Split up larger tasks with check lists\n Keep your thoughts by adding comments for your future self\n \n ",
+ "id": "site_someones_Lonewolf",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "site.someones.Lonewolf",
+ "icon": "https://dl.flathub.org/media/site/someones/Lonewolf/59b7af5a2a2e784aaa3f6e2c321745c0/icons/128x128/site.someones.Lonewolf.png",
+ "main_categories": "office",
+ "sub_categories": [
+ "ProjectManagement"
+ ],
+ "developer_name": "Mario Aichinger",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "someones.site",
+ "verification_timestamp": "1720745378",
+ "runtime": "org.gnome.Platform/x86_64/45",
+ "updated_at": 1730137097,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1696412774,
+ "trending": 9.568705385860358,
+ "installs_last_month": 384,
+ "isMobileFriendly": false
+ },
{
"name": "Progress",
"keywords": [
@@ -84633,46 +84671,8 @@
"aarch64"
],
"added_at": 1711606703,
- "trending": 12.02212653715203,
- "installs_last_month": 386,
- "isMobileFriendly": false
- },
- {
- "name": "Lonewolf",
- "keywords": [
- "kanban",
- "productivity"
- ],
- "summary": "Organize your tasks",
- "description": "\n Lonewolf is a productivity application based on the principles of Kanban.\n \n \n Manages lists\n Create cards\n Organize cards with lables\n Set due dates for yourself\n Add attchments\n Write descriptions of your tasks in markdown\n Split up larger tasks with check lists\n Keep your thoughts by adding comments for your future self\n \n ",
- "id": "site_someones_Lonewolf",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "site.someones.Lonewolf",
- "icon": "https://dl.flathub.org/media/site/someones/Lonewolf/59b7af5a2a2e784aaa3f6e2c321745c0/icons/128x128/site.someones.Lonewolf.png",
- "main_categories": "office",
- "sub_categories": [
- "ProjectManagement"
- ],
- "developer_name": "Mario Aichinger",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "someones.site",
- "verification_timestamp": "1720745378",
- "runtime": "org.gnome.Platform/x86_64/45",
- "updated_at": 1730137097,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1696412774,
- "trending": 10.164365766224895,
- "installs_last_month": 379,
+ "trending": 11.440217550856666,
+ "installs_last_month": 377,
"isMobileFriendly": false
},
{
@@ -84803,8 +84803,8 @@
"aarch64"
],
"added_at": 1507916632,
- "trending": 0.06661238000010239,
- "installs_last_month": 225,
+ "trending": 1.012551796029012,
+ "installs_last_month": 212,
"isMobileFriendly": false
}
],
@@ -84858,8 +84858,8 @@
"aarch64"
],
"added_at": 1526929581,
- "trending": 8.15421847643777,
- "installs_last_month": 1778,
+ "trending": 10.746964206387483,
+ "installs_last_month": 1741,
"isMobileFriendly": false
},
{
@@ -84987,8 +84987,8 @@
"aarch64"
],
"added_at": 1546880202,
- "trending": 10.422117112943338,
- "installs_last_month": 1242,
+ "trending": 9.44796993178843,
+ "installs_last_month": 1250,
"isMobileFriendly": false
},
{
@@ -85024,8 +85024,8 @@
"aarch64"
],
"added_at": 1726751338,
- "trending": 2.523756421032627,
- "installs_last_month": 458,
+ "trending": 1.4225483432854218,
+ "installs_last_month": 463,
"isMobileFriendly": false
},
{
@@ -85130,8 +85130,8 @@
"aarch64"
],
"added_at": 1575708557,
- "trending": 8.116349138917535,
- "installs_last_month": 394,
+ "trending": 9.447789568350853,
+ "installs_last_month": 397,
"isMobileFriendly": false
},
{
@@ -85169,8 +85169,8 @@
"aarch64"
],
"added_at": 1582841353,
- "trending": 7.936271412599575,
- "installs_last_month": 370,
+ "trending": 6.67454882559644,
+ "installs_last_month": 372,
"isMobileFriendly": false
},
{
@@ -85303,8 +85303,8 @@
"aarch64"
],
"added_at": 1548889358,
- "trending": 11.25235806693655,
- "installs_last_month": 345,
+ "trending": 10.683327826821,
+ "installs_last_month": 347,
"isMobileFriendly": false
},
{
@@ -85463,8 +85463,8 @@
"aarch64"
],
"added_at": 1645823229,
- "trending": 13.90595702461722,
- "installs_last_month": 286,
+ "trending": 11.049266306468905,
+ "installs_last_month": 292,
"isMobileFriendly": false
}
],
@@ -85523,8 +85523,8 @@
"x86_64"
],
"added_at": 1573549240,
- "trending": 7.155285828494719,
- "installs_last_month": 38007,
+ "trending": 8.226683613226733,
+ "installs_last_month": 38040,
"isMobileFriendly": false
},
{
@@ -85641,8 +85641,8 @@
"aarch64"
],
"added_at": 1633348844,
- "trending": 7.347474555129541,
- "installs_last_month": 697,
+ "trending": 6.295652848911672,
+ "installs_last_month": 709,
"isMobileFriendly": false
},
{
@@ -85688,8 +85688,8 @@
"aarch64"
],
"added_at": 1695972923,
- "trending": 7.842944348874315,
- "installs_last_month": 553,
+ "trending": 7.30010085640401,
+ "installs_last_month": 580,
"isMobileFriendly": false
}
],
@@ -85820,8 +85820,8 @@
"aarch64"
],
"added_at": 1559220873,
- "trending": 14.941525435619871,
- "installs_last_month": 12374,
+ "trending": 15.239275625241296,
+ "installs_last_month": 12408,
"isMobileFriendly": false
},
{
@@ -85854,8 +85854,8 @@
"x86_64"
],
"added_at": 1681977273,
- "trending": 8.107720956083565,
- "installs_last_month": 9839,
+ "trending": 11.576741003414735,
+ "installs_last_month": 9874,
"isMobileFriendly": false
},
{
@@ -86030,8 +86030,8 @@
"aarch64"
],
"added_at": 1718264371,
- "trending": 13.717515843816038,
- "installs_last_month": 8208,
+ "trending": 12.72007423607302,
+ "installs_last_month": 8193,
"isMobileFriendly": true
},
{
@@ -86295,8 +86295,8 @@
"aarch64"
],
"added_at": 1510234165,
- "trending": 11.714124010836503,
- "installs_last_month": 4797,
+ "trending": 11.75104519600549,
+ "installs_last_month": 4818,
"isMobileFriendly": false
},
{
@@ -86386,8 +86386,8 @@
"aarch64"
],
"added_at": 1672610803,
- "trending": 6.213667763287748,
- "installs_last_month": 1613,
+ "trending": 7.940547687357071,
+ "installs_last_month": 1635,
"isMobileFriendly": true
},
{
@@ -86424,8 +86424,8 @@
"aarch64"
],
"added_at": 1678691382,
- "trending": 12.393022632131256,
- "installs_last_month": 1376,
+ "trending": 9.80085675460854,
+ "installs_last_month": 1384,
"isMobileFriendly": false
},
{
@@ -86555,8 +86555,8 @@
"aarch64"
],
"added_at": 1509737203,
- "trending": 1.7141707584733743,
- "installs_last_month": 1153,
+ "trending": 1.854015550522024,
+ "installs_last_month": 1159,
"isMobileFriendly": false
},
{
@@ -86777,8 +86777,8 @@
"aarch64"
],
"added_at": 1721811146,
- "trending": 8.537065567062132,
- "installs_last_month": 916,
+ "trending": 7.624257328917165,
+ "installs_last_month": 909,
"isMobileFriendly": false
},
{
@@ -86816,8 +86816,8 @@
"aarch64"
],
"added_at": 1646899305,
- "trending": 3.9436991222398943,
- "installs_last_month": 496,
+ "trending": 5.013619017874197,
+ "installs_last_month": 495,
"isMobileFriendly": false
},
{
@@ -86922,8 +86922,8 @@
"aarch64"
],
"added_at": 1575708557,
- "trending": 8.116349138917535,
- "installs_last_month": 394,
+ "trending": 9.447789568350853,
+ "installs_last_month": 397,
"isMobileFriendly": false
},
{
@@ -86957,8 +86957,8 @@
"aarch64"
],
"added_at": 1725285194,
- "trending": 4.711946785632474,
- "installs_last_month": 361,
+ "trending": 10.008878439417174,
+ "installs_last_month": 351,
"isMobileFriendly": false
},
{
@@ -87002,8 +87002,8 @@
"aarch64"
],
"added_at": 1741448896,
- "trending": 9.339060360348569,
- "installs_last_month": 248,
+ "trending": 10.442608549656748,
+ "installs_last_month": 254,
"isMobileFriendly": false
},
{
@@ -87038,8 +87038,8 @@
"aarch64"
],
"added_at": 1674715885,
- "trending": 6.083074569046598,
- "installs_last_month": 219,
+ "trending": 11.403443240985789,
+ "installs_last_month": 209,
"isMobileFriendly": false
}
],
@@ -87098,8 +87098,8 @@
"x86_64"
],
"added_at": 1573549240,
- "trending": 7.155285828494719,
- "installs_last_month": 38007,
+ "trending": 8.226683613226733,
+ "installs_last_month": 38040,
"isMobileFriendly": false
},
{
@@ -87139,8 +87139,43 @@
"aarch64"
],
"added_at": 1739803217,
- "trending": 16.47141391655947,
- "installs_last_month": 1577,
+ "trending": 14.711887327670784,
+ "installs_last_month": 1553,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "AbiWord",
+ "keywords": null,
+ "summary": "A word processor",
+ "description": "\n AbiWord is a free word processing program. It is suitable for a\n wide variety of word processing tasks but remain focused on word\n processing.\n \n \n AbiWord is meant to remain relatively lightweight and support\n many file formats.\n \n ",
+ "id": "com_abisource_AbiWord",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-2.0-or-later",
+ "is_free_license": true,
+ "app_id": "com.abisource.AbiWord",
+ "icon": "https://dl.flathub.org/media/com/abisource/AbiWord/379b9dab14dfb0b1280d8a3d70678b5c/icons/128x128/com.abisource.AbiWord.png",
+ "main_categories": "office",
+ "sub_categories": [
+ "WordProcessor"
+ ],
+ "developer_name": "AbiWord contributors",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "abisource.com",
+ "verification_timestamp": "1675732781",
+ "runtime": "org.gnome.Platform/x86_64/47",
+ "updated_at": 1741997362,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1533486394,
+ "trending": 10.394426622131826,
+ "installs_last_month": 1251,
"isMobileFriendly": false
},
{
@@ -87247,43 +87282,8 @@
"aarch64"
],
"added_at": 1725287901,
- "trending": 16.529212053702743,
- "installs_last_month": 1256,
- "isMobileFriendly": false
- },
- {
- "name": "AbiWord",
- "keywords": null,
- "summary": "A word processor",
- "description": "\n AbiWord is a free word processing program. It is suitable for a\n wide variety of word processing tasks but remain focused on word\n processing.\n \n \n AbiWord is meant to remain relatively lightweight and support\n many file formats.\n \n ",
- "id": "com_abisource_AbiWord",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-2.0-or-later",
- "is_free_license": true,
- "app_id": "com.abisource.AbiWord",
- "icon": "https://dl.flathub.org/media/com/abisource/AbiWord/379b9dab14dfb0b1280d8a3d70678b5c/icons/128x128/com.abisource.AbiWord.png",
- "main_categories": "office",
- "sub_categories": [
- "WordProcessor"
- ],
- "developer_name": "AbiWord contributors",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "abisource.com",
- "verification_timestamp": "1675732781",
- "runtime": "org.gnome.Platform/x86_64/47",
- "updated_at": 1741997362,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1533486394,
- "trending": 10.094636496816548,
- "installs_last_month": 1249,
+ "trending": 12.85750000960367,
+ "installs_last_month": 1238,
"isMobileFriendly": false
},
{
@@ -87317,8 +87317,8 @@
"aarch64"
],
"added_at": 1607330222,
- "trending": 10.732548950180243,
- "installs_last_month": 1196,
+ "trending": 7.918426645664864,
+ "installs_last_month": 1195,
"isMobileFriendly": false
},
{
@@ -87474,8 +87474,8 @@
"aarch64"
],
"added_at": 1713516115,
- "trending": 8.771196173880194,
- "installs_last_month": 1131,
+ "trending": 10.721003279623163,
+ "installs_last_month": 1124,
"isMobileFriendly": false
},
{
@@ -87681,8 +87681,8 @@
"aarch64"
],
"added_at": 1505857312,
- "trending": 9.61111845819078,
- "installs_last_month": 1073,
+ "trending": 9.208695348519871,
+ "installs_last_month": 1084,
"isMobileFriendly": false
},
{
@@ -87724,8 +87724,8 @@
"aarch64"
],
"added_at": 1636532388,
- "trending": 9.108347210292736,
- "installs_last_month": 671,
+ "trending": 8.6145814764591,
+ "installs_last_month": 669,
"isMobileFriendly": false
},
{
@@ -87759,43 +87759,8 @@
"aarch64"
],
"added_at": 1500682200,
- "trending": 9.198273056712294,
- "installs_last_month": 452,
- "isMobileFriendly": false
- },
- {
- "name": "Burgernotes",
- "keywords": null,
- "summary": "Simple, private notes app",
- "description": "\n Burgernotes is a simple, private-by-default and easy to use notes app. All your notes seamlessly sync across your devices, and are 100% end-to-end encrypted, so no one but you can access them.\n \n ",
- "id": "org_hectabit_Burgernotes",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-or-later",
- "is_free_license": true,
- "app_id": "org.hectabit.Burgernotes",
- "icon": "https://dl.flathub.org/media/org/hectabit/Burgernotes/71616dcfe48933dde0547ddec494042c/icons/128x128/org.hectabit.Burgernotes.png",
- "main_categories": "office",
- "sub_categories": [
- "WordProcessor"
- ],
- "developer_name": "Hectabit",
- "verification_verified": true,
- "verification_method": "website",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": "false",
- "verification_website": "hectabit.org",
- "verification_timestamp": "1710536946",
- "runtime": "org.gnome.Platform/x86_64/46",
- "updated_at": 1714066848,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1709408574,
- "trending": 10.907763195308402,
- "installs_last_month": 233,
+ "trending": 10.362766262088265,
+ "installs_last_month": 456,
"isMobileFriendly": false
},
{
@@ -87912,8 +87877,43 @@
"aarch64"
],
"added_at": 1651827834,
- "trending": 1.2469032389962935,
- "installs_last_month": 220,
+ "trending": 0.9116395113161267,
+ "installs_last_month": 228,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Burgernotes",
+ "keywords": null,
+ "summary": "Simple, private notes app",
+ "description": "\n Burgernotes is a simple, private-by-default and easy to use notes app. All your notes seamlessly sync across your devices, and are 100% end-to-end encrypted, so no one but you can access them.\n \n ",
+ "id": "org_hectabit_Burgernotes",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-or-later",
+ "is_free_license": true,
+ "app_id": "org.hectabit.Burgernotes",
+ "icon": "https://dl.flathub.org/media/org/hectabit/Burgernotes/71616dcfe48933dde0547ddec494042c/icons/128x128/org.hectabit.Burgernotes.png",
+ "main_categories": "office",
+ "sub_categories": [
+ "WordProcessor"
+ ],
+ "developer_name": "Hectabit",
+ "verification_verified": true,
+ "verification_method": "website",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": "false",
+ "verification_website": "hectabit.org",
+ "verification_timestamp": "1710536946",
+ "runtime": "org.gnome.Platform/x86_64/46",
+ "updated_at": 1714066848,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1709408574,
+ "trending": 12.40767884373032,
+ "installs_last_month": 222,
"isMobileFriendly": false
},
{
@@ -87951,8 +87951,8 @@
"aarch64"
],
"added_at": 1742581523,
- "trending": 11.601182045111646,
- "installs_last_month": 193,
+ "trending": 11.32233056420947,
+ "installs_last_month": 194,
"isMobileFriendly": false
},
{
@@ -87989,8 +87989,8 @@
"aarch64"
],
"added_at": 1674413769,
- "trending": 8.838973980159578,
- "installs_last_month": 182,
+ "trending": 9.34087595935686,
+ "installs_last_month": 185,
"isMobileFriendly": false
},
{
@@ -88031,8 +88031,8 @@
"aarch64"
],
"added_at": 1575966807,
- "trending": 3.705190321356633,
- "installs_last_month": 131,
+ "trending": 3.5364670224565615,
+ "installs_last_month": 133,
"isMobileFriendly": false
}
],
@@ -88281,8 +88281,8 @@
"aarch64"
],
"added_at": 1527189163,
- "trending": 10.950449212135211,
- "installs_last_month": 21481,
+ "trending": 13.340314706799813,
+ "installs_last_month": 21425,
"isMobileFriendly": false
},
{
@@ -88316,8 +88316,8 @@
"aarch64"
],
"added_at": 1520508045,
- "trending": 1.6047822414046211,
- "installs_last_month": 741,
+ "trending": -0.17463897752970503,
+ "installs_last_month": 738,
"isMobileFriendly": false
},
{
@@ -88351,8 +88351,8 @@
"aarch64"
],
"added_at": 1608022038,
- "trending": 11.271543404220337,
- "installs_last_month": 363,
+ "trending": 9.410867877305709,
+ "installs_last_month": 361,
"isMobileFriendly": false
},
{
@@ -88387,8 +88387,8 @@
"aarch64"
],
"added_at": 1566069144,
- "trending": 5.925148313467314,
- "installs_last_month": 188,
+ "trending": 8.210581478672262,
+ "installs_last_month": 192,
"isMobileFriendly": false
},
{
@@ -88426,8 +88426,8 @@
"aarch64"
],
"added_at": 1651737521,
- "trending": 5.716442215852283,
- "installs_last_month": 186,
+ "trending": 6.138400529240202,
+ "installs_last_month": 192,
"isMobileFriendly": false
}
],
@@ -88667,8 +88667,8 @@
"aarch64"
],
"added_at": 1554812495,
- "trending": 15.244900978686037,
- "installs_last_month": 7260,
+ "trending": 13.592166280110574,
+ "installs_last_month": 7268,
"isMobileFriendly": false
},
{
@@ -88706,8 +88706,8 @@
"x86_64"
],
"added_at": 1686636410,
- "trending": 7.1774255640881295,
- "installs_last_month": 1056,
+ "trending": 6.932309075938384,
+ "installs_last_month": 1051,
"isMobileFriendly": false
},
{
@@ -88750,8 +88750,8 @@
"aarch64"
],
"added_at": 1618816279,
- "trending": 8.474662472609966,
- "installs_last_month": 533,
+ "trending": 10.419165137361514,
+ "installs_last_month": 535,
"isMobileFriendly": false
},
{
@@ -88924,8 +88924,8 @@
"aarch64"
],
"added_at": 1621235935,
- "trending": 9.19031679460374,
- "installs_last_month": 464,
+ "trending": 7.106344888260049,
+ "installs_last_month": 465,
"isMobileFriendly": false
}
],
@@ -89196,8 +89196,8 @@
"aarch64"
],
"added_at": 1598957932,
- "trending": 10.890567396237255,
- "installs_last_month": 11296,
+ "trending": 11.333127061895985,
+ "installs_last_month": 11322,
"isMobileFriendly": false
},
{
@@ -89238,8 +89238,8 @@
"aarch64"
],
"added_at": 1739721367,
- "trending": 5.588691793632619,
- "installs_last_month": 820,
+ "trending": 4.641469538847841,
+ "installs_last_month": 829,
"isMobileFriendly": false
},
{
@@ -89274,8 +89274,8 @@
"aarch64"
],
"added_at": 1566069144,
- "trending": 5.925148313467314,
- "installs_last_month": 188,
+ "trending": 8.210581478672262,
+ "installs_last_month": 192,
"isMobileFriendly": false
},
{
@@ -89315,13 +89315,13 @@
"aarch64"
],
"added_at": 1702974754,
- "trending": 12.969285557812649,
- "installs_last_month": 91,
+ "trending": 8.576001076462857,
+ "installs_last_month": 95,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 3,
+ "processingTimeMs": 2,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -89556,8 +89556,8 @@
"aarch64"
],
"added_at": 1554812495,
- "trending": 15.244900978686037,
- "installs_last_month": 7260,
+ "trending": 13.592166280110574,
+ "installs_last_month": 7268,
"isMobileFriendly": false
},
{
@@ -89597,8 +89597,8 @@
"aarch64"
],
"added_at": 1611388948,
- "trending": 8.031904784534706,
- "installs_last_month": 3749,
+ "trending": 10.559934384270512,
+ "installs_last_month": 3735,
"isMobileFriendly": false
},
{
@@ -89636,8 +89636,8 @@
"x86_64"
],
"added_at": 1686636410,
- "trending": 7.1774255640881295,
- "installs_last_month": 1056,
+ "trending": 6.932309075938384,
+ "installs_last_month": 1051,
"isMobileFriendly": false
},
{
@@ -89683,8 +89683,8 @@
"aarch64"
],
"added_at": 1686032728,
- "trending": 1.1488417750702886,
- "installs_last_month": 767,
+ "trending": 2.0466545595442227,
+ "installs_last_month": 771,
"isMobileFriendly": false
},
{
@@ -89727,8 +89727,8 @@
"aarch64"
],
"added_at": 1618816279,
- "trending": 8.474662472609966,
- "installs_last_month": 533,
+ "trending": 10.419165137361514,
+ "installs_last_month": 535,
"isMobileFriendly": false
}
],
@@ -89946,8 +89946,8 @@
"aarch64"
],
"added_at": 1689080874,
- "trending": 12.504198079877115,
- "installs_last_month": 22242,
+ "trending": 13.087218354949515,
+ "installs_last_month": 22197,
"isMobileFriendly": false
},
{
@@ -90186,8 +90186,8 @@
"aarch64"
],
"added_at": 1556170700,
- "trending": 12.60698699472188,
- "installs_last_month": 4303,
+ "trending": 12.30978541505718,
+ "installs_last_month": 4345,
"isMobileFriendly": false
},
{
@@ -90417,7 +90417,7 @@
"aarch64"
],
"added_at": 1549567992,
- "trending": 8.228222215499457,
+ "trending": 8.241787425384295,
"installs_last_month": 667,
"isMobileFriendly": false
},
@@ -90452,8 +90452,8 @@
"aarch64"
],
"added_at": 1723325240,
- "trending": 2.6265377252820357,
- "installs_last_month": 133,
+ "trending": 4.108680464608611,
+ "installs_last_month": 166,
"isMobileFriendly": false
},
{
@@ -90491,8 +90491,8 @@
"aarch64"
],
"added_at": 1714136700,
- "trending": 4.289719430889348,
- "installs_last_month": 102,
+ "trending": 3.139007840585542,
+ "installs_last_month": 112,
"isMobileFriendly": false
}
],
@@ -90509,50 +90509,6 @@
"subcategory": "security",
"data": {
"hits": [
- {
- "name": "Raspirus",
- "keywords": [
- "malware",
- "scanner",
- "antivirus",
- "security",
- "privacy",
- "yara",
- "lightweight",
- "raspberry"
- ],
- "summary": "Simple virus scanner",
- "description": "\n Welcome to Raspirus, your lightweight rules-based malware scanner. \n Originally designed to scan attached USB drives using a Raspberry Pi, \n Raspirus has evolved into a versatile tool capable of scanning local files and folders as well. \n Some of its standout features include:\n \n \n Works on Windows, macOS, Linux \n Uses Yara rules to efficiently scan your files \n No data is collected about you, pure privacy! \n Feee for single users. Forever open-source \n Simple to use with minimal design in mind \n Works offline and only requires internet for updates \n Lightweight resource usage \n \n ",
- "id": "io_github_raspirus_raspirus",
- "type": "desktop-application",
- "translations": {},
- "project_license": "GPL-3.0-only",
- "is_free_license": true,
- "app_id": "io.github.raspirus.raspirus",
- "icon": "https://dl.flathub.org/media/io/github/raspirus.raspirus/0ea51949fcf4e9905b727f8e4ef375b0/icons/128x128/io.github.raspirus.raspirus.png",
- "main_categories": "system",
- "sub_categories": [
- "Security"
- ],
- "developer_name": "Raspirus Team",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1739998664,
- "arches": [
- "x86_64",
- "aarch64"
- ],
- "added_at": 1738080481,
- "trending": 6.860164363441871,
- "installs_last_month": 2113,
- "isMobileFriendly": false
- },
{
"name": "KWalletManager",
"keywords": null,
@@ -90753,8 +90709,52 @@
"aarch64"
],
"added_at": 1663309529,
- "trending": 9.03106013640524,
- "installs_last_month": 2109,
+ "trending": 8.258349952448206,
+ "installs_last_month": 2106,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "Raspirus",
+ "keywords": [
+ "malware",
+ "scanner",
+ "antivirus",
+ "security",
+ "privacy",
+ "yara",
+ "lightweight",
+ "raspberry"
+ ],
+ "summary": "Simple virus scanner",
+ "description": "\n Welcome to Raspirus, your lightweight rules-based malware scanner. \n Originally designed to scan attached USB drives using a Raspberry Pi, \n Raspirus has evolved into a versatile tool capable of scanning local files and folders as well. \n Some of its standout features include:\n \n \n Works on Windows, macOS, Linux \n Uses Yara rules to efficiently scan your files \n No data is collected about you, pure privacy! \n Feee for single users. Forever open-source \n Simple to use with minimal design in mind \n Works offline and only requires internet for updates \n Lightweight resource usage \n \n ",
+ "id": "io_github_raspirus_raspirus",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "GPL-3.0-only",
+ "is_free_license": true,
+ "app_id": "io.github.raspirus.raspirus",
+ "icon": "https://dl.flathub.org/media/io/github/raspirus.raspirus/0ea51949fcf4e9905b727f8e4ef375b0/icons/128x128/io.github.raspirus.raspirus.png",
+ "main_categories": "system",
+ "sub_categories": [
+ "Security"
+ ],
+ "developer_name": "Raspirus Team",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1739998664,
+ "arches": [
+ "x86_64",
+ "aarch64"
+ ],
+ "added_at": 1738080481,
+ "trending": 1.0031460429960442,
+ "installs_last_month": 2069,
"isMobileFriendly": false
},
{
@@ -90787,8 +90787,8 @@
"x86_64"
],
"added_at": 1570002721,
- "trending": 11.655175981611896,
- "installs_last_month": 1107,
+ "trending": 5.492449273787541,
+ "installs_last_month": 1118,
"isMobileFriendly": false
},
{
@@ -90831,8 +90831,8 @@
"aarch64"
],
"added_at": 1514067383,
- "trending": 10.092636438480037,
- "installs_last_month": 440,
+ "trending": 9.79799502754808,
+ "installs_last_month": 426,
"isMobileFriendly": false
},
{
@@ -90866,8 +90866,8 @@
"aarch64"
],
"added_at": 1557946295,
- "trending": 3.2671303575282136,
- "installs_last_month": 382,
+ "trending": 2.228153751728444,
+ "installs_last_month": 387,
"isMobileFriendly": false
},
{
@@ -90915,7 +90915,7 @@
}
],
"query": "",
- "processingTimeMs": 2,
+ "processingTimeMs": 3,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -91145,8 +91145,8 @@
"aarch64"
],
"added_at": 1688295550,
- "trending": 12.019899924895402,
- "installs_last_month": 4304,
+ "trending": 11.344843987971936,
+ "installs_last_month": 4302,
"isMobileFriendly": false
},
{
@@ -91304,8 +91304,8 @@
"aarch64"
],
"added_at": 1715582240,
- "trending": 12.416628562823096,
- "installs_last_month": 3297,
+ "trending": 13.851770520273265,
+ "installs_last_month": 3287,
"isMobileFriendly": false
},
{
@@ -91346,8 +91346,8 @@
"aarch64"
],
"added_at": 1660029810,
- "trending": 6.099378797135287,
- "installs_last_month": 3009,
+ "trending": 6.958251492522141,
+ "installs_last_month": 2991,
"isMobileFriendly": false
},
{
@@ -91551,8 +91551,8 @@
"aarch64"
],
"added_at": 1692023917,
- "trending": 3.291689382650924,
- "installs_last_month": 2062,
+ "trending": -0.6062430674213171,
+ "installs_last_month": 2079,
"isMobileFriendly": false
},
{
@@ -91591,8 +91591,8 @@
"aarch64"
],
"added_at": 1741023107,
- "trending": 3.4819344489247808,
- "installs_last_month": 434,
+ "trending": 3.5466233246166325,
+ "installs_last_month": 416,
"isMobileFriendly": false
},
{
@@ -91626,8 +91626,8 @@
"aarch64"
],
"added_at": 1656936928,
- "trending": 11.192147668118253,
- "installs_last_month": 361,
+ "trending": 11.0722093166588,
+ "installs_last_month": 363,
"isMobileFriendly": false
},
{
@@ -91661,8 +91661,8 @@
"aarch64"
],
"added_at": 1634337078,
- "trending": 6.966770172554681,
- "installs_last_month": 314,
+ "trending": 5.866512381787156,
+ "installs_last_month": 319,
"isMobileFriendly": false
},
{
@@ -91706,7 +91706,7 @@
"aarch64"
],
"added_at": 1674053049,
- "trending": 9.682105661405448,
+ "trending": 5.551221281135027,
"installs_last_month": 157,
"isMobileFriendly": false
},
@@ -91907,8 +91907,8 @@
"aarch64"
],
"added_at": 1676882106,
- "trending": 7.665008835012685,
- "installs_last_month": 153,
+ "trending": 10.090233486743829,
+ "installs_last_month": 157,
"isMobileFriendly": false
}
],
@@ -91964,8 +91964,8 @@
"aarch64"
],
"added_at": 1618902519,
- "trending": 5.951288371683713,
- "installs_last_month": 3898,
+ "trending": 7.03226035405627,
+ "installs_last_month": 3902,
"isMobileFriendly": false
},
{
@@ -92009,8 +92009,8 @@
"aarch64"
],
"added_at": 1671091070,
- "trending": 11.235084626114537,
- "installs_last_month": 997,
+ "trending": 11.840349686466412,
+ "installs_last_month": 991,
"isMobileFriendly": false
},
{
@@ -92044,8 +92044,8 @@
"aarch64"
],
"added_at": 1680758637,
- "trending": 6.541142386307437,
- "installs_last_month": 562,
+ "trending": 9.285989893372143,
+ "installs_last_month": 560,
"isMobileFriendly": false
},
{
@@ -92094,8 +92094,8 @@
"aarch64"
],
"added_at": 1709708897,
- "trending": 4.709543091215296,
- "installs_last_month": 220,
+ "trending": 7.64693759843931,
+ "installs_last_month": 209,
"isMobileFriendly": false
}
],
@@ -92151,8 +92151,8 @@
"aarch64"
],
"added_at": 1611045618,
- "trending": 7.700625096268212,
- "installs_last_month": 17902,
+ "trending": 7.564276664578813,
+ "installs_last_month": 17840,
"isMobileFriendly": false
},
{
@@ -92328,8 +92328,8 @@
"aarch64"
],
"added_at": 1598533911,
- "trending": 13.608469213768078,
- "installs_last_month": 7807,
+ "trending": 14.12179709144284,
+ "installs_last_month": 7806,
"isMobileFriendly": true
},
{
@@ -92551,8 +92551,8 @@
"aarch64"
],
"added_at": 1572452136,
- "trending": 15.163880965140825,
- "installs_last_month": 6083,
+ "trending": 15.247254379349169,
+ "installs_last_month": 6234,
"isMobileFriendly": true
},
{
@@ -92818,8 +92818,8 @@
"aarch64"
],
"added_at": 1599802166,
- "trending": 11.351397473850072,
- "installs_last_month": 5334,
+ "trending": 10.79975560994669,
+ "installs_last_month": 5416,
"isMobileFriendly": false
},
{
@@ -92874,8 +92874,8 @@
"aarch64"
],
"added_at": 1660626708,
- "trending": 7.274569195302261,
- "installs_last_month": 5185,
+ "trending": 6.486964279318421,
+ "installs_last_month": 5158,
"isMobileFriendly": false
},
{
@@ -93095,8 +93095,8 @@
"aarch64"
],
"added_at": 1592461919,
- "trending": 8.847673651997622,
- "installs_last_month": 3552,
+ "trending": 6.993402128603745,
+ "installs_last_month": 3576,
"isMobileFriendly": false
},
{
@@ -93132,8 +93132,8 @@
"aarch64"
],
"added_at": 1560894139,
- "trending": 11.494920581685111,
- "installs_last_month": 1381,
+ "trending": 9.2931285541528,
+ "installs_last_month": 1357,
"isMobileFriendly": false
},
{
@@ -93178,8 +93178,8 @@
"aarch64"
],
"added_at": 1723197944,
- "trending": 14.595019936076469,
- "installs_last_month": 908,
+ "trending": 14.516654619039498,
+ "installs_last_month": 895,
"isMobileFriendly": true
},
{
@@ -93224,8 +93224,8 @@
"aarch64"
],
"added_at": 1618816465,
- "trending": 8.481357109427806,
- "installs_last_month": 684,
+ "trending": 8.136675185834669,
+ "installs_last_month": 678,
"isMobileFriendly": false
},
{
@@ -93264,8 +93264,8 @@
"aarch64"
],
"added_at": 1674808337,
- "trending": 6.545248949178339,
- "installs_last_month": 349,
+ "trending": 6.707219714166655,
+ "installs_last_month": 359,
"isMobileFriendly": false
},
{
@@ -93306,8 +93306,8 @@
"aarch64"
],
"added_at": 1742933295,
- "trending": 5.48418242517649,
- "installs_last_month": 170,
+ "trending": 6.1559668561849,
+ "installs_last_month": 179,
"isMobileFriendly": false
},
{
@@ -93371,13 +93371,13 @@
"aarch64"
],
"added_at": 1512478495,
- "trending": 11.140786988127738,
- "installs_last_month": 163,
+ "trending": 10.461261112682624,
+ "installs_last_month": 156,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 5,
+ "processingTimeMs": 4,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -93654,8 +93654,8 @@
"aarch64"
],
"added_at": 1510066889,
- "trending": 12.99273430211643,
- "installs_last_month": 12857,
+ "trending": 13.40566208060824,
+ "installs_last_month": 12944,
"isMobileFriendly": true
},
{
@@ -93852,8 +93852,8 @@
"aarch64"
],
"added_at": 1597655512,
- "trending": 10.496024664933287,
- "installs_last_month": 6344,
+ "trending": 9.754074138833456,
+ "installs_last_month": 6472,
"isMobileFriendly": false
},
{
@@ -94043,8 +94043,8 @@
"aarch64"
],
"added_at": 1621412981,
- "trending": 11.72130954918501,
- "installs_last_month": 2427,
+ "trending": 12.311995560273136,
+ "installs_last_month": 2408,
"isMobileFriendly": true
},
{
@@ -94129,8 +94129,8 @@
"aarch64"
],
"added_at": 1645821035,
- "trending": 8.630334449989213,
- "installs_last_month": 1285,
+ "trending": 8.99611183297813,
+ "installs_last_month": 1276,
"isMobileFriendly": false
},
{
@@ -94223,8 +94223,8 @@
"aarch64"
],
"added_at": 1593159164,
- "trending": 3.94485883289444,
- "installs_last_month": 1222,
+ "trending": 2.8060518963659944,
+ "installs_last_month": 1232,
"isMobileFriendly": false
},
{
@@ -94307,8 +94307,8 @@
"aarch64"
],
"added_at": 1544216308,
- "trending": 1.240941110190091,
- "installs_last_month": 816,
+ "trending": 1.1682416347847795,
+ "installs_last_month": 827,
"isMobileFriendly": false
},
{
@@ -94367,8 +94367,8 @@
"aarch64"
],
"added_at": 1517830145,
- "trending": 13.943002305249882,
- "installs_last_month": 490,
+ "trending": 15.812030891000353,
+ "installs_last_month": 477,
"isMobileFriendly": false
},
{
@@ -94428,8 +94428,8 @@
"aarch64"
],
"added_at": 1544441501,
- "trending": 1.2305064654235156,
- "installs_last_month": 248,
+ "trending": 0.7638538894834519,
+ "installs_last_month": 245,
"isMobileFriendly": false
},
{
@@ -94462,8 +94462,8 @@
"x86_64"
],
"added_at": 1711950998,
- "trending": 8.980689646301583,
- "installs_last_month": 182,
+ "trending": 11.11214795972968,
+ "installs_last_month": 178,
"isMobileFriendly": false
},
{
@@ -94501,8 +94501,8 @@
"aarch64"
],
"added_at": 1539453306,
- "trending": 2.29435520357939,
- "installs_last_month": 112,
+ "trending": 4.686303948001893,
+ "installs_last_month": 124,
"isMobileFriendly": false
},
{
@@ -94571,8 +94571,8 @@
"aarch64"
],
"added_at": 1694075241,
- "trending": 7.265395562708446,
- "installs_last_month": 51,
+ "trending": 7.959151222964892,
+ "installs_last_month": 53,
"isMobileFriendly": false
},
{
@@ -94607,12 +94607,12 @@
],
"added_at": 1725340957,
"trending": 6.718960638085551,
- "installs_last_month": 47,
+ "installs_last_month": 45,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 4,
+ "processingTimeMs": 5,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -94866,8 +94866,8 @@
"aarch64"
],
"added_at": 1508225093,
- "trending": 13.366945996247976,
- "installs_last_month": 5600,
+ "trending": 13.807025391348178,
+ "installs_last_month": 5650,
"isMobileFriendly": true
},
{
@@ -95058,8 +95058,8 @@
"aarch64"
],
"added_at": 1623400439,
- "trending": 11.72521569740402,
- "installs_last_month": 2756,
+ "trending": 11.179452260857367,
+ "installs_last_month": 2758,
"isMobileFriendly": true
},
{
@@ -95093,8 +95093,8 @@
"aarch64"
],
"added_at": 1652852226,
- "trending": 2.124716732716656,
- "installs_last_month": 615,
+ "trending": 4.846002453974245,
+ "installs_last_month": 604,
"isMobileFriendly": false
},
{
@@ -95247,8 +95247,8 @@
"aarch64"
],
"added_at": 1653507934,
- "trending": 12.209973854885586,
- "installs_last_month": 259,
+ "trending": 13.172415080637895,
+ "installs_last_month": 257,
"isMobileFriendly": false
},
{
@@ -95286,7 +95286,7 @@
],
"added_at": 1739629338,
"trending": 7.322142763892804,
- "installs_last_month": 122,
+ "installs_last_month": 118,
"isMobileFriendly": false
},
{
@@ -95328,8 +95328,8 @@
"aarch64"
],
"added_at": 1675758936,
- "trending": 6.740055953559418,
- "installs_last_month": 98,
+ "trending": 6.567909575800989,
+ "installs_last_month": 97,
"isMobileFriendly": false
},
{
@@ -95374,12 +95374,12 @@
],
"added_at": 1712518071,
"trending": 12.198071665283186,
- "installs_last_month": 85,
+ "installs_last_month": 80,
"isMobileFriendly": false
}
],
"query": "",
- "processingTimeMs": 3,
+ "processingTimeMs": 4,
"hitsPerPage": 250,
"page": 1,
"totalPages": 1,
@@ -95430,8 +95430,8 @@
"aarch64"
],
"added_at": 1611045618,
- "trending": 7.700625096268212,
- "installs_last_month": 17902,
+ "trending": 7.564276664578813,
+ "installs_last_month": 17840,
"isMobileFriendly": false
},
{
@@ -95697,8 +95697,8 @@
"aarch64"
],
"added_at": 1599802166,
- "trending": 11.351397473850072,
- "installs_last_month": 5334,
+ "trending": 10.79975560994669,
+ "installs_last_month": 5416,
"isMobileFriendly": false
},
{
@@ -95753,8 +95753,8 @@
"aarch64"
],
"added_at": 1660626708,
- "trending": 7.274569195302261,
- "installs_last_month": 5185,
+ "trending": 6.486964279318421,
+ "installs_last_month": 5158,
"isMobileFriendly": false
},
{
@@ -95974,8 +95974,8 @@
"aarch64"
],
"added_at": 1592461919,
- "trending": 8.847673651997622,
- "installs_last_month": 3552,
+ "trending": 6.993402128603745,
+ "installs_last_month": 3576,
"isMobileFriendly": false
},
{
@@ -96020,8 +96020,8 @@
"aarch64"
],
"added_at": 1618816465,
- "trending": 8.481357109427806,
- "installs_last_month": 684,
+ "trending": 8.136675185834669,
+ "installs_last_month": 678,
"isMobileFriendly": false
}
],
@@ -96086,8 +96086,8 @@
"aarch64"
],
"added_at": 1727178326,
- "trending": 12.443140168462085,
- "installs_last_month": 6853,
+ "trending": 12.80167239283237,
+ "installs_last_month": 6625,
"isMobileFriendly": true
},
{
@@ -96136,8 +96136,8 @@
"x86_64"
],
"added_at": 1675758779,
- "trending": 13.72125722907565,
- "installs_last_month": 3258,
+ "trending": 12.086064167069528,
+ "installs_last_month": 3235,
"isMobileFriendly": false
},
{
@@ -96239,8 +96239,8 @@
"aarch64"
],
"added_at": 1641590179,
- "trending": 13.838774914923372,
- "installs_last_month": 2503,
+ "trending": 14.615017122467965,
+ "installs_last_month": 2589,
"isMobileFriendly": true
},
{
@@ -96273,8 +96273,8 @@
"x86_64"
],
"added_at": 1683098866,
- "trending": 12.79297958042202,
- "installs_last_month": 1738,
+ "trending": 10.691945549000078,
+ "installs_last_month": 1744,
"isMobileFriendly": false
},
{
@@ -96308,8 +96308,8 @@
"aarch64"
],
"added_at": 1724319264,
- "trending": 11.58174875493478,
- "installs_last_month": 1280,
+ "trending": 11.375585259985842,
+ "installs_last_month": 1278,
"isMobileFriendly": false
},
{
@@ -96354,8 +96354,8 @@
"aarch64"
],
"added_at": 1618816465,
- "trending": 8.481357109427806,
- "installs_last_month": 684,
+ "trending": 8.136675185834669,
+ "installs_last_month": 678,
"isMobileFriendly": false
},
{
@@ -96394,8 +96394,8 @@
"x86_64"
],
"added_at": 1702298632,
- "trending": 4.265249322351952,
- "installs_last_month": 529,
+ "trending": 2.6149624347430427,
+ "installs_last_month": 518,
"isMobileFriendly": false
},
{
@@ -96429,8 +96429,8 @@
"aarch64"
],
"added_at": 1660626546,
- "trending": 10.374176944801086,
- "installs_last_month": 205,
+ "trending": 10.584195120067442,
+ "installs_last_month": 201,
"isMobileFriendly": false
},
{
@@ -96469,8 +96469,8 @@
"aarch64"
],
"added_at": 1684146098,
- "trending": 1.2820184380133657,
- "installs_last_month": 83,
+ "trending": 1.348654781586102,
+ "installs_last_month": 82,
"isMobileFriendly": false
},
{
@@ -96504,8 +96504,8 @@
"aarch64"
],
"added_at": 1559220964,
- "trending": 5.955623820112088,
- "installs_last_month": 73,
+ "trending": 6.119276968879713,
+ "installs_last_month": 71,
"isMobileFriendly": false
},
{
@@ -96565,8 +96565,8 @@
"aarch64"
],
"added_at": 1689022038,
- "trending": 13.277568765059945,
- "installs_last_month": 34,
+ "trending": 11.471093465579802,
+ "installs_last_month": 36,
"isMobileFriendly": false
}
],
@@ -96616,8 +96616,8 @@
"aarch64"
],
"added_at": 1647245093,
- "trending": 6.3872481699874895,
- "installs_last_month": 812,
+ "trending": 4.947827512073383,
+ "installs_last_month": 825,
"isMobileFriendly": false
},
{
@@ -96650,8 +96650,8 @@
"x86_64"
],
"added_at": 1722669481,
- "trending": 3.8389116853489464,
- "installs_last_month": 400,
+ "trending": 3.5684792132810235,
+ "installs_last_month": 415,
"isMobileFriendly": false
}
],
@@ -96888,8 +96888,8 @@
"aarch64"
],
"added_at": 1630177081,
- "trending": 13.054182723852408,
- "installs_last_month": 8684,
+ "trending": 12.452254195820863,
+ "installs_last_month": 8807,
"isMobileFriendly": true
},
{
@@ -97109,8 +97109,8 @@
"aarch64"
],
"added_at": 1726268078,
- "trending": 11.003245448863176,
- "installs_last_month": 5062,
+ "trending": 10.420628823235944,
+ "installs_last_month": 5070,
"isMobileFriendly": false
},
{
@@ -97144,8 +97144,8 @@
"aarch64"
],
"added_at": 1650370042,
- "trending": 6.864628249023839,
- "installs_last_month": 4134,
+ "trending": 9.640098269407275,
+ "installs_last_month": 4219,
"isMobileFriendly": false
},
{
@@ -97182,8 +97182,8 @@
"aarch64"
],
"added_at": 1545057431,
- "trending": 6.858769188550931,
- "installs_last_month": 3653,
+ "trending": 5.624919277060531,
+ "installs_last_month": 3666,
"isMobileFriendly": false
},
{
@@ -97400,8 +97400,8 @@
"aarch64"
],
"added_at": 1501514709,
- "trending": 8.56976281388053,
- "installs_last_month": 2710,
+ "trending": 8.990433110427672,
+ "installs_last_month": 2735,
"isMobileFriendly": false
},
{
@@ -97439,8 +97439,8 @@
"aarch64"
],
"added_at": 1612472407,
- "trending": 7.109864619042586,
- "installs_last_month": 2324,
+ "trending": 7.486361548966417,
+ "installs_last_month": 2292,
"isMobileFriendly": false
},
{
@@ -97553,8 +97553,8 @@
"aarch64"
],
"added_at": 1705654617,
- "trending": 14.726766867452753,
- "installs_last_month": 2095,
+ "trending": 14.055339140122204,
+ "installs_last_month": 2100,
"isMobileFriendly": true
},
{
@@ -97662,8 +97662,8 @@
"aarch64"
],
"added_at": 1709408532,
- "trending": 15.194459932413622,
- "installs_last_month": 1514,
+ "trending": 13.11208911121074,
+ "installs_last_month": 1506,
"isMobileFriendly": false
},
{
@@ -97889,8 +97889,8 @@
"aarch64"
],
"added_at": 1594483705,
- "trending": 11.50338435025965,
- "installs_last_month": 1398,
+ "trending": 12.28752971665036,
+ "installs_last_month": 1415,
"isMobileFriendly": false
},
{
@@ -97927,8 +97927,8 @@
"aarch64"
],
"added_at": 1517396035,
- "trending": 9.461306762978458,
- "installs_last_month": 1288,
+ "trending": 7.968630598042588,
+ "installs_last_month": 1316,
"isMobileFriendly": false
},
{
@@ -97947,7 +97947,7 @@
"project_license": "GPL-2.0+",
"is_free_license": true,
"app_id": "org.qownnotes.QOwnNotes",
- "icon": "https://dl.flathub.org/media/org/qownnotes/QOwnNotes/23f9776c87613a9254bbe542cbe23f4d/icons/128x128/org.qownnotes.QOwnNotes.png",
+ "icon": "https://dl.flathub.org/media/org/qownnotes/QOwnNotes/48d0db583ac8d6f265b0e2dac0a75ab3/icons/128x128/org.qownnotes.QOwnNotes.png",
"main_categories": "utility",
"sub_categories": [
"TextEditor"
@@ -97961,14 +97961,14 @@
"verification_website": "qownnotes.org",
"verification_timestamp": "1720037724",
"runtime": "org.kde.Platform/x86_64/6.8",
- "updated_at": 1743619761,
+ "updated_at": 1743715152,
"arches": [
"x86_64",
"aarch64"
],
"added_at": 1529345413,
- "trending": 12.507176352063595,
- "installs_last_month": 1168,
+ "trending": 9.864809996881489,
+ "installs_last_month": 1147,
"isMobileFriendly": false
},
{
@@ -98012,8 +98012,8 @@
"aarch64"
],
"added_at": 1672995474,
- "trending": 8.463557661065185,
- "installs_last_month": 1018,
+ "trending": 8.804493045372512,
+ "installs_last_month": 1024,
"isMobileFriendly": false
},
{
@@ -98107,8 +98107,8 @@
"aarch64"
],
"added_at": 1648060518,
- "trending": 13.218384828109835,
- "installs_last_month": 769,
+ "trending": 12.366878121878134,
+ "installs_last_month": 762,
"isMobileFriendly": false
},
{
@@ -98317,8 +98317,8 @@
"aarch64"
],
"added_at": 1632425353,
- "trending": 9.292015093475158,
- "installs_last_month": 669,
+ "trending": 9.661370779348497,
+ "installs_last_month": 671,
"isMobileFriendly": false
},
{
@@ -98360,8 +98360,8 @@
"aarch64"
],
"added_at": 1521651121,
- "trending": 1.7394942575756909,
- "installs_last_month": 638,
+ "trending": 2.2777142538764066,
+ "installs_last_month": 646,
"isMobileFriendly": false
},
{
@@ -98398,46 +98398,8 @@
"aarch64"
],
"added_at": 1731213642,
- "trending": 1.8306751480236516,
- "installs_last_month": 598,
- "isMobileFriendly": false
- },
- {
- "name": "SiYuan",
- "keywords": null,
- "summary": "A privacy-first personal knowledge management system, support fine-grained block-level reference and Markdown WYSIWYG",
- "description": "Block editing: SiYuan, the only important core concept is Content block. The content block\n can be formed through the formatting format, so that we can organize our thoughts and\n knowledge at the block-level granularity, and it is also convenient for reading and outputting\n long content.\n Privacy security Encrypted cloud, worry-free privacy: Data is stored entirely on the device\n under the control of the user. Even if there is no network, even if the cloud service is down,\n it can still be used locally without restrictions. No offline, no notes.\n Bidirectional link: Documentation page are also blocks, reducing mental load. All content\n exists on a block basis, and documentation pages are no exception. Blocks can be converted to\n each other, splitting, reorganizing and moving do not affect existing links.\n List outline: Sort out the main points, logically layered\n Multi-device data sync: Keep data complete and consistent\n ------------------------\n \n ⚠️This distribution is maintained by volunteers, not by SiYuan team.⚠️\n \n \n Project URL: \n \n \n \n https://github.com/flathub/org.b3log.siyuan\n \n \n \n Contributions are welcome.\n \n ",
- "id": "org_b3log_siyuan",
- "type": "desktop-application",
- "translations": {},
- "project_license": "AGPL-3.0",
- "is_free_license": true,
- "app_id": "org.b3log.siyuan",
- "icon": "https://dl.flathub.org/media/org/b3log/siyuan/d622392e224de587633c4349825c218c/icons/128x128/org.b3log.siyuan.png",
- "main_categories": "utility",
- "sub_categories": [
- "TextTools",
- "WordProcessor",
- "Spreadsheet",
- "TextEditor",
- "Office"
- ],
- "developer_name": "SiYuan Flatpak Community",
- "verification_verified": false,
- "verification_method": "none",
- "verification_login_name": null,
- "verification_login_provider": null,
- "verification_login_is_organization": null,
- "verification_website": null,
- "verification_timestamp": null,
- "runtime": "org.freedesktop.Platform/x86_64/24.08",
- "updated_at": 1742891749,
- "arches": [
- "x86_64"
- ],
- "added_at": 1700218429,
- "trending": 0.8130759066381442,
- "installs_last_month": 542,
+ "trending": 2.6191425192184807,
+ "installs_last_month": 583,
"isMobileFriendly": false
},
{
@@ -98486,8 +98448,46 @@
"aarch64"
],
"added_at": 1568102336,
- "trending": 11.572352389267188,
- "installs_last_month": 529,
+ "trending": 8.30209628574031,
+ "installs_last_month": 538,
+ "isMobileFriendly": false
+ },
+ {
+ "name": "SiYuan",
+ "keywords": null,
+ "summary": "A privacy-first personal knowledge management system, support fine-grained block-level reference and Markdown WYSIWYG",
+ "description": "Block editing: SiYuan, the only important core concept is Content block. The content block\n can be formed through the formatting format, so that we can organize our thoughts and\n knowledge at the block-level granularity, and it is also convenient for reading and outputting\n long content.\n Privacy security Encrypted cloud, worry-free privacy: Data is stored entirely on the device\n under the control of the user. Even if there is no network, even if the cloud service is down,\n it can still be used locally without restrictions. No offline, no notes.\n Bidirectional link: Documentation page are also blocks, reducing mental load. All content\n exists on a block basis, and documentation pages are no exception. Blocks can be converted to\n each other, splitting, reorganizing and moving do not affect existing links.\n List outline: Sort out the main points, logically layered\n Multi-device data sync: Keep data complete and consistent\n ------------------------\n \n ⚠️This distribution is maintained by volunteers, not by SiYuan team.⚠️\n \n \n Project URL: \n \n \n \n https://github.com/flathub/org.b3log.siyuan\n \n \n \n Contributions are welcome.\n \n ",
+ "id": "org_b3log_siyuan",
+ "type": "desktop-application",
+ "translations": {},
+ "project_license": "AGPL-3.0",
+ "is_free_license": true,
+ "app_id": "org.b3log.siyuan",
+ "icon": "https://dl.flathub.org/media/org/b3log/siyuan/d622392e224de587633c4349825c218c/icons/128x128/org.b3log.siyuan.png",
+ "main_categories": "utility",
+ "sub_categories": [
+ "TextTools",
+ "WordProcessor",
+ "Spreadsheet",
+ "TextEditor",
+ "Office"
+ ],
+ "developer_name": "SiYuan Flatpak Community",
+ "verification_verified": false,
+ "verification_method": "none",
+ "verification_login_name": null,
+ "verification_login_provider": null,
+ "verification_login_is_organization": null,
+ "verification_website": null,
+ "verification_timestamp": null,
+ "runtime": "org.freedesktop.Platform/x86_64/24.08",
+ "updated_at": 1742891749,
+ "arches": [
+ "x86_64"
+ ],
+ "added_at": 1700218429,
+ "trending": 0.4545019940114996,
+ "installs_last_month": 517,
"isMobileFriendly": false
},
{
@@ -98552,8 +98552,8 @@
"aarch64"
],
"added_at": 1712517656,
- "trending": 14.446195026313257,
- "installs_last_month": 518,
+ "trending": 15.152676733158684,
+ "installs_last_month": 506,
"isMobileFriendly": false
},
{
@@ -98586,8 +98586,8 @@
"x86_64"
],
"added_at": 1651738162,
- "trending": 5.912120355777857,
- "installs_last_month": 388,
+ "trending": 8.90569025833377,
+ "installs_last_month": 386,
"isMobileFriendly": false
},
{
@@ -98621,8 +98621,8 @@
"aarch64"
],
"added_at": 1676449202,
- "trending": 7.013758615056657,
- "installs_last_month": 193,
+ "trending": 7.376402073067035,
+ "installs_last_month": 191,
"isMobileFriendly": false
},
{
@@ -98656,8 +98656,8 @@
"aarch64"
],
"added_at": 1740295968,
- "trending": -0.6134764884879245,
- "installs_last_month": 178,
+ "trending": 0.250489109666026,
+ "installs_last_month": 180,
"isMobileFriendly": false
},
{
@@ -98691,8 +98691,8 @@
"aarch64"
],
"added_at": 1680597461,
- "trending": -0.8032406840727047,
- "installs_last_month": 143,
+ "trending": 1.1759977633884693,
+ "installs_last_month": 146,
"isMobileFriendly": false
},
{
@@ -98734,8 +98734,8 @@
"aarch64"
],
"added_at": 1618816783,
- "trending": 2.078410545913587,
- "installs_last_month": 117,
+ "trending": 1.4299744319638268,
+ "installs_last_month": 122,
"isMobileFriendly": false
},
{
@@ -98772,8 +98772,8 @@
"aarch64"
],
"added_at": 1539453265,
- "trending": 8.47588991114655,
- "installs_last_month": 89,
+ "trending": 11.552784998381258,
+ "installs_last_month": 91,
"isMobileFriendly": false
},
{
@@ -98818,8 +98818,8 @@
"aarch64"
],
"added_at": 1716271135,
- "trending": 9.645600980718877,
- "installs_last_month": 65,
+ "trending": 7.757581928399583,
+ "installs_last_month": 71,
"isMobileFriendly": false
},
{
@@ -98881,8 +98881,8 @@
"aarch64"
],
"added_at": 1675684562,
- "trending": 6.3109232953970045,
- "installs_last_month": 44,
+ "trending": 8.37187584358851,
+ "installs_last_month": 46,
"isMobileFriendly": false
},
{
@@ -98987,7 +98987,7 @@
],
"added_at": 1565983830,
"trending": 11.66816748544458,
- "installs_last_month": 40,
+ "installs_last_month": 39,
"isMobileFriendly": false
}
],
@@ -99039,8 +99039,8 @@
"aarch64"
],
"added_at": 1612472407,
- "trending": 7.109864619042586,
- "installs_last_month": 2324,
+ "trending": 7.486361548966417,
+ "installs_last_month": 2292,
"isMobileFriendly": false
},
{
@@ -99153,8 +99153,8 @@
"aarch64"
],
"added_at": 1705654617,
- "trending": 14.726766867452753,
- "installs_last_month": 2095,
+ "trending": 14.055339140122204,
+ "installs_last_month": 2100,
"isMobileFriendly": true
},
{
@@ -99239,8 +99239,8 @@
"aarch64"
],
"added_at": 1716967099,
- "trending": 14.306426522919573,
- "installs_last_month": 1663,
+ "trending": 13.942716196320918,
+ "installs_last_month": 1614,
"isMobileFriendly": true
},
{
@@ -99278,8 +99278,8 @@
"aarch64"
],
"added_at": 1721209624,
- "trending": 14.276030973491444,
- "installs_last_month": 1500,
+ "trending": 14.844113751378655,
+ "installs_last_month": 1561,
"isMobileFriendly": false
},
{
@@ -99358,8 +99358,8 @@
"aarch64"
],
"added_at": 1715582157,
- "trending": 15.463039219255805,
- "installs_last_month": 916,
+ "trending": 14.24792148983823,
+ "installs_last_month": 885,
"isMobileFriendly": true
},
{
@@ -99396,8 +99396,8 @@
"x86_64"
],
"added_at": 1700218429,
- "trending": 0.8130759066381442,
- "installs_last_month": 542,
+ "trending": 0.4545019940114996,
+ "installs_last_month": 517,
"isMobileFriendly": false
},
{
@@ -99462,8 +99462,8 @@
"aarch64"
],
"added_at": 1712517656,
- "trending": 14.446195026313257,
- "installs_last_month": 518,
+ "trending": 15.152676733158684,
+ "installs_last_month": 506,
"isMobileFriendly": false
},
{
@@ -99502,7 +99502,7 @@
],
"added_at": 1737899884,
"trending": 9.981049654502325,
- "installs_last_month": 212,
+ "installs_last_month": 208,
"isMobileFriendly": false
},
{
@@ -99536,8 +99536,8 @@
"aarch64"
],
"added_at": 1692420724,
- "trending": 5.448364542419402,
- "installs_last_month": 160,
+ "trending": 7.376490271718718,
+ "installs_last_month": 153,
"isMobileFriendly": false
},
{
@@ -99622,8 +99622,8 @@
"aarch64"
],
"added_at": 1634030405,
- "trending": 12.436117904727135,
- "installs_last_month": 14,
+ "trending": 12.512932110661064,
+ "installs_last_month": 18,
"isMobileFriendly": false
}
],