From b318177a561f8bfa1ebd1966662a132deb0b1210 Mon Sep 17 00:00:00 2001 From: GloriousEggroll Date: Fri, 4 Apr 2025 22:58:52 -0600 Subject: [PATCH] tiny bit of gui cleanup --- main.py | 627 +- subcategories_data.json | 19012 +++++++++++++++++++------------------- 2 files changed, 9857 insertions(+), 9782 deletions(-) diff --git a/main.py b/main.py index 048c99e..8b6afa5 100755 --- a/main.py +++ b/main.py @@ -25,6 +25,7 @@ class MainWindow(Gtk.Window): self.current_component_type = None self.category_results = [] # Initialize empty list self.subcategory_results = [] # Initialize empty list + self.subcategory_buttons = {} self.collection_results = [] # Initialize empty list self.installed_results = [] # Initialize empty list self.updates_results = [] # Initialize empty list @@ -179,16 +180,101 @@ class MainWindow(Gtk.Window): font-size: 24px; font-weight: bold; padding: 12px; - color: white; + } + .top-bar { + margin: 0px; + padding: 10px; + border: 0px; + } + + # revealer and tool_box are hidden components inside GtkSearchBar + # This gets rid of the stupid grey line the tool_box causes. + #search_hidden_revealer, + #search_hidden_tool_box { + background: transparent; + border: none; + box-shadow: none; + background-image: none; + border-image: none; + padding: 0px; + margin: 0px; + } + + .category-group-header { + padding: 6px; + margin: 0; + font-weight: bold; + } + .category-button { + border: 0px; + padding: 6px; + margin: 0; + background: none; + } + + .pan-button { + border: 0px; + padding: 6px; + margin: 0; + background: none; + box-shadow: none; + } + + .no-scroll-bars scrollbar { + min-width: 0px; + opacity: 0; + margin-top: -20px; + } + + .subcategory-group-header { + padding: 6px; + margin: 0; + } + .subcategory-group-header active { + padding: 6px; + margin: 0; + font-weight: bold; + } + .subcategory-button { + border: 0px; + padding: 6px; + margin: 0; + background: none; + } + .subcategory-button.active { + font-weight: bold; + } + + .subcategories-scroll { + border: none; + background-color: transparent; + min-height: 40px; + } + + .repo-item { + padding: 6px; + margin: 2px; + border-bottom: 1px solid #eee; + } + .repo-delete-button { + border: none; + padding: 6px; + margin-left: 6px; } .repo-list-header { font-size: 18px; - padding: 5px; - color: white; + padding: 5px;; } + + .app-window { + border: 0px; + margin: 0px; + padding-right: 20px; + background: none; + } + .app-list-header { font-size: 18px; - color: white; padding-top: 4px; padding-bottom: 4px; } @@ -200,99 +286,20 @@ class MainWindow(Gtk.Window): font-size: 24px; font-weight: bold; padding: 12px; - color: white; - } - .dark-header { - background-color: #333333; - padding: 6px; - margin: 0; - } - .dark-category-button { - border: 0px; - padding: 6px; - margin: 0; - background: none; - } - .dark-category-button-active { - background-color: #18A3FF; - color: white; - } - .dark-remove-button { - background-color: #ff4444; - color: white; - border: none; - padding: 6px; - margin: 0; - } - .dark-install-button { - background-color: #18A3FF; - color: white; - border: none; - padding: 6px; - margin: 0; - } - .repo-item { - padding: 6px; - margin: 2px; - border-bottom: 1px solid #eee; - } - .repo-delete-button { - background-color: #ff4444; - color: white; - border: none; - padding: 6px; - margin-left: 6px; - } - .search-entry { - padding: 5px; - border-radius: 4px; - border: 1px solid #ccc; } - .search-entry:focus { - border-color: #18A3FF; - box-shadow: 0 0 0 2px rgba(24, 163, 255, 0.2); - } - .item-repo-label { - background-color: #333333; - color: white; + .app-repo-label { border-radius: 4px; margin: 2px; padding: 2px 4px; font-size: 0.8em; } - .dark-category-button { - border: 0px; - padding: 6px; - margin: 0; - background: none; - } - .dark-category-button-active { - background-color: #18A3FF; - color: white; - } - - .subcategories-scroll { - border: none; - background-color: transparent; - min-height: 40px; - } - - .subcategories-scroll > GtkViewport { - border: none; - background-color: transparent; - } - .no-scroll-bars scrollbar { - min-width: 0px; - opacity: 0; - margin-top: -20px; - } - .app-window { - border: 0px; - margin: 0px; - padding-right: 20px; - background: none; + .app-type-label { + border-radius: 4px; + margin: 2px; + padding: 2px 4px; + font-size: 0.8em; } .screenshot-bullet { color: #18A3FF; @@ -321,13 +328,28 @@ class MainWindow(Gtk.Window): padding: 20px; background: none; } + combobox, + combobox box, + combobox button { + font-size: 12px; + padding-top: 0px; + padding-bottom: 0px; + margin: 0px; + min-height: 0px; + } + button { + padding-top: 0px; + padding-bottom: 0px; + margin: 0px; + min-height: 0px; + } """) # Add CSS provider to the default screen Gtk.StyleContext.add_provider_for_screen( Gdk.Screen.get_default(), css_provider, - 600 + Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION + 600 ) # Create main layout @@ -341,8 +363,8 @@ class MainWindow(Gtk.Window): # Create panels self.create_panels() - self.refresh_data() - #self.refresh_local() + #self.refresh_data() + self.refresh_local() # Select Trending by default self.select_default_category() @@ -371,29 +393,38 @@ class MainWindow(Gtk.Window): def create_header_bar(self): # Create horizontal bar self.top_bar = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL) + self.top_bar.get_style_context().add_class("top-bar") self.top_bar.set_hexpand(True) self.top_bar.set_vexpand(False) self.top_bar.set_spacing(6) - self.top_bar.set_border_width(0) # Remove border width - self.top_bar.set_margin_top(0) # Remove top margin - self.top_bar.set_margin_bottom(0) # Remove bottom margin # Add search bar self.searchbar = Gtk.SearchBar() # Use self.searchbar instead of searchbar + self.searchbar.set_show_close_button(False) self.searchbar.set_hexpand(False) self.searchbar.set_vexpand(False) - self.searchbar.set_margin_bottom(6) - self.searchbar.set_margin_bottom(0) # Remove bottom margin - self.searchbar.set_margin_top(0) # Remove top margin + self.searchbar.set_margin_top(0) + self.searchbar.set_margin_bottom(0) + self.searchbar.set_margin_start(0) + self.searchbar.set_margin_end(0) + revealer = self.searchbar.get_children()[0] + revealer.set_name("search_hidden_revealer") + revealer.set_margin_top(0) + revealer.set_margin_bottom(0) + revealer.set_margin_start(0) + revealer.set_margin_end(0) + tool_box = revealer.get_children()[0] + tool_box.set_name("search_hidden_tool_box") + tool_box.set_margin_top(0) + tool_box.set_margin_bottom(0) + tool_box.set_margin_start(0) + tool_box.set_margin_end(0) # Create search entry with icon searchentry = Gtk.SearchEntry() searchentry.set_placeholder_text("Search applications...") searchentry.set_icon_from_gicon(Gtk.EntryIconPosition.PRIMARY, Gio.Icon.new_for_string('search')) - searchentry.set_margin_top(0) # Remove top margin - searchentry.set_margin_bottom(0) # Remove bottom margin - searchentry.set_size_request(-1, 10) # Set specific height # Connect search entry signals searchentry.connect("search-changed", self.on_search_changed) @@ -411,6 +442,7 @@ class MainWindow(Gtk.Window): self.component_type_combo = Gtk.ComboBoxText() self.component_type_combo.set_hexpand(False) self.component_type_combo.set_vexpand(False) + self.component_type_combo.set_wrap_width(1) self.component_type_combo.set_size_request(150, -1) # Set width in pixels self.component_type_combo.connect("changed", self.on_component_type_changed) @@ -434,7 +466,6 @@ class MainWindow(Gtk.Window): 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 @@ -442,7 +473,6 @@ class MainWindow(Gtk.Window): refresh_metadata_button.set_tooltip_text("Refresh metadata") refresh_metadata_button_icon = Gio.Icon.new_for_string('system-reboot-symbolic') refresh_metadata_button.set_image(Gtk.Image.new_from_gicon(refresh_metadata_button_icon, Gtk.IconSize.BUTTON)) - refresh_metadata_button.get_style_context().add_class("dark-install-button") refresh_metadata_button.connect("clicked", self.on_refresh_metadata_button_clicked) # Create system mode switch box @@ -682,7 +712,7 @@ class MainWindow(Gtk.Window): for group_name, categories in groups.items(): # Create a box for the header header_box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL) - header_box.get_style_context().add_class("dark-header") + header_box.get_style_context().add_class("category-group-header") header_box.set_hexpand(True) # Make the box expand horizontally # Create the label @@ -695,6 +725,7 @@ class MainWindow(Gtk.Window): # Add the box to the container container.pack_start(header_box, False, False, 0) + container.pack_start(Gtk.Separator(orientation=Gtk.Orientation.HORIZONTAL), False, False, 0) # Store widgets for this group self.category_widgets[group_name] = [] @@ -712,7 +743,7 @@ class MainWindow(Gtk.Window): category_label = Gtk.Label(label=display_title) category_label.set_halign(Gtk.Align.START) category_label.set_hexpand(True) - category_label.get_style_context().add_class("dark-category-button") + category_label.get_style_context().add_class("category-button") # Add label to the box category_box.add(category_label) @@ -811,23 +842,40 @@ class MainWindow(Gtk.Window): self.display_apps(apps) def on_category_clicked(self, category, group, *args): - # Remove active state from all widgets in all groups + # Remove active state and reset labels for all widgets for group_name in self.category_widgets: for widget in self.category_widgets[group_name]: - widget.get_style_context().remove_class("dark-category-button-active") + label = widget.get_children()[0] + label.set_use_markup(False) - # Add active state to the clicked category + # Loop through known original titles to find a match + for grp in self.category_groups: + for key, val in self.category_groups[grp].items(): + # Escape val for comparison with possible markup in label + safe_val = GLib.markup_escape_text(val) + if safe_val in label.get_text() or val in label.get_text(): + label.set_label(val) + break + + # Add active state and markup icon display_title = self.category_groups[group][category] for widget in self.category_widgets[group]: - if widget.get_children()[0].get_label() == display_title: - widget.get_style_context().add_class("dark-category-button-active") + label = widget.get_children()[0] + if label.get_text() == display_title: + safe_title = GLib.markup_escape_text(display_title) + markup = f"{safe_title} " + label.set_markup(markup) break + self.current_page = category self.current_group = group self.update_category_header(category) self.update_subcategories_bar(category) self.show_category_apps(category) + + + def refresh_current_page(self): """Refresh the currently displayed page""" if self.current_page and self.current_group: @@ -845,7 +893,9 @@ class MainWindow(Gtk.Window): else: # Find the parent category and get the title for parent_category, subcategories in self.subcategory_groups.items(): if category in subcategories: - display_title = subcategories[category] + parent_title = self.category_groups['categories'].get(parent_category, parent_category) + subcat_title = subcategories[category] + display_title = f"{parent_title} » {subcat_title}" break if display_title == "": # Fallback if category isn't found @@ -870,10 +920,10 @@ class MainWindow(Gtk.Window): self.subcategories_bar.set_hexpand(True) self.subcategories_bar.set_spacing(6) self.subcategories_bar.set_border_width(6) - #self.subcategories_bar.get_style_context().add_class("dark-header") self.subcategories_bar.set_visible(False) self.subcategories_bar.set_halign(Gtk.Align.FILL) # Ensure full width self.right_panel.pack_start(self.subcategories_bar, False, False, 0) + self.right_panel.pack_start(Gtk.Separator(orientation=Gtk.Orientation.HORIZONTAL), False, False, 0) # Create scrollable area scrolled_window = Gtk.ScrolledWindow() @@ -891,164 +941,174 @@ class MainWindow(Gtk.Window): self.right_panel.pack_start(scrolled_window, True, True, 0) return self.right_panel - def update_subcategories_bar(self, category): - """Update the subcategories bar based on the current category.""" - # Clear existing subcategories - for child in self.subcategories_bar.get_children(): - child.destroy() - - # Create pan start button - pan_start = Gtk.Button() - pan_start_icon = Gio.Icon.new_for_string('pan-start-symbolic') - pan_start.set_image(Gtk.Image.new_from_gicon(pan_start_icon, Gtk.IconSize.BUTTON)) - pan_start.get_style_context().add_class("dark-category-button") - pan_start.connect("clicked", self.on_pan_start) - - # Create scrolled window - self.scrolled_window = Gtk.ScrolledWindow() - self.scrolled_window.set_hexpand(True) - self.scrolled_window.set_vexpand(False) - self.scrolled_window.set_size_request(-1, 40) - self.scrolled_window.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.NEVER) - self.scrolled_window.set_min_content_width(0) # Allow shrinking below content size - self.scrolled_window.set_max_content_width(-1) # No artificial width limit - self.scrolled_window.set_overlay_scrolling(False) - self.scrolled_window.get_style_context().add_class("no-scroll-bars") - - # Create container for subcategories + def create_subcategory_container(self): container = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL) container.set_spacing(6) container.set_border_width(6) container.set_hexpand(True) container.set_halign(Gtk.Align.CENTER) container.set_homogeneous(False) + return container + + def create_scroll_buttons(self): + pan_start = Gtk.Button() + pan_start_icon = Gio.Icon.new_for_string('pan-start-symbolic') + pan_start.set_image(Gtk.Image.new_from_gicon(pan_start_icon, Gtk.IconSize.BUTTON)) + pan_start.get_style_context().add_class("pan-button") + pan_start.connect("clicked", self.on_pan_start) + + pan_end = Gtk.Button() + pan_end_icon = Gio.Icon.new_for_string('pan-end-symbolic') + pan_end.set_image(Gtk.Image.new_from_gicon(pan_end_icon, Gtk.IconSize.BUTTON)) + pan_end.get_style_context().add_class("pan-button") + pan_end.connect("clicked", self.on_pan_end) + + return pan_start, pan_end + + def build_subcategory_bar(self, category): + container = self.create_subcategory_container() + + for subcategory, title in self.subcategory_groups[category].items(): + subcategory_box = Gtk.EventBox() + subcategory_box.set_hexpand(False) + subcategory_box.set_halign(Gtk.Align.START) + subcategory_box.set_margin_top(2) + subcategory_box.set_margin_bottom(2) + + label = Gtk.Label(label=title) + label.set_halign(Gtk.Align.START) + label.set_hexpand(False) + label.get_style_context().add_class("subcategory-button") + + if subcategory == category: + label.get_style_context().add_class("selected") + + subcategory_box.add(label) + subcategory_box.connect( + "button-release-event", + lambda widget, event, subcat=subcategory: self.on_subcategory_clicked(subcat) + ) + + self.subcategory_buttons[subcategory] = label + container.pack_start(subcategory_box, False, False, 0) + + return container + + def build_subcategory_context_view(self, category, parent_category): + container = self.create_subcategory_container() + + parent_box = Gtk.EventBox() + parent_box.set_hexpand(False) + parent_box.set_halign(Gtk.Align.START) + parent_box.set_margin_top(2) + parent_box.set_margin_bottom(2) + + parent_label = Gtk.Label(label=self.category_groups['categories'][parent_category]) + parent_label.set_halign(Gtk.Align.START) + parent_label.set_hexpand(False) + parent_label.get_style_context().add_class("subcategory-button") + + parent_box.add(parent_label) + parent_box.connect( + "button-release-event", + lambda widget, event, cat=parent_category, grp='categories': + self.on_category_clicked(cat, grp) + ) + container.pack_start(parent_box, False, False, 0) + + subcategory_box = Gtk.EventBox() + subcategory_box.set_hexpand(False) + subcategory_box.set_halign(Gtk.Align.START) + subcategory_box.set_margin_top(2) + subcategory_box.set_margin_bottom(2) + + subcategory_label = Gtk.Label(label=self.subcategory_groups[parent_category][category]) + subcategory_label.set_halign(Gtk.Align.START) + subcategory_label.set_hexpand(False) + subcategory_label.get_style_context().add_class("subcategory-button") + subcategory_box.add(subcategory_label) + subcategory_box.connect( + "button-release-event", + lambda widget, event, subcat=category: + self.on_subcategory_clicked(subcat) + ) + container.pack_start(subcategory_box, False, False, 0) + + return container + + def scroll_to_widget(self, widget): + """Scrolls the scrolled window to ensure the widget is fully visible.""" + adjustment = self.scrolled_window.get_hadjustment() + + # Container is the Gtk.Box inside the scrolled window + container = self.scrolled_window.get_child() + if not container: + return False + + # Translate widget's position relative to the container + widget_coords = widget.translate_coordinates(container, 0, 0) + if not widget_coords: + return False + + widget_x, _ = widget_coords + widget_width = widget.get_allocated_width() + view_start = adjustment.get_value() + view_end = view_start + adjustment.get_page_size() + + # Scroll only if the widget is outside the visible area + if widget_x < view_start: + adjustment.set_value(widget_x) + elif (widget_x + widget_width) > view_end: + adjustment.set_value(widget_x + widget_width - adjustment.get_page_size()) + + return False + + def update_subcategories_bar(self, category): + for child in self.subcategories_bar.get_children(): + child.destroy() + self.subcategory_buttons.clear() + + if not hasattr(self, 'scrolled_window'): + self.scrolled_window = Gtk.ScrolledWindow() + + for child in self.scrolled_window.get_children(): + child.destroy() + + self.scrolled_window.set_hexpand(True) + self.scrolled_window.set_vexpand(False) + self.scrolled_window.set_size_request(-1, 40) + self.scrolled_window.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.NEVER) + self.scrolled_window.set_min_content_width(0) + self.scrolled_window.set_max_content_width(-1) + self.scrolled_window.set_overlay_scrolling(False) + self.scrolled_window.get_style_context().add_class("no-scroll-bars") + + pan_start, pan_end = self.create_scroll_buttons() + self.subcategories_bar.get_style_context().add_class("subcategory-group-header") + self.subcategories_bar.set_visible(True) - # Check if the category has subcategories if category in self.subcategory_groups: - # Add subcategories - for subcategory, title in self.subcategory_groups[category].items(): - # Create clickable box for subcategory - subcategory_box = Gtk.EventBox() - subcategory_box.set_hexpand(False) - subcategory_box.set_halign(Gtk.Align.START) - subcategory_box.set_margin_top(2) - subcategory_box.set_margin_bottom(2) - - # Create label for subcategory - subcategory_label = Gtk.Label(label=title) - subcategory_label.set_halign(Gtk.Align.START) - subcategory_label.set_hexpand(False) - subcategory_label.get_style_context().add_class("dark-category-button") - - # Add label to box - subcategory_box.add(subcategory_label) - - # Connect click event - subcategory_box.connect("button-release-event", - lambda widget, event, subcat=subcategory: - self.on_subcategory_clicked(subcat)) - - # Store widget in group - container.pack_start(subcategory_box, False, False, 0) - - # Add container to scrolled window - self.scrolled_window.add(container) - - # Create pan end button - pan_end = Gtk.Button() - pan_end_icon = Gio.Icon.new_for_string('pan-end-symbolic') - pan_end.set_image(Gtk.Image.new_from_gicon(pan_end_icon, Gtk.IconSize.BUTTON)) - pan_end.get_style_context().add_class("dark-category-button") - pan_end.connect("clicked", self.on_pan_end) - - # Show the bar and force a layout update - self.subcategories_bar.get_style_context().add_class("dark-header") - self.subcategories_bar.set_visible(True) - self.subcategories_bar.pack_start(pan_start, False, False, 0) - self.subcategories_bar.pack_start(self.scrolled_window, True, True, 0) - self.subcategories_bar.pack_start(pan_end, False, False, 0) - #self.subcategories_bar.pack_start(container, True, True, 0) - self.subcategories_bar.queue_resize() - self.subcategories_bar.show_all() + container = self.build_subcategory_bar(category) else: - # Check if current category is a subcategory - is_subcategory = False - parent_category = None - for parent, subcategories in self.subcategory_groups.items(): - if category in subcategories: - is_subcategory = True - parent_category = parent - break - - if is_subcategory: - # Add parent category and current subcategory - container = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL) - container.set_spacing(6) - container.set_border_width(6) - container.set_hexpand(True) - container.set_halign(Gtk.Align.CENTER) - - # Create parent category box - parent_box = Gtk.EventBox() - parent_box.set_hexpand(False) - parent_box.set_halign(Gtk.Align.START) - parent_box.set_margin_top(2) - parent_box.set_margin_bottom(2) - - # Create parent label - parent_label = Gtk.Label(label=self.category_groups['categories'][parent_category]) - parent_label.set_halign(Gtk.Align.START) - parent_label.set_hexpand(False) - parent_label.get_style_context().add_class("dark-category-button") - - # Add label to box - parent_box.add(parent_label) - - # Connect click event - parent_box.connect("button-release-event", - lambda widget, event, cat=parent_category, grp='categories': - self.on_category_clicked(cat, grp)) - - # Add parent box to container - container.pack_start(parent_box, False, False, 0) - - # Create current subcategory box - subcategory_box = Gtk.EventBox() - subcategory_box.set_hexpand(False) - subcategory_box.set_halign(Gtk.Align.START) - subcategory_box.set_margin_top(2) - subcategory_box.set_margin_bottom(2) - - # Create subcategory label - subcategory_label = Gtk.Label(label=self.subcategory_groups[parent_category][category]) - subcategory_label.set_halign(Gtk.Align.START) - subcategory_label.set_hexpand(False) - subcategory_label.get_style_context().add_class("dark-category-button") - - # Add label to box - subcategory_box.add(subcategory_label) - - # Connect click event - subcategory_box.connect("button-release-event", - lambda widget, event, subcat=category: - self.on_subcategory_clicked(subcat)) - - # Add subcategory box to container - container.pack_start(subcategory_box, False, False, 0) - - # Add container to scrolled window - self.scrolled_window.add(container) - self.subcategories_bar.get_style_context().add_class("dark-header") - # Show the bar and force a layout update - self.subcategories_bar.set_visible(True) - self.subcategories_bar.pack_start(self.scrolled_window, True, True, 0) - #self.subcategories_bar.pack_start(container, True, True, 0) - self.subcategories_bar.queue_resize() - self.subcategories_bar.show_all() + parent_category = self.get_parent_category(category) + if parent_category: + container = self.build_subcategory_context_view(category, parent_category) else: - self.subcategories_bar.get_style_context().remove_class("dark-header") - # Hide the bar and force a layout update self.subcategories_bar.set_visible(False) + return + + self.scrolled_window.add(container) + self.subcategories_bar.pack_start(pan_start, False, False, 0) + self.subcategories_bar.pack_start(self.scrolled_window, True, True, 0) + self.subcategories_bar.pack_start(pan_end, False, False, 0) + self.subcategories_bar.queue_resize() + self.subcategories_bar.show_all() + + def get_parent_category(self, subcategory): + for parent, subcats in self.subcategory_groups.items(): + if subcategory in subcats: + return parent + return None def on_pan_start(self, button): # Get the scrolled window's adjustment @@ -1062,14 +1122,40 @@ class MainWindow(Gtk.Window): # Scroll to the right by a page adjustment.set_value(adjustment.get_value() + adjustment.get_page_size()) + def highlight_selected_subcategory(self, selected_subcat): + for subcat, widget in self.subcategory_buttons.items(): + if subcat == selected_subcat: + widget.get_style_context().add_class("active") + else: + widget.get_style_context().remove_class("active") + + # Scroll to make sure the selected subcategory is visible + selected_widget = self.subcategory_buttons.get(selected_subcat) + if selected_widget: + adj = self.scrolled_window.get_hadjustment() + alloc = selected_widget.get_allocation() + new_value = alloc.x + alloc.width / 2 - adj.get_page_size() / 2 + adj.set_value(max(0, new_value)) + def on_subcategory_clicked(self, subcategory): """Handle subcategory button clicks.""" - # Update the current page to the subcategory + # Remove 'selected' from all subcategory buttons + for label in self.subcategory_buttons.values(): + label.get_style_context().remove_class("selected") + + # Add 'selected' to the clicked one + if subcategory in self.subcategory_buttons: + self.subcategory_buttons[subcategory].get_style_context().add_class("selected") + + # Update current state self.current_page = subcategory self.current_group = 'subcategories' self.update_category_header(subcategory) - self.update_subcategories_bar(subcategory) + self.highlight_selected_subcategory(subcategory) self.show_category_apps(subcategory) + if subcategory in self.subcategory_buttons: + selected_widget = self.subcategory_buttons[subcategory] + GLib.idle_add(self.scroll_to_widget, selected_widget) # Create and connect buttons def create_button(self, callback, app, label=None, condition=None): @@ -1204,15 +1290,12 @@ class MainWindow(Gtk.Window): add_repo_button = Gtk.Button() add_icon = Gio.Icon.new_for_string('list-add') add_repo_button.set_image(Gtk.Image.new_from_gicon(add_icon, Gtk.IconSize.BUTTON)) - add_repo_button.get_style_context().add_class("dark-install-button") add_repo_button.connect("clicked", self.on_add_repo_button_clicked) add_flathub_repo_button = Gtk.Button(label="Add Flathub Repo") - add_flathub_repo_button.get_style_context().add_class("dark-install-button") add_flathub_repo_button.connect("clicked", self.on_add_flathub_repo_button_clicked) add_flathub_beta_repo_button = Gtk.Button(label="Add Flathub Beta Repo") - add_flathub_beta_repo_button.get_style_context().add_class("dark-install-button") add_flathub_beta_repo_button.connect("clicked", self.on_add_flathub_beta_repo_button_clicked) # Check for existing Flathub repositories and disable buttons accordingly @@ -1370,8 +1453,8 @@ class MainWindow(Gtk.Window): kind_box.set_halign(Gtk.Align.START) kind_box.set_valign(Gtk.Align.START) - kind_label = Gtk.Label(label=details['kind']) - kind_label.get_style_context().add_class("item-repo-label") + kind_label = Gtk.Label(label=f"◆ {details['kind']}") + kind_label.get_style_context().add_class("app-type-label") kind_label.set_halign(Gtk.Align.START) kind_box.pack_end(kind_label, False, False, 0) @@ -1383,8 +1466,8 @@ class MainWindow(Gtk.Window): # Add repository labels for repo in sorted(app_data['repos']): - repo_label = Gtk.Label(label=repo) - repo_label.get_style_context().add_class("item-repo-label") + repo_label = Gtk.Label(label=f"⯈ {repo}") + repo_label.get_style_context().add_class("app-repo-label") repo_label.set_halign(Gtk.Align.END) repo_box.pack_end(repo_label, False, False, 0) @@ -1413,7 +1496,6 @@ class MainWindow(Gtk.Window): condition=lambda x: True ) add_rm_icon = "list-remove" - add_rm_style = "dark-remove-button" else: button = self.create_button( self.on_install_clicked, @@ -1422,12 +1504,10 @@ class MainWindow(Gtk.Window): condition=lambda x: True ) add_rm_icon = "list-add" - add_rm_style = "dark-install-buton" if button: use_icon = Gio.Icon.new_for_string(add_rm_icon) button.set_image(Gtk.Image.new_from_gicon(use_icon, Gtk.IconSize.BUTTON)) - button.get_style_context().add_class(add_rm_style) buttons_box.pack_end(button, False, False, 0) # App options button @@ -1439,12 +1519,10 @@ class MainWindow(Gtk.Window): condition=lambda x: True ) add_options_icon = "system-run" - add_options_style = "dark-remove-button" if button: use_icon = Gio.Icon.new_for_string(add_options_icon) button.set_image(Gtk.Image.new_from_gicon(use_icon, Gtk.IconSize.BUTTON)) - button.get_style_context().add_class(add_options_style) buttons_box.pack_end(button, False, False, 0) # Add Update button if available @@ -1458,7 +1536,6 @@ class MainWindow(Gtk.Window): if update_button: update_icon = Gio.Icon.new_for_string('system-software-update-symbolic') update_button.set_image(Gtk.Image.new_from_gicon(update_icon, Gtk.IconSize.BUTTON)) - update_button.get_style_context().add_class("dark-install-button") buttons_box.pack_end(update_button, False, False, 0) # Details button @@ -1470,7 +1547,6 @@ class MainWindow(Gtk.Window): if details_btn: details_icon = Gio.Icon.new_for_string('question') details_btn.set_image(Gtk.Image.new_from_gicon(details_icon, Gtk.IconSize.BUTTON)) - details_btn.get_style_context().add_class("dark-install-button") buttons_box.pack_end(details_btn, False, False, 0) # Donate button with condition @@ -1483,7 +1559,6 @@ class MainWindow(Gtk.Window): if donate_btn: donate_icon = Gio.Icon.new_for_string('donate') donate_btn.set_image(Gtk.Image.new_from_gicon(donate_icon, Gtk.IconSize.BUTTON)) - donate_btn.get_style_context().add_class("dark-install-button") buttons_box.pack_end(donate_btn, False, False, 0) # Add widgets to right box diff --git a/subcategories_data.json b/subcategories_data.json index f274c06..6c54f46 100644 --- a/subcategories_data.json +++ b/subcategories_data.json @@ -166,8 +166,8 @@ "aarch64" ], "added_at": 1515152347, - "trending": 10.020591184133146, - "installs_last_month": 25775, + "trending": 9.782401285924012, + "installs_last_month": 26473, "isMobileFriendly": false }, { @@ -212,8 +212,8 @@ "aarch64" ], "added_at": 1524984209, - "trending": 1.6144544094536433, - "installs_last_month": 11392, + "trending": 1.220845092923534, + "installs_last_month": 11838, "isMobileFriendly": false }, { @@ -248,8 +248,8 @@ "aarch64" ], "added_at": 1524984065, - "trending": 4.065804841483205, - "installs_last_month": 6719, + "trending": 6.039092979786329, + "installs_last_month": 6955, "isMobileFriendly": false }, { @@ -284,8 +284,8 @@ "aarch64" ], "added_at": 1527846441, - "trending": 9.298643825835184, - "installs_last_month": 4640, + "trending": 8.284376697237988, + "installs_last_month": 4779, "isMobileFriendly": false }, { @@ -322,8 +322,8 @@ "aarch64" ], "added_at": 1681218046, - "trending": 7.825065060941292, - "installs_last_month": 3766, + "trending": 7.994843689847951, + "installs_last_month": 3872, "isMobileFriendly": false }, { @@ -367,8 +367,8 @@ "aarch64" ], "added_at": 1584989949, - "trending": 8.51081485782882, - "installs_last_month": 2833, + "trending": 7.936565780400217, + "installs_last_month": 2912, "isMobileFriendly": false }, { @@ -499,43 +499,8 @@ "aarch64" ], "added_at": 1492029291, - "trending": 8.474356795955481, - "installs_last_month": 2275, - "isMobileFriendly": false - }, - { - "name": "SoundConverter", - "keywords": null, - "summary": "Convert audio files", - "description": "\nSoundConverter is the leading audio file converter for the GNOME Desktop.\n\n \nSoundConverter is a simple to use, and very fast audio converter. It can convert multiples files at same the time to speed up the conversion. It can also extract the audio from videos. \n\n ", - "id": "org_soundconverter_SoundConverter", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0", - "is_free_license": true, - "app_id": "org.soundconverter.SoundConverter", - "icon": "https://dl.flathub.org/media/org/soundconverter/SoundConverter/4371c213427fa8a048fbb941f13a5efe/icons/128x128/org.soundconverter.SoundConverter.png", - "main_categories": "audiovideo", - "sub_categories": [ - "AudioVideoEditing" - ], - "developer_name": "Gautier Portet", - "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": 1730361394, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1609404532, - "trending": 8.603522210626592, - "installs_last_month": 2219, + "trending": 9.491454568108576, + "installs_last_month": 2326, "isMobileFriendly": false }, { @@ -720,8 +685,8 @@ "aarch64" ], "added_at": 1507215078, - "trending": 17.061054399148446, - "installs_last_month": 2214, + "trending": 12.197483577050583, + "installs_last_month": 2316, "isMobileFriendly": false }, { @@ -755,8 +720,43 @@ "aarch64" ], "added_at": 1516895653, - "trending": 7.992681357595094, - "installs_last_month": 2207, + "trending": 10.10985147038039, + "installs_last_month": 2299, + "isMobileFriendly": false + }, + { + "name": "SoundConverter", + "keywords": null, + "summary": "Convert audio files", + "description": "\nSoundConverter is the leading audio file converter for the GNOME Desktop.\n\n \nSoundConverter is a simple to use, and very fast audio converter. It can convert multiples files at same the time to speed up the conversion. It can also extract the audio from videos. \n\n ", + "id": "org_soundconverter_SoundConverter", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0", + "is_free_license": true, + "app_id": "org.soundconverter.SoundConverter", + "icon": "https://dl.flathub.org/media/org/soundconverter/SoundConverter/4371c213427fa8a048fbb941f13a5efe/icons/128x128/org.soundconverter.SoundConverter.png", + "main_categories": "audiovideo", + "sub_categories": [ + "AudioVideoEditing" + ], + "developer_name": "Gautier Portet", + "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": 1730361394, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1609404532, + "trending": 8.947753986129545, + "installs_last_month": 2268, "isMobileFriendly": false }, { @@ -916,8 +916,8 @@ "aarch64" ], "added_at": 1659508310, - "trending": 13.950423078462023, - "installs_last_month": 1906, + "trending": 15.065920131041604, + "installs_last_month": 1980, "isMobileFriendly": true }, { @@ -961,8 +961,8 @@ "aarch64" ], "added_at": 1526595771, - "trending": 7.4649784582121885, - "installs_last_month": 1766, + "trending": 8.69260850545022, + "installs_last_month": 1794, "isMobileFriendly": false }, { @@ -1100,8 +1100,8 @@ "aarch64" ], "added_at": 1605608829, - "trending": 11.192559127396455, - "installs_last_month": 1336, + "trending": 13.542691107009198, + "installs_last_month": 1377, "isMobileFriendly": false }, { @@ -1269,8 +1269,8 @@ "aarch64" ], "added_at": 1589480930, - "trending": 11.5176246147508, - "installs_last_month": 1269, + "trending": 9.471467098660336, + "installs_last_month": 1306, "isMobileFriendly": false }, { @@ -1352,8 +1352,8 @@ "aarch64" ], "added_at": 1516283128, - "trending": 13.030056613154922, - "installs_last_month": 1231, + "trending": 9.530553600167314, + "installs_last_month": 1271, "isMobileFriendly": false }, { @@ -1409,8 +1409,8 @@ "aarch64" ], "added_at": 1511268422, - "trending": 6.422178383046858, - "installs_last_month": 1218, + "trending": 6.314050084270202, + "installs_last_month": 1264, "isMobileFriendly": false }, { @@ -1445,8 +1445,8 @@ "aarch64" ], "added_at": 1569627455, - "trending": 1.6902871315901749, - "installs_last_month": 937, + "trending": 2.673503890293246, + "installs_last_month": 953, "isMobileFriendly": false }, { @@ -1483,8 +1483,8 @@ "x86_64" ], "added_at": 1600446687, - "trending": 5.842650455053168, - "installs_last_month": 606, + "trending": 4.968367184157015, + "installs_last_month": 629, "isMobileFriendly": false }, { @@ -1518,8 +1518,8 @@ "aarch64" ], "added_at": 1652338394, - "trending": 1.94158664659126, - "installs_last_month": 292, + "trending": 1.2801898261744304, + "installs_last_month": 299, "isMobileFriendly": false }, { @@ -1665,8 +1665,8 @@ "aarch64" ], "added_at": 1582404328, - "trending": 11.247374583335246, - "installs_last_month": 277, + "trending": 11.995305809123638, + "installs_last_month": 290, "isMobileFriendly": false }, { @@ -1702,8 +1702,8 @@ "aarch64" ], "added_at": 1700645174, - "trending": 6.253486169452835, - "installs_last_month": 197, + "trending": 8.0943372848161, + "installs_last_month": 208, "isMobileFriendly": false }, { @@ -1740,8 +1740,8 @@ "aarch64" ], "added_at": 1735821490, - "trending": 7.005504945515277, - "installs_last_month": 194, + "trending": 3.387244661155712, + "installs_last_month": 196, "isMobileFriendly": false }, { @@ -1781,49 +1781,8 @@ "x86_64" ], "added_at": 1661805822, - "trending": 0.06946144212292804, - "installs_last_month": 157, - "isMobileFriendly": false - }, - { - "name": "pxtone collab", - "keywords": [ - "ptcollab", - "music", - "chiptune", - "pxtone" - ], - "summary": "Multiplayer Music Sequencer", - "description": "\n About: pxtone collab (ptcollab) is a sample-based music editor where you can collaborate with friends! It's based off the music engine of pxtone, a music editor developed by Daisuke \"Pixel\" Amaya, the creator of Cave Story and Kero Blaster.\n \n \n Features: ptcollab has many standard features you might expect from a music editor. If you've used pxtone collage before, the following will be familiar:\n \n \n Note and parameter input (pan, volume, portamento, fine-tuning, effects)\n Instrument import (ptvoice, ogg, wav, ptnoise)\n Song parameter settings (tempo, time signature)\n \n \n In addition, ptcollab supports:\n \n \n Collaborative editing: host a server and have others connect and work with you!\n Session recording: save a frame-by-frame recording of a session and play it back later!\n MIDI input: Record notes either live while the song is playing, or using keyboard controls to step through time.\n \n \n This is a unofficial flatpak package, approved by the community.\n \n ", - "id": "io_github_yuxshao_ptcollab", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT", - "is_free_license": true, - "app_id": "io.github.yuxshao.ptcollab", - "icon": "https://dl.flathub.org/media/io/github/yuxshao.ptcollab/23f34d76516eaa5c68d23abd478c5f0e/icons/128x128/io.github.yuxshao.ptcollab.png", - "main_categories": "audiovideo", - "sub_categories": [ - "Audio", - "AudioVideoEditing" - ], - "developer_name": "pxtone collab", - "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": 1709483812, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1709420160, - "trending": 8.072905233540176, - "installs_last_month": 120, + "trending": 1.6343978422612222, + "installs_last_month": 158, "isMobileFriendly": false }, { @@ -1871,29 +1830,33 @@ "aarch64" ], "added_at": 1559685891, - "trending": 7.678017195512412, - "installs_last_month": 118, + "trending": 7.212763237278819, + "installs_last_month": 127, "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", + "name": "pxtone collab", + "keywords": [ + "ptcollab", + "music", + "chiptune", + "pxtone" + ], + "summary": "Multiplayer Music Sequencer", + "description": "\n About: pxtone collab (ptcollab) is a sample-based music editor where you can collaborate with friends! It's based off the music engine of pxtone, a music editor developed by Daisuke \"Pixel\" Amaya, the creator of Cave Story and Kero Blaster.\n \n \n Features: ptcollab has many standard features you might expect from a music editor. If you've used pxtone collage before, the following will be familiar:\n \n \n Note and parameter input (pan, volume, portamento, fine-tuning, effects)\n Instrument import (ptvoice, ogg, wav, ptnoise)\n Song parameter settings (tempo, time signature)\n \n \n In addition, ptcollab supports:\n \n \n Collaborative editing: host a server and have others connect and work with you!\n Session recording: save a frame-by-frame recording of a session and play it back later!\n MIDI input: Record notes either live while the song is playing, or using keyboard controls to step through time.\n \n \n This is a unofficial flatpak package, approved by the community.\n \n ", + "id": "io_github_yuxshao_ptcollab", "type": "desktop-application", "translations": {}, - "project_license": "GPL-2.0", + "project_license": "MIT", "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", + "app_id": "io.github.yuxshao.ptcollab", + "icon": "https://dl.flathub.org/media/io/github/yuxshao.ptcollab/23f34d76516eaa5c68d23abd478c5f0e/icons/128x128/io.github.yuxshao.ptcollab.png", "main_categories": "audiovideo", "sub_categories": [ "Audio", - "AudioVideoEditing", - "Recorder" + "AudioVideoEditing" ], - "developer_name": "Magnus Hjorth", + "developer_name": "pxtone collab", "verification_verified": false, "verification_method": "none", "verification_login_name": null, @@ -1901,15 +1864,15 @@ "verification_login_is_organization": null, "verification_website": null, "verification_timestamp": null, - "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1699222262, + "runtime": "org.kde.Platform/x86_64/5.15-23.08", + "updated_at": 1709483812, "arches": [ "x86_64", "aarch64" ], - "added_at": 1699222262, - "trending": 2.995800670671661, - "installs_last_month": 115, + "added_at": 1709420160, + "trending": 6.98248716399548, + "installs_last_month": 121, "isMobileFriendly": false }, { @@ -1947,8 +1910,45 @@ "aarch64" ], "added_at": 1516896221, - "trending": 0.1327058038450084, - "installs_last_month": 114, + "trending": 2.628424214968508, + "installs_last_month": 120, + "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.35103857949856, + "installs_last_month": 116, "isMobileFriendly": false }, { @@ -1987,7 +1987,7 @@ ], "added_at": 1515682193, "trending": 0.3101710665733577, - "installs_last_month": 69, + "installs_last_month": 68, "isMobileFriendly": false }, { @@ -2025,8 +2025,8 @@ "aarch64" ], "added_at": 1512404356, - "trending": 7.437229202448085, - "installs_last_month": 65, + "trending": 7.505717866437002, + "installs_last_month": 67, "isMobileFriendly": false }, { @@ -2109,43 +2109,7 @@ ], "added_at": 1516920667, "trending": 0.3444761337350638, - "installs_last_month": 45, - "isMobileFriendly": false - }, - { - "name": "VapourSynth Editor", - "keywords": null, - "summary": "Editor for VapourSynth scripts", - "description": "VapourSynth Editor is a cross-platform editor for VapourSynth scripts.", - "id": "org_bitbucket_mystery_keeper_VapourSynthEditor", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT", - "is_free_license": true, - "app_id": "org.bitbucket.mystery_keeper.VapourSynthEditor", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.bitbucket.mystery_keeper.VapourSynthEditor.png", - "main_categories": "audiovideo", - "sub_categories": [ - "AudioVideoEditing", - "Video" - ], - "developer_name": "Aleksey [Mystery Keeper] Lyashin", - "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-21.08", - "updated_at": 1664459227, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1552511933, - "trending": 9.496160267716316, - "installs_last_month": 42, + "installs_last_month": 43, "isMobileFriendly": false }, { @@ -2184,8 +2148,44 @@ "aarch64" ], "added_at": 1516896295, - "trending": 0.7236059525909909, - "installs_last_month": 34, + "trending": 0.7723066846364941, + "installs_last_month": 41, + "isMobileFriendly": false + }, + { + "name": "VapourSynth Editor", + "keywords": null, + "summary": "Editor for VapourSynth scripts", + "description": "VapourSynth Editor is a cross-platform editor for VapourSynth scripts.", + "id": "org_bitbucket_mystery_keeper_VapourSynthEditor", + "type": "desktop-application", + "translations": {}, + "project_license": "MIT", + "is_free_license": true, + "app_id": "org.bitbucket.mystery_keeper.VapourSynthEditor", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.bitbucket.mystery_keeper.VapourSynthEditor.png", + "main_categories": "audiovideo", + "sub_categories": [ + "AudioVideoEditing", + "Video" + ], + "developer_name": "Aleksey [Mystery Keeper] Lyashin", + "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-21.08", + "updated_at": 1664459227, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1552511933, + "trending": 9.496160267716316, + "installs_last_month": 38, "isMobileFriendly": false }, { @@ -2222,12 +2222,12 @@ ], "added_at": 1515682126, "trending": 0.6358055295311942, - "installs_last_month": 27, + "installs_last_month": 30, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 8, + "processingTimeMs": 9, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -2491,13 +2491,13 @@ "aarch64" ], "added_at": 1708430378, - "trending": 8.96907177557702, - "installs_last_month": 3005, + "trending": 8.423604423674847, + "installs_last_month": 3126, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 3, + "processingTimeMs": 2, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -2545,8 +2545,8 @@ "aarch64" ], "added_at": 1561317361, - "trending": 9.53599877478392, - "installs_last_month": 3679, + "trending": 7.75734441868873, + "installs_last_month": 3822, "isMobileFriendly": false }, { @@ -2607,8 +2607,8 @@ "aarch64" ], "added_at": 1509301060, - "trending": 7.206892347614331, - "installs_last_month": 3351, + "trending": 9.241395582698525, + "installs_last_month": 3456, "isMobileFriendly": false }, { @@ -2652,8 +2652,8 @@ "x86_64" ], "added_at": 1618343817, - "trending": 8.032154068216617, - "installs_last_month": 2780, + "trending": 9.3333685432216, + "installs_last_month": 2765, "isMobileFriendly": false }, { @@ -2694,8 +2694,8 @@ "aarch64" ], "added_at": 1551998072, - "trending": 7.811125377620675, - "installs_last_month": 2189, + "trending": 5.9116534426697465, + "installs_last_month": 2260, "isMobileFriendly": false }, { @@ -2733,8 +2733,8 @@ "aarch64" ], "added_at": 1643381927, - "trending": 12.32000251913954, - "installs_last_month": 1762, + "trending": 12.2105981399068, + "installs_last_month": 1834, "isMobileFriendly": false }, { @@ -2777,8 +2777,8 @@ "aarch64" ], "added_at": 1646984796, - "trending": 6.333867561836902, - "installs_last_month": 1742, + "trending": 6.088183751046275, + "installs_last_month": 1786, "isMobileFriendly": false }, { @@ -2822,8 +2822,8 @@ "aarch64" ], "added_at": 1570423408, - "trending": 5.218242772564884, - "installs_last_month": 1173, + "trending": 5.888243240346581, + "installs_last_month": 1323, "isMobileFriendly": false }, { @@ -2866,46 +2866,8 @@ "aarch64" ], "added_at": 1607504434, - "trending": 0.9041475959494992, - "installs_last_month": 844, - "isMobileFriendly": false - }, - { - "name": "FamiStudio", - "keywords": null, - "summary": "FamiStudio NES Music Editor", - "description": "\n FamiStudio NES Music Editor\n \n ", - "id": "org_famistudio_FamiStudio", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT", - "is_free_license": true, - "app_id": "org.famistudio.FamiStudio", - "icon": "https://dl.flathub.org/media/org/famistudio/FamiStudio/721128ae92bc989a7cc7ef6ee7b4005c/icons/128x128/org.famistudio.FamiStudio.png", - "main_categories": "audiovideo", - "sub_categories": [ - "Audio", - "Sequencer", - "AudioVideoEditing", - "Midi", - "Music" - ], - "developer_name": "BleuBleu", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "famistudio.org", - "verification_timestamp": "1716709882", - "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1740650971, - "arches": [ - "x86_64" - ], - "added_at": 1600446687, - "trending": 5.842650455053168, - "installs_last_month": 606, + "trending": 2.197051209749017, + "installs_last_month": 884, "isMobileFriendly": false }, { @@ -2956,8 +2918,46 @@ "aarch64" ], "added_at": 1643704549, - "trending": 3.0514381221069016, - "installs_last_month": 587, + "trending": 4.8695691304474895, + "installs_last_month": 636, + "isMobileFriendly": false + }, + { + "name": "FamiStudio", + "keywords": null, + "summary": "FamiStudio NES Music Editor", + "description": "\n FamiStudio NES Music Editor\n \n ", + "id": "org_famistudio_FamiStudio", + "type": "desktop-application", + "translations": {}, + "project_license": "MIT", + "is_free_license": true, + "app_id": "org.famistudio.FamiStudio", + "icon": "https://dl.flathub.org/media/org/famistudio/FamiStudio/721128ae92bc989a7cc7ef6ee7b4005c/icons/128x128/org.famistudio.FamiStudio.png", + "main_categories": "audiovideo", + "sub_categories": [ + "Audio", + "Sequencer", + "AudioVideoEditing", + "Midi", + "Music" + ], + "developer_name": "BleuBleu", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "famistudio.org", + "verification_timestamp": "1716709882", + "runtime": "org.freedesktop.Platform/x86_64/23.08", + "updated_at": 1740650971, + "arches": [ + "x86_64" + ], + "added_at": 1600446687, + "trending": 4.968367184157015, + "installs_last_month": 629, "isMobileFriendly": false }, { @@ -2997,8 +2997,8 @@ "aarch64" ], "added_at": 1730517694, - "trending": 4.8411545150327555, - "installs_last_month": 502, + "trending": 5.1653306953120595, + "installs_last_month": 525, "isMobileFriendly": false }, { @@ -3044,90 +3044,8 @@ "aarch64" ], "added_at": 1641662368, - "trending": 6.514475345989212, - "installs_last_month": 486, - "isMobileFriendly": false - }, - { - "name": "dmidiplayer", - "keywords": null, - "summary": "Drumstick Multiplatform MIDI File Player", - "description": "Multiplatform MIDI File Player for Linux, Windows and macOS with advanced features:\n \n MIDI Output to hardware MIDI ports, or any other Drumstick backend like soft-synths\n Transpose song tonality between -12 and +12 semitones\n Change MIDI volume level (using MIDI CC7)\n Scale song speed between half and double tempo\n Piano Players, MIDI Channels, Rhythm, and Lyrics (Karaoke) views\n Supports .MID (Standard MIDI files), .RMI (RIFF RMID), .KAR (MIDI Karaoke), and .WRK (Cakewalk) file formats\n \n ", - "id": "net_sourceforge_dmidiplayer", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0+", - "is_free_license": true, - "app_id": "net.sourceforge.dmidiplayer", - "icon": "https://dl.flathub.org/media/net/sourceforge/dmidiplayer/b9dc9a198c6b5fcb427404d19d1daa28/icons/128x128/net.sourceforge.dmidiplayer.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": "dmidiplayer.sourceforge.io", - "verification_timestamp": "1702676342", - "runtime": "org.kde.Platform/x86_64/6.8", - "updated_at": 1735557946, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1620976072, - "trending": 3.741578850452523, - "installs_last_month": 483, - "isMobileFriendly": false - }, - { - "name": "MusE", - "keywords": [ - "audio", - "sound", - "jackd,DAW", - "multitrack", - "ladspa", - "lv2", - "midi", - "vst" - ], - "summary": "Digital Audio Workstation", - "description": "\n MusE is a MIDI/Audio sequencer with recording and editing capabilities. It can\n perform audio effects like chorus/flanger in real-time via LASH and it supports\n Jack and ALSA interfaces. MusE aims to be a complete multitrack virtual studio\n for Linux.\n \n ", - "id": "io_github_muse_sequencer_Muse", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0+", - "is_free_license": true, - "app_id": "io.github.muse_sequencer.Muse", - "icon": "https://dl.flathub.org/media/io/github/muse_sequencer.Muse/13b63bc06c8b73817e69d7e8681cf3b9/icons/128x128/io.github.muse_sequencer.Muse.png", - "main_categories": "audiovideo", - "sub_categories": [ - "Sequencer", - "Midi", - "Audio" - ], - "developer_name": "Muse Sequencer 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-24.08", - "updated_at": 1735753050, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1620627935, - "trending": 8.981138273026694, - "installs_last_month": 461, + "trending": 6.338613977599891, + "installs_last_month": 507, "isMobileFriendly": false }, { @@ -3184,8 +3102,90 @@ "aarch64" ], "added_at": 1610015828, - "trending": 5.102764112911416, - "installs_last_month": 444, + "trending": 7.309922021447827, + "installs_last_month": 506, + "isMobileFriendly": false + }, + { + "name": "dmidiplayer", + "keywords": null, + "summary": "Drumstick Multiplatform MIDI File Player", + "description": "Multiplatform MIDI File Player for Linux, Windows and macOS with advanced features:\n \n MIDI Output to hardware MIDI ports, or any other Drumstick backend like soft-synths\n Transpose song tonality between -12 and +12 semitones\n Change MIDI volume level (using MIDI CC7)\n Scale song speed between half and double tempo\n Piano Players, MIDI Channels, Rhythm, and Lyrics (Karaoke) views\n Supports .MID (Standard MIDI files), .RMI (RIFF RMID), .KAR (MIDI Karaoke), and .WRK (Cakewalk) file formats\n \n ", + "id": "net_sourceforge_dmidiplayer", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0+", + "is_free_license": true, + "app_id": "net.sourceforge.dmidiplayer", + "icon": "https://dl.flathub.org/media/net/sourceforge/dmidiplayer/b9dc9a198c6b5fcb427404d19d1daa28/icons/128x128/net.sourceforge.dmidiplayer.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": "dmidiplayer.sourceforge.io", + "verification_timestamp": "1702676342", + "runtime": "org.kde.Platform/x86_64/6.8", + "updated_at": 1735557946, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1620976072, + "trending": 3.3533913532357573, + "installs_last_month": 493, + "isMobileFriendly": false + }, + { + "name": "MusE", + "keywords": [ + "audio", + "sound", + "jackd,DAW", + "multitrack", + "ladspa", + "lv2", + "midi", + "vst" + ], + "summary": "Digital Audio Workstation", + "description": "\n MusE is a MIDI/Audio sequencer with recording and editing capabilities. It can\n perform audio effects like chorus/flanger in real-time via LASH and it supports\n Jack and ALSA interfaces. MusE aims to be a complete multitrack virtual studio\n for Linux.\n \n ", + "id": "io_github_muse_sequencer_Muse", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0+", + "is_free_license": true, + "app_id": "io.github.muse_sequencer.Muse", + "icon": "https://dl.flathub.org/media/io/github/muse_sequencer.Muse/13b63bc06c8b73817e69d7e8681cf3b9/icons/128x128/io.github.muse_sequencer.Muse.png", + "main_categories": "audiovideo", + "sub_categories": [ + "Sequencer", + "Midi", + "Audio" + ], + "developer_name": "Muse Sequencer 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-24.08", + "updated_at": 1735753050, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1620627935, + "trending": 9.460151908476334, + "installs_last_month": 477, "isMobileFriendly": false }, { @@ -3233,8 +3233,8 @@ "aarch64" ], "added_at": 1597744310, - "trending": 5.5210511262519795, - "installs_last_month": 380, + "trending": 5.889450967933404, + "installs_last_month": 395, "isMobileFriendly": false }, { @@ -3272,8 +3272,8 @@ "aarch64" ], "added_at": 1707812492, - "trending": 0.4682719195796557, - "installs_last_month": 295, + "trending": 1.3641977794435465, + "installs_last_month": 314, "isMobileFriendly": false }, { @@ -3309,8 +3309,8 @@ "aarch64" ], "added_at": 1707293041, - "trending": 7.476481543815154, - "installs_last_month": 271, + "trending": 8.3552609226913, + "installs_last_month": 287, "isMobileFriendly": false }, { @@ -3352,8 +3352,8 @@ "aarch64" ], "added_at": 1639599595, - "trending": 7.982313857449675, - "installs_last_month": 236, + "trending": 5.143555458368473, + "installs_last_month": 270, "isMobileFriendly": false }, { @@ -3435,8 +3435,50 @@ "aarch64" ], "added_at": 1604312802, - "trending": 9.79813494468178, - "installs_last_month": 220, + "trending": 13.741965598174222, + "installs_last_month": 259, + "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": 2.9563656189269167, + "installs_last_month": 224, "isMobileFriendly": false }, { @@ -3473,8 +3515,8 @@ "aarch64" ], "added_at": 1683544972, - "trending": 6.557057325951909, - "installs_last_month": 217, + "trending": 7.294747005151429, + "installs_last_month": 220, "isMobileFriendly": false }, { @@ -3518,50 +3560,8 @@ "aarch64" ], "added_at": 1596542634, - "trending": 6.903272525667168, - "installs_last_month": 213, - "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.4837924924426704, - "installs_last_month": 211, + "trending": 8.765345244340061, + "installs_last_month": 218, "isMobileFriendly": false }, { @@ -3596,8 +3596,8 @@ "aarch64" ], "added_at": 1711607059, - "trending": 2.8247178075067425, - "installs_last_month": 207, + "trending": 1.152505571460981, + "installs_last_month": 215, "isMobileFriendly": false }, { @@ -3636,8 +3636,8 @@ "aarch64" ], "added_at": 1697530126, - "trending": 3.7514726701757186, - "installs_last_month": 161, + "trending": 5.17324665344756, + "installs_last_month": 158, "isMobileFriendly": false }, { @@ -3675,51 +3675,8 @@ "x86_64" ], "added_at": 1574236152, - "trending": 3.147460754041383, - "installs_last_month": 134, - "isMobileFriendly": false - }, - { - "name": "Vahatraker", - "keywords": [ - "audio", - "sound", - "sequencer", - "midi", - "tracker" - ], - "summary": "Live MIDI sequencer", - "description": "Vahatraker is a MIDI sequencing companion for GNU/Linux audio setups. Adhering to Unix philosophy, driving MIDI is the one thing it tries to do well, adhering to other doctrines - enabling expression, with added value of:\n \n live editing\n fast workflow\n intuitive midi-in\n unheard of time signatures\n scenes\n fractal turtles\n \n Frankly speaking, vht was envisaged as a re-creation of seq24 in tracker form for author's \"studio needs\" and offers similar functionality (and limitations). It relies 100% on JACK audio connection kit for input/output/synch and uses jack_capture for rendering. The GUI has similar dependencies as gnome-calculator and tracker paradigm was chosen to allow for rhythmic gymnastics otherwise hard to convey.\n Low level stuff was done in C and wrapped in Python. Human interfacing part of contraption employs GTK through gobject introspection and was also contrived in the language we shall no longer spam about.\n ", - "id": "io_github_rdybka_vht", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0-or-later", - "is_free_license": true, - "app_id": "io.github.rdybka.vht", - "icon": "https://dl.flathub.org/media/io/github/rdybka.vht/7e7e76d5ada89c46f5d095c3ed8fe0fb/icons/128x128/io.github.rdybka.vht.png", - "main_categories": "audiovideo", - "sub_categories": [ - "Music", - "Audio", - "Midi" - ], - "developer_name": "Remigiusz Dybka", - "verification_verified": true, - "verification_method": "login_provider", - "verification_login_name": "rdybka", - "verification_login_provider": "github", - "verification_login_is_organization": "true", - "verification_website": null, - "verification_timestamp": "1717609624", - "runtime": "org.gnome.Platform/x86_64/46", - "updated_at": 1725538687, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1717579270, - "trending": 7.338887519564317, - "installs_last_month": 121, + "trending": 1.7847210002750444, + "installs_last_month": 142, "isMobileFriendly": false }, { @@ -3767,8 +3724,51 @@ "aarch64" ], "added_at": 1559685891, - "trending": 7.678017195512412, - "installs_last_month": 118, + "trending": 7.212763237278819, + "installs_last_month": 127, + "isMobileFriendly": false + }, + { + "name": "Vahatraker", + "keywords": [ + "audio", + "sound", + "sequencer", + "midi", + "tracker" + ], + "summary": "Live MIDI sequencer", + "description": "Vahatraker is a MIDI sequencing companion for GNU/Linux audio setups. Adhering to Unix philosophy, driving MIDI is the one thing it tries to do well, adhering to other doctrines - enabling expression, with added value of:\n \n live editing\n fast workflow\n intuitive midi-in\n unheard of time signatures\n scenes\n fractal turtles\n \n Frankly speaking, vht was envisaged as a re-creation of seq24 in tracker form for author's \"studio needs\" and offers similar functionality (and limitations). It relies 100% on JACK audio connection kit for input/output/synch and uses jack_capture for rendering. The GUI has similar dependencies as gnome-calculator and tracker paradigm was chosen to allow for rhythmic gymnastics otherwise hard to convey.\n Low level stuff was done in C and wrapped in Python. Human interfacing part of contraption employs GTK through gobject introspection and was also contrived in the language we shall no longer spam about.\n ", + "id": "io_github_rdybka_vht", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0-or-later", + "is_free_license": true, + "app_id": "io.github.rdybka.vht", + "icon": "https://dl.flathub.org/media/io/github/rdybka.vht/7e7e76d5ada89c46f5d095c3ed8fe0fb/icons/128x128/io.github.rdybka.vht.png", + "main_categories": "audiovideo", + "sub_categories": [ + "Music", + "Audio", + "Midi" + ], + "developer_name": "Remigiusz Dybka", + "verification_verified": true, + "verification_method": "login_provider", + "verification_login_name": "rdybka", + "verification_login_provider": "github", + "verification_login_is_organization": "true", + "verification_website": null, + "verification_timestamp": "1717609624", + "runtime": "org.gnome.Platform/x86_64/46", + "updated_at": 1725538687, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1717579270, + "trending": 8.533013865944525, + "installs_last_month": 121, "isMobileFriendly": false }, { @@ -3806,13 +3806,13 @@ "aarch64" ], "added_at": 1661842762, - "trending": 0.7539369652895862, - "installs_last_month": 98, + "trending": 2.515873866454746, + "installs_last_month": 100, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 5, + "processingTimeMs": 6, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -3974,8 +3974,8 @@ "aarch64" ], "added_at": 1561723055, - "trending": 8.953541420842866, - "installs_last_month": 5089, + "trending": 9.924640962940906, + "installs_last_month": 5236, "isMobileFriendly": false }, { @@ -4014,8 +4014,8 @@ "aarch64" ], "added_at": 1561317361, - "trending": 9.53599877478392, - "installs_last_month": 3679, + "trending": 7.75734441868873, + "installs_last_month": 3822, "isMobileFriendly": false }, { @@ -4076,8 +4076,8 @@ "aarch64" ], "added_at": 1509301060, - "trending": 7.206892347614331, - "installs_last_month": 3351, + "trending": 9.241395582698525, + "installs_last_month": 3456, "isMobileFriendly": false }, { @@ -4121,8 +4121,8 @@ "x86_64" ], "added_at": 1618343817, - "trending": 8.032154068216617, - "installs_last_month": 2780, + "trending": 9.3333685432216, + "installs_last_month": 2765, "isMobileFriendly": false }, { @@ -4162,8 +4162,8 @@ "aarch64" ], "added_at": 1619168001, - "trending": 5.176997549611801, - "installs_last_month": 375, + "trending": 0.5055763258028664, + "installs_last_month": 394, "isMobileFriendly": false }, { @@ -4199,8 +4199,8 @@ "x86_64" ], "added_at": 1598302780, - "trending": 9.708468238531829, - "installs_last_month": 174, + "trending": 11.533862479755328, + "installs_last_month": 197, "isMobileFriendly": false }, { @@ -4241,13 +4241,13 @@ "aarch64" ], "added_at": 1613032297, - "trending": 5.891002476692171, - "installs_last_month": 72, + "trending": 5.0719820711005985, + "installs_last_month": 75, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 2, + "processingTimeMs": 3, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -4291,8 +4291,8 @@ "x86_64" ], "added_at": 1497775340, - "trending": 11.95682122442609, - "installs_last_month": 77939, + "trending": 12.135192898849509, + "installs_last_month": 80438, "isMobileFriendly": false }, { @@ -4456,8 +4456,8 @@ "aarch64" ], "added_at": 1504907525, - "trending": 8.201222605990885, - "installs_last_month": 73274, + "trending": 8.319865521086392, + "installs_last_month": 76059, "isMobileFriendly": false }, { @@ -4614,8 +4614,8 @@ "aarch64" ], "added_at": 1623314528, - "trending": 7.980659104246639, - "installs_last_month": 25317, + "trending": 8.951772419027948, + "installs_last_month": 26756, "isMobileFriendly": false }, { @@ -4650,8 +4650,8 @@ "x86_64" ], "added_at": 1613461650, - "trending": 9.055659414138088, - "installs_last_month": 21159, + "trending": 9.751952964355317, + "installs_last_month": 21674, "isMobileFriendly": false }, { @@ -4698,8 +4698,8 @@ "aarch64" ], "added_at": 1542663293, - "trending": 13.693448005938643, - "installs_last_month": 17102, + "trending": 14.739135425174553, + "installs_last_month": 17473, "isMobileFriendly": false }, { @@ -4735,8 +4735,8 @@ "aarch64" ], "added_at": 1617787010, - "trending": 8.242931098535124, - "installs_last_month": 10104, + "trending": 8.551288992408892, + "installs_last_month": 10384, "isMobileFriendly": false }, { @@ -4769,45 +4769,8 @@ "x86_64" ], "added_at": 1654844012, - "trending": 9.592699473379389, - "installs_last_month": 9085, - "isMobileFriendly": false - }, - { - "name": "Spotube", - "keywords": null, - "summary": "Freedom of music", - "description": "Open source Spotify client that doesn't require Premium nor uses Electron! Available for\n both desktop & mobile!\n Following are the features that currently spotube offers:\n \n 🚫 No ads, thanks to the use of public & free Spotify and YT Music APIs¹\n ⬇️ Downloadable tracks\n 🖥️ 📱 Cross-platform support\n 🪶 Small size & less data usage\n 🕵️ Anonymous/guest login\n 🕒 Time synced lyrics\n ✋ No telemetry, diagnostics or user data collection\n 🚀 Native performance\n 📖 Open source/libre software\n 🔉 Playback control is done locally, not on the server\n \n ", - "id": "com_github_KRTirtho_Spotube", - "type": "desktop-application", - "translations": {}, - "project_license": "BSD-4-Clause", - "is_free_license": true, - "app_id": "com.github.KRTirtho.Spotube", - "icon": "https://dl.flathub.org/media/com/github/KRTirtho.Spotube/c7026855fc9cea7b001e8f76f7fc1f6f/icons/128x128/com.github.KRTirtho.Spotube.png", - "main_categories": "audiovideo", - "sub_categories": [ - "Audio", - "Music", - "Player" - ], - "developer_name": "Kingkor Roy Tirtho", - "verification_verified": true, - "verification_method": "login_provider", - "verification_login_name": "KRTirtho", - "verification_login_provider": "github", - "verification_login_is_organization": "true", - "verification_website": null, - "verification_timestamp": "1676772878", - "runtime": "org.gnome.Platform/x86_64/47", - "updated_at": 1742200674, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1643363667, - "trending": 6.046482999170387, - "installs_last_month": 7743, + "trending": 9.044530914430007, + "installs_last_month": 9371, "isMobileFriendly": false }, { @@ -4851,8 +4814,45 @@ "aarch64" ], "added_at": 1620163158, - "trending": 7.004800685519178, - "installs_last_month": 7597, + "trending": 6.746651789905403, + "installs_last_month": 7939, + "isMobileFriendly": false + }, + { + "name": "Spotube", + "keywords": null, + "summary": "Freedom of music", + "description": "Open source Spotify client that doesn't require Premium nor uses Electron! Available for\n both desktop & mobile!\n Following are the features that currently spotube offers:\n \n 🚫 No ads, thanks to the use of public & free Spotify and YT Music APIs¹\n ⬇️ Downloadable tracks\n 🖥️ 📱 Cross-platform support\n 🪶 Small size & less data usage\n 🕵️ Anonymous/guest login\n 🕒 Time synced lyrics\n ✋ No telemetry, diagnostics or user data collection\n 🚀 Native performance\n 📖 Open source/libre software\n 🔉 Playback control is done locally, not on the server\n \n ", + "id": "com_github_KRTirtho_Spotube", + "type": "desktop-application", + "translations": {}, + "project_license": "BSD-4-Clause", + "is_free_license": true, + "app_id": "com.github.KRTirtho.Spotube", + "icon": "https://dl.flathub.org/media/com/github/KRTirtho.Spotube/c7026855fc9cea7b001e8f76f7fc1f6f/icons/128x128/com.github.KRTirtho.Spotube.png", + "main_categories": "audiovideo", + "sub_categories": [ + "Audio", + "Music", + "Player" + ], + "developer_name": "Kingkor Roy Tirtho", + "verification_verified": true, + "verification_method": "login_provider", + "verification_login_name": "KRTirtho", + "verification_login_provider": "github", + "verification_login_is_organization": "true", + "verification_website": null, + "verification_timestamp": "1676772878", + "runtime": "org.gnome.Platform/x86_64/47", + "updated_at": 1742200674, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1643363667, + "trending": 6.7533061331257045, + "installs_last_month": 7819, "isMobileFriendly": false }, { @@ -5036,8 +5036,8 @@ "aarch64" ], "added_at": 1562361625, - "trending": 10.707719718077712, - "installs_last_month": 6411, + "trending": 11.918079444375438, + "installs_last_month": 6670, "isMobileFriendly": false }, { @@ -5077,8 +5077,8 @@ "aarch64" ], "added_at": 1706169912, - "trending": 8.33616834737214, - "installs_last_month": 6088, + "trending": 6.239976792564908, + "installs_last_month": 6236, "isMobileFriendly": false }, { @@ -5116,8 +5116,8 @@ "aarch64" ], "added_at": 1634719497, - "trending": 3.9598682851234823, - "installs_last_month": 5813, + "trending": 5.182671385868707, + "installs_last_month": 6017, "isMobileFriendly": false }, { @@ -5152,8 +5152,8 @@ "x86_64" ], "added_at": 1650706947, - "trending": 3.545264953888947, - "installs_last_month": 4734, + "trending": 2.2447520442546396, + "installs_last_month": 4852, "isMobileFriendly": false }, { @@ -5327,8 +5327,8 @@ "aarch64" ], "added_at": 1653889893, - "trending": 12.748359639523834, - "installs_last_month": 4180, + "trending": 15.018756477563365, + "installs_last_month": 4305, "isMobileFriendly": true }, { @@ -5396,8 +5396,42 @@ "aarch64" ], "added_at": 1597519191, - "trending": 12.61423817560892, - "installs_last_month": 4119, + "trending": 11.920575454638854, + "installs_last_month": 4277, + "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": 10.375998798283405, + "installs_last_month": 4182, "isMobileFriendly": false }, { @@ -5653,42 +5687,8 @@ "aarch64" ], "added_at": 1510243839, - "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, + "trending": 14.773376591336044, + "installs_last_month": 4166, "isMobileFriendly": false }, { @@ -5723,8 +5723,8 @@ "aarch64" ], "added_at": 1588580723, - "trending": 6.228381962009792, - "installs_last_month": 3791, + "trending": 7.747485143553268, + "installs_last_month": 3949, "isMobileFriendly": false }, { @@ -5763,8 +5763,8 @@ "aarch64" ], "added_at": 1561317361, - "trending": 9.53599877478392, - "installs_last_month": 3679, + "trending": 7.75734441868873, + "installs_last_month": 3822, "isMobileFriendly": false }, { @@ -5993,8 +5993,8 @@ "aarch64" ], "added_at": 1510069264, - "trending": 14.200838554748303, - "installs_last_month": 3123, + "trending": 13.69666456284581, + "installs_last_month": 3221, "isMobileFriendly": false }, { @@ -6042,8 +6042,8 @@ "aarch64" ], "added_at": 1544181758, - "trending": 8.235373584863815, - "installs_last_month": 3098, + "trending": 7.698821565836494, + "installs_last_month": 3213, "isMobileFriendly": false }, { @@ -6286,8 +6286,8 @@ "aarch64" ], "added_at": 1522329924, - "trending": 10.995865490228669, - "installs_last_month": 3020, + "trending": 9.962458540644771, + "installs_last_month": 3108, "isMobileFriendly": false }, { @@ -6448,8 +6448,8 @@ "aarch64" ], "added_at": 1727083656, - "trending": 2.8667377636924503, - "installs_last_month": 2908, + "trending": 4.018560896409586, + "installs_last_month": 2994, "isMobileFriendly": false }, { @@ -6493,8 +6493,8 @@ "x86_64" ], "added_at": 1536320908, - "trending": 6.445761552885797, - "installs_last_month": 2869, + "trending": 9.180121601232647, + "installs_last_month": 2953, "isMobileFriendly": false }, { @@ -6536,8 +6536,8 @@ "x86_64" ], "added_at": 1596135565, - "trending": 11.649187322610016, - "installs_last_month": 2808, + "trending": 11.275573016658866, + "installs_last_month": 2876, "isMobileFriendly": false }, { @@ -6581,8 +6581,8 @@ "x86_64" ], "added_at": 1618343817, - "trending": 8.032154068216617, - "installs_last_month": 2780, + "trending": 9.3333685432216, + "installs_last_month": 2765, "isMobileFriendly": false }, { @@ -6624,8 +6624,8 @@ "aarch64" ], "added_at": 1653374999, - "trending": 7.950564292620639, - "installs_last_month": 2594, + "trending": 7.787930271830276, + "installs_last_month": 2659, "isMobileFriendly": false }, { @@ -6798,10 +6798,52 @@ "aarch64" ], "added_at": 1720616885, - "trending": 15.223130540874925, - "installs_last_month": 2388, + "trending": 13.117782191080044, + "installs_last_month": 2500, "isMobileFriendly": true }, + { + "name": "Deezer", + "keywords": [ + "Music", + "Player", + "Streaming", + "Online" + ], + "summary": "Online music streaming service", + "description": "An unofficial linux port of the deezer desktop application.\n Access all of your favorite music, and save them offline for later!\n ", + "id": "dev_aunetx_deezer", + "type": "desktop-application", + "translations": {}, + "project_license": "LicenseRef-proprietary=https://www.deezer.com/legal/cgu/", + "is_free_license": false, + "app_id": "dev.aunetx.deezer", + "icon": "https://dl.flathub.org/media/dev/aunetx/deezer/1f67a83f1dd4c0aeef8ebf06e4b4691a/icons/128x128/dev.aunetx.deezer.png", + "main_categories": "audiovideo", + "sub_categories": [ + "Audio", + "Music", + "Player" + ], + "developer_name": "aunetx", + "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": 1742505431, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1687971591, + "trending": 13.444921691566286, + "installs_last_month": 2375, + "isMobileFriendly": false + }, { "name": "Goodvibes", "keywords": [ @@ -6942,50 +6984,8 @@ "aarch64" ], "added_at": 1542019244, - "trending": 8.434522391832044, - "installs_last_month": 2311, - "isMobileFriendly": false - }, - { - "name": "Deezer", - "keywords": [ - "Music", - "Player", - "Streaming", - "Online" - ], - "summary": "Online music streaming service", - "description": "An unofficial linux port of the deezer desktop application.\n Access all of your favorite music, and save them offline for later!\n ", - "id": "dev_aunetx_deezer", - "type": "desktop-application", - "translations": {}, - "project_license": "LicenseRef-proprietary=https://www.deezer.com/legal/cgu/", - "is_free_license": false, - "app_id": "dev.aunetx.deezer", - "icon": "https://dl.flathub.org/media/dev/aunetx/deezer/1f67a83f1dd4c0aeef8ebf06e4b4691a/icons/128x128/dev.aunetx.deezer.png", - "main_categories": "audiovideo", - "sub_categories": [ - "Audio", - "Music", - "Player" - ], - "developer_name": "aunetx", - "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": 1742505431, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1687971591, - "trending": 11.882904968615676, - "installs_last_month": 2308, + "trending": 8.189890280634302, + "installs_last_month": 2374, "isMobileFriendly": false }, { @@ -7117,8 +7117,8 @@ "aarch64" ], "added_at": 1723197945, - "trending": 13.662532764553294, - "installs_last_month": 2159, + "trending": 12.428754989291797, + "installs_last_month": 2218, "isMobileFriendly": false }, { @@ -7309,8 +7309,8 @@ "aarch64" ], "added_at": 1494567025, - "trending": 10.482461178721824, - "installs_last_month": 2080, + "trending": 11.369180517907536, + "installs_last_month": 2215, "isMobileFriendly": true }, { @@ -7386,8 +7386,8 @@ "aarch64" ], "added_at": 1648572371, - "trending": 0.6993466965610134, - "installs_last_month": 2029, + "trending": 1.1096677598820606, + "installs_last_month": 2083, "isMobileFriendly": false }, { @@ -7427,8 +7427,8 @@ "x86_64" ], "added_at": 1667596592, - "trending": 5.232186980259857, - "installs_last_month": 1710, + "trending": 5.649454472270808, + "installs_last_month": 1700, "isMobileFriendly": false }, { @@ -7621,8 +7621,8 @@ "aarch64" ], "added_at": 1676881903, - "trending": 10.483084063558374, - "installs_last_month": 1609, + "trending": 10.41462024916454, + "installs_last_month": 1661, "isMobileFriendly": false }, { @@ -7657,8 +7657,8 @@ "aarch64" ], "added_at": 1511886266, - "trending": 15.56167727107312, - "installs_last_month": 1591, + "trending": 13.6109861005458, + "installs_last_month": 1634, "isMobileFriendly": false }, { @@ -7693,8 +7693,8 @@ "aarch64" ], "added_at": 1716271222, - "trending": 6.934568628156844, - "installs_last_month": 1430, + "trending": 3.8270808206861857, + "installs_last_month": 1488, "isMobileFriendly": false }, { @@ -7730,8 +7730,8 @@ "aarch64" ], "added_at": 1586505616, - "trending": -0.8662278110319928, - "installs_last_month": 1285, + "trending": 2.2592775045615414, + "installs_last_month": 1328, "isMobileFriendly": false }, { @@ -7771,8 +7771,8 @@ "aarch64" ], "added_at": 1685341478, - "trending": 0.5603600359281135, - "installs_last_month": 1213, + "trending": 0.3279544876396867, + "installs_last_month": 1268, "isMobileFriendly": false }, { @@ -7827,8 +7827,8 @@ "aarch64" ], "added_at": 1726129036, - "trending": 1.2123396606159909, - "installs_last_month": 1105, + "trending": 6.411553232551325, + "installs_last_month": 1143, "isMobileFriendly": false }, { @@ -7947,8 +7947,8 @@ "aarch64" ], "added_at": 1661806190, - "trending": 10.69422642832149, - "installs_last_month": 1077, + "trending": 10.83212969143709, + "installs_last_month": 1118, "isMobileFriendly": false }, { @@ -7983,8 +7983,8 @@ "x86_64" ], "added_at": 1717580511, - "trending": 6.722621109108175, - "installs_last_month": 1057, + "trending": 7.693135277484376, + "installs_last_month": 1077, "isMobileFriendly": false }, { @@ -8024,8 +8024,8 @@ "aarch64" ], "added_at": 1670842524, - "trending": 7.692106965209289, - "installs_last_month": 1018, + "trending": 6.443879335154067, + "installs_last_month": 1049, "isMobileFriendly": false }, { @@ -8063,8 +8063,8 @@ "aarch64" ], "added_at": 1701682986, - "trending": 10.007578126484525, - "installs_last_month": 1001, + "trending": 11.424021460770062, + "installs_last_month": 1004, "isMobileFriendly": false }, { @@ -8103,8 +8103,8 @@ "aarch64" ], "added_at": 1542367807, - "trending": 3.4710670126886916, - "installs_last_month": 967, + "trending": 6.076804765723413, + "installs_last_month": 981, "isMobileFriendly": false }, { @@ -8138,49 +8138,8 @@ "aarch64" ], "added_at": 1508960369, - "trending": 8.660826063546722, - "installs_last_month": 951, - "isMobileFriendly": false - }, - { - "name": "QMPlay2", - "keywords": [ - "Audio", - "Video", - "Player" - ], - "summary": "Video and audio player", - "description": "\n QMPlay2 is a video and audio player. It can play all formats supported by FFmpeg, libmodplug (including J2B and SFX).\n It also supports Audio CD, raw files, Rayman 2 music and chiptunes. It contains YouTube and MyFreeMP3 browser.\n \n ", - "id": "io_github_zaps166_QMPlay2", - "type": "desktop-application", - "translations": {}, - "project_license": "LGPL-3.0", - "is_free_license": true, - "app_id": "io.github.zaps166.QMPlay2", - "icon": "https://dl.flathub.org/media/io/github/zaps166.QMPlay2/05c982155a997ecfce62860a7558a13e/icons/128x128/io.github.zaps166.QMPlay2.png", - "main_categories": "audiovideo", - "sub_categories": [ - "Player", - "Audio", - "Video" - ], - "developer_name": "Błażej Szczygieł", - "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": 1737317838, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1670921599, - "trending": 6.505668490374763, - "installs_last_month": 875, + "trending": 9.654197269477155, + "installs_last_month": 976, "isMobileFriendly": false }, { @@ -8260,10 +8219,95 @@ "aarch64" ], "added_at": 1690878622, - "trending": 12.510073555807406, - "installs_last_month": 822, + "trending": 28.44318172939633, + "installs_last_month": 929, "isMobileFriendly": true }, + { + "name": "QMPlay2", + "keywords": [ + "Audio", + "Video", + "Player" + ], + "summary": "Video and audio player", + "description": "\n QMPlay2 is a video and audio player. It can play all formats supported by FFmpeg, libmodplug (including J2B and SFX).\n It also supports Audio CD, raw files, Rayman 2 music and chiptunes. It contains YouTube and MyFreeMP3 browser.\n \n ", + "id": "io_github_zaps166_QMPlay2", + "type": "desktop-application", + "translations": {}, + "project_license": "LGPL-3.0", + "is_free_license": true, + "app_id": "io.github.zaps166.QMPlay2", + "icon": "https://dl.flathub.org/media/io/github/zaps166.QMPlay2/05c982155a997ecfce62860a7558a13e/icons/128x128/io.github.zaps166.QMPlay2.png", + "main_categories": "audiovideo", + "sub_categories": [ + "Player", + "Audio", + "Video" + ], + "developer_name": "Błażej Szczygieł", + "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": 1737317838, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1670921599, + "trending": 8.205511101963536, + "installs_last_month": 889, + "isMobileFriendly": false + }, + { + "name": "Sayonara", + "keywords": [ + "sayonara", + "audio", + "music", + "player", + "tag", + "library" + ], + "summary": "A fast and powerful audio player and library manager", + "description": "Sayonara's goals are intuitive usability, speed and low resource consumption.\n (Automatically) create playlists from local files, streams or podcasts organized in tabs.\n Powerful media library with 3 different view modes and tag editor.\n Many plugins such as equalizer, spectrum analyzer, audio converter, bookmarks.\n ", + "id": "com_sayonara_player_Sayonara", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0+", + "is_free_license": true, + "app_id": "com.sayonara_player.Sayonara", + "icon": "https://dl.flathub.org/media/com/sayonara_player/Sayonara/5983018a927ea56b66e9786dca3edeed/icons/128x128/com.sayonara_player.Sayonara.png", + "main_categories": "audiovideo", + "sub_categories": [ + "Audio", + "Player", + "Music" + ], + "developer_name": "Michael Lugmair", + "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": 1729335941, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1627479727, + "trending": 6.33899654970096, + "installs_last_month": 832, + "isMobileFriendly": false + }, { "name": "Quod Libet", "keywords": null, @@ -8412,8 +8456,8 @@ "aarch64" ], "added_at": 1527000716, - "trending": 8.841014102869256, - "installs_last_month": 818, + "trending": 10.769123516126612, + "installs_last_month": 831, "isMobileFriendly": false }, { @@ -8465,52 +8509,45 @@ "aarch64" ], "added_at": 1725340905, - "trending": 14.476214081616504, - "installs_last_month": 805, + "trending": 13.243024345492463, + "installs_last_month": 810, "isMobileFriendly": false }, { - "name": "Sayonara", + "name": "Pithos", "keywords": [ - "sayonara", - "audio", - "music", - "player", - "tag", - "library" + "Music" ], - "summary": "A fast and powerful audio player and library manager", - "description": "Sayonara's goals are intuitive usability, speed and low resource consumption.\n (Automatically) create playlists from local files, streams or podcasts organized in tabs.\n Powerful media library with 3 different view modes and tag editor.\n Many plugins such as equalizer, spectrum analyzer, audio converter, bookmarks.\n ", - "id": "com_sayonara_player_Sayonara", + "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": "com.sayonara_player.Sayonara", - "icon": "https://dl.flathub.org/media/com/sayonara_player/Sayonara/5983018a927ea56b66e9786dca3edeed/icons/128x128/com.sayonara_player.Sayonara.png", + "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": [ - "Audio", - "Player", - "Music" + "Player" ], - "developer_name": "Michael Lugmair", - "verification_verified": false, - "verification_method": "none", + "developer_name": "Pithos", + "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-23.08", - "updated_at": 1729335941, + "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": 1627479727, - "trending": 6.344109772031835, - "installs_last_month": 787, + "added_at": 1491927202, + "trending": 15.290660074148144, + "installs_last_month": 760, "isMobileFriendly": false }, { @@ -8665,45 +8702,8 @@ "aarch64" ], "added_at": 1663217210, - "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, + "trending": 1.9845098871278544, + "installs_last_month": 759, "isMobileFriendly": false }, { @@ -8783,8 +8783,8 @@ "aarch64" ], "added_at": 1710818302, - "trending": 14.832329240745636, - "installs_last_month": 506, + "trending": 15.834165854721515, + "installs_last_month": 527, "isMobileFriendly": false }, { @@ -8835,44 +8835,8 @@ "aarch64" ], "added_at": 1630317483, - "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, + "trending": 3.080483367826842, + "installs_last_month": 520, "isMobileFriendly": false }, { @@ -8907,60 +8871,44 @@ "aarch64" ], "added_at": 1668030880, - "trending": 9.119674288993163, - "installs_last_month": 467, + "trending": 9.704880281182994, + "installs_last_month": 487, "isMobileFriendly": false }, { - "name": "Tsukimi", - "keywords": [ - "player", - "audio", - "video", - "multimedia", - "Emby" - ], - "summary": "A simple third-party Emby client", - "description": "Tsukimi is a simple third-party Emby client written in GTK4-RS, uses MPV as the video\n player, and GStreamer as the music player.\n ", - "id": "moe_tsuna_tsukimi", + "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": { - "zh-Hans": { - "description": "Tsukimi 是一个使用 GTK4-RS 编写的简单第三方 Emby 客户端,使用 MPV 作为视频播放器,并使用 GStreamer\n 作为音乐播放器。\n ", - "summary": "一个简单的第三方 Emby 客户端" - }, - "zh-Hant": { - "description": "Tsukimi 是一個使用 GTK4-RS 編寫的簡單第三方 Emby 客戶端,使用 MPV 作為視頻播放器,並使用 GStreamer\n 作為音樂播放器。\n ", - "summary": "一個簡單的第三方 Emby 客戶端" - } - }, - "project_license": "GPL-3.0-or-later", + "translations": {}, + "project_license": "GPL-3.0+", "is_free_license": true, - "app_id": "moe.tsuna.tsukimi", - "icon": "https://dl.flathub.org/media/moe/tsuna/tsukimi/232280c4235a06f982754ad66608296b/icons/128x128/moe.tsuna.tsukimi.png", + "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": [ - "Player", "Audio", - "Video" + "Player" ], - "developer_name": "Inaha", + "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": "tsuna.moe", - "verification_timestamp": "1740535583", - "runtime": "org.gnome.Platform/x86_64/48", - "updated_at": 1742930656, + "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": 1740499798, - "trending": 5.679080422920656, - "installs_last_month": 442, + "added_at": 1702976037, + "trending": 12.643357461089114, + "installs_last_month": 482, "isMobileFriendly": false }, { @@ -9042,43 +8990,60 @@ "aarch64" ], "added_at": 1572904522, - "trending": 11.70294947854463, - "installs_last_month": 426, + "trending": 10.90429232009592, + "installs_last_month": 454, "isMobileFriendly": false }, { - "name": "Netease Cloud Music", - "keywords": null, - "summary": "A popular online music player developed by Netease", - "description": "Netease Cloud Music is a popular music player that you can use to play online or local music.NOTE: This wrapper is not verified by, affiliated with, or supported by Netease.网易云音乐是一款专注于发现与分享的音乐产品,依托专业音乐人、DJ、好友推荐及社交功能,为用户打造全新的音乐生活。注意:本flatpak客户端基于网易云音乐官方deb包,但不是由网易云官方打包发布,没有网易云音乐的认证或支持。", - "id": "com_netease_CloudMusic", + "name": "Tsukimi", + "keywords": [ + "player", + "audio", + "video", + "multimedia", + "Emby" + ], + "summary": "A simple third-party Emby client", + "description": "Tsukimi is a simple third-party Emby client written in GTK4-RS, uses MPV as the video\n player, and GStreamer as the music player.\n ", + "id": "moe_tsuna_tsukimi", "type": "desktop-application", - "translations": {}, - "project_license": "LicenseRef-proprietary", - "is_free_license": false, - "app_id": "com.netease.CloudMusic", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.netease.CloudMusic.png", + "translations": { + "zh-Hans": { + "description": "Tsukimi 是一个使用 GTK4-RS 编写的简单第三方 Emby 客户端,使用 MPV 作为视频播放器,并使用 GStreamer\n 作为音乐播放器。\n ", + "summary": "一个简单的第三方 Emby 客户端" + }, + "zh-Hant": { + "description": "Tsukimi 是一個使用 GTK4-RS 編寫的簡單第三方 Emby 客戶端,使用 MPV 作為視頻播放器,並使用 GStreamer\n 作為音樂播放器。\n ", + "summary": "一個簡單的第三方 Emby 客戶端" + } + }, + "project_license": "GPL-3.0-or-later", + "is_free_license": true, + "app_id": "moe.tsuna.tsukimi", + "icon": "https://dl.flathub.org/media/moe/tsuna/tsukimi/232280c4235a06f982754ad66608296b/icons/128x128/moe.tsuna.tsukimi.png", "main_categories": "audiovideo", "sub_categories": [ + "Player", "Audio", - "Player" + "Video" ], - "developer_name": "Netease", - "verification_verified": false, - "verification_method": "none", + "developer_name": "Inaha", + "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/21.08", - "updated_at": 1661936801, + "verification_login_is_organization": "false", + "verification_website": "tsuna.moe", + "verification_timestamp": "1740535583", + "runtime": "org.gnome.Platform/x86_64/48", + "updated_at": 1742930656, "arches": [ - "x86_64" + "x86_64", + "aarch64" ], - "added_at": 1554327414, - "trending": 5.631211914347332, - "installs_last_month": 371, + "added_at": 1740499798, + "trending": 7.347418107403371, + "installs_last_month": 444, "isMobileFriendly": false }, { @@ -9115,8 +9080,43 @@ "aarch64" ], "added_at": 1716533067, - "trending": 10.34829390575528, - "installs_last_month": 367, + "trending": 10.235115082127324, + "installs_last_month": 391, + "isMobileFriendly": false + }, + { + "name": "Netease Cloud Music", + "keywords": null, + "summary": "A popular online music player developed by Netease", + "description": "Netease Cloud Music is a popular music player that you can use to play online or local music.NOTE: This wrapper is not verified by, affiliated with, or supported by Netease.网易云音乐是一款专注于发现与分享的音乐产品,依托专业音乐人、DJ、好友推荐及社交功能,为用户打造全新的音乐生活。注意:本flatpak客户端基于网易云音乐官方deb包,但不是由网易云官方打包发布,没有网易云音乐的认证或支持。", + "id": "com_netease_CloudMusic", + "type": "desktop-application", + "translations": {}, + "project_license": "LicenseRef-proprietary", + "is_free_license": false, + "app_id": "com.netease.CloudMusic", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.netease.CloudMusic.png", + "main_categories": "audiovideo", + "sub_categories": [ + "Audio", + "Player" + ], + "developer_name": "Netease", + "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": 1661936801, + "arches": [ + "x86_64" + ], + "added_at": 1554327414, + "trending": 5.736475574226879, + "installs_last_month": 366, "isMobileFriendly": false }, { @@ -9218,8 +9218,8 @@ "aarch64" ], "added_at": 1673253607, - "trending": 8.18551548791888, - "installs_last_month": 353, + "trending": 8.080071473779396, + "installs_last_month": 356, "isMobileFriendly": false }, { @@ -9254,8 +9254,44 @@ "x86_64" ], "added_at": 1595576998, - "trending": 11.013244521140978, - "installs_last_month": 302, + "trending": 7.962618873923328, + "installs_last_month": 311, + "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.6592394709789478, + "installs_last_month": 288, "isMobileFriendly": false }, { @@ -9353,46 +9389,10 @@ "aarch64" ], "added_at": 1546536827, - "trending": 10.583399070899896, - "installs_last_month": 276, + "trending": 10.713928305291756, + "installs_last_month": 287, "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,8 @@ "aarch64" ], "added_at": 1647329299, - "trending": 8.877651227574939, - "installs_last_month": 274, + "trending": 9.985937151789797, + "installs_last_month": 272, "isMobileFriendly": false }, { @@ -9477,8 +9477,8 @@ "aarch64" ], "added_at": 1628623503, - "trending": 10.413731211044352, - "installs_last_month": 259, + "trending": 11.161973893979896, + "installs_last_month": 267, "isMobileFriendly": false }, { @@ -9518,8 +9518,8 @@ "aarch64" ], "added_at": 1606810338, - "trending": 4.85925510355531, - "installs_last_month": 247, + "trending": 6.000865499321806, + "installs_last_month": 253, "isMobileFriendly": false }, { @@ -9707,8 +9707,8 @@ "aarch64" ], "added_at": 1653287276, - "trending": 8.602771318687237, - "installs_last_month": 225, + "trending": 7.528311436081636, + "installs_last_month": 226, "isMobileFriendly": false }, { @@ -9752,8 +9752,8 @@ "aarch64" ], "added_at": 1716966838, - "trending": 11.504166197958902, - "installs_last_month": 183, + "trending": 12.59667826153228, + "installs_last_month": 182, "isMobileFriendly": false }, { @@ -9804,8 +9804,8 @@ "aarch64" ], "added_at": 1734140564, - "trending": 3.242588899205103, - "installs_last_month": 157, + "trending": 2.192057381226862, + "installs_last_month": 173, "isMobileFriendly": false }, { @@ -9943,7 +9943,49 @@ "aarch64" ], "added_at": 1717579979, - "trending": 14.838327663483252, + "trending": 14.619339889412451, + "installs_last_month": 157, + "isMobileFriendly": false + }, + { + "name": "Movie Monad", + "keywords": [ + "Audio", + "Haskell", + "Multimedia", + "Player", + "Video" + ], + "summary": "A Free and Simple to use Video Player made with Haskell", + "description": "Movie Monad is a free and simple to use video player made with Haskell. You can play files on your computer or stream videos from the web. Movie Monad gets out of the way so you can watch the videos you love. Try it out.", + "id": "com_lettier_movie-monad", + "type": "desktop-application", + "translations": {}, + "project_license": "BSD-3-Clause", + "is_free_license": true, + "app_id": "com.lettier.movie-monad", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.lettier.movie-monad.png", + "main_categories": "audiovideo", + "sub_categories": [ + "Audio", + "Player", + "Video" + ], + "developer_name": "David Lettier", + "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/3.26", + "updated_at": 1537519910, + "arches": [ + "x86_64" + ], + "added_at": 1523975071, + "trending": -0.31998142572094035, "installs_last_month": 153, "isMobileFriendly": false }, @@ -9988,8 +10030,8 @@ "aarch64" ], "added_at": 1642624714, - "trending": 9.289105578524572, - "installs_last_month": 151, + "trending": 10.888459370805004, + "installs_last_month": 153, "isMobileFriendly": false }, { @@ -10029,50 +10071,8 @@ "aarch64" ], "added_at": 1644306647, - "trending": 6.183847276771334, - "installs_last_month": 147, - "isMobileFriendly": false - }, - { - "name": "Movie Monad", - "keywords": [ - "Audio", - "Haskell", - "Multimedia", - "Player", - "Video" - ], - "summary": "A Free and Simple to use Video Player made with Haskell", - "description": "Movie Monad is a free and simple to use video player made with Haskell. You can play files on your computer or stream videos from the web. Movie Monad gets out of the way so you can watch the videos you love. Try it out.", - "id": "com_lettier_movie-monad", - "type": "desktop-application", - "translations": {}, - "project_license": "BSD-3-Clause", - "is_free_license": true, - "app_id": "com.lettier.movie-monad", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.lettier.movie-monad.png", - "main_categories": "audiovideo", - "sub_categories": [ - "Audio", - "Player", - "Video" - ], - "developer_name": "David Lettier", - "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/3.26", - "updated_at": 1537519910, - "arches": [ - "x86_64" - ], - "added_at": 1523975071, - "trending": 0.49476826114278094, - "installs_last_month": 146, + "trending": 8.673398363740178, + "installs_last_month": 150, "isMobileFriendly": false }, { @@ -10133,8 +10133,48 @@ "aarch64" ], "added_at": 1661151742, - "trending": 2.897884582098149, - "installs_last_month": 129, + "trending": -0.009845383673735776, + "installs_last_month": 142, + "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.48119221939582, + "installs_last_month": 105, "isMobileFriendly": false }, { @@ -10170,7 +10210,7 @@ "aarch64" ], "added_at": 1734090220, - "trending": 2.9139591829639544, + "trending": 3.5045361016182985, "installs_last_month": 103, "isMobileFriendly": false }, @@ -10211,48 +10251,8 @@ "aarch64" ], "added_at": 1700120389, - "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, + "trending": 4.921681929387448, + "installs_last_month": 92, "isMobileFriendly": false }, { @@ -10289,13 +10289,13 @@ "aarch64" ], "added_at": 1637219810, - "trending": 0.5570737582642048, - "installs_last_month": 49, + "trending": 0.5643599030640175, + "installs_last_month": 51, "isMobileFriendly": true } ], "query": "", - "processingTimeMs": 15, + "processingTimeMs": 16, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -10468,8 +10468,8 @@ "aarch64" ], "added_at": 1504907525, - "trending": 8.201222605990885, - "installs_last_month": 73274, + "trending": 8.319865521086392, + "installs_last_month": 76059, "isMobileFriendly": false }, { @@ -10502,8 +10502,8 @@ "x86_64" ], "added_at": 1517002182, - "trending": 13.33937387140898, - "installs_last_month": 62324, + "trending": 12.950894192093338, + "installs_last_month": 64431, "isMobileFriendly": false }, { @@ -10725,8 +10725,8 @@ "aarch64" ], "added_at": 1682619390, - "trending": 14.583849243383725, - "installs_last_month": 10750, + "trending": 15.495756432253035, + "installs_last_month": 11216, "isMobileFriendly": true }, { @@ -10766,8 +10766,8 @@ "aarch64" ], "added_at": 1664952305, - "trending": 1.1210074464533897, - "installs_last_month": 9343, + "trending": -0.8299024861365945, + "installs_last_month": 9506, "isMobileFriendly": false }, { @@ -10807,8 +10807,8 @@ "aarch64" ], "added_at": 1706169912, - "trending": 8.33616834737214, - "installs_last_month": 6088, + "trending": 6.239976792564908, + "installs_last_month": 6236, "isMobileFriendly": false }, { @@ -11065,8 +11065,8 @@ "aarch64" ], "added_at": 1578297964, - "trending": 13.627522822996475, - "installs_last_month": 4659, + "trending": 12.282320592360316, + "installs_last_month": 4894, "isMobileFriendly": false }, { @@ -11103,8 +11103,8 @@ "aarch64" ], "added_at": 1681218046, - "trending": 7.825065060941292, - "installs_last_month": 3766, + "trending": 7.994843689847951, + "installs_last_month": 3872, "isMobileFriendly": false }, { @@ -11143,8 +11143,8 @@ "aarch64" ], "added_at": 1561317361, - "trending": 9.53599877478392, - "installs_last_month": 3679, + "trending": 7.75734441868873, + "installs_last_month": 3822, "isMobileFriendly": false }, { @@ -11188,8 +11188,8 @@ "x86_64" ], "added_at": 1618343817, - "trending": 8.032154068216617, - "installs_last_month": 2780, + "trending": 9.3333685432216, + "installs_last_month": 2765, "isMobileFriendly": false }, { @@ -11231,8 +11231,8 @@ "aarch64" ], "added_at": 1653374999, - "trending": 7.950564292620639, - "installs_last_month": 2594, + "trending": 7.787930271830276, + "installs_last_month": 2659, "isMobileFriendly": false }, { @@ -11272,8 +11272,8 @@ "x86_64" ], "added_at": 1667596592, - "trending": 5.232186980259857, - "installs_last_month": 1710, + "trending": 5.649454472270808, + "installs_last_month": 1700, "isMobileFriendly": false }, { @@ -11358,8 +11358,8 @@ "aarch64" ], "added_at": 1641901413, - "trending": 11.892691526689903, - "installs_last_month": 1568, + "trending": 10.817338938621583, + "installs_last_month": 1613, "isMobileFriendly": false }, { @@ -11418,8 +11418,8 @@ "aarch64" ], "added_at": 1545905016, - "trending": 7.0067977521019635, - "installs_last_month": 1296, + "trending": 9.08122056188552, + "installs_last_month": 1322, "isMobileFriendly": false }, { @@ -11453,8 +11453,8 @@ "aarch64" ], "added_at": 1724319884, - "trending": 8.173043350090948, - "installs_last_month": 1274, + "trending": 10.848133680450076, + "installs_last_month": 1318, "isMobileFriendly": false }, { @@ -11517,8 +11517,8 @@ "x86_64" ], "added_at": 1589610027, - "trending": 14.110433761860207, - "installs_last_month": 228, + "trending": 9.753108338919455, + "installs_last_month": 231, "isMobileFriendly": false }, { @@ -11554,13 +11554,13 @@ "aarch64" ], "added_at": 1699222262, - "trending": 2.995800670671661, - "installs_last_month": 115, + "trending": 2.35103857949856, + "installs_last_month": 116, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 4, + "processingTimeMs": 5, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -11608,8 +11608,8 @@ "aarch64" ], "added_at": 1561317361, - "trending": 9.53599877478392, - "installs_last_month": 3679, + "trending": 7.75734441868873, + "installs_last_month": 3822, "isMobileFriendly": false }, { @@ -11670,8 +11670,8 @@ "aarch64" ], "added_at": 1509301060, - "trending": 7.206892347614331, - "installs_last_month": 3351, + "trending": 9.241395582698525, + "installs_last_month": 3456, "isMobileFriendly": false }, { @@ -11715,46 +11715,8 @@ "x86_64" ], "added_at": 1618343817, - "trending": 8.032154068216617, - "installs_last_month": 2780, - "isMobileFriendly": false - }, - { - "name": "FamiStudio", - "keywords": null, - "summary": "FamiStudio NES Music Editor", - "description": "\n FamiStudio NES Music Editor\n \n ", - "id": "org_famistudio_FamiStudio", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT", - "is_free_license": true, - "app_id": "org.famistudio.FamiStudio", - "icon": "https://dl.flathub.org/media/org/famistudio/FamiStudio/721128ae92bc989a7cc7ef6ee7b4005c/icons/128x128/org.famistudio.FamiStudio.png", - "main_categories": "audiovideo", - "sub_categories": [ - "Audio", - "Sequencer", - "AudioVideoEditing", - "Midi", - "Music" - ], - "developer_name": "BleuBleu", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "famistudio.org", - "verification_timestamp": "1716709882", - "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1740650971, - "arches": [ - "x86_64" - ], - "added_at": 1600446687, - "trending": 5.842650455053168, - "installs_last_month": 606, + "trending": 9.3333685432216, + "installs_last_month": 2765, "isMobileFriendly": false }, { @@ -11805,54 +11767,46 @@ "aarch64" ], "added_at": 1643704549, - "trending": 3.0514381221069016, - "installs_last_month": 587, + "trending": 4.8695691304474895, + "installs_last_month": 636, "isMobileFriendly": false }, { - "name": "MusE", - "keywords": [ - "audio", - "sound", - "jackd,DAW", - "multitrack", - "ladspa", - "lv2", - "midi", - "vst" - ], - "summary": "Digital Audio Workstation", - "description": "\n MusE is a MIDI/Audio sequencer with recording and editing capabilities. It can\n perform audio effects like chorus/flanger in real-time via LASH and it supports\n Jack and ALSA interfaces. MusE aims to be a complete multitrack virtual studio\n for Linux.\n \n ", - "id": "io_github_muse_sequencer_Muse", + "name": "FamiStudio", + "keywords": null, + "summary": "FamiStudio NES Music Editor", + "description": "\n FamiStudio NES Music Editor\n \n ", + "id": "org_famistudio_FamiStudio", "type": "desktop-application", "translations": {}, - "project_license": "GPL-2.0+", + "project_license": "MIT", "is_free_license": true, - "app_id": "io.github.muse_sequencer.Muse", - "icon": "https://dl.flathub.org/media/io/github/muse_sequencer.Muse/13b63bc06c8b73817e69d7e8681cf3b9/icons/128x128/io.github.muse_sequencer.Muse.png", + "app_id": "org.famistudio.FamiStudio", + "icon": "https://dl.flathub.org/media/org/famistudio/FamiStudio/721128ae92bc989a7cc7ef6ee7b4005c/icons/128x128/org.famistudio.FamiStudio.png", "main_categories": "audiovideo", "sub_categories": [ + "Audio", "Sequencer", + "AudioVideoEditing", "Midi", - "Audio" + "Music" ], - "developer_name": "Muse Sequencer Developers", - "verification_verified": false, - "verification_method": "none", + "developer_name": "BleuBleu", + "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": 1735753050, + "verification_login_is_organization": "false", + "verification_website": "famistudio.org", + "verification_timestamp": "1716709882", + "runtime": "org.freedesktop.Platform/x86_64/23.08", + "updated_at": 1740650971, "arches": [ - "x86_64", - "aarch64" + "x86_64" ], - "added_at": 1620627935, - "trending": 8.981138273026694, - "installs_last_month": 461, + "added_at": 1600446687, + "trending": 4.968367184157015, + "installs_last_month": 629, "isMobileFriendly": false }, { @@ -11909,8 +11863,54 @@ "aarch64" ], "added_at": 1610015828, - "trending": 5.102764112911416, - "installs_last_month": 444, + "trending": 7.309922021447827, + "installs_last_month": 506, + "isMobileFriendly": false + }, + { + "name": "MusE", + "keywords": [ + "audio", + "sound", + "jackd,DAW", + "multitrack", + "ladspa", + "lv2", + "midi", + "vst" + ], + "summary": "Digital Audio Workstation", + "description": "\n MusE is a MIDI/Audio sequencer with recording and editing capabilities. It can\n perform audio effects like chorus/flanger in real-time via LASH and it supports\n Jack and ALSA interfaces. MusE aims to be a complete multitrack virtual studio\n for Linux.\n \n ", + "id": "io_github_muse_sequencer_Muse", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0+", + "is_free_license": true, + "app_id": "io.github.muse_sequencer.Muse", + "icon": "https://dl.flathub.org/media/io/github/muse_sequencer.Muse/13b63bc06c8b73817e69d7e8681cf3b9/icons/128x128/io.github.muse_sequencer.Muse.png", + "main_categories": "audiovideo", + "sub_categories": [ + "Sequencer", + "Midi", + "Audio" + ], + "developer_name": "Muse Sequencer 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-24.08", + "updated_at": 1735753050, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1620627935, + "trending": 9.460151908476334, + "installs_last_month": 477, "isMobileFriendly": false }, { @@ -11947,8 +11947,8 @@ "aarch64" ], "added_at": 1683544972, - "trending": 6.557057325951909, - "installs_last_month": 217, + "trending": 7.294747005151429, + "installs_last_month": 220, "isMobileFriendly": false }, { @@ -11984,55 +11984,8 @@ "aarch64" ], "added_at": 1700645174, - "trending": 6.253486169452835, - "installs_last_month": 197, - "isMobileFriendly": false - }, - { - "name": "ChibiTracker", - "keywords": [ - "Impulse Tracker", - "mod", - "s3m", - "xm", - "it", - "sound", - "music", - "music tracker", - "music sequencer", - "clone" - ], - "summary": "Portable Impulse Tracker clone", - "description": "\n ChibiTracker is a portable IT (Impulse Tracker) clone. It is not a 100% clone though, as it adds more features, such as chorus and reverb, stereo samples, an advanced sample editor and more. The user interface also presents some changes, as it can be custom themed and resized.\n \n \n ChibiTracker is Open Source Software under the GNU Public License, and it can be run under Windows, Mac-OS, Linux, FreeBSD, BeOS, and more to come.\n \n \n For those who haven't used trackers before, ChibiTracker is a small, compact music composing application that is easy to learn and powerful enough to sound good.\n \n ", - "id": "com_github_reduz_ChibiTracker", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0", - "is_free_license": true, - "app_id": "com.github.reduz.ChibiTracker", - "icon": "https://dl.flathub.org/media/com/github/reduz.ChibiTracker/d35a77986421fbec65b19e72dea1f592/icons/128x128/com.github.reduz.ChibiTracker.png", - "main_categories": "audiovideo", - "sub_categories": [ - "Audio", - "Sequencer" - ], - "developer_name": "Juan Linietsky (reduz)", - "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": 1726069743, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1548276503, - "trending": 4.452540907602669, - "installs_last_month": 120, + "trending": 8.0943372848161, + "installs_last_month": 208, "isMobileFriendly": false }, { @@ -12080,8 +12033,55 @@ "aarch64" ], "added_at": 1559685891, - "trending": 7.678017195512412, - "installs_last_month": 118, + "trending": 7.212763237278819, + "installs_last_month": 127, + "isMobileFriendly": false + }, + { + "name": "ChibiTracker", + "keywords": [ + "Impulse Tracker", + "mod", + "s3m", + "xm", + "it", + "sound", + "music", + "music tracker", + "music sequencer", + "clone" + ], + "summary": "Portable Impulse Tracker clone", + "description": "\n ChibiTracker is a portable IT (Impulse Tracker) clone. It is not a 100% clone though, as it adds more features, such as chorus and reverb, stereo samples, an advanced sample editor and more. The user interface also presents some changes, as it can be custom themed and resized.\n \n \n ChibiTracker is Open Source Software under the GNU Public License, and it can be run under Windows, Mac-OS, Linux, FreeBSD, BeOS, and more to come.\n \n \n For those who haven't used trackers before, ChibiTracker is a small, compact music composing application that is easy to learn and powerful enough to sound good.\n \n ", + "id": "com_github_reduz_ChibiTracker", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0", + "is_free_license": true, + "app_id": "com.github.reduz.ChibiTracker", + "icon": "https://dl.flathub.org/media/com/github/reduz.ChibiTracker/d35a77986421fbec65b19e72dea1f592/icons/128x128/com.github.reduz.ChibiTracker.png", + "main_categories": "audiovideo", + "sub_categories": [ + "Audio", + "Sequencer" + ], + "developer_name": "Juan Linietsky (reduz)", + "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": 1726069743, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1548276503, + "trending": 3.948473645027495, + "installs_last_month": 123, "isMobileFriendly": false }, { @@ -12119,8 +12119,8 @@ "aarch64" ], "added_at": 1661842762, - "trending": 0.7539369652895862, - "installs_last_month": 98, + "trending": 2.515873866454746, + "installs_last_month": 100, "isMobileFriendly": false } ], @@ -12202,8 +12202,8 @@ "aarch64" ], "added_at": 1597519191, - "trending": 12.61423817560892, - "installs_last_month": 4119, + "trending": 11.920575454638854, + "installs_last_month": 4277, "isMobileFriendly": false }, { @@ -12274,8 +12274,8 @@ "aarch64" ], "added_at": 1521742793, - "trending": 0.5659130295972262, - "installs_last_month": 142, + "trending": 0.627068833657666, + "installs_last_month": 159, "isMobileFriendly": false } ], @@ -12446,8 +12446,8 @@ "aarch64" ], "added_at": 1623314528, - "trending": 7.980659104246639, - "installs_last_month": 25317, + "trending": 8.951772419027948, + "installs_last_month": 26756, "isMobileFriendly": false }, { @@ -12482,8 +12482,8 @@ "x86_64" ], "added_at": 1613461650, - "trending": 9.055659414138088, - "installs_last_month": 21159, + "trending": 9.751952964355317, + "installs_last_month": 21674, "isMobileFriendly": false }, { @@ -12530,8 +12530,8 @@ "aarch64" ], "added_at": 1542663293, - "trending": 13.693448005938643, - "installs_last_month": 17102, + "trending": 14.739135425174553, + "installs_last_month": 17473, "isMobileFriendly": false }, { @@ -12567,8 +12567,8 @@ "aarch64" ], "added_at": 1617787010, - "trending": 8.242931098535124, - "installs_last_month": 10104, + "trending": 8.551288992408892, + "installs_last_month": 10384, "isMobileFriendly": false }, { @@ -12612,8 +12612,8 @@ "aarch64" ], "added_at": 1620163158, - "trending": 7.004800685519178, - "installs_last_month": 7597, + "trending": 6.746651789905403, + "installs_last_month": 7939, "isMobileFriendly": false }, { @@ -12797,8 +12797,8 @@ "aarch64" ], "added_at": 1562361625, - "trending": 10.707719718077712, - "installs_last_month": 6411, + "trending": 11.918079444375438, + "installs_last_month": 6670, "isMobileFriendly": false }, { @@ -12838,8 +12838,45 @@ "aarch64" ], "added_at": 1706169912, - "trending": 8.33616834737214, - "installs_last_month": 6088, + "trending": 6.239976792564908, + "installs_last_month": 6236, + "isMobileFriendly": false + }, + { + "name": "Jellyfin MPV Shim", + "keywords": null, + "summary": "Cast-only client for Jellyfin Media Server", + "description": "\n Jellyfin MPV Shim is a client for the Jellyfin media server which plays media in the\n MPV media player. The application runs in the background and opens MPV only\n when media is cast to the player. The player supports most file formats, allowing you\n to prevent needless transcoding of your media files on the server. The player also has\n advanced features, such as bulk subtitle updates and launching commands on events.\n \n \n Please read the detailed instructions on GitHub for more details, including usage\n instructions and configuration details.\n \n ", + "id": "com_github_iwalton3_jellyfin-mpv-shim", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0", + "is_free_license": true, + "app_id": "com.github.iwalton3.jellyfin-mpv-shim", + "icon": "https://dl.flathub.org/media/com/github/iwalton3.jellyfin-mpv-shim/996468fb41c84d8aeb54e9d88985728a/icons/128x128/com.github.iwalton3.jellyfin-mpv-shim.png", + "main_categories": "audiovideo", + "sub_categories": [ + "Video", + "TV", + "Player" + ], + "developer_name": "Izzie Walton", + "verification_verified": true, + "verification_method": "login_provider", + "verification_login_name": "iwalton3", + "verification_login_provider": "github", + "verification_login_is_organization": "true", + "verification_website": null, + "verification_timestamp": "1680105891", + "runtime": "org.gnome.Platform/x86_64/48", + "updated_at": 1743569673, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1586505616, + "trending": 2.2592775045615414, + "installs_last_month": 1328, "isMobileFriendly": false }, { @@ -12890,46 +12927,9 @@ "aarch64" ], "added_at": 1698070219, - "trending": 13.85265445047231, - "installs_last_month": 1306, - "isMobileFriendly": true - }, - { - "name": "Jellyfin MPV Shim", - "keywords": null, - "summary": "Cast-only client for Jellyfin Media Server", - "description": "\n Jellyfin MPV Shim is a client for the Jellyfin media server which plays media in the\n MPV media player. The application runs in the background and opens MPV only\n when media is cast to the player. The player supports most file formats, allowing you\n to prevent needless transcoding of your media files on the server. The player also has\n advanced features, such as bulk subtitle updates and launching commands on events.\n \n \n Please read the detailed instructions on GitHub for more details, including usage\n instructions and configuration details.\n \n ", - "id": "com_github_iwalton3_jellyfin-mpv-shim", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0", - "is_free_license": true, - "app_id": "com.github.iwalton3.jellyfin-mpv-shim", - "icon": "https://dl.flathub.org/media/com/github/iwalton3.jellyfin-mpv-shim/996468fb41c84d8aeb54e9d88985728a/icons/128x128/com.github.iwalton3.jellyfin-mpv-shim.png", - "main_categories": "audiovideo", - "sub_categories": [ - "Video", - "TV", - "Player" - ], - "developer_name": "Izzie Walton", - "verification_verified": true, - "verification_method": "login_provider", - "verification_login_name": "iwalton3", - "verification_login_provider": "github", - "verification_login_is_organization": "true", - "verification_website": null, - "verification_timestamp": "1680105891", - "runtime": "org.gnome.Platform/x86_64/48", - "updated_at": 1743569673, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1586505616, - "trending": -0.8662278110319928, + "trending": 14.582256133365613, "installs_last_month": 1285, - "isMobileFriendly": false + "isMobileFriendly": true }, { "name": "EcoTubeHQ", @@ -12983,47 +12983,8 @@ "aarch64" ], "added_at": 1726129036, - "trending": 1.2123396606159909, - "installs_last_month": 1105, - "isMobileFriendly": false - }, - { - "name": "Delfin", - "keywords": null, - "summary": "Stream movies and TV shows from Jellyfin", - "description": "Delfin is a native client for the Jellyfin media server. It features a fast and clean\n interface to stream your media in an embedded MPV-based video player.\n Delfin currently supports streaming movies and TV shows from your library. The video\n player\n supports the Intro Skipper plugin for skipping intros automatically, and the Jellyscrub\n plugin\n to show thumbnails while scrubbing through videos.\n This is an early release, you may run into bugs or missing features. Delfin does not come\n with any media, you must connect to a Jellyfin server. Plugins must be installed and\n configured on your server to be available from Delfin.\n ", - "id": "cafe_avery_Delfin", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0", - "is_free_license": true, - "app_id": "cafe.avery.Delfin", - "icon": "https://dl.flathub.org/media/cafe/avery/Delfin/22aa1553b97941724e353f5e38deb933/icons/128x128/cafe.avery.Delfin.png", - "main_categories": "audiovideo", - "sub_categories": [ - "Video", - "Player", - "TV", - "GTK", - "GNOME" - ], - "developer_name": "Avery", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "avery.cafe", - "verification_timestamp": "1701751440", - "runtime": "org.gnome.Platform/x86_64/46", - "updated_at": 1732312818, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1701682986, - "trending": 10.007578126484525, - "installs_last_month": 1001, + "trending": 6.411553232551325, + "installs_last_month": 1143, "isMobileFriendly": false }, { @@ -13063,8 +13024,47 @@ "aarch64" ], "added_at": 1741532394, - "trending": 4.973289780911313, - "installs_last_month": 978, + "trending": 3.464503880305056, + "installs_last_month": 1041, + "isMobileFriendly": false + }, + { + "name": "Delfin", + "keywords": null, + "summary": "Stream movies and TV shows from Jellyfin", + "description": "Delfin is a native client for the Jellyfin media server. It features a fast and clean\n interface to stream your media in an embedded MPV-based video player.\n Delfin currently supports streaming movies and TV shows from your library. The video\n player\n supports the Intro Skipper plugin for skipping intros automatically, and the Jellyscrub\n plugin\n to show thumbnails while scrubbing through videos.\n This is an early release, you may run into bugs or missing features. Delfin does not come\n with any media, you must connect to a Jellyfin server. Plugins must be installed and\n configured on your server to be available from Delfin.\n ", + "id": "cafe_avery_Delfin", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0", + "is_free_license": true, + "app_id": "cafe.avery.Delfin", + "icon": "https://dl.flathub.org/media/cafe/avery/Delfin/22aa1553b97941724e353f5e38deb933/icons/128x128/cafe.avery.Delfin.png", + "main_categories": "audiovideo", + "sub_categories": [ + "Video", + "Player", + "TV", + "GTK", + "GNOME" + ], + "developer_name": "Avery", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "avery.cafe", + "verification_timestamp": "1701751440", + "runtime": "org.gnome.Platform/x86_64/46", + "updated_at": 1732312818, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1701682986, + "trending": 11.424021460770062, + "installs_last_month": 1004, "isMobileFriendly": false }, { @@ -13098,8 +13098,8 @@ "aarch64" ], "added_at": 1678691815, - "trending": 7.059706537492308, - "installs_last_month": 751, + "trending": 5.598348057563114, + "installs_last_month": 769, "isMobileFriendly": false }, { @@ -13140,8 +13140,8 @@ "aarch64" ], "added_at": 1734290578, - "trending": 8.60207042773809, - "installs_last_month": 598, + "trending": 10.218168636456287, + "installs_last_month": 653, "isMobileFriendly": false }, { @@ -13235,8 +13235,8 @@ "aarch64" ], "added_at": 1695624253, - "trending": 13.81065407827587, - "installs_last_month": 555, + "trending": 15.311030421142144, + "installs_last_month": 578, "isMobileFriendly": true }, { @@ -13271,8 +13271,8 @@ "aarch64" ], "added_at": 1685340808, - "trending": 6.350066867370504, - "installs_last_month": 115, + "trending": 6.5140932611770666, + "installs_last_month": 121, "isMobileFriendly": false }, { @@ -13422,12 +13422,12 @@ ], "added_at": 1664953374, "trending": 7.69895274337194, - "installs_last_month": 62, + "installs_last_month": 64, "isMobileFriendly": true } ], "query": "", - "processingTimeMs": 4, + "processingTimeMs": 5, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -13495,8 +13495,8 @@ "aarch64" ], "added_at": 1732792119, - "trending": 14.303653482842147, - "installs_last_month": 821, + "trending": 14.344631072007637, + "installs_last_month": 857, "isMobileFriendly": false }, { @@ -13529,8 +13529,8 @@ "x86_64" ], "added_at": 1728976641, - "trending": 7.370388106714646, - "installs_last_month": 106, + "trending": 9.070961316748924, + "installs_last_month": 107, "isMobileFriendly": false }, { @@ -13563,8 +13563,8 @@ "x86_64" ], "added_at": 1726253049, - "trending": 1.455620877082512, - "installs_last_month": 90, + "trending": 3.7593711291166327, + "installs_last_month": 92, "isMobileFriendly": false }, { @@ -13597,8 +13597,8 @@ "x86_64" ], "added_at": 1726046707, - "trending": 2.2410078593522385, - "installs_last_month": 67, + "trending": 6.157555996377303, + "installs_last_month": 74, "isMobileFriendly": false }, { @@ -13631,8 +13631,8 @@ "x86_64" ], "added_at": 1727677770, - "trending": 9.448117996887609, - "installs_last_month": 57, + "trending": 5.510749635366174, + "installs_last_month": 63, "isMobileFriendly": false }, { @@ -13716,8 +13716,8 @@ "aarch64" ], "added_at": 1652257274, - "trending": 8.64306273211973, - "installs_last_month": 2318, + "trending": 10.75789488547459, + "installs_last_month": 2392, "isMobileFriendly": false }, { @@ -13752,8 +13752,8 @@ "aarch64" ], "added_at": 1614240708, - "trending": 1.832537851004922, - "installs_last_month": 545, + "trending": 0.24536919649779876, + "installs_last_month": 565, "isMobileFriendly": false }, { @@ -13787,8 +13787,8 @@ "aarch64" ], "added_at": 1738343011, - "trending": 7.966317022607469, - "installs_last_month": 268, + "trending": 9.547936439223086, + "installs_last_month": 259, "isMobileFriendly": false } ], @@ -13842,8 +13842,8 @@ "aarch64" ], "added_at": 1631138980, - "trending": 3.625873522597226, - "installs_last_month": 3083, + "trending": 5.814254089037928, + "installs_last_month": 3241, "isMobileFriendly": false }, { @@ -13951,8 +13951,8 @@ "aarch64" ], "added_at": 1502263406, - "trending": 14.290088470063392, - "installs_last_month": 586, + "trending": 15.4364592665903, + "installs_last_month": 601, "isMobileFriendly": true }, { @@ -14009,8 +14009,8 @@ "aarch64" ], "added_at": 1664952135, - "trending": 12.506159380945132, - "installs_last_month": 516, + "trending": 12.952204094881663, + "installs_last_month": 513, "isMobileFriendly": false }, { @@ -14043,8 +14043,8 @@ "x86_64" ], "added_at": 1711606678, - "trending": 1.279593973018649, - "installs_last_month": 244, + "trending": 3.8238056347455704, + "installs_last_month": 257, "isMobileFriendly": false }, { @@ -14079,8 +14079,8 @@ "aarch64" ], "added_at": 1644155066, - "trending": 10.060605727102912, - "installs_last_month": 176, + "trending": 11.399794193601194, + "installs_last_month": 181, "isMobileFriendly": false }, { @@ -14128,8 +14128,8 @@ "aarch64" ], "added_at": 1693384474, - "trending": 8.928918092478645, - "installs_last_month": 100, + "trending": 11.561483540615946, + "installs_last_month": 106, "isMobileFriendly": false } ], @@ -14212,8 +14212,8 @@ "aarch64" ], "added_at": 1629353328, - "trending": 12.86652387652579, - "installs_last_month": 950, + "trending": 11.34923449710985, + "installs_last_month": 972, "isMobileFriendly": false }, { @@ -14247,8 +14247,8 @@ "aarch64" ], "added_at": 1718956544, - "trending": 3.53051039568409, - "installs_last_month": 507, + "trending": 4.271459525343431, + "installs_last_month": 531, "isMobileFriendly": false }, { @@ -14466,8 +14466,8 @@ "aarch64" ], "added_at": 1501584244, - "trending": 13.19792152751947, - "installs_last_month": 467, + "trending": 12.256185011382668, + "installs_last_month": 483, "isMobileFriendly": false } ], @@ -14518,8 +14518,8 @@ "aarch64" ], "added_at": 1511228529, - "trending": 10.620750151140754, - "installs_last_month": 55947, + "trending": 11.011345433968971, + "installs_last_month": 57869, "isMobileFriendly": false }, { @@ -14559,8 +14559,8 @@ "aarch64" ], "added_at": 1588577796, - "trending": 19.841128636195197, - "installs_last_month": 14740, + "trending": 14.548742199118914, + "installs_last_month": 15565, "isMobileFriendly": false }, { @@ -14602,8 +14602,8 @@ "aarch64" ], "added_at": 1541523541, - "trending": 7.869855641617045, - "installs_last_month": 11355, + "trending": 8.566099218968965, + "installs_last_month": 11681, "isMobileFriendly": false }, { @@ -14636,8 +14636,8 @@ "x86_64" ], "added_at": 1512419308, - "trending": 8.832309930360198, - "installs_last_month": 10785, + "trending": 9.08034392223774, + "installs_last_month": 11157, "isMobileFriendly": false }, { @@ -14678,8 +14678,8 @@ "x86_64" ], "added_at": 1515761933, - "trending": 14.71061919634668, - "installs_last_month": 10307, + "trending": 15.086513434338626, + "installs_last_month": 10491, "isMobileFriendly": false }, { @@ -14717,8 +14717,8 @@ "x86_64" ], "added_at": 1653889917, - "trending": 7.231796828922606, - "installs_last_month": 8782, + "trending": 10.477263606813914, + "installs_last_month": 9137, "isMobileFriendly": false }, { @@ -14757,8 +14757,8 @@ "aarch64" ], "added_at": 1544824365, - "trending": 10.656387494895974, - "installs_last_month": 8074, + "trending": 10.302196151563528, + "installs_last_month": 8308, "isMobileFriendly": false }, { @@ -14792,8 +14792,8 @@ "aarch64" ], "added_at": 1573929233, - "trending": 8.145218146396484, - "installs_last_month": 4706, + "trending": 7.066737159272619, + "installs_last_month": 4870, "isMobileFriendly": false }, { @@ -14827,8 +14827,8 @@ "aarch64" ], "added_at": 1505809439, - "trending": 9.18237117807088, - "installs_last_month": 4504, + "trending": 13.573928251307349, + "installs_last_month": 4612, "isMobileFriendly": false }, { @@ -14867,8 +14867,8 @@ "aarch64" ], "added_at": 1544443055, - "trending": 13.067190378292876, - "installs_last_month": 3424, + "trending": 14.164310664053437, + "installs_last_month": 3513, "isMobileFriendly": false }, { @@ -14908,8 +14908,8 @@ "aarch64" ], "added_at": 1533057898, - "trending": 10.803674833886417, - "installs_last_month": 3141, + "trending": 8.572394215992981, + "installs_last_month": 3241, "isMobileFriendly": false }, { @@ -14949,8 +14949,8 @@ "aarch64" ], "added_at": 1631138980, - "trending": 3.625873522597226, - "installs_last_month": 3083, + "trending": 5.814254089037928, + "installs_last_month": 3241, "isMobileFriendly": false }, { @@ -14984,8 +14984,8 @@ "aarch64" ], "added_at": 1572036490, - "trending": 7.830281112028151, - "installs_last_month": 2923, + "trending": 6.372983391399178, + "installs_last_month": 3050, "isMobileFriendly": false }, { @@ -15023,8 +15023,8 @@ "aarch64" ], "added_at": 1548926522, - "trending": 7.947203848350916, - "installs_last_month": 2839, + "trending": 8.203392086751812, + "installs_last_month": 2909, "isMobileFriendly": false }, { @@ -15228,8 +15228,8 @@ "aarch64" ], "added_at": 1507895172, - "trending": 11.863954988571695, - "installs_last_month": 2629, + "trending": 14.466039840259178, + "installs_last_month": 2740, "isMobileFriendly": false }, { @@ -15267,8 +15267,8 @@ "aarch64" ], "added_at": 1602483534, - "trending": 12.173685335202304, - "installs_last_month": 2485, + "trending": 10.770148780610388, + "installs_last_month": 2521, "isMobileFriendly": false }, { @@ -15304,8 +15304,8 @@ "aarch64" ], "added_at": 1583925575, - "trending": 8.891224608288269, - "installs_last_month": 2404, + "trending": 10.0642663272444, + "installs_last_month": 2488, "isMobileFriendly": false }, { @@ -15342,8 +15342,8 @@ "aarch64" ], "added_at": 1593156339, - "trending": 6.735410934476713, - "installs_last_month": 2386, + "trending": 7.515248007339013, + "installs_last_month": 2465, "isMobileFriendly": false }, { @@ -15387,8 +15387,8 @@ "aarch64" ], "added_at": 1533666080, - "trending": 11.256057708463896, - "installs_last_month": 2145, + "trending": 10.943098815741871, + "installs_last_month": 2274, "isMobileFriendly": false }, { @@ -15438,8 +15438,8 @@ "aarch64" ], "added_at": 1646263732, - "trending": 17.665036886113935, - "installs_last_month": 2141, + "trending": 16.284937115394676, + "installs_last_month": 2234, "isMobileFriendly": false }, { @@ -15473,8 +15473,8 @@ "aarch64" ], "added_at": 1620628045, - "trending": 9.664978734399115, - "installs_last_month": 2039, + "trending": 12.034132781280192, + "installs_last_month": 2092, "isMobileFriendly": false }, { @@ -15514,8 +15514,8 @@ "aarch64" ], "added_at": 1711214046, - "trending": 5.991954069539055, - "installs_last_month": 1573, + "trending": 3.487282505900101, + "installs_last_month": 1636, "isMobileFriendly": false }, { @@ -15553,8 +15553,8 @@ "aarch64" ], "added_at": 1512667538, - "trending": 9.136569548002765, - "installs_last_month": 1541, + "trending": 10.592165824818755, + "installs_last_month": 1599, "isMobileFriendly": false }, { @@ -15588,8 +15588,8 @@ "aarch64" ], "added_at": 1572036896, - "trending": 10.596554671176328, - "installs_last_month": 1485, + "trending": 12.42683128275533, + "installs_last_month": 1523, "isMobileFriendly": false }, { @@ -15631,8 +15631,8 @@ "aarch64" ], "added_at": 1492622275, - "trending": 9.475227195917816, - "installs_last_month": 1417, + "trending": 11.704411104111882, + "installs_last_month": 1456, "isMobileFriendly": false }, { @@ -15670,8 +15670,8 @@ "aarch64" ], "added_at": 1541523265, - "trending": 0.757883748965458, - "installs_last_month": 1364, + "trending": 3.910094221464035, + "installs_last_month": 1404, "isMobileFriendly": false }, { @@ -15716,8 +15716,8 @@ "aarch64" ], "added_at": 1653681937, - "trending": 5.597922863054148, - "installs_last_month": 1281, + "trending": 5.782090840388885, + "installs_last_month": 1309, "isMobileFriendly": false }, { @@ -15758,8 +15758,8 @@ "aarch64" ], "added_at": 1536937874, - "trending": 9.510151999563874, - "installs_last_month": 1217, + "trending": 10.371164485268968, + "installs_last_month": 1250, "isMobileFriendly": false }, { @@ -15798,8 +15798,8 @@ "aarch64" ], "added_at": 1732792171, - "trending": 3.9291144470746024, - "installs_last_month": 1140, + "trending": 5.429873580384768, + "installs_last_month": 1143, "isMobileFriendly": false }, { @@ -15839,8 +15839,8 @@ "aarch64" ], "added_at": 1706169139, - "trending": 9.76725388988971, - "installs_last_month": 1091, + "trending": 11.08008737408489, + "installs_last_month": 1106, "isMobileFriendly": false }, { @@ -15874,8 +15874,8 @@ "aarch64" ], "added_at": 1597519138, - "trending": 12.484326747793272, - "installs_last_month": 978, + "trending": 11.261246878153386, + "installs_last_month": 1002, "isMobileFriendly": false }, { @@ -16034,8 +16034,8 @@ "aarch64" ], "added_at": 1610956326, - "trending": 10.48519443773504, - "installs_last_month": 931, + "trending": 12.158925262397082, + "installs_last_month": 989, "isMobileFriendly": false }, { @@ -16069,8 +16069,8 @@ "aarch64" ], "added_at": 1652852157, - "trending": 8.435314172766988, - "installs_last_month": 859, + "trending": 9.384899481927992, + "installs_last_month": 870, "isMobileFriendly": false }, { @@ -16103,8 +16103,42 @@ "x86_64" ], "added_at": 1700484389, - "trending": 8.038062236951356, - "installs_last_month": 841, + "trending": 8.821208879339302, + "installs_last_month": 866, + "isMobileFriendly": false + }, + { + "name": "STM32CubeIDE", + "keywords": null, + "summary": "Integrated Development Environment for STM32", + "description": "STM32CubeIDE is an advanced C/C++ development platform with peripheral configuration, code generation, code compilation, and debug features for STM32 microcontrollers and microprocessors. It is based on the ECLIPSE™/CDT framework and GCC toolchain for the development, and GDB for the debugging. It allows the integration of the hundreds of existing plugins that complete the features of the ECLIPSE™ IDE.STM32CubeIDE integrates all STM32CubeMX functionalities to offer all-in-one tool experience and save installation and development time. After the selection of an empty STM32 MCU or MPU, or preconfigured microcontroller or microprocessor from the selection of a board, the project is created and initialization code generated. At any time during the development, the user can return to the initialization and configuration of the peripherals or middleware and regenerate the initialization code with no impact on the user code.STM32CubeIDE includes build and stack analyzers that provide the user with useful information about project status and memory requirements.STM32CubeIDE also includes standard and advanced debugging features including views of CPU core registers, memories, and peripheral registers, as well as live variable watch, Serial Wire Viewer interface, or fault analyzer.Note: For flashing to work properly you will need to add udev rules according to your device. If your device has an id of 0483:374b (check lsusb), you will need to create a file in /etc/udev/rules.d/ with the contents: SUBSYSTEMS==\"usb\", ATTRS{idVendor}==\"0483\", ATTRS{idProduct}==\"374b\", GROUP=\"users\", MODE=\"0666\" and either reboot or run: sudo udevadm control --reload", + "id": "com_st_STM32CubeIDE", + "type": "desktop-application", + "translations": {}, + "project_license": "EPL-2.0", + "is_free_license": true, + "app_id": "com.st.STM32CubeIDE", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.st.STM32CubeIDE.png", + "main_categories": "development", + "sub_categories": [ + "IDE" + ], + "developer_name": "ST Microelectronics", + "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/44", + "updated_at": 1680035868, + "arches": [ + "x86_64" + ], + "added_at": 1588577876, + "trending": 7.63967457810752, + "installs_last_month": 720, "isMobileFriendly": false }, { @@ -16138,42 +16172,8 @@ "aarch64" ], "added_at": 1699222000, - "trending": 7.858137193744008, - "installs_last_month": 710, - "isMobileFriendly": false - }, - { - "name": "STM32CubeIDE", - "keywords": null, - "summary": "Integrated Development Environment for STM32", - "description": "STM32CubeIDE is an advanced C/C++ development platform with peripheral configuration, code generation, code compilation, and debug features for STM32 microcontrollers and microprocessors. It is based on the ECLIPSE™/CDT framework and GCC toolchain for the development, and GDB for the debugging. It allows the integration of the hundreds of existing plugins that complete the features of the ECLIPSE™ IDE.STM32CubeIDE integrates all STM32CubeMX functionalities to offer all-in-one tool experience and save installation and development time. After the selection of an empty STM32 MCU or MPU, or preconfigured microcontroller or microprocessor from the selection of a board, the project is created and initialization code generated. At any time during the development, the user can return to the initialization and configuration of the peripherals or middleware and regenerate the initialization code with no impact on the user code.STM32CubeIDE includes build and stack analyzers that provide the user with useful information about project status and memory requirements.STM32CubeIDE also includes standard and advanced debugging features including views of CPU core registers, memories, and peripheral registers, as well as live variable watch, Serial Wire Viewer interface, or fault analyzer.Note: For flashing to work properly you will need to add udev rules according to your device. If your device has an id of 0483:374b (check lsusb), you will need to create a file in /etc/udev/rules.d/ with the contents: SUBSYSTEMS==\"usb\", ATTRS{idVendor}==\"0483\", ATTRS{idProduct}==\"374b\", GROUP=\"users\", MODE=\"0666\" and either reboot or run: sudo udevadm control --reload", - "id": "com_st_STM32CubeIDE", - "type": "desktop-application", - "translations": {}, - "project_license": "EPL-2.0", - "is_free_license": true, - "app_id": "com.st.STM32CubeIDE", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.st.STM32CubeIDE.png", - "main_categories": "development", - "sub_categories": [ - "IDE" - ], - "developer_name": "ST Microelectronics", - "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/44", - "updated_at": 1680035868, - "arches": [ - "x86_64" - ], - "added_at": 1588577876, - "trending": 8.430818521217649, - "installs_last_month": 683, + "trending": 7.416816877617451, + "installs_last_month": 712, "isMobileFriendly": false }, { @@ -16207,8 +16207,8 @@ "aarch64" ], "added_at": 1679817740, - "trending": 2.9460196545146347, - "installs_last_month": 577, + "trending": 4.624238291188269, + "installs_last_month": 616, "isMobileFriendly": false }, { @@ -16247,8 +16247,8 @@ "aarch64" ], "added_at": 1664952422, - "trending": 12.974048763857637, - "installs_last_month": 562, + "trending": 11.7391465737583, + "installs_last_month": 593, "isMobileFriendly": false }, { @@ -16288,8 +16288,8 @@ "aarch64" ], "added_at": 1533314042, - "trending": 8.242666167626295, - "installs_last_month": 452, + "trending": 9.151345698425732, + "installs_last_month": 492, "isMobileFriendly": false }, { @@ -16338,8 +16338,8 @@ "x86_64" ], "added_at": 1685597936, - "trending": 8.517337881445284, - "installs_last_month": 411, + "trending": 7.604545403152195, + "installs_last_month": 431, "isMobileFriendly": false }, { @@ -16377,8 +16377,8 @@ "x86_64" ], "added_at": 1680418800, - "trending": 7.495821093340039, - "installs_last_month": 399, + "trending": 6.529815019541131, + "installs_last_month": 402, "isMobileFriendly": false }, { @@ -16411,8 +16411,8 @@ "x86_64" ], "added_at": 1732797730, - "trending": 1.570733216370988, - "installs_last_month": 362, + "trending": 0.7185680211736181, + "installs_last_month": 379, "isMobileFriendly": false }, { @@ -16454,8 +16454,8 @@ "aarch64" ], "added_at": 1675495041, - "trending": 7.849249197189581, - "installs_last_month": 319, + "trending": 8.009224292034691, + "installs_last_month": 320, "isMobileFriendly": false }, { @@ -16489,82 +16489,8 @@ "aarch64" ], "added_at": 1676357753, - "trending": 1.7565036908464329, - "installs_last_month": 293, - "isMobileFriendly": false - }, - { - "name": "RubyMine", - "keywords": [ - "development" - ], - "summary": "Enjoy first-class support for Ruby 2.x and Rails 6.x, Sinatra, React, Angular, Puppet, Docker, and more", - "description": "\n RubyMine is an integrated development environment that helps you be more productive in every aspect of Ruby/Rails projects development – from writing and debugging code to testing and deploying a completed application. This section will give you a brief overview of some of the most essential features available in RubyMine.\n \n NOTE: This wrapper is not verified by, affiliated with, or supported by JetBrains s.r.o.\n ", - "id": "com_jetbrains_RubyMine", - "type": "desktop-application", - "translations": {}, - "project_license": "LicenseRef-proprietary", - "is_free_license": false, - "app_id": "com.jetbrains.RubyMine", - "icon": "https://dl.flathub.org/media/com/jetbrains/RubyMine/c9c4eb98f3182c850cc1cc50ce32751e/icons/128x128/com.jetbrains.RubyMine.png", - "main_categories": "development", - "sub_categories": [ - "IDE" - ], - "developer_name": "JetBrains s.r.o.", - "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.Sdk/x86_64/24.08", - "updated_at": 1741975167, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1632159437, - "trending": 8.450928183352119, - "installs_last_month": 273, - "isMobileFriendly": false - }, - { - "name": "Xilinx Vivado Design Suite", - "keywords": [ - "FPGA", - "SoC" - ], - "summary": "Xilinx Design Suite for hardware development", - "description": "Vivado Design Suite is a software suite designed by Xilinx for the design, synthesis and analysis of HDL for its line of FPGAs and SoCs. Vivado Design Suite includes many tools, like Vivado, Vitis, Vitis HLS and many others. This package provides a flatpak wrapper over an official installation. As the Xilinx tools are not redistributable, this package does not contain any Xilinx-licensed material, which is instead downloaded on-the-fly through the official Xilinx installer. To install it, install the flatpak package, then run any Xilinx launcher and follow the instructions. To uninstall, just remove the flatpak package to remove this wrapper. Note that this does not remove the Xilinx installation; to remove it, run the launcher \"Uninstall Xilinx Design Tools or Devices\" (or run \"flatpak uninstall com.github.corna.Vivado --delete-data\" to wipe everything in in \"~/.var/app/com.github.corna.Vivado/\").\n Why can't I see some of my files in Vivado? - All the Xilinx tools handled by this wrapper run in a sandbox with limited filesystem access, only your downloads, documents and desktop folders are visibile. Either work in those directories or override the default permission (with \"flatpak override com.github.corna.Vivado --filesystem=<path_here>\").\n I get an error \"Can't open project [...]. Please verify that the project still exist.\", why? - Same as before, make sure that the project is in one of the allowed folders.\n I have created a project outside Desktop or Documents: where are they? - You can find the sandboxed filesystem in \"~/var/app/com.github.corna.Vivado/\".\n I can not access the hardware devices. - Have you installed the \"cable drivers\" (which are just udev rules) at the end of the installation? To install them, run: \"cd ~/.var/app/com.github.corna.Vivado/data/xilinx-install/Vivado/<version>/data/xicom/cable_drivers/lin64/install_script/install_drivers/ && sudo ./install_drivers && sudo udevadm control --reload\", then re-connect any hardware device.\n Can I deny internet access to the Xilinx tools? - Yes, just remove the corresponding permission with: \"flatpak override com.github.corna.Vivado --unshare=network\". Note that the license manager uses your MAC addresses, so you may experience issues with non free components.\n How can I install additional components? - Run the launcher \"Add Xilinx Design Tools or Devices\".\n Can I install an additional version of the Xilinx tools? - Yes, run \"flatpak run --command=xilinx_install com.github.corna.Vivado\".\n How can I remove a particular version? - Run the launcher \"Uninstall Xilinx Design Tools or Devices\".\n NOTE: This wrapper is not verified by, affiliated with, or supported by Xilinx, Inc.\n ", - "id": "com_github_corna_Vivado", - "type": "desktop-application", - "translations": {}, - "project_license": "LicenseRef-proprietary", - "is_free_license": false, - "app_id": "com.github.corna.Vivado", - "icon": "https://dl.flathub.org/media/com/github/corna.Vivado/07ad2cd5a0a53383dce2081f799f9726/icons/128x128/com.github.corna.Vivado.png", - "main_categories": "development", - "sub_categories": [ - "IDE" - ], - "developer_name": "Xilinx, Inc.", - "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.Sdk/x86_64/47", - "updated_at": 1732483859, - "arches": [ - "x86_64" - ], - "added_at": 1628624608, - "trending": 1.924309543904, - "installs_last_month": 266, + "trending": 1.5279007656287455, + "installs_last_month": 308, "isMobileFriendly": false }, { @@ -16603,8 +16529,82 @@ "aarch64" ], "added_at": 1628537023, - "trending": 0.8213206725544853, - "installs_last_month": 264, + "trending": 1.15166795468326, + "installs_last_month": 283, + "isMobileFriendly": false + }, + { + "name": "RubyMine", + "keywords": [ + "development" + ], + "summary": "Enjoy first-class support for Ruby 2.x and Rails 6.x, Sinatra, React, Angular, Puppet, Docker, and more", + "description": "\n RubyMine is an integrated development environment that helps you be more productive in every aspect of Ruby/Rails projects development – from writing and debugging code to testing and deploying a completed application. This section will give you a brief overview of some of the most essential features available in RubyMine.\n \n NOTE: This wrapper is not verified by, affiliated with, or supported by JetBrains s.r.o.\n ", + "id": "com_jetbrains_RubyMine", + "type": "desktop-application", + "translations": {}, + "project_license": "LicenseRef-proprietary", + "is_free_license": false, + "app_id": "com.jetbrains.RubyMine", + "icon": "https://dl.flathub.org/media/com/jetbrains/RubyMine/c9c4eb98f3182c850cc1cc50ce32751e/icons/128x128/com.jetbrains.RubyMine.png", + "main_categories": "development", + "sub_categories": [ + "IDE" + ], + "developer_name": "JetBrains s.r.o.", + "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.Sdk/x86_64/24.08", + "updated_at": 1741975167, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1632159437, + "trending": 8.777628324129829, + "installs_last_month": 283, + "isMobileFriendly": false + }, + { + "name": "Xilinx Vivado Design Suite", + "keywords": [ + "FPGA", + "SoC" + ], + "summary": "Xilinx Design Suite for hardware development", + "description": "Vivado Design Suite is a software suite designed by Xilinx for the design, synthesis and analysis of HDL for its line of FPGAs and SoCs. Vivado Design Suite includes many tools, like Vivado, Vitis, Vitis HLS and many others. This package provides a flatpak wrapper over an official installation. As the Xilinx tools are not redistributable, this package does not contain any Xilinx-licensed material, which is instead downloaded on-the-fly through the official Xilinx installer. To install it, install the flatpak package, then run any Xilinx launcher and follow the instructions. To uninstall, just remove the flatpak package to remove this wrapper. Note that this does not remove the Xilinx installation; to remove it, run the launcher \"Uninstall Xilinx Design Tools or Devices\" (or run \"flatpak uninstall com.github.corna.Vivado --delete-data\" to wipe everything in in \"~/.var/app/com.github.corna.Vivado/\").\n Why can't I see some of my files in Vivado? - All the Xilinx tools handled by this wrapper run in a sandbox with limited filesystem access, only your downloads, documents and desktop folders are visibile. Either work in those directories or override the default permission (with \"flatpak override com.github.corna.Vivado --filesystem=<path_here>\").\n I get an error \"Can't open project [...]. Please verify that the project still exist.\", why? - Same as before, make sure that the project is in one of the allowed folders.\n I have created a project outside Desktop or Documents: where are they? - You can find the sandboxed filesystem in \"~/var/app/com.github.corna.Vivado/\".\n I can not access the hardware devices. - Have you installed the \"cable drivers\" (which are just udev rules) at the end of the installation? To install them, run: \"cd ~/.var/app/com.github.corna.Vivado/data/xilinx-install/Vivado/<version>/data/xicom/cable_drivers/lin64/install_script/install_drivers/ && sudo ./install_drivers && sudo udevadm control --reload\", then re-connect any hardware device.\n Can I deny internet access to the Xilinx tools? - Yes, just remove the corresponding permission with: \"flatpak override com.github.corna.Vivado --unshare=network\". Note that the license manager uses your MAC addresses, so you may experience issues with non free components.\n How can I install additional components? - Run the launcher \"Add Xilinx Design Tools or Devices\".\n Can I install an additional version of the Xilinx tools? - Yes, run \"flatpak run --command=xilinx_install com.github.corna.Vivado\".\n How can I remove a particular version? - Run the launcher \"Uninstall Xilinx Design Tools or Devices\".\n NOTE: This wrapper is not verified by, affiliated with, or supported by Xilinx, Inc.\n ", + "id": "com_github_corna_Vivado", + "type": "desktop-application", + "translations": {}, + "project_license": "LicenseRef-proprietary", + "is_free_license": false, + "app_id": "com.github.corna.Vivado", + "icon": "https://dl.flathub.org/media/com/github/corna.Vivado/07ad2cd5a0a53383dce2081f799f9726/icons/128x128/com.github.corna.Vivado.png", + "main_categories": "development", + "sub_categories": [ + "IDE" + ], + "developer_name": "Xilinx, Inc.", + "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.Sdk/x86_64/47", + "updated_at": 1732483859, + "arches": [ + "x86_64" + ], + "added_at": 1628624608, + "trending": 2.5740501186784046, + "installs_last_month": 262, "isMobileFriendly": false }, { @@ -16638,8 +16638,8 @@ "x86_64" ], "added_at": 1721461326, - "trending": 9.9213685034504, - "installs_last_month": 233, + "trending": 9.134451743170516, + "installs_last_month": 244, "isMobileFriendly": false }, { @@ -16678,8 +16678,8 @@ "aarch64" ], "added_at": 1548003667, - "trending": 10.310136817704, - "installs_last_month": 213, + "trending": 9.679106042876226, + "installs_last_month": 236, "isMobileFriendly": false }, { @@ -16713,8 +16713,45 @@ "aarch64" ], "added_at": 1702977702, - "trending": 8.044490551777898, - "installs_last_month": 201, + "trending": 6.434532873818321, + "installs_last_month": 210, + "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.204382961838809, + "installs_last_month": 125, "isMobileFriendly": false }, { @@ -16748,8 +16785,8 @@ "aarch64" ], "added_at": 1702975052, - "trending": 6.0982867492012405, - "installs_last_month": 115, + "trending": 7.48465518052697, + "installs_last_month": 125, "isMobileFriendly": false }, { @@ -16790,45 +16827,8 @@ "aarch64" ], "added_at": 1724320123, - "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, + "trending": 3.9956825804751785, + "installs_last_month": 115, "isMobileFriendly": false }, { @@ -16862,7 +16862,7 @@ ], "added_at": 1607331647, "trending": 9.753771819184184, - "installs_last_month": 103, + "installs_last_month": 109, "isMobileFriendly": false }, { @@ -16901,8 +16901,8 @@ "x86_64" ], "added_at": 1606132652, - "trending": 1.309821108138931, - "installs_last_month": 102, + "trending": -0.4966743180467406, + "installs_last_month": 106, "isMobileFriendly": false }, { @@ -16943,8 +16943,8 @@ "aarch64" ], "added_at": 1702293492, - "trending": 7.380912003404469, - "installs_last_month": 73, + "trending": 7.432738533826763, + "installs_last_month": 93, "isMobileFriendly": false }, { @@ -16978,8 +16978,8 @@ "aarch64" ], "added_at": 1687350380, - "trending": 3.720218104586202, - "installs_last_month": 65, + "trending": 2.1595094475531615, + "installs_last_month": 64, "isMobileFriendly": false }, { @@ -17054,13 +17054,13 @@ "aarch64" ], "added_at": 1706173214, - "trending": 12.62178389470815, - "installs_last_month": 48, + "trending": 8.525499478128525, + "installs_last_month": 50, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 10, + "processingTimeMs": 11, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -17177,8 +17177,8 @@ "aarch64" ], "added_at": 1502263406, - "trending": 14.290088470063392, - "installs_last_month": 586, + "trending": 15.4364592665903, + "installs_last_month": 601, "isMobileFriendly": true } ], @@ -17226,8 +17226,8 @@ "aarch64" ], "added_at": 1529320213, - "trending": 15.412624532871227, - "installs_last_month": 1784, + "trending": 6.827990620232344, + "installs_last_month": 1912, "isMobileFriendly": false }, { @@ -17422,8 +17422,8 @@ "aarch64" ], "added_at": 1510238421, - "trending": 11.299882018033657, - "installs_last_month": 873, + "trending": 11.29056336872555, + "installs_last_month": 888, "isMobileFriendly": false }, { @@ -17457,51 +17457,8 @@ "aarch64" ], "added_at": 1545134477, - "trending": 11.063362271390163, - "installs_last_month": 623, - "isMobileFriendly": false - }, - { - "name": "GitFourchette", - "keywords": [ - "git", - "qt" - ], - "summary": "The comfortable Git UI", - "description": "Explore your repos easily. Craft commits intuitively. GitFourchette will become your new home to get work done in your Git repositories.\n \n A comfortable way to explore and understand your Git repositories\n Powerful tools to stage code, create commits, and manage branches\n Snappy and intuitive Qt UI designed to fit in snugly with KDE Plasma\n \n ", - "id": "org_gitfourchette_gitfourchette", - "type": "desktop-application", - "translations": { - "fr": { - "description": "Explorez vos dépôts facilement. Créez vos commits intuitivement. Vous vous sentirez comme chez vous dans GitFourchette pour accomplir toutes vos tâches dans vos dépôts Git.\n \n Une manière conviviale d’explorer et de comprendre vos dépôts Git\n Des outils puissants pour indexer du code, créer des commits, et gérer vos branches\n Une interface Qt réactive et intuitive, pensée pour bien s’intégrer dans KDE Plasma\n \n ", - "summary": "L’interface Git tout confort" - } - }, - "project_license": "GPL-3.0", - "is_free_license": true, - "app_id": "org.gitfourchette.gitfourchette", - "icon": "https://dl.flathub.org/media/org/gitfourchette/gitfourchette/c9368ac22a370b70c5a641d4935462a0/icons/128x128/org.gitfourchette.gitfourchette.png", - "main_categories": "development", - "sub_categories": [ - "RevisionControl" - ], - "developer_name": "Iliyas Jorio", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "gitfourchette.org", - "verification_timestamp": "1733211613", - "runtime": "org.kde.Platform/x86_64/6.8", - "updated_at": 1741211593, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1733191777, - "trending": 5.477429347418913, - "installs_last_month": 531, + "trending": 9.777554078828253, + "installs_last_month": 652, "isMobileFriendly": false }, { @@ -17537,8 +17494,8 @@ "aarch64" ], "added_at": 1535352846, - "trending": 10.960288720577823, - "installs_last_month": 495, + "trending": 9.682594380877587, + "installs_last_month": 530, "isMobileFriendly": false }, { @@ -17651,8 +17608,51 @@ "aarch64" ], "added_at": 1617777728, - "trending": 13.7063886494634, - "installs_last_month": 490, + "trending": 11.821220484733123, + "installs_last_month": 522, + "isMobileFriendly": false + }, + { + "name": "GitFourchette", + "keywords": [ + "git", + "qt" + ], + "summary": "The comfortable Git UI", + "description": "Explore your repos easily. Craft commits intuitively. GitFourchette will become your new home to get work done in your Git repositories.\n \n A comfortable way to explore and understand your Git repositories\n Powerful tools to stage code, create commits, and manage branches\n Snappy and intuitive Qt UI designed to fit in snugly with KDE Plasma\n \n ", + "id": "org_gitfourchette_gitfourchette", + "type": "desktop-application", + "translations": { + "fr": { + "description": "Explorez vos dépôts facilement. Créez vos commits intuitivement. Vous vous sentirez comme chez vous dans GitFourchette pour accomplir toutes vos tâches dans vos dépôts Git.\n \n Une manière conviviale d’explorer et de comprendre vos dépôts Git\n Des outils puissants pour indexer du code, créer des commits, et gérer vos branches\n Une interface Qt réactive et intuitive, pensée pour bien s’intégrer dans KDE Plasma\n \n ", + "summary": "L’interface Git tout confort" + } + }, + "project_license": "GPL-3.0", + "is_free_license": true, + "app_id": "org.gitfourchette.gitfourchette", + "icon": "https://dl.flathub.org/media/org/gitfourchette/gitfourchette/c9368ac22a370b70c5a641d4935462a0/icons/128x128/org.gitfourchette.gitfourchette.png", + "main_categories": "development", + "sub_categories": [ + "RevisionControl" + ], + "developer_name": "Iliyas Jorio", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "gitfourchette.org", + "verification_timestamp": "1733211613", + "runtime": "org.kde.Platform/x86_64/6.8", + "updated_at": 1741211593, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1733191777, + "trending": 4.091808453714673, + "installs_last_month": 500, "isMobileFriendly": false }, { @@ -17686,8 +17686,8 @@ "aarch64" ], "added_at": 1678213047, - "trending": 11.72421416791826, - "installs_last_month": 480, + "trending": 8.735800746909485, + "installs_last_month": 491, "isMobileFriendly": false }, { @@ -17721,8 +17721,8 @@ "aarch64" ], "added_at": 1651742267, - "trending": 10.011831399258034, - "installs_last_month": 440, + "trending": 10.708245452969544, + "installs_last_month": 463, "isMobileFriendly": false }, { @@ -17755,8 +17755,8 @@ "x86_64" ], "added_at": 1709109530, - "trending": 11.375912845585129, - "installs_last_month": 362, + "trending": 10.714124626553728, + "installs_last_month": 379, "isMobileFriendly": false } ], @@ -18002,8 +18002,8 @@ "aarch64" ], "added_at": 1534840817, - "trending": 14.8731784095849, - "installs_last_month": 381, + "trending": 13.147905424293024, + "installs_last_month": 384, "isMobileFriendly": false }, { @@ -18047,8 +18047,8 @@ "aarch64" ], "added_at": 1519827195, - "trending": 12.563376455158991, - "installs_last_month": 306, + "trending": 9.62690979977748, + "installs_last_month": 317, "isMobileFriendly": false }, { @@ -18250,8 +18250,8 @@ "aarch64" ], "added_at": 1593767059, - "trending": 13.870461769324947, - "installs_last_month": 207, + "trending": 10.526466182609614, + "installs_last_month": 210, "isMobileFriendly": false } ], @@ -18299,8 +18299,8 @@ "aarch64" ], "added_at": 1529683648, - "trending": 9.604188790224258, - "installs_last_month": 15012, + "trending": 9.750346074016466, + "installs_last_month": 15494, "isMobileFriendly": false }, { @@ -18431,8 +18431,8 @@ "aarch64" ], "added_at": 1662966825, - "trending": 15.015572354863524, - "installs_last_month": 3974, + "trending": 14.868980821936091, + "installs_last_month": 4166, "isMobileFriendly": false }, { @@ -18482,8 +18482,8 @@ "aarch64" ], "added_at": 1646263732, - "trending": 17.665036886113935, - "installs_last_month": 2141, + "trending": 16.284937115394676, + "installs_last_month": 2234, "isMobileFriendly": false }, { @@ -18525,8 +18525,8 @@ "aarch64" ], "added_at": 1492622275, - "trending": 9.475227195917816, - "installs_last_month": 1417, + "trending": 11.704411104111882, + "installs_last_month": 1456, "isMobileFriendly": false }, { @@ -18565,8 +18565,8 @@ "aarch64" ], "added_at": 1664952422, - "trending": 12.974048763857637, - "installs_last_month": 562, + "trending": 11.7391465737583, + "installs_last_month": 593, "isMobileFriendly": false }, { @@ -18601,8 +18601,8 @@ "aarch64" ], "added_at": 1664268179, - "trending": 4.880314441711946, - "installs_last_month": 525, + "trending": 4.764542050340789, + "installs_last_month": 550, "isMobileFriendly": false }, { @@ -18637,8 +18637,8 @@ "aarch64" ], "added_at": 1664268148, - "trending": 11.088097612306314, - "installs_last_month": 496, + "trending": 9.960429530282482, + "installs_last_month": 503, "isMobileFriendly": false }, { @@ -18674,8 +18674,8 @@ "aarch64" ], "added_at": 1629216824, - "trending": 3.201286816147128, - "installs_last_month": 374, + "trending": 4.944072166066144, + "installs_last_month": 378, "isMobileFriendly": false }, { @@ -18722,8 +18722,8 @@ "aarch64" ], "added_at": 1684138981, - "trending": 13.947708428173229, - "installs_last_month": 212, + "trending": 14.038909030817996, + "installs_last_month": 229, "isMobileFriendly": false }, { @@ -18756,8 +18756,8 @@ "x86_64" ], "added_at": 1726749829, - "trending": 7.56678005171987, - "installs_last_month": 166, + "trending": 9.218566041458242, + "installs_last_month": 172, "isMobileFriendly": false }, { @@ -18941,8 +18941,8 @@ "aarch64" ], "added_at": 1692925198, - "trending": 1.417269039979489, - "installs_last_month": 109, + "trending": 4.427820182399969, + "installs_last_month": 117, "isMobileFriendly": false }, { @@ -18986,8 +18986,8 @@ "x86_64" ], "added_at": 1558032684, - "trending": 5.506874313101035, - "installs_last_month": 68, + "trending": 6.290099090255533, + "installs_last_month": 77, "isMobileFriendly": false } ], @@ -19041,8 +19041,8 @@ "aarch64" ], "added_at": 1666334692, - "trending": 9.867398139766214, - "installs_last_month": 34528, + "trending": 10.33184220533071, + "installs_last_month": 35965, "isMobileFriendly": false }, { @@ -19081,8 +19081,8 @@ "x86_64" ], "added_at": 1714032230, - "trending": 4.871336460718362, - "installs_last_month": 3930, + "trending": 6.151847445299142, + "installs_last_month": 4083, "isMobileFriendly": false }, { @@ -19121,8 +19121,8 @@ "aarch64" ], "added_at": 1492084114, - "trending": 9.531053891505016, - "installs_last_month": 2276, + "trending": 10.666971664817089, + "installs_last_month": 2381, "isMobileFriendly": false }, { @@ -19166,8 +19166,8 @@ "aarch64" ], "added_at": 1532423485, - "trending": 11.70015125398493, - "installs_last_month": 1721, + "trending": 11.752916078505455, + "installs_last_month": 1755, "isMobileFriendly": false }, { @@ -19202,8 +19202,8 @@ "aarch64" ], "added_at": 1689751982, - "trending": 12.68484555183518, - "installs_last_month": 1380, + "trending": 11.93130989993874, + "installs_last_month": 1441, "isMobileFriendly": false }, { @@ -19241,8 +19241,8 @@ "aarch64" ], "added_at": 1673594246, - "trending": 1.0323455972862257, - "installs_last_month": 1222, + "trending": 0.12115425843210392, + "installs_last_month": 1236, "isMobileFriendly": false }, { @@ -19281,8 +19281,8 @@ "aarch64" ], "added_at": 1619814809, - "trending": 0.7855248966554857, - "installs_last_month": 918, + "trending": 0.7516418532614686, + "installs_last_month": 934, "isMobileFriendly": false }, { @@ -19323,8 +19323,8 @@ "aarch64" ], "added_at": 1544441551, - "trending": 2.5667796901733055, - "installs_last_month": 859, + "trending": 1.0894327738310603, + "installs_last_month": 907, "isMobileFriendly": false }, { @@ -19358,43 +19358,8 @@ "aarch64" ], "added_at": 1653890545, - "trending": 10.093452593917595, - "installs_last_month": 782, - "isMobileFriendly": false - }, - { - "name": "Sauerbraten", - "keywords": null, - "summary": "Free multiplayer & singleplayer first person shooter, the successor of the Cube FPS", - "description": "\n Cube 2: Sauerbraten is a free multiplayer & singleplayer first person shooter, the successor of the Cube FPS.\n \n \n Much like the original Cube, the aim of this game is fun, old school deathmatch gameplay and also to allow map/geometry editing to be done cooperatively in-game.\n \n ", - "id": "org_sauerbraten_Sauerbraten", - "type": "desktop-application", - "translations": {}, - "project_license": "Zlib", - "is_free_license": true, - "app_id": "org.sauerbraten.Sauerbraten", - "icon": "https://dl.flathub.org/media/org/sauerbraten/Sauerbraten/d4d736d706c6c4766c60ee87169b814b/icons/128x128/org.sauerbraten.Sauerbraten.png", - "main_categories": "game", - "sub_categories": [ - "ActionGame" - ], - "developer_name": "Wouter van Oortmerssen 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/23.08", - "updated_at": 1716826400, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1529314530, - "trending": 7.14586508304694, - "installs_last_month": 738, + "trending": 12.377684573502478, + "installs_last_month": 804, "isMobileFriendly": false }, { @@ -19428,51 +19393,43 @@ "aarch64" ], "added_at": 1694851804, - "trending": 5.307998737157676, - "installs_last_month": 734, + "trending": 5.427964528209946, + "installs_last_month": 778, "isMobileFriendly": false }, { - "name": "ET: Legacy", - "keywords": [ - "team-based", - "multiplayer", - "tactical", - "WWII", - "enemy", - "territory", - "etl", - "etlegacy" - ], - "summary": "First-person objective shooter", - "description": "ET: Legacy is a downloadable, free-to-play multiplayer game in which players wage war as\n\t\t\tAxis or Allies in team-based combat. It's a team game; you will win or fall along with\n\t\t\tyour comrades. The only way to complete the objectives that lead to victory is by\n\t\t\tcooperation, with each player covering their teammates and using their class special\n\t\t\tabilities in concert with the others.\n Featuring multiplayer support for up to 64 players, ET: Legacy is the ultimate test of\n\t\t\tcommunication and teamwork on the battlefield. Players join the fray as one of five\n\t\t\tdistinct character classes each with unique combat abilities. Each Axis or Allies team\n\t\t\tcan divide itself into smaller fire teams for quick and easy communication using an\n\t\t\tintuitive messaging system and dynamic command map of the entire battlefield.\n Based on the code of Wolfenstein: Enemy Territory\n\t\t\twhich was released in 2010 under the terms of the GPLv3\n ", - "id": "com_etlegacy_ETLegacy", + "name": "Sauerbraten", + "keywords": null, + "summary": "Free multiplayer & singleplayer first person shooter, the successor of the Cube FPS", + "description": "\n Cube 2: Sauerbraten is a free multiplayer & singleplayer first person shooter, the successor of the Cube FPS.\n \n \n Much like the original Cube, the aim of this game is fun, old school deathmatch gameplay and also to allow map/geometry editing to be done cooperatively in-game.\n \n ", + "id": "org_sauerbraten_Sauerbraten", "type": "desktop-application", "translations": {}, - "project_license": "GPL-3.0-or-later", + "project_license": "Zlib", "is_free_license": true, - "app_id": "com.etlegacy.ETLegacy", - "icon": "https://dl.flathub.org/media/com/etlegacy/ETLegacy/6a22cf96fe02b537f886c8a065ea9fb9/icons/128x128/com.etlegacy.ETLegacy.png", + "app_id": "org.sauerbraten.Sauerbraten", + "icon": "https://dl.flathub.org/media/org/sauerbraten/Sauerbraten/d4d736d706c6c4766c60ee87169b814b/icons/128x128/org.sauerbraten.Sauerbraten.png", "main_categories": "game", "sub_categories": [ "ActionGame" ], - "developer_name": "ET: Legacy Team", - "verification_verified": true, - "verification_method": "website", + "developer_name": "Wouter van Oortmerssen and others", + "verification_verified": false, + "verification_method": "none", "verification_login_name": null, "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "etlegacy.com", - "verification_timestamp": "1717520391", - "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1737355762, + "verification_login_is_organization": null, + "verification_website": null, + "verification_timestamp": null, + "runtime": "org.freedesktop.Platform/x86_64/23.08", + "updated_at": 1716826400, "arches": [ - "x86_64" + "x86_64", + "aarch64" ], - "added_at": 1614754972, - "trending": 11.615015246828976, - "installs_last_month": 651, + "added_at": 1529314530, + "trending": 8.562451489916446, + "installs_last_month": 777, "isMobileFriendly": false }, { @@ -19515,8 +19472,92 @@ "aarch64" ], "added_at": 1494977795, - "trending": 2.603694397839193, - "installs_last_month": 633, + "trending": 0.8177756296717809, + "installs_last_month": 704, + "isMobileFriendly": false + }, + { + "name": "ET: Legacy", + "keywords": [ + "team-based", + "multiplayer", + "tactical", + "WWII", + "enemy", + "territory", + "etl", + "etlegacy" + ], + "summary": "First-person objective shooter", + "description": "ET: Legacy is a downloadable, free-to-play multiplayer game in which players wage war as\n\t\t\tAxis or Allies in team-based combat. It's a team game; you will win or fall along with\n\t\t\tyour comrades. The only way to complete the objectives that lead to victory is by\n\t\t\tcooperation, with each player covering their teammates and using their class special\n\t\t\tabilities in concert with the others.\n Featuring multiplayer support for up to 64 players, ET: Legacy is the ultimate test of\n\t\t\tcommunication and teamwork on the battlefield. Players join the fray as one of five\n\t\t\tdistinct character classes each with unique combat abilities. Each Axis or Allies team\n\t\t\tcan divide itself into smaller fire teams for quick and easy communication using an\n\t\t\tintuitive messaging system and dynamic command map of the entire battlefield.\n Based on the code of Wolfenstein: Enemy Territory\n\t\t\twhich was released in 2010 under the terms of the GPLv3\n ", + "id": "com_etlegacy_ETLegacy", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0-or-later", + "is_free_license": true, + "app_id": "com.etlegacy.ETLegacy", + "icon": "https://dl.flathub.org/media/com/etlegacy/ETLegacy/6a22cf96fe02b537f886c8a065ea9fb9/icons/128x128/com.etlegacy.ETLegacy.png", + "main_categories": "game", + "sub_categories": [ + "ActionGame" + ], + "developer_name": "ET: Legacy Team", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "etlegacy.com", + "verification_timestamp": "1717520391", + "runtime": "org.freedesktop.Platform/x86_64/24.08", + "updated_at": 1737355762, + "arches": [ + "x86_64" + ], + "added_at": 1614754972, + "trending": 13.665052556106094, + "installs_last_month": 704, + "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.7630282985773054, + "installs_last_month": 667, "isMobileFriendly": false }, { @@ -19557,49 +19598,8 @@ "aarch64" ], "added_at": 1653627129, - "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, + "trending": 1.969115022635605, + "installs_last_month": 658, "isMobileFriendly": false }, { @@ -19638,8 +19638,43 @@ "aarch64" ], "added_at": 1591265312, - "trending": -0.1963909296421178, - "installs_last_month": 616, + "trending": 1.3429345668858437, + "installs_last_month": 642, + "isMobileFriendly": false + }, + { + "name": "AssaultCube", + "keywords": null, + "summary": "Fast arcade first person shooter", + "description": "AssaultCube is a free, multiplayer, first-person shooter game, based on the CUBE engine.\n Taking place in realistic environments, with fast, arcade gameplay, it's addictive and fun!\n With efficient bandwidth usage, it's low-latency and can even run over a 56 Kbps connection. \n It's tiny too and on the correct settings, it can even run on old hardware (Pentium III and above).\n ", + "id": "net_cubers_assault_AssaultCube", + "type": "desktop-application", + "translations": {}, + "project_license": "Zlib AND LicenseRef-proprietary=https://assault.cubers.net/docs/license.html", + "is_free_license": false, + "app_id": "net.cubers.assault.AssaultCube", + "icon": "https://dl.flathub.org/media/net/cubers/assault.AssaultCube/46f4f7fd0fc33456997257fe010e25df/icons/128x128/net.cubers.assault.AssaultCube.png", + "main_categories": "game", + "sub_categories": [ + "ActionGame" + ], + "developer_name": "Rapid Viper Productions", + "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": 1729499285, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1653890694, + "trending": 7.000920094895656, + "installs_last_month": 581, "isMobileFriendly": false }, { @@ -19691,27 +19726,32 @@ "aarch64" ], "added_at": 1580802922, - "trending": 13.030788566780624, - "installs_last_month": 583, + "trending": 14.093284807881597, + "installs_last_month": 569, "isMobileFriendly": false }, { - "name": "AssaultCube", - "keywords": null, - "summary": "Fast arcade first person shooter", - "description": "AssaultCube is a free, multiplayer, first-person shooter game, based on the CUBE engine.\n Taking place in realistic environments, with fast, arcade gameplay, it's addictive and fun!\n With efficient bandwidth usage, it's low-latency and can even run over a 56 Kbps connection. \n It's tiny too and on the correct settings, it can even run on old hardware (Pentium III and above).\n ", - "id": "net_cubers_assault_AssaultCube", + "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": "Zlib AND LicenseRef-proprietary=https://assault.cubers.net/docs/license.html", + "project_license": "CC-BY-NC-SA-3.0", "is_free_license": false, - "app_id": "net.cubers.assault.AssaultCube", - "icon": "https://dl.flathub.org/media/net/cubers/assault.AssaultCube/46f4f7fd0fc33456997257fe010e25df/icons/128x128/net.cubers.assault.AssaultCube.png", + "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": "Rapid Viper Productions", + "developer_name": "wadaholic", "verification_verified": false, "verification_method": "none", "verification_login_name": null, @@ -19720,14 +19760,14 @@ "verification_website": null, "verification_timestamp": null, "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1729499285, + "updated_at": 1728074957, "arches": [ "x86_64", "aarch64" ], - "added_at": 1653890694, - "trending": 4.473224760018749, - "installs_last_month": 572, + "added_at": 1542096375, + "trending": -2.916706218039873, + "installs_last_month": 558, "isMobileFriendly": false }, { @@ -19767,48 +19807,42 @@ "aarch64" ], "added_at": 1707812256, - "trending": 0.5791473750153118, - "installs_last_month": 516, + "trending": 0.735717795482594, + "installs_last_month": 535, "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", + "name": "Doomsday Engine", + "keywords": null, + "summary": "Enhanced source port of Doom, Heretic, and Hexen", + "description": "\n The Doomsday Engine is a portable version of the classic first person\n shooters DOOM, Heretic, and Hexen. It lets you enjoy the original games\n using modern technology, including high-resolution OpenGL graphics, 3D\n models, and dynamic lighting effects.\n \n \n Data files from the original games are not included; you must acquire\n a copy of the original games from id Software and/or Raven Software.\n You may also use free alternatives such as https://freedoom.github.io/.\n \n ", + "id": "net_dengine_Doomsday", "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", + "project_license": "GPL-3.0+", + "is_free_license": true, + "app_id": "net.dengine.Doomsday", + "icon": "https://dl.flathub.org/media/net/dengine/Doomsday/4ba789a75601f599ab3f0d4ae41aa298/icons/128x128/net.dengine.Doomsday.png", "main_categories": "game", "sub_categories": [ "ActionGame" ], - "developer_name": "wadaholic", - "verification_verified": false, - "verification_method": "none", + "developer_name": "Jaakko Keränen", + "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": 1728074957, + "verification_login_is_organization": "false", + "verification_website": "dengine.net", + "verification_timestamp": "1711789980", + "runtime": "org.kde.Platform/x86_64/5.15-23.08", + "updated_at": 1716563384, "arches": [ - "x86_64", - "aarch64" + "x86_64" ], - "added_at": 1542096375, - "trending": 1.5671697019818511, - "installs_last_month": 515, + "added_at": 1577086268, + "trending": 3.1389075565607003, + "installs_last_month": 524, "isMobileFriendly": false }, { @@ -19848,82 +19882,8 @@ "aarch64" ], "added_at": 1572441119, - "trending": 0.1943341967777643, - "installs_last_month": 512, - "isMobileFriendly": false - }, - { - "name": "Doomsday Engine", - "keywords": null, - "summary": "Enhanced source port of Doom, Heretic, and Hexen", - "description": "\n The Doomsday Engine is a portable version of the classic first person\n shooters DOOM, Heretic, and Hexen. It lets you enjoy the original games\n using modern technology, including high-resolution OpenGL graphics, 3D\n models, and dynamic lighting effects.\n \n \n Data files from the original games are not included; you must acquire\n a copy of the original games from id Software and/or Raven Software.\n You may also use free alternatives such as https://freedoom.github.io/.\n \n ", - "id": "net_dengine_Doomsday", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0+", - "is_free_license": true, - "app_id": "net.dengine.Doomsday", - "icon": "https://dl.flathub.org/media/net/dengine/Doomsday/4ba789a75601f599ab3f0d4ae41aa298/icons/128x128/net.dengine.Doomsday.png", - "main_categories": "game", - "sub_categories": [ - "ActionGame" - ], - "developer_name": "Jaakko Keränen", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "dengine.net", - "verification_timestamp": "1711789980", - "runtime": "org.kde.Platform/x86_64/5.15-23.08", - "updated_at": 1716563384, - "arches": [ - "x86_64" - ], - "added_at": 1577086268, - "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, + "trending": -0.19065454228412415, + "installs_last_month": 523, "isMobileFriendly": false }, { @@ -19965,8 +19925,48 @@ "aarch64" ], "added_at": 1529314411, - "trending": 0.5011164801045526, - "installs_last_month": 484, + "trending": -0.4248040847808314, + "installs_last_month": 500, + "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.1183322785461, + "installs_last_month": 500, "isMobileFriendly": false }, { @@ -19999,8 +19999,8 @@ "x86_64" ], "added_at": 1696931204, - "trending": 0.44739425829068846, - "installs_last_month": 469, + "trending": 2.0681041732982113, + "installs_last_month": 485, "isMobileFriendly": false }, { @@ -20034,48 +20034,8 @@ "aarch64" ], "added_at": 1697191675, - "trending": 1.1452552559222169, - "installs_last_month": 452, - "isMobileFriendly": false - }, - { - "name": "Chocolate Doom", - "keywords": [ - "first", - "person", - "shooter", - "vanilla" - ], - "summary": "Conservative source port", - "description": "\n Chocolate Doom is a conservative,\n historically-accurate Doom source port, which is compatible with\n the thousands of mods and levels that were made before the Doom\n source code was released. Unlike other source ports, the goal\n is to preserve the original look, feel, limitations, and bugs of\n the original DOS executable.\n \n \n Full support for single- and multi-player games is provided, for\n all of the original Doom games, Chex Quest, and Hacx. Unlike\n the original executable, network play is implemented on the IP\n network stack, allowing it to function on modern LANs and the\n Internet.\n \n \n The easiest way to run Chocolate Doom is to copy a\n supported game file (known as a \"WAD\") to the root of your home\n directory and launch the application. If you have trouble with\n the automatic game file detection or need to manage multiple WAD\n files, you can run the application from the command line with a\n path to the selected game file:\n \n \n flatpak run org.chocolate_doom.Doom -iwad ~/PATH/TO/GAME.WAD\n \n ", - "id": "org_chocolate_doom_ChocolateDoom", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0+", - "is_free_license": true, - "app_id": "org.chocolate_doom.ChocolateDoom", - "icon": "https://dl.flathub.org/media/org/chocolate_doom/ChocolateDoom/beff5f4c517e8630c8b1c49048f56cdd/icons/128x128/org.chocolate_doom.ChocolateDoom.png", - "main_categories": "game", - "sub_categories": [ - "ActionGame" - ], - "developer_name": "Simon Howard", - "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": 1731289635, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1653552452, - "trending": 7.946484672022694, - "installs_last_month": 446, + "trending": 5.580223643533782, + "installs_last_month": 455, "isMobileFriendly": false }, { @@ -20118,27 +20078,32 @@ "aarch64" ], "added_at": 1706558871, - "trending": 2.9419138139830605, - "installs_last_month": 423, + "trending": 0.4563785429358469, + "installs_last_month": 455, "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", + "name": "Chocolate Doom", + "keywords": [ + "first", + "person", + "shooter", + "vanilla" + ], + "summary": "Conservative source port", + "description": "\n Chocolate Doom is a conservative,\n historically-accurate Doom source port, which is compatible with\n the thousands of mods and levels that were made before the Doom\n source code was released. Unlike other source ports, the goal\n is to preserve the original look, feel, limitations, and bugs of\n the original DOS executable.\n \n \n Full support for single- and multi-player games is provided, for\n all of the original Doom games, Chex Quest, and Hacx. Unlike\n the original executable, network play is implemented on the IP\n network stack, allowing it to function on modern LANs and the\n Internet.\n \n \n The easiest way to run Chocolate Doom is to copy a\n supported game file (known as a \"WAD\") to the root of your home\n directory and launch the application. If you have trouble with\n the automatic game file detection or need to manage multiple WAD\n files, you can run the application from the command line with a\n path to the selected game file:\n \n \n flatpak run org.chocolate_doom.Doom -iwad ~/PATH/TO/GAME.WAD\n \n ", + "id": "org_chocolate_doom_ChocolateDoom", "type": "desktop-application", "translations": {}, - "project_license": "Zlib", + "project_license": "GPL-2.0+", "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", + "app_id": "org.chocolate_doom.ChocolateDoom", + "icon": "https://dl.flathub.org/media/org/chocolate_doom/ChocolateDoom/beff5f4c517e8630c8b1c49048f56cdd/icons/128x128/org.chocolate_doom.ChocolateDoom.png", "main_categories": "game", "sub_categories": [ "ActionGame" ], - "developer_name": "AssaultCube Reloaded Task Force", + "developer_name": "Simon Howard", "verification_verified": false, "verification_method": "none", "verification_login_name": null, @@ -20146,51 +20111,15 @@ "verification_login_is_organization": null, "verification_website": null, "verification_timestamp": null, - "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1717620050, + "runtime": "org.freedesktop.Platform/x86_64/24.08", + "updated_at": 1731289635, "arches": [ "x86_64", "aarch64" ], - "added_at": 1717580470, - "trending": 6.6349942124961805, - "installs_last_month": 410, - "isMobileFriendly": false - }, - { - "name": "Unvanquished", - "keywords": null, - "summary": "Fast paced, first person strategy game", - "description": "\n Unvanquished is a real-time strategy game played as a first-person\n shooter where evolving aliens and heavily armed humans fight for\n their survival.\n\n Become a marine, handle your big weapon and dress that\n impressive exoskeleton to save the human race like a boss. Or if\n you prefer, be a monstrous beast and save those cute grangers\n from those two-legged invaders who only know how to turn\n beautiful organic equilibrium into lifeless machines and dead\n concreted worlds.\n \n ", - "id": "net_unvanquished_Unvanquished", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT AND GPL-3.0-or-later AND Zlib AND BSD-3-Clause", - "is_free_license": true, - "app_id": "net.unvanquished.Unvanquished", - "icon": "https://dl.flathub.org/media/net/unvanquished/Unvanquished/6e44068474d21d9f34f45c10ccf0e3d1/icons/128x128/net.unvanquished.Unvanquished.png", - "main_categories": "game", - "sub_categories": [ - "ActionGame", - "StrategyGame", - "Shooter" - ], - "developer_name": "Unvanquished Development", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "unvanquished.net", - "verification_timestamp": "1712108775", - "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1734292849, - "arches": [ - "x86_64" - ], - "added_at": 1623578388, - "trending": 8.988415088724729, - "installs_last_month": 403, + "added_at": 1653552452, + "trending": 7.804041017761755, + "installs_last_month": 453, "isMobileFriendly": false }, { @@ -20230,8 +20159,79 @@ "aarch64" ], "added_at": 1492280305, - "trending": 2.7497325038076683, - "installs_last_month": 394, + "trending": 1.9796890310304245, + "installs_last_month": 429, + "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": 5.454087830274941, + "installs_last_month": 421, + "isMobileFriendly": false + }, + { + "name": "Unvanquished", + "keywords": null, + "summary": "Fast paced, first person strategy game", + "description": "\n Unvanquished is a real-time strategy game played as a first-person\n shooter where evolving aliens and heavily armed humans fight for\n their survival.\n\n Become a marine, handle your big weapon and dress that\n impressive exoskeleton to save the human race like a boss. Or if\n you prefer, be a monstrous beast and save those cute grangers\n from those two-legged invaders who only know how to turn\n beautiful organic equilibrium into lifeless machines and dead\n concreted worlds.\n \n ", + "id": "net_unvanquished_Unvanquished", + "type": "desktop-application", + "translations": {}, + "project_license": "MIT AND GPL-3.0-or-later AND Zlib AND BSD-3-Clause", + "is_free_license": true, + "app_id": "net.unvanquished.Unvanquished", + "icon": "https://dl.flathub.org/media/net/unvanquished/Unvanquished/6e44068474d21d9f34f45c10ccf0e3d1/icons/128x128/net.unvanquished.Unvanquished.png", + "main_categories": "game", + "sub_categories": [ + "ActionGame", + "StrategyGame", + "Shooter" + ], + "developer_name": "Unvanquished Development", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "unvanquished.net", + "verification_timestamp": "1712108775", + "runtime": "org.freedesktop.Platform/x86_64/24.08", + "updated_at": 1734292849, + "arches": [ + "x86_64" + ], + "added_at": 1623578388, + "trending": 7.298062924712157, + "installs_last_month": 420, "isMobileFriendly": false }, { @@ -20270,8 +20270,8 @@ "aarch64" ], "added_at": 1704220783, - "trending": 5.650106681165626, - "installs_last_month": 389, + "trending": 6.387751719738293, + "installs_last_month": 406, "isMobileFriendly": false }, { @@ -20308,8 +20308,45 @@ "aarch64" ], "added_at": 1661808406, - "trending": 0.8579262610322068, - "installs_last_month": 367, + "trending": 1.0454299188103255, + "installs_last_month": 386, + "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": 5.516852479917262, + "installs_last_month": 359, "isMobileFriendly": false }, { @@ -20348,45 +20385,8 @@ "aarch64" ], "added_at": 1629662839, - "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, + "trending": 2.352280587433409, + "installs_last_month": 339, "isMobileFriendly": false }, { @@ -20419,8 +20419,8 @@ "x86_64" ], "added_at": 1652345816, - "trending": 10.929777289656016, - "installs_last_month": 325, + "trending": 9.513367803744677, + "installs_last_month": 336, "isMobileFriendly": false }, { @@ -20457,8 +20457,8 @@ "aarch64" ], "added_at": 1724671668, - "trending": 9.517234647658324, - "installs_last_month": 310, + "trending": 6.844676866698219, + "installs_last_month": 326, "isMobileFriendly": false }, { @@ -20518,45 +20518,8 @@ "aarch64" ], "added_at": 1707812812, - "trending": 2.845414480644473, - "installs_last_month": 300, - "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, + "trending": 4.80195941378357, + "installs_last_month": 303, "isMobileFriendly": false }, { @@ -20597,8 +20560,45 @@ "aarch64" ], "added_at": 1534427983, - "trending": 6.332033727876238, - "installs_last_month": 269, + "trending": 6.614306340926552, + "installs_last_month": 300, + "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": 5.7264898059099645, + "installs_last_month": 285, "isMobileFriendly": false }, { @@ -20637,49 +20637,8 @@ "aarch64" ], "added_at": 1684139138, - "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, + "trending": 4.361498291795779, + "installs_last_month": 277, "isMobileFriendly": false }, { @@ -20722,8 +20681,83 @@ "aarch64" ], "added_at": 1706432661, - "trending": 8.689709305839498, - "installs_last_month": 257, + "trending": 9.774533712719352, + "installs_last_month": 275, + "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": 0.9263118553475338, + "installs_last_month": 270, + "isMobileFriendly": false + }, + { + "name": "Warsow", + "keywords": null, + "summary": "Fast paced 3D first person shooter", + "description": "Warsow is set in a futuristic cartoonish world where rocketlauncher-wielding pigs and lasergun-carrying cyberpunks roam the streets. It is a completely free, fast-paced first-person shooter for Windows, Linux, and Mac OS X.\n Speed and movement is what Warsow is all about. Like a true cyberathlete you jump, dash, dodge, and walljump your way through the game. Grab power-ups before your enemy does, plant a bomb before anyone sees you, and steal the enemy’s flag before they know what is going on!\n Our goal is to offer a fast and fun competitive first-person shooter without hard graphical violence - Warsow has no blood or guts flying around. Red stars instead of blood indicate hits and colored cubes replace guts as gib effects.\n ", + "id": "net_warsow_Warsow", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0+ AND CC-BY-SA-4.0 AND CC-BY-ND-4.0", + "is_free_license": false, + "app_id": "net.warsow.Warsow", + "icon": "https://dl.flathub.org/media/net/warsow/Warsow/4f46dbcaf7d3ca9bb8e55658a0002969/icons/128x128/net.warsow.Warsow.png", + "main_categories": "game", + "sub_categories": [ + "ActionGame" + ], + "developer_name": "Chasseur de Bots", + "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": 1736686876, + "arches": [ + "x86_64" + ], + "added_at": 1652853751, + "trending": 12.534667666072524, + "installs_last_month": 264, "isMobileFriendly": false }, { @@ -20758,42 +20792,8 @@ "aarch64" ], "added_at": 1697214015, - "trending": 4.274591082980994, - "installs_last_month": 254, - "isMobileFriendly": false - }, - { - "name": "Warsow", - "keywords": null, - "summary": "Fast paced 3D first person shooter", - "description": "Warsow is set in a futuristic cartoonish world where rocketlauncher-wielding pigs and lasergun-carrying cyberpunks roam the streets. It is a completely free, fast-paced first-person shooter for Windows, Linux, and Mac OS X.\n Speed and movement is what Warsow is all about. Like a true cyberathlete you jump, dash, dodge, and walljump your way through the game. Grab power-ups before your enemy does, plant a bomb before anyone sees you, and steal the enemy’s flag before they know what is going on!\n Our goal is to offer a fast and fun competitive first-person shooter without hard graphical violence - Warsow has no blood or guts flying around. Red stars instead of blood indicate hits and colored cubes replace guts as gib effects.\n ", - "id": "net_warsow_Warsow", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0+ AND CC-BY-SA-4.0 AND CC-BY-ND-4.0", - "is_free_license": false, - "app_id": "net.warsow.Warsow", - "icon": "https://dl.flathub.org/media/net/warsow/Warsow/4f46dbcaf7d3ca9bb8e55658a0002969/icons/128x128/net.warsow.Warsow.png", - "main_categories": "game", - "sub_categories": [ - "ActionGame" - ], - "developer_name": "Chasseur de Bots", - "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": 1736686876, - "arches": [ - "x86_64" - ], - "added_at": 1652853751, - "trending": 12.896586574406411, - "installs_last_month": 248, + "trending": 4.516264667405467, + "installs_last_month": 262, "isMobileFriendly": false }, { @@ -20830,8 +20830,8 @@ "aarch64" ], "added_at": 1660465791, - "trending": 8.50666142348849, - "installs_last_month": 232, + "trending": 8.768034627854767, + "installs_last_month": 242, "isMobileFriendly": false }, { @@ -20866,8 +20866,8 @@ "aarch64" ], "added_at": 1652851890, - "trending": -0.5976456106318524, - "installs_last_month": 230, + "trending": 0.8252540384194251, + "installs_last_month": 240, "isMobileFriendly": false }, { @@ -20902,8 +20902,43 @@ "x86_64" ], "added_at": 1522566411, - "trending": 1.3213259786645442, - "installs_last_month": 227, + "trending": 1.5933254798758223, + "installs_last_month": 239, + "isMobileFriendly": false + }, + { + "name": "Lugaru HD", + "keywords": null, + "summary": "Third person ninja rabbit fighting game", + "description": "Lugaru (pronounced Loo-GAH-roo) is a cross-platform third-person action game. The main character, Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.In his quest to find those responsible for slaughtering his village, he uncovers a far-reaching conspiracy involving the corrupt leaders of the rabbit republic and the starving wolves from a nearby den. Turner takes it upon himself to fight against their plot and save his fellow rabbits from slavery.", + "id": "io_gitlab_osslugaru_Lugaru", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0+ and CC-BY-SA-3.0", + "is_free_license": true, + "app_id": "io.gitlab.osslugaru.Lugaru", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.gitlab.osslugaru.Lugaru.png", + "main_categories": "game", + "sub_categories": [ + "ActionGame" + ], + "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": 1687106501, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1496312355, + "trending": 0.343472447630638, + "installs_last_month": 236, "isMobileFriendly": false }, { @@ -20939,43 +20974,8 @@ "x86_64" ], "added_at": 1660796929, - "trending": 0.8208276861650543, - "installs_last_month": 225, - "isMobileFriendly": false - }, - { - "name": "Lugaru HD", - "keywords": null, - "summary": "Third person ninja rabbit fighting game", - "description": "Lugaru (pronounced Loo-GAH-roo) is a cross-platform third-person action game. The main character, Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.In his quest to find those responsible for slaughtering his village, he uncovers a far-reaching conspiracy involving the corrupt leaders of the rabbit republic and the starving wolves from a nearby den. Turner takes it upon himself to fight against their plot and save his fellow rabbits from slavery.", - "id": "io_gitlab_osslugaru_Lugaru", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0+ and CC-BY-SA-3.0", - "is_free_license": true, - "app_id": "io.gitlab.osslugaru.Lugaru", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.gitlab.osslugaru.Lugaru.png", - "main_categories": "game", - "sub_categories": [ - "ActionGame" - ], - "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": 1687106501, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1496312355, - "trending": 0.4749916266780071, - "installs_last_month": 214, + "trending": 1.1888907146786185, + "installs_last_month": 233, "isMobileFriendly": false }, { @@ -21009,27 +21009,32 @@ "aarch64" ], "added_at": 1494566472, - "trending": 0.5714692667789913, - "installs_last_month": 209, + "trending": 1.4149670909415828, + "installs_last_month": 223, "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, @@ -21038,14 +21043,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.957106127258326, - "installs_last_month": 205, + "added_at": 1647501105, + "trending": -0.9764875810716618, + "installs_last_month": 218, + "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.871180019223418, + "installs_last_month": 216, "isMobileFriendly": false }, { @@ -21085,67 +21125,27 @@ "aarch64" ], "added_at": 1675625579, - "trending": 0.7327113665423322, - "installs_last_month": 205, + "trending": -2.1334257157334955, + "installs_last_month": 211, "isMobileFriendly": false }, { - "name": "Nanosaur", + "name": "World of PADMAN", "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": 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", + "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": "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", + "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": "Headshot", + "developer_name": "PadWorld Entertainment", "verification_verified": false, "verification_method": "none", "verification_login_name": null, @@ -21154,14 +21154,14 @@ "verification_website": null, "verification_timestamp": null, "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1731244063, + "updated_at": 1734359917, "arches": [ "x86_64", "aarch64" ], - "added_at": 1691735895, - "trending": 5.476519073888385, - "installs_last_month": 197, + "added_at": 1672609649, + "trending": 0.28207366717689064, + "installs_last_month": 202, "isMobileFriendly": false }, { @@ -21201,8 +21201,8 @@ "aarch64" ], "added_at": 1572441123, - "trending": 0.5099866550861151, - "installs_last_month": 191, + "trending": 1.0919706808783356, + "installs_last_month": 200, "isMobileFriendly": false }, { @@ -21245,43 +21245,8 @@ "aarch64" ], "added_at": 1728282620, - "trending": 5.262050959160293, - "installs_last_month": 184, - "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.725093109582194, - "installs_last_month": 179, + "trending": 8.493924637968513, + "installs_last_month": 195, "isMobileFriendly": false }, { @@ -21315,8 +21280,43 @@ "x86_64" ], "added_at": 1674052009, - "trending": 1.5171232179914127, - "installs_last_month": 179, + "trending": 0.7670047213988689, + "installs_last_month": 187, + "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": 5.199947445677641, + "installs_last_month": 186, "isMobileFriendly": false }, { @@ -21350,8 +21350,8 @@ "aarch64" ], "added_at": 1683900890, - "trending": 2.352593044805338, - "installs_last_month": 172, + "trending": 1.043821904745558, + "installs_last_month": 171, "isMobileFriendly": false }, { @@ -21385,8 +21385,8 @@ "aarch64" ], "added_at": 1692206488, - "trending": 12.498138196190345, - "installs_last_month": 158, + "trending": 16.513850547020894, + "installs_last_month": 169, "isMobileFriendly": false }, { @@ -21421,8 +21421,8 @@ "aarch64" ], "added_at": 1671698736, - "trending": 0.5286234599129263, - "installs_last_month": 151, + "trending": 0.3202101080399459, + "installs_last_month": 156, "isMobileFriendly": false }, { @@ -21468,8 +21468,43 @@ "aarch64" ], "added_at": 1736700085, - "trending": 3.1494270619675913, - "installs_last_month": 149, + "trending": 4.807275191653668, + "installs_last_month": 154, + "isMobileFriendly": false + }, + { + "name": "OpenFodder", + "keywords": null, + "summary": "Source port of Cannon Fodder", + "description": "Open Fodder is an open source version of the Cannon Fodder engine, for modern operating systems.\n The game is military-themed and based on shooting action but with a strategy game-style control system. The player directs troops through numerous missions, battling enemy infantry, vehicles and installations.\n ", + "id": "org_openfodder_OpenFodder", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0", + "is_free_license": true, + "app_id": "org.openfodder.OpenFodder", + "icon": "https://dl.flathub.org/media/org/openfodder/OpenFodder/6ee28b27f779e4043e9246baad4f2754/icons/128x128/org.openfodder.OpenFodder.png", + "main_categories": "game", + "sub_categories": [ + "ActionGame" + ], + "developer_name": "Robert Crossfield", + "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": 1730472249, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1685599109, + "trending": 2.189836886149588, + "installs_last_month": 142, "isMobileFriendly": false }, { @@ -21506,43 +21541,8 @@ "x86_64" ], "added_at": 1511954847, - "trending": 3.442430804903089, - "installs_last_month": 134, - "isMobileFriendly": false - }, - { - "name": "OpenFodder", - "keywords": null, - "summary": "Source port of Cannon Fodder", - "description": "Open Fodder is an open source version of the Cannon Fodder engine, for modern operating systems.\n The game is military-themed and based on shooting action but with a strategy game-style control system. The player directs troops through numerous missions, battling enemy infantry, vehicles and installations.\n ", - "id": "org_openfodder_OpenFodder", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0", - "is_free_license": true, - "app_id": "org.openfodder.OpenFodder", - "icon": "https://dl.flathub.org/media/org/openfodder/OpenFodder/6ee28b27f779e4043e9246baad4f2754/icons/128x128/org.openfodder.OpenFodder.png", - "main_categories": "game", - "sub_categories": [ - "ActionGame" - ], - "developer_name": "Robert Crossfield", - "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": 1730472249, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1685599109, - "trending": 0.1607121374043312, - "installs_last_month": 132, + "trending": 1.8445097622548352, + "installs_last_month": 135, "isMobileFriendly": false }, { @@ -21582,8 +21582,8 @@ "aarch64" ], "added_at": 1662622023, - "trending": 6.82156955703526, - "installs_last_month": 123, + "trending": 2.149860446909313, + "installs_last_month": 126, "isMobileFriendly": false }, { @@ -21622,8 +21622,8 @@ "aarch64" ], "added_at": 1647587394, - "trending": 2.239577113193404, - "installs_last_month": 111, + "trending": 2.3559114609827976, + "installs_last_month": 123, "isMobileFriendly": false }, { @@ -21660,8 +21660,45 @@ "aarch64" ], "added_at": 1701681705, - "trending": 2.407660503752612, - "installs_last_month": 101, + "trending": 1.4330601613910805, + "installs_last_month": 112, + "isMobileFriendly": false + }, + { + "name": "Empty Clip", + "keywords": null, + "summary": "Empty Clip is a top-down shooter action RPG", + "description": "Blast your way through ten levels and boss fights in this top-down shooter action RPG.\n \n Utilize over 15 different weapons, including melee, pistols, shotguns, rifles, rocket launchers, crossbows, and miniguns\n Fight thousands of zombies, spiders, bats, skeletons, demons, aliens and more\n Discover rare items and secrets that sprawl across dungeons, woods, caves, cities, desert, hell, and alien worlds\n Customize your character with skill points and over 25 different gear mods\n Play through the campaign multiple times for an increase in difficulty and rewards\n Complete eight achievements for an even greater challenge\n \n ", + "id": "io_gitlab_jazztickets_emptyclip", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0-only", + "is_free_license": true, + "app_id": "io.gitlab.jazztickets.emptyclip", + "icon": "https://dl.flathub.org/media/io/gitlab/jazztickets.emptyclip/6fdb21557686efc92d01bce66bd0214e/icons/128x128/io.gitlab.jazztickets.emptyclip.png", + "main_categories": "game", + "sub_categories": [ + "ActionGame", + "Shooter", + "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": "1686063864", + "runtime": "org.freedesktop.Platform/x86_64/24.08", + "updated_at": 1726871068, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1686033142, + "trending": 3.967482617178216, + "installs_last_month": 110, "isMobileFriendly": false }, { @@ -21700,8 +21737,8 @@ "aarch64" ], "added_at": 1647501185, - "trending": 1.496304746181388, - "installs_last_month": 100, + "trending": 1.4627264136168483, + "installs_last_month": 107, "isMobileFriendly": false }, { @@ -21742,45 +21779,43 @@ "aarch64" ], "added_at": 1731814393, - "trending": 7.781402095070988, - "installs_last_month": 97, + "trending": 8.169615077928306, + "installs_last_month": 98, "isMobileFriendly": false }, { - "name": "Empty Clip", + "name": "L'Abbaye des morts", "keywords": null, - "summary": "Empty Clip is a top-down shooter action RPG", - "description": "Blast your way through ten levels and boss fights in this top-down shooter action RPG.\n \n Utilize over 15 different weapons, including melee, pistols, shotguns, rifles, rocket launchers, crossbows, and miniguns\n Fight thousands of zombies, spiders, bats, skeletons, demons, aliens and more\n Discover rare items and secrets that sprawl across dungeons, woods, caves, cities, desert, hell, and alien worlds\n Customize your character with skill points and over 25 different gear mods\n Play through the campaign multiple times for an increase in difficulty and rewards\n Complete eight achievements for an even greater challenge\n \n ", - "id": "io_gitlab_jazztickets_emptyclip", + "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-only", + "project_license": "GPL-3.0", "is_free_license": true, - "app_id": "io.gitlab.jazztickets.emptyclip", - "icon": "https://dl.flathub.org/media/io/gitlab/jazztickets.emptyclip/6fdb21557686efc92d01bce66bd0214e/icons/128x128/io.gitlab.jazztickets.emptyclip.png", + "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", - "Shooter", - "RolePlaying" + "ActionGame" ], - "developer_name": "jazztickets", - "verification_verified": true, - "verification_method": "login_provider", - "verification_login_name": "jazztickets", - "verification_login_provider": "gitlab", - "verification_login_is_organization": "false", + "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": "1686063864", + "verification_timestamp": null, "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1726871068, + "updated_at": 1739298211, "arches": [ "x86_64", "aarch64" ], - "added_at": 1686033142, - "trending": 2.8260582648010475, - "installs_last_month": 96, + "added_at": 1571203547, + "trending": 2.387642574790731, + "installs_last_month": 82, "isMobileFriendly": false }, { @@ -21818,43 +21853,8 @@ "aarch64" ], "added_at": 1661843017, - "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, + "trending": 2.6785585184497176, + "installs_last_month": 80, "isMobileFriendly": false }, { @@ -21889,8 +21889,8 @@ "aarch64" ], "added_at": 1653555234, - "trending": 1.0855619689289573, - "installs_last_month": 69, + "trending": -0.2322452659068195, + "installs_last_month": 77, "isMobileFriendly": false }, { @@ -21924,8 +21924,8 @@ "aarch64" ], "added_at": 1653896019, - "trending": 0.7870995140614391, - "installs_last_month": 60, + "trending": 2.6236987633146427, + "installs_last_month": 66, "isMobileFriendly": false }, { @@ -21959,8 +21959,8 @@ "aarch64" ], "added_at": 1728976739, - "trending": 5.2519419399136, - "installs_last_month": 58, + "trending": 5.958428223146417, + "installs_last_month": 57, "isMobileFriendly": false }, { @@ -22002,7 +22002,7 @@ "aarch64" ], "added_at": 1716532941, - "trending": 13.488469872746428, + "trending": 13.922646879524844, "installs_last_month": 52, "isMobileFriendly": false }, @@ -22037,8 +22037,8 @@ "aarch64" ], "added_at": 1730360459, - "trending": 10.23191837348403, - "installs_last_month": 26, + "trending": 8.523575230962146, + "installs_last_month": 32, "isMobileFriendly": false } ], @@ -22158,8 +22158,8 @@ "aarch64" ], "added_at": 1529141154, - "trending": 7.059417978129135, - "installs_last_month": 45017, + "trending": 8.470252553147182, + "installs_last_month": 47632, "isMobileFriendly": false }, { @@ -22199,8 +22199,8 @@ "aarch64" ], "added_at": 1666334692, - "trending": 9.867398139766214, - "installs_last_month": 34528, + "trending": 10.33184220533071, + "installs_last_month": 35965, "isMobileFriendly": false }, { @@ -22239,8 +22239,8 @@ "x86_64" ], "added_at": 1714032230, - "trending": 4.871336460718362, - "installs_last_month": 3930, + "trending": 6.151847445299142, + "installs_last_month": 4083, "isMobileFriendly": false }, { @@ -22281,8 +22281,8 @@ "aarch64" ], "added_at": 1544441551, - "trending": 2.5667796901733055, - "installs_last_month": 859, + "trending": 1.0894327738310603, + "installs_last_month": 907, "isMobileFriendly": false }, { @@ -22319,43 +22319,8 @@ "aarch64" ], "added_at": 1680597687, - "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, + "trending": 9.307194250535112, + "installs_last_month": 815, "isMobileFriendly": false }, { @@ -22391,8 +22356,43 @@ "aarch64" ], "added_at": 1534170853, - "trending": 6.71707679098909, - "installs_last_month": 335, + "trending": 5.516852479917262, + "installs_last_month": 359, + "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": 12.92087259943552, + "installs_last_month": 347, "isMobileFriendly": false }, { @@ -22435,8 +22435,8 @@ "aarch64" ], "added_at": 1736044232, - "trending": 12.73630868884381, - "installs_last_month": 307, + "trending": 9.7869428661372, + "installs_last_month": 313, "isMobileFriendly": false }, { @@ -22476,8 +22476,8 @@ "aarch64" ], "added_at": 1647327840, - "trending": 3.36116259798972, - "installs_last_month": 262, + "trending": 0.9263118553475338, + "installs_last_month": 270, "isMobileFriendly": false }, { @@ -22512,8 +22512,8 @@ "aarch64" ], "added_at": 1697214015, - "trending": 4.274591082980994, - "installs_last_month": 254, + "trending": 4.516264667405467, + "installs_last_month": 262, "isMobileFriendly": false }, { @@ -22553,8 +22553,8 @@ "aarch64" ], "added_at": 1675625579, - "trending": 0.7327113665423322, - "installs_last_month": 205, + "trending": -2.1334257157334955, + "installs_last_month": 211, "isMobileFriendly": false }, { @@ -22597,8 +22597,8 @@ "aarch64" ], "added_at": 1534747078, - "trending": 11.049821298301552, - "installs_last_month": 175, + "trending": 12.724879253823238, + "installs_last_month": 185, "isMobileFriendly": false }, { @@ -22640,8 +22640,8 @@ "aarch64" ], "added_at": 1706168911, - "trending": 3.410100358436739, - "installs_last_month": 157, + "trending": 6.655753687155052, + "installs_last_month": 173, "isMobileFriendly": false }, { @@ -22676,8 +22676,8 @@ "aarch64" ], "added_at": 1671698736, - "trending": 0.5286234599129263, - "installs_last_month": 151, + "trending": 0.3202101080399459, + "installs_last_month": 156, "isMobileFriendly": false }, { @@ -22711,8 +22711,8 @@ "aarch64" ], "added_at": 1656705134, - "trending": 1.7374459176180976, - "installs_last_month": 141, + "trending": -0.08616401578826238, + "installs_last_month": 152, "isMobileFriendly": false }, { @@ -22752,8 +22752,8 @@ "aarch64" ], "added_at": 1662622023, - "trending": 6.82156955703526, - "installs_last_month": 123, + "trending": 2.149860446909313, + "installs_last_month": 126, "isMobileFriendly": false }, { @@ -22797,42 +22797,8 @@ "aarch64" ], "added_at": 1731989989, - "trending": 10.277822650901872, - "installs_last_month": 112, - "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.71580765674013, - "installs_last_month": 99, + "trending": 13.81649515389072, + "installs_last_month": 123, "isMobileFriendly": false }, { @@ -22892,10 +22858,44 @@ "aarch64" ], "added_at": 1655046652, - "trending": 4.910975435794992, - "installs_last_month": 91, + "trending": 1.7667217079887911, + "installs_last_month": 102, "isMobileFriendly": true }, + { + "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": 5.89320881449365, + "installs_last_month": 97, + "isMobileFriendly": false + }, { "name": "Scripted Journeys", "keywords": null, @@ -22927,8 +22927,8 @@ "aarch64" ], "added_at": 1726468333, - "trending": 3.5024594019655897, - "installs_last_month": 90, + "trending": 5.19918106070298, + "installs_last_month": 92, "isMobileFriendly": false }, { @@ -22965,7 +22965,7 @@ ], "added_at": 1531046445, "trending": 3.596287902106676, - "installs_last_month": 74, + "installs_last_month": 76, "isMobileFriendly": false }, { @@ -23003,7 +23003,7 @@ "x86_64" ], "added_at": 1652422481, - "trending": 0.8256070381015527, + "trending": 1.1994721287467969, "installs_last_month": 74, "isMobileFriendly": false }, @@ -23038,8 +23038,8 @@ "aarch64" ], "added_at": 1728976818, - "trending": 5.694648799899145, - "installs_last_month": 67, + "trending": 3.139160696267155, + "installs_last_month": 70, "isMobileFriendly": false }, { @@ -23080,8 +23080,8 @@ "aarch64" ], "added_at": 1568102591, - "trending": 0.4483125056612308, - "installs_last_month": 38, + "trending": 2.2909191826535955, + "installs_last_month": 41, "isMobileFriendly": false } ], @@ -23130,8 +23130,8 @@ "aarch64" ], "added_at": 1692740328, - "trending": 5.3838501519662225, - "installs_last_month": 46692, + "trending": 6.6020254524723745, + "installs_last_month": 49374, "isMobileFriendly": false }, { @@ -23169,8 +23169,8 @@ "aarch64" ], "added_at": 1640680422, - "trending": 10.029128398558347, - "installs_last_month": 8291, + "trending": 9.265606163088554, + "installs_last_month": 8608, "isMobileFriendly": false }, { @@ -23205,8 +23205,8 @@ "aarch64" ], "added_at": 1659507908, - "trending": 6.699443487515757, - "installs_last_month": 7041, + "trending": 8.530556934700781, + "installs_last_month": 7377, "isMobileFriendly": false }, { @@ -23368,8 +23368,8 @@ "aarch64" ], "added_at": 1492018328, - "trending": 8.882484202373414, - "installs_last_month": 3955, + "trending": 11.747686304307985, + "installs_last_month": 4093, "isMobileFriendly": false }, { @@ -23408,8 +23408,8 @@ "aarch64" ], "added_at": 1492084114, - "trending": 9.531053891505016, - "installs_last_month": 2276, + "trending": 10.666971664817089, + "installs_last_month": 2381, "isMobileFriendly": false }, { @@ -23443,8 +23443,8 @@ "x86_64" ], "added_at": 1601454790, - "trending": 7.950810594584819, - "installs_last_month": 1368, + "trending": 8.470070649856899, + "installs_last_month": 1384, "isMobileFriendly": false }, { @@ -23483,8 +23483,8 @@ "aarch64" ], "added_at": 1688972460, - "trending": 12.610767868454284, - "installs_last_month": 1284, + "trending": 11.044081868912006, + "installs_last_month": 1325, "isMobileFriendly": false }, { @@ -23525,8 +23525,8 @@ "aarch64" ], "added_at": 1494999624, - "trending": 11.054086288536256, - "installs_last_month": 1040, + "trending": 11.270189682311171, + "installs_last_month": 1063, "isMobileFriendly": false }, { @@ -23564,8 +23564,8 @@ "aarch64" ], "added_at": 1653292987, - "trending": 11.26513613629375, - "installs_last_month": 957, + "trending": 9.938649843670357, + "installs_last_month": 963, "isMobileFriendly": false }, { @@ -23601,8 +23601,8 @@ "aarch64" ], "added_at": 1717580224, - "trending": 3.759188295725188, - "installs_last_month": 917, + "trending": 5.028762469404498, + "installs_last_month": 949, "isMobileFriendly": false }, { @@ -23639,8 +23639,8 @@ "aarch64" ], "added_at": 1492202785, - "trending": 1.029117669923885, - "installs_last_month": 874, + "trending": 1.1488581694595608, + "installs_last_month": 924, "isMobileFriendly": false }, { @@ -23680,8 +23680,8 @@ "aarch64" ], "added_at": 1512404271, - "trending": 0.007453479789956363, - "installs_last_month": 807, + "trending": 1.69490276126491, + "installs_last_month": 834, "isMobileFriendly": false }, { @@ -23715,8 +23715,8 @@ "aarch64" ], "added_at": 1493186898, - "trending": 11.35201106732265, - "installs_last_month": 663, + "trending": 7.832351102314576, + "installs_last_month": 707, "isMobileFriendly": false }, { @@ -23759,8 +23759,8 @@ "aarch64" ], "added_at": 1494977795, - "trending": 2.603694397839193, - "installs_last_month": 633, + "trending": 0.8177756296717809, + "installs_last_month": 704, "isMobileFriendly": false }, { @@ -23801,8 +23801,8 @@ "aarch64" ], "added_at": 1653627129, - "trending": 2.643853762846346, - "installs_last_month": 632, + "trending": 1.969115022635605, + "installs_last_month": 658, "isMobileFriendly": false }, { @@ -23854,8 +23854,82 @@ "aarch64" ], "added_at": 1693155547, - "trending": 17.520230917559783, - "installs_last_month": 622, + "trending": 15.039223897430762, + "installs_last_month": 655, + "isMobileFriendly": false + }, + { + "name": "DDNet", + "keywords": [ + "multiplayer", + "teeworlds", + "game" + ], + "summary": "Hardest co-op 2D platformer ever", + "description": "\n DDraceNetwork (DDNet) is an actively maintained version of DDRace, \n a Teeworlds modification with a unique cooperative gameplay. \n Help each other play through custom maps with up to 64 players, \n compete against the best in international tournaments, design your own maps, \n or run your own server. The official servers are around the world. \n All ranks made on official servers are available worldwide and you can collect points!\n \n ", + "id": "tw_ddnet_ddnet", + "type": "desktop-application", + "translations": {}, + "project_license": "Zlib", + "is_free_license": true, + "app_id": "tw.ddnet.ddnet", + "icon": "https://dl.flathub.org/media/tw/ddnet/ddnet/5da8cb660c6326f5a8e4646d768c7f73/icons/128x128/tw.ddnet.ddnet.png", + "main_categories": "game", + "sub_categories": [ + "ArcadeGame" + ], + "developer_name": "DDNet 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": 1743185290, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1589978148, + "trending": 8.110373655819672, + "installs_last_month": 585, + "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": 12.703209485274048, + "installs_last_month": 573, "isMobileFriendly": false }, { @@ -23907,82 +23981,8 @@ "aarch64" ], "added_at": 1580802922, - "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 - }, - { - "name": "DDNet", - "keywords": [ - "multiplayer", - "teeworlds", - "game" - ], - "summary": "Hardest co-op 2D platformer ever", - "description": "\n DDraceNetwork (DDNet) is an actively maintained version of DDRace, \n a Teeworlds modification with a unique cooperative gameplay. \n Help each other play through custom maps with up to 64 players, \n compete against the best in international tournaments, design your own maps, \n or run your own server. The official servers are around the world. \n All ranks made on official servers are available worldwide and you can collect points!\n \n ", - "id": "tw_ddnet_ddnet", - "type": "desktop-application", - "translations": {}, - "project_license": "Zlib", - "is_free_license": true, - "app_id": "tw.ddnet.ddnet", - "icon": "https://dl.flathub.org/media/tw/ddnet/ddnet/5da8cb660c6326f5a8e4646d768c7f73/icons/128x128/tw.ddnet.ddnet.png", - "main_categories": "game", - "sub_categories": [ - "ArcadeGame" - ], - "developer_name": "DDNet 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": 1743185290, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1589978148, - "trending": 9.112616413697022, - "installs_last_month": 553, + "trending": 14.093284807881597, + "installs_last_month": 569, "isMobileFriendly": false }, { @@ -24016,8 +24016,8 @@ "aarch64" ], "added_at": 1678280256, - "trending": 10.021726328009342, - "installs_last_month": 458, + "trending": 11.737286102337976, + "installs_last_month": 468, "isMobileFriendly": false }, { @@ -24191,8 +24191,8 @@ "aarch64" ], "added_at": 1534955335, - "trending": 9.543822672762598, - "installs_last_month": 433, + "trending": 8.352165725663776, + "installs_last_month": 448, "isMobileFriendly": false }, { @@ -24366,8 +24366,8 @@ "aarch64" ], "added_at": 1645372514, - "trending": 9.51406229321996, - "installs_last_month": 419, + "trending": 10.42415730286895, + "installs_last_month": 436, "isMobileFriendly": false }, { @@ -24400,8 +24400,8 @@ "x86_64" ], "added_at": 1536318725, - "trending": 11.323380266836516, - "installs_last_month": 400, + "trending": 11.333536442055374, + "installs_last_month": 412, "isMobileFriendly": false }, { @@ -24440,8 +24440,8 @@ "aarch64" ], "added_at": 1704220783, - "trending": 5.650106681165626, - "installs_last_month": 389, + "trending": 6.387751719738293, + "installs_last_month": 406, "isMobileFriendly": false }, { @@ -24627,8 +24627,8 @@ "aarch64" ], "added_at": 1535022858, - "trending": 11.73859980819387, - "installs_last_month": 386, + "trending": 10.004008541566735, + "installs_last_month": 395, "isMobileFriendly": false }, { @@ -24664,8 +24664,8 @@ "aarch64" ], "added_at": 1702299440, - "trending": 0.7861997609240106, - "installs_last_month": 368, + "trending": 1.7962776334104988, + "installs_last_month": 392, "isMobileFriendly": false }, { @@ -24703,8 +24703,8 @@ "aarch64" ], "added_at": 1740683590, - "trending": 12.189388493160733, - "installs_last_month": 364, + "trending": 12.61894140554418, + "installs_last_month": 379, "isMobileFriendly": false }, { @@ -24739,8 +24739,8 @@ "aarch64" ], "added_at": 1737039810, - "trending": 13.680056961694223, - "installs_last_month": 362, + "trending": 13.880722716188709, + "installs_last_month": 370, "isMobileFriendly": false }, { @@ -24973,43 +24973,8 @@ "aarch64" ], "added_at": 1569573432, - "trending": 10.516134170881015, - "installs_last_month": 355, - "isMobileFriendly": false - }, - { - "name": "OpenTyrian", - "keywords": null, - "summary": "An open-source port of the DOS shoot-em-up Tyrian.", - "description": "OpenTyrian is an open-source port of the DOS game Tyrian.Tyrian is an arcade-style vertical scrolling shooter. The story is set in 20,031 where you play as Trent Hawkins, a skilled fighter-pilot employed to fight MicroSol and save the galaxy.Tyrian features a story mode, one- and two-player arcade modes, and networked multiplayer.", - "id": "com_github_opentyrian_OpenTyrian", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0", - "is_free_license": true, - "app_id": "com.github.opentyrian.OpenTyrian", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.github.opentyrian.OpenTyrian.png", - "main_categories": "game", - "sub_categories": [ - "ArcadeGame" - ], - "developer_name": "OpenTyrian 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": 1699909850, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1652851945, - "trending": -0.5813753897505296, - "installs_last_month": 346, + "trending": 11.95665407232116, + "installs_last_month": 366, "isMobileFriendly": false }, { @@ -25046,8 +25011,43 @@ "aarch64" ], "added_at": 1492486646, - "trending": 13.706557900502494, - "installs_last_month": 343, + "trending": 12.25564506811505, + "installs_last_month": 358, + "isMobileFriendly": false + }, + { + "name": "OpenTyrian", + "keywords": null, + "summary": "An open-source port of the DOS shoot-em-up Tyrian.", + "description": "OpenTyrian is an open-source port of the DOS game Tyrian.Tyrian is an arcade-style vertical scrolling shooter. The story is set in 20,031 where you play as Trent Hawkins, a skilled fighter-pilot employed to fight MicroSol and save the galaxy.Tyrian features a story mode, one- and two-player arcade modes, and networked multiplayer.", + "id": "com_github_opentyrian_OpenTyrian", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0", + "is_free_license": true, + "app_id": "com.github.opentyrian.OpenTyrian", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.github.opentyrian.OpenTyrian.png", + "main_categories": "game", + "sub_categories": [ + "ArcadeGame" + ], + "developer_name": "OpenTyrian 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": 1699909850, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1652851945, + "trending": 2.5481087820080477, + "installs_last_month": 355, "isMobileFriendly": false }, { @@ -25081,8 +25081,8 @@ "aarch64" ], "added_at": 1611043716, - "trending": -0.32523225765933206, - "installs_last_month": 330, + "trending": 1.9611486228065045, + "installs_last_month": 341, "isMobileFriendly": false }, { @@ -25116,8 +25116,8 @@ "aarch64" ], "added_at": 1494566854, - "trending": 9.024503582920657, - "installs_last_month": 299, + "trending": 8.090754825520076, + "installs_last_month": 323, "isMobileFriendly": false }, { @@ -25154,8 +25154,8 @@ "aarch64" ], "added_at": 1698646399, - "trending": 5.179973313512161, - "installs_last_month": 295, + "trending": 7.373448537489215, + "installs_last_month": 304, "isMobileFriendly": false }, { @@ -25330,8 +25330,8 @@ "aarch64" ], "added_at": 1646897768, - "trending": 8.165856152669793, - "installs_last_month": 288, + "trending": 8.86165016021931, + "installs_last_month": 300, "isMobileFriendly": false }, { @@ -25365,27 +25365,31 @@ "aarch64" ], "added_at": 1714131282, - "trending": 11.884123278436896, - "installs_last_month": 288, + "trending": 10.923258716729649, + "installs_last_month": 298, "isMobileFriendly": false }, { - "name": "Maelstrom", - "keywords": null, - "summary": "High Quality Asteroids Clone", - "description": "You pilot your ship through the dreaded \"Maelstrom\" asteroid belt -- suddenly your best friend thrusts towards you and fires, directly at your cockpit. You raise your shields just in time, and the battle is joined.The deadliest stretch of space known to mankind has just gotten deadlier. Everywhere massive asteroids jostle for a chance to crush your ship, and deadly shinobi fighter patrols pursue you across the asteroid belt. But the deadliest of them all is your sister ship, assigned to you on patrol. The pilot, trained by your own Navy, battle hardened by months in the Maelstrom, is equipped with a twin of your own ship and intimate knowledge of your tactics.The lovely Stratocaster R&R facility never sounded so good, but as you fire full thrusters to dodge the latest barrage you begin to think you'll never get home...", - "id": "org_libsdl_Maelstrom", + "name": "Nexuiz Classic", + "keywords": [ + "FPS", + "Quake" + ], + "summary": "A multiplayer first-person shooter", + "description": "\n Nexuiz Classic is a fast-paced 3D deathmatch game with high-end\n and complex graphics effects. It is intended to be played over\n the Internet or over a local network. Several different game\n types, such as classic deathmatch, team deathmatch and capture\n the flag are available. It also supports a single-player mode\n and playing against the computer.\n \n \n The game brings deathmatch back to the basics, with perfect weapon\n balancing and fast paced action, keeping itself away from the\n current trend of realistic shooters.\n \n \n This game was originally released as \"Nexuiz\", but is now referred\n to as \"Nexuiz Classic\" since the Nexuiz name was re-used for a\n non-free game for consoles. \n \n ", + "id": "com_alientrap_nexuiz-classic", "type": "desktop-application", "translations": {}, - "project_license": "GPL-2.0+ and CC-BY-3.0", + "project_license": "GPL-2.0", "is_free_license": true, - "app_id": "org.libsdl.Maelstrom", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.libsdl.Maelstrom.png", + "app_id": "com.alientrap.nexuiz-classic", + "icon": "https://dl.flathub.org/media/com/alientrap/nexuiz-classic/64bc7ed8e85f409396cb2c908290f76c/icons/128x128/com.alientrap.nexuiz-classic.png", "main_categories": "game", "sub_categories": [ - "ArcadeGame" + "ArcadeGame", + "Shooter" ], - "developer_name": "Ambrosia Software", + "developer_name": "Alientrap", "verification_verified": false, "verification_method": "none", "verification_login_name": null, @@ -25393,15 +25397,48 @@ "verification_login_is_organization": null, "verification_website": null, "verification_timestamp": null, - "runtime": "org.freedesktop.Platform/x86_64/21.08", - "updated_at": 1658043130, + "runtime": "org.freedesktop.Platform/x86_64/23.08", + "updated_at": 1722951262, "arches": [ - "x86_64", - "aarch64" + "x86_64" ], - "added_at": 1655048584, - "trending": 8.988802395992604, - "installs_last_month": 286, + "added_at": 1586504666, + "trending": 6.782958979179066, + "installs_last_month": 292, + "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.06786264298609, + "installs_last_month": 291, "isMobileFriendly": false }, { @@ -25525,27 +25562,27 @@ "aarch64" ], "added_at": 1529733224, - "trending": 9.77992360901652, - "installs_last_month": 285, + "trending": 6.977651288559157, + "installs_last_month": 286, "isMobileFriendly": false }, { - "name": "Dynablaster Revenge", + "name": "Maelstrom", "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", + "summary": "High Quality Asteroids Clone", + "description": "You pilot your ship through the dreaded \"Maelstrom\" asteroid belt -- suddenly your best friend thrusts towards you and fires, directly at your cockpit. You raise your shields just in time, and the battle is joined.The deadliest stretch of space known to mankind has just gotten deadlier. Everywhere massive asteroids jostle for a chance to crush your ship, and deadly shinobi fighter patrols pursue you across the asteroid belt. But the deadliest of them all is your sister ship, assigned to you on patrol. The pilot, trained by your own Navy, battle hardened by months in the Maelstrom, is equipped with a twin of your own ship and intimate knowledge of your tactics.The lovely Stratocaster R&R facility never sounded so good, but as you fire full thrusters to dodge the latest barrage you begin to think you'll never get home...", + "id": "org_libsdl_Maelstrom", "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", + "project_license": "GPL-2.0+ and CC-BY-3.0", + "is_free_license": true, + "app_id": "org.libsdl.Maelstrom", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.libsdl.Maelstrom.png", "main_categories": "game", "sub_categories": [ "ArcadeGame" ], - "developer_name": "Dynablaster Revenge developers", + "developer_name": "Ambrosia Software", "verification_verified": false, "verification_method": "none", "verification_login_name": null, @@ -25553,54 +25590,17 @@ "verification_login_is_organization": null, "verification_website": null, "verification_timestamp": null, - "runtime": "org.kde.Platform/x86_64/5.15-23.08", - "updated_at": 1729132562, + "runtime": "org.freedesktop.Platform/x86_64/21.08", + "updated_at": 1658043130, "arches": [ - "x86_64" + "x86_64", + "aarch64" ], - "added_at": 1661807166, - "trending": 11.582609548935748, + "added_at": 1655048584, + "trending": 7.559801625416696, "installs_last_month": 284, "isMobileFriendly": false }, - { - "name": "Nexuiz Classic", - "keywords": [ - "FPS", - "Quake" - ], - "summary": "A multiplayer first-person shooter", - "description": "\n Nexuiz Classic is a fast-paced 3D deathmatch game with high-end\n and complex graphics effects. It is intended to be played over\n the Internet or over a local network. Several different game\n types, such as classic deathmatch, team deathmatch and capture\n the flag are available. It also supports a single-player mode\n and playing against the computer.\n \n \n The game brings deathmatch back to the basics, with perfect weapon\n balancing and fast paced action, keeping itself away from the\n current trend of realistic shooters.\n \n \n This game was originally released as \"Nexuiz\", but is now referred\n to as \"Nexuiz Classic\" since the Nexuiz name was re-used for a\n non-free game for consoles. \n \n ", - "id": "com_alientrap_nexuiz-classic", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0", - "is_free_license": true, - "app_id": "com.alientrap.nexuiz-classic", - "icon": "https://dl.flathub.org/media/com/alientrap/nexuiz-classic/64bc7ed8e85f409396cb2c908290f76c/icons/128x128/com.alientrap.nexuiz-classic.png", - "main_categories": "game", - "sub_categories": [ - "ArcadeGame", - "Shooter" - ], - "developer_name": "Alientrap", - "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": 1722951262, - "arches": [ - "x86_64" - ], - "added_at": 1586504666, - "trending": 5.053141419977233, - "installs_last_month": 276, - "isMobileFriendly": false - }, { "name": "Tuxocide", "keywords": null, @@ -25635,8 +25635,8 @@ "aarch64" ], "added_at": 1701681910, - "trending": 4.933188427797912, - "installs_last_month": 276, + "trending": 3.3982590238426615, + "installs_last_month": 279, "isMobileFriendly": false }, { @@ -25670,126 +25670,8 @@ "aarch64" ], "added_at": 1713420163, - "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 - }, - { - "name": "Taisei Project", - "keywords": [ - "bullet hell", - "danmaku", - "game", - "shmup", - "touhou" - ], - "summary": "Bullet hell shoot 'em up game set in the Tōhō universe", - "description": "Taisei (泰西, lit. Occident) is a free and open-source fangame of the Tōhō series.\n Basically, it is a shoot ’em up game with lots of bullets (the genre is literally called bullet hell). It doesn’t aim to rebuild a particular installment of the Tōhō games, but is rather an original game set in the world of Tōhō. Enjoy dodging through 6 stages full of new bullet patterns on four difficulty levels!\n ", - "id": "org_taisei_project_Taisei", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT and CC-BY-4.0 and CC0-1.0", - "is_free_license": true, - "app_id": "org.taisei_project.Taisei", - "icon": "https://dl.flathub.org/media/org/taisei_project/Taisei/c5664ab8badb21b164edd039515c8457/icons/128x128/org.taisei_project.Taisei.png", - "main_categories": "game", - "sub_categories": [ - "ArcadeGame" - ], - "developer_name": "Taisei Project Team", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "taisei-project.org", - "verification_timestamp": "1728470168", - "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1737404013, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1534105794, - "trending": 1.1873159995326348, - "installs_last_month": 252, - "isMobileFriendly": false - }, - { - "name": "Sopwith", - "keywords": [ - "sopwith", - "biplane", - "retro", - "aeroplane", - "dogfight", - "combat" - ], - "summary": "Classic biplane shoot-'em up", - "description": "\n Sopwith is a modern port of the classic 1980s shoot 'em up game of the\n same name. The game has a World War I aviation theme. The object of\n Sopwith is to destroy all enemy targets with a somewhat limited airforce.\n \n \n It can be played both in single player and multiplayer mode over a TCP/IP network.\n \n ", - "id": "io_github_fragglet_sdl_sopwith", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0-or-later", - "is_free_license": true, - "app_id": "io.github.fragglet.sdl_sopwith", - "icon": "https://dl.flathub.org/media/io/github/fragglet.sdl_sopwith/154ae876afef69c87c36a43882e7f3ca/icons/128x128/io.github.fragglet.sdl_sopwith.png", - "main_categories": "game", - "sub_categories": [ - "ArcadeGame" - ], - "developer_name": "Dave L. Clark", - "verification_verified": true, - "verification_method": "login_provider", - "verification_login_name": "fragglet", - "verification_login_provider": "github", - "verification_login_is_organization": "true", - "verification_website": null, - "verification_timestamp": "1684940006", - "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1742591266, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1684833574, - "trending": 10.950089002063862, - "installs_last_month": 246, + "trending": 8.8499591010145, + "installs_last_month": 268, "isMobileFriendly": false }, { @@ -25832,103 +25714,68 @@ "aarch64" ], "added_at": 1495784008, - "trending": 1.5226701017187718, - "installs_last_month": 241, + "trending": 1.688103224522826, + "installs_last_month": 262, "isMobileFriendly": false }, { - "name": "Project: Starfighter", + "name": "Taisei Project", "keywords": [ - "Games" + "bullet hell", + "danmaku", + "game", + "shmup", + "touhou" ], - "summary": "Space shoot 'em up game.", - "description": "\n Project: Starfighter is a space shoot 'em up game originally developed\nby Parallel Realities in 2002, and released in 2003. You assume the role\nof Chris Bainfield in his quest to put an end to WEAPCO, the weapons\ncorporation which has enslaved the galaxy.\n \n ", - "id": "io_github_pr_starfighter_starfighter", + "summary": "Bullet hell shoot 'em up game set in the Tōhō universe", + "description": "Taisei (泰西, lit. Occident) is a free and open-source fangame of the Tōhō series.\n Basically, it is a shoot ’em up game with lots of bullets (the genre is literally called bullet hell). It doesn’t aim to rebuild a particular installment of the Tōhō games, but is rather an original game set in the world of Tōhō. Enjoy dodging through 6 stages full of new bullet patterns on four difficulty levels!\n ", + "id": "org_taisei_project_Taisei", "type": "desktop-application", "translations": {}, - "project_license": "GPL-3.0-or-later", + "project_license": "MIT and CC-BY-4.0 and CC0-1.0", "is_free_license": true, - "app_id": "io.github.pr_starfighter.starfighter", - "icon": "https://dl.flathub.org/media/io/github/pr_starfighter.starfighter/41bf5729420d07a04801bb40d3d60fbe/icons/128x128/io.github.pr_starfighter.starfighter.png", + "app_id": "org.taisei_project.Taisei", + "icon": "https://dl.flathub.org/media/org/taisei_project/Taisei/c5664ab8badb21b164edd039515c8457/icons/128x128/org.taisei_project.Taisei.png", "main_categories": "game", "sub_categories": [ - "ActionGame", "ArcadeGame" ], - "developer_name": "starfighter", - "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": 1739351278, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1660465791, - "trending": 8.50666142348849, - "installs_last_month": 232, - "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", + "developer_name": "Taisei Project Team", "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, + "verification_website": "taisei-project.org", + "verification_timestamp": "1728470168", + "runtime": "org.freedesktop.Platform/x86_64/24.08", + "updated_at": 1737404013, "arches": [ "x86_64", "aarch64" ], - "added_at": 1699221678, - "trending": 1.4392846802361294, - "installs_last_month": 232, + "added_at": 1534105794, + "trending": 1.4351011387804975, + "installs_last_month": 259, "isMobileFriendly": false }, { - "name": "SDL-Ball", + "name": "Mr Rescue", "keywords": null, - "summary": "Brick-breaking game with pretty graphics", - "description": "\n\t\t\tYour mission: To smash your way through a series of progressively harder and more tricky levels. Your tools: Ultrakinetic titanium balls and your trusty Gruntmazter-3000-Paddle edition.\n\t\t\n \n\t\t\tFeatures:\n\t\t\n \n 50 levels\n OpenGL eye candy\n Lots of powerups and powerdowns\n Powerup Shop - You get special coins for collecting powerups, you can spend them on more powerups.\n Highscores\n Sound\n Easy to use level editor.\n Themes - Selectable from options menu.\n Controllable with Mouse/Keyboard/Joystick and WiiMote.\n Save and Load games\n Cool Introscreen\n Screenshot function\n Crafting of items from raw materials\n Fast and able to run on old and slow hardware\n A simple modding API that supports many additions and modifications to the game\n Multiplayer support via servers hosted by users\n Beautiful lightning-fast map generator\n \n ", - "id": "net_sourceforge_SDL-Ball", + "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": "GPL-3.0", + "project_license": "Zlib", "is_free_license": true, - "app_id": "net.sourceforge.SDL-Ball", - "icon": "https://dl.flathub.org/media/net/sourceforge/SDL-Ball/07585901f0b38f64f1358b00d7f46e4a/icons/128x128/net.sourceforge.SDL-Ball.png", + "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": [ - "ActionGame", "ArcadeGame" ], - "developer_name": "Jimmy Christensen", + "developer_name": "Simon Larsen", "verification_verified": false, "verification_method": "none", "verification_login_name": null, @@ -25936,15 +25783,57 @@ "verification_login_is_organization": null, "verification_website": null, "verification_timestamp": null, - "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1736600550, + "runtime": "org.freedesktop.Platform/x86_64/23.08", + "updated_at": 1694115798, "arches": [ "x86_64", "aarch64" ], - "added_at": 1652851890, - "trending": -0.5976456106318524, - "installs_last_month": 230, + "added_at": 1537942401, + "trending": 11.605301901023385, + "installs_last_month": 255, + "isMobileFriendly": false + }, + { + "name": "Sopwith", + "keywords": [ + "sopwith", + "biplane", + "retro", + "aeroplane", + "dogfight", + "combat" + ], + "summary": "Classic biplane shoot-'em up", + "description": "\n Sopwith is a modern port of the classic 1980s shoot 'em up game of the\n same name. The game has a World War I aviation theme. The object of\n Sopwith is to destroy all enemy targets with a somewhat limited airforce.\n \n \n It can be played both in single player and multiplayer mode over a TCP/IP network.\n \n ", + "id": "io_github_fragglet_sdl_sopwith", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0-or-later", + "is_free_license": true, + "app_id": "io.github.fragglet.sdl_sopwith", + "icon": "https://dl.flathub.org/media/io/github/fragglet.sdl_sopwith/154ae876afef69c87c36a43882e7f3ca/icons/128x128/io.github.fragglet.sdl_sopwith.png", + "main_categories": "game", + "sub_categories": [ + "ArcadeGame" + ], + "developer_name": "Dave L. Clark", + "verification_verified": true, + "verification_method": "login_provider", + "verification_login_name": "fragglet", + "verification_login_provider": "github", + "verification_login_is_organization": "true", + "verification_website": null, + "verification_timestamp": "1684940006", + "runtime": "org.freedesktop.Platform/x86_64/24.08", + "updated_at": 1742591266, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1684833574, + "trending": 10.770138050484574, + "installs_last_month": 247, "isMobileFriendly": false }, { @@ -26124,8 +26013,119 @@ "aarch64" ], "added_at": 1611325843, - "trending": 8.822591945528604, - "installs_last_month": 229, + "trending": 7.953840418199278, + "installs_last_month": 244, + "isMobileFriendly": false + }, + { + "name": "Project: Starfighter", + "keywords": [ + "Games" + ], + "summary": "Space shoot 'em up game.", + "description": "\n Project: Starfighter is a space shoot 'em up game originally developed\nby Parallel Realities in 2002, and released in 2003. You assume the role\nof Chris Bainfield in his quest to put an end to WEAPCO, the weapons\ncorporation which has enslaved the galaxy.\n \n ", + "id": "io_github_pr_starfighter_starfighter", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0-or-later", + "is_free_license": true, + "app_id": "io.github.pr_starfighter.starfighter", + "icon": "https://dl.flathub.org/media/io/github/pr_starfighter.starfighter/41bf5729420d07a04801bb40d3d60fbe/icons/128x128/io.github.pr_starfighter.starfighter.png", + "main_categories": "game", + "sub_categories": [ + "ActionGame", + "ArcadeGame" + ], + "developer_name": "starfighter", + "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": 1739351278, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1660465791, + "trending": 8.768034627854767, + "installs_last_month": 242, + "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": 4.914622257872027, + "installs_last_month": 242, + "isMobileFriendly": false + }, + { + "name": "SDL-Ball", + "keywords": null, + "summary": "Brick-breaking game with pretty graphics", + "description": "\n\t\t\tYour mission: To smash your way through a series of progressively harder and more tricky levels. Your tools: Ultrakinetic titanium balls and your trusty Gruntmazter-3000-Paddle edition.\n\t\t\n \n\t\t\tFeatures:\n\t\t\n \n 50 levels\n OpenGL eye candy\n Lots of powerups and powerdowns\n Powerup Shop - You get special coins for collecting powerups, you can spend them on more powerups.\n Highscores\n Sound\n Easy to use level editor.\n Themes - Selectable from options menu.\n Controllable with Mouse/Keyboard/Joystick and WiiMote.\n Save and Load games\n Cool Introscreen\n Screenshot function\n Crafting of items from raw materials\n Fast and able to run on old and slow hardware\n A simple modding API that supports many additions and modifications to the game\n Multiplayer support via servers hosted by users\n Beautiful lightning-fast map generator\n \n ", + "id": "net_sourceforge_SDL-Ball", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0", + "is_free_license": true, + "app_id": "net.sourceforge.SDL-Ball", + "icon": "https://dl.flathub.org/media/net/sourceforge/SDL-Ball/07585901f0b38f64f1358b00d7f46e4a/icons/128x128/net.sourceforge.SDL-Ball.png", + "main_categories": "game", + "sub_categories": [ + "ActionGame", + "ArcadeGame" + ], + "developer_name": "Jimmy Christensen", + "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": 1736600550, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1652851890, + "trending": 0.8252540384194251, + "installs_last_month": 240, "isMobileFriendly": false }, { @@ -26160,8 +26160,43 @@ "x86_64" ], "added_at": 1522566411, - "trending": 1.3213259786645442, - "installs_last_month": 227, + "trending": 1.5933254798758223, + "installs_last_month": 239, + "isMobileFriendly": false + }, + { + "name": "Blobby Volley 2", + "keywords": null, + "summary": "The head-to-head multiplayer volley-ball game.", + "description": "Blobby Volley is one of the most popular freeware games where two blobbed shaped entities play volleyball against each other. You can play against a teammate or alone against computer opponents. It's possible to play in local network and in offical servers. Controls via the mouse or the keyboard are customizable. The points are saved and can be displayed and compared in statistics.This is an official continuation of the famous Blobby Volley 1.x arcade game from 2000s.", + "id": "de_blobbyvolley_BlobbyVolley2", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0", + "is_free_license": true, + "app_id": "de.blobbyvolley.BlobbyVolley2", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/de.blobbyvolley.BlobbyVolley2.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": 1694201389, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1603699616, + "trending": 2.414692845774242, + "installs_last_month": 235, "isMobileFriendly": false }, { @@ -26342,43 +26377,8 @@ "aarch64" ], "added_at": 1535032342, - "trending": -0.16904790939498948, - "installs_last_month": 223, - "isMobileFriendly": false - }, - { - "name": "Blobby Volley 2", - "keywords": null, - "summary": "The head-to-head multiplayer volley-ball game.", - "description": "Blobby Volley is one of the most popular freeware games where two blobbed shaped entities play volleyball against each other. You can play against a teammate or alone against computer opponents. It's possible to play in local network and in offical servers. Controls via the mouse or the keyboard are customizable. The points are saved and can be displayed and compared in statistics.This is an official continuation of the famous Blobby Volley 1.x arcade game from 2000s.", - "id": "de_blobbyvolley_BlobbyVolley2", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0", - "is_free_license": true, - "app_id": "de.blobbyvolley.BlobbyVolley2", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/de.blobbyvolley.BlobbyVolley2.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": 1694201389, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1603699616, - "trending": 2.2265674283219807, - "installs_last_month": 222, + "trending": 0.6566978512651092, + "installs_last_month": 227, "isMobileFriendly": false }, { @@ -26418,8 +26418,43 @@ "aarch64" ], "added_at": 1492280644, - "trending": 10.282897182862367, - "installs_last_month": 203, + "trending": 10.58713326348834, + "installs_last_month": 215, + "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": 14.217033696086066, + "installs_last_month": 212, "isMobileFriendly": false }, { @@ -26459,8 +26494,43 @@ "x86_64" ], "added_at": 1636443878, - "trending": 0.02858599567072262, - "installs_last_month": 196, + "trending": 2.353401765342941, + "installs_last_month": 209, + "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.778723391519852, + "installs_last_month": 197, "isMobileFriendly": false }, { @@ -26496,152 +26566,8 @@ "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 - }, - { - "name": "PAC-GAL", - "keywords": null, - "summary": "Feminized PAC-MAN remake", - "description": "Turn based PAC-MAN, girl style!\n \n W,A,S,D / Arrow Keys = Move\n \n Dedicated to Tōru Iwatani.\n ", - "id": "com_voxdsp_PacGal", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT", - "is_free_license": true, - "app_id": "com.voxdsp.PacGal", - "icon": "https://dl.flathub.org/media/com/voxdsp/PacGal/d86c1821e1baab66f5fea4855d726d61/icons/128x128/com.voxdsp.PacGal.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": "1717010472", - "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1717804954, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1716967191, - "trending": 2.8608796315180753, - "installs_last_month": 186, - "isMobileFriendly": false - }, - { - "name": "Tux VS Dragon", - "keywords": null, - "summary": "Slay the Red Dragon Tux!", - "description": "You have to defeat the dragon. It takes 24 snowball hits to defeat the dragon. If Tux gets hit just once you have to start all over again! Snowballs will randomly spawn in one of the four grassy patches, Tux can only carry one at a time and cant throw a snowball unless he is standing still. Good luck!\n \n W,A,S,D / Arrow Keys = Move\n Space Bar = Throw Snowball\n C = Change camera view\n \n ", - "id": "com_voxdsp_TuxVsDragon", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0-only", - "is_free_license": true, - "app_id": "com.voxdsp.TuxVsDragon", - "icon": "https://dl.flathub.org/media/com/voxdsp/TuxVsDragon/efb4d047dbe395e639ddcb0e5bdbcc8d/icons/128x128/com.voxdsp.TuxVsDragon.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": "1712052553", - "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1717800393, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1704220352, - "trending": 6.582683357822802, - "installs_last_month": 184, + "trending": 5.39936576547422, + "installs_last_month": 190, "isMobileFriendly": false }, { @@ -26675,8 +26601,8 @@ "aarch64" ], "added_at": 1664953173, - "trending": 2.259611051439154, - "installs_last_month": 181, + "trending": 6.151654370437504, + "installs_last_month": 187, "isMobileFriendly": false }, { @@ -26848,58 +26774,22 @@ "aarch64" ], "added_at": 1613427015, - "trending": 7.575238231234195, - "installs_last_month": 172, + "trending": 10.732999216040769, + "installs_last_month": 186, "isMobileFriendly": false }, { - "name": "Candy Wrapper", + "name": "Tux VS Dragon", "keywords": null, - "summary": "Screen-wrapping arcade action", - "description": "Play your way through 20 levels of this arcade screen-wrapping action game inspired by Bubble Bobble!\n Controls: Arrows + Spacebar / WASD / IJKL\n Candy Wrapper was originally made within 24 hours for the 100 Lines of Code GameMaker Jam.\n ", - "id": "net_hhoney_candy", + "summary": "Slay the Red Dragon Tux!", + "description": "You have to defeat the dragon. It takes 24 snowball hits to defeat the dragon. If Tux gets hit just once you have to start all over again! Snowballs will randomly spawn in one of the four grassy patches, Tux can only carry one at a time and cant throw a snowball unless he is standing still. Good luck!\n \n W,A,S,D / Arrow Keys = Move\n Space Bar = Throw Snowball\n C = Change camera view\n \n ", + "id": "com_voxdsp_TuxVsDragon", "type": "desktop-application", "translations": {}, - "project_license": "Unlicense", + "project_license": "GPL-2.0-only", "is_free_license": true, - "app_id": "net.hhoney.candy", - "icon": "https://dl.flathub.org/media/net/hhoney/candy/e80d64aeda52c50c878290845379b5ff/icons/128x128/net.hhoney.candy.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": "1739990568", - "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1740372286, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1737186441, - "trending": 14.907315193587298, - "installs_last_month": 161, - "isMobileFriendly": false - }, - { - "name": "TuxScape2", - "keywords": null, - "summary": "SpaceTux adventure", - "description": "Explore Space, collect all 20 emoji's to reveal 20 cool characters and try flying the other 68 space ships that are randomly dotted around.\n \n Mouse Scroll to Zoom In and Out.\n Mouse Move to Look Around.\n Arrow Keys or WASD to Move Around.\n Space and Shift to Ascend and Descend in altitude.\n Hold the right mouse button pressed and move around the mouse for the \"free look\" camera.\n 'E' to Steal the Nearby Ship.\n 'C' to Change FOV between 30 and 60.\n \n ", - "id": "com_voxdsp_TuxScape2", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT", - "is_free_license": true, - "app_id": "com.voxdsp.TuxScape2", - "icon": "https://dl.flathub.org/media/com/voxdsp/TuxScape2/5269efc3cf6fd0ddb585261443bb96b8/icons/128x128/com.voxdsp.TuxScape2.png", + "app_id": "com.voxdsp.TuxVsDragon", + "icon": "https://dl.flathub.org/media/com/voxdsp/TuxVsDragon/efb4d047dbe395e639ddcb0e5bdbcc8d/icons/128x128/com.voxdsp.TuxVsDragon.png", "main_categories": "game", "sub_categories": [ "ArcadeGame", @@ -26913,16 +26803,53 @@ "verification_login_provider": null, "verification_login_is_organization": "false", "verification_website": "voxdsp.com", - "verification_timestamp": "1718974606", + "verification_timestamp": "1712052553", "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1719153847, + "updated_at": 1717800393, "arches": [ "x86_64", "aarch64" ], - "added_at": 1718955030, - "trending": 6.020582208427875, - "installs_last_month": 156, + "added_at": 1704220352, + "trending": 2.679113173449788, + "installs_last_month": 184, + "isMobileFriendly": false + }, + { + "name": "PAC-GAL", + "keywords": null, + "summary": "Feminized PAC-MAN remake", + "description": "Turn based PAC-MAN, girl style!\n \n W,A,S,D / Arrow Keys = Move\n \n Dedicated to Tōru Iwatani.\n ", + "id": "com_voxdsp_PacGal", + "type": "desktop-application", + "translations": {}, + "project_license": "MIT", + "is_free_license": true, + "app_id": "com.voxdsp.PacGal", + "icon": "https://dl.flathub.org/media/com/voxdsp/PacGal/d86c1821e1baab66f5fea4855d726d61/icons/128x128/com.voxdsp.PacGal.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": "1717010472", + "runtime": "org.freedesktop.Platform/x86_64/23.08", + "updated_at": 1717804954, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1716967191, + "trending": 2.5196114715006432, + "installs_last_month": 181, "isMobileFriendly": false }, { @@ -27071,8 +26998,82 @@ "aarch64" ], "added_at": 1535036543, - "trending": 1.1718485773924483, - "installs_last_month": 154, + "trending": 0.20525710405459072, + "installs_last_month": 173, + "isMobileFriendly": false + }, + { + "name": "Candy Wrapper", + "keywords": null, + "summary": "Screen-wrapping arcade action", + "description": "Play your way through 20 levels of this arcade screen-wrapping action game inspired by Bubble Bobble!\n Controls: Arrows + Spacebar / WASD / IJKL\n Candy Wrapper was originally made within 24 hours for the 100 Lines of Code GameMaker Jam.\n ", + "id": "net_hhoney_candy", + "type": "desktop-application", + "translations": {}, + "project_license": "Unlicense", + "is_free_license": true, + "app_id": "net.hhoney.candy", + "icon": "https://dl.flathub.org/media/net/hhoney/candy/e80d64aeda52c50c878290845379b5ff/icons/128x128/net.hhoney.candy.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": "1739990568", + "runtime": "org.freedesktop.Platform/x86_64/24.08", + "updated_at": 1740372286, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1737186441, + "trending": 13.82667192540682, + "installs_last_month": 169, + "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.603595749295367, + "installs_last_month": 166, "isMobileFriendly": false }, { @@ -27109,8 +27110,8 @@ "x86_64" ], "added_at": 1716532892, - "trending": 11.75141685729706, - "installs_last_month": 150, + "trending": 10.930263933001935, + "installs_last_month": 154, "isMobileFriendly": false }, { @@ -27149,46 +27150,45 @@ "aarch64" ], "added_at": 1671698445, - "trending": 4.672636217632946, - "installs_last_month": 149, + "trending": 0.34729579196574367, + "installs_last_month": 153, "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", + "name": "TuxScape2", + "keywords": null, + "summary": "SpaceTux adventure", + "description": "Explore Space, collect all 20 emoji's to reveal 20 cool characters and try flying the other 68 space ships that are randomly dotted around.\n \n Mouse Scroll to Zoom In and Out.\n Mouse Move to Look Around.\n Arrow Keys or WASD to Move Around.\n Space and Shift to Ascend and Descend in altitude.\n Hold the right mouse button pressed and move around the mouse for the \"free look\" camera.\n 'E' to Steal the Nearby Ship.\n 'C' to Change FOV between 30 and 60.\n \n ", + "id": "com_voxdsp_TuxScape2", "type": "desktop-application", "translations": {}, - "project_license": "LGPL-2.1-only", + "project_license": "MIT", "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", + "app_id": "com.voxdsp.TuxScape2", + "icon": "https://dl.flathub.org/media/com/voxdsp/TuxScape2/5269efc3cf6fd0ddb585261443bb96b8/icons/128x128/com.voxdsp.TuxScape2.png", "main_categories": "game", "sub_categories": [ - "ArcadeGame" + "ArcadeGame", + "KidsGame", + "Graphics" ], - "developer_name": "Michael Bertocchi", + "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": "dupot.org", - "verification_timestamp": "1699192773", + "verification_website": "voxdsp.com", + "verification_timestamp": "1718974606", "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1736638868, + "updated_at": 1719153847, "arches": [ - "x86_64" + "x86_64", + "aarch64" ], - "added_at": 1696448257, - "trending": 11.258241904779926, - "installs_last_month": 149, + "added_at": 1718955030, + "trending": 1.4781334402643922, + "installs_last_month": 152, "isMobileFriendly": false }, { @@ -27224,8 +27224,187 @@ "aarch64" ], "added_at": 1703234640, - "trending": 6.7601779318953845, - "installs_last_month": 144, + "trending": 8.716276319384109, + "installs_last_month": 148, + "isMobileFriendly": false + }, + { + "name": "Kollision", + "keywords": null, + "summary": "Casual ball game", + "description": "\n Kollision is a casual game where you need to throw your ball and avoid the\n others balls on the table as long as possible.\n \n ", + "id": "org_kde_kollision", + "type": "desktop-application", + "translations": { + "ar": { + "description": "التصادم هي لعبة عرضية حيث تحتاج إلى رمي الكرة وتجنب الكرات الأخرى على الطاولة لأطول فترة ممكنة.\n ", + "name": "التصادم", + "summary": "لعبة كرة عرضية" + }, + "ca": { + "description": "El Kollision és un joc informal a on cal llançar la pilota i evitar les altres pilotes de la taula durant tant temps com sigui possible.\n ", + "name": "Kollision", + "summary": "Joc de pilota informal" + }, + "da": { + "description": "Kollision er et afslappet boldspil, hvor du skal kaste din bold og undgå de andres bolde på bordet så længe som muligt.\n ", + "name": "Kollision", + "summary": "Afslappet boldspil" + }, + "de": { + "description": "Kollision ist ein Spiel, in dem Sie mit Ihrem Ball allen anderen Bällen auf dem Spielfeld solange wie möglich ausweichen müssen.\n ", + "name": "Kollision", + "summary": "Ein einfaches Ausweich-Ballspiel" + }, + "el": { + "description": "Το Kollision είναι ένα συνηθισμένο παιχνίδι όπου ρίχνεις τη μπάλα σου και αποφεύγεις τις άλλες μπάλες στον πίνακα όσο το δυνατόν περισσότερο.\n ", + "name": "Kollision", + "summary": "Συνηθισμένο παιχνίδι με μπάλες" + }, + "en-GB": { + "description": "Kollision is a casual game where you need to throw your ball and avoid the others balls on the table as long as possible.\n ", + "name": "Kollision", + "summary": "Casual ball game" + }, + "eo": { + "description": "Kollision estas senĝena ludo, kie vi devas ĵeti vian pilkon kaj eviti la aliajn pilkojn sur la tablo kiel eble plej longe.\n ", + "name": "Kollision", + "summary": "Neformala pilkoludo" + }, + "es": { + "description": "Kollision es un juego de bolas informal en el que debes lanzar una bola y evitar el resto de bolas del tablero tanto tiempo como puedas.\n ", + "name": "Kollision", + "summary": "Juego de bolas informal" + }, + "et": { + "description": "Kollision on ajaviitemäng, kus pead liigutama enda palli ja vältima võimalikult kaua teisi mängulaual liikuvaid palle.\n ", + "name": "Kollision", + "summary": "Ajaviite-pallimäng" + }, + "fi": { + "description": "Kollision on rento peli, jossa heität palloa ja yrität vältellä toisten palloja laudalla niin pitkään kuin mahdollista.\n ", + "name": "Kollision", + "summary": "Rento pallopeli" + }, + "fr": { + "description": "Kollision est un jeu de balle simple dans lequel vous devez lancer votre balle sur la table et éviter les balles des autres joueurs aussi longtemps que possible.\n ", + "name": "Kollision", + "summary": "Jeu de balle" + }, + "he": { + "description": "Kollision הוא משחק פשוט בו צריך לזרוק את הכדור שלך ולהימנע מהכדורים האחרים על השולחן עד כמה שניתן.\n ", + "name": "Kollision", + "summary": "משחק כדור פשוט" + }, + "hu": { + "description": "A Kollision egy alkalmi játék, ahol a lehető el kell dobnia a golyót, és el kell kerülnie a többi golyót az asztalon a lehető legtovább.\n ", + "name": "Kollision", + "summary": "Laza golyójáték" + }, + "ia": { + "description": "Kollision es un joco de ballon casual ubi tu necessita jectar tu ballon e eluder altere ballones in le tabula le plus longe que es possibile. \n ", + "name": "Kollision", + "summary": "Joco de ballon casual" + }, + "id": { + "description": "Kollision adalah permainan kasual di mana kamu harus melempar bola dan menghindari lainnya yang mengamuk di atas meja selama mungkin.\n ", + "name": "Kollision", + "summary": "Permainan bola kasual" + }, + "it": { + "description": "Kollision è un gioco scacciapensieri in cui devi lanciare la tua palla ed evitare le altre sul tavolo il più a lungo possibile.\n ", + "name": "Kollision", + "summary": "Gioco scacciapensieri della palla" + }, + "ko": { + "description": "Kollision은 내 공을 던지고 테이블에 있는 다른 공을 최대한 오래 피하는 게임입니다.\n ", + "name": "Kollision", + "summary": "캐주얼 공 게임" + }, + "nl": { + "description": "Kollision is een spel ter verstrooiing waarin u uw bal moet gooien en de andere ballen op de tafel zo lang mogelijk moet vermijden.\n ", + "name": "Kollision", + "summary": "Balspel ter verstrooiing" + }, + "pl": { + "description": "Kollision jest zwyczajną grą, w której musisz rzucić swoją piłkę na stół i unikać piłek innych tak długo jak to możliwe.\n ", + "name": "Kolizja", + "summary": "Zwyczajna gra w piłkę" + }, + "pt": { + "description": "O Kollision é jogo de causa-efeito, onde terá de jogar a bola e evitar as outras bolas na mesa, durante o máximo de tempo possível.\n ", + "name": "Kollision", + "summary": "Jogo de bolas arbitrárias" + }, + "pt-BR": { + "description": "Kollision é um jogo ocasional, onde deve-se jogar a bola e evitar as outras bolas na mesa pelo máximo de tempo possível.\n ", + "name": "Kollision", + "summary": "Jogo de bolas ocasional" + }, + "ro": { + "description": "Koliziune e un joc de ocazie în care trebuie să vă aruncați mingea și să evitați mingile celorlalți de pe tablă cât mai mult timp.\n ", + "name": "Koliziune", + "summary": "Joc cu mingi de ocazie" + }, + "ru": { + "description": "Kollision — казуальная игра, в которой нужно бросать шарик и как можно дольше уклоняться от столкновения с другими шариками.\n ", + "name": "Kollision", + "summary": "Казуальная игра с шариками" + }, + "sv": { + "description": "Kollision är ett vardagsspel där man ska kasta en boll och undvika andras bollar på spelbordet så länge som möjligt.\n ", + "name": "Kollision", + "summary": "Vardagligt bollspel" + }, + "tr": { + "description": "Kolizyon, topu fırlatmayı ve masaüstünde olabildiğince diğer toplardan kaçmayı hedef alan sıradan bir top oyunudur.\n ", + "name": "Kolizyon", + "summary": "Sıradan bir top oyunu" + }, + "uk": { + "description": "Kollision — казуальна гра, у якій ви кидаєте кульку так, щоб вона якомога довше не стикалася з іншими кульками на полі.\n ", + "name": "Kollision", + "summary": "Казуальна гра з кульками" + }, + "zh-Hans": { + "description": "Kollision 是一个休闲游戏,扔出球的同时并尽量躲避其他在桌子上的球。\n ", + "name": "Kollision", + "summary": "休闲球游戏" + }, + "zh-Hant": { + "description": "Kollision 是一套簡單的休閒遊戲,您要丟出球並盡量避免碰到桌上的其他球。\n ", + "name": "Kollision", + "summary": "丟球遊戲" + }, + "cs": { + "name": "Kollision" + } + }, + "project_license": "GPL-2.0+", + "is_free_license": true, + "app_id": "org.kde.kollision", + "icon": "https://dl.flathub.org/media/org/kde/kollision.desktop/45544e01fedf939ba9017732e1f0b420/icons/128x128/org.kde.kollision.desktop.png", + "main_categories": "game", + "sub_categories": [ + "ArcadeGame" + ], + "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": "1681472102", + "runtime": "org.kde.Platform/x86_64/6.8", + "updated_at": 1741366716, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1653888944, + "trending": 7.221390129832143, + "installs_last_month": 143, "isMobileFriendly": false }, { @@ -27460,186 +27639,44 @@ ], "added_at": 1569584029, "trending": 0.015069201714804636, - "installs_last_month": 142, + "installs_last_month": 140, "isMobileFriendly": false }, { - "name": "Kollision", + "name": "CubeShooter", "keywords": null, - "summary": "Casual ball game", - "description": "\n Kollision is a casual game where you need to throw your ball and avoid the\n others balls on the table as long as possible.\n \n ", - "id": "org_kde_kollision", + "summary": "3D Arcade sTyle shoOter", + "description": "Move around your mouse or use your keyboard, click to toggle between mouse and keyboard control.\n When not in mouse mode use the keyboard arrow keys to move and spacebar to shoot. Press 'R' to reset the game.\n ", + "id": "com_voxdsp_CubeShooter", "type": "desktop-application", - "translations": { - "ar": { - "description": "التصادم هي لعبة عرضية حيث تحتاج إلى رمي الكرة وتجنب الكرات الأخرى على الطاولة لأطول فترة ممكنة.\n ", - "name": "التصادم", - "summary": "لعبة كرة عرضية" - }, - "ca": { - "description": "El Kollision és un joc informal a on cal llançar la pilota i evitar les altres pilotes de la taula durant tant temps com sigui possible.\n ", - "name": "Kollision", - "summary": "Joc de pilota informal" - }, - "da": { - "description": "Kollision er et afslappet boldspil, hvor du skal kaste din bold og undgå de andres bolde på bordet så længe som muligt.\n ", - "name": "Kollision", - "summary": "Afslappet boldspil" - }, - "de": { - "description": "Kollision ist ein Spiel, in dem Sie mit Ihrem Ball allen anderen Bällen auf dem Spielfeld solange wie möglich ausweichen müssen.\n ", - "name": "Kollision", - "summary": "Ein einfaches Ausweich-Ballspiel" - }, - "el": { - "description": "Το Kollision είναι ένα συνηθισμένο παιχνίδι όπου ρίχνεις τη μπάλα σου και αποφεύγεις τις άλλες μπάλες στον πίνακα όσο το δυνατόν περισσότερο.\n ", - "name": "Kollision", - "summary": "Συνηθισμένο παιχνίδι με μπάλες" - }, - "en-GB": { - "description": "Kollision is a casual game where you need to throw your ball and avoid the others balls on the table as long as possible.\n ", - "name": "Kollision", - "summary": "Casual ball game" - }, - "eo": { - "description": "Kollision estas senĝena ludo, kie vi devas ĵeti vian pilkon kaj eviti la aliajn pilkojn sur la tablo kiel eble plej longe.\n ", - "name": "Kollision", - "summary": "Neformala pilkoludo" - }, - "es": { - "description": "Kollision es un juego de bolas informal en el que debes lanzar una bola y evitar el resto de bolas del tablero tanto tiempo como puedas.\n ", - "name": "Kollision", - "summary": "Juego de bolas informal" - }, - "et": { - "description": "Kollision on ajaviitemäng, kus pead liigutama enda palli ja vältima võimalikult kaua teisi mängulaual liikuvaid palle.\n ", - "name": "Kollision", - "summary": "Ajaviite-pallimäng" - }, - "fi": { - "description": "Kollision on rento peli, jossa heität palloa ja yrität vältellä toisten palloja laudalla niin pitkään kuin mahdollista.\n ", - "name": "Kollision", - "summary": "Rento pallopeli" - }, - "fr": { - "description": "Kollision est un jeu de balle simple dans lequel vous devez lancer votre balle sur la table et éviter les balles des autres joueurs aussi longtemps que possible.\n ", - "name": "Kollision", - "summary": "Jeu de balle" - }, - "he": { - "description": "Kollision הוא משחק פשוט בו צריך לזרוק את הכדור שלך ולהימנע מהכדורים האחרים על השולחן עד כמה שניתן.\n ", - "name": "Kollision", - "summary": "משחק כדור פשוט" - }, - "hu": { - "description": "A Kollision egy alkalmi játék, ahol a lehető el kell dobnia a golyót, és el kell kerülnie a többi golyót az asztalon a lehető legtovább.\n ", - "name": "Kollision", - "summary": "Laza golyójáték" - }, - "ia": { - "description": "Kollision es un joco de ballon casual ubi tu necessita jectar tu ballon e eluder altere ballones in le tabula le plus longe que es possibile. \n ", - "name": "Kollision", - "summary": "Joco de ballon casual" - }, - "id": { - "description": "Kollision adalah permainan kasual di mana kamu harus melempar bola dan menghindari lainnya yang mengamuk di atas meja selama mungkin.\n ", - "name": "Kollision", - "summary": "Permainan bola kasual" - }, - "it": { - "description": "Kollision è un gioco scacciapensieri in cui devi lanciare la tua palla ed evitare le altre sul tavolo il più a lungo possibile.\n ", - "name": "Kollision", - "summary": "Gioco scacciapensieri della palla" - }, - "ko": { - "description": "Kollision은 내 공을 던지고 테이블에 있는 다른 공을 최대한 오래 피하는 게임입니다.\n ", - "name": "Kollision", - "summary": "캐주얼 공 게임" - }, - "nl": { - "description": "Kollision is een spel ter verstrooiing waarin u uw bal moet gooien en de andere ballen op de tafel zo lang mogelijk moet vermijden.\n ", - "name": "Kollision", - "summary": "Balspel ter verstrooiing" - }, - "pl": { - "description": "Kollision jest zwyczajną grą, w której musisz rzucić swoją piłkę na stół i unikać piłek innych tak długo jak to możliwe.\n ", - "name": "Kolizja", - "summary": "Zwyczajna gra w piłkę" - }, - "pt": { - "description": "O Kollision é jogo de causa-efeito, onde terá de jogar a bola e evitar as outras bolas na mesa, durante o máximo de tempo possível.\n ", - "name": "Kollision", - "summary": "Jogo de bolas arbitrárias" - }, - "pt-BR": { - "description": "Kollision é um jogo ocasional, onde deve-se jogar a bola e evitar as outras bolas na mesa pelo máximo de tempo possível.\n ", - "name": "Kollision", - "summary": "Jogo de bolas ocasional" - }, - "ro": { - "description": "Koliziune e un joc de ocazie în care trebuie să vă aruncați mingea și să evitați mingile celorlalți de pe tablă cât mai mult timp.\n ", - "name": "Koliziune", - "summary": "Joc cu mingi de ocazie" - }, - "ru": { - "description": "Kollision — казуальная игра, в которой нужно бросать шарик и как можно дольше уклоняться от столкновения с другими шариками.\n ", - "name": "Kollision", - "summary": "Казуальная игра с шариками" - }, - "sv": { - "description": "Kollision är ett vardagsspel där man ska kasta en boll och undvika andras bollar på spelbordet så länge som möjligt.\n ", - "name": "Kollision", - "summary": "Vardagligt bollspel" - }, - "tr": { - "description": "Kolizyon, topu fırlatmayı ve masaüstünde olabildiğince diğer toplardan kaçmayı hedef alan sıradan bir top oyunudur.\n ", - "name": "Kolizyon", - "summary": "Sıradan bir top oyunu" - }, - "uk": { - "description": "Kollision — казуальна гра, у якій ви кидаєте кульку так, щоб вона якомога довше не стикалася з іншими кульками на полі.\n ", - "name": "Kollision", - "summary": "Казуальна гра з кульками" - }, - "zh-Hans": { - "description": "Kollision 是一个休闲游戏,扔出球的同时并尽量躲避其他在桌子上的球。\n ", - "name": "Kollision", - "summary": "休闲球游戏" - }, - "zh-Hant": { - "description": "Kollision 是一套簡單的休閒遊戲,您要丟出球並盡量避免碰到桌上的其他球。\n ", - "name": "Kollision", - "summary": "丟球遊戲" - }, - "cs": { - "name": "Kollision" - } - }, - "project_license": "GPL-2.0+", + "translations": {}, + "project_license": "MIT", "is_free_license": true, - "app_id": "org.kde.kollision", - "icon": "https://dl.flathub.org/media/org/kde/kollision.desktop/45544e01fedf939ba9017732e1f0b420/icons/128x128/org.kde.kollision.desktop.png", + "app_id": "com.voxdsp.CubeShooter", + "icon": "https://dl.flathub.org/media/com/voxdsp/CubeShooter/2d86e99d91baf03b8054a9271da9048e/icons/128x128/com.voxdsp.CubeShooter.png", "main_categories": "game", "sub_categories": [ - "ArcadeGame" + "ArcadeGame", + "KidsGame", + "Graphics" ], - "developer_name": "KDE", + "developer_name": "James William Fletcher", "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": "1681472102", - "runtime": "org.kde.Platform/x86_64/6.8", - "updated_at": 1741366716, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "voxdsp.com", + "verification_timestamp": "1712052282", + "runtime": "org.freedesktop.Platform/x86_64/23.08", + "updated_at": 1717132594, "arches": [ "x86_64", "aarch64" ], - "added_at": 1653888944, - "trending": 7.600260252435293, - "installs_last_month": 135, + "added_at": 1699518669, + "trending": 4.094157435276392, + "installs_last_month": 125, "isMobileFriendly": false }, { @@ -27682,8 +27719,43 @@ "aarch64" ], "added_at": 1494975820, - "trending": 10.676525596834642, - "installs_last_month": 124, + "trending": 10.324533935028107, + "installs_last_month": 123, + "isMobileFriendly": false + }, + { + "name": "Warmux", + "keywords": null, + "summary": "A 2D game where funny characters launch funny weapons", + "description": "WarMUX is a free and open-source turn-based game and can be played online in public or private mode.Players can play together each one in the commande of a team in a senario that puts free software mascots in a battle using dynamite, grenades, baseball bats, and bazookas.", + "id": "org_gna_Warmux", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0+", + "is_free_license": true, + "app_id": "org.gna.Warmux", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.gna.Warmux.png", + "main_categories": "game", + "sub_categories": [ + "ArcadeGame" + ], + "developer_name": "Lawrence Azzoug Moy & the Wormux 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/23.08", + "updated_at": 1695643973, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1496385369, + "trending": 0.7626541815165632, + "installs_last_month": 117, "isMobileFriendly": false }, { @@ -27727,117 +27799,8 @@ "aarch64" ], "added_at": 1705654905, - "trending": 8.45545445949073, - "installs_last_month": 116, - "isMobileFriendly": false - }, - { - "name": "CubeShooter", - "keywords": null, - "summary": "3D Arcade sTyle shoOter", - "description": "Move around your mouse or use your keyboard, click to toggle between mouse and keyboard control.\n When not in mouse mode use the keyboard arrow keys to move and spacebar to shoot. Press 'R' to reset the game.\n ", - "id": "com_voxdsp_CubeShooter", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT", - "is_free_license": true, - "app_id": "com.voxdsp.CubeShooter", - "icon": "https://dl.flathub.org/media/com/voxdsp/CubeShooter/2d86e99d91baf03b8054a9271da9048e/icons/128x128/com.voxdsp.CubeShooter.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": "1712052282", - "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1717132594, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1699518669, - "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 - }, - { - "name": "Snowling", - "keywords": null, - "summary": "Bowling game of luck", - "description": "It's like a fruit machine, random chance, you left click or press the \"any key\" and it bowls a random bowl - a game of chance/luck.\n A web version is available at mrbid.github.io/snowling/\n ", - "id": "com_voxdsp_Snowling", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0-only", - "is_free_license": true, - "app_id": "com.voxdsp.Snowling", - "icon": "https://dl.flathub.org/media/com/voxdsp/Snowling/d570c965cb3c059fe51380d267e7a391/icons/128x128/com.voxdsp.Snowling.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": "1712052537", - "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1712163500, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1700215925, - "trending": 2.842037755026158, - "installs_last_month": 106, + "trending": 7.502836445429237, + "installs_last_month": 117, "isMobileFriendly": false }, { @@ -27884,8 +27847,80 @@ "aarch64" ], "added_at": 1683100065, - "trending": 1.3727781606445455, - "installs_last_month": 104, + "trending": -0.022811088457703077, + "installs_last_month": 115, + "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": 111, + "isMobileFriendly": false + }, + { + "name": "Snowling", + "keywords": null, + "summary": "Bowling game of luck", + "description": "It's like a fruit machine, random chance, you left click or press the \"any key\" and it bowls a random bowl - a game of chance/luck.\n A web version is available at mrbid.github.io/snowling/\n ", + "id": "com_voxdsp_Snowling", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0-only", + "is_free_license": true, + "app_id": "com.voxdsp.Snowling", + "icon": "https://dl.flathub.org/media/com/voxdsp/Snowling/d570c965cb3c059fe51380d267e7a391/icons/128x128/com.voxdsp.Snowling.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": "1712052537", + "runtime": "org.freedesktop.Platform/x86_64/23.08", + "updated_at": 1712163500, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1700215925, + "trending": 1.113834704756448, + "installs_last_month": 106, "isMobileFriendly": false }, { @@ -27928,78 +27963,8 @@ "aarch64" ], "added_at": 1721804367, - "trending": 11.85631576417671, - "installs_last_month": 102, - "isMobileFriendly": false - }, - { - "name": "Warmux", - "keywords": null, - "summary": "A 2D game where funny characters launch funny weapons", - "description": "WarMUX is a free and open-source turn-based game and can be played online in public or private mode.Players can play together each one in the commande of a team in a senario that puts free software mascots in a battle using dynamite, grenades, baseball bats, and bazookas.", - "id": "org_gna_Warmux", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0+", - "is_free_license": true, - "app_id": "org.gna.Warmux", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.gna.Warmux.png", - "main_categories": "game", - "sub_categories": [ - "ArcadeGame" - ], - "developer_name": "Lawrence Azzoug Moy & the Wormux 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/23.08", - "updated_at": 1695643973, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1496385369, - "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, + "trending": 10.557093724073322, + "installs_last_month": 106, "isMobileFriendly": false }, { @@ -28033,8 +27998,8 @@ "aarch64" ], "added_at": 1662709276, - "trending": 13.62288905376544, - "installs_last_month": 99, + "trending": 11.956577612457275, + "installs_last_month": 103, "isMobileFriendly": false }, { @@ -28206,8 +28171,43 @@ "aarch64" ], "added_at": 1653889025, - "trending": 8.91249282447284, - "installs_last_month": 97, + "trending": 8.592964432041343, + "installs_last_month": 102, + "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.82041872893886, + "installs_last_month": 98, "isMobileFriendly": false }, { @@ -28245,8 +28245,153 @@ "aarch64" ], "added_at": 1653374853, - "trending": 4.930941355153968, - "installs_last_month": 91, + "trending": 0.4806042204918737, + "installs_last_month": 89, + "isMobileFriendly": false + }, + { + "name": "irrlamb", + "keywords": null, + "summary": "3D physics game in which you control a blue ball of energy in an attempt to touch all glowing orbs", + "description": "Find all the orbs in this challenging 3D physics game, using either mouse/keyboard or gamepad.\n 35 levels, including 15 tutorials, 7 \"campaign\" levels, 4 skateparks, 7 challenges, and 2 secrets.\n Keep track of your fastest times and save replays.\n ", + "id": "io_gitlab_jazztickets_irrlamb", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0-only", + "is_free_license": true, + "app_id": "io.gitlab.jazztickets.irrlamb", + "icon": "https://dl.flathub.org/media/io/gitlab/jazztickets.irrlamb/e6534d577f428cb9d6098639136a8c6f/icons/128x128/io.gitlab.jazztickets.irrlamb.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": "1686063871", + "runtime": "org.freedesktop.Platform/x86_64/24.08", + "updated_at": 1734386142, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1665471742, + "trending": 1.2395311203637147, + "installs_last_month": 81, + "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.9925082803534797, + "installs_last_month": 81, + "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": 9.27118143240832, + "installs_last_month": 78, + "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": -0.2322452659068195, + "installs_last_month": 77, "isMobileFriendly": false }, { @@ -28280,8 +28425,45 @@ "aarch64" ], "added_at": 1688972717, - "trending": 1.9022286751522652, - "installs_last_month": 80, + "trending": 1.5245465870085244, + "installs_last_month": 77, + "isMobileFriendly": false + }, + { + "name": "SpaceMiner", + "keywords": null, + "summary": "3D space mining game", + "description": "Try and mine every asteroid if you can or just see how long you can survive in space.\n On the back of your head are four color cubes, these are minerals collected from mining asteroids, these colors are also present in asteroids, these minerals are converted into on of the four actions: break/mine, repel, stop, and shield (when shiled is empty the two blue fuel cylinders will be consumed as shield).\n \n ESCAPE = Release mouse lock\n N = New Game\n Q = Break Asteroid\n E = Stop all nearby Asteroids\n R = Repel all nearby Asteroids\n W = Thrust Forward\n A = Turn Left\n D = Turn Right\n Shift = Thrust Down\n Space = Thrust Up\n Left Click = Break Asteroid\n Right Click = Repel Asteroid\n Mouse 4 Click = Stop all Asteroids nearby\n Scroll = Zoom in/out\n F = FPS to console\n P = Player stats to console\n \n ", + "id": "com_voxdsp_Spaceminer", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0-only", + "is_free_license": true, + "app_id": "com.voxdsp.Spaceminer", + "icon": "https://dl.flathub.org/media/com/voxdsp/Spaceminer/8320d661a79a78fc363af0a46a03a7db/icons/128x128/com.voxdsp.Spaceminer.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": "1712052542", + "runtime": "org.freedesktop.Platform/x86_64/23.08", + "updated_at": 1712163538, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1700468163, + "trending": 6.877426326119586, + "installs_last_month": 76, "isMobileFriendly": false }, { @@ -28412,81 +28594,7 @@ ], "added_at": 1529927153, "trending": 0.2513056238183642, - "installs_last_month": 79, - "isMobileFriendly": false - }, - { - "name": "SpaceMiner", - "keywords": null, - "summary": "3D space mining game", - "description": "Try and mine every asteroid if you can or just see how long you can survive in space.\n On the back of your head are four color cubes, these are minerals collected from mining asteroids, these colors are also present in asteroids, these minerals are converted into on of the four actions: break/mine, repel, stop, and shield (when shiled is empty the two blue fuel cylinders will be consumed as shield).\n \n ESCAPE = Release mouse lock\n N = New Game\n Q = Break Asteroid\n E = Stop all nearby Asteroids\n R = Repel all nearby Asteroids\n W = Thrust Forward\n A = Turn Left\n D = Turn Right\n Shift = Thrust Down\n Space = Thrust Up\n Left Click = Break Asteroid\n Right Click = Repel Asteroid\n Mouse 4 Click = Stop all Asteroids nearby\n Scroll = Zoom in/out\n F = FPS to console\n P = Player stats to console\n \n ", - "id": "com_voxdsp_Spaceminer", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0-only", - "is_free_license": true, - "app_id": "com.voxdsp.Spaceminer", - "icon": "https://dl.flathub.org/media/com/voxdsp/Spaceminer/8320d661a79a78fc363af0a46a03a7db/icons/128x128/com.voxdsp.Spaceminer.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": "1712052542", - "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1712163538, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1700468163, - "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, + "installs_last_month": 75, "isMobileFriendly": false }, { @@ -28520,80 +28628,8 @@ "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 - }, - { - "name": "irrlamb", - "keywords": null, - "summary": "3D physics game in which you control a blue ball of energy in an attempt to touch all glowing orbs", - "description": "Find all the orbs in this challenging 3D physics game, using either mouse/keyboard or gamepad.\n 35 levels, including 15 tutorials, 7 \"campaign\" levels, 4 skateparks, 7 challenges, and 2 secrets.\n Keep track of your fastest times and save replays.\n ", - "id": "io_gitlab_jazztickets_irrlamb", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0-only", - "is_free_license": true, - "app_id": "io.gitlab.jazztickets.irrlamb", - "icon": "https://dl.flathub.org/media/io/gitlab/jazztickets.irrlamb/e6534d577f428cb9d6098639136a8c6f/icons/128x128/io.gitlab.jazztickets.irrlamb.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": "1686063871", - "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1734386142, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1665471742, - "trending": 3.372339831934564, - "installs_last_month": 74, + "trending": 1.562598021121366, + "installs_last_month": 72, "isMobileFriendly": false }, { @@ -28632,28 +28668,31 @@ "aarch64" ], "added_at": 1652690510, - "trending": 12.080776976116958, - "installs_last_month": 69, + "trending": 11.222729366807878, + "installs_last_month": 71, "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", + "name": "Block Attack - Rise of the Blocks", + "keywords": [ + "blocks", + "attack", + "tetris" + ], + "summary": "A fast paced match-3/blockfall game", + "description": "This a puzzle/blockfall game inspired by Nintendo’s Tetris Attack (or “Panel de Pon”) for the Super Nintendo.\n\t\t\tIt might seem like any other match-3 style game but it is generally much faster.\n\t\t\tThe game requires fast decisions compared to other puzzle games.\n\t\t\tWhile you can setup the perfect chain it is much more likely that you will construct chains while blocks are still dropping around you.\n In addition to traditional game types like endless, time trial and stage clear the game does also feature a VS-mode.\n\t\t\tThe VS mode is a dual like you rarely see in a puzzle game.\n The game can be played with keyboard, gamepad or mouse. Keyboard or gamepad are strongly recommended.\n The game allows two players to compete on the same machine.\n ", + "id": "net_blockattack_game", "type": "desktop-application", "translations": {}, - "project_license": "GPL-2.0-or-later", + "project_license": "GPL-2.0+", "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", + "app_id": "net.blockattack.game", + "icon": "https://dl.flathub.org/media/net/blockattack/game/92b41cc69dfa1bceeee4ef09c369cb6e/icons/128x128/net.blockattack.game.png", "main_categories": "game", "sub_categories": [ - "ActionGame", "ArcadeGame" ], - "developer_name": null, + "developer_name": "Poul Sander", "verification_verified": false, "verification_method": "none", "verification_login_name": null, @@ -28661,14 +28700,14 @@ "verification_login_is_organization": null, "verification_website": null, "verification_timestamp": null, - "runtime": "org.freedesktop.Platform/x86_64/21.08", - "updated_at": 1670693885, + "runtime": "org.freedesktop.Platform/x86_64/23.08", + "updated_at": 1740594477, "arches": [ "x86_64", "aarch64" ], - "added_at": 1653555234, - "trending": 1.0855619689289573, + "added_at": 1662409567, + "trending": 4.059378053242962, "installs_last_month": 69, "isMobileFriendly": false }, @@ -28724,84 +28763,8 @@ "aarch64" ], "added_at": 1653336573, - "trending": 0.26847290465567, - "installs_last_month": 63, - "isMobileFriendly": false - }, - { - "name": "Block Attack - Rise of the Blocks", - "keywords": [ - "blocks", - "attack", - "tetris" - ], - "summary": "A fast paced match-3/blockfall game", - "description": "This a puzzle/blockfall game inspired by Nintendo’s Tetris Attack (or “Panel de Pon”) for the Super Nintendo.\n\t\t\tIt might seem like any other match-3 style game but it is generally much faster.\n\t\t\tThe game requires fast decisions compared to other puzzle games.\n\t\t\tWhile you can setup the perfect chain it is much more likely that you will construct chains while blocks are still dropping around you.\n In addition to traditional game types like endless, time trial and stage clear the game does also feature a VS-mode.\n\t\t\tThe VS mode is a dual like you rarely see in a puzzle game.\n The game can be played with keyboard, gamepad or mouse. Keyboard or gamepad are strongly recommended.\n The game allows two players to compete on the same machine.\n ", - "id": "net_blockattack_game", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0+", - "is_free_license": true, - "app_id": "net.blockattack.game", - "icon": "https://dl.flathub.org/media/net/blockattack/game/92b41cc69dfa1bceeee4ef09c369cb6e/icons/128x128/net.blockattack.game.png", - "main_categories": "game", - "sub_categories": [ - "ArcadeGame" - ], - "developer_name": "Poul Sander", - "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": 1740594477, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1662409567, - "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, + "trending": 1.089428742504892, + "installs_last_month": 68, "isMobileFriendly": false }, { @@ -28835,8 +28798,8 @@ "aarch64" ], "added_at": 1683543522, - "trending": 5.933475179197854, - "installs_last_month": 52, + "trending": 9.448070058468089, + "installs_last_month": 55, "isMobileFriendly": false }, { @@ -28872,8 +28835,8 @@ "aarch64" ], "added_at": 1705488642, - "trending": 15.42339166020288, - "installs_last_month": 50, + "trending": 5.048499317396886, + "installs_last_month": 54, "isMobileFriendly": false }, { @@ -28907,43 +28870,45 @@ "aarch64" ], "added_at": 1664952513, - "trending": 3.0545801447319194, - "installs_last_month": 46, + "trending": 1.61186283989805, + "installs_last_month": 51, "isMobileFriendly": false }, { - "name": "Sky Checkers", + "name": "The Catrooms", "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", + "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": "GPL-3.0+", + "project_license": "MIT", "is_free_license": true, - "app_id": "net.zgcoder.skycheckers", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/net.zgcoder.skycheckers.png", + "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" + "ArcadeGame", + "KidsGame", + "Graphics" ], - "developer_name": null, - "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, + "verification_login_is_organization": "false", + "verification_website": "voxdsp.com", + "verification_timestamp": "1721821193", "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1694408527, + "updated_at": 1727832198, "arches": [ "x86_64", "aarch64" ], - "added_at": 1589101423, - "trending": 14.077943204436927, - "installs_last_month": 45, + "added_at": 1721804464, + "trending": 7.936472034217631, + "installs_last_month": 51, "isMobileFriendly": false }, { @@ -28979,43 +28944,8 @@ "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, + "trending": 0.5004461619840357, + "installs_last_month": 50, "isMobileFriendly": false }, { @@ -29054,8 +28984,78 @@ "aarch64" ], "added_at": 1537354820, - "trending": -0.08506307788774814, - "installs_last_month": 42, + "trending": 1.0621950710741783, + "installs_last_month": 46, + "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": 7.885087799604019, + "installs_last_month": 43, + "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": 41, "isMobileFriendly": false }, { @@ -29089,8 +29089,8 @@ "aarch64" ], "added_at": 1540374918, - "trending": 4.152717415976515, - "installs_last_month": 35, + "trending": 2.281208565840964, + "installs_last_month": 36, "isMobileFriendly": false }, { @@ -29124,7 +29124,7 @@ "aarch64" ], "added_at": 1650373306, - "trending": 0.8639425992919931, + "trending": 1.8953955664970337, "installs_last_month": 34, "isMobileFriendly": false }, @@ -29159,13 +29159,13 @@ "aarch64" ], "added_at": 1688540006, - "trending": 0.8554840416939162, - "installs_last_month": 16, + "trending": 0.9519131229268196, + "installs_last_month": 18, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 18, + "processingTimeMs": 19, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -29407,8 +29407,8 @@ "aarch64" ], "added_at": 1513117897, - "trending": 13.638168934711649, - "installs_last_month": 789, + "trending": 13.446855233460864, + "installs_last_month": 823, "isMobileFriendly": false }, { @@ -29442,8 +29442,8 @@ "aarch64" ], "added_at": 1620628026, - "trending": 12.820606618763469, - "installs_last_month": 342, + "trending": 10.332874983263824, + "installs_last_month": 365, "isMobileFriendly": false }, { @@ -29477,8 +29477,8 @@ "aarch64" ], "added_at": 1493187784, - "trending": 0.6837053790386393, - "installs_last_month": 119, + "trending": 0.5754452083944969, + "installs_last_month": 126, "isMobileFriendly": false } ], @@ -29719,8 +29719,8 @@ "aarch64" ], "added_at": 1560613434, - "trending": 14.947363137123872, - "installs_last_month": 3132, + "trending": 14.86504053976661, + "installs_last_month": 3245, "isMobileFriendly": true }, { @@ -29940,8 +29940,8 @@ "aarch64" ], "added_at": 1532336617, - "trending": 10.662014242566746, - "installs_last_month": 2318, + "trending": 10.47553238519255, + "installs_last_month": 2379, "isMobileFriendly": true }, { @@ -30116,8 +30116,8 @@ "aarch64" ], "added_at": 1663682120, - "trending": 2.0151466938273987, - "installs_last_month": 1969, + "trending": 1.7346277243833836, + "installs_last_month": 2066, "isMobileFriendly": false }, { @@ -30288,8 +30288,8 @@ "aarch64" ], "added_at": 1711955516, - "trending": 7.977129871873213, - "installs_last_month": 733, + "trending": 7.820711605382677, + "installs_last_month": 783, "isMobileFriendly": false }, { @@ -30329,8 +30329,8 @@ "aarch64" ], "added_at": 1726471409, - "trending": 14.148527063484927, - "installs_last_month": 634, + "trending": 14.089431831014872, + "installs_last_month": 662, "isMobileFriendly": true }, { @@ -30503,8 +30503,8 @@ "aarch64" ], "added_at": 1653288638, - "trending": 10.167751358508928, - "installs_last_month": 535, + "trending": 8.146132373216448, + "installs_last_month": 581, "isMobileFriendly": false }, { @@ -30543,8 +30543,8 @@ "aarch64" ], "added_at": 1673596234, - "trending": 9.478173392335188, - "installs_last_month": 503, + "trending": 4.644737475531214, + "installs_last_month": 515, "isMobileFriendly": false }, { @@ -30582,8 +30582,8 @@ "aarch64" ], "added_at": 1524771520, - "trending": 1.3896586927074757, - "installs_last_month": 441, + "trending": -0.04579754061985741, + "installs_last_month": 458, "isMobileFriendly": false }, { @@ -30744,8 +30744,8 @@ "aarch64" ], "added_at": 1691058689, - "trending": 2.0834275068425225, - "installs_last_month": 435, + "trending": 1.6800178688812235, + "installs_last_month": 441, "isMobileFriendly": false }, { @@ -30927,8 +30927,8 @@ "aarch64" ], "added_at": 1569579234, - "trending": 10.844881269544956, - "installs_last_month": 396, + "trending": 10.127133523601753, + "installs_last_month": 413, "isMobileFriendly": false }, { @@ -31100,243 +31100,8 @@ "aarch64" ], "added_at": 1535053065, - "trending": 7.8060551674179965, - "installs_last_month": 317, - "isMobileFriendly": false - }, - { - "name": "Super Tux Party", - "keywords": null, - "summary": "A party game starring FLOSS mascots", - "description": "A free/libre and open-source party game that is meant to replicate the feel of games such as Mario Party", - "id": "party_supertux_supertuxparty", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0-or-later", - "is_free_license": true, - "app_id": "party.supertux.supertuxparty", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/party.supertux.supertuxparty.png", - "main_categories": "game", - "sub_categories": [ - "BoardGame" - ], - "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": 1674420017, - "arches": [ - "x86_64" - ], - "added_at": 1588414708, - "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 - }, - { - "name": "Chess Clock", - "keywords": [ - "chess", - "game", - "clock", - "timer" - ], - "summary": "Time games of over-the-board chess", - "description": "Chess Clock is a simple application to provide time control for over-the-board\n\t chess games. Intended for mobile use, players select the time control settings\n\t desired for their game, then the black player taps their clock to start white's\n\t timer. After each player's turn, they tap the clock to start their opponent's,\n\t until the game is finished or one of the clocks reaches zero.\n\t \n ", - "id": "eu_fortysixandtwo_chessclock", - "type": "desktop-application", - "translations": { - "bg": { - "description": "„Шахматен часовник“ е просто приложение, което предоставя контроли на времето за шахматни игри на дъска. Предназначено е за мобилни устройства, като играчите избират желаните за тяхната игра настройки за времето, след което черният играч натиска своя часовник, за да стартира часовника на белия. След ход всеки играч натиска часовника, за да стартира часовника на противника си, докато играта приключи или някой от часовниците достигне нула.\n ", - "name": "Шахматен часовник", - "summary": "Игри на шах за време" - }, - "da": { - "description": "Skakur er et simpelt program til at styre tiden for fysiske skakspil. Skakur er beregnet på mobilt brug, og spillerne vælger den ønskede tidsstyring af deres spil, hvorefter den sorte spiller trykker på sit ur for at starte hvids minutur. Efter hver spillers tur trykker de på uret for at starte modstanderens ur, indtil spillet er slut, eller et af urene når nul.\n ", - "name": "Skakur", - "summary": "Skakur til fysiske skakspil" - }, - "de": { - "description": "Schachuhr ist eine einfache Anwendung, um Bedenkzeit für Schachspiele am Brett bereitzustellen. Ausgerichtet auf mobile Verwendung, wählen die Spieler die für ihr Spiel gewünschten Bedenkzeiteinstellungen, dann tippt Spieler schwarz auf die eigene Uhr, um die Zeitmessung von Spieler weiß zu starten. Nach jedem eigenen Zug tippen die Spieler auf die Uhr ihres Gegners, um deren Zeitmessung auszulösen, bis das Spiel beendet ist oder eine der Uhren auf null steht.\n ", - "name": "Schachuhr", - "summary": "Zeitmessung für Schach am Brett" - }, - "el": { - "description": "Το Chess Clock είναι μια απλή εφαρμογή που παρέχει έλεγχο χρόνου για παιχνίδια σκακιού πάνω στο ταμπλό.Προορίζεται για χρήση σε φορητές συσκευές. Οι παίκτες επιλέγουν τις ρυθμίσεις έλεγχου χρόνου που επιθυμούν για το παιχνίδι τους, και στη συνέχεια, ο παίκτης που παίζει με τα μαύρα πατά το χρονόμετρό του για να ξεκινήσει το χρονόμετρο του λευκού. Μετά από κάθε σειρά κινήσεων του παίκτη, αυτός πατά το χρονόμετρο για να ξεκινήσει το χρονόμετρο του αντιπάλου του, μέχρι να τελειώσει το παιχνίδι ή ένα από τα χρονόμετρα φτάσει στο μηδέν.\n ", - "name": "Χρονόμετρο Σκάκι", - "summary": "Χρονometrίστε παιχνίδια σκακιού πάνω στο ταμπλό" - }, - "en-GB": { - "description": "Chess Clock is a simple application to provide time control for over-the-board Chess games. Intended for mobile use, players select the time control settings desired for their game, then the black player taps their clock to start white's timer. After each player's turn, they tap the clock to start their opponent's, until the game is finished or one of the clocks reaches zero.\n ", - "name": "Chess Clock", - "summary": "Time games of over-the-board chess" - }, - "es": { - "description": "Reloj de ajedrez es una sencilla aplicación que ofrece control del tiempo para juegos de ajedrez sobre tablero. Pensada para usarse en móviles, los jugadores seleccionan los controles del tiempo que quieren para cada partida. El jugador de las negras pulsa el reloj para iniciar el temporizador de las blancas. Después de cada turno se pulsa el reloj para iniciar el del oponente hasta que el juego termina o el reloj llega a cero.\n ", - "name": "Reloj de ajedrez", - "summary": "Tiempo de partidas de ajedrez sobre tablero" - }, - "fa": { - "description": "ساعت شطرنج برنامهٔ ساده‌ایست که واپایش زمان را برای بازی‌های شطرنج فراهم می‌کند. با در نظر گرفتن استفاده روی تلفن همراه،‌ بازیکنان تنظیمات واپایش زمان دلخواه برای بازیشان را برگزیده و سپس بازیکن سیاه برای آغاز زمان سفید روی ساعتش می‌زند. پس از هر نوبت بازی، بازیکن برای آغاز زمان حریف روی ساعت می‌زند تا زمانی که بازی تمام شده یا یکی از ساعت‌ها به صفر برسد.\n ", - "name": "ساعت شطرنج", - "summary": "زمان‌سنجی بازی‌های شطرنج" - }, - "fi": { - "description": "Šakkikello on sovellus lautašakin pelivuorojen keston hallintaan. Se on tarkoitettu mobiilikäyttöön, ja pelaajat voivat valita haluamansa aikamäärityksen, jonka jälkeen musta pelaaja napauttaa kelloa aloittaakseen valkoisen pelaajan ajastimen. Jokaisen vuoron jälkeen pelaaja napauttaa kelloa aloittaakseen vastustajan pelivuoron, kunnes peli päättyy voittoon tai toisen pelaajan aika loppuu.\n ", - "name": "Šakkikello", - "summary": "Seuraa lautašakin vuorojen kestoa" - }, - "fr": { - "description": "Pendule d’échecs est une application simple, prévue pour un usage sur mobile, pour contrôler le temps d’une partie d’échecs en temps réel. Les joueurs sélectionnent les paramètres de contrôle du temps souhaités pour leur partie, puis le joueur noir tape sur son horloge pour démarrer le minuteur du joueur blanc. Après son tour, chaque joueur tape sur son horloge pour démarrer celle de l’adversaire, jusqu’à ce que la partie soit terminée ou que l’une des pendules atteigne zéro.\n ", - "name": "Pendule d’échecs", - "summary": "Chronométrez vos parties de jeux d’échecs en temps réel" - }, - "he": { - "description": "שעון שחמט הוא יישום פשוט לאספקת בקרת זמן על משחקי שחמט על גבי לוח. מיועד לשימוש נייד, שחקנים בוחרים את הגדרות בקרת הזמנים הנחוצות למשחק שלהם, לאחר מכן השחקן השחור נוגע בשעון שלו כדי להפעיל את המתזמן של השחקן הלבן. לאחר כל תור, על השחקן לגעת בשעות כדי להפעיל את השעון של היריב שלהם, עד שהמשחק מסתיים או שאחד מהשעונים מגיע לאפס.\n ", - "name": "שעון שחמט", - "summary": "תזמון משחקי שחמט על גבי לוח" - }, - "hi": { - "description": "Chess Clock बोर्ड-के-ऊपर शतरंज गेम के लिए समय नियंत्रण प्रदान करने वाला एक सरल एप्लिकेशन है। मोबाइल उपयोग के लिए, खिलाड़ी अपने खेल के लिए वांछित समय नियंत्रण सेटिंग्स का चयन करते हैं, फिर काला खिलाड़ी सफेद टाइमर शुरू करने के लिए अपनी घड़ी को टैप करता है। प्रत्येक खिलाड़ी की बारी के बाद, वे अपने प्रतिद्वंद्वी की बारी शुरू करने के लिए घड़ी को टैप करते हैं, जब तक कि खेल समाप्त न हो जाए या कोई एक घड़ी शून्य तक न पहुंच जाए।\n ", - "name": "Chess Clock", - "summary": "बोर्ड-के-ऊपर शतरंज के समय के खेल" - }, - "hu": { - "description": "A Sakkóra egy egyszerű alkalmazás, amely időzítést biztosít a sakkjátszmákhoz. Mobil használathoz ajánlott, a játékosok kiválasztják a játékhoz használandó időzítési beállításokat, majd a sötét játékos lenyomja a saját óráját, hogy a világos ideje ketyegjen. Minden játékos a köre után lenyomja az órát, és az ellenfél köre indul el, egészen addig, amíg a játék véget nem ér, vagy az óra el nem éri a nullát.\n ", - "name": "Sakkóra", - "summary": "Mérje a sakkjátszmák idejét" - }, - "id": { - "description": "Jam Catur adalah aplikasi sederhana untuk menyediakan kontrol waktu untuk permainan catur di atas papan. Ditujukan untuk penggunaan seluler, pemain memilih pengaturan kontrol waktu yang diinginkan untuk permainan mereka, lalu pemain hitam mengetuk jamnya untuk memulai pengatur waktu putih. Setelah giliran masing-masing pemain, mereka mengetuk jam untuk memulai lawan mereka, hingga permainan selesai atau salah satu jam mencapai nol.\n ", - "name": "Jam Catur", - "summary": "Permainan waktu catur di atas papan" - }, - "it": { - "description": "Orologio per scacchi è una semplice app che permette di controllare il tempo nelle partite di scacchi su una scacchiera. Intesa per un uso su dispositivi mobili, i giocatori possono selezionare le impostazioni di tempo desiderate per la loro partita; a quel punto il giocatore nero tocca il proprio orologio per far partire quello del bianco. Dopo ciascun turno, ciascun giocatore tocca l'orologio per far partire quello dell'avversario, finché la partita termina oppure uno dei due orologi raggiunge lo zero.\n ", - "name": "Orologio per scacchi", - "summary": "Un cronometro per partite a scacchi a tavolino" - }, - "nb": { - "description": "Sjakk er best med hastverk! Denne lille appen lar dere stille inn tidsmengden hver av dere skal ha, og teller ned for dere underveis. Når en av dere er ferdig med et trekk, er det bare å trykke for å stoppe nedtellingen din og starte motstanderens. Spill hjemme eller på farten; appen virker på både datamaskin og mobil. Blir det seier eller sjakkmatt?\n ", - "name": "Chess Clock", - "summary": "Ta tiden på sjakkpartier" - }, - "nl": { - "description": "Schaakklok is een eenvoudige toepassing voor tijdsbediening van schaakspellen, en is bedoeld voor mobiel gebruik. Spelers selecteren de gewenste tijdsbedieningsinstellingen voor hun spel, waarna de zwarte speler op de klok drukt om de timer van wit te starten. Na de beurt van elke speler, drukken ze op de klok om die van hun tegenstander te starten, totdat het spel is afgelopen of een van de klokken nul bereikt.\n ", - "name": "Schaakklok", - "summary": "Houd de bedenktijd van schaakspellen bij" - }, - "pt": { - "description": "O Relógio de Xadrez é uma aplicação simples que permite o controlo do tempo para jogos de xadrez de tabuleiro. Destinado à utilização móvel, os jogadores selecionam as definições de controlo de tempo desejadas para o seu jogo, depois o jogador de peças pretas bate o seu relógio para iniciar o temporizador do jogador de peças brancas. Após a vez de cada jogador, batem no relógio para iniciar o do adversário, até o jogo estar terminado ou até um dos relógios chegar a zero.\n ", - "name": "Relógio de Xadrez", - "summary": "Tempo de jogos de xadrez de tabuleiro" - }, - "pt-BR": { - "description": "Relógio de Xadrez é um aplicativo simples para fornecer controle de tempo para jogos de xadrez em qualquer lugar. Destinado ao uso móvel, os jogadores selecionam as configurações de controle de tempo desejadas para o jogo e, em seguida, o jogador preto toca no relógio para iniciar o cronômetro do branco. Após a vez de cada jogador, eles tocam no relógio para iniciar o do oponente, até que o jogo termine ou um dos relógios chegue a zero.\n ", - "name": "Relógio de Xadrez", - "summary": "Cronometre jogos de xadrez em qualquer lugar." - }, - "ro": { - "description": "Ceas șah este o aplicație simplă pentru a oferi controlul timpului pentru jocurile de șah peste masă. Destinat utilizării mobile, jucătorii selectează configurările de control al timpului dorite pentru jocul lor, apoi jucătorul negru atinge ceasul pentru a începe cronometrul jucătorului alb. După rândul fiecărui jucător, aceștia ating ceasul pentru a începe tura adversarului, până când jocul se termină sau unul dintre ceasuri ajunge la zero.\n ", - "name": "Ceas șah", - "summary": "Cronometrează jocuri de șah peste masă" - }, - "ru": { - "description": "Шахматные часы - это простое приложение для контроля времени в шахматных партиях за доской. Предназначено для мобильного использования, игроки выбирают настройки контроля времени, необходимые для их игры, затем игрок черными нажимает на свои часы, чтобы запустить таймер игрока белыми. После каждого хода игрок нажимает на часы, чтобы запустить таймер противника, и так до тех пор, пока игра не будет завершена или пока одни из часов не достигнут нуля.\n ", - "name": "Шахматные часы", - "summary": "Партии в шахматы на время" - }, - "sv": { - "description": "Schackklocka är ett enkelt program som tillhandahåller tidskontroller för schackspel över brädet. Det är avsett för mobil användning, spelarna väljer tidskontrollinställningarna som önskas för deras spel, sedan knackar svart spelare på sin klocka för att starta tiden för vit spelare. Efter varje spelares tur knackar de på klockan för att starta motståndarens tid, tills spelet är slut eller en av klockarna tickat ner till noll.\n ", - "name": "Schackklocka", - "summary": "Ta tid för schackspel över brädet" - }, - "tr": { - "description": "Satranç Saati, yüz yüze oynanan satranç oyunlarına zaman denetimi sağlayan basit bir uygulamadır. Mobil kullanım için tasarlanmıştır, oyuncular oyunları için istedikleri zaman denetim ayarlarını seçer, ardından siyah oyuncu beyazın zamanlayıcısını başlatmak için saate dokunur. Her oyuncunu sırası geldiğinde, rakibinin zamanlayıcısını başlatmak için saate dokunur, oyun tamamlanana dek ya da saatlerden biri sıfıra ulaşana dek sürer.\n ", - "name": "Satranç Saati", - "summary": "Zamanlı satranç oyunu saati" - }, - "uk": { - "description": "«Шаховий годинник» є простою програмою, яка надає засоби керування часом для ігор на звичайній шаховій дошці. Програму призначено для використання на мобільних пристроях. Гравці вибирають бажані для гри параметри керування часом, потім гравець чорними запускає годинник для гравця білими. Після кожного ходу гравець запускає таймер для свого суперника, аж доки гру не буде завершено або відлік за годинником завершиться нульовим значенням.\n ", - "name": "Шаховий годинник", - "summary": "Відлік часу для ігор у шахи на звичайній дошці" - }, - "zh-Hans": { - "description": "棋赛计时器是为面对面象棋游戏实战提供计时控制的简单应用程序。目标为移动应用,玩家为游戏选择想要的计时控制设置,然后黑棋玩家轻拍计时器开始白棋玩家的计时。在每个玩家回合之后,他们轻拍计时器开始其对手的计时,直到游戏结束或其中一方计时器到零。\n ", - "name": "棋赛计时器", - "summary": "面对面实战的象棋游戏计时" - } - }, - "project_license": "GPL-3.0-or-later", - "is_free_license": true, - "app_id": "eu.fortysixandtwo.chessclock", - "icon": "https://dl.flathub.org/media/eu/fortysixandtwo/chessclock/be197de73306e40b7768f31fead7d654/icons/128x128/eu.fortysixandtwo.chessclock.png", - "main_categories": "game", - "sub_categories": [ - "GNOME", - "GTK", - "BoardGame" - ], - "developer_name": "Evangelos Ribeiro Tzaras", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "fortysixandtwo.eu", - "verification_timestamp": "1729317473", - "runtime": "org.gnome.Platform/x86_64/47", - "updated_at": 1729316568, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1728978397, - "trending": 13.474769574047295, - "installs_last_month": 274, + "trending": 7.615793579126367, + "installs_last_month": 329, "isMobileFriendly": false }, { @@ -31515,8 +31280,243 @@ "aarch64" ], "added_at": 1653888962, - "trending": 10.237956492279478, - "installs_last_month": 267, + "trending": 8.588880223705447, + "installs_last_month": 296, + "isMobileFriendly": false + }, + { + "name": "Super Tux Party", + "keywords": null, + "summary": "A party game starring FLOSS mascots", + "description": "A free/libre and open-source party game that is meant to replicate the feel of games such as Mario Party", + "id": "party_supertux_supertuxparty", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0-or-later", + "is_free_license": true, + "app_id": "party.supertux.supertuxparty", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/party.supertux.supertuxparty.png", + "main_categories": "game", + "sub_categories": [ + "BoardGame" + ], + "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": 1674420017, + "arches": [ + "x86_64" + ], + "added_at": 1588414708, + "trending": 1.6675538406858097, + "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": 6.424446104148691, + "installs_last_month": 286, + "isMobileFriendly": false + }, + { + "name": "Chess Clock", + "keywords": [ + "chess", + "game", + "clock", + "timer" + ], + "summary": "Time games of over-the-board chess", + "description": "Chess Clock is a simple application to provide time control for over-the-board\n\t chess games. Intended for mobile use, players select the time control settings\n\t desired for their game, then the black player taps their clock to start white's\n\t timer. After each player's turn, they tap the clock to start their opponent's,\n\t until the game is finished or one of the clocks reaches zero.\n\t \n ", + "id": "eu_fortysixandtwo_chessclock", + "type": "desktop-application", + "translations": { + "bg": { + "description": "„Шахматен часовник“ е просто приложение, което предоставя контроли на времето за шахматни игри на дъска. Предназначено е за мобилни устройства, като играчите избират желаните за тяхната игра настройки за времето, след което черният играч натиска своя часовник, за да стартира часовника на белия. След ход всеки играч натиска часовника, за да стартира часовника на противника си, докато играта приключи или някой от часовниците достигне нула.\n ", + "name": "Шахматен часовник", + "summary": "Игри на шах за време" + }, + "da": { + "description": "Skakur er et simpelt program til at styre tiden for fysiske skakspil. Skakur er beregnet på mobilt brug, og spillerne vælger den ønskede tidsstyring af deres spil, hvorefter den sorte spiller trykker på sit ur for at starte hvids minutur. Efter hver spillers tur trykker de på uret for at starte modstanderens ur, indtil spillet er slut, eller et af urene når nul.\n ", + "name": "Skakur", + "summary": "Skakur til fysiske skakspil" + }, + "de": { + "description": "Schachuhr ist eine einfache Anwendung, um Bedenkzeit für Schachspiele am Brett bereitzustellen. Ausgerichtet auf mobile Verwendung, wählen die Spieler die für ihr Spiel gewünschten Bedenkzeiteinstellungen, dann tippt Spieler schwarz auf die eigene Uhr, um die Zeitmessung von Spieler weiß zu starten. Nach jedem eigenen Zug tippen die Spieler auf die Uhr ihres Gegners, um deren Zeitmessung auszulösen, bis das Spiel beendet ist oder eine der Uhren auf null steht.\n ", + "name": "Schachuhr", + "summary": "Zeitmessung für Schach am Brett" + }, + "el": { + "description": "Το Chess Clock είναι μια απλή εφαρμογή που παρέχει έλεγχο χρόνου για παιχνίδια σκακιού πάνω στο ταμπλό.Προορίζεται για χρήση σε φορητές συσκευές. Οι παίκτες επιλέγουν τις ρυθμίσεις έλεγχου χρόνου που επιθυμούν για το παιχνίδι τους, και στη συνέχεια, ο παίκτης που παίζει με τα μαύρα πατά το χρονόμετρό του για να ξεκινήσει το χρονόμετρο του λευκού. Μετά από κάθε σειρά κινήσεων του παίκτη, αυτός πατά το χρονόμετρο για να ξεκινήσει το χρονόμετρο του αντιπάλου του, μέχρι να τελειώσει το παιχνίδι ή ένα από τα χρονόμετρα φτάσει στο μηδέν.\n ", + "name": "Χρονόμετρο Σκάκι", + "summary": "Χρονometrίστε παιχνίδια σκακιού πάνω στο ταμπλό" + }, + "en-GB": { + "description": "Chess Clock is a simple application to provide time control for over-the-board Chess games. Intended for mobile use, players select the time control settings desired for their game, then the black player taps their clock to start white's timer. After each player's turn, they tap the clock to start their opponent's, until the game is finished or one of the clocks reaches zero.\n ", + "name": "Chess Clock", + "summary": "Time games of over-the-board chess" + }, + "es": { + "description": "Reloj de ajedrez es una sencilla aplicación que ofrece control del tiempo para juegos de ajedrez sobre tablero. Pensada para usarse en móviles, los jugadores seleccionan los controles del tiempo que quieren para cada partida. El jugador de las negras pulsa el reloj para iniciar el temporizador de las blancas. Después de cada turno se pulsa el reloj para iniciar el del oponente hasta que el juego termina o el reloj llega a cero.\n ", + "name": "Reloj de ajedrez", + "summary": "Tiempo de partidas de ajedrez sobre tablero" + }, + "fa": { + "description": "ساعت شطرنج برنامهٔ ساده‌ایست که واپایش زمان را برای بازی‌های شطرنج فراهم می‌کند. با در نظر گرفتن استفاده روی تلفن همراه،‌ بازیکنان تنظیمات واپایش زمان دلخواه برای بازیشان را برگزیده و سپس بازیکن سیاه برای آغاز زمان سفید روی ساعتش می‌زند. پس از هر نوبت بازی، بازیکن برای آغاز زمان حریف روی ساعت می‌زند تا زمانی که بازی تمام شده یا یکی از ساعت‌ها به صفر برسد.\n ", + "name": "ساعت شطرنج", + "summary": "زمان‌سنجی بازی‌های شطرنج" + }, + "fi": { + "description": "Šakkikello on sovellus lautašakin pelivuorojen keston hallintaan. Se on tarkoitettu mobiilikäyttöön, ja pelaajat voivat valita haluamansa aikamäärityksen, jonka jälkeen musta pelaaja napauttaa kelloa aloittaakseen valkoisen pelaajan ajastimen. Jokaisen vuoron jälkeen pelaaja napauttaa kelloa aloittaakseen vastustajan pelivuoron, kunnes peli päättyy voittoon tai toisen pelaajan aika loppuu.\n ", + "name": "Šakkikello", + "summary": "Seuraa lautašakin vuorojen kestoa" + }, + "fr": { + "description": "Pendule d’échecs est une application simple, prévue pour un usage sur mobile, pour contrôler le temps d’une partie d’échecs en temps réel. Les joueurs sélectionnent les paramètres de contrôle du temps souhaités pour leur partie, puis le joueur noir tape sur son horloge pour démarrer le minuteur du joueur blanc. Après son tour, chaque joueur tape sur son horloge pour démarrer celle de l’adversaire, jusqu’à ce que la partie soit terminée ou que l’une des pendules atteigne zéro.\n ", + "name": "Pendule d’échecs", + "summary": "Chronométrez vos parties de jeux d’échecs en temps réel" + }, + "he": { + "description": "שעון שחמט הוא יישום פשוט לאספקת בקרת זמן על משחקי שחמט על גבי לוח. מיועד לשימוש נייד, שחקנים בוחרים את הגדרות בקרת הזמנים הנחוצות למשחק שלהם, לאחר מכן השחקן השחור נוגע בשעון שלו כדי להפעיל את המתזמן של השחקן הלבן. לאחר כל תור, על השחקן לגעת בשעות כדי להפעיל את השעון של היריב שלהם, עד שהמשחק מסתיים או שאחד מהשעונים מגיע לאפס.\n ", + "name": "שעון שחמט", + "summary": "תזמון משחקי שחמט על גבי לוח" + }, + "hi": { + "description": "Chess Clock बोर्ड-के-ऊपर शतरंज गेम के लिए समय नियंत्रण प्रदान करने वाला एक सरल एप्लिकेशन है। मोबाइल उपयोग के लिए, खिलाड़ी अपने खेल के लिए वांछित समय नियंत्रण सेटिंग्स का चयन करते हैं, फिर काला खिलाड़ी सफेद टाइमर शुरू करने के लिए अपनी घड़ी को टैप करता है। प्रत्येक खिलाड़ी की बारी के बाद, वे अपने प्रतिद्वंद्वी की बारी शुरू करने के लिए घड़ी को टैप करते हैं, जब तक कि खेल समाप्त न हो जाए या कोई एक घड़ी शून्य तक न पहुंच जाए।\n ", + "name": "Chess Clock", + "summary": "बोर्ड-के-ऊपर शतरंज के समय के खेल" + }, + "hu": { + "description": "A Sakkóra egy egyszerű alkalmazás, amely időzítést biztosít a sakkjátszmákhoz. Mobil használathoz ajánlott, a játékosok kiválasztják a játékhoz használandó időzítési beállításokat, majd a sötét játékos lenyomja a saját óráját, hogy a világos ideje ketyegjen. Minden játékos a köre után lenyomja az órát, és az ellenfél köre indul el, egészen addig, amíg a játék véget nem ér, vagy az óra el nem éri a nullát.\n ", + "name": "Sakkóra", + "summary": "Mérje a sakkjátszmák idejét" + }, + "id": { + "description": "Jam Catur adalah aplikasi sederhana untuk menyediakan kontrol waktu untuk permainan catur di atas papan. Ditujukan untuk penggunaan seluler, pemain memilih pengaturan kontrol waktu yang diinginkan untuk permainan mereka, lalu pemain hitam mengetuk jamnya untuk memulai pengatur waktu putih. Setelah giliran masing-masing pemain, mereka mengetuk jam untuk memulai lawan mereka, hingga permainan selesai atau salah satu jam mencapai nol.\n ", + "name": "Jam Catur", + "summary": "Permainan waktu catur di atas papan" + }, + "it": { + "description": "Orologio per scacchi è una semplice app che permette di controllare il tempo nelle partite di scacchi su una scacchiera. Intesa per un uso su dispositivi mobili, i giocatori possono selezionare le impostazioni di tempo desiderate per la loro partita; a quel punto il giocatore nero tocca il proprio orologio per far partire quello del bianco. Dopo ciascun turno, ciascun giocatore tocca l'orologio per far partire quello dell'avversario, finché la partita termina oppure uno dei due orologi raggiunge lo zero.\n ", + "name": "Orologio per scacchi", + "summary": "Un cronometro per partite a scacchi a tavolino" + }, + "nb": { + "description": "Sjakk er best med hastverk! Denne lille appen lar dere stille inn tidsmengden hver av dere skal ha, og teller ned for dere underveis. Når en av dere er ferdig med et trekk, er det bare å trykke for å stoppe nedtellingen din og starte motstanderens. Spill hjemme eller på farten; appen virker på både datamaskin og mobil. Blir det seier eller sjakkmatt?\n ", + "name": "Chess Clock", + "summary": "Ta tiden på sjakkpartier" + }, + "nl": { + "description": "Schaakklok is een eenvoudige toepassing voor tijdsbediening van schaakspellen, en is bedoeld voor mobiel gebruik. Spelers selecteren de gewenste tijdsbedieningsinstellingen voor hun spel, waarna de zwarte speler op de klok drukt om de timer van wit te starten. Na de beurt van elke speler, drukken ze op de klok om die van hun tegenstander te starten, totdat het spel is afgelopen of een van de klokken nul bereikt.\n ", + "name": "Schaakklok", + "summary": "Houd de bedenktijd van schaakspellen bij" + }, + "pt": { + "description": "O Relógio de Xadrez é uma aplicação simples que permite o controlo do tempo para jogos de xadrez de tabuleiro. Destinado à utilização móvel, os jogadores selecionam as definições de controlo de tempo desejadas para o seu jogo, depois o jogador de peças pretas bate o seu relógio para iniciar o temporizador do jogador de peças brancas. Após a vez de cada jogador, batem no relógio para iniciar o do adversário, até o jogo estar terminado ou até um dos relógios chegar a zero.\n ", + "name": "Relógio de Xadrez", + "summary": "Tempo de jogos de xadrez de tabuleiro" + }, + "pt-BR": { + "description": "Relógio de Xadrez é um aplicativo simples para fornecer controle de tempo para jogos de xadrez em qualquer lugar. Destinado ao uso móvel, os jogadores selecionam as configurações de controle de tempo desejadas para o jogo e, em seguida, o jogador preto toca no relógio para iniciar o cronômetro do branco. Após a vez de cada jogador, eles tocam no relógio para iniciar o do oponente, até que o jogo termine ou um dos relógios chegue a zero.\n ", + "name": "Relógio de Xadrez", + "summary": "Cronometre jogos de xadrez em qualquer lugar." + }, + "ro": { + "description": "Ceas șah este o aplicație simplă pentru a oferi controlul timpului pentru jocurile de șah peste masă. Destinat utilizării mobile, jucătorii selectează configurările de control al timpului dorite pentru jocul lor, apoi jucătorul negru atinge ceasul pentru a începe cronometrul jucătorului alb. După rândul fiecărui jucător, aceștia ating ceasul pentru a începe tura adversarului, până când jocul se termină sau unul dintre ceasuri ajunge la zero.\n ", + "name": "Ceas șah", + "summary": "Cronometrează jocuri de șah peste masă" + }, + "ru": { + "description": "Шахматные часы - это простое приложение для контроля времени в шахматных партиях за доской. Предназначено для мобильного использования, игроки выбирают настройки контроля времени, необходимые для их игры, затем игрок черными нажимает на свои часы, чтобы запустить таймер игрока белыми. После каждого хода игрок нажимает на часы, чтобы запустить таймер противника, и так до тех пор, пока игра не будет завершена или пока одни из часов не достигнут нуля.\n ", + "name": "Шахматные часы", + "summary": "Партии в шахматы на время" + }, + "sv": { + "description": "Schackklocka är ett enkelt program som tillhandahåller tidskontroller för schackspel över brädet. Det är avsett för mobil användning, spelarna väljer tidskontrollinställningarna som önskas för deras spel, sedan knackar svart spelare på sin klocka för att starta tiden för vit spelare. Efter varje spelares tur knackar de på klockan för att starta motståndarens tid, tills spelet är slut eller en av klockarna tickat ner till noll.\n ", + "name": "Schackklocka", + "summary": "Ta tid för schackspel över brädet" + }, + "tr": { + "description": "Satranç Saati, yüz yüze oynanan satranç oyunlarına zaman denetimi sağlayan basit bir uygulamadır. Mobil kullanım için tasarlanmıştır, oyuncular oyunları için istedikleri zaman denetim ayarlarını seçer, ardından siyah oyuncu beyazın zamanlayıcısını başlatmak için saate dokunur. Her oyuncunu sırası geldiğinde, rakibinin zamanlayıcısını başlatmak için saate dokunur, oyun tamamlanana dek ya da saatlerden biri sıfıra ulaşana dek sürer.\n ", + "name": "Satranç Saati", + "summary": "Zamanlı satranç oyunu saati" + }, + "uk": { + "description": "«Шаховий годинник» є простою програмою, яка надає засоби керування часом для ігор на звичайній шаховій дошці. Програму призначено для використання на мобільних пристроях. Гравці вибирають бажані для гри параметри керування часом, потім гравець чорними запускає годинник для гравця білими. Після кожного ходу гравець запускає таймер для свого суперника, аж доки гру не буде завершено або відлік за годинником завершиться нульовим значенням.\n ", + "name": "Шаховий годинник", + "summary": "Відлік часу для ігор у шахи на звичайній дошці" + }, + "zh-Hans": { + "description": "棋赛计时器是为面对面象棋游戏实战提供计时控制的简单应用程序。目标为移动应用,玩家为游戏选择想要的计时控制设置,然后黑棋玩家轻拍计时器开始白棋玩家的计时。在每个玩家回合之后,他们轻拍计时器开始其对手的计时,直到游戏结束或其中一方计时器到零。\n ", + "name": "棋赛计时器", + "summary": "面对面实战的象棋游戏计时" + } + }, + "project_license": "GPL-3.0-or-later", + "is_free_license": true, + "app_id": "eu.fortysixandtwo.chessclock", + "icon": "https://dl.flathub.org/media/eu/fortysixandtwo/chessclock/be197de73306e40b7768f31fead7d654/icons/128x128/eu.fortysixandtwo.chessclock.png", + "main_categories": "game", + "sub_categories": [ + "GNOME", + "GTK", + "BoardGame" + ], + "developer_name": "Evangelos Ribeiro Tzaras", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "fortysixandtwo.eu", + "verification_timestamp": "1729317473", + "runtime": "org.gnome.Platform/x86_64/47", + "updated_at": 1729316568, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1728978397, + "trending": 13.95156014995823, + "installs_last_month": 279, "isMobileFriendly": false }, { @@ -31549,8 +31549,8 @@ "x86_64" ], "added_at": 1723197944, - "trending": 12.750172112353583, - "installs_last_month": 259, + "trending": 12.905812858455484, + "installs_last_month": 273, "isMobileFriendly": false }, { @@ -31733,8 +31733,8 @@ "aarch64" ], "added_at": 1611777475, - "trending": 9.861472761805189, - "installs_last_month": 234, + "trending": 9.677564380035331, + "installs_last_month": 238, "isMobileFriendly": false }, { @@ -31901,8 +31901,8 @@ "aarch64" ], "added_at": 1645738810, - "trending": 1.1744466312442865, - "installs_last_month": 186, + "trending": 1.160824405051288, + "installs_last_month": 189, "isMobileFriendly": false }, { @@ -32074,8 +32074,8 @@ "aarch64" ], "added_at": 1646828622, - "trending": 7.241667753330722, - "installs_last_month": 155, + "trending": 5.588241158356342, + "installs_last_month": 167, "isMobileFriendly": false }, { @@ -32139,8 +32139,8 @@ "aarch64" ], "added_at": 1652692328, - "trending": 13.53652857885644, - "installs_last_month": 147, + "trending": 11.497192826164058, + "installs_last_month": 145, "isMobileFriendly": true }, { @@ -32184,122 +32184,8 @@ "aarch64" ], "added_at": 1690213555, - "trending": 9.27145224489576, - "installs_last_month": 134, - "isMobileFriendly": false - }, - { - "name": "Peg-E", - "keywords": [ - "game", - "board" - ], - "summary": "Jump pegs to eliminate them", - "description": "Peg-E is a peg solitaire game in which you jump over pieces in order to remove them from the board, ultimately trying to eliminate all but one. The boards are randomly generated, with 100 levels of difficulty. The game auto-saves, and has undo-redo capability. Pieces can move horizontally, vertically, and diagonally.\n ", - "id": "org_gottcode_Peg-E", - "type": "desktop-application", - "translations": { - "de": { - "description": "Peg-E ist ein Solitär-Spiel, in dem Sie über Stücke, um sie vom Brett zu entfernen springen und schließlich versuchen, alle bis auf einen zu beseitigen. Die Platten werden nach dem Zufallsprinzip erzeugt mit 100 Schwierigkeitsstufen. Das Spiel wird automatisch speichert und hat eine zurücksetzen-Redo-Funktion. Stücke können horizontal bewegt werden aber auch vertikal und diagonal.\n ", - "name": "Peg-E", - "summary": "Sprung zu Heringen, um sie zu beseitigen" - }, - "el": { - "description": "Το Peg-E είναι ένα παιχνίδι πασιέντζας γόμφων, στο οποίο πρεπει να πηδηξετε πάνω από τα κομμάτια για να τα αφαιρέσετε από την περιοχη του παιχνιδιου, και να προσπαθησετε να εξαλειφθούν όλα. Οι πίνακες δημιουργούνται με τυχαίο τρόπο, με 100 επίπεδα δυσκολίας. Το παιχνίδι αποθηκευτε αυτοματα. Τα κομμάτια μπορουν να κινηθουν οριζόντια, κάθετα και διαγώνια.\n ", - "name": "Peg-E", - "summary": "Μετάβαση σε γόμφους για να εξαλειφθούν" - }, - "eo": { - "description": "Peg-E estas ludo kiel solitaire, en kiu vi devas salti sur pacojn por forigiilin. plej bone estis se vi detruus ĉiujn samtempe. Eksistas 100 de malfaciloniveloj kaj la tabuloj hazarde generitas. La ludu konservas aŭtomate kaj havas la eblecon de malfari-refari. Pacoj povas moviĝi horizontale, vertikale kaj diagonale.\n ", - "name": "Peg-E", - "summary": "Saltu sur pegojn por ilin elimini" - }, - "es": { - "description": "Peg-E es un juego tipo solitario en el que saltas sobre fichas para eliminarlas del tablero hasta que solo quede una. Los tableros se generan al azar, contando con 100 niveles de dificultad. El juego se puede autoguardar y tiene una función para deshacer-rehacer movimientos. Las fichas se pueden mover en horizontal, vertical o diagonal.\n ", - "name": "Peg-E", - "summary": "Salta sobre las fichas para eliminarlas" - }, - "fr": { - "description": "Peg-E est un jeu de solitaire dans lequel vous sautez par dessus des pions dans le but de les enlever du plateau de jeu, pour essayer au final de les éliminer tous, sauf un. Les plateaux de jeu sont générés aléatoirement, avec cent niveaux de difficulté. Le jeu se sauvegarde automatiquement, et a la compétence annuler/rétablir (undo-redo). Les pions peuvent bouger horizontalement, verticalement et en diagonale.\n ", - "name": "Peg-E", - "summary": "Sautez les pions pour les éliminer" - }, - "he": { - "description": "Peg-E הינו משחק סוליטר מחשבת בו עליך לקפוץ מעל גולות כדי להסירן מתוך הלוח, בסופו של דבר לנסות להסיר את כולן למעט אחת. הלוחות מופקים באופן אקראי, עם 100 שלבי קושי. המשחק נשמר אוטומטית, ויש לו אפשרות ביטול וחזרה על צעדים. גולות ניתנות להזזה באופן מאוזן, מאונך, ובאלכסון.\n ", - "summary": "קפוץ מעל גולות כדי לסלק אותן" - }, - "lt": { - "description": "Peg-E yra kamštelių žaidimas, kuriame peršokate per kamštelius, siekdami pašalinti iš žaidimo plokštės visus kamštelius, išskyrus vieną. Žaidimo plokštės yra atsitiktinai kuriamos, su 100 sunkumo lygių. Žaidimas automatiškai išsaugo žaidimo eigą ir turi anuliavimo ir perdarymo galimybes. Kamšteliai gali būti perkeliami horizontaliai, vertikaliai ir įstrižai.\n ", - "name": "Peg-E", - "summary": "Peršokite per kamštelius, kad juos pašalintumėte" - }, - "nl": { - "description": "Peg-E is een solitair spel waarbij je over stukken heen moet springen om ze te verwijderen net zolang totdat je nog meer 1 over hebt. De borden worden willekeurig gegenereerd met 100 niveaus van moeilijkheid. Het spel bewaard automatisch en je kunt zetten terugnemen. Stukken kunnen horizontaal, verticaal en diagonaal bewegen.\n ", - "name": "Peg-E", - "summary": "Verwijdern staafjes door er overheen te springen" - }, - "pl": { - "description": "Peg-E to gra typu solitaire, w której przeskakujesz przez części, aby usunąć je z planszy, w końcu próbujesz usunąć wszystkie, oprócz jednego. Plansze generowane są losowo, przy 100 poziomach trudności. Gra automatycznie zapisuje stan i ma opcję cofania ruchu. Części mogą poruszać się poziomo, pionowo i na ukos.\n ", - "name": "Peg-E", - "summary": "Przeskocz kołki, aby je usunąć" - }, - "pt": { - "description": "O Peg-E é um jogo do tipo solitário em que se salta sobre as peças por forma a removê-las do tabuleiro, por forma a tentar remover todas até restar apenas uma. Os tabuleiros são gerados aleatoriamente, com 100 níveis de dificuldade. O jogo grava automaticamente e tem a funcionalidade de desfazer as jogadas. As peças podem-se mover na horizontal, vertical e diagonal.\n ", - "name": "Peg-E", - "summary": "Salte com os pinos para os eliminar" - }, - "ro": { - "description": "Peg-E este un joc cu pioni în care sa sari peste piese pentru a le elimina de pe tablă, încercînd, în cele din urmă, a le elimina pe toate cu excepţia uneia. Tablele sunt generate aleator, cu 100 de niveluri de dificultate. Jocul salvează automat şi are capacitatea de a face/reface. Piese se pot deplasa orizontal, vertical şi pe diagonală.\n ", - "name": "Peg-E", - "summary": "Sari peste pioni pentru a-i eliminna" - }, - "ru": { - "description": "Peg-E – это вариант игры в пасьянс, в котором вам необходимо перепрыгивать через шашки, для того, чтобы убрать их все с доски, кроме одной. Расклады создаются случайным образом и имеют 100 уровней сложности. Состояние игры автоматически сохраняется, также присутствует возможность отмены/возврата ходов. Шашки можно перемещать по вертикали, горизонтали и диагонали.\n ", - "name": "Peg-E", - "summary": "Перепрыгивайте через шашки, чтобы убрать их" - }, - "sv": { - "description": "Peg-E är ett solitairespel där du hoppar över bitar för att ta bort dem från brädet, i slutändan för att eliminera alla utom en. Banorna genereras slumpmässigt i 100 svårighetsgrader. Spelet sparas automatiskt och har ångra-gör-om-funktioner. Bitarna kan röra sig horisontellt, vertikalt och diagonalt.\n ", - "name": "Peg-E", - "summary": "Hoppa över pinnar för att eliminera dem" - }, - "zh": { - "description": "Peg-E 是一款孔明棋游戏。一颗棋子跳过另一颗后,该棋子就会被消除,游戏的目的是最终只剩下一颗棋子。本游戏的棋盘自动生成,有100种不同难度可供选择。游戏会自动保存,并具有撤销(悔棋)、重做功能。棋子可以横向、纵向和斜向移动。\n ", - "name": "Peg-E", - "summary": "跳过棋子,消除它!" - }, - "cs": { - "name": "Peg-E" - }, - "tr": { - "name": "Peg-E" - } - }, - "project_license": "GPL-3.0+", - "is_free_license": true, - "app_id": "org.gottcode.Peg-E", - "icon": "https://dl.flathub.org/media/org/gottcode/Peg-E/341d8fb8e36778acf5044601fedfd173/icons/128x128/org.gottcode.Peg-E.png", - "main_categories": "game", - "sub_categories": [ - "BoardGame" - ], - "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": "1709812265", - "runtime": "org.kde.Platform/x86_64/6.8", - "updated_at": 1739554992, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1529734045, - "trending": 11.203635206147329, - "installs_last_month": 129, + "trending": 8.968684236525513, + "installs_last_month": 139, "isMobileFriendly": false }, { @@ -32469,8 +32355,122 @@ "aarch64" ], "added_at": 1536053954, - "trending": 9.250212153760868, - "installs_last_month": 127, + "trending": 9.439840345104042, + "installs_last_month": 132, + "isMobileFriendly": false + }, + { + "name": "Peg-E", + "keywords": [ + "game", + "board" + ], + "summary": "Jump pegs to eliminate them", + "description": "Peg-E is a peg solitaire game in which you jump over pieces in order to remove them from the board, ultimately trying to eliminate all but one. The boards are randomly generated, with 100 levels of difficulty. The game auto-saves, and has undo-redo capability. Pieces can move horizontally, vertically, and diagonally.\n ", + "id": "org_gottcode_Peg-E", + "type": "desktop-application", + "translations": { + "de": { + "description": "Peg-E ist ein Solitär-Spiel, in dem Sie über Stücke, um sie vom Brett zu entfernen springen und schließlich versuchen, alle bis auf einen zu beseitigen. Die Platten werden nach dem Zufallsprinzip erzeugt mit 100 Schwierigkeitsstufen. Das Spiel wird automatisch speichert und hat eine zurücksetzen-Redo-Funktion. Stücke können horizontal bewegt werden aber auch vertikal und diagonal.\n ", + "name": "Peg-E", + "summary": "Sprung zu Heringen, um sie zu beseitigen" + }, + "el": { + "description": "Το Peg-E είναι ένα παιχνίδι πασιέντζας γόμφων, στο οποίο πρεπει να πηδηξετε πάνω από τα κομμάτια για να τα αφαιρέσετε από την περιοχη του παιχνιδιου, και να προσπαθησετε να εξαλειφθούν όλα. Οι πίνακες δημιουργούνται με τυχαίο τρόπο, με 100 επίπεδα δυσκολίας. Το παιχνίδι αποθηκευτε αυτοματα. Τα κομμάτια μπορουν να κινηθουν οριζόντια, κάθετα και διαγώνια.\n ", + "name": "Peg-E", + "summary": "Μετάβαση σε γόμφους για να εξαλειφθούν" + }, + "eo": { + "description": "Peg-E estas ludo kiel solitaire, en kiu vi devas salti sur pacojn por forigiilin. plej bone estis se vi detruus ĉiujn samtempe. Eksistas 100 de malfaciloniveloj kaj la tabuloj hazarde generitas. La ludu konservas aŭtomate kaj havas la eblecon de malfari-refari. Pacoj povas moviĝi horizontale, vertikale kaj diagonale.\n ", + "name": "Peg-E", + "summary": "Saltu sur pegojn por ilin elimini" + }, + "es": { + "description": "Peg-E es un juego tipo solitario en el que saltas sobre fichas para eliminarlas del tablero hasta que solo quede una. Los tableros se generan al azar, contando con 100 niveles de dificultad. El juego se puede autoguardar y tiene una función para deshacer-rehacer movimientos. Las fichas se pueden mover en horizontal, vertical o diagonal.\n ", + "name": "Peg-E", + "summary": "Salta sobre las fichas para eliminarlas" + }, + "fr": { + "description": "Peg-E est un jeu de solitaire dans lequel vous sautez par dessus des pions dans le but de les enlever du plateau de jeu, pour essayer au final de les éliminer tous, sauf un. Les plateaux de jeu sont générés aléatoirement, avec cent niveaux de difficulté. Le jeu se sauvegarde automatiquement, et a la compétence annuler/rétablir (undo-redo). Les pions peuvent bouger horizontalement, verticalement et en diagonale.\n ", + "name": "Peg-E", + "summary": "Sautez les pions pour les éliminer" + }, + "he": { + "description": "Peg-E הינו משחק סוליטר מחשבת בו עליך לקפוץ מעל גולות כדי להסירן מתוך הלוח, בסופו של דבר לנסות להסיר את כולן למעט אחת. הלוחות מופקים באופן אקראי, עם 100 שלבי קושי. המשחק נשמר אוטומטית, ויש לו אפשרות ביטול וחזרה על צעדים. גולות ניתנות להזזה באופן מאוזן, מאונך, ובאלכסון.\n ", + "summary": "קפוץ מעל גולות כדי לסלק אותן" + }, + "lt": { + "description": "Peg-E yra kamštelių žaidimas, kuriame peršokate per kamštelius, siekdami pašalinti iš žaidimo plokštės visus kamštelius, išskyrus vieną. Žaidimo plokštės yra atsitiktinai kuriamos, su 100 sunkumo lygių. Žaidimas automatiškai išsaugo žaidimo eigą ir turi anuliavimo ir perdarymo galimybes. Kamšteliai gali būti perkeliami horizontaliai, vertikaliai ir įstrižai.\n ", + "name": "Peg-E", + "summary": "Peršokite per kamštelius, kad juos pašalintumėte" + }, + "nl": { + "description": "Peg-E is een solitair spel waarbij je over stukken heen moet springen om ze te verwijderen net zolang totdat je nog meer 1 over hebt. De borden worden willekeurig gegenereerd met 100 niveaus van moeilijkheid. Het spel bewaard automatisch en je kunt zetten terugnemen. Stukken kunnen horizontaal, verticaal en diagonaal bewegen.\n ", + "name": "Peg-E", + "summary": "Verwijdern staafjes door er overheen te springen" + }, + "pl": { + "description": "Peg-E to gra typu solitaire, w której przeskakujesz przez części, aby usunąć je z planszy, w końcu próbujesz usunąć wszystkie, oprócz jednego. Plansze generowane są losowo, przy 100 poziomach trudności. Gra automatycznie zapisuje stan i ma opcję cofania ruchu. Części mogą poruszać się poziomo, pionowo i na ukos.\n ", + "name": "Peg-E", + "summary": "Przeskocz kołki, aby je usunąć" + }, + "pt": { + "description": "O Peg-E é um jogo do tipo solitário em que se salta sobre as peças por forma a removê-las do tabuleiro, por forma a tentar remover todas até restar apenas uma. Os tabuleiros são gerados aleatoriamente, com 100 níveis de dificuldade. O jogo grava automaticamente e tem a funcionalidade de desfazer as jogadas. As peças podem-se mover na horizontal, vertical e diagonal.\n ", + "name": "Peg-E", + "summary": "Salte com os pinos para os eliminar" + }, + "ro": { + "description": "Peg-E este un joc cu pioni în care sa sari peste piese pentru a le elimina de pe tablă, încercînd, în cele din urmă, a le elimina pe toate cu excepţia uneia. Tablele sunt generate aleator, cu 100 de niveluri de dificultate. Jocul salvează automat şi are capacitatea de a face/reface. Piese se pot deplasa orizontal, vertical şi pe diagonală.\n ", + "name": "Peg-E", + "summary": "Sari peste pioni pentru a-i eliminna" + }, + "ru": { + "description": "Peg-E – это вариант игры в пасьянс, в котором вам необходимо перепрыгивать через шашки, для того, чтобы убрать их все с доски, кроме одной. Расклады создаются случайным образом и имеют 100 уровней сложности. Состояние игры автоматически сохраняется, также присутствует возможность отмены/возврата ходов. Шашки можно перемещать по вертикали, горизонтали и диагонали.\n ", + "name": "Peg-E", + "summary": "Перепрыгивайте через шашки, чтобы убрать их" + }, + "sv": { + "description": "Peg-E är ett solitairespel där du hoppar över bitar för att ta bort dem från brädet, i slutändan för att eliminera alla utom en. Banorna genereras slumpmässigt i 100 svårighetsgrader. Spelet sparas automatiskt och har ångra-gör-om-funktioner. Bitarna kan röra sig horisontellt, vertikalt och diagonalt.\n ", + "name": "Peg-E", + "summary": "Hoppa över pinnar för att eliminera dem" + }, + "zh": { + "description": "Peg-E 是一款孔明棋游戏。一颗棋子跳过另一颗后,该棋子就会被消除,游戏的目的是最终只剩下一颗棋子。本游戏的棋盘自动生成,有100种不同难度可供选择。游戏会自动保存,并具有撤销(悔棋)、重做功能。棋子可以横向、纵向和斜向移动。\n ", + "name": "Peg-E", + "summary": "跳过棋子,消除它!" + }, + "cs": { + "name": "Peg-E" + }, + "tr": { + "name": "Peg-E" + } + }, + "project_license": "GPL-3.0+", + "is_free_license": true, + "app_id": "org.gottcode.Peg-E", + "icon": "https://dl.flathub.org/media/org/gottcode/Peg-E/341d8fb8e36778acf5044601fedfd173/icons/128x128/org.gottcode.Peg-E.png", + "main_categories": "game", + "sub_categories": [ + "BoardGame" + ], + "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": "1709812265", + "runtime": "org.kde.Platform/x86_64/6.8", + "updated_at": 1739554992, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1529734045, + "trending": 9.667040207918625, + "installs_last_month": 131, "isMobileFriendly": false }, { @@ -32503,8 +32503,8 @@ "x86_64" ], "added_at": 1654498822, - "trending": 4.398082017310662, - "installs_last_month": 122, + "trending": 5.399053072619989, + "installs_last_month": 131, "isMobileFriendly": false }, { @@ -32547,8 +32547,8 @@ "aarch64" ], "added_at": 1675254821, - "trending": 2.5517068871595785, - "installs_last_month": 97, + "trending": 2.823693773643999, + "installs_last_month": 103, "isMobileFriendly": false }, { @@ -32726,8 +32726,8 @@ "aarch64" ], "added_at": 1613310902, - "trending": 10.230639418557242, - "installs_last_month": 90, + "trending": 7.391271239391045, + "installs_last_month": 98, "isMobileFriendly": false }, { @@ -33019,8 +33019,8 @@ "aarch64" ], "added_at": 1513163254, - "trending": 10.169402876936974, - "installs_last_month": 6268, + "trending": 11.297584969286149, + "installs_last_month": 6499, "isMobileFriendly": false }, { @@ -33201,8 +33201,8 @@ "aarch64" ], "added_at": 1578906492, - "trending": 8.607116743753297, - "installs_last_month": 4827, + "trending": 9.978764468426396, + "installs_last_month": 5019, "isMobileFriendly": false }, { @@ -33241,8 +33241,8 @@ "aarch64" ], "added_at": 1665473510, - "trending": 8.766134356872714, - "installs_last_month": 1734, + "trending": 10.219219337922436, + "installs_last_month": 1832, "isMobileFriendly": false }, { @@ -33276,8 +33276,8 @@ "aarch64" ], "added_at": 1715583133, - "trending": 8.321984237211797, - "installs_last_month": 633, + "trending": 5.796793013916529, + "installs_last_month": 670, "isMobileFriendly": false }, { @@ -33294,7 +33294,7 @@ "project_license": "GPL-2.0", "is_free_license": true, "app_id": "io.github.Cockatrice.cockatrice", - "icon": "https://dl.flathub.org/media/io/github/Cockatrice.cockatrice/7ba25f54e1edb9a9685b5df9529d4f04/icons/128x128/io.github.Cockatrice.cockatrice.png", + "icon": "https://dl.flathub.org/media/io/github/Cockatrice.cockatrice/ce16ef16f3fac835a2e1eb8a81faaa23/icons/128x128/io.github.Cockatrice.cockatrice.png", "main_categories": "game", "sub_categories": [ "CardGame" @@ -33308,14 +33308,14 @@ "verification_website": null, "verification_timestamp": null, "runtime": "org.kde.Platform/x86_64/6.8", - "updated_at": 1743524143, + "updated_at": 1743791881, "arches": [ "x86_64", "aarch64" ], "added_at": 1508229221, - "trending": 1.738052030262143, - "installs_last_month": 552, + "trending": 2.2207371550357826, + "installs_last_month": 579, "isMobileFriendly": false }, { @@ -33551,8 +33551,8 @@ "aarch64" ], "added_at": 1556260826, - "trending": 15.86877383822133, - "installs_last_month": 198, + "trending": 13.076676459264004, + "installs_last_month": 204, "isMobileFriendly": false }, { @@ -33723,8 +33723,8 @@ "aarch64" ], "added_at": 1663217129, - "trending": 1.4427471549096802, - "installs_last_month": 169, + "trending": 1.7089728098171195, + "installs_last_month": 168, "isMobileFriendly": false }, { @@ -33762,13 +33762,13 @@ "aarch64" ], "added_at": 1630527380, - "trending": 0.6196759094457304, - "installs_last_month": 35, + "trending": 0.6975867252351491, + "installs_last_month": 37, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 8, + "processingTimeMs": 3, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -33816,8 +33816,8 @@ "aarch64" ], "added_at": 1498226331, - "trending": 7.536665814351391, - "installs_last_month": 68281, + "trending": 8.797878435390395, + "installs_last_month": 71941, "isMobileFriendly": false }, { @@ -33851,8 +33851,8 @@ "aarch64" ], "added_at": 1491928957, - "trending": 8.90838981713697, - "installs_last_month": 65513, + "trending": 10.185954554370811, + "installs_last_month": 69165, "isMobileFriendly": false }, { @@ -33903,8 +33903,8 @@ "aarch64" ], "added_at": 1491928843, - "trending": 7.548988034858122, - "installs_last_month": 61469, + "trending": 8.532440027537747, + "installs_last_month": 64739, "isMobileFriendly": false }, { @@ -33938,8 +33938,8 @@ "aarch64" ], "added_at": 1620628900, - "trending": 8.99556692210057, - "installs_last_month": 60804, + "trending": 10.016869405944451, + "installs_last_month": 63967, "isMobileFriendly": false }, { @@ -33979,8 +33979,8 @@ "aarch64" ], "added_at": 1605534288, - "trending": 13.202302612251929, - "installs_last_month": 52918, + "trending": 14.34697032837814, + "installs_last_month": 55880, "isMobileFriendly": false }, { @@ -34014,8 +34014,8 @@ "aarch64" ], "added_at": 1633422876, - "trending": 11.963401278528638, - "installs_last_month": 52591, + "trending": 12.703291758638342, + "installs_last_month": 55396, "isMobileFriendly": false }, { @@ -34050,8 +34050,8 @@ "aarch64" ], "added_at": 1692740328, - "trending": 5.3838501519662225, - "installs_last_month": 46692, + "trending": 6.6020254524723745, + "installs_last_month": 49374, "isMobileFriendly": false }, { @@ -34085,8 +34085,8 @@ "aarch64" ], "added_at": 1648060363, - "trending": 5.543195294868028, - "installs_last_month": 46129, + "trending": 6.817297376272425, + "installs_last_month": 48849, "isMobileFriendly": false }, { @@ -34122,8 +34122,8 @@ "x86_64" ], "added_at": 1505359219, - "trending": 6.158783045048102, - "installs_last_month": 13967, + "trending": 6.284234055691154, + "installs_last_month": 14417, "isMobileFriendly": false }, { @@ -34161,8 +34161,8 @@ "aarch64" ], "added_at": 1642853336, - "trending": 5.383924376523713, - "installs_last_month": 11012, + "trending": 6.627662916342115, + "installs_last_month": 11529, "isMobileFriendly": false }, { @@ -34209,8 +34209,8 @@ "x86_64" ], "added_at": 1657091693, - "trending": 7.270360873500643, - "installs_last_month": 10392, + "trending": 8.743319469934876, + "installs_last_month": 10828, "isMobileFriendly": false }, { @@ -34244,8 +34244,8 @@ "aarch64" ], "added_at": 1618816620, - "trending": 9.091292074325596, - "installs_last_month": 9849, + "trending": 10.603950860644613, + "installs_last_month": 10275, "isMobileFriendly": false }, { @@ -34283,8 +34283,8 @@ "aarch64" ], "added_at": 1737948437, - "trending": 6.523988379073256, - "installs_last_month": 9504, + "trending": 7.627946250014981, + "installs_last_month": 10058, "isMobileFriendly": false }, { @@ -34321,8 +34321,8 @@ "x86_64" ], "added_at": 1698070388, - "trending": 8.15885036628234, - "installs_last_month": 7513, + "trending": 10.137206667092366, + "installs_last_month": 7703, "isMobileFriendly": false }, { @@ -34357,8 +34357,8 @@ "aarch64" ], "added_at": 1659507908, - "trending": 6.699443487515757, - "installs_last_month": 7041, + "trending": 8.530556934700781, + "installs_last_month": 7377, "isMobileFriendly": false }, { @@ -34399,8 +34399,8 @@ "x86_64" ], "added_at": 1594584720, - "trending": 6.9108504527277015, - "installs_last_month": 6160, + "trending": 7.431638091559905, + "installs_last_month": 6357, "isMobileFriendly": false }, { @@ -34437,8 +34437,43 @@ "aarch64" ], "added_at": 1712524200, - "trending": 10.5825263549816, - "installs_last_month": 5479, + "trending": 10.284741154138182, + "installs_last_month": 5718, + "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": 6.80434025678589, + "installs_last_month": 5495, "isMobileFriendly": false }, { @@ -34482,43 +34517,8 @@ "aarch64" ], "added_at": 1494252581, - "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, + "trending": 9.07478369324884, + "installs_last_month": 5472, "isMobileFriendly": false }, { @@ -34586,8 +34586,8 @@ "x86_64" ], "added_at": 1679760631, - "trending": 8.21197254837685, - "installs_last_month": 4675, + "trending": 7.017043157778962, + "installs_last_month": 5017, "isMobileFriendly": false }, { @@ -34627,8 +34627,8 @@ "aarch64" ], "added_at": 1700646098, - "trending": 10.167138326011948, - "installs_last_month": 3869, + "trending": 9.893779953837406, + "installs_last_month": 3999, "isMobileFriendly": false }, { @@ -34667,8 +34667,8 @@ "aarch64" ], "added_at": 1601623590, - "trending": 9.841169131529476, - "installs_last_month": 3490, + "trending": 9.151543536645184, + "installs_last_month": 3626, "isMobileFriendly": false }, { @@ -34734,8 +34734,8 @@ "x86_64" ], "added_at": 1650370749, - "trending": 6.467273262451971, - "installs_last_month": 3094, + "trending": 6.133929867562438, + "installs_last_month": 3233, "isMobileFriendly": false }, { @@ -34776,8 +34776,8 @@ "aarch64" ], "added_at": 1662102776, - "trending": 9.967105557548123, - "installs_last_month": 2623, + "trending": 10.363464241318209, + "installs_last_month": 2716, "isMobileFriendly": false }, { @@ -34810,8 +34810,8 @@ "x86_64" ], "added_at": 1681453622, - "trending": 5.623053107565543, - "installs_last_month": 2300, + "trending": 6.311503809898287, + "installs_last_month": 2417, "isMobileFriendly": false }, { @@ -34852,8 +34852,8 @@ "aarch64" ], "added_at": 1703234864, - "trending": 3.474934747008159, - "installs_last_month": 2165, + "trending": 3.694957499249461, + "installs_last_month": 2185, "isMobileFriendly": false }, { @@ -34887,8 +34887,43 @@ "aarch64" ], "added_at": 1604505844, - "trending": 6.648653859836504, - "installs_last_month": 2031, + "trending": 9.015495408355491, + "installs_last_month": 2091, + "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": 8.464823607971269, + "installs_last_month": 1509, "isMobileFriendly": false }, { @@ -34937,43 +34972,8 @@ "x86_64" ], "added_at": 1646586742, - "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, + "trending": 9.958526016301189, + "installs_last_month": 1498, "isMobileFriendly": false }, { @@ -35007,8 +35007,8 @@ "x86_64" ], "added_at": 1601454790, - "trending": 7.950810594584819, - "installs_last_month": 1368, + "trending": 8.470070649856899, + "installs_last_month": 1384, "isMobileFriendly": false }, { @@ -35042,8 +35042,8 @@ "aarch64" ], "added_at": 1505411732, - "trending": 6.561992943996436, - "installs_last_month": 1297, + "trending": 6.673491267174459, + "installs_last_month": 1378, "isMobileFriendly": false }, { @@ -35084,8 +35084,8 @@ "aarch64" ], "added_at": 1519631020, - "trending": 7.889173497326373, - "installs_last_month": 1168, + "trending": 9.691221901883685, + "installs_last_month": 1213, "isMobileFriendly": false }, { @@ -35119,8 +35119,8 @@ "aarch64" ], "added_at": 1699946368, - "trending": 6.910389075510879, - "installs_last_month": 1137, + "trending": 4.406780624662138, + "installs_last_month": 1194, "isMobileFriendly": false }, { @@ -35161,8 +35161,8 @@ "aarch64" ], "added_at": 1699222132, - "trending": 4.977091432298159, - "installs_last_month": 1069, + "trending": 4.799271995792628, + "installs_last_month": 1170, "isMobileFriendly": false }, { @@ -35196,43 +35196,8 @@ "aarch64" ], "added_at": 1630765723, - "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, + "trending": 4.697460200082544, + "installs_last_month": 926, "isMobileFriendly": false }, { @@ -35275,8 +35240,43 @@ "x86_64" ], "added_at": 1563392544, - "trending": 8.989970879399737, - "installs_last_month": 875, + "trending": 10.513262927359944, + "installs_last_month": 914, + "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.0602163749694515, + "installs_last_month": 898, "isMobileFriendly": false }, { @@ -35310,8 +35310,8 @@ "aarch64" ], "added_at": 1649313894, - "trending": 7.815517742014027, - "installs_last_month": 798, + "trending": 8.168484086827903, + "installs_last_month": 839, "isMobileFriendly": false }, { @@ -35349,8 +35349,8 @@ "aarch64" ], "added_at": 1729578389, - "trending": 2.3174132807887187, - "installs_last_month": 744, + "trending": 3.7460382436804194, + "installs_last_month": 780, "isMobileFriendly": false }, { @@ -35390,8 +35390,8 @@ "aarch64" ], "added_at": 1661808441, - "trending": 8.953609831219728, - "installs_last_month": 740, + "trending": 8.131185652725108, + "installs_last_month": 770, "isMobileFriendly": false }, { @@ -35430,8 +35430,8 @@ "aarch64" ], "added_at": 1728283117, - "trending": 1.6409861835053838, - "installs_last_month": 699, + "trending": 2.1512746888186127, + "installs_last_month": 716, "isMobileFriendly": false }, { @@ -35465,8 +35465,8 @@ "x86_64" ], "added_at": 1672954340, - "trending": 2.6411222888810135, - "installs_last_month": 615, + "trending": 0.8566650922349714, + "installs_last_month": 647, "isMobileFriendly": false }, { @@ -35500,8 +35500,8 @@ "aarch64" ], "added_at": 1660117784, - "trending": 0.0935671390280457, - "installs_last_month": 515, + "trending": -0.3553402208165497, + "installs_last_month": 537, "isMobileFriendly": false }, { @@ -35543,8 +35543,8 @@ "aarch64" ], "added_at": 1551391335, - "trending": 4.966377479807106, - "installs_last_month": 411, + "trending": 9.82105487478032, + "installs_last_month": 433, "isMobileFriendly": false }, { @@ -35586,8 +35586,8 @@ "aarch64" ], "added_at": 1603015060, - "trending": 2.372956989942975, - "installs_last_month": 357, + "trending": 1.5684485139963744, + "installs_last_month": 364, "isMobileFriendly": false }, { @@ -35621,8 +35621,8 @@ "aarch64" ], "added_at": 1619416941, - "trending": 8.61297150739083, - "installs_last_month": 315, + "trending": 8.621071027963158, + "installs_last_month": 331, "isMobileFriendly": false }, { @@ -35660,8 +35660,8 @@ "x86_64" ], "added_at": 1715237962, - "trending": 2.561101404628999, - "installs_last_month": 231, + "trending": 2.531063409464107, + "installs_last_month": 240, "isMobileFriendly": false }, { @@ -35700,8 +35700,8 @@ "aarch64" ], "added_at": 1534868874, - "trending": 7.348798333929377, - "installs_last_month": 84, + "trending": 9.812364475627096, + "installs_last_month": 86, "isMobileFriendly": false } ], @@ -35751,8 +35751,8 @@ "aarch64" ], "added_at": 1717580224, - "trending": 3.759188295725188, - "installs_last_month": 917, + "trending": 5.028762469404498, + "installs_last_month": 949, "isMobileFriendly": false }, { @@ -35786,8 +35786,8 @@ "aarch64" ], "added_at": 1733424040, - "trending": 13.868030580958822, - "installs_last_month": 781, + "trending": 14.863561124105086, + "installs_last_month": 799, "isMobileFriendly": false }, { @@ -35823,8 +35823,8 @@ "aarch64" ], "added_at": 1702299440, - "trending": 0.7861997609240106, - "installs_last_month": 368, + "trending": 1.7962776334104988, + "installs_last_month": 392, "isMobileFriendly": false }, { @@ -35861,8 +35861,8 @@ "aarch64" ], "added_at": 1661808406, - "trending": 0.8579262610322068, - "installs_last_month": 367, + "trending": 1.0454299188103255, + "installs_last_month": 386, "isMobileFriendly": false }, { @@ -35897,8 +35897,8 @@ "aarch64" ], "added_at": 1737039810, - "trending": 13.680056961694223, - "installs_last_month": 362, + "trending": 13.880722716188709, + "installs_last_month": 370, "isMobileFriendly": false }, { @@ -35935,8 +35935,8 @@ "aarch64" ], "added_at": 1698646399, - "trending": 5.179973313512161, - "installs_last_month": 295, + "trending": 7.373448537489215, + "installs_last_month": 304, "isMobileFriendly": false }, { @@ -35973,8 +35973,8 @@ "aarch64" ], "added_at": 1701681910, - "trending": 4.933188427797912, - "installs_last_month": 276, + "trending": 3.3982590238426615, + "installs_last_month": 279, "isMobileFriendly": false }, { @@ -36009,8 +36009,8 @@ "aarch64" ], "added_at": 1664959783, - "trending": 11.464102574436216, - "installs_last_month": 236, + "trending": 13.160745708140308, + "installs_last_month": 248, "isMobileFriendly": false }, { @@ -36177,8 +36177,8 @@ "aarch64" ], "added_at": 1523719370, - "trending": 1.838966957730818, - "installs_last_month": 223, + "trending": 2.0749136898285694, + "installs_last_month": 229, "isMobileFriendly": false }, { @@ -36214,45 +36214,8 @@ "aarch64" ], "added_at": 1702974979, - "trending": 4.592493517748316, - "installs_last_month": 187, - "isMobileFriendly": false - }, - { - "name": "PAC-GAL", - "keywords": null, - "summary": "Feminized PAC-MAN remake", - "description": "Turn based PAC-MAN, girl style!\n \n W,A,S,D / Arrow Keys = Move\n \n Dedicated to Tōru Iwatani.\n ", - "id": "com_voxdsp_PacGal", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT", - "is_free_license": true, - "app_id": "com.voxdsp.PacGal", - "icon": "https://dl.flathub.org/media/com/voxdsp/PacGal/d86c1821e1baab66f5fea4855d726d61/icons/128x128/com.voxdsp.PacGal.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": "1717010472", - "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1717804954, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1716967191, - "trending": 2.8608796315180753, - "installs_last_month": 186, + "trending": 5.39936576547422, + "installs_last_month": 190, "isMobileFriendly": false }, { @@ -36288,10 +36251,47 @@ "aarch64" ], "added_at": 1704220352, - "trending": 6.582683357822802, + "trending": 2.679113173449788, "installs_last_month": 184, "isMobileFriendly": false }, + { + "name": "PAC-GAL", + "keywords": null, + "summary": "Feminized PAC-MAN remake", + "description": "Turn based PAC-MAN, girl style!\n \n W,A,S,D / Arrow Keys = Move\n \n Dedicated to Tōru Iwatani.\n ", + "id": "com_voxdsp_PacGal", + "type": "desktop-application", + "translations": {}, + "project_license": "MIT", + "is_free_license": true, + "app_id": "com.voxdsp.PacGal", + "icon": "https://dl.flathub.org/media/com/voxdsp/PacGal/d86c1821e1baab66f5fea4855d726d61/icons/128x128/com.voxdsp.PacGal.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": "1717010472", + "runtime": "org.freedesktop.Platform/x86_64/23.08", + "updated_at": 1717804954, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1716967191, + "trending": 2.5196114715006432, + "installs_last_month": 181, + "isMobileFriendly": false + }, { "name": "Candy Wrapper", "keywords": null, @@ -36324,8 +36324,8 @@ "aarch64" ], "added_at": 1737186441, - "trending": 14.907315193587298, - "installs_last_month": 161, + "trending": 13.82667192540682, + "installs_last_month": 169, "isMobileFriendly": false }, { @@ -36361,45 +36361,8 @@ "aarch64" ], "added_at": 1718955030, - "trending": 6.020582208427875, - "installs_last_month": 156, - "isMobileFriendly": false - }, - { - "name": "Find Billy!", - "keywords": null, - "summary": "A pixel art 2d platformer game.", - "description": "A 2 dimensional Pixel Art Jump & Run. Your mission is it to find Billy!\n ", - "id": "page_codeberg_papojari_Find_Billy", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0-or-later", - "is_free_license": true, - "app_id": "page.codeberg.papojari.Find_Billy", - "icon": "https://dl.flathub.org/media/page/codeberg/papojari.Find_Billy/b54e5727e2ea05ba8a3a22a168beda42/icons/128x128/page.codeberg.papojari.Find_Billy.png", - "main_categories": "game", - "sub_categories": [ - "KidsGame", - "2DGraphics", - "RasterGraphics" - ], - "developer_name": "papojari", - "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": 1709348076, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1643366705, - "trending": 10.093636420281449, - "installs_last_month": 150, + "trending": 1.4781334402643922, + "installs_last_month": 152, "isMobileFriendly": false }, { @@ -36435,8 +36398,82 @@ "aarch64" ], "added_at": 1703234640, - "trending": 6.7601779318953845, - "installs_last_month": 144, + "trending": 8.716276319384109, + "installs_last_month": 148, + "isMobileFriendly": false + }, + { + "name": "Find Billy!", + "keywords": null, + "summary": "A pixel art 2d platformer game.", + "description": "A 2 dimensional Pixel Art Jump & Run. Your mission is it to find Billy!\n ", + "id": "page_codeberg_papojari_Find_Billy", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0-or-later", + "is_free_license": true, + "app_id": "page.codeberg.papojari.Find_Billy", + "icon": "https://dl.flathub.org/media/page/codeberg/papojari.Find_Billy/b54e5727e2ea05ba8a3a22a168beda42/icons/128x128/page.codeberg.papojari.Find_Billy.png", + "main_categories": "game", + "sub_categories": [ + "KidsGame", + "2DGraphics", + "RasterGraphics" + ], + "developer_name": "papojari", + "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": 1709348076, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1643366705, + "trending": 9.6569843141265, + "installs_last_month": 146, + "isMobileFriendly": false + }, + { + "name": "CubeShooter", + "keywords": null, + "summary": "3D Arcade sTyle shoOter", + "description": "Move around your mouse or use your keyboard, click to toggle between mouse and keyboard control.\n When not in mouse mode use the keyboard arrow keys to move and spacebar to shoot. Press 'R' to reset the game.\n ", + "id": "com_voxdsp_CubeShooter", + "type": "desktop-application", + "translations": {}, + "project_license": "MIT", + "is_free_license": true, + "app_id": "com.voxdsp.CubeShooter", + "icon": "https://dl.flathub.org/media/com/voxdsp/CubeShooter/2d86e99d91baf03b8054a9271da9048e/icons/128x128/com.voxdsp.CubeShooter.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": "1712052282", + "runtime": "org.freedesktop.Platform/x86_64/23.08", + "updated_at": 1717132594, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1699518669, + "trending": 4.094157435276392, + "installs_last_month": 125, "isMobileFriendly": false }, { @@ -36480,45 +36517,8 @@ "aarch64" ], "added_at": 1705654905, - "trending": 8.45545445949073, - "installs_last_month": 116, - "isMobileFriendly": false - }, - { - "name": "CubeShooter", - "keywords": null, - "summary": "3D Arcade sTyle shoOter", - "description": "Move around your mouse or use your keyboard, click to toggle between mouse and keyboard control.\n When not in mouse mode use the keyboard arrow keys to move and spacebar to shoot. Press 'R' to reset the game.\n ", - "id": "com_voxdsp_CubeShooter", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT", - "is_free_license": true, - "app_id": "com.voxdsp.CubeShooter", - "icon": "https://dl.flathub.org/media/com/voxdsp/CubeShooter/2d86e99d91baf03b8054a9271da9048e/icons/128x128/com.voxdsp.CubeShooter.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": "1712052282", - "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1717132594, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1699518669, - "trending": 4.665671977061271, - "installs_last_month": 114, + "trending": 7.502836445429237, + "installs_last_month": 117, "isMobileFriendly": false }, { @@ -36554,47 +36554,10 @@ "aarch64" ], "added_at": 1700215925, - "trending": 2.842037755026158, + "trending": 1.113834704756448, "installs_last_month": 106, "isMobileFriendly": false }, - { - "name": "SpaceMiner", - "keywords": null, - "summary": "3D space mining game", - "description": "Try and mine every asteroid if you can or just see how long you can survive in space.\n On the back of your head are four color cubes, these are minerals collected from mining asteroids, these colors are also present in asteroids, these minerals are converted into on of the four actions: break/mine, repel, stop, and shield (when shiled is empty the two blue fuel cylinders will be consumed as shield).\n \n ESCAPE = Release mouse lock\n N = New Game\n Q = Break Asteroid\n E = Stop all nearby Asteroids\n R = Repel all nearby Asteroids\n W = Thrust Forward\n A = Turn Left\n D = Turn Right\n Shift = Thrust Down\n Space = Thrust Up\n Left Click = Break Asteroid\n Right Click = Repel Asteroid\n Mouse 4 Click = Stop all Asteroids nearby\n Scroll = Zoom in/out\n F = FPS to console\n P = Player stats to console\n \n ", - "id": "com_voxdsp_Spaceminer", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0-only", - "is_free_license": true, - "app_id": "com.voxdsp.Spaceminer", - "icon": "https://dl.flathub.org/media/com/voxdsp/Spaceminer/8320d661a79a78fc363af0a46a03a7db/icons/128x128/com.voxdsp.Spaceminer.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": "1712052542", - "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1712163538, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1700468163, - "trending": 7.028345980171517, - "installs_last_month": 78, - "isMobileFriendly": false - }, { "name": "Snowboarder", "keywords": null, @@ -36628,45 +36591,8 @@ "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, + "trending": 1.9925082803534797, + "installs_last_month": 81, "isMobileFriendly": false }, { @@ -36702,22 +36628,59 @@ "aarch64" ], "added_at": 1716271296, - "trending": 7.98711478881834, - "installs_last_month": 76, + "trending": 9.27118143240832, + "installs_last_month": 78, "isMobileFriendly": false }, { - "name": "The Catrooms", + "name": "Dinonuggy's Journey", "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", + "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": "MIT", + "project_license": "GPL-3.0-or-later", "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", + "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": 0.7027149415061036, + "installs_last_month": 77, + "isMobileFriendly": false + }, + { + "name": "SpaceMiner", + "keywords": null, + "summary": "3D space mining game", + "description": "Try and mine every asteroid if you can or just see how long you can survive in space.\n On the back of your head are four color cubes, these are minerals collected from mining asteroids, these colors are also present in asteroids, these minerals are converted into on of the four actions: break/mine, repel, stop, and shield (when shiled is empty the two blue fuel cylinders will be consumed as shield).\n \n ESCAPE = Release mouse lock\n N = New Game\n Q = Break Asteroid\n E = Stop all nearby Asteroids\n R = Repel all nearby Asteroids\n W = Thrust Forward\n A = Turn Left\n D = Turn Right\n Shift = Thrust Down\n Space = Thrust Up\n Left Click = Break Asteroid\n Right Click = Repel Asteroid\n Mouse 4 Click = Stop all Asteroids nearby\n Scroll = Zoom in/out\n F = FPS to console\n P = Player stats to console\n \n ", + "id": "com_voxdsp_Spaceminer", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0-only", + "is_free_license": true, + "app_id": "com.voxdsp.Spaceminer", + "icon": "https://dl.flathub.org/media/com/voxdsp/Spaceminer/8320d661a79a78fc363af0a46a03a7db/icons/128x128/com.voxdsp.Spaceminer.png", "main_categories": "game", "sub_categories": [ "ArcadeGame", @@ -36731,16 +36694,16 @@ "verification_login_provider": null, "verification_login_is_organization": "false", "verification_website": "voxdsp.com", - "verification_timestamp": "1721821193", + "verification_timestamp": "1712052542", "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1727832198, + "updated_at": 1712163538, "arches": [ "x86_64", "aarch64" ], - "added_at": 1721804464, - "trending": 8.034267215989825, - "installs_last_month": 55, + "added_at": 1700468163, + "trending": 6.877426326119586, + "installs_last_month": 76, "isMobileFriendly": false }, { @@ -36776,8 +36739,45 @@ "aarch64" ], "added_at": 1705488642, - "trending": 15.42339166020288, - "installs_last_month": 50, + "trending": 5.048499317396886, + "installs_last_month": 54, + "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": 7.936472034217631, + "installs_last_month": 51, "isMobileFriendly": false }, { @@ -36813,13 +36813,13 @@ "aarch64" ], "added_at": 1700216134, - "trending": 3.1056505236761502, - "installs_last_month": 45, + "trending": 0.5004461619840357, + "installs_last_month": 50, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 6, + "processingTimeMs": 5, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -37055,8 +37055,8 @@ "aarch64" ], "added_at": 1560613434, - "trending": 14.947363137123872, - "installs_last_month": 3132, + "trending": 14.86504053976661, + "installs_last_month": 3245, "isMobileFriendly": true }, { @@ -37250,8 +37250,8 @@ "aarch64" ], "added_at": 1559735260, - "trending": 12.300599086169097, - "installs_last_month": 1882, + "trending": 13.157210422397512, + "installs_last_month": 1984, "isMobileFriendly": true }, { @@ -37486,8 +37486,8 @@ "aarch64" ], "added_at": 1558987994, - "trending": 12.266944393313342, - "installs_last_month": 1179, + "trending": 13.597418134467672, + "installs_last_month": 1217, "isMobileFriendly": false }, { @@ -37549,7 +37549,7 @@ "aarch64" ], "added_at": 1651739141, - "trending": 14.512495261814072, + "trending": 16.467386967186265, "installs_last_month": 976, "isMobileFriendly": true }, @@ -37720,8 +37720,8 @@ "aarch64" ], "added_at": 1534951430, - "trending": -0.7905347305136912, - "installs_last_month": 588, + "trending": 1.4731524952612705, + "installs_last_month": 623, "isMobileFriendly": false }, { @@ -37760,8 +37760,8 @@ "aarch64" ], "added_at": 1650371629, - "trending": 14.125468502878832, - "installs_last_month": 516, + "trending": 14.55877418026972, + "installs_last_month": 549, "isMobileFriendly": false }, { @@ -37957,8 +37957,8 @@ "aarch64" ], "added_at": 1513540331, - "trending": 12.504296184567044, - "installs_last_month": 434, + "trending": 10.629163365990207, + "installs_last_month": 457, "isMobileFriendly": false }, { @@ -38207,8 +38207,8 @@ "aarch64" ], "added_at": 1569577044, - "trending": 11.156596557197773, - "installs_last_month": 415, + "trending": 9.270415519893827, + "installs_last_month": 438, "isMobileFriendly": false }, { @@ -38250,8 +38250,8 @@ "aarch64" ], "added_at": 1510648459, - "trending": 3.5089799322371684, - "installs_last_month": 405, + "trending": 0.21567245125051515, + "installs_last_month": 427, "isMobileFriendly": false }, { @@ -38416,8 +38416,8 @@ "aarch64" ], "added_at": 1537521997, - "trending": 6.0885554273713085, - "installs_last_month": 330, + "trending": 6.14772699456661, + "installs_last_month": 339, "isMobileFriendly": false }, { @@ -38530,8 +38530,8 @@ "aarch64" ], "added_at": 1529733139, - "trending": 9.04329382774806, - "installs_last_month": 321, + "trending": 9.177426956540844, + "installs_last_month": 327, "isMobileFriendly": false }, { @@ -38563,17 +38563,249 @@ "verification_login_is_organization": "false", "verification_website": "krafting.net", "verification_timestamp": "1731410524", - "runtime": "org.gnome.Platform/x86_64/47", - "updated_at": 1738974855, + "runtime": "org.gnome.Platform/x86_64/48", + "updated_at": 1743803927, "arches": [ "x86_64", "aarch64" ], "added_at": 1731389953, - "trending": 15.024455358187923, - "installs_last_month": 289, + "trending": 14.61480787196662, + "installs_last_month": 302, "isMobileFriendly": true }, + { + "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.945807774874991, + "installs_last_month": 297, + "isMobileFriendly": false + }, { "name": "Lights Off", "keywords": [ @@ -38809,305 +39041,8 @@ "aarch64" ], "added_at": 1554941623, - "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": "Kruiswoord­puzzel­bewerker", - "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, + "trending": 1.3227264920448982, + "installs_last_month": 283, "isMobileFriendly": false }, { @@ -39336,8 +39271,8 @@ "aarch64" ], "added_at": 1539070827, - "trending": 0.5801503705726981, - "installs_last_month": 251, + "trending": 1.4411154677199778, + "installs_last_month": 273, "isMobileFriendly": false }, { @@ -39371,8 +39306,73 @@ "aarch64" ], "added_at": 1712526584, - "trending": 11.846342297017618, - "installs_last_month": 242, + "trending": 12.55882814207924, + "installs_last_month": 265, + "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": "Kruiswoord­puzzel­bewerker", + "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": 15.307395631680674, + "installs_last_month": 255, "isMobileFriendly": false }, { @@ -39407,8 +39407,8 @@ "aarch64" ], "added_at": 1664959783, - "trending": 11.464102574436216, - "installs_last_month": 236, + "trending": 13.160745708140308, + "installs_last_month": 248, "isMobileFriendly": false }, { @@ -39638,8 +39638,8 @@ "aarch64" ], "added_at": 1569571383, - "trending": 9.635122020605422, - "installs_last_month": 234, + "trending": 5.199574070507502, + "installs_last_month": 242, "isMobileFriendly": false }, { @@ -39843,8 +39843,8 @@ "aarch64" ], "added_at": 1569573968, - "trending": 14.807822349537297, - "installs_last_month": 200, + "trending": 12.167471683193684, + "installs_last_month": 214, "isMobileFriendly": false }, { @@ -39882,8 +39882,8 @@ "aarch64" ], "added_at": 1638174046, - "trending": 13.953525552696943, - "installs_last_month": 196, + "trending": 12.31356949112877, + "installs_last_month": 214, "isMobileFriendly": false }, { @@ -40058,78 +40058,8 @@ "aarch64" ], "added_at": 1535034062, - "trending": 3.5844268920507334, - "installs_last_month": 176, - "isMobileFriendly": false - }, - { - "name": "Simple Sokoban", - "keywords": null, - "summary": "Simple sokoban game", - "description": "Simple Sokoban is a Sokoban game aimed at playability and portability across systems.", - "id": "io_osdn_simplesok", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT-Modern-Variant", - "is_free_license": true, - "app_id": "io.osdn.simplesok", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.osdn.simplesok.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": 1686726159, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1686726078, - "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, + "trending": 1.818542616966854, + "installs_last_month": 189, "isMobileFriendly": false }, { @@ -40296,8 +40226,78 @@ "aarch64" ], "added_at": 1537523426, - "trending": 4.627600949672878, - "installs_last_month": 172, + "trending": 0.13969544513526944, + "installs_last_month": 181, + "isMobileFriendly": false + }, + { + "name": "Simple Sokoban", + "keywords": null, + "summary": "Simple sokoban game", + "description": "Simple Sokoban is a Sokoban game aimed at playability and portability across systems.", + "id": "io_osdn_simplesok", + "type": "desktop-application", + "translations": {}, + "project_license": "MIT-Modern-Variant", + "is_free_license": true, + "app_id": "io.osdn.simplesok", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.osdn.simplesok.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": 1686726159, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1686726078, + "trending": 4.478237578388808, + "installs_last_month": 180, + "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.6275559854659557, + "installs_last_month": 178, "isMobileFriendly": false }, { @@ -40331,8 +40331,8 @@ "aarch64" ], "added_at": 1681369628, - "trending": 1.618227973453314, - "installs_last_month": 169, + "trending": 0.6850604347772181, + "installs_last_month": 177, "isMobileFriendly": false }, { @@ -40369,8 +40369,8 @@ "aarch64" ], "added_at": 1688971948, - "trending": 5.415898785521158, - "installs_last_month": 163, + "trending": 4.333843648154489, + "installs_last_month": 164, "isMobileFriendly": false }, { @@ -40415,8 +40415,8 @@ "aarch64" ], "added_at": 1693287851, - "trending": 13.309701415711473, - "installs_last_month": 159, + "trending": 10.833871438078416, + "installs_last_month": 152, "isMobileFriendly": false }, { @@ -40531,43 +40531,8 @@ "aarch64" ], "added_at": 1529732551, - "trending": 8.54953315986937, - "installs_last_month": 147, - "isMobileFriendly": false - }, - { - "name": "PipeWalker", - "keywords": null, - "summary": "Connection puzzle game", - "description": "This is a puzzle game in which you need to combine the components into a single circuit: connect all computers to a network server, bring water to the taps, etc.", - "id": "io_sourceforge_pipewalker_PipeWalker", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0", - "is_free_license": true, - "app_id": "io.sourceforge.pipewalker.PipeWalker", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.sourceforge.pipewalker.PipeWalker.png", - "main_categories": "game", - "sub_categories": [ - "LogicGame" - ], - "developer_name": "Artem Senichev", - "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": 1697528684, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1697528684, - "trending": 13.083797323339072, - "installs_last_month": 146, + "trending": 8.898974863391887, + "installs_last_month": 150, "isMobileFriendly": false }, { @@ -40623,8 +40588,8 @@ "aarch64" ], "added_at": 1615167969, - "trending": 1.598797843657911, - "installs_last_month": 140, + "trending": 4.230346005010812, + "installs_last_month": 142, "isMobileFriendly": false }, { @@ -40738,8 +40703,171 @@ "aarch64" ], "added_at": 1683788475, - "trending": 12.897521788434414, - "installs_last_month": 130, + "trending": 14.73317196385764, + "installs_last_month": 141, + "isMobileFriendly": false + }, + { + "name": "PipeWalker", + "keywords": null, + "summary": "Connection puzzle game", + "description": "This is a puzzle game in which you need to combine the components into a single circuit: connect all computers to a network server, bring water to the taps, etc.", + "id": "io_sourceforge_pipewalker_PipeWalker", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0", + "is_free_license": true, + "app_id": "io.sourceforge.pipewalker.PipeWalker", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.sourceforge.pipewalker.PipeWalker.png", + "main_categories": "game", + "sub_categories": [ + "LogicGame" + ], + "developer_name": "Artem Senichev", + "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": 1697528684, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1697528684, + "trending": 9.20219904470805, + "installs_last_month": 141, + "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": 10.425074894111775, + "installs_last_month": 123, "isMobileFriendly": false }, { @@ -40955,8 +41083,8 @@ "aarch64" ], "added_at": 1652851872, - "trending": 9.28930089794864, - "installs_last_month": 120, + "trending": 6.2350954692135065, + "installs_last_month": 118, "isMobileFriendly": false }, { @@ -40990,136 +41118,8 @@ "aarch64" ], "added_at": 1671485930, - "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, + "trending": 2.1556978274095986, + "installs_last_month": 111, "isMobileFriendly": false }, { @@ -41159,8 +41159,8 @@ "aarch64" ], "added_at": 1653289178, - "trending": 5.4122576180794395, - "installs_last_month": 111, + "trending": 0.8220415424594858, + "installs_last_month": 109, "isMobileFriendly": false }, { @@ -41325,10 +41325,71 @@ "aarch64" ], "added_at": 1653889049, - "trending": 13.327285214484617, + "trending": 10.882905075224564, "installs_last_month": 108, "isMobileFriendly": false }, + { + "name": "Karambola", + "keywords": null, + "summary": "Help Karambola rescue his emotional fruit people friends from the power of dark thoughts", + "description": "\n In the middle of the summer, a pack of evil bird-thoughts attacked a peaceful village of emotional fruit-people. They have been separated, each sent into a different season, focused on their own loneliness and internal landscape of troubles. If you wish, help Karambola on his quest to rescue his friends from the power of dark thoughts.\n \n \n Karambola is Agata Nawrot’s debut, nominated for A MAZE Awards in 2017, officially selected for festivals NowPlayThis and Digital Cultures. It’s a short surreal story for point-and-click adventure lovers and gentle souls, contains logical puzzles, handmade graphics, original music, and is altogether a rather contemplative and heartwarming experience.\n \n ", + "id": "com_agatanawrot_karambola", + "type": "desktop-application", + "translations": { + "it": { + "description": "\n In piena estate, uno stormo di malvagi pensier-uccelli attaccò un pacifico villaggio di „fruttabitanti” emotivi. Quest’ultimi sono stati separati, ognuno mandato in una stagione diversa, concentrati sulla propria solitudine e panorama interiore di problemi. Se desideri, aiuta Karambola nella sua missione per salvare i suoi amici dal potere dei pensieri oscuri.\n \n \n Karambola è il debutto di Agata Nawrot, nominato agli A MAZE Awards nel 2017, ufficialmente selezionato per i festival NowPlayThis e Digital Cultures. È una breve storia surreale per gli amanti delle avventure punta-e-clicca e per anime gentili, contiene enigmi logici, grafica fatta a mano, musica originale ed è nel complesso un’esperienza piuttosto contemplativa e toccante.\n \n ", + "summary": "Aiuta Karambola nella sua missione per salvare i suoi emotivi amici „fruttabitanti” dal potere dei pensieri oscuri in questa breve avventura rompicapo punta-e-clicca disegnata a mano" + }, + "pl": { + "description": "\n W środku lata, stado złowieszczych ptakomyśli zaatakowało spokojną wioskę emocjonalnych owocoludzi. Zostali oddzieleni od siebie, każdy wysłany w inną porę roku, skoncentrowany na swojej samotności i wewnętrznym krajobrazie problemów. Jeśli chcesz, pomóż Karamboli uratować swoich przyjaciół spod potęgi mrocznych myśli.\n \n \n Karambola to debiut Agaty Nawrot, nominowany do nagrody A MAZE w Berlinie w 2017 r., a także część oficjalnej selekcji na festiwalach NowPlayThis w Londynie i Digital Cultures w Warszawie. To krótka, surrealistyczna historia dla wielbicieli przygodówek oraz łagodnych dusz, zawiera łamigłówki logiczne, ręcznie rysowane grafiki, oryginalną muzykę, które tworzą razem kontemplacyjne, podnoszące na duchu doświadczenie.\n \n ", + "summary": "Pomóż Karamboli uratować jego emocjonalnych owocoprzyjaciół od potęgi mrocznych myśli w tej krótkiej, ręcznie ilustrowanej przygodówko-łamigłówce typu point-and-click" + }, + "pt-BR": { + "description": "\n Durante o verão, um bando de aves-pensamento malignas atacaram um vilarejo pacífico de delicadas pessoas-fruta. Eles foram separados, cada um enviado para uma estação diferente, focados em sua própria solidão e cenário de problemas. Se você quiser, ajude Karambola em sua jornada para resgatar seus amigos dos poderes dos pensamentos sombrios.\n \n \n Karambola é o primeiro jogo de Agata Nawrot, indicado para um Prêmio A MAZE em 2017, oficialmente selecionado para os festivais NowPlayThis e Digital Cultures. É uma história curta e surrealista para amantes de aventuras point-and-click e almas gentis, contém quebra-cabeças de lógica, gráficos feitos à mão, música original, e é uma experiência absolutamente contemplativa e emocionante.\n \n ", + "summary": "Ajude Karambola em sua jornada para resgatar seus delicados amigos pessoas-fruta dos poderes de pensamentos sombrios nessa curta aventura point-and-click, quebra-cabeça e desenhada a mão" + }, + "ru": { + "description": "\n В середине лета стая злых птиц-мыслей напала на мирную деревню эмоциональных фрукто-людей. Они были разделены, каждый был отправлен в другое время года, сосредоточившись на своем одиночестве и внутреннем горизонте проблем. Если захочешь, помоги Карамболе в ее стремлении спасти своих друзей от власти темных мыслей.\n \n \n Карамбола — это дебют Агаты Наврот, номинированный на премию A MAZE Awards в 2017 году, официально отобранный для участия в фестивалях NowPlayThis и Digital Cultures. Это короткая сюрреалистическая история для любителей point-and-click приключений и нежных душ, которая содержит логические головоломки, созданную от руки графику, оригинальную музыку и в целом представляет собой довольно созерцательный и согревающий душу опыт.\n \n ", + "summary": "Помоги Карамболе в ее стремлении спасти своих эмоциональных фрукто-друзей от власти темных мыслей в этой короткой нарисованной от руки приключенческой головоломке" + }, + "tr": { + "description": "\n Yazın ortasında, bir sürü kötü kuş düşüncesi, duygusal meyve-insanlarından oluşan huzurlu bir köye saldırdı. Ayrıldılar. Her biri, farklı bir mevsime gönderildi, kendi yalnızlıklarına ve sorunların iç manzarasına odaklandı. Dilersen, Karambola’nın arkadaşlarını kötü düşüncelerin gücünden kurtarma görevinde ona yardım et.\n \n \n Karambola Agata Nawrot’un 2017’de  A MAZE Awards’a aday gösterilmiş, NowPlayThis ve Digital Cultures festivalleri için resmi olarak seçilmiş ilk oyunudur. Bu, point & click sevenler ve nazik ruhlar için, mantıksal bulmacalar, el yapımı grafikler, orijinal müzik içeren, kısa bir gerçeküstü hikaye ve tamamen düşündürücü ve iç açıcı bir deneyimdir.\n \n ", + "summary": "Bu kısa elle çizilmiş, point & click bulmaca macerasında, Karambola’nın duygusal meyve-insan arkadaşlarını karanlık düşüncelerin gücünden kurtarma arayışında ona yardım edin." + }, + "zh-Hans": { + "description": "\n 仲夏时节,害怕飞鸟的恐惧心理在宁静的村庄蔓延,吓坏了多愁善感的水果人。他们各奔天涯,去往了不同的季节,孤独的生活就此开始,内心的波澜无法平息。如果你愿意,请帮助杨桃头拯救朋友,让他们不再受恶念侵扰。\n \n \n 《杨桃头》是 Agata Nawrot 的处女作,曾获得 2017 年 A MAZE Awards 提名,正式入选 NowPlayThis 和 Digital Cultures 音乐节。这是一个简短的充满超现实主义的故事,游戏里有逻辑谜题,手工制作的图形、原创音乐,可谓是一款可以启发人们思考,安抚情绪的游戏,非常适合爱好操作简单的点击式玩法、喜欢冒险内容、希望故事情节充满柔情的玩家。\n \n ", + "summary": "这是一款简短的手绘点击解密冒险游戏,你要做的是帮助杨桃头救出他的朋友,让他们不再被负面的情绪所吞噬" + } + }, + "project_license": "LicenseRef-proprietary", + "is_free_license": false, + "app_id": "com.agatanawrot.karambola", + "icon": "https://dl.flathub.org/media/com/agatanawrot/karambola/e70ffed09760f9d9d0fdc4a4f0b77e67/icons/128x128/com.agatanawrot.karambola.png", + "main_categories": "game", + "sub_categories": [ + "AdventureGame", + "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": "agatanawrot.com", + "verification_timestamp": "1682949088", + "runtime": "org.freedesktop.Platform/x86_64/23.08", + "updated_at": 1725293308, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1655046652, + "trending": 1.7667217079887911, + "installs_last_month": 102, + "isMobileFriendly": true + }, { "name": "Hitori", "keywords": [ @@ -41550,7 +41611,7 @@ ], "added_at": 1507145384, "trending": 12.12863626123881, - "installs_last_month": 97, + "installs_last_month": 94, "isMobileFriendly": true }, { @@ -41667,71 +41728,10 @@ "aarch64" ], "added_at": 1529734177, - "trending": 8.241331345101258, - "installs_last_month": 91, + "trending": 10.831212167891904, + "installs_last_month": 90, "isMobileFriendly": false }, - { - "name": "Karambola", - "keywords": null, - "summary": "Help Karambola rescue his emotional fruit people friends from the power of dark thoughts", - "description": "\n In the middle of the summer, a pack of evil bird-thoughts attacked a peaceful village of emotional fruit-people. They have been separated, each sent into a different season, focused on their own loneliness and internal landscape of troubles. If you wish, help Karambola on his quest to rescue his friends from the power of dark thoughts.\n \n \n Karambola is Agata Nawrot’s debut, nominated for A MAZE Awards in 2017, officially selected for festivals NowPlayThis and Digital Cultures. It’s a short surreal story for point-and-click adventure lovers and gentle souls, contains logical puzzles, handmade graphics, original music, and is altogether a rather contemplative and heartwarming experience.\n \n ", - "id": "com_agatanawrot_karambola", - "type": "desktop-application", - "translations": { - "it": { - "description": "\n In piena estate, uno stormo di malvagi pensier-uccelli attaccò un pacifico villaggio di „fruttabitanti” emotivi. Quest’ultimi sono stati separati, ognuno mandato in una stagione diversa, concentrati sulla propria solitudine e panorama interiore di problemi. Se desideri, aiuta Karambola nella sua missione per salvare i suoi amici dal potere dei pensieri oscuri.\n \n \n Karambola è il debutto di Agata Nawrot, nominato agli A MAZE Awards nel 2017, ufficialmente selezionato per i festival NowPlayThis e Digital Cultures. È una breve storia surreale per gli amanti delle avventure punta-e-clicca e per anime gentili, contiene enigmi logici, grafica fatta a mano, musica originale ed è nel complesso un’esperienza piuttosto contemplativa e toccante.\n \n ", - "summary": "Aiuta Karambola nella sua missione per salvare i suoi emotivi amici „fruttabitanti” dal potere dei pensieri oscuri in questa breve avventura rompicapo punta-e-clicca disegnata a mano" - }, - "pl": { - "description": "\n W środku lata, stado złowieszczych ptakomyśli zaatakowało spokojną wioskę emocjonalnych owocoludzi. Zostali oddzieleni od siebie, każdy wysłany w inną porę roku, skoncentrowany na swojej samotności i wewnętrznym krajobrazie problemów. Jeśli chcesz, pomóż Karamboli uratować swoich przyjaciół spod potęgi mrocznych myśli.\n \n \n Karambola to debiut Agaty Nawrot, nominowany do nagrody A MAZE w Berlinie w 2017 r., a także część oficjalnej selekcji na festiwalach NowPlayThis w Londynie i Digital Cultures w Warszawie. To krótka, surrealistyczna historia dla wielbicieli przygodówek oraz łagodnych dusz, zawiera łamigłówki logiczne, ręcznie rysowane grafiki, oryginalną muzykę, które tworzą razem kontemplacyjne, podnoszące na duchu doświadczenie.\n \n ", - "summary": "Pomóż Karamboli uratować jego emocjonalnych owocoprzyjaciół od potęgi mrocznych myśli w tej krótkiej, ręcznie ilustrowanej przygodówko-łamigłówce typu point-and-click" - }, - "pt-BR": { - "description": "\n Durante o verão, um bando de aves-pensamento malignas atacaram um vilarejo pacífico de delicadas pessoas-fruta. Eles foram separados, cada um enviado para uma estação diferente, focados em sua própria solidão e cenário de problemas. Se você quiser, ajude Karambola em sua jornada para resgatar seus amigos dos poderes dos pensamentos sombrios.\n \n \n Karambola é o primeiro jogo de Agata Nawrot, indicado para um Prêmio A MAZE em 2017, oficialmente selecionado para os festivais NowPlayThis e Digital Cultures. É uma história curta e surrealista para amantes de aventuras point-and-click e almas gentis, contém quebra-cabeças de lógica, gráficos feitos à mão, música original, e é uma experiência absolutamente contemplativa e emocionante.\n \n ", - "summary": "Ajude Karambola em sua jornada para resgatar seus delicados amigos pessoas-fruta dos poderes de pensamentos sombrios nessa curta aventura point-and-click, quebra-cabeça e desenhada a mão" - }, - "ru": { - "description": "\n В середине лета стая злых птиц-мыслей напала на мирную деревню эмоциональных фрукто-людей. Они были разделены, каждый был отправлен в другое время года, сосредоточившись на своем одиночестве и внутреннем горизонте проблем. Если захочешь, помоги Карамболе в ее стремлении спасти своих друзей от власти темных мыслей.\n \n \n Карамбола — это дебют Агаты Наврот, номинированный на премию A MAZE Awards в 2017 году, официально отобранный для участия в фестивалях NowPlayThis и Digital Cultures. Это короткая сюрреалистическая история для любителей point-and-click приключений и нежных душ, которая содержит логические головоломки, созданную от руки графику, оригинальную музыку и в целом представляет собой довольно созерцательный и согревающий душу опыт.\n \n ", - "summary": "Помоги Карамболе в ее стремлении спасти своих эмоциональных фрукто-друзей от власти темных мыслей в этой короткой нарисованной от руки приключенческой головоломке" - }, - "tr": { - "description": "\n Yazın ortasında, bir sürü kötü kuş düşüncesi, duygusal meyve-insanlarından oluşan huzurlu bir köye saldırdı. Ayrıldılar. Her biri, farklı bir mevsime gönderildi, kendi yalnızlıklarına ve sorunların iç manzarasına odaklandı. Dilersen, Karambola’nın arkadaşlarını kötü düşüncelerin gücünden kurtarma görevinde ona yardım et.\n \n \n Karambola Agata Nawrot’un 2017’de  A MAZE Awards’a aday gösterilmiş, NowPlayThis ve Digital Cultures festivalleri için resmi olarak seçilmiş ilk oyunudur. Bu, point & click sevenler ve nazik ruhlar için, mantıksal bulmacalar, el yapımı grafikler, orijinal müzik içeren, kısa bir gerçeküstü hikaye ve tamamen düşündürücü ve iç açıcı bir deneyimdir.\n \n ", - "summary": "Bu kısa elle çizilmiş, point & click bulmaca macerasında, Karambola’nın duygusal meyve-insan arkadaşlarını karanlık düşüncelerin gücünden kurtarma arayışında ona yardım edin." - }, - "zh-Hans": { - "description": "\n 仲夏时节,害怕飞鸟的恐惧心理在宁静的村庄蔓延,吓坏了多愁善感的水果人。他们各奔天涯,去往了不同的季节,孤独的生活就此开始,内心的波澜无法平息。如果你愿意,请帮助杨桃头拯救朋友,让他们不再受恶念侵扰。\n \n \n 《杨桃头》是 Agata Nawrot 的处女作,曾获得 2017 年 A MAZE Awards 提名,正式入选 NowPlayThis 和 Digital Cultures 音乐节。这是一个简短的充满超现实主义的故事,游戏里有逻辑谜题,手工制作的图形、原创音乐,可谓是一款可以启发人们思考,安抚情绪的游戏,非常适合爱好操作简单的点击式玩法、喜欢冒险内容、希望故事情节充满柔情的玩家。\n \n ", - "summary": "这是一款简短的手绘点击解密冒险游戏,你要做的是帮助杨桃头救出他的朋友,让他们不再被负面的情绪所吞噬" - } - }, - "project_license": "LicenseRef-proprietary", - "is_free_license": false, - "app_id": "com.agatanawrot.karambola", - "icon": "https://dl.flathub.org/media/com/agatanawrot/karambola/e70ffed09760f9d9d0fdc4a4f0b77e67/icons/128x128/com.agatanawrot.karambola.png", - "main_categories": "game", - "sub_categories": [ - "AdventureGame", - "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": "agatanawrot.com", - "verification_timestamp": "1682949088", - "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1725293308, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1655046652, - "trending": 4.910975435794992, - "installs_last_month": 91, - "isMobileFriendly": true - }, { "name": "Connectagram", "keywords": [ @@ -41843,8 +41843,8 @@ "aarch64" ], "added_at": 1529683917, - "trending": 10.706690202027662, - "installs_last_month": 79, + "trending": 10.716613749987744, + "installs_last_month": 83, "isMobileFriendly": false }, { @@ -41954,8 +41954,8 @@ "aarch64" ], "added_at": 1529732659, - "trending": 11.510879110446798, - "installs_last_month": 69, + "trending": 9.967792903556226, + "installs_last_month": 80, "isMobileFriendly": false }, { @@ -41988,8 +41988,8 @@ "x86_64" ], "added_at": 1531489235, - "trending": 9.968365521435045, - "installs_last_month": 66, + "trending": 15.43983682972682, + "installs_last_month": 70, "isMobileFriendly": false }, { @@ -42028,8 +42028,8 @@ "aarch64" ], "added_at": 1653030771, - "trending": 4.577317410320512, - "installs_last_month": 65, + "trending": 9.449602680963082, + "installs_last_month": 69, "isMobileFriendly": false }, { @@ -42062,8 +42062,8 @@ "x86_64" ], "added_at": 1638528530, - "trending": 2.582479902626445, - "installs_last_month": 48, + "trending": 8.978211657320045, + "installs_last_month": 54, "isMobileFriendly": false }, { @@ -42106,41 +42106,6 @@ "installs_last_month": 47, "isMobileFriendly": false }, - { - "name": "Omission", - "keywords": null, - "summary": "A deceptively simple word puzzle.", - "description": "In today's age of texting and social media, we pride ourselves on our ability to 'read typos'. Our eyes have adapted to overlook misspellings and missing letters. In today's age of texting and social media, we pride ourselves on our ability to 'read typos'. Our eyes have adapted to overlook misspellings and missing letters.Omission challenges you to put your language detective skills to the test with a deceptively simple challenge: Find the missing letter! A famous quotation will be displayed, with all the instances of a single letter removed.How fast can you figure out the missing letter? It's a race to beat the clock (unless you choose another mode) as you try to complete as many passages as you can. The faster you answer, the more points you gain.But don't let your guard down! Omission is designed to conceal any evidence of the missing letter, and that's enough to sometimes stump even the professional writers who designed it!", - "id": "com_mousepawmedia_omission", - "type": "desktop-application", - "translations": {}, - "project_license": "BSD-3-Clause", - "is_free_license": true, - "app_id": "com.mousepawmedia.omission", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.mousepawmedia.omission.png", - "main_categories": "game", - "sub_categories": [ - "LogicGame" - ], - "developer_name": "MousePaw Media", - "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/44", - "updated_at": 1692655231, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1616832214, - "trending": 7.636168365213894, - "installs_last_month": 35, - "isMobileFriendly": false - }, { "name": "Jahresarbeit 2003", "keywords": null, @@ -42177,8 +42142,43 @@ "aarch64" ], "added_at": 1641162077, - "trending": 2.1311258160626214, - "installs_last_month": 34, + "trending": 0.9118390135406684, + "installs_last_month": 36, + "isMobileFriendly": false + }, + { + "name": "Omission", + "keywords": null, + "summary": "A deceptively simple word puzzle.", + "description": "In today's age of texting and social media, we pride ourselves on our ability to 'read typos'. Our eyes have adapted to overlook misspellings and missing letters. In today's age of texting and social media, we pride ourselves on our ability to 'read typos'. Our eyes have adapted to overlook misspellings and missing letters.Omission challenges you to put your language detective skills to the test with a deceptively simple challenge: Find the missing letter! A famous quotation will be displayed, with all the instances of a single letter removed.How fast can you figure out the missing letter? It's a race to beat the clock (unless you choose another mode) as you try to complete as many passages as you can. The faster you answer, the more points you gain.But don't let your guard down! Omission is designed to conceal any evidence of the missing letter, and that's enough to sometimes stump even the professional writers who designed it!", + "id": "com_mousepawmedia_omission", + "type": "desktop-application", + "translations": {}, + "project_license": "BSD-3-Clause", + "is_free_license": true, + "app_id": "com.mousepawmedia.omission", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.mousepawmedia.omission.png", + "main_categories": "game", + "sub_categories": [ + "LogicGame" + ], + "developer_name": "MousePaw Media", + "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/44", + "updated_at": 1692655231, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1616832214, + "trending": 7.636168365213894, + "installs_last_month": 35, "isMobileFriendly": false } ], @@ -42232,8 +42232,8 @@ "aarch64" ], "added_at": 1700646098, - "trending": 10.167138326011948, - "installs_last_month": 3869, + "trending": 9.893779953837406, + "installs_last_month": 3999, "isMobileFriendly": false }, { @@ -42271,8 +42271,8 @@ "x86_64" ], "added_at": 1510090447, - "trending": 1.4493881789965375, - "installs_last_month": 1948, + "trending": 0.743580401394667, + "installs_last_month": 1992, "isMobileFriendly": false }, { @@ -42310,8 +42310,8 @@ "aarch64" ], "added_at": 1532949625, - "trending": 6.746440700958008, - "installs_last_month": 1495, + "trending": 6.792839741654378, + "installs_last_month": 1533, "isMobileFriendly": false }, { @@ -42346,8 +42346,8 @@ "aarch64" ], "added_at": 1689751982, - "trending": 12.68484555183518, - "installs_last_month": 1380, + "trending": 11.93130989993874, + "installs_last_month": 1441, "isMobileFriendly": false }, { @@ -42380,8 +42380,8 @@ "x86_64" ], "added_at": 1498638328, - "trending": 2.2882325752877386, - "installs_last_month": 1338, + "trending": 1.0242410735714818, + "installs_last_month": 1358, "isMobileFriendly": false }, { @@ -42421,8 +42421,8 @@ "aarch64" ], "added_at": 1668367620, - "trending": 3.737065279351963, - "installs_last_month": 518, + "trending": 2.633021917844973, + "installs_last_month": 531, "isMobileFriendly": false }, { @@ -42456,8 +42456,8 @@ "aarch64" ], "added_at": 1521111856, - "trending": 10.609851003801529, - "installs_last_month": 496, + "trending": 12.910360381008964, + "installs_last_month": 507, "isMobileFriendly": false }, { @@ -42498,8 +42498,8 @@ "aarch64" ], "added_at": 1723325353, - "trending": 1.427453060749086, - "installs_last_month": 487, + "trending": -1.7508049757077526, + "installs_last_month": 499, "isMobileFriendly": false }, { @@ -42535,47 +42535,8 @@ "aarch64" ], "added_at": 1711951074, - "trending": 11.055318945600831, - "installs_last_month": 450, - "isMobileFriendly": false - }, - { - "name": "HDOS", - "keywords": [ - "games", - "runescape", - "osrs" - ], - "summary": "High Detail Old School Runescape Client", - "description": "HDOS, or High Detail Old School, is a free-to-use third party client for Old School RuneScape that emulates the era of 2008-2011 RuneScape HD.\n ", - "id": "dev_hdos_HDOS", - "type": "desktop-application", - "translations": {}, - "project_license": "LicenseRef-proprietary", - "is_free_license": false, - "app_id": "dev.hdos.HDOS", - "icon": "https://dl.flathub.org/media/dev/hdos/HDOS/e02680811a7ee42062068c9a436fba2e/icons/128x128/dev.hdos.HDOS.png", - "main_categories": "game", - "sub_categories": [ - "RolePlaying" - ], - "developer_name": "HDOS", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "hdos.dev", - "verification_timestamp": "1735710966", - "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1735976443, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1668025519, - "trending": 3.1570227801481803, - "installs_last_month": 421, + "trending": 14.890493498162918, + "installs_last_month": 449, "isMobileFriendly": false }, { @@ -42609,8 +42570,8 @@ "aarch64" ], "added_at": 1534498056, - "trending": 11.356829017023143, - "installs_last_month": 418, + "trending": 12.384752670710558, + "installs_last_month": 428, "isMobileFriendly": false }, { @@ -42648,8 +42609,47 @@ "aarch64" ], "added_at": 1678778647, - "trending": 1.3277370906815456, - "installs_last_month": 363, + "trending": -0.2913132089676884, + "installs_last_month": 389, + "isMobileFriendly": false + }, + { + "name": "HDOS", + "keywords": [ + "games", + "runescape", + "osrs" + ], + "summary": "High Detail Old School Runescape Client", + "description": "HDOS, or High Detail Old School, is a free-to-use third party client for Old School RuneScape that emulates the era of 2008-2011 RuneScape HD.\n ", + "id": "dev_hdos_HDOS", + "type": "desktop-application", + "translations": {}, + "project_license": "LicenseRef-proprietary", + "is_free_license": false, + "app_id": "dev.hdos.HDOS", + "icon": "https://dl.flathub.org/media/dev/hdos/HDOS/e02680811a7ee42062068c9a436fba2e/icons/128x128/dev.hdos.HDOS.png", + "main_categories": "game", + "sub_categories": [ + "RolePlaying" + ], + "developer_name": "HDOS", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "hdos.dev", + "verification_timestamp": "1735710966", + "runtime": "org.freedesktop.Platform/x86_64/24.08", + "updated_at": 1735976443, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1668025519, + "trending": 2.2938748593909217, + "installs_last_month": 376, "isMobileFriendly": false }, { @@ -42688,8 +42688,8 @@ "aarch64" ], "added_at": 1738081639, - "trending": 1.8512504270150616, - "installs_last_month": 248, + "trending": 1.904984489794413, + "installs_last_month": 272, "isMobileFriendly": false }, { @@ -42723,8 +42723,8 @@ "x86_64" ], "added_at": 1674052009, - "trending": 1.5171232179914127, - "installs_last_month": 179, + "trending": 0.7670047213988689, + "installs_last_month": 187, "isMobileFriendly": false }, { @@ -42761,8 +42761,8 @@ "aarch64" ], "added_at": 1701681705, - "trending": 2.407660503752612, - "installs_last_month": 101, + "trending": 1.4330601613910805, + "installs_last_month": 112, "isMobileFriendly": false }, { @@ -42798,8 +42798,43 @@ "aarch64" ], "added_at": 1686033142, - "trending": 2.8260582648010475, - "installs_last_month": 96, + "trending": 3.967482617178216, + "installs_last_month": 110, + "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.4221330949580444, + "installs_last_month": 85, "isMobileFriendly": false }, { @@ -42847,42 +42882,7 @@ ], "added_at": 1656664582, "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, + "installs_last_month": 76, "isMobileFriendly": false }, { @@ -42920,13 +42920,13 @@ "aarch64" ], "added_at": 1655711498, - "trending": 6.308378444601125, - "installs_last_month": 70, + "trending": 6.338007250408427, + "installs_last_month": 75, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 4, + "processingTimeMs": 5, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -42979,8 +42979,8 @@ "aarch64" ], "added_at": 1569159761, - "trending": 13.202340508491073, - "installs_last_month": 2247, + "trending": 12.366657509663025, + "installs_last_month": 2325, "isMobileFriendly": false }, { @@ -43024,8 +43024,8 @@ "aarch64" ], "added_at": 1532423485, - "trending": 11.70015125398493, - "installs_last_month": 1721, + "trending": 11.752916078505455, + "installs_last_month": 1755, "isMobileFriendly": false }, { @@ -43067,8 +43067,8 @@ "aarch64" ], "added_at": 1569159821, - "trending": 1.5215668315026625, - "installs_last_month": 822, + "trending": -0.24175978006491028, + "installs_last_month": 873, "isMobileFriendly": false }, { @@ -43107,8 +43107,8 @@ "x86_64" ], "added_at": 1554272352, - "trending": 12.018428674371467, - "installs_last_month": 724, + "trending": 12.993796397005989, + "installs_last_month": 754, "isMobileFriendly": false }, { @@ -43150,8 +43150,8 @@ "aarch64" ], "added_at": 1529314411, - "trending": 0.5011164801045526, - "installs_last_month": 484, + "trending": -0.4248040847808314, + "installs_last_month": 500, "isMobileFriendly": false }, { @@ -43191,8 +43191,8 @@ "aarch64" ], "added_at": 1606981522, - "trending": 9.25844144090108, - "installs_last_month": 469, + "trending": 4.733314983394398, + "installs_last_month": 490, "isMobileFriendly": false }, { @@ -43236,8 +43236,8 @@ "x86_64" ], "added_at": 1569159667, - "trending": 10.671681542851635, - "installs_last_month": 452, + "trending": 13.544672188331573, + "installs_last_month": 462, "isMobileFriendly": false }, { @@ -43280,8 +43280,8 @@ "aarch64" ], "added_at": 1706558871, - "trending": 2.9419138139830605, - "installs_last_month": 423, + "trending": 0.4563785429358469, + "installs_last_month": 455, "isMobileFriendly": false }, { @@ -43316,8 +43316,8 @@ "x86_64" ], "added_at": 1623578388, - "trending": 8.988415088724729, - "installs_last_month": 403, + "trending": 7.298062924712157, + "installs_last_month": 420, "isMobileFriendly": false }, { @@ -43357,8 +43357,8 @@ "aarch64" ], "added_at": 1592688282, - "trending": 5.526860329736145, - "installs_last_month": 355, + "trending": 4.171676596768685, + "installs_last_month": 370, "isMobileFriendly": false }, { @@ -43400,8 +43400,8 @@ "aarch64" ], "added_at": 1625034507, - "trending": 6.688888388593634, - "installs_last_month": 341, + "trending": 4.854454814479336, + "installs_last_month": 361, "isMobileFriendly": false }, { @@ -43435,8 +43435,8 @@ "aarch64" ], "added_at": 1709709238, - "trending": 11.55780244706769, - "installs_last_month": 331, + "trending": 12.989792732826238, + "installs_last_month": 338, "isMobileFriendly": false }, { @@ -43496,8 +43496,8 @@ "aarch64" ], "added_at": 1707812812, - "trending": 2.845414480644473, - "installs_last_month": 300, + "trending": 4.80195941378357, + "installs_last_month": 303, "isMobileFriendly": false }, { @@ -43534,8 +43534,8 @@ "x86_64" ], "added_at": 1586504666, - "trending": 5.053141419977233, - "installs_last_month": 276, + "trending": 6.782958979179066, + "installs_last_month": 292, "isMobileFriendly": false }, { @@ -43571,43 +43571,8 @@ "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, + "trending": 5.7264898059099645, + "installs_last_month": 285, "isMobileFriendly": false }, { @@ -43641,8 +43606,8 @@ "aarch64" ], "added_at": 1691880889, - "trending": 1.4358016412375485, - "installs_last_month": 257, + "trending": 2.916296317258461, + "installs_last_month": 275, "isMobileFriendly": false }, { @@ -43685,8 +43650,43 @@ "aarch64" ], "added_at": 1706432661, - "trending": 8.689709305839498, - "installs_last_month": 257, + "trending": 9.774533712719352, + "installs_last_month": 275, + "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": 16.97434731662448, + "installs_last_month": 264, "isMobileFriendly": false }, { @@ -43725,8 +43725,8 @@ "aarch64" ], "added_at": 1696058615, - "trending": 4.937420202565587, - "installs_last_month": 252, + "trending": 7.916986089444666, + "installs_last_month": 259, "isMobileFriendly": false }, { @@ -43769,8 +43769,8 @@ "aarch64" ], "added_at": 1728282620, - "trending": 5.262050959160293, - "installs_last_month": 184, + "trending": 8.493924637968513, + "installs_last_month": 195, "isMobileFriendly": false }, { @@ -43810,8 +43810,8 @@ "aarch64" ], "added_at": 1570002057, - "trending": 1.807652748884375, - "installs_last_month": 181, + "trending": 2.622600591607836, + "installs_last_month": 191, "isMobileFriendly": false }, { @@ -43862,8 +43862,8 @@ "aarch64" ], "added_at": 1710817544, - "trending": 8.499295908892389, - "installs_last_month": 178, + "trending": 8.96800960349439, + "installs_last_month": 182, "isMobileFriendly": false }, { @@ -43909,8 +43909,8 @@ "aarch64" ], "added_at": 1736700085, - "trending": 3.1494270619675913, - "installs_last_month": 149, + "trending": 4.807275191653668, + "installs_last_month": 154, "isMobileFriendly": false }, { @@ -43954,45 +43954,8 @@ "x86_64" ], "added_at": 1693820560, - "trending": 0.003302152150301385, - "installs_last_month": 139, - "isMobileFriendly": false - }, - { - "name": "Empty Clip", - "keywords": null, - "summary": "Empty Clip is a top-down shooter action RPG", - "description": "Blast your way through ten levels and boss fights in this top-down shooter action RPG.\n \n Utilize over 15 different weapons, including melee, pistols, shotguns, rifles, rocket launchers, crossbows, and miniguns\n Fight thousands of zombies, spiders, bats, skeletons, demons, aliens and more\n Discover rare items and secrets that sprawl across dungeons, woods, caves, cities, desert, hell, and alien worlds\n Customize your character with skill points and over 25 different gear mods\n Play through the campaign multiple times for an increase in difficulty and rewards\n Complete eight achievements for an even greater challenge\n \n ", - "id": "io_gitlab_jazztickets_emptyclip", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0-only", - "is_free_license": true, - "app_id": "io.gitlab.jazztickets.emptyclip", - "icon": "https://dl.flathub.org/media/io/gitlab/jazztickets.emptyclip/6fdb21557686efc92d01bce66bd0214e/icons/128x128/io.gitlab.jazztickets.emptyclip.png", - "main_categories": "game", - "sub_categories": [ - "ActionGame", - "Shooter", - "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": "1686063864", - "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1726871068, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1686033142, - "trending": 2.8260582648010475, - "installs_last_month": 96, + "trending": 2.2390190244692887, + "installs_last_month": 144, "isMobileFriendly": false }, { @@ -44036,8 +43999,45 @@ "x86_64" ], "added_at": 1737604641, - "trending": 1.5687856036197745, - "installs_last_month": 87, + "trending": 1.6742073449906203, + "installs_last_month": 115, + "isMobileFriendly": false + }, + { + "name": "Empty Clip", + "keywords": null, + "summary": "Empty Clip is a top-down shooter action RPG", + "description": "Blast your way through ten levels and boss fights in this top-down shooter action RPG.\n \n Utilize over 15 different weapons, including melee, pistols, shotguns, rifles, rocket launchers, crossbows, and miniguns\n Fight thousands of zombies, spiders, bats, skeletons, demons, aliens and more\n Discover rare items and secrets that sprawl across dungeons, woods, caves, cities, desert, hell, and alien worlds\n Customize your character with skill points and over 25 different gear mods\n Play through the campaign multiple times for an increase in difficulty and rewards\n Complete eight achievements for an even greater challenge\n \n ", + "id": "io_gitlab_jazztickets_emptyclip", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0-only", + "is_free_license": true, + "app_id": "io.gitlab.jazztickets.emptyclip", + "icon": "https://dl.flathub.org/media/io/gitlab/jazztickets.emptyclip/6fdb21557686efc92d01bce66bd0214e/icons/128x128/io.gitlab.jazztickets.emptyclip.png", + "main_categories": "game", + "sub_categories": [ + "ActionGame", + "Shooter", + "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": "1686063864", + "runtime": "org.freedesktop.Platform/x86_64/24.08", + "updated_at": 1726871068, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1686033142, + "trending": 3.967482617178216, + "installs_last_month": 110, "isMobileFriendly": false }, { @@ -44079,7 +44079,7 @@ "aarch64" ], "added_at": 1716532941, - "trending": 13.488469872746428, + "trending": 13.922646879524844, "installs_last_month": 52, "isMobileFriendly": false } @@ -44134,8 +44134,8 @@ "aarch64" ], "added_at": 1666334692, - "trending": 9.867398139766214, - "installs_last_month": 34528, + "trending": 10.33184220533071, + "installs_last_month": 35965, "isMobileFriendly": false }, { @@ -44187,8 +44187,8 @@ "aarch64" ], "added_at": 1494566610, - "trending": 11.969720572183718, - "installs_last_month": 5889, + "trending": 12.387568031005875, + "installs_last_month": 6117, "isMobileFriendly": true }, { @@ -44227,8 +44227,8 @@ "x86_64" ], "added_at": 1714032230, - "trending": 4.871336460718362, - "installs_last_month": 3930, + "trending": 6.151847445299142, + "installs_last_month": 4083, "isMobileFriendly": false }, { @@ -44278,8 +44278,8 @@ "aarch64" ], "added_at": 1588103212, - "trending": 6.6833303468481295, - "installs_last_month": 1808, + "trending": 5.88421097980682, + "installs_last_month": 1811, "isMobileFriendly": false }, { @@ -44358,8 +44358,8 @@ "aarch64" ], "added_at": 1597649163, - "trending": 10.579324839622346, - "installs_last_month": 1437, + "trending": 12.702187325034814, + "installs_last_month": 1478, "isMobileFriendly": false }, { @@ -44408,8 +44408,8 @@ "aarch64" ], "added_at": 1525380833, - "trending": 2.510263576480025, - "installs_last_month": 1322, + "trending": 1.2262232522860557, + "installs_last_month": 1382, "isMobileFriendly": false }, { @@ -44475,8 +44475,8 @@ "x86_64" ], "added_at": 1521176376, - "trending": 14.269059062798084, - "installs_last_month": 1247, + "trending": 13.919007082462652, + "installs_last_month": 1325, "isMobileFriendly": false }, { @@ -44510,8 +44510,8 @@ "aarch64" ], "added_at": 1569159471, - "trending": 0.9189224838236048, - "installs_last_month": 1203, + "trending": 2.3947298914974873, + "installs_last_month": 1247, "isMobileFriendly": false }, { @@ -44611,8 +44611,8 @@ "aarch64" ], "added_at": 1560974118, - "trending": 6.906754427778947, - "installs_last_month": 1060, + "trending": 6.513829484276934, + "installs_last_month": 1096, "isMobileFriendly": false }, { @@ -44659,8 +44659,8 @@ "aarch64" ], "added_at": 1587042299, - "trending": 0.44124822827409294, - "installs_last_month": 618, + "trending": 0.05508968619262666, + "installs_last_month": 643, "isMobileFriendly": false }, { @@ -44696,8 +44696,43 @@ "x86_64" ], "added_at": 1653032695, - "trending": 10.0450763581136, - "installs_last_month": 493, + "trending": 6.132994938317353, + "installs_last_month": 522, + "isMobileFriendly": false + }, + { + "name": "Augustus", + "keywords": null, + "summary": "Augustus is an open source re-implementation of Caesar III with changes to gameplay", + "description": "Augustus is an open source re-implementation of Caesar III with changes to gameplay.\n The aim of this project is to provide enhanced, customizable gameplay to Caesar 3 using project Julius UI enhancements.\n \n Support for widescreen resolutions\n Windowed mode support for 32-bit desktops\n Several small in-game quality of life improvements\n Zoom controls\n \n \n Roadblocks\n Market special orders\n Partial warehouse storage\n Increased game limits\n \n Augustus requires the original assets (graphics, sounds, etc) from Caesar 3 to run. It optionally supports the high-quality MP3 files once provided on the Sierra website.\n ", + "id": "com_github_keriew_augustus", + "type": "desktop-application", + "translations": {}, + "project_license": "AGPL-3.0", + "is_free_license": true, + "app_id": "com.github.keriew.augustus", + "icon": "https://dl.flathub.org/media/com/github/keriew.augustus/96b23010dfc7afe2cb76eaaed07830c2/icons/128x128/com.github.keriew.augustus.png", + "main_categories": "game", + "sub_categories": [ + "Simulation" + ], + "developer_name": "Tomasz Drzewiecki", + "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": 1714556082, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1622107260, + "trending": 4.36827794678251, + "installs_last_month": 458, "isMobileFriendly": false }, { @@ -44740,43 +44775,8 @@ "aarch64" ], "added_at": 1689577012, - "trending": 10.489061321180571, - "installs_last_month": 435, - "isMobileFriendly": false - }, - { - "name": "Augustus", - "keywords": null, - "summary": "Augustus is an open source re-implementation of Caesar III with changes to gameplay", - "description": "Augustus is an open source re-implementation of Caesar III with changes to gameplay.\n The aim of this project is to provide enhanced, customizable gameplay to Caesar 3 using project Julius UI enhancements.\n \n Support for widescreen resolutions\n Windowed mode support for 32-bit desktops\n Several small in-game quality of life improvements\n Zoom controls\n \n \n Roadblocks\n Market special orders\n Partial warehouse storage\n Increased game limits\n \n Augustus requires the original assets (graphics, sounds, etc) from Caesar 3 to run. It optionally supports the high-quality MP3 files once provided on the Sierra website.\n ", - "id": "com_github_keriew_augustus", - "type": "desktop-application", - "translations": {}, - "project_license": "AGPL-3.0", - "is_free_license": true, - "app_id": "com.github.keriew.augustus", - "icon": "https://dl.flathub.org/media/com/github/keriew.augustus/96b23010dfc7afe2cb76eaaed07830c2/icons/128x128/com.github.keriew.augustus.png", - "main_categories": "game", - "sub_categories": [ - "Simulation" - ], - "developer_name": "Tomasz Drzewiecki", - "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": 1714556082, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1622107260, - "trending": 3.5265838814028063, - "installs_last_month": 418, + "trending": 7.245159334428348, + "installs_last_month": 445, "isMobileFriendly": false }, { @@ -44809,78 +44809,8 @@ "x86_64" ], "added_at": 1629280840, - "trending": 6.392407237788906, - "installs_last_month": 386, - "isMobileFriendly": false - }, - { - "name": "Simutrans", - "keywords": null, - "summary": "Open source transportation simulation game", - "description": "\n\t\tSimutrans is a freeware and open-source transportation simulator. Your goal is to establish a successful transport company. Transport passengers, mail and goods by rail, road, ship, and even air. Interconnect districts, cities, public buildings, industries and tourist attractions.\n \n ", - "id": "com_simutrans_Simutrans", - "type": "desktop-application", - "translations": {}, - "project_license": "Artistic-1.0", - "is_free_license": true, - "app_id": "com.simutrans.Simutrans", - "icon": "https://dl.flathub.org/media/com/simutrans/Simutrans/6e346f58ab1c137857224876dd59c161/icons/128x128/com.simutrans.Simutrans.png", - "main_categories": "game", - "sub_categories": [ - "Simulation" - ], - "developer_name": "The Simutrans Team", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "simutrans.com", - "verification_timestamp": "1717690724", - "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1736617783, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1717580246, - "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, + "trending": 5.798278462559265, + "installs_last_month": 400, "isMobileFriendly": false }, { @@ -44916,8 +44846,78 @@ "aarch64" ], "added_at": 1534170853, - "trending": 6.71707679098909, - "installs_last_month": 335, + "trending": 5.516852479917262, + "installs_last_month": 359, + "isMobileFriendly": false + }, + { + "name": "Simutrans", + "keywords": null, + "summary": "Open source transportation simulation game", + "description": "\n\t\tSimutrans is a freeware and open-source transportation simulator. Your goal is to establish a successful transport company. Transport passengers, mail and goods by rail, road, ship, and even air. Interconnect districts, cities, public buildings, industries and tourist attractions.\n \n ", + "id": "com_simutrans_Simutrans", + "type": "desktop-application", + "translations": {}, + "project_license": "Artistic-1.0", + "is_free_license": true, + "app_id": "com.simutrans.Simutrans", + "icon": "https://dl.flathub.org/media/com/simutrans/Simutrans/6e346f58ab1c137857224876dd59c161/icons/128x128/com.simutrans.Simutrans.png", + "main_categories": "game", + "sub_categories": [ + "Simulation" + ], + "developer_name": "The Simutrans Team", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "simutrans.com", + "verification_timestamp": "1717690724", + "runtime": "org.freedesktop.Platform/x86_64/24.08", + "updated_at": 1736617783, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1717580246, + "trending": 4.8572630952447415, + "installs_last_month": 352, + "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": 11.320250473566157, + "installs_last_month": 348, "isMobileFriendly": false }, { @@ -44952,8 +44952,8 @@ "aarch64" ], "added_at": 1611071198, - "trending": 8.71500374926249, - "installs_last_month": 287, + "trending": 6.188015431150479, + "installs_last_month": 307, "isMobileFriendly": false }, { @@ -44987,78 +44987,8 @@ "aarch64" ], "added_at": 1580324052, - "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, + "trending": 5.791675053367213, + "installs_last_month": 287, "isMobileFriendly": false }, { @@ -45096,8 +45026,78 @@ "aarch64" ], "added_at": 1620632153, - "trending": 5.539406315517073, - "installs_last_month": 256, + "trending": 6.035847132642307, + "installs_last_month": 274, + "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": 4.789659555296136, + "installs_last_month": 272, + "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": 12.611733539648942, + "installs_last_month": 265, "isMobileFriendly": false }, { @@ -45133,43 +45133,8 @@ "aarch64" ], "added_at": 1699221678, - "trending": 1.4392846802361294, - "installs_last_month": 232, - "isMobileFriendly": false - }, - { - "name": "SaunaSim", - "keywords": null, - "summary": "ATC Training Simulator", - "description": "\n SaunaSim is an ATC Training tool that simulates an aircraft with a full FMS and autopilot. The aircraft are designed to act as realistically as possible and take into account various factors such as atmospheric and performance data.\n \n ", - "id": "com_saunasim_saunasim", - "type": "desktop-application", - "translations": {}, - "project_license": "LGPL-3.0-or-later", - "is_free_license": true, - "app_id": "com.saunasim.saunasim", - "icon": "https://dl.flathub.org/media/com/saunasim/saunasim/c81b917ea1bcb34ddb9d6da92dcf6c13/icons/128x128/com.saunasim.saunasim.png", - "main_categories": "game", - "sub_categories": [ - "Simulation" - ], - "developer_name": "SaunaSim", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "saunasim.com", - "verification_timestamp": "1740240488", - "runtime": "org.gnome.Platform/x86_64/47", - "updated_at": 1741641529, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1740201023, - "trending": 5.606480990913813, - "installs_last_month": 190, + "trending": 4.914622257872027, + "installs_last_month": 242, "isMobileFriendly": false }, { @@ -45211,8 +45176,43 @@ "aarch64" ], "added_at": 1717580020, - "trending": 7.077212286750973, - "installs_last_month": 179, + "trending": 6.1879727078576785, + "installs_last_month": 194, + "isMobileFriendly": false + }, + { + "name": "SaunaSim", + "keywords": null, + "summary": "ATC Training Simulator", + "description": "\n SaunaSim is an ATC Training tool that simulates an aircraft with a full FMS and autopilot. The aircraft are designed to act as realistically as possible and take into account various factors such as atmospheric and performance data.\n \n ", + "id": "com_saunasim_saunasim", + "type": "desktop-application", + "translations": {}, + "project_license": "LGPL-3.0-or-later", + "is_free_license": true, + "app_id": "com.saunasim.saunasim", + "icon": "https://dl.flathub.org/media/com/saunasim/saunasim/c81b917ea1bcb34ddb9d6da92dcf6c13/icons/128x128/com.saunasim.saunasim.png", + "main_categories": "game", + "sub_categories": [ + "Simulation" + ], + "developer_name": "SaunaSim", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "saunasim.com", + "verification_timestamp": "1740240488", + "runtime": "org.gnome.Platform/x86_64/47", + "updated_at": 1741641529, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1740201023, + "trending": 3.5427268324226997, + "installs_last_month": 192, "isMobileFriendly": false }, { @@ -45251,8 +45251,8 @@ "aarch64" ], "added_at": 1734159557, - "trending": 6.68682516931375, - "installs_last_month": 164, + "trending": 4.6116772145595615, + "installs_last_month": 182, "isMobileFriendly": false }, { @@ -45285,8 +45285,8 @@ "x86_64" ], "added_at": 1594634163, - "trending": 7.1169003286827985, - "installs_last_month": 138, + "trending": 7.289645077274894, + "installs_last_month": 144, "isMobileFriendly": false }, { @@ -45329,8 +45329,8 @@ "aarch64" ], "added_at": 1494975820, - "trending": 10.676525596834642, - "installs_last_month": 124, + "trending": 10.324533935028107, + "installs_last_month": 123, "isMobileFriendly": false }, { @@ -45374,13 +45374,13 @@ "aarch64" ], "added_at": 1705654905, - "trending": 8.45545445949073, - "installs_last_month": 116, + "trending": 7.502836445429237, + "installs_last_month": 117, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 8, + "processingTimeMs": 6, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -45423,8 +45423,8 @@ "aarch64" ], "added_at": 1540375117, - "trending": 3.070525390823194, - "installs_last_month": 817, + "trending": 2.489406855687275, + "installs_last_month": 860, "isMobileFriendly": false }, { @@ -45457,8 +45457,8 @@ "x86_64" ], "added_at": 1533027644, - "trending": 0.12408027402129208, - "installs_last_month": 578, + "trending": 0.1640848495253744, + "installs_last_month": 599, "isMobileFriendly": false }, { @@ -45498,8 +45498,8 @@ "aarch64" ], "added_at": 1707812256, - "trending": 0.5791473750153118, - "installs_last_month": 516, + "trending": 0.735717795482594, + "installs_last_month": 535, "isMobileFriendly": false }, { @@ -45533,48 +45533,8 @@ "aarch64" ], "added_at": 1662103928, - "trending": 0.6330721978303189, - "installs_last_month": 478, - "isMobileFriendly": false - }, - { - "name": "Dust Racing 2D", - "keywords": null, - "summary": "Traditional top-down car racing game including a level editor", - "description": "\n Dust Racing 2D (Dustrac) is a tile-based, cross-platform 2D racing game written in Qt (C++) and OpenGL.\n \n \n Features\n \n \n 1-2 human players againts 11 challenging computer players\n 3 difficulty settings: Easy, Medium, Hard\n Split-screen two player game (vertical or horizontal)\n Game modes: Race, Time Trial, Duel\n 2D graphics with some 3D objects\n Smooth game play and physics\n Multiple race tracks\n Finishing in TOP-6 will unlock the next race track\n Star ratings based on the best positions on each race track\n Easy to create new race tracks with the level editor\n Engine and collision sounds\n Pit stops\n Runs windowed or fullscreen\n Will be forever completely free\n \n \n Dust Racing 2D comes with a Qt-based level editor for easy level creation. A separate engine, MiniCore, is used for physics modeling.\n \n ", - "id": "com_github_juzzlin_DustRacing2D", - "type": "desktop-application", - "translations": { - "de": { - "description": "\n Dust Racing 2D (Dustrac) ist ein kachelbasiertes, plattformübergreifendes 2D-Rennspiel, das in Qt (C++) und OpenGL geschrieben wurde.\n \n \n Features\n \n \n 1-2 menschliche Spieler gegen 11 herausfordernde Computerspieler\n 3 Schwierigkeitsstufen: Einfach, mittel, schwierig\n Zweispielerspiel mit geteiltem Bildschirm (vertikal/horizontal)\n Spielmodi: Rennen, Zeitrennen, Duell\n 2D-Grafik mit einigen 3D-Objekten\n Flüssiges Spielgeschehen und Physik\n Mehrere Rennstrecken\n Rennen auf dem 6. oder einem besseren Platz beenden, um die nächste Rennstrecke freizuschalten\n Sternenbewertung basierend auf der Bestposition auf jeder einzelnen Rennstrecke\n Neue Rennstrecken können leicht mit dem Level-Editor erstellt werden\n Motoren- und Kollisionsgeräusche\n Boxenstopps\n Läuft im Fenster- oder Vollbildmodus\n Wird für immer völlig frei und kostenlos sein\n \n \n Dust Racing 2D hat einen Qt-basierten Level-Editor für die einfache Levelerstellung. Eine separate Engine, MiniCore, wird für die Physikmodellierung benutzt.\n \n ", - "summary": "Traditionelles Autorennspiel aus der Vogelperspektive, mit Leveleditor" - } - }, - "project_license": "GPL-3.0 and CC-BY-SA-3.0", - "is_free_license": true, - "app_id": "com.github.juzzlin.DustRacing2D", - "icon": "https://dl.flathub.org/media/com/github/juzzlin.DustRacing2D/2ddce59fc7957858055c85909da74a79/icons/128x128/com.github.juzzlin.DustRacing2D.png", - "main_categories": "game", - "sub_categories": [ - "SportsGame" - ], - "developer_name": "Jussi Lind", - "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": 1737199726, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1652258283, - "trending": 0.6899300632793194, - "installs_last_month": 396, + "trending": 1.0494559003917523, + "installs_last_month": 492, "isMobileFriendly": false }, { @@ -45614,8 +45574,48 @@ "aarch64" ], "added_at": 1492280305, - "trending": 2.7497325038076683, - "installs_last_month": 394, + "trending": 1.9796890310304245, + "installs_last_month": 429, + "isMobileFriendly": false + }, + { + "name": "Dust Racing 2D", + "keywords": null, + "summary": "Traditional top-down car racing game including a level editor", + "description": "\n Dust Racing 2D (Dustrac) is a tile-based, cross-platform 2D racing game written in Qt (C++) and OpenGL.\n \n \n Features\n \n \n 1-2 human players againts 11 challenging computer players\n 3 difficulty settings: Easy, Medium, Hard\n Split-screen two player game (vertical or horizontal)\n Game modes: Race, Time Trial, Duel\n 2D graphics with some 3D objects\n Smooth game play and physics\n Multiple race tracks\n Finishing in TOP-6 will unlock the next race track\n Star ratings based on the best positions on each race track\n Easy to create new race tracks with the level editor\n Engine and collision sounds\n Pit stops\n Runs windowed or fullscreen\n Will be forever completely free\n \n \n Dust Racing 2D comes with a Qt-based level editor for easy level creation. A separate engine, MiniCore, is used for physics modeling.\n \n ", + "id": "com_github_juzzlin_DustRacing2D", + "type": "desktop-application", + "translations": { + "de": { + "description": "\n Dust Racing 2D (Dustrac) ist ein kachelbasiertes, plattformübergreifendes 2D-Rennspiel, das in Qt (C++) und OpenGL geschrieben wurde.\n \n \n Features\n \n \n 1-2 menschliche Spieler gegen 11 herausfordernde Computerspieler\n 3 Schwierigkeitsstufen: Einfach, mittel, schwierig\n Zweispielerspiel mit geteiltem Bildschirm (vertikal/horizontal)\n Spielmodi: Rennen, Zeitrennen, Duell\n 2D-Grafik mit einigen 3D-Objekten\n Flüssiges Spielgeschehen und Physik\n Mehrere Rennstrecken\n Rennen auf dem 6. oder einem besseren Platz beenden, um die nächste Rennstrecke freizuschalten\n Sternenbewertung basierend auf der Bestposition auf jeder einzelnen Rennstrecke\n Neue Rennstrecken können leicht mit dem Level-Editor erstellt werden\n Motoren- und Kollisionsgeräusche\n Boxenstopps\n Läuft im Fenster- oder Vollbildmodus\n Wird für immer völlig frei und kostenlos sein\n \n \n Dust Racing 2D hat einen Qt-basierten Level-Editor für die einfache Levelerstellung. Eine separate Engine, MiniCore, wird für die Physikmodellierung benutzt.\n \n ", + "summary": "Traditionelles Autorennspiel aus der Vogelperspektive, mit Leveleditor" + } + }, + "project_license": "GPL-3.0 and CC-BY-SA-3.0", + "is_free_license": true, + "app_id": "com.github.juzzlin.DustRacing2D", + "icon": "https://dl.flathub.org/media/com/github/juzzlin.DustRacing2D/2ddce59fc7957858055c85909da74a79/icons/128x128/com.github.juzzlin.DustRacing2D.png", + "main_categories": "game", + "sub_categories": [ + "SportsGame" + ], + "developer_name": "Jussi Lind", + "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": 1737199726, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1652258283, + "trending": 0.80296776661541, + "installs_last_month": 426, "isMobileFriendly": false }, { @@ -45649,8 +45649,8 @@ "aarch64" ], "added_at": 1672610373, - "trending": 11.312740743268552, - "installs_last_month": 379, + "trending": 11.31346344290926, + "installs_last_month": 390, "isMobileFriendly": false }, { @@ -45687,8 +45687,8 @@ "aarch64" ], "added_at": 1698646399, - "trending": 5.179973313512161, - "installs_last_month": 295, + "trending": 7.373448537489215, + "installs_last_month": 304, "isMobileFriendly": false }, { @@ -45725,8 +45725,8 @@ "aarch64" ], "added_at": 1701681910, - "trending": 4.933188427797912, - "installs_last_month": 276, + "trending": 3.3982590238426615, + "installs_last_month": 279, "isMobileFriendly": false }, { @@ -45766,8 +45766,8 @@ "aarch64" ], "added_at": 1493187935, - "trending": 10.477002066723914, - "installs_last_month": 227, + "trending": 9.976294856991265, + "installs_last_month": 233, "isMobileFriendly": false }, { @@ -45808,8 +45808,8 @@ "aarch64" ], "added_at": 1680077665, - "trending": 1.2600994774354226, - "installs_last_month": 191, + "trending": -0.34664317565696634, + "installs_last_month": 181, "isMobileFriendly": false }, { @@ -45847,8 +45847,8 @@ "aarch64" ], "added_at": 1704220281, - "trending": -1.2952890361195124, - "installs_last_month": 174, + "trending": 1.583622105770032, + "installs_last_month": 173, "isMobileFriendly": false }, { @@ -45891,7 +45891,7 @@ ], "added_at": 1695625746, "trending": 7.579427083604887, - "installs_last_month": 137, + "installs_last_month": 142, "isMobileFriendly": false }, { @@ -45925,8 +45925,8 @@ "aarch64" ], "added_at": 1656705045, - "trending": 11.950358069672246, - "installs_last_month": 94, + "trending": 11.924370119892242, + "installs_last_month": 102, "isMobileFriendly": false }, { @@ -46057,7 +46057,7 @@ ], "added_at": 1529927153, "trending": 0.2513056238183642, - "installs_last_month": 79, + "installs_last_month": 75, "isMobileFriendly": false } ], @@ -46132,8 +46132,8 @@ "aarch64" ], "added_at": 1492488841, - "trending": 14.82240032332431, - "installs_last_month": 6676, + "trending": 15.98020425592981, + "installs_last_month": 6903, "isMobileFriendly": false }, { @@ -46167,8 +46167,8 @@ "aarch64" ], "added_at": 1512123081, - "trending": 11.722035253897175, - "installs_last_month": 2348, + "trending": 12.423199074314908, + "installs_last_month": 2382, "isMobileFriendly": false }, { @@ -46206,8 +46206,8 @@ "aarch64" ], "added_at": 1531742097, - "trending": 5.2861963720604885, - "installs_last_month": 2077, + "trending": 6.298020293667699, + "installs_last_month": 2144, "isMobileFriendly": false }, { @@ -46279,8 +46279,8 @@ "aarch64" ], "added_at": 1494867889, - "trending": 8.046570669129634, - "installs_last_month": 1839, + "trending": 8.732040564001503, + "installs_last_month": 1872, "isMobileFriendly": false }, { @@ -46323,8 +46323,8 @@ "aarch64" ], "added_at": 1610614423, - "trending": 10.69072975992356, - "installs_last_month": 1427, + "trending": 10.465695808136935, + "installs_last_month": 1501, "isMobileFriendly": false }, { @@ -46393,8 +46393,8 @@ "aarch64" ], "added_at": 1533334334, - "trending": 5.4190951036573125, - "installs_last_month": 1269, + "trending": 7.201636265495038, + "installs_last_month": 1339, "isMobileFriendly": false }, { @@ -46432,8 +46432,8 @@ "aarch64" ], "added_at": 1674804656, - "trending": 12.93202814798676, - "installs_last_month": 665, + "trending": 11.814940604602208, + "installs_last_month": 699, "isMobileFriendly": false }, { @@ -46609,8 +46609,8 @@ "aarch64" ], "added_at": 1646828660, - "trending": 7.339765407807096, - "installs_last_month": 647, + "trending": 10.189093936103728, + "installs_last_month": 682, "isMobileFriendly": false }, { @@ -46647,8 +46647,8 @@ "aarch64" ], "added_at": 1653030446, - "trending": 0.22312313410101536, - "installs_last_month": 639, + "trending": 1.6992440499522017, + "installs_last_month": 668, "isMobileFriendly": false }, { @@ -46688,8 +46688,8 @@ "aarch64" ], "added_at": 1726471409, - "trending": 14.148527063484927, - "installs_last_month": 634, + "trending": 14.089431831014872, + "installs_last_month": 662, "isMobileFriendly": true }, { @@ -46739,8 +46739,8 @@ "aarch64" ], "added_at": 1631052729, - "trending": 0.7530193502224218, - "installs_last_month": 628, + "trending": -0.4185533407308608, + "installs_last_month": 657, "isMobileFriendly": false }, { @@ -46777,8 +46777,8 @@ "aarch64" ], "added_at": 1693938227, - "trending": 1.6342233336698129, - "installs_last_month": 605, + "trending": 0.9482513063345708, + "installs_last_month": 623, "isMobileFriendly": false }, { @@ -46820,8 +46820,8 @@ "aarch64" ], "added_at": 1555315489, - "trending": 10.993231707606052, - "installs_last_month": 561, + "trending": 11.231934510652312, + "installs_last_month": 576, "isMobileFriendly": false }, { @@ -46855,50 +46855,10 @@ "aarch64" ], "added_at": 1681976765, - "trending": 3.9670546574539385, - "installs_last_month": 537, + "trending": 0.10813205661019532, + "installs_last_month": 572, "isMobileFriendly": true }, - { - "name": "SCID", - "keywords": [ - "Chess", - "PGN", - "convert" - ], - "summary": "A chess database application", - "description": "\n SCID (Shane's Chess Information Database) is a chess database application that allows users to store, organize,\n and search through large collections of chess games. It also includes chess engines for playing against the\n computer and analyzing positions. Any Xboard or UCI compatible engine is supported.\n \n \n SCID displays graphical trends and produces printable reports on players and openings. Using Scid you can also\n play online on FICS, and even study endings with endgame tablebases.\n \n \n Engines included in the package:\n \n \n Stockfish\n Leela Chess Zero\n \n ", - "id": "io_github_benini_scid", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0", - "is_free_license": true, - "app_id": "io.github.benini.scid", - "icon": "https://dl.flathub.org/media/io/github/benini.scid/2ba04970e40a1b7a1f1ffd8de045a562/icons/128x128/io.github.benini.scid.png", - "main_categories": "game", - "sub_categories": [ - "BoardGame", - "StrategyGame" - ], - "developer_name": "SCID", - "verification_verified": true, - "verification_method": "login_provider", - "verification_login_name": "benini", - "verification_login_provider": "github", - "verification_login_is_organization": "true", - "verification_website": null, - "verification_timestamp": "1733942852", - "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1734799029, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1673596234, - "trending": 9.478173392335188, - "installs_last_month": 503, - "isMobileFriendly": false - }, { "name": "Widelands", "keywords": [ @@ -47055,8 +47015,8 @@ "aarch64" ], "added_at": 1553248706, - "trending": 10.725899474895272, - "installs_last_month": 496, + "trending": 8.371964515271332, + "installs_last_month": 526, "isMobileFriendly": false }, { @@ -47090,8 +47050,48 @@ "aarch64" ], "added_at": 1652852067, - "trending": 11.652940025064517, - "installs_last_month": 493, + "trending": 13.558731979925604, + "installs_last_month": 520, + "isMobileFriendly": false + }, + { + "name": "SCID", + "keywords": [ + "Chess", + "PGN", + "convert" + ], + "summary": "A chess database application", + "description": "\n SCID (Shane's Chess Information Database) is a chess database application that allows users to store, organize,\n and search through large collections of chess games. It also includes chess engines for playing against the\n computer and analyzing positions. Any Xboard or UCI compatible engine is supported.\n \n \n SCID displays graphical trends and produces printable reports on players and openings. Using Scid you can also\n play online on FICS, and even study endings with endgame tablebases.\n \n \n Engines included in the package:\n \n \n Stockfish\n Leela Chess Zero\n \n ", + "id": "io_github_benini_scid", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0", + "is_free_license": true, + "app_id": "io.github.benini.scid", + "icon": "https://dl.flathub.org/media/io/github/benini.scid/2ba04970e40a1b7a1f1ffd8de045a562/icons/128x128/io.github.benini.scid.png", + "main_categories": "game", + "sub_categories": [ + "BoardGame", + "StrategyGame" + ], + "developer_name": "SCID", + "verification_verified": true, + "verification_method": "login_provider", + "verification_login_name": "benini", + "verification_login_provider": "github", + "verification_login_is_organization": "true", + "verification_website": null, + "verification_timestamp": "1733942852", + "runtime": "org.freedesktop.Platform/x86_64/24.08", + "updated_at": 1734799029, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1673596234, + "trending": 4.644737475531214, + "installs_last_month": 515, "isMobileFriendly": false }, { @@ -47134,8 +47134,8 @@ "aarch64" ], "added_at": 1689577012, - "trending": 10.489061321180571, - "installs_last_month": 435, + "trending": 7.245159334428348, + "installs_last_month": 445, "isMobileFriendly": false }, { @@ -47170,8 +47170,8 @@ "x86_64" ], "added_at": 1623578388, - "trending": 8.988415088724729, - "installs_last_month": 403, + "trending": 7.298062924712157, + "installs_last_month": 420, "isMobileFriendly": false }, { @@ -47350,8 +47350,8 @@ "aarch64" ], "added_at": 1535740814, - "trending": 8.825947073912356, - "installs_last_month": 391, + "trending": 10.373434870688191, + "installs_last_month": 405, "isMobileFriendly": false }, { @@ -47393,8 +47393,8 @@ "aarch64" ], "added_at": 1674806370, - "trending": 4.62145705214059, - "installs_last_month": 339, + "trending": 1.16075793714256, + "installs_last_month": 356, "isMobileFriendly": false }, { @@ -47431,43 +47431,8 @@ "aarch64" ], "added_at": 1647933876, - "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, + "trending": 12.704739626753684, + "installs_last_month": 337, "isMobileFriendly": false }, { @@ -47501,8 +47466,43 @@ "aarch64" ], "added_at": 1653627168, - "trending": 8.684893443029518, - "installs_last_month": 300, + "trending": 9.040521380740117, + "installs_last_month": 335, + "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.10836255119584, + "installs_last_month": 329, "isMobileFriendly": false }, { @@ -47537,8 +47537,42 @@ "aarch64" ], "added_at": 1611071198, - "trending": 8.71500374926249, - "installs_last_month": 287, + "trending": 6.188015431150479, + "installs_last_month": 307, + "isMobileFriendly": false + }, + { + "name": "Backgammony", + "keywords": null, + "summary": "A backgammon frontend with multiplayer support", + "description": "Backgammony is a free backgammon frontend for linux. It provides a user interface around Gnu Backgammon's AI as well as trustless Internet and LAN games.", + "id": "uk_jnthn_backgammony", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0-or-later", + "is_free_license": true, + "app_id": "uk.jnthn.backgammony", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/uk.jnthn.backgammony.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.gnome.Platform/x86_64/44", + "updated_at": 1695532356, + "arches": [ + "x86_64" + ], + "added_at": 1584043199, + "trending": 0.9298469258611846, + "installs_last_month": 293, "isMobileFriendly": false }, { @@ -47574,42 +47608,8 @@ "aarch64" ], "added_at": 1719836853, - "trending": 7.354525020839639, - "installs_last_month": 276, - "isMobileFriendly": false - }, - { - "name": "Backgammony", - "keywords": null, - "summary": "A backgammon frontend with multiplayer support", - "description": "Backgammony is a free backgammon frontend for linux. It provides a user interface around Gnu Backgammon's AI as well as trustless Internet and LAN games.", - "id": "uk_jnthn_backgammony", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0-or-later", - "is_free_license": true, - "app_id": "uk.jnthn.backgammony", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/uk.jnthn.backgammony.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.gnome.Platform/x86_64/44", - "updated_at": 1695532356, - "arches": [ - "x86_64" - ], - "added_at": 1584043199, - "trending": 4.771876152119991, - "installs_last_month": 273, + "trending": 5.7264898059099645, + "installs_last_month": 285, "isMobileFriendly": false }, { @@ -47655,8 +47655,8 @@ "aarch64" ], "added_at": 1598614050, - "trending": 0.3561269650868498, - "installs_last_month": 246, + "trending": 0.1978779870496916, + "installs_last_month": 260, "isMobileFriendly": false }, { @@ -47691,8 +47691,8 @@ "x86_64" ], "added_at": 1522566411, - "trending": 1.3213259786645442, - "installs_last_month": 227, + "trending": 1.5933254798758223, + "installs_last_month": 239, "isMobileFriendly": false }, { @@ -47862,57 +47862,8 @@ "aarch64" ], "added_at": 1535998113, - "trending": 0.9593016251759444, - "installs_last_month": 204, - "isMobileFriendly": false - }, - { - "name": "JSettlers", - "keywords": [ - "Economic Simulation Game", - "History", - "RTS", - "Realtime Strategy", - "Romans", - "Settler", - "Warfare" - ], - "summary": "A Remake of \"The Settlers III\" for Windows, Linux, Mac and Android", - "description": "JSettlers is an open source remake of the game The Settlers III by BlueByte. The main goal of the game is to build an economy and fight other players.JSettlers needs the graphics files from an original Settlers III installation. The demo version work as well but only contains Roman and Amazon graphics files.", - "id": "io_github_paulwedeck_settlers-remake", - "type": "desktop-application", - "translations": { - "de": { - "description": "JSettlers ist ein Open-Source-Remake des Spiels \"Die Siedler III\" von BlueByte. Das Hauptziel des Spiels ist es, eine Wirtschaft aufzubauen und andere Spieler zu bekämpfen.JSettlers benötigt die Grafikdateien aus einer originalen \"Siedler III\" Installation. Die Demoversion funktioniert ebenfalls, enthält aber nur Römer und AmazonenGrafikdateien.", - "summary": "Ein \"Die Siedler III\" remake für Windows, Linux, Mac und Android" - } - }, - "project_license": "MIT", - "is_free_license": true, - "app_id": "io.github.paulwedeck.settlers-remake", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.github.paulwedeck.settlers-remake.png", - "main_categories": "game", - "sub_categories": [ - "Java", - "StrategyGame" - ], - "developer_name": "paulwedeck", - "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": 1693991360, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1665124484, - "trending": 3.280487061891094, - "installs_last_month": 199, + "trending": 0.510851267036065, + "installs_last_month": 220, "isMobileFriendly": false }, { @@ -48066,8 +48017,57 @@ "aarch64" ], "added_at": 1653287128, - "trending": 10.849977884292787, - "installs_last_month": 189, + "trending": 8.946670022976283, + "installs_last_month": 208, + "isMobileFriendly": false + }, + { + "name": "JSettlers", + "keywords": [ + "Economic Simulation Game", + "History", + "RTS", + "Realtime Strategy", + "Romans", + "Settler", + "Warfare" + ], + "summary": "A Remake of \"The Settlers III\" for Windows, Linux, Mac and Android", + "description": "JSettlers is an open source remake of the game The Settlers III by BlueByte. The main goal of the game is to build an economy and fight other players.JSettlers needs the graphics files from an original Settlers III installation. The demo version work as well but only contains Roman and Amazon graphics files.", + "id": "io_github_paulwedeck_settlers-remake", + "type": "desktop-application", + "translations": { + "de": { + "description": "JSettlers ist ein Open-Source-Remake des Spiels \"Die Siedler III\" von BlueByte. Das Hauptziel des Spiels ist es, eine Wirtschaft aufzubauen und andere Spieler zu bekämpfen.JSettlers benötigt die Grafikdateien aus einer originalen \"Siedler III\" Installation. Die Demoversion funktioniert ebenfalls, enthält aber nur Römer und AmazonenGrafikdateien.", + "summary": "Ein \"Die Siedler III\" remake für Windows, Linux, Mac und Android" + } + }, + "project_license": "MIT", + "is_free_license": true, + "app_id": "io.github.paulwedeck.settlers-remake", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/io.github.paulwedeck.settlers-remake.png", + "main_categories": "game", + "sub_categories": [ + "Java", + "StrategyGame" + ], + "developer_name": "paulwedeck", + "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": 1693991360, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1665124484, + "trending": -0.09135475047436235, + "installs_last_month": 196, "isMobileFriendly": false }, { @@ -48100,8 +48100,8 @@ "x86_64" ], "added_at": 1659334605, - "trending": 10.807531312231813, - "installs_last_month": 188, + "trending": 14.567799190942496, + "installs_last_month": 194, "isMobileFriendly": false }, { @@ -48146,8 +48146,8 @@ "aarch64" ], "added_at": 1731594382, - "trending": 10.387903612923443, - "installs_last_month": 187, + "trending": 8.78609054064942, + "installs_last_month": 193, "isMobileFriendly": false }, { @@ -48181,8 +48181,43 @@ "aarch64" ], "added_at": 1675931044, - "trending": 6.475607638392429, - "installs_last_month": 172, + "trending": 8.844385465386862, + "installs_last_month": 180, + "isMobileFriendly": false + }, + { + "name": "GPRO", + "keywords": null, + "summary": "Manage your racing team", + "description": "\n GPRO is a classic long term racing strategy game where your planning, money management and data collection skills are being put to the test. The aim of the game is to reach the top Elite group and win the world championship. But to do so you will need to progress through the levels with many ups and downs. You will be managing a racing driver and a car and you will be in charge of preparing setups and strategy for the race, much like Christian Horner or Toto Wolff do in Formula 1. It will be your job to give your driver the best car, while working with your staff, but you will also have to spend your money wisely. Collect telemetry data from the races you do in order to improve your game and give yourself an advantage over your rivals next time you visit a certain track.\n \n \n You can also join together with your friends to form an alliance and compete in the teams championship, while working together to improve your understanding of the game.\n \n \n Each season in the game spans over roughly 2 months with races being simulated live two times per week (Tuesday and Friday from 20:00 CET). While the game does not require you to be online during the races to participate, watching them unfold live and chatting to fellow managers adds to the fun. In case you miss a live race, you can view a replay of the race at any time.\n \n \n If you are a big fan of F1 and motorsports and like manager and multiplayer games, then join now for free and be part of a fantastic game and a great and friendly motorsport community!\n \n ", + "id": "net_gpro_gproapp", + "type": "desktop-application", + "translations": {}, + "project_license": "EUPL-1.2", + "is_free_license": true, + "app_id": "net.gpro.gproapp", + "icon": "https://dl.flathub.org/media/net/gpro/gproapp/2f7dcbe31bf19cd85cc95c45b8b319cb/icons/128x128/net.gpro.gproapp.png", + "main_categories": "game", + "sub_categories": [ + "StrategyGame" + ], + "developer_name": "GPRO OOD", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "gpro.net", + "verification_timestamp": "1732905639", + "runtime": "org.freedesktop.Platform/x86_64/24.08", + "updated_at": 1742282004, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1732892250, + "trending": 6.828368933543632, + "installs_last_month": 176, "isMobileFriendly": false }, { @@ -48223,7 +48258,41 @@ "aarch64" ], "added_at": 1653292044, - "trending": 0.08222770773269494, + "trending": 0.6990631935039613, + "installs_last_month": 167, + "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": 4.745965882869969, "installs_last_month": 163, "isMobileFriendly": false }, @@ -48266,43 +48335,8 @@ "aarch64" ], "added_at": 1716270864, - "trending": 3.317291490645026, - "installs_last_month": 162, - "isMobileFriendly": false - }, - { - "name": "GPRO", - "keywords": null, - "summary": "Manage your racing team", - "description": "\n GPRO is a classic long term racing strategy game where your planning, money management and data collection skills are being put to the test. The aim of the game is to reach the top Elite group and win the world championship. But to do so you will need to progress through the levels with many ups and downs. You will be managing a racing driver and a car and you will be in charge of preparing setups and strategy for the race, much like Christian Horner or Toto Wolff do in Formula 1. It will be your job to give your driver the best car, while working with your staff, but you will also have to spend your money wisely. Collect telemetry data from the races you do in order to improve your game and give yourself an advantage over your rivals next time you visit a certain track.\n \n \n You can also join together with your friends to form an alliance and compete in the teams championship, while working together to improve your understanding of the game.\n \n \n Each season in the game spans over roughly 2 months with races being simulated live two times per week (Tuesday and Friday from 20:00 CET). While the game does not require you to be online during the races to participate, watching them unfold live and chatting to fellow managers adds to the fun. In case you miss a live race, you can view a replay of the race at any time.\n \n \n If you are a big fan of F1 and motorsports and like manager and multiplayer games, then join now for free and be part of a fantastic game and a great and friendly motorsport community!\n \n ", - "id": "net_gpro_gproapp", - "type": "desktop-application", - "translations": {}, - "project_license": "EUPL-1.2", - "is_free_license": true, - "app_id": "net.gpro.gproapp", - "icon": "https://dl.flathub.org/media/net/gpro/gproapp/2f7dcbe31bf19cd85cc95c45b8b319cb/icons/128x128/net.gpro.gproapp.png", - "main_categories": "game", - "sub_categories": [ - "StrategyGame" - ], - "developer_name": "GPRO OOD", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "gpro.net", - "verification_timestamp": "1732905639", - "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1742282004, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1732892250, - "trending": 8.742896148398373, - "installs_last_month": 159, + "trending": 1.0706908123062011, + "installs_last_month": 163, "isMobileFriendly": false }, { @@ -48336,27 +48370,27 @@ "aarch64" ], "added_at": 1533057439, - "trending": 11.065860899677451, - "installs_last_month": 157, + "trending": 11.1337260408049, + "installs_last_month": 155, "isMobileFriendly": false }, { - "name": "Wyrmsun", + "name": "Advanced Strategic Command", "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", + "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", + "project_license": "GPL-2.0-or-later", "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", + "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": "Andrettin", + "developer_name": null, "verification_verified": false, "verification_method": "none", "verification_login_name": null, @@ -48364,14 +48398,15 @@ "verification_login_is_organization": null, "verification_website": null, "verification_timestamp": null, - "runtime": "org.kde.Platform/x86_64/5.15-23.08", - "updated_at": 1740595760, + "runtime": "org.freedesktop.Platform/x86_64/22.08", + "updated_at": 1702997612, "arches": [ - "x86_64" + "x86_64", + "aarch64" ], - "added_at": 1653030126, - "trending": 1.3035448961457403, - "installs_last_month": 149, + "added_at": 1702997612, + "trending": 7.438912834403087, + "installs_last_month": 153, "isMobileFriendly": false }, { @@ -48548,7 +48583,7 @@ "aarch64" ], "added_at": 1534868586, - "trending": 6.745405517061613, + "trending": 5.122899836833853, "installs_last_month": 148, "isMobileFriendly": false }, @@ -48593,43 +48628,8 @@ "aarch64" ], "added_at": 1661807319, - "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, + "trending": 2.9938506382202226, + "installs_last_month": 148, "isMobileFriendly": false }, { @@ -48673,46 +48673,8 @@ "aarch64" ], "added_at": 1690213555, - "trending": 9.27145224489576, - "installs_last_month": 134, - "isMobileFriendly": false - }, - { - "name": "Race into Space", - "keywords": [ - "Game", - "StrategyGame" - ], - "summary": "A game to relive the 1960s Space Race", - "description": "\n Race Into Space is a simulation of the US-Soviet Space Race.\n In it, you take charge of your country’s space program as\n Director (US) or Designer (USSR). You will purchase and develop\n space hardware, recruit and manage astronauts/cosmonauts, and\n plan and send missions into space. The ultimate goal is to be\n the first to complete a Moon landing and return your people\n safely to Earth.\n \n \n Race Into Space (RIS) is a port to modern operating systems of\n Buzz Aldrin’s Race Into Space (BARIS), a DOS game originally released\n in 1993 on floppy disk, and a year later in an expanded CD version.\n BARIS was developed by Fritz Bronner based on his 1989 board game Liftoff!.\n Dr. Aldrin’s name and imagery have been dropped because permission to\n use them was limited to the old DOS game.\n \n \n RIS is available for Windows, Linux, and Mac, and includes some\n improvements over the original game—which we feel have justified\n a rewrite of the game manual. Those involved in RIS are volunteer\n enthusiasts, and we hope you enjoy this simulation.\n You might even find it educational.\n \n ", - "id": "org_raceintospace_Raceintospace", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0+", - "is_free_license": true, - "app_id": "org.raceintospace.Raceintospace", - "icon": "https://dl.flathub.org/media/org/raceintospace/Raceintospace/75433e9f217067a5de50fc78d05be000/icons/128x128/org.raceintospace.Raceintospace.png", - "main_categories": "game", - "sub_categories": [ - "StrategyGame" - ], - "developer_name": "Raceintospace", - "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": 1739368631, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1600446404, - "trending": 1.1684045265199583, - "installs_last_month": 131, + "trending": 8.968684236525513, + "installs_last_month": 139, "isMobileFriendly": false }, { @@ -48889,8 +48851,123 @@ "aarch64" ], "added_at": 1603907849, - "trending": 7.0408709290684754, - "installs_last_month": 129, + "trending": 10.202281470719353, + "installs_last_month": 138, + "isMobileFriendly": false + }, + { + "name": "Race into Space", + "keywords": [ + "Game", + "StrategyGame" + ], + "summary": "A game to relive the 1960s Space Race", + "description": "\n Race Into Space is a simulation of the US-Soviet Space Race.\n In it, you take charge of your country’s space program as\n Director (US) or Designer (USSR). You will purchase and develop\n space hardware, recruit and manage astronauts/cosmonauts, and\n plan and send missions into space. The ultimate goal is to be\n the first to complete a Moon landing and return your people\n safely to Earth.\n \n \n Race Into Space (RIS) is a port to modern operating systems of\n Buzz Aldrin’s Race Into Space (BARIS), a DOS game originally released\n in 1993 on floppy disk, and a year later in an expanded CD version.\n BARIS was developed by Fritz Bronner based on his 1989 board game Liftoff!.\n Dr. Aldrin’s name and imagery have been dropped because permission to\n use them was limited to the old DOS game.\n \n \n RIS is available for Windows, Linux, and Mac, and includes some\n improvements over the original game—which we feel have justified\n a rewrite of the game manual. Those involved in RIS are volunteer\n enthusiasts, and we hope you enjoy this simulation.\n You might even find it educational.\n \n ", + "id": "org_raceintospace_Raceintospace", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0+", + "is_free_license": true, + "app_id": "org.raceintospace.Raceintospace", + "icon": "https://dl.flathub.org/media/org/raceintospace/Raceintospace/75433e9f217067a5de50fc78d05be000/icons/128x128/org.raceintospace.Raceintospace.png", + "main_categories": "game", + "sub_categories": [ + "StrategyGame" + ], + "developer_name": "Raceintospace", + "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": 1739368631, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1600446404, + "trending": 0.016570153923050723, + "installs_last_month": 131, + "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": 2.566237546438341, + "installs_last_month": 122, + "isMobileFriendly": false + }, + { + "name": "Crimson Fields", + "keywords": null, + "summary": "A turn based tactical war game", + "description": "Crimson Fields is a tactical war game in the tradition of Battle Isle for one or two players.", + "id": "org_seul_crimson", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0-only", + "is_free_license": true, + "app_id": "org.seul.crimson", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.seul.crimson.png", + "main_categories": "game", + "sub_categories": [ + "StrategyGame" + ], + "developer_name": "Jens Granseuer", + "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": 1673249322, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1673249119, + "trending": 4.619547601684641, + "installs_last_month": 119, "isMobileFriendly": false }, { @@ -48935,85 +49012,8 @@ "aarch64" ], "added_at": 1736043556, - "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 - }, - { - "name": "Crimson Fields", - "keywords": null, - "summary": "A turn based tactical war game", - "description": "Crimson Fields is a tactical war game in the tradition of Battle Isle for one or two players.", - "id": "org_seul_crimson", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0-only", - "is_free_license": true, - "app_id": "org.seul.crimson", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.seul.crimson.png", - "main_categories": "game", - "sub_categories": [ - "StrategyGame" - ], - "developer_name": "Jens Granseuer", - "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": 1673249322, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1673249119, - "trending": 7.827452021728504, - "installs_last_month": 106, + "trending": 9.330518308614831, + "installs_last_month": 119, "isMobileFriendly": false }, { @@ -49173,8 +49173,8 @@ "aarch64" ], "added_at": 1536062355, - "trending": 1.114832895224434, - "installs_last_month": 101, + "trending": 0.397054181805778, + "installs_last_month": 116, "isMobileFriendly": false }, { @@ -49211,8 +49211,8 @@ "aarch64" ], "added_at": 1701681705, - "trending": 2.407660503752612, - "installs_last_month": 101, + "trending": 1.4330601613910805, + "installs_last_month": 112, "isMobileFriendly": false }, { @@ -49382,8 +49382,8 @@ "aarch64" ], "added_at": 1535052976, - "trending": 12.380228514523676, - "installs_last_month": 95, + "trending": 9.15550047581166, + "installs_last_month": 101, "isMobileFriendly": false }, { @@ -49558,8 +49558,8 @@ "aarch64" ], "added_at": 1535175109, - "trending": 1.6082369656679358, - "installs_last_month": 91, + "trending": 1.3185753018518471, + "installs_last_month": 95, "isMobileFriendly": false }, { @@ -49603,7 +49603,7 @@ ], "added_at": 1674804482, "trending": 0.5142197032653434, - "installs_last_month": 88, + "installs_last_month": 90, "isMobileFriendly": false }, { @@ -49645,51 +49645,8 @@ "aarch64" ], "added_at": 1706168725, - "trending": 6.845262131639804, - "installs_last_month": 82, - "isMobileFriendly": false - }, - { - "name": "Freeciv Qt client", - "keywords": [ - "strategy", - "simulation", - "civilization", - "tiles", - "history", - "mankind", - "multiplayer" - ], - "summary": "Qt based client for the Freeciv game", - "description": "\n Freeciv is a Free and Open Source empire-building strategy game inspired by the history of human civilization. The game commences in prehistory and your\n mission is to lead your tribe from the Stone Age to the Space Age...\n \n \n This client for connecting to network games, or to launch local single-player games, is based on Qt.\n \n ", - "id": "org_freeciv_qt", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0-or-later", - "is_free_license": true, - "app_id": "org.freeciv.qt", - "icon": "https://dl.flathub.org/media/org/freeciv/qt/d008ccca027f83f7fec827f51f117829/icons/128x128/org.freeciv.qt.png", - "main_categories": "game", - "sub_categories": [ - "StrategyGame" - ], - "developer_name": "Freeciv Team", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "freeciv.org", - "verification_timestamp": "1709380322", - "runtime": "org.kde.Platform/x86_64/6.8", - "updated_at": 1735944638, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1683543619, - "trending": 2.725586272001996, - "installs_last_month": 76, + "trending": 7.7537054901162366, + "installs_last_month": 86, "isMobileFriendly": false }, { @@ -49860,8 +49817,51 @@ "aarch64" ], "added_at": 1535998155, - "trending": 5.56141338227886, - "installs_last_month": 74, + "trending": 6.924576015635961, + "installs_last_month": 84, + "isMobileFriendly": false + }, + { + "name": "Freeciv Qt client", + "keywords": [ + "strategy", + "simulation", + "civilization", + "tiles", + "history", + "mankind", + "multiplayer" + ], + "summary": "Qt based client for the Freeciv game", + "description": "\n Freeciv is a Free and Open Source empire-building strategy game inspired by the history of human civilization. The game commences in prehistory and your\n mission is to lead your tribe from the Stone Age to the Space Age...\n \n \n This client for connecting to network games, or to launch local single-player games, is based on Qt.\n \n ", + "id": "org_freeciv_qt", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0-or-later", + "is_free_license": true, + "app_id": "org.freeciv.qt", + "icon": "https://dl.flathub.org/media/org/freeciv/qt/d008ccca027f83f7fec827f51f117829/icons/128x128/org.freeciv.qt.png", + "main_categories": "game", + "sub_categories": [ + "StrategyGame" + ], + "developer_name": "Freeciv Team", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "freeciv.org", + "verification_timestamp": "1709380322", + "runtime": "org.kde.Platform/x86_64/6.8", + "updated_at": 1735944638, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1683543619, + "trending": 0.40060196218134414, + "installs_last_month": 81, "isMobileFriendly": false }, { @@ -49895,8 +49895,8 @@ "aarch64" ], "added_at": 1693817913, - "trending": 4.152830451019613, - "installs_last_month": 32, + "trending": 2.791947957225727, + "installs_last_month": 37, "isMobileFriendly": false }, { @@ -49939,8 +49939,8 @@ "aarch64" ], "added_at": 1593335719, - "trending": 1.72194334589098, - "installs_last_month": 28, + "trending": 5.968657427982968, + "installs_last_month": 30, "isMobileFriendly": false } ], @@ -50187,8 +50187,8 @@ "aarch64" ], "added_at": 1507913183, - "trending": 5.529375113115509, - "installs_last_month": 87644, + "trending": 5.837290052365388, + "installs_last_month": 90858, "isMobileFriendly": false }, { @@ -50369,8 +50369,8 @@ "aarch64" ], "added_at": 1515426923, - "trending": 9.916595722146756, - "installs_last_month": 28934, + "trending": 8.665331337485101, + "installs_last_month": 29922, "isMobileFriendly": false }, { @@ -50486,8 +50486,8 @@ "aarch64" ], "added_at": 1545160256, - "trending": 12.579792476584494, - "installs_last_month": 8531, + "trending": 10.22053910356758, + "installs_last_month": 8843, "isMobileFriendly": false }, { @@ -50717,8 +50717,8 @@ "aarch64" ], "added_at": 1501347955, - "trending": 14.744109726416337, - "installs_last_month": 4766, + "trending": 11.17259270579124, + "installs_last_month": 4942, "isMobileFriendly": false }, { @@ -50867,8 +50867,8 @@ "x86_64" ], "added_at": 1552521014, - "trending": 11.957688535415926, - "installs_last_month": 4185, + "trending": 9.350421432006032, + "installs_last_month": 4348, "isMobileFriendly": false }, { @@ -51059,8 +51059,8 @@ "aarch64" ], "added_at": 1535101380, - "trending": 13.45255275552272, - "installs_last_month": 4142, + "trending": 10.042339085174374, + "installs_last_month": 4283, "isMobileFriendly": false }, { @@ -51113,8 +51113,8 @@ "aarch64" ], "added_at": 1569160081, - "trending": 7.6911240877124545, - "installs_last_month": 2574, + "trending": 5.947260849662762, + "installs_last_month": 2666, "isMobileFriendly": false }, { @@ -51329,8 +51329,8 @@ "aarch64" ], "added_at": 1632216005, - "trending": 10.040828145671366, - "installs_last_month": 2561, + "trending": 11.031007862133562, + "installs_last_month": 2633, "isMobileFriendly": false }, { @@ -51491,8 +51491,8 @@ "aarch64" ], "added_at": 1491912608, - "trending": 12.146006876822709, - "installs_last_month": 2045, + "trending": 11.352065278493566, + "installs_last_month": 2099, "isMobileFriendly": false }, { @@ -51527,8 +51527,8 @@ "aarch64" ], "added_at": 1530101282, - "trending": 8.247340001919707, - "installs_last_month": 1785, + "trending": 6.813407550922955, + "installs_last_month": 1862, "isMobileFriendly": false }, { @@ -51574,8 +51574,8 @@ "aarch64" ], "added_at": 1576949749, - "trending": 9.06800721492854, - "installs_last_month": 1632, + "trending": 7.837161070238412, + "installs_last_month": 1693, "isMobileFriendly": false }, { @@ -51609,8 +51609,8 @@ "x86_64" ], "added_at": 1646382533, - "trending": 8.671484168705799, - "installs_last_month": 1485, + "trending": 8.804082094396321, + "installs_last_month": 1484, "isMobileFriendly": false }, { @@ -51646,8 +51646,8 @@ "aarch64" ], "added_at": 1584687957, - "trending": 1.521438531499256, - "installs_last_month": 1483, + "trending": 0.1127548536507994, + "installs_last_month": 1456, "isMobileFriendly": false }, { @@ -51682,8 +51682,8 @@ "aarch64" ], "added_at": 1494999503, - "trending": 10.933543671791238, - "installs_last_month": 1108, + "trending": 11.204279629664184, + "installs_last_month": 1120, "isMobileFriendly": false }, { @@ -51740,8 +51740,8 @@ "aarch64" ], "added_at": 1675323888, - "trending": 12.338700836736049, - "installs_last_month": 976, + "trending": 12.303505032688925, + "installs_last_month": 991, "isMobileFriendly": false }, { @@ -51775,8 +51775,8 @@ "x86_64" ], "added_at": 1527195269, - "trending": 2.7182801252498177, - "installs_last_month": 946, + "trending": 1.3287246161246904, + "installs_last_month": 981, "isMobileFriendly": false }, { @@ -51818,8 +51818,8 @@ "aarch64" ], "added_at": 1581456843, - "trending": 10.03040504178487, - "installs_last_month": 849, + "trending": 5.00432859357025, + "installs_last_month": 863, "isMobileFriendly": false }, { @@ -51865,8 +51865,8 @@ "aarch64" ], "added_at": 1533313900, - "trending": 8.99361849467159, - "installs_last_month": 818, + "trending": 5.147581029428244, + "installs_last_month": 851, "isMobileFriendly": false }, { @@ -51909,8 +51909,8 @@ "aarch64" ], "added_at": 1533642989, - "trending": 11.7069738665598, - "installs_last_month": 801, + "trending": 11.99291407315756, + "installs_last_month": 810, "isMobileFriendly": false }, { @@ -51981,7 +51981,7 @@ "aarch64" ], "added_at": 1693099281, - "trending": 0.2943435318234774, + "trending": -1.1802982762695098, "installs_last_month": 737, "isMobileFriendly": false }, @@ -52023,8 +52023,8 @@ "aarch64" ], "added_at": 1627289817, - "trending": 13.94837867956624, - "installs_last_month": 545, + "trending": 13.216773316469306, + "installs_last_month": 552, "isMobileFriendly": false }, { @@ -52058,8 +52058,8 @@ "aarch64" ], "added_at": 1695295005, - "trending": 9.450091925933538, - "installs_last_month": 527, + "trending": 9.52926323028811, + "installs_last_month": 552, "isMobileFriendly": false }, { @@ -52105,8 +52105,8 @@ "aarch64" ], "added_at": 1518650307, - "trending": 9.424594537468256, - "installs_last_month": 432, + "trending": 8.621660174088305, + "installs_last_month": 447, "isMobileFriendly": false }, { @@ -52142,91 +52142,8 @@ "aarch64" ], "added_at": 1722667073, - "trending": 6.440087302271057, - "installs_last_month": 347, - "isMobileFriendly": false - }, - { - "name": "Pixelitor", - "keywords": [ - "pixelitor", - "graphic", - "design", - "illustration", - "painting" - ], - "summary": "Open source image editor", - "description": "\n \tPixelitor is an advanced image editor with support for layers, layer masks, text layers, multiple undo, blending modes, cropping, Gaussian blurring, unsharp masking, histograms, etc. It has more than 110 image filters and color adjustments, some of which are unique to Pixelitor. Some of the gradients are unique to Pixelator.\n \n ", - "id": "io_sourceforge_Pixelitor", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0-only", - "is_free_license": true, - "app_id": "io.sourceforge.Pixelitor", - "icon": "https://dl.flathub.org/media/io/sourceforge/Pixelitor/cdb52f9f4ef9d1584585df4febcff35d/icons/128x128/io.sourceforge.Pixelitor.png", - "main_categories": "graphics", - "sub_categories": [ - "2DGraphics", - "RasterGraphics" - ], - "developer_name": "László Balázs-Csíki", - "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": 1732539427, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1610613500, - "trending": 7.362683679118491, - "installs_last_month": 319, - "isMobileFriendly": false - }, - { - "name": "Vipsdisp", - "keywords": [ - "vipsdisp", - "graphic", - "view", - "image" - ], - "summary": "Image viewer", - "description": "\nVipsdisp can display huge (many, many gigabyte) images quickly and without\nusing much memory.\n\nAs well as the usual PNG, JPG, TIF, PDF, SVG, WEBP, JP2, JXL and GIF,\nit supports many scientific and technical image formats, including SVS,\nMRXS, OpenEXR, FITS, Matlab, NIfTI, Analyze, and PFM.\n\nVipsdisp supports pixel types from 1 bit mono to 128-bit double precision\ncomplex, you can convert image formats, it support copy-paste and drag-drop,\nand it has a range of useful visualisation tools and display modes.\n \n ", - "id": "org_libvips_vipsdisp", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT", - "is_free_license": true, - "app_id": "org.libvips.vipsdisp", - "icon": "https://dl.flathub.org/media/org/libvips/vipsdisp/1a35339ce6c5762290c8e123ca28fc5a/icons/128x128/org.libvips.vipsdisp.png", - "main_categories": "graphics", - "sub_categories": [ - "2DGraphics", - "RasterGraphics" - ], - "developer_name": "jcupitt", - "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/47", - "updated_at": 1731671595, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1632924203, - "trending": 15.173136947814744, - "installs_last_month": 307, + "trending": 6.10277963676509, + "installs_last_month": 343, "isMobileFriendly": false }, { @@ -52269,8 +52186,91 @@ "x86_64" ], "added_at": 1728977151, - "trending": 5.210375306484146, - "installs_last_month": 292, + "trending": 6.546352740906714, + "installs_last_month": 332, + "isMobileFriendly": false + }, + { + "name": "Vipsdisp", + "keywords": [ + "vipsdisp", + "graphic", + "view", + "image" + ], + "summary": "Image viewer", + "description": "\nVipsdisp can display huge (many, many gigabyte) images quickly and without\nusing much memory.\n\nAs well as the usual PNG, JPG, TIF, PDF, SVG, WEBP, JP2, JXL and GIF,\nit supports many scientific and technical image formats, including SVS,\nMRXS, OpenEXR, FITS, Matlab, NIfTI, Analyze, and PFM.\n\nVipsdisp supports pixel types from 1 bit mono to 128-bit double precision\ncomplex, you can convert image formats, it support copy-paste and drag-drop,\nand it has a range of useful visualisation tools and display modes.\n \n ", + "id": "org_libvips_vipsdisp", + "type": "desktop-application", + "translations": {}, + "project_license": "MIT", + "is_free_license": true, + "app_id": "org.libvips.vipsdisp", + "icon": "https://dl.flathub.org/media/org/libvips/vipsdisp/1a35339ce6c5762290c8e123ca28fc5a/icons/128x128/org.libvips.vipsdisp.png", + "main_categories": "graphics", + "sub_categories": [ + "2DGraphics", + "RasterGraphics" + ], + "developer_name": "jcupitt", + "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/47", + "updated_at": 1731671595, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1632924203, + "trending": 17.070162316403195, + "installs_last_month": 318, + "isMobileFriendly": false + }, + { + "name": "Pixelitor", + "keywords": [ + "pixelitor", + "graphic", + "design", + "illustration", + "painting" + ], + "summary": "Open source image editor", + "description": "\n \tPixelitor is an advanced image editor with support for layers, layer masks, text layers, multiple undo, blending modes, cropping, Gaussian blurring, unsharp masking, histograms, etc. It has more than 110 image filters and color adjustments, some of which are unique to Pixelitor. Some of the gradients are unique to Pixelator.\n \n ", + "id": "io_sourceforge_Pixelitor", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0-only", + "is_free_license": true, + "app_id": "io.sourceforge.Pixelitor", + "icon": "https://dl.flathub.org/media/io/sourceforge/Pixelitor/cdb52f9f4ef9d1584585df4febcff35d/icons/128x128/io.sourceforge.Pixelitor.png", + "main_categories": "graphics", + "sub_categories": [ + "2DGraphics", + "RasterGraphics" + ], + "developer_name": "László Balázs-Csíki", + "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": 1732539427, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1610613500, + "trending": 7.245641938084152, + "installs_last_month": 317, "isMobileFriendly": false }, { @@ -52307,8 +52307,8 @@ "aarch64" ], "added_at": 1715582112, - "trending": 6.155432060874581, - "installs_last_month": 241, + "trending": 6.255661855029684, + "installs_last_month": 243, "isMobileFriendly": false }, { @@ -52348,8 +52348,8 @@ "aarch64" ], "added_at": 1693288565, - "trending": 3.6124913868256248, - "installs_last_month": 222, + "trending": 1.8370250092710096, + "installs_last_month": 231, "isMobileFriendly": false }, { @@ -52385,8 +52385,8 @@ "aarch64" ], "added_at": 1633814086, - "trending": 11.985631146267789, - "installs_last_month": 163, + "trending": 9.555444537037486, + "installs_last_month": 155, "isMobileFriendly": false }, { @@ -52420,45 +52420,8 @@ "aarch64" ], "added_at": 1699220563, - "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, + "trending": 2.6098016578364693, + "installs_last_month": 145, "isMobileFriendly": false }, { @@ -52619,8 +52582,8 @@ "aarch64" ], "added_at": 1670839153, - "trending": 10.32662521648369, - "installs_last_month": 104, + "trending": 6.577171798092454, + "installs_last_month": 113, "isMobileFriendly": false }, { @@ -52751,8 +52714,45 @@ "aarch64" ], "added_at": 1549030167, - "trending": 8.63581222729754, - "installs_last_month": 96, + "trending": 6.320183727539351, + "installs_last_month": 104, + "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": 102, "isMobileFriendly": false }, { @@ -52786,8 +52786,8 @@ "aarch64" ], "added_at": 1597043509, - "trending": 0.9416292591251104, - "installs_last_month": 96, + "trending": 0.49009761772795846, + "installs_last_month": 95, "isMobileFriendly": false }, { @@ -52828,8 +52828,8 @@ "aarch64" ], "added_at": 1740511578, - "trending": 4.456832772240226, - "installs_last_month": 78, + "trending": 5.173534372880315, + "installs_last_month": 79, "isMobileFriendly": false }, { @@ -52937,7 +52937,7 @@ ], "added_at": 1690703469, "trending": 7.4258674386377805, - "installs_last_month": 69, + "installs_last_month": 73, "isMobileFriendly": false }, { @@ -52980,8 +52980,8 @@ "aarch64" ], "added_at": 1702298026, - "trending": 7.633521442260931, - "installs_last_month": 53, + "trending": 5.5543682176789595, + "installs_last_month": 62, "isMobileFriendly": false }, { @@ -53019,8 +53019,8 @@ "aarch64" ], "added_at": 1692419787, - "trending": 9.38192099056553, - "installs_last_month": 35, + "trending": 10.79870434446757, + "installs_last_month": 39, "isMobileFriendly": false }, { @@ -53058,8 +53058,8 @@ "aarch64" ], "added_at": 1686904298, - "trending": 6.697819891291061, - "installs_last_month": 29, + "trending": 8.78742264234894, + "installs_last_month": 33, "isMobileFriendly": false }, { @@ -53109,8 +53109,8 @@ "aarch64" ], "added_at": 1609367784, - "trending": 9.542180008490076, - "installs_last_month": 22, + "trending": 11.07185771871434, + "installs_last_month": 26, "isMobileFriendly": false }, { @@ -53146,12 +53146,12 @@ ], "added_at": 1702298069, "trending": 6.598025090213771, - "installs_last_month": 12, + "installs_last_month": 14, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 10, + "processingTimeMs": 9, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -53207,8 +53207,8 @@ "x86_64" ], "added_at": 1492029203, - "trending": 10.529053000350904, - "installs_last_month": 21556, + "trending": 9.844785907738483, + "installs_last_month": 22441, "isMobileFriendly": false }, { @@ -53256,8 +53256,8 @@ "aarch64" ], "added_at": 1587977342, - "trending": 14.194865552891969, - "installs_last_month": 11299, + "trending": 12.41298804336614, + "installs_last_month": 11686, "isMobileFriendly": false }, { @@ -53305,8 +53305,8 @@ "aarch64" ], "added_at": 1704947779, - "trending": 9.395247285213518, - "installs_last_month": 7657, + "trending": 8.456747050280093, + "installs_last_month": 7889, "isMobileFriendly": false }, { @@ -53353,8 +53353,8 @@ "x86_64" ], "added_at": 1570749895, - "trending": 8.744855229949838, - "installs_last_month": 2721, + "trending": 8.4570046576052, + "installs_last_month": 2796, "isMobileFriendly": false }, { @@ -53387,8 +53387,8 @@ "x86_64" ], "added_at": 1635841433, - "trending": 7.377674482172365, - "installs_last_month": 1581, + "trending": 7.706464785249579, + "installs_last_month": 1649, "isMobileFriendly": false }, { @@ -53472,8 +53472,8 @@ "aarch64" ], "added_at": 1717581622, - "trending": 14.894605868921383, - "installs_last_month": 1470, + "trending": 16.902567238159506, + "installs_last_month": 1519, "isMobileFriendly": false }, { @@ -53537,8 +53537,8 @@ "aarch64" ], "added_at": 1534106050, - "trending": 8.68572111157361, - "installs_last_month": 1321, + "trending": 10.803273934418394, + "installs_last_month": 1376, "isMobileFriendly": false }, { @@ -53572,8 +53572,8 @@ "x86_64" ], "added_at": 1617052444, - "trending": 7.155025995595325, - "installs_last_month": 1262, + "trending": 8.427332669792243, + "installs_last_month": 1298, "isMobileFriendly": false }, { @@ -53612,8 +53612,8 @@ "aarch64" ], "added_at": 1566193625, - "trending": 7.763833764647129, - "installs_last_month": 1070, + "trending": 8.616490823790292, + "installs_last_month": 1128, "isMobileFriendly": false }, { @@ -53649,8 +53649,8 @@ "aarch64" ], "added_at": 1618295586, - "trending": 3.8302324417650375, - "installs_last_month": 1045, + "trending": 1.1119368465148431, + "installs_last_month": 1101, "isMobileFriendly": false }, { @@ -53685,8 +53685,8 @@ "aarch64" ], "added_at": 1706170421, - "trending": 8.81048033165973, - "installs_last_month": 923, + "trending": 10.761052341194526, + "installs_last_month": 943, "isMobileFriendly": false }, { @@ -53726,8 +53726,8 @@ "aarch64" ], "added_at": 1656789987, - "trending": 3.821834808476658, - "installs_last_month": 658, + "trending": 3.370455807644476, + "installs_last_month": 669, "isMobileFriendly": false }, { @@ -53774,8 +53774,8 @@ "x86_64" ], "added_at": 1689139787, - "trending": 7.123316875503431, - "installs_last_month": 617, + "trending": 6.933397129899087, + "installs_last_month": 647, "isMobileFriendly": false }, { @@ -53826,8 +53826,8 @@ "x86_64" ], "added_at": 1646382871, - "trending": 4.643506553338735, - "installs_last_month": 547, + "trending": 7.113833946452311, + "installs_last_month": 557, "isMobileFriendly": false }, { @@ -53861,8 +53861,8 @@ "aarch64" ], "added_at": 1549030305, - "trending": 7.489320400003027, - "installs_last_month": 358, + "trending": 8.378300501168694, + "installs_last_month": 361, "isMobileFriendly": false }, { @@ -53909,8 +53909,8 @@ "x86_64" ], "added_at": 1714134302, - "trending": 0.36192368646196793, - "installs_last_month": 330, + "trending": 2.4404771459576637, + "installs_last_month": 345, "isMobileFriendly": false }, { @@ -53958,8 +53958,8 @@ "aarch64" ], "added_at": 1640942143, - "trending": 2.5575604164411794, - "installs_last_month": 294, + "trending": -1.0280187664965066, + "installs_last_month": 303, "isMobileFriendly": false }, { @@ -53992,8 +53992,8 @@ "x86_64" ], "added_at": 1584728951, - "trending": 0.785773842434504, - "installs_last_month": 264, + "trending": 1.1207083426446158, + "installs_last_month": 279, "isMobileFriendly": false }, { @@ -54027,8 +54027,8 @@ "aarch64" ], "added_at": 1523357460, - "trending": 9.655506286872283, - "installs_last_month": 252, + "trending": 6.819847734732536, + "installs_last_month": 266, "isMobileFriendly": false }, { @@ -54061,8 +54061,8 @@ "x86_64" ], "added_at": 1740275069, - "trending": 3.81643336977989, - "installs_last_month": 172, + "trending": 6.92366440530098, + "installs_last_month": 170, "isMobileFriendly": false }, { @@ -54095,8 +54095,8 @@ "x86_64" ], "added_at": 1704479660, - "trending": 4.308157638634171, - "installs_last_month": 156, + "trending": 4.522453248858139, + "installs_last_month": 167, "isMobileFriendly": false }, { @@ -54137,8 +54137,8 @@ "aarch64" ], "added_at": 1691394672, - "trending": 13.38664478091626, - "installs_last_month": 150, + "trending": 10.103287954197691, + "installs_last_month": 159, "isMobileFriendly": false }, { @@ -54173,7 +54173,7 @@ ], "added_at": 1645522176, "trending": 5.362434831159005, - "installs_last_month": 72, + "installs_last_month": 71, "isMobileFriendly": false } ], @@ -54264,8 +54264,8 @@ "aarch64" ], "added_at": 1529320559, - "trending": 5.555187380437769, - "installs_last_month": 1160, + "trending": 1.8924053604779276, + "installs_last_month": 1185, "isMobileFriendly": false }, { @@ -54313,8 +54313,8 @@ "aarch64" ], "added_at": 1675625326, - "trending": 7.820838580036169, - "installs_last_month": 850, + "trending": 13.104496949373562, + "installs_last_month": 887, "isMobileFriendly": false } ], @@ -54547,8 +54547,8 @@ "aarch64" ], "added_at": 1604311353, - "trending": 11.642276767732168, - "installs_last_month": 13089, + "trending": 11.953140897162246, + "installs_last_month": 14942, "isMobileFriendly": false }, { @@ -54647,8 +54647,8 @@ "aarch64" ], "added_at": 1493820137, - "trending": 7.627396081161051, - "installs_last_month": 6599, + "trending": 6.8609035302439425, + "installs_last_month": 6900, "isMobileFriendly": false }, { @@ -54820,8 +54820,8 @@ "aarch64" ], "added_at": 1590656772, - "trending": 5.376169242363517, - "installs_last_month": 4299, + "trending": 6.0814275198315455, + "installs_last_month": 4478, "isMobileFriendly": false }, { @@ -54970,8 +54970,8 @@ "x86_64" ], "added_at": 1552521014, - "trending": 11.957688535415926, - "installs_last_month": 4185, + "trending": 9.350421432006032, + "installs_last_month": 4348, "isMobileFriendly": false }, { @@ -55188,8 +55188,8 @@ "aarch64" ], "added_at": 1537942745, - "trending": 8.123179008400808, - "installs_last_month": 3947, + "trending": 7.458472535255304, + "installs_last_month": 4007, "isMobileFriendly": false }, { @@ -55242,8 +55242,8 @@ "aarch64" ], "added_at": 1569160081, - "trending": 7.6911240877124545, - "installs_last_month": 2574, + "trending": 5.947260849662762, + "installs_last_month": 2666, "isMobileFriendly": false }, { @@ -55458,8 +55458,8 @@ "aarch64" ], "added_at": 1632216005, - "trending": 10.040828145671366, - "installs_last_month": 2561, + "trending": 11.031007862133562, + "installs_last_month": 2633, "isMobileFriendly": false }, { @@ -55694,8 +55694,8 @@ "aarch64" ], "added_at": 1504908959, - "trending": 11.974920611843162, - "installs_last_month": 1738, + "trending": 12.161843043855017, + "installs_last_month": 1749, "isMobileFriendly": false }, { @@ -55729,8 +55729,8 @@ "aarch64" ], "added_at": 1632394398, - "trending": 11.850482678252266, - "installs_last_month": 1660, + "trending": 11.259912490070606, + "installs_last_month": 1701, "isMobileFriendly": false }, { @@ -55776,8 +55776,8 @@ "aarch64" ], "added_at": 1654498649, - "trending": 11.40080028478032, - "installs_last_month": 1567, + "trending": 10.984668535151858, + "installs_last_month": 1612, "isMobileFriendly": false }, { @@ -55819,8 +55819,8 @@ "aarch64" ], "added_at": 1604472263, - "trending": 12.498541616588383, - "installs_last_month": 1016, + "trending": 11.893222858451775, + "installs_last_month": 1018, "isMobileFriendly": false }, { @@ -55936,8 +55936,8 @@ "aarch64" ], "added_at": 1588835645, - "trending": 7.7313688200820465, - "installs_last_month": 334, + "trending": 4.9422132038182, + "installs_last_month": 355, "isMobileFriendly": false }, { @@ -56098,8 +56098,8 @@ "aarch64" ], "added_at": 1642623110, - "trending": 12.631519248491228, - "installs_last_month": 297, + "trending": 9.124758633982566, + "installs_last_month": 310, "isMobileFriendly": false }, { @@ -56134,8 +56134,8 @@ "aarch64" ], "added_at": 1612518480, - "trending": 8.882143023139072, - "installs_last_month": 263, + "trending": 9.696065561336685, + "installs_last_month": 277, "isMobileFriendly": false }, { @@ -56179,8 +56179,8 @@ "aarch64" ], "added_at": 1704220813, - "trending": 7.921453942216554, - "installs_last_month": 200, + "trending": 7.2767825911484305, + "installs_last_month": 204, "isMobileFriendly": false }, { @@ -56314,8 +56314,8 @@ "aarch64" ], "added_at": 1643795741, - "trending": 15.607882523241994, - "installs_last_month": 187, + "trending": 12.341082673721518, + "installs_last_month": 198, "isMobileFriendly": false }, { @@ -56349,8 +56349,8 @@ "aarch64" ], "added_at": 1609089747, - "trending": 8.749819386599619, - "installs_last_month": 169, + "trending": 6.946846584488846, + "installs_last_month": 162, "isMobileFriendly": false }, { @@ -56384,8 +56384,8 @@ "aarch64" ], "added_at": 1658438671, - "trending": 13.388888989162888, - "installs_last_month": 75, + "trending": 13.389349331143354, + "installs_last_month": 74, "isMobileFriendly": true } ], @@ -56433,8 +56433,8 @@ "aarch64" ], "added_at": 1536914776, - "trending": 8.853983073952232, - "installs_last_month": 3915, + "trending": 7.137500261852329, + "installs_last_month": 4090, "isMobileFriendly": false }, { @@ -56482,8 +56482,8 @@ "aarch64" ], "added_at": 1640942143, - "trending": 2.5575604164411794, - "installs_last_month": 294, + "trending": -1.0280187664965066, + "installs_last_month": 303, "isMobileFriendly": false } ], @@ -56730,8 +56730,8 @@ "aarch64" ], "added_at": 1507913183, - "trending": 5.529375113115509, - "installs_last_month": 87644, + "trending": 5.837290052365388, + "installs_last_month": 90858, "isMobileFriendly": false }, { @@ -56912,8 +56912,8 @@ "aarch64" ], "added_at": 1515426923, - "trending": 9.916595722146756, - "installs_last_month": 28934, + "trending": 8.665331337485101, + "installs_last_month": 29922, "isMobileFriendly": false }, { @@ -57029,8 +57029,8 @@ "aarch64" ], "added_at": 1545160256, - "trending": 12.579792476584494, - "installs_last_month": 8531, + "trending": 10.22053910356758, + "installs_last_month": 8843, "isMobileFriendly": false }, { @@ -57260,8 +57260,8 @@ "aarch64" ], "added_at": 1501347955, - "trending": 14.744109726416337, - "installs_last_month": 4766, + "trending": 11.17259270579124, + "installs_last_month": 4942, "isMobileFriendly": false }, { @@ -57410,8 +57410,8 @@ "x86_64" ], "added_at": 1552521014, - "trending": 11.957688535415926, - "installs_last_month": 4185, + "trending": 9.350421432006032, + "installs_last_month": 4348, "isMobileFriendly": false }, { @@ -57602,8 +57602,8 @@ "aarch64" ], "added_at": 1535101380, - "trending": 13.45255275552272, - "installs_last_month": 4142, + "trending": 10.042339085174374, + "installs_last_month": 4283, "isMobileFriendly": false }, { @@ -57637,8 +57637,8 @@ "x86_64" ], "added_at": 1683789134, - "trending": 8.848487578254291, - "installs_last_month": 4113, + "trending": 6.760001042018769, + "installs_last_month": 4250, "isMobileFriendly": false }, { @@ -57672,8 +57672,8 @@ "x86_64" ], "added_at": 1666335052, - "trending": 7.884849095489468, - "installs_last_month": 3515, + "trending": 8.471328191096239, + "installs_last_month": 3652, "isMobileFriendly": false }, { @@ -57726,8 +57726,8 @@ "aarch64" ], "added_at": 1569160081, - "trending": 7.6911240877124545, - "installs_last_month": 2574, + "trending": 5.947260849662762, + "installs_last_month": 2666, "isMobileFriendly": false }, { @@ -57942,8 +57942,8 @@ "aarch64" ], "added_at": 1632216005, - "trending": 10.040828145671366, - "installs_last_month": 2561, + "trending": 11.031007862133562, + "installs_last_month": 2633, "isMobileFriendly": false }, { @@ -57978,8 +57978,8 @@ "aarch64" ], "added_at": 1530101282, - "trending": 8.247340001919707, - "installs_last_month": 1785, + "trending": 6.813407550922955, + "installs_last_month": 1862, "isMobileFriendly": false }, { @@ -58025,8 +58025,8 @@ "aarch64" ], "added_at": 1576949749, - "trending": 9.06800721492854, - "installs_last_month": 1632, + "trending": 7.837161070238412, + "installs_last_month": 1693, "isMobileFriendly": false }, { @@ -58062,8 +58062,8 @@ "aarch64" ], "added_at": 1584687957, - "trending": 1.521438531499256, - "installs_last_month": 1483, + "trending": 0.1127548536507994, + "installs_last_month": 1456, "isMobileFriendly": false }, { @@ -58098,8 +58098,8 @@ "aarch64" ], "added_at": 1494999503, - "trending": 10.933543671791238, - "installs_last_month": 1108, + "trending": 11.204279629664184, + "installs_last_month": 1120, "isMobileFriendly": false }, { @@ -58133,8 +58133,8 @@ "x86_64" ], "added_at": 1527195269, - "trending": 2.7182801252498177, - "installs_last_month": 946, + "trending": 1.3287246161246904, + "installs_last_month": 981, "isMobileFriendly": false }, { @@ -58178,8 +58178,8 @@ "aarch64" ], "added_at": 1524505098, - "trending": 7.661603096947432, - "installs_last_month": 819, + "trending": 6.936009976057825, + "installs_last_month": 834, "isMobileFriendly": false }, { @@ -58222,8 +58222,8 @@ "aarch64" ], "added_at": 1533642989, - "trending": 11.7069738665598, - "installs_last_month": 801, + "trending": 11.99291407315756, + "installs_last_month": 810, "isMobileFriendly": false }, { @@ -58294,10 +58294,51 @@ "aarch64" ], "added_at": 1693099281, - "trending": 0.2943435318234774, + "trending": -1.1802982762695098, "installs_last_month": 737, "isMobileFriendly": false }, + { + "name": "Vipsdisp", + "keywords": [ + "vipsdisp", + "graphic", + "view", + "image" + ], + "summary": "Image viewer", + "description": "\nVipsdisp can display huge (many, many gigabyte) images quickly and without\nusing much memory.\n\nAs well as the usual PNG, JPG, TIF, PDF, SVG, WEBP, JP2, JXL and GIF,\nit supports many scientific and technical image formats, including SVS,\nMRXS, OpenEXR, FITS, Matlab, NIfTI, Analyze, and PFM.\n\nVipsdisp supports pixel types from 1 bit mono to 128-bit double precision\ncomplex, you can convert image formats, it support copy-paste and drag-drop,\nand it has a range of useful visualisation tools and display modes.\n \n ", + "id": "org_libvips_vipsdisp", + "type": "desktop-application", + "translations": {}, + "project_license": "MIT", + "is_free_license": true, + "app_id": "org.libvips.vipsdisp", + "icon": "https://dl.flathub.org/media/org/libvips/vipsdisp/1a35339ce6c5762290c8e123ca28fc5a/icons/128x128/org.libvips.vipsdisp.png", + "main_categories": "graphics", + "sub_categories": [ + "2DGraphics", + "RasterGraphics" + ], + "developer_name": "jcupitt", + "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/47", + "updated_at": 1731671595, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1632924203, + "trending": 17.070162316403195, + "installs_last_month": 318, + "isMobileFriendly": false + }, { "name": "Pixelitor", "keywords": [ @@ -58336,49 +58377,8 @@ "aarch64" ], "added_at": 1610613500, - "trending": 7.362683679118491, - "installs_last_month": 319, - "isMobileFriendly": false - }, - { - "name": "Vipsdisp", - "keywords": [ - "vipsdisp", - "graphic", - "view", - "image" - ], - "summary": "Image viewer", - "description": "\nVipsdisp can display huge (many, many gigabyte) images quickly and without\nusing much memory.\n\nAs well as the usual PNG, JPG, TIF, PDF, SVG, WEBP, JP2, JXL and GIF,\nit supports many scientific and technical image formats, including SVS,\nMRXS, OpenEXR, FITS, Matlab, NIfTI, Analyze, and PFM.\n\nVipsdisp supports pixel types from 1 bit mono to 128-bit double precision\ncomplex, you can convert image formats, it support copy-paste and drag-drop,\nand it has a range of useful visualisation tools and display modes.\n \n ", - "id": "org_libvips_vipsdisp", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT", - "is_free_license": true, - "app_id": "org.libvips.vipsdisp", - "icon": "https://dl.flathub.org/media/org/libvips/vipsdisp/1a35339ce6c5762290c8e123ca28fc5a/icons/128x128/org.libvips.vipsdisp.png", - "main_categories": "graphics", - "sub_categories": [ - "2DGraphics", - "RasterGraphics" - ], - "developer_name": "jcupitt", - "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/47", - "updated_at": 1731671595, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1632924203, - "trending": 15.173136947814744, - "installs_last_month": 307, + "trending": 7.245641938084152, + "installs_last_month": 317, "isMobileFriendly": false }, { @@ -58415,8 +58415,8 @@ "aarch64" ], "added_at": 1715582112, - "trending": 6.155432060874581, - "installs_last_month": 241, + "trending": 6.255661855029684, + "installs_last_month": 243, "isMobileFriendly": false }, { @@ -58456,8 +58456,8 @@ "aarch64" ], "added_at": 1693288565, - "trending": 3.6124913868256248, - "installs_last_month": 222, + "trending": 1.8370250092710096, + "installs_last_month": 231, "isMobileFriendly": false }, { @@ -58493,8 +58493,8 @@ "aarch64" ], "added_at": 1633814086, - "trending": 11.985631146267789, - "installs_last_month": 163, + "trending": 9.555444537037486, + "installs_last_month": 155, "isMobileFriendly": false }, { @@ -58625,8 +58625,8 @@ "aarch64" ], "added_at": 1549030167, - "trending": 8.63581222729754, - "installs_last_month": 96, + "trending": 6.320183727539351, + "installs_last_month": 104, "isMobileFriendly": false }, { @@ -58667,8 +58667,8 @@ "aarch64" ], "added_at": 1740511578, - "trending": 4.456832772240226, - "installs_last_month": 78, + "trending": 5.173534372880315, + "installs_last_month": 79, "isMobileFriendly": false }, { @@ -58776,7 +58776,7 @@ ], "added_at": 1690703469, "trending": 7.4258674386377805, - "installs_last_month": 69, + "installs_last_month": 73, "isMobileFriendly": false }, { @@ -58826,13 +58826,13 @@ "aarch64" ], "added_at": 1609367784, - "trending": 9.542180008490076, - "installs_last_month": 22, + "trending": 11.07185771871434, + "installs_last_month": 26, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 7, + "processingTimeMs": 8, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -59062,8 +59062,8 @@ "aarch64" ], "added_at": 1674053091, - "trending": 8.30364050096181, - "installs_last_month": 7435, + "trending": 12.62641022726194, + "installs_last_month": 7624, "isMobileFriendly": false }, { @@ -59097,8 +59097,8 @@ "x86_64" ], "added_at": 1666335052, - "trending": 7.884849095489468, - "installs_last_month": 3515, + "trending": 8.471328191096239, + "installs_last_month": 3652, "isMobileFriendly": false }, { @@ -59137,8 +59137,8 @@ "aarch64" ], "added_at": 1535561442, - "trending": 8.42334311713236, - "installs_last_month": 2070, + "trending": 8.984856888463922, + "installs_last_month": 2108, "isMobileFriendly": false }, { @@ -59325,86 +59325,8 @@ "aarch64" ], "added_at": 1702975151, - "trending": 12.941258517615204, - "installs_last_month": 1520, - "isMobileFriendly": false - }, - { - "name": "Scans to PDF", - "keywords": [ - "djpdf", - "OCR", - "convert", - "PDF", - "image" - ], - "summary": "Create small, searchable PDFs from scanned documents", - "description": "\n Create small, searchable PDFs from scanned documents.\n The program divides images into bitonal foreground images (text)\n and a color background image, then compresses them separately.\n An invisible OCR text layer is added, making the PDF searchable.\n \n \n Color and grayscale scans need some preparation for good results.\n Recommended tools are Scan Tailor or GIMP.\n \n \n A GUI and command line interface are included.\n \n ", - "id": "com_github_unrud_djpdf", - "type": "desktop-application", - "translations": { - "de": { - "description": "Erstelle kleine, durchsuchbare PDFs aus gescannten Dokumenten. Das Programm teilt Bilder in einfarbige Vordergrundbilder (Text) und ein farbiges Hintergrundbild auf und komprimiert sie dann separat. Eine unsichtbare OCR-Textebene wird hinzugefügt, um das PDF durchsuchbar zu machen.\n Farb- und Graustufen-Scans müssen für gute Ergebnisse vorbereitet werden. Empfohlene Werkzeuge dafür sind Scan Tailor oder GIMP.\n Eine grafische Oberfläche und ein Kommandozeilen-Werkzeug sind enthalten.\n ", - "name": "Scans zu PDF", - "summary": "Erstelle kleine, durchsuchbare PDFs aus gescannten Dokumenten" - }, - "es": { - "description": "Crea archivos PDF pequeños y con capacidad para buscar texto en los documentos escaneados. El programa divide las imágenes en imágenes bitonales de primer plano (texto) y una imagen de fondo en color, y luego las comprime por separado. Se agrega una capa de texto OCR invisible, lo que permite realizar búsquedas en el PDF.\n Para obtener buenos resultados, los archivos escaneados en color y escala de grises deben prepararse adecuadamente. Para ello, recomendamos Scan Tailor o GIMP.\n Se incluye una interfaz gráfica de usuario y una interfaz de línea de comandos.\n ", - "name": "Escanear a un PDF", - "summary": "Crea pequeños archivos PDF a partir de documentos escaneados donde puedas buscar texto" - }, - "et": { - "description": "Loo skaneeritud failidest väikesed ja otsitava sisuga PDF-failid. See rakendus jagab pildid kaheks pildiks: esiplaanil mustvalge pilt (tekst) ja taustal värviline pilt ning pakib nad kokku eraldi. Lisaks muudame optilise tekstituvastuse abil tekstipildid tavatekstiks ja salvestame ta nähtamatu andmekihina ning sellega muudame PDF-faili otsitavaks.\n Heade tulemuste jaoks peavad värvilised ja halltoonides skaneeritud failid olema korralikult ette valmistatud. Selleks soovitame rakendusi Scan Tailor või GIMP.\n Rakendusel on nii graafiline kasutajaliides, kui ka käsurea klient.\n ", - "name": "Skaneeringute konverter PDF-failideks", - "summary": "Loo skaneeritud dokumentidest väikeseid PDF-faile, kust saad teksti otsida" - }, - "hu": { - "description": "Kisméretű, kereshető PDF-fájlok létrehozása a beolvasott dokumentumokból. Az alkalmazás a képeket bitonális előtérképekre (szövegekre) és színes háttérképekre osztja, majd külön tömöríti őket. Egy láthatatlan OCR szövegréteg került hozzáadásra, így a PDF-fájl kereshetővé válik.\n A színes és szürkeárnyalatos szkenneléshez némi előkészület szükséges a jó eredmény eléréséhez. A Scan Tailor és a GIMP ajánlott eszközök.\n Grafikus felhasználói felület és parancssori felület tartozik hozzá.\n ", - "name": "PDF-fájlba beolvas", - "summary": "Kisméretű, kereshető PDF-fájlok létrehozása a beolvasott dokumentumokból" - }, - "nb-NO": { - "description": "Opprett små, søkbare PDF-er fra skannede dokumenter. Programmet deler bilder inn i bitonale forgrunnsbilder (tekst) og et fargelagt bakgrunnsbilde, og sammenpakker dem hver for seg. Et usynlig OCR-tekstlag legges til, noe som gjør PDF-en søkbar.\n Farge- og gråskalaskanninger trenger litt forberedelse for gode resultat. Verktøy som «Scan Tailor» eller «GIMP» anbefales.\n Et grensesnitt og en kommandolinje er inkludert.\n ", - "name": "Skanner til PDF", - "summary": "Opprett små, søkbare PDF-er fra skannede dokumenter" - }, - "nl": { - "description": "Maak korte, doorzoekbare pdf-bestanden van gescande documenten. Deze toepassing zet afbeeldingen om naar bitonale voorgrondafbeeldingen (tekst) en een gekleurde achtergrond. Vervolgens wordt op beide (los van elkaar) compressie toegepast. Tot slot wordt een onzichtbare ocr-tekstlaag toegevoegd, waarmee de pdf-bestanden doorzoekbaar worden gemaakt.\n Voor het verwerken van kleuren- en grijswaardenscans is enige voorbereiding nodig. Aanbevolen hulpmiddelen: Scan Tailor, GIMP.\n Meegeleverd: grafische en terminaltoepassing (cli).\n ", - "name": "Scans-naar-pdf", - "summary": "Maak korte, doorzoekbare pdf-bestanden van gescande documenten" - }, - "ta": { - "description": "ச்கேன் செய்யப்பட்ட ஆவணங்களிலிருந்து சிறிய, தேடக்கூடிய PDF களை உருவாக்கவும். நிரல் படங்களை பிட்டோனல் முன்புற படங்கள் (உரை) மற்றும் வண்ண பின்னணி படமாக பிரிக்கிறது, பின்னர் அவற்றை தனித்தனியாக சுருக்குகிறது. கண்ணுக்கு தெரியாத OCR உரை அடுக்கு சேர்க்கப்பட்டு, PDF தேடக்கூடியதாக இருக்கும்.\n வண்ணம் மற்றும் கிரேச்கேல் ச்கேன்களுக்கு நல்ல முடிவுகளுக்கு சில தயாரிப்புகள் தேவை. பரிந்துரைக்கப்பட்ட கருவிகள் ச்கேன் தையல்காரர் அல்லது சிம்ப்.\n ஒரு GUI மற்றும் கட்டளை வரி இடைமுகம் சேர்க்கப்பட்டுள்ளது.\n ", - "name": "PDF க்கு ச்கேன்", - "summary": "ச்கேன் செய்யப்பட்ட ஆவணங்களிலிருந்து சிறிய, தேடக்கூடிய PDF களை உருவாக்கவும்" - } - }, - "project_license": "GPL-3.0-or-later", - "is_free_license": true, - "app_id": "com.github.unrud.djpdf", - "icon": "https://dl.flathub.org/media/com/github/unrud.djpdf/149ff74038f61ce3c164f113bcf47f9b/icons/128x128/com.github.unrud.djpdf.png", - "main_categories": "graphics", - "sub_categories": [ - "Scanning", - "OCR" - ], - "developer_name": "Unrud", - "verification_verified": true, - "verification_method": "login_provider", - "verification_login_name": "unrud", - "verification_login_provider": "github", - "verification_login_is_organization": "true", - "verification_website": null, - "verification_timestamp": "1677454308", - "runtime": "org.kde.Platform/x86_64/6.8", - "updated_at": 1735488656, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1529320559, - "trending": 5.555187380437769, - "installs_last_month": 1160, + "trending": 11.64693825616298, + "installs_last_month": 1571, "isMobileFriendly": false }, { @@ -59608,8 +59530,86 @@ "aarch64" ], "added_at": 1727081852, - "trending": 4.56322362616042, - "installs_last_month": 1132, + "trending": 3.707779294373072, + "installs_last_month": 1187, + "isMobileFriendly": false + }, + { + "name": "Scans to PDF", + "keywords": [ + "djpdf", + "OCR", + "convert", + "PDF", + "image" + ], + "summary": "Create small, searchable PDFs from scanned documents", + "description": "\n Create small, searchable PDFs from scanned documents.\n The program divides images into bitonal foreground images (text)\n and a color background image, then compresses them separately.\n An invisible OCR text layer is added, making the PDF searchable.\n \n \n Color and grayscale scans need some preparation for good results.\n Recommended tools are Scan Tailor or GIMP.\n \n \n A GUI and command line interface are included.\n \n ", + "id": "com_github_unrud_djpdf", + "type": "desktop-application", + "translations": { + "de": { + "description": "Erstelle kleine, durchsuchbare PDFs aus gescannten Dokumenten. Das Programm teilt Bilder in einfarbige Vordergrundbilder (Text) und ein farbiges Hintergrundbild auf und komprimiert sie dann separat. Eine unsichtbare OCR-Textebene wird hinzugefügt, um das PDF durchsuchbar zu machen.\n Farb- und Graustufen-Scans müssen für gute Ergebnisse vorbereitet werden. Empfohlene Werkzeuge dafür sind Scan Tailor oder GIMP.\n Eine grafische Oberfläche und ein Kommandozeilen-Werkzeug sind enthalten.\n ", + "name": "Scans zu PDF", + "summary": "Erstelle kleine, durchsuchbare PDFs aus gescannten Dokumenten" + }, + "es": { + "description": "Crea archivos PDF pequeños y con capacidad para buscar texto en los documentos escaneados. El programa divide las imágenes en imágenes bitonales de primer plano (texto) y una imagen de fondo en color, y luego las comprime por separado. Se agrega una capa de texto OCR invisible, lo que permite realizar búsquedas en el PDF.\n Para obtener buenos resultados, los archivos escaneados en color y escala de grises deben prepararse adecuadamente. Para ello, recomendamos Scan Tailor o GIMP.\n Se incluye una interfaz gráfica de usuario y una interfaz de línea de comandos.\n ", + "name": "Escanear a un PDF", + "summary": "Crea pequeños archivos PDF a partir de documentos escaneados donde puedas buscar texto" + }, + "et": { + "description": "Loo skaneeritud failidest väikesed ja otsitava sisuga PDF-failid. See rakendus jagab pildid kaheks pildiks: esiplaanil mustvalge pilt (tekst) ja taustal värviline pilt ning pakib nad kokku eraldi. Lisaks muudame optilise tekstituvastuse abil tekstipildid tavatekstiks ja salvestame ta nähtamatu andmekihina ning sellega muudame PDF-faili otsitavaks.\n Heade tulemuste jaoks peavad värvilised ja halltoonides skaneeritud failid olema korralikult ette valmistatud. Selleks soovitame rakendusi Scan Tailor või GIMP.\n Rakendusel on nii graafiline kasutajaliides, kui ka käsurea klient.\n ", + "name": "Skaneeringute konverter PDF-failideks", + "summary": "Loo skaneeritud dokumentidest väikeseid PDF-faile, kust saad teksti otsida" + }, + "hu": { + "description": "Kisméretű, kereshető PDF-fájlok létrehozása a beolvasott dokumentumokból. Az alkalmazás a képeket bitonális előtérképekre (szövegekre) és színes háttérképekre osztja, majd külön tömöríti őket. Egy láthatatlan OCR szövegréteg került hozzáadásra, így a PDF-fájl kereshetővé válik.\n A színes és szürkeárnyalatos szkenneléshez némi előkészület szükséges a jó eredmény eléréséhez. A Scan Tailor és a GIMP ajánlott eszközök.\n Grafikus felhasználói felület és parancssori felület tartozik hozzá.\n ", + "name": "PDF-fájlba beolvas", + "summary": "Kisméretű, kereshető PDF-fájlok létrehozása a beolvasott dokumentumokból" + }, + "nb-NO": { + "description": "Opprett små, søkbare PDF-er fra skannede dokumenter. Programmet deler bilder inn i bitonale forgrunnsbilder (tekst) og et fargelagt bakgrunnsbilde, og sammenpakker dem hver for seg. Et usynlig OCR-tekstlag legges til, noe som gjør PDF-en søkbar.\n Farge- og gråskalaskanninger trenger litt forberedelse for gode resultat. Verktøy som «Scan Tailor» eller «GIMP» anbefales.\n Et grensesnitt og en kommandolinje er inkludert.\n ", + "name": "Skanner til PDF", + "summary": "Opprett små, søkbare PDF-er fra skannede dokumenter" + }, + "nl": { + "description": "Maak korte, doorzoekbare pdf-bestanden van gescande documenten. Deze toepassing zet afbeeldingen om naar bitonale voorgrondafbeeldingen (tekst) en een gekleurde achtergrond. Vervolgens wordt op beide (los van elkaar) compressie toegepast. Tot slot wordt een onzichtbare ocr-tekstlaag toegevoegd, waarmee de pdf-bestanden doorzoekbaar worden gemaakt.\n Voor het verwerken van kleuren- en grijswaardenscans is enige voorbereiding nodig. Aanbevolen hulpmiddelen: Scan Tailor, GIMP.\n Meegeleverd: grafische en terminaltoepassing (cli).\n ", + "name": "Scans-naar-pdf", + "summary": "Maak korte, doorzoekbare pdf-bestanden van gescande documenten" + }, + "ta": { + "description": "ச்கேன் செய்யப்பட்ட ஆவணங்களிலிருந்து சிறிய, தேடக்கூடிய PDF களை உருவாக்கவும். நிரல் படங்களை பிட்டோனல் முன்புற படங்கள் (உரை) மற்றும் வண்ண பின்னணி படமாக பிரிக்கிறது, பின்னர் அவற்றை தனித்தனியாக சுருக்குகிறது. கண்ணுக்கு தெரியாத OCR உரை அடுக்கு சேர்க்கப்பட்டு, PDF தேடக்கூடியதாக இருக்கும்.\n வண்ணம் மற்றும் கிரேச்கேல் ச்கேன்களுக்கு நல்ல முடிவுகளுக்கு சில தயாரிப்புகள் தேவை. பரிந்துரைக்கப்பட்ட கருவிகள் ச்கேன் தையல்காரர் அல்லது சிம்ப்.\n ஒரு GUI மற்றும் கட்டளை வரி இடைமுகம் சேர்க்கப்பட்டுள்ளது.\n ", + "name": "PDF க்கு ச்கேன்", + "summary": "ச்கேன் செய்யப்பட்ட ஆவணங்களிலிருந்து சிறிய, தேடக்கூடிய PDF களை உருவாக்கவும்" + } + }, + "project_license": "GPL-3.0-or-later", + "is_free_license": true, + "app_id": "com.github.unrud.djpdf", + "icon": "https://dl.flathub.org/media/com/github/unrud.djpdf/149ff74038f61ce3c164f113bcf47f9b/icons/128x128/com.github.unrud.djpdf.png", + "main_categories": "graphics", + "sub_categories": [ + "Scanning", + "OCR" + ], + "developer_name": "Unrud", + "verification_verified": true, + "verification_method": "login_provider", + "verification_login_name": "unrud", + "verification_login_provider": "github", + "verification_login_is_organization": "true", + "verification_website": null, + "verification_timestamp": "1677454308", + "runtime": "org.kde.Platform/x86_64/6.8", + "updated_at": 1735488656, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1529320559, + "trending": 1.8924053604779276, + "installs_last_month": 1185, "isMobileFriendly": false }, { @@ -59657,8 +59657,8 @@ "aarch64" ], "added_at": 1675625326, - "trending": 7.820838580036169, - "installs_last_month": 850, + "trending": 13.104496949373562, + "installs_last_month": 887, "isMobileFriendly": false }, { @@ -59702,8 +59702,8 @@ "aarch64" ], "added_at": 1524505098, - "trending": 7.661603096947432, - "installs_last_month": 819, + "trending": 6.936009976057825, + "installs_last_month": 834, "isMobileFriendly": false }, { @@ -59740,8 +59740,8 @@ "aarch64" ], "added_at": 1643795709, - "trending": 14.076745104315428, - "installs_last_month": 722, + "trending": 11.15029046813978, + "installs_last_month": 725, "isMobileFriendly": false } ], @@ -59909,8 +59909,8 @@ "aarch64" ], "added_at": 1633090643, - "trending": 12.665886608675205, - "installs_last_month": 4499, + "trending": 15.527914370955362, + "installs_last_month": 4626, "isMobileFriendly": false }, { @@ -59944,8 +59944,8 @@ "x86_64" ], "added_at": 1646382533, - "trending": 8.671484168705799, - "installs_last_month": 1485, + "trending": 8.804082094396321, + "installs_last_month": 1484, "isMobileFriendly": false }, { @@ -59991,8 +59991,8 @@ "aarch64" ], "added_at": 1533313900, - "trending": 8.99361849467159, - "installs_last_month": 818, + "trending": 5.147581029428244, + "installs_last_month": 851, "isMobileFriendly": false }, { @@ -60035,8 +60035,8 @@ "aarch64" ], "added_at": 1533642989, - "trending": 11.7069738665598, - "installs_last_month": 801, + "trending": 11.99291407315756, + "installs_last_month": 810, "isMobileFriendly": false }, { @@ -60077,8 +60077,8 @@ "aarch64" ], "added_at": 1627289817, - "trending": 13.94837867956624, - "installs_last_month": 545, + "trending": 13.216773316469306, + "installs_last_month": 552, "isMobileFriendly": false }, { @@ -60178,8 +60178,8 @@ "aarch64" ], "added_at": 1621924425, - "trending": 8.099323645981572, - "installs_last_month": 496, + "trending": 3.739722145667309, + "installs_last_month": 494, "isMobileFriendly": false }, { @@ -60215,43 +60215,8 @@ "aarch64" ], "added_at": 1722667073, - "trending": 6.440087302271057, - "installs_last_month": 347, - "isMobileFriendly": false - }, - { - "name": "Fontmatrix", - "keywords": null, - "summary": "Font management application", - "description": "Fontmatrix is a font management application.It helps keeping your font collection in order, allowing you to enable and disable availability of fonts and font families in your system. This is typically in demand by designers who tend to have huge collections of typefaces.", - "id": "com_github_fontmatrix_Fontmatrix", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0+", - "is_free_license": true, - "app_id": "com.github.fontmatrix.Fontmatrix", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.github.fontmatrix.Fontmatrix.png", - "main_categories": "graphics", - "sub_categories": [ - "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.kde.Platform/x86_64/5.15-23.08", - "updated_at": 1704945066, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1600349360, - "trending": 8.622252545810252, - "installs_last_month": 300, + "trending": 6.10277963676509, + "installs_last_month": 343, "isMobileFriendly": false }, { @@ -60294,8 +60259,43 @@ "x86_64" ], "added_at": 1728977151, - "trending": 5.210375306484146, - "installs_last_month": 292, + "trending": 6.546352740906714, + "installs_last_month": 332, + "isMobileFriendly": false + }, + { + "name": "Fontmatrix", + "keywords": null, + "summary": "Font management application", + "description": "Fontmatrix is a font management application.It helps keeping your font collection in order, allowing you to enable and disable availability of fonts and font families in your system. This is typically in demand by designers who tend to have huge collections of typefaces.", + "id": "com_github_fontmatrix_Fontmatrix", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0+", + "is_free_license": true, + "app_id": "com.github.fontmatrix.Fontmatrix", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.github.fontmatrix.Fontmatrix.png", + "main_categories": "graphics", + "sub_categories": [ + "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.kde.Platform/x86_64/5.15-23.08", + "updated_at": 1704945066, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1600349360, + "trending": 12.207155631260784, + "installs_last_month": 317, "isMobileFriendly": false }, { @@ -60331,8 +60331,8 @@ "aarch64" ], "added_at": 1633814086, - "trending": 11.985631146267789, - "installs_last_month": 163, + "trending": 9.555444537037486, + "installs_last_month": 155, "isMobileFriendly": false }, { @@ -60369,7 +60369,7 @@ ], "added_at": 1611221418, "trending": -0.606631747016622, - "installs_last_month": 104, + "installs_last_month": 102, "isMobileFriendly": false }, { @@ -60405,7 +60405,7 @@ ], "added_at": 1702298069, "trending": 6.598025090213771, - "installs_last_month": 12, + "installs_last_month": 14, "isMobileFriendly": false } ], @@ -60628,8 +60628,8 @@ "aarch64" ], "added_at": 1524945841, - "trending": 11.137328187857388, - "installs_last_month": 22653, + "trending": 11.078415809260456, + "installs_last_month": 25298, "isMobileFriendly": false }, { @@ -60848,8 +60848,8 @@ "aarch64" ], "added_at": 1604311353, - "trending": 11.642276767732168, - "installs_last_month": 13089, + "trending": 11.953140897162246, + "installs_last_month": 14942, "isMobileFriendly": false }, { @@ -61080,8 +61080,8 @@ "aarch64" ], "added_at": 1680758681, - "trending": 12.632302437328542, - "installs_last_month": 9041, + "trending": 15.348968788233568, + "installs_last_month": 9298, "isMobileFriendly": true }, { @@ -61311,8 +61311,8 @@ "aarch64" ], "added_at": 1501347955, - "trending": 14.744109726416337, - "installs_last_month": 4766, + "trending": 11.17259270579124, + "installs_last_month": 4942, "isMobileFriendly": false }, { @@ -61437,8 +61437,8 @@ "aarch64" ], "added_at": 1573564346, - "trending": 14.64051887189055, - "installs_last_month": 4403, + "trending": 13.897256263829108, + "installs_last_month": 4535, "isMobileFriendly": true }, { @@ -61587,8 +61587,8 @@ "x86_64" ], "added_at": 1552521014, - "trending": 11.957688535415926, - "installs_last_month": 4185, + "trending": 9.350421432006032, + "installs_last_month": 4348, "isMobileFriendly": false }, { @@ -61803,8 +61803,8 @@ "aarch64" ], "added_at": 1632216005, - "trending": 10.040828145671366, - "installs_last_month": 2561, + "trending": 11.031007862133562, + "installs_last_month": 2633, "isMobileFriendly": false }, { @@ -61847,47 +61847,10 @@ "aarch64" ], "added_at": 1715583219, - "trending": 17.860189586349232, - "installs_last_month": 1527, + "trending": 15.800405104735155, + "installs_last_month": 1552, "isMobileFriendly": true }, - { - "name": "nomacs - Image Lounge", - "keywords": null, - "summary": "nomacs is a free, open source image viewer", - "description": "\n nomacs features semi-transparent widgets that display \n additional information such as thumbnails, metadata or histogram. \n It is able to browse images in zip or MS Office files which can be \n extracted to a directory. Metadata stored with the image can be \n displayed and you can add notes to images. A thumbnail preview of \n the current folder is included as well as a file explorer panel which \n allows switching between folders. Within a directory you can apply a \n file filter, so that only images are displayed whose filenames have a \n certain string or match a regular expression. Activating the cache \n allows for instantly switching between images.\n \n ", - "id": "org_nomacs_ImageLounge", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0", - "is_free_license": true, - "app_id": "org.nomacs.ImageLounge", - "icon": "https://dl.flathub.org/media/org/nomacs/ImageLounge/bd3e3fa07b8ebf46b6ab0ef5c23cbc09/icons/128x128/org.nomacs.ImageLounge.png", - "main_categories": "graphics", - "sub_categories": [ - "RasterGraphics", - "Viewer", - "2DGraphics" - ], - "developer_name": "Markus Diem", - "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": 1741202487, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1584687957, - "trending": 1.521438531499256, - "installs_last_month": 1483, - "isMobileFriendly": false - }, { "name": "Exhibit", "keywords": [ @@ -61969,8 +61932,45 @@ "aarch64" ], "added_at": 1717581622, - "trending": 14.894605868921383, - "installs_last_month": 1470, + "trending": 16.902567238159506, + "installs_last_month": 1519, + "isMobileFriendly": false + }, + { + "name": "nomacs - Image Lounge", + "keywords": null, + "summary": "nomacs is a free, open source image viewer", + "description": "\n nomacs features semi-transparent widgets that display \n additional information such as thumbnails, metadata or histogram. \n It is able to browse images in zip or MS Office files which can be \n extracted to a directory. Metadata stored with the image can be \n displayed and you can add notes to images. A thumbnail preview of \n the current folder is included as well as a file explorer panel which \n allows switching between folders. Within a directory you can apply a \n file filter, so that only images are displayed whose filenames have a \n certain string or match a regular expression. Activating the cache \n allows for instantly switching between images.\n \n ", + "id": "org_nomacs_ImageLounge", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0", + "is_free_license": true, + "app_id": "org.nomacs.ImageLounge", + "icon": "https://dl.flathub.org/media/org/nomacs/ImageLounge/bd3e3fa07b8ebf46b6ab0ef5c23cbc09/icons/128x128/org.nomacs.ImageLounge.png", + "main_categories": "graphics", + "sub_categories": [ + "RasterGraphics", + "Viewer", + "2DGraphics" + ], + "developer_name": "Markus Diem", + "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": 1741202487, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1584687957, + "trending": 0.1127548536507994, + "installs_last_month": 1456, "isMobileFriendly": false }, { @@ -62004,8 +62004,8 @@ "x86_64" ], "added_at": 1617052444, - "trending": 7.155025995595325, - "installs_last_month": 1262, + "trending": 8.427332669792243, + "installs_last_month": 1298, "isMobileFriendly": false }, { @@ -62190,8 +62190,8 @@ "aarch64" ], "added_at": 1621319023, - "trending": 11.03391180919681, - "installs_last_month": 1124, + "trending": 9.810189982622418, + "installs_last_month": 1170, "isMobileFriendly": false }, { @@ -62226,8 +62226,8 @@ "aarch64" ], "added_at": 1640767119, - "trending": 2.637866755254094, - "installs_last_month": 1092, + "trending": 1.7675150662624524, + "installs_last_month": 1133, "isMobileFriendly": false }, { @@ -62269,49 +62269,8 @@ "aarch64" ], "added_at": 1604472263, - "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, + "trending": 11.893222858451775, + "installs_last_month": 1018, "isMobileFriendly": false }, { @@ -62383,8 +62342,49 @@ "aarch64" ], "added_at": 1520507892, - "trending": 10.901587962672808, - "installs_last_month": 936, + "trending": 10.195872804453408, + "installs_last_month": 976, + "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.80934208815306, + "installs_last_month": 967, "isMobileFriendly": false }, { @@ -62475,8 +62475,8 @@ "aarch64" ], "added_at": 1579371240, - "trending": 2.6124918204846868, - "installs_last_month": 716, + "trending": 1.1568098426037752, + "installs_last_month": 724, "isMobileFriendly": false }, { @@ -62510,8 +62510,8 @@ "aarch64" ], "added_at": 1662621591, - "trending": 10.62100472235673, - "installs_last_month": 688, + "trending": 8.228441432444638, + "installs_last_month": 723, "isMobileFriendly": false }, { @@ -62663,8 +62663,8 @@ "aarch64" ], "added_at": 1621235741, - "trending": 5.983799399195448, - "installs_last_month": 573, + "trending": 5.746660141119603, + "installs_last_month": 600, "isMobileFriendly": false }, { @@ -62715,8 +62715,8 @@ "x86_64" ], "added_at": 1646382871, - "trending": 4.643506553338735, - "installs_last_month": 547, + "trending": 7.113833946452311, + "installs_last_month": 557, "isMobileFriendly": false }, { @@ -62923,8 +62923,8 @@ "aarch64" ], "added_at": 1634243903, - "trending": 8.734336886011715, - "installs_last_month": 471, + "trending": 7.759018706692713, + "installs_last_month": 482, "isMobileFriendly": false }, { @@ -62986,7 +62986,7 @@ "aarch64" ], "added_at": 1712519508, - "trending": 9.509128002705069, + "trending": 11.258993202136796, "installs_last_month": 308, "isMobileFriendly": false }, @@ -63021,8 +63021,8 @@ "aarch64" ], "added_at": 1563956778, - "trending": 9.556047633244324, - "installs_last_month": 266, + "trending": 7.8268698389779265, + "installs_last_month": 282, "isMobileFriendly": false }, { @@ -63062,8 +63062,8 @@ "aarch64" ], "added_at": 1693288565, - "trending": 3.6124913868256248, - "installs_last_month": 222, + "trending": 1.8370250092710096, + "installs_last_month": 231, "isMobileFriendly": false }, { @@ -63186,8 +63186,8 @@ "aarch64" ], "added_at": 1702975328, - "trending": 8.904067723569565, - "installs_last_month": 219, + "trending": 6.524210196721456, + "installs_last_month": 225, "isMobileFriendly": false }, { @@ -63224,8 +63224,8 @@ "aarch64" ], "added_at": 1707919907, - "trending": 2.3632716153541766, - "installs_last_month": 165, + "trending": 1.688799039231668, + "installs_last_month": 179, "isMobileFriendly": false }, { @@ -63265,8 +63265,8 @@ "aarch64" ], "added_at": 1617952868, - "trending": -0.5515743448232797, - "installs_last_month": 162, + "trending": 0.2258340294862163, + "installs_last_month": 165, "isMobileFriendly": false }, { @@ -63304,8 +63304,8 @@ "aarch64" ], "added_at": 1669571538, - "trending": 6.102844196534721, - "installs_last_month": 123, + "trending": 6.165929577177478, + "installs_last_month": 125, "isMobileFriendly": false }, { @@ -63466,8 +63466,8 @@ "aarch64" ], "added_at": 1670839153, - "trending": 10.32662521648369, - "installs_last_month": 104, + "trending": 6.577171798092454, + "installs_last_month": 113, "isMobileFriendly": false }, { @@ -63514,8 +63514,8 @@ "aarch64" ], "added_at": 1690459341, - "trending": 7.696838429609895, - "installs_last_month": 94, + "trending": 7.134414055510853, + "installs_last_month": 96, "isMobileFriendly": false }, { @@ -63550,7 +63550,7 @@ ], "added_at": 1645522176, "trending": 5.362434831159005, - "installs_last_month": 72, + "installs_last_month": 71, "isMobileFriendly": false }, { @@ -63600,8 +63600,8 @@ "aarch64" ], "added_at": 1609367784, - "trending": 9.542180008490076, - "installs_last_month": 22, + "trending": 11.07185771871434, + "installs_last_month": 26, "isMobileFriendly": false } ], @@ -63662,8 +63662,8 @@ "aarch64" ], "added_at": 1522565212, - "trending": 10.145137104492306, - "installs_last_month": 27806, + "trending": 9.715203702938954, + "installs_last_month": 29015, "isMobileFriendly": false }, { @@ -63697,8 +63697,47 @@ "x86_64" ], "added_at": 1510122100, - "trending": 7.787915692843559, - "installs_last_month": 24374, + "trending": 9.03238456568694, + "installs_last_month": 25143, + "isMobileFriendly": false + }, + { + "name": "Opera", + "keywords": [ + "web browser" + ], + "summary": "Your personal browser", + "description": "\n Faster, safer and smarter than default browsers. Opera Browser is fully-featured for privacy, security, and everything you do online.\n \n \n Opera's free VPN, Ad blocker, and Flow file sharing. Just a few of the must-have features built into Opera for faster, smoother and distraction-free browsing designed to improve your online experience.\n \n \n Experience faster, distraction-free browsing with Ad blocking, and browse privately. Smoothly sync your data and send files between Opera on Mac, Windows, Linux, iOS, Android, and Chromebook.\n \n \n NOTE: This package is not verified by, affiliated with, or supported by Opera.\n \n ", + "id": "com_opera_Opera", + "type": "desktop-application", + "translations": {}, + "project_license": "LicenseRef-proprietary", + "is_free_license": false, + "app_id": "com.opera.Opera", + "icon": "https://dl.flathub.org/media/com/opera/Opera/cb2e6ee34bbb9c899632b34043b42836/icons/128x128/com.opera.Opera.png", + "main_categories": "network", + "sub_categories": [ + "WebBrowser", + "InstantMessaging", + "Chat", + "Feed" + ], + "developer_name": "Opera", + "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": 1743088542, + "arches": [ + "x86_64" + ], + "added_at": 1672904297, + "trending": 8.080718431890704, + "installs_last_month": 22094, "isMobileFriendly": false }, { @@ -63754,47 +63793,8 @@ "aarch64" ], "added_at": 1663217081, - "trending": 6.260721892086824, - "installs_last_month": 21289, - "isMobileFriendly": false - }, - { - "name": "Opera", - "keywords": [ - "web browser" - ], - "summary": "Your personal browser", - "description": "\n Faster, safer and smarter than default browsers. Opera Browser is fully-featured for privacy, security, and everything you do online.\n \n \n Opera's free VPN, Ad blocker, and Flow file sharing. Just a few of the must-have features built into Opera for faster, smoother and distraction-free browsing designed to improve your online experience.\n \n \n Experience faster, distraction-free browsing with Ad blocking, and browse privately. Smoothly sync your data and send files between Opera on Mac, Windows, Linux, iOS, Android, and Chromebook.\n \n \n NOTE: This package is not verified by, affiliated with, or supported by Opera.\n \n ", - "id": "com_opera_Opera", - "type": "desktop-application", - "translations": {}, - "project_license": "LicenseRef-proprietary", - "is_free_license": false, - "app_id": "com.opera.Opera", - "icon": "https://dl.flathub.org/media/com/opera/Opera/cb2e6ee34bbb9c899632b34043b42836/icons/128x128/com.opera.Opera.png", - "main_categories": "network", - "sub_categories": [ - "WebBrowser", - "InstantMessaging", - "Chat", - "Feed" - ], - "developer_name": "Opera", - "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": 1743088542, - "arches": [ - "x86_64" - ], - "added_at": 1672904297, - "trending": 8.006534120820795, - "installs_last_month": 21274, + "trending": 6.2113628673656365, + "installs_last_month": 22021, "isMobileFriendly": false }, { @@ -63829,8 +63829,8 @@ "aarch64" ], "added_at": 1559372566, - "trending": 8.931676538207599, - "installs_last_month": 18157, + "trending": 8.889692584296306, + "installs_last_month": 18985, "isMobileFriendly": false }, { @@ -63878,8 +63878,8 @@ "aarch64" ], "added_at": 1661808065, - "trending": 8.500308858576183, - "installs_last_month": 9839, + "trending": 10.458960663981436, + "installs_last_month": 10097, "isMobileFriendly": false }, { @@ -63924,8 +63924,8 @@ "aarch64" ], "added_at": 1510519332, - "trending": 11.493531104384733, - "installs_last_month": 5814, + "trending": 11.386754602093626, + "installs_last_month": 5986, "isMobileFriendly": false }, { @@ -63959,8 +63959,8 @@ "x86_64" ], "added_at": 1592206236, - "trending": 8.409294056639723, - "installs_last_month": 3097, + "trending": 10.19879599726822, + "installs_last_month": 3198, "isMobileFriendly": false }, { @@ -64064,8 +64064,8 @@ "aarch64" ], "added_at": 1594807973, - "trending": 11.656566176995437, - "installs_last_month": 2870, + "trending": 12.237821350084898, + "installs_last_month": 3025, "isMobileFriendly": false }, { @@ -64098,8 +64098,8 @@ "x86_64" ], "added_at": 1705654761, - "trending": 6.416029016634608, - "installs_last_month": 1305, + "trending": 5.33982744526862, + "installs_last_month": 1367, "isMobileFriendly": false }, { @@ -64140,8 +64140,8 @@ "aarch64" ], "added_at": 1710843054, - "trending": 14.424964974971427, - "installs_last_month": 1276, + "trending": 12.424563850899007, + "installs_last_month": 1318, "isMobileFriendly": false }, { @@ -64174,8 +64174,8 @@ "x86_64" ], "added_at": 1548358512, - "trending": 8.979215408634698, - "installs_last_month": 1157, + "trending": 11.713178997851882, + "installs_last_month": 1191, "isMobileFriendly": false }, { @@ -64218,8 +64218,8 @@ "aarch64" ], "added_at": 1546941692, - "trending": 5.813628678629519, - "installs_last_month": 1109, + "trending": 5.067071407552835, + "installs_last_month": 1179, "isMobileFriendly": false }, { @@ -64260,8 +64260,48 @@ "aarch64" ], "added_at": 1606129535, - "trending": 10.993122249431496, - "installs_last_month": 1098, + "trending": 12.084567800023168, + "installs_last_month": 1137, + "isMobileFriendly": false + }, + { + "name": "Mumble", + "keywords": [ + "VoIP", + "Messaging", + "Voice Chat", + "Secure Communication" + ], + "summary": "Low latency encrypted VoIP client", + "description": "Open source, low-latency, high quality voice chat.\n ", + "id": "info_mumble_Mumble", + "type": "desktop-application", + "translations": {}, + "project_license": "BSD-3-Clause", + "is_free_license": true, + "app_id": "info.mumble.Mumble", + "icon": "https://dl.flathub.org/media/info/mumble/Mumble/ff735da63f8b268a400f8b247f334217/icons/128x128/info.mumble.Mumble.png", + "main_categories": "network", + "sub_categories": [ + "Chat" + ], + "developer_name": "The Mumble Dev-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.kde.Platform/x86_64/5.15-24.08", + "updated_at": 1743034132, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1555318467, + "trending": 9.519535893186545, + "installs_last_month": 1014, "isMobileFriendly": false }, { @@ -64307,8 +64347,8 @@ "aarch64" ], "added_at": 1653029838, - "trending": 7.569677355325513, - "installs_last_month": 1019, + "trending": 6.185791551811928, + "installs_last_month": 1007, "isMobileFriendly": false }, { @@ -64470,48 +64510,8 @@ "aarch64" ], "added_at": 1526596299, - "trending": 9.186000053744062, - "installs_last_month": 988, - "isMobileFriendly": false - }, - { - "name": "Mumble", - "keywords": [ - "VoIP", - "Messaging", - "Voice Chat", - "Secure Communication" - ], - "summary": "Low latency encrypted VoIP client", - "description": "Open source, low-latency, high quality voice chat.\n ", - "id": "info_mumble_Mumble", - "type": "desktop-application", - "translations": {}, - "project_license": "BSD-3-Clause", - "is_free_license": true, - "app_id": "info.mumble.Mumble", - "icon": "https://dl.flathub.org/media/info/mumble/Mumble/ff735da63f8b268a400f8b247f334217/icons/128x128/info.mumble.Mumble.png", - "main_categories": "network", - "sub_categories": [ - "Chat" - ], - "developer_name": "The Mumble Dev-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.kde.Platform/x86_64/5.15-24.08", - "updated_at": 1743034132, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1555318467, - "trending": 9.32347402264362, - "installs_last_month": 985, + "trending": 9.239527436283826, + "installs_last_month": 995, "isMobileFriendly": false }, { @@ -64546,8 +64546,8 @@ "aarch64" ], "added_at": 1656320516, - "trending": 12.008278372200785, - "installs_last_month": 870, + "trending": 11.695589259991076, + "installs_last_month": 912, "isMobileFriendly": false }, { @@ -64699,10 +64699,60 @@ "aarch64" ], "added_at": 1656789845, - "trending": 13.82445721203282, - "installs_last_month": 868, + "trending": 19.029134520537923, + "installs_last_month": 900, "isMobileFriendly": true }, + { + "name": "Jami", + "keywords": [ + "Qt", + "chat", + "talk", + "im", + "message", + "voip" + ], + "summary": "Privacy-oriented voice, video, chat, and conference platform", + "description": "\n Jami [1], a GNU package, is software for universal and\n distributed peer-to-peer communication that respects the\n freedom and privacy of its users.\n \n \n Jami is the simplest and easiest way to connect with people\n (and devices) with instant messaging, audio and video calls\n over the Internet and LAN/WAN intranets.\n \n \n Jami is a free/libre, end-to-end encrypted, and private\n communication platform.\n \n \n Jami – which used to be known as Ring – is also an\n open-source alternative (to Facebook Messenger, Signal,\n Skype, Teams, Telegram, TikTok, Viber, WhatsApp, Zoom) that\n prioritizes the privacy of its users.\n \n \n Jami has a professional-looking design and is available for\n a wide range of platforms. Unlike the alternatives, calls\n using Jami are directly between users as it does not use\n servers to handle calls.\n \n \n This gives the greatest privacy as the distributed nature\n of Jami means your calls are only between participants.\n \n \n One-to-one and group conversations with Jami are enhanced\n with: instant messaging; audio and video calling;\n recording and sending audio and video messages;\n file transfers; screen sharing; and, location sharing.\n \n \n Jami can also function as a SIP client.\n \n \n Jami has multiple extensions [2] available:\n Audio Filter; Auto Answer; Green Screen; Watermark; and,\n Whisper Transcript.\n \n \n Jami can be easily deployed in organizations with the\n “Jami Account Management Server” (JAMS) [3], allowing users\n to connect with their corporate credentials or create local\n accounts. JAMS allows you to manage your own Jami community\n while taking advantage of Jami’s distributed network\n architecture.\n \n \n Jami is available for GNU/Linux, Windows, macOS, iOS,\n Android, and Android TV, making Jami an interoperable and\n cross-platform communication framework.\n \n \n Manage multiple SIP accounts, Jami accounts and JAMS\n accounts with the Jami client installed on one or multiple\n devices.\n \n \n Jami is free, unlimited, private, advertising free,\n compatible, fast, autonomous, and anonymous.\n \n \n [1] https://jami.net/\n \n \n [2] https://jami.net/extensions/\n \n \n [3] https://jami.biz/\n \n ", + "id": "net_jami_Jami", + "type": "desktop-application", + "translations": { + "hu": { + "description": "\n A Jami [1], egy GNU-csomag, egy univerzális és elosztott\n társ-társ kommunikációra szolgáló szoftver, amely\n tiszteletben tartja a felhasználók szabadságát és\n magánéletét.\n \n \n A Jami a legegyszerűbb és legegyszerűbb módja annak, hogy\n azonnali üzenetküldéssel, hang- és videohívásokkal\n kapcsolódjon az emberekhez (és eszközökhöz) az interneten és\n a LAN/WAN intraneteken keresztül.\n \n \n A Jami egy ingyenes, teljes körűen titkosított és privát\n kommunikációs platform.\n \n \n A Jami – amelyet korábban Ring néven ismertek – egy nyílt\n forráskódú alternatíva is (a Facebook Messenger, a Signal,\n a Skype, a Teams, a Telegram, a TikTok, a Viber, a WhatsApp,\n a Zoom számára), amely előtérbe helyezi a felhasználók\n magánéletét.\n \n \n A Jami professzionális megjelenésű, és platformok széles\n skálájához elérhető. Az alternatívákkal ellentétben a Jami-t\n használó hívások közvetlenül a felhasználók között zajlanak,\n mivel nem használ kiszolgálókat a hívások kezelésére.\n \n \n Ez biztosítja a legnagyobb magánéletet, mivel a Jami\n elosztott jellege azt jelenti, hogy a hívások csak a\n résztvevők között zajlanak.\n \n \n A Jamival folytatott személyes és csoportos beszélgetéseket\n a következők javítják: azonnali üzenetküldés; hang- és\n videohívások; hang- és videoüzenetek rögzítése és küldése;\n fájlátvitel; képernyőmegosztás; és helymegosztás.\n \n \n A Jami SIP-ügyfélként is működhet.\n \n \n A Jami-nek több bővítménye [2] is elérhető: hangszűrő;\n automatikus válasz; zöld képernyő; vízjel; és, suttogó\n átirat.\n \n \n A Jami könnyen telepíthető a szervezetekben\n a „Jami fiókkezelő kiszolgálóval” (JAMS) [3], amely lehetővé\n teszi a felhasználók számára, hogy csatlakozzanak vállalati\n hitelesítő adataikhoz, vagy helyi fiókokat hozzanak létre.\n A JAMS lehetővé teszi saját Jami közösségének kezelését,\n miközben kihasználja a Jami elosztott hálózati\n architektúráját.\n \n \n A Jami elérhető GNU/Linux, Windows, macOS, iOS, Android és\n Android TV rendszereken, így a Jami egy interoperábilis és\n platformok közötti kommunikációs keretrendszer.\n \n \n Kezeljen több SIP-fiókot, Jami-fiókot és JAMS-fiókot az egy\n vagy több eszközre telepített Jami-ügyféllel.\n \n \n A Jami ingyenes, korlátlan, privát, reklámmentes,\n kompatibilis, gyors, autonóm és névtelen.\n \n \n [1] https://jami.net/hu/\n \n \n [2] https://jami.net/hu/extensions/\n \n \n [3] https://jami.biz/\n \n ", + "summary": "Adatvédelem-orientált hang-, video-, csevegés- és konferenciaplatform" + } + }, + "project_license": "GPL-3.0+", + "is_free_license": true, + "app_id": "net.jami.Jami", + "icon": "https://dl.flathub.org/media/net/jami/Jami/75a7a0c7fc0f35a2f9b26980eb703eac/icons/128x128/net.jami.Jami.png", + "main_categories": "network", + "sub_categories": [ + "Chat", + "FileTransfer", + "InstantMessaging", + "P2P" + ], + "developer_name": "Savoir-faire Linux", + "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": 1741811470, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1741811470, + "trending": 11.72973645667143, + "installs_last_month": 880, + "isMobileFriendly": false + }, { "name": "Dino", "keywords": [ @@ -64855,58 +64905,8 @@ "aarch64" ], "added_at": 1655734570, - "trending": 14.901445160653305, - "installs_last_month": 818, - "isMobileFriendly": false - }, - { - "name": "Jami", - "keywords": [ - "Qt", - "chat", - "talk", - "im", - "message", - "voip" - ], - "summary": "Privacy-oriented voice, video, chat, and conference platform", - "description": "\n Jami [1], a GNU package, is software for universal and\n distributed peer-to-peer communication that respects the\n freedom and privacy of its users.\n \n \n Jami is the simplest and easiest way to connect with people\n (and devices) with instant messaging, audio and video calls\n over the Internet and LAN/WAN intranets.\n \n \n Jami is a free/libre, end-to-end encrypted, and private\n communication platform.\n \n \n Jami – which used to be known as Ring – is also an\n open-source alternative (to Facebook Messenger, Signal,\n Skype, Teams, Telegram, TikTok, Viber, WhatsApp, Zoom) that\n prioritizes the privacy of its users.\n \n \n Jami has a professional-looking design and is available for\n a wide range of platforms. Unlike the alternatives, calls\n using Jami are directly between users as it does not use\n servers to handle calls.\n \n \n This gives the greatest privacy as the distributed nature\n of Jami means your calls are only between participants.\n \n \n One-to-one and group conversations with Jami are enhanced\n with: instant messaging; audio and video calling;\n recording and sending audio and video messages;\n file transfers; screen sharing; and, location sharing.\n \n \n Jami can also function as a SIP client.\n \n \n Jami has multiple extensions [2] available:\n Audio Filter; Auto Answer; Green Screen; Watermark; and,\n Whisper Transcript.\n \n \n Jami can be easily deployed in organizations with the\n “Jami Account Management Server” (JAMS) [3], allowing users\n to connect with their corporate credentials or create local\n accounts. JAMS allows you to manage your own Jami community\n while taking advantage of Jami’s distributed network\n architecture.\n \n \n Jami is available for GNU/Linux, Windows, macOS, iOS,\n Android, and Android TV, making Jami an interoperable and\n cross-platform communication framework.\n \n \n Manage multiple SIP accounts, Jami accounts and JAMS\n accounts with the Jami client installed on one or multiple\n devices.\n \n \n Jami is free, unlimited, private, advertising free,\n compatible, fast, autonomous, and anonymous.\n \n \n [1] https://jami.net/\n \n \n [2] https://jami.net/extensions/\n \n \n [3] https://jami.biz/\n \n ", - "id": "net_jami_Jami", - "type": "desktop-application", - "translations": { - "hu": { - "description": "\n A Jami [1], egy GNU-csomag, egy univerzális és elosztott\n társ-társ kommunikációra szolgáló szoftver, amely\n tiszteletben tartja a felhasználók szabadságát és\n magánéletét.\n \n \n A Jami a legegyszerűbb és legegyszerűbb módja annak, hogy\n azonnali üzenetküldéssel, hang- és videohívásokkal\n kapcsolódjon az emberekhez (és eszközökhöz) az interneten és\n a LAN/WAN intraneteken keresztül.\n \n \n A Jami egy ingyenes, teljes körűen titkosított és privát\n kommunikációs platform.\n \n \n A Jami – amelyet korábban Ring néven ismertek – egy nyílt\n forráskódú alternatíva is (a Facebook Messenger, a Signal,\n a Skype, a Teams, a Telegram, a TikTok, a Viber, a WhatsApp,\n a Zoom számára), amely előtérbe helyezi a felhasználók\n magánéletét.\n \n \n A Jami professzionális megjelenésű, és platformok széles\n skálájához elérhető. Az alternatívákkal ellentétben a Jami-t\n használó hívások közvetlenül a felhasználók között zajlanak,\n mivel nem használ kiszolgálókat a hívások kezelésére.\n \n \n Ez biztosítja a legnagyobb magánéletet, mivel a Jami\n elosztott jellege azt jelenti, hogy a hívások csak a\n résztvevők között zajlanak.\n \n \n A Jamival folytatott személyes és csoportos beszélgetéseket\n a következők javítják: azonnali üzenetküldés; hang- és\n videohívások; hang- és videoüzenetek rögzítése és küldése;\n fájlátvitel; képernyőmegosztás; és helymegosztás.\n \n \n A Jami SIP-ügyfélként is működhet.\n \n \n A Jami-nek több bővítménye [2] is elérhető: hangszűrő;\n automatikus válasz; zöld képernyő; vízjel; és, suttogó\n átirat.\n \n \n A Jami könnyen telepíthető a szervezetekben\n a „Jami fiókkezelő kiszolgálóval” (JAMS) [3], amely lehetővé\n teszi a felhasználók számára, hogy csatlakozzanak vállalati\n hitelesítő adataikhoz, vagy helyi fiókokat hozzanak létre.\n A JAMS lehetővé teszi saját Jami közösségének kezelését,\n miközben kihasználja a Jami elosztott hálózati\n architektúráját.\n \n \n A Jami elérhető GNU/Linux, Windows, macOS, iOS, Android és\n Android TV rendszereken, így a Jami egy interoperábilis és\n platformok közötti kommunikációs keretrendszer.\n \n \n Kezeljen több SIP-fiókot, Jami-fiókot és JAMS-fiókot az egy\n vagy több eszközre telepített Jami-ügyféllel.\n \n \n A Jami ingyenes, korlátlan, privát, reklámmentes,\n kompatibilis, gyors, autonóm és névtelen.\n \n \n [1] https://jami.net/hu/\n \n \n [2] https://jami.net/hu/extensions/\n \n \n [3] https://jami.biz/\n \n ", - "summary": "Adatvédelem-orientált hang-, video-, csevegés- és konferenciaplatform" - } - }, - "project_license": "GPL-3.0+", - "is_free_license": true, - "app_id": "net.jami.Jami", - "icon": "https://dl.flathub.org/media/net/jami/Jami/75a7a0c7fc0f35a2f9b26980eb703eac/icons/128x128/net.jami.Jami.png", - "main_categories": "network", - "sub_categories": [ - "Chat", - "FileTransfer", - "InstantMessaging", - "P2P" - ], - "developer_name": "Savoir-faire Linux", - "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": 1741811470, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1741811470, - "trending": 10.27977198808973, - "installs_last_month": 812, + "trending": 16.958652923397857, + "installs_last_month": 845, "isMobileFriendly": false }, { @@ -64941,8 +64941,46 @@ "aarch64" ], "added_at": 1646993368, - "trending": 7.87028985797443, - "installs_last_month": 728, + "trending": 9.33888084776362, + "installs_last_month": 785, + "isMobileFriendly": false + }, + { + "name": "qTox", + "keywords": null, + "summary": "Powerful Tox chat client that follows the Tox design guidelines.", + "description": "\n A New Kind of Instant Messaging\n \n \n With the rise of government monitoring programs, qTox provides an easy to use\n application that allows you to connect with friends and family without anyone\n else listening in. While other big-name services require you to pay for\n features, qTox is totally free, and comes without advertising.\n \n \n Nowadays, every government seems to be interested in what we're saying online.\n qTox is built on a \"privacy goes first\" agenda, and we make no compromises.\n Your safety is our top priority, and there isn't anything in the world that\n will change that.\n \n Instant messaging, video conferencing, and more.\n \n Messages: At your fingertips. You're always in the loop with instant encrypted messaging.\n Calls: Stay in touch. Make free and secure qTox to qTox calls.\n Video: Seeing is believing. Catch up face to face with a secure video call.\n \n \n qTox is a free and open source software, built by and for the users!\n \n \n \n Security: qTox takes your privacy seriously. With leading-class encryption,\n you can rest assured knowing that the only people reading your messages are\n the ones you send them to.\n \n \n Ease of Use: Unlike other secure messaging solutions, qTox does not require\n you to be a computer programmer to use it. qTox comes out-of-the-box with an\n easy-to-use interface that allows you to focus on your conversations.\n \n \n Freedom: qTox is both free for you to use, and free for you to change.\n You are completely free to both use and modify qTox. Furthermore,\n qTox will never harass you with ads, or require you to pay for features.\n \n \n ", + "id": "io_github_qtox_qTox", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0", + "is_free_license": true, + "app_id": "io.github.qtox.qTox", + "icon": "https://dl.flathub.org/media/io/github/qtox.qTox/17709cdea5b36131caac54874813d2cc/icons/128x128/io.github.qtox.qTox.png", + "main_categories": "network", + "sub_categories": [ + "InstantMessaging", + "Chat", + "Telephony", + "VideoConference" + ], + "developer_name": "TokTok 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.kde.Platform/x86_64/6.8", + "updated_at": 1736942242, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1735763745, + "trending": 5.055171352152959, + "installs_last_month": 577, "isMobileFriendly": false }, { @@ -64988,46 +65026,8 @@ "x86_64" ], "added_at": 1607504318, - "trending": -1.058726319896189, - "installs_last_month": 556, - "isMobileFriendly": false - }, - { - "name": "qTox", - "keywords": null, - "summary": "Powerful Tox chat client that follows the Tox design guidelines.", - "description": "\n A New Kind of Instant Messaging\n \n \n With the rise of government monitoring programs, qTox provides an easy to use\n application that allows you to connect with friends and family without anyone\n else listening in. While other big-name services require you to pay for\n features, qTox is totally free, and comes without advertising.\n \n \n Nowadays, every government seems to be interested in what we're saying online.\n qTox is built on a \"privacy goes first\" agenda, and we make no compromises.\n Your safety is our top priority, and there isn't anything in the world that\n will change that.\n \n Instant messaging, video conferencing, and more.\n \n Messages: At your fingertips. You're always in the loop with instant encrypted messaging.\n Calls: Stay in touch. Make free and secure qTox to qTox calls.\n Video: Seeing is believing. Catch up face to face with a secure video call.\n \n \n qTox is a free and open source software, built by and for the users!\n \n \n \n Security: qTox takes your privacy seriously. With leading-class encryption,\n you can rest assured knowing that the only people reading your messages are\n the ones you send them to.\n \n \n Ease of Use: Unlike other secure messaging solutions, qTox does not require\n you to be a computer programmer to use it. qTox comes out-of-the-box with an\n easy-to-use interface that allows you to focus on your conversations.\n \n \n Freedom: qTox is both free for you to use, and free for you to change.\n You are completely free to both use and modify qTox. Furthermore,\n qTox will never harass you with ads, or require you to pay for features.\n \n \n ", - "id": "io_github_qtox_qTox", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0", - "is_free_license": true, - "app_id": "io.github.qtox.qTox", - "icon": "https://dl.flathub.org/media/io/github/qtox.qTox/17709cdea5b36131caac54874813d2cc/icons/128x128/io.github.qtox.qTox.png", - "main_categories": "network", - "sub_categories": [ - "InstantMessaging", - "Chat", - "Telephony", - "VideoConference" - ], - "developer_name": "TokTok 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.kde.Platform/x86_64/6.8", - "updated_at": 1736942242, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1735763745, - "trending": 5.887574467492339, - "installs_last_month": 554, + "trending": 0.27738119980086173, + "installs_last_month": 568, "isMobileFriendly": false }, { @@ -65063,8 +65063,8 @@ "aarch64" ], "added_at": 1643364345, - "trending": 9.43909737905363, - "installs_last_month": 487, + "trending": 9.373937909880826, + "installs_last_month": 501, "isMobileFriendly": false }, { @@ -65204,8 +65204,8 @@ "aarch64" ], "added_at": 1685515610, - "trending": 13.162055342914496, - "installs_last_month": 417, + "trending": 10.237549553179813, + "installs_last_month": 422, "isMobileFriendly": true }, { @@ -65248,10 +65248,48 @@ "aarch64" ], "added_at": 1651741948, - "trending": 15.429370612555026, - "installs_last_month": 336, + "trending": 13.977258132849435, + "installs_last_month": 341, "isMobileFriendly": true }, + { + "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": 8.837099196288719, + "installs_last_month": 175, + "isMobileFriendly": false + }, { "name": "iptux", "keywords": [ @@ -65349,46 +65387,8 @@ "aarch64" ], "added_at": 1735822042, - "trending": 1.1474631320140585, - "installs_last_month": 169, - "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, + "trending": 1.348218747427499, + "installs_last_month": 172, "isMobileFriendly": false }, { @@ -65423,8 +65423,8 @@ "aarch64" ], "added_at": 1615670471, - "trending": -0.5239182738961423, - "installs_last_month": 139, + "trending": 3.527421563676852, + "installs_last_month": 152, "isMobileFriendly": false }, { @@ -65480,44 +65480,8 @@ "aarch64" ], "added_at": 1520326486, - "trending": 11.427997755425748, - "installs_last_month": 111, - "isMobileFriendly": false - }, - { - "name": "Quassel Client", - "keywords": null, - "summary": "Modern distributed IRC client", - "description": "Quassel IRC is a modern, cross-platform, distributed IRC client based on the Qt framework.Distributed means that one (or multiple) client(s) can attach to and detach from a central core that stays permanently online -- much like the popular combination of screen and a text-based IRC client such as WeeChat, and similar to (but much more featureful than) so-called BNCs. Re-attaching your client will show your IRC session in the same state as you left it in (plus whatever happened while you were gone), and this even when you re-attach from a different location. In addition, Quassel IRC can be used like a traditional client, with providing both client and core functionality in one binary. This so-called \"Monolithic Client\" completely hides the distributed nature, so for a purely local installation, Quassel IRC can be setup very easily.Cross-platform means that Quassel IRC is developed for and tested on Linux®, Windows®, and MacOS X®. It should also run on any other platform that is supported by the Qt library. Third-party mobile clients for Android and iOS also exist.By modern we mean that Quassel IRC will have all the features you'd expect from an IRC client nowadays. It also innovates in many areas. For example, the GUI features a dockable nicklist and topic bar, or you can arrange your channel and query buffers in default or custom views, which are also dockable. This means that you can arrange your GUI as you please. The architecture allows for other innovations, such as on-demand creation of log files in custom formats from the backlog.", - "id": "org_quassel_irc_QuasselClient", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-2.0 OR GPL-3.0", - "is_free_license": true, - "app_id": "org.quassel_irc.QuasselClient", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.quassel_irc.QuasselClient.png", - "main_categories": "network", - "sub_categories": [ - "Chat", - "IRCClient" - ], - "developer_name": "The Quassel IRC 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.kde.Platform/x86_64/5.15-23.08", - "updated_at": 1706571591, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1510246806, - "trending": 9.183200959907316, - "installs_last_month": 92, + "trending": 10.69026470426949, + "installs_last_month": 113, "isMobileFriendly": false }, { @@ -65552,8 +65516,44 @@ "aarch64" ], "added_at": 1679761368, - "trending": 5.108183194431726, - "installs_last_month": 91, + "trending": 8.519831238170402, + "installs_last_month": 102, + "isMobileFriendly": false + }, + { + "name": "Quassel Client", + "keywords": null, + "summary": "Modern distributed IRC client", + "description": "Quassel IRC is a modern, cross-platform, distributed IRC client based on the Qt framework.Distributed means that one (or multiple) client(s) can attach to and detach from a central core that stays permanently online -- much like the popular combination of screen and a text-based IRC client such as WeeChat, and similar to (but much more featureful than) so-called BNCs. Re-attaching your client will show your IRC session in the same state as you left it in (plus whatever happened while you were gone), and this even when you re-attach from a different location. In addition, Quassel IRC can be used like a traditional client, with providing both client and core functionality in one binary. This so-called \"Monolithic Client\" completely hides the distributed nature, so for a purely local installation, Quassel IRC can be setup very easily.Cross-platform means that Quassel IRC is developed for and tested on Linux®, Windows®, and MacOS X®. It should also run on any other platform that is supported by the Qt library. Third-party mobile clients for Android and iOS also exist.By modern we mean that Quassel IRC will have all the features you'd expect from an IRC client nowadays. It also innovates in many areas. For example, the GUI features a dockable nicklist and topic bar, or you can arrange your channel and query buffers in default or custom views, which are also dockable. This means that you can arrange your GUI as you please. The architecture allows for other innovations, such as on-demand creation of log files in custom formats from the backlog.", + "id": "org_quassel_irc_QuasselClient", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-2.0 OR GPL-3.0", + "is_free_license": true, + "app_id": "org.quassel_irc.QuasselClient", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.quassel_irc.QuasselClient.png", + "main_categories": "network", + "sub_categories": [ + "Chat", + "IRCClient" + ], + "developer_name": "The Quassel IRC 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.kde.Platform/x86_64/5.15-23.08", + "updated_at": 1706571591, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1510246806, + "trending": 8.534568406285407, + "installs_last_month": 96, "isMobileFriendly": false }, { @@ -65596,8 +65596,8 @@ "aarch64" ], "added_at": 1648448463, - "trending": 0.5883430789350063, - "installs_last_month": 70, + "trending": 0.6399492094751918, + "installs_last_month": 78, "isMobileFriendly": false }, { @@ -65634,7 +65634,42 @@ ], "added_at": 1643787450, "trending": 4.749141654567384, - "installs_last_month": 68, + "installs_last_month": 71, + "isMobileFriendly": false + }, + { + "name": "OpenBubbles", + "keywords": null, + "summary": "OpenBubbles 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_openbubbles_OpenBubbles", + "type": "desktop-application", + "translations": {}, + "project_license": "Apache-2.0", + "is_free_license": true, + "app_id": "app.openbubbles.OpenBubbles", + "icon": "https://dl.flathub.org/media/app/openbubbles/OpenBubbles/ad53031b845dd7e0bf0d927a3a0be880/icons/128x128/app.openbubbles.OpenBubbles.png", + "main_categories": "network", + "sub_categories": [ + "InstantMessaging", + "Chat" + ], + "developer_name": "OpenBubbles", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "openbubbles.app", + "verification_timestamp": "1743356226", + "runtime": "org.gnome.Platform/x86_64/48", + "updated_at": 1743319740, + "arches": [ + "x86_64" + ], + "added_at": 1743319740, + "trending": 0.9335735599543232, + "installs_last_month": 69, "isMobileFriendly": false }, { @@ -65668,7 +65703,7 @@ ], "added_at": 1721804204, "trending": 9.480117304971817, - "installs_last_month": 57, + "installs_last_month": 61, "isMobileFriendly": false }, { @@ -65710,42 +65745,7 @@ ], "added_at": 1646071591, "trending": 1.0749988951432432, - "installs_last_month": 52, - "isMobileFriendly": false - }, - { - "name": "OpenBubbles", - "keywords": null, - "summary": "OpenBubbles 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_openbubbles_OpenBubbles", - "type": "desktop-application", - "translations": {}, - "project_license": "Apache-2.0", - "is_free_license": true, - "app_id": "app.openbubbles.OpenBubbles", - "icon": "https://dl.flathub.org/media/app/openbubbles/OpenBubbles/ad53031b845dd7e0bf0d927a3a0be880/icons/128x128/app.openbubbles.OpenBubbles.png", - "main_categories": "network", - "sub_categories": [ - "InstantMessaging", - "Chat" - ], - "developer_name": "OpenBubbles", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "openbubbles.app", - "verification_timestamp": "1743356226", - "runtime": "org.gnome.Platform/x86_64/48", - "updated_at": 1743319740, - "arches": [ - "x86_64" - ], - "added_at": 1743319740, - "trending": 2.5428571428571427, - "installs_last_month": 42, + "installs_last_month": 58, "isMobileFriendly": false }, { @@ -65786,7 +65786,7 @@ ], "added_at": 1678210415, "trending": 1.1800066439691332, - "installs_last_month": 18, + "installs_last_month": 22, "isMobileFriendly": false } ], @@ -65847,8 +65847,8 @@ "aarch64" ], "added_at": 1522565212, - "trending": 10.145137104492306, - "installs_last_month": 27806, + "trending": 9.715203702938954, + "installs_last_month": 29015, "isMobileFriendly": false }, { @@ -65891,8 +65891,8 @@ "aarch64" ], "added_at": 1700056998, - "trending": 9.385475786044696, - "installs_last_month": 22513, + "trending": 9.900888488119074, + "installs_last_month": 23403, "isMobileFriendly": false }, { @@ -65940,8 +65940,8 @@ "aarch64" ], "added_at": 1661808065, - "trending": 8.500308858576183, - "installs_last_month": 9839, + "trending": 10.458960663981436, + "installs_last_month": 10097, "isMobileFriendly": false }, { @@ -65974,8 +65974,8 @@ "x86_64" ], "added_at": 1719821016, - "trending": 1.3131116004306056, - "installs_last_month": 6714, + "trending": 1.1669495774458525, + "installs_last_month": 7006, "isMobileFriendly": false }, { @@ -66183,8 +66183,8 @@ "aarch64" ], "added_at": 1507020869, - "trending": 13.35797712912108, - "installs_last_month": 3606, + "trending": 11.156881979227986, + "installs_last_month": 3751, "isMobileFriendly": true }, { @@ -66221,8 +66221,8 @@ "aarch64" ], "added_at": 1555272588, - "trending": 8.404433834302576, - "installs_last_month": 2489, + "trending": 9.407164409271212, + "installs_last_month": 2532, "isMobileFriendly": false }, { @@ -66258,8 +66258,8 @@ "x86_64" ], "added_at": 1634584766, - "trending": 11.953958170604215, - "installs_last_month": 2220, + "trending": 10.284478629438258, + "installs_last_month": 2264, "isMobileFriendly": false }, { @@ -66305,8 +66305,8 @@ "aarch64" ], "added_at": 1568838350, - "trending": 6.996268425340272, - "installs_last_month": 473, + "trending": 3.3374571250000287, + "installs_last_month": 484, "isMobileFriendly": false }, { @@ -66347,8 +66347,8 @@ "aarch64" ], "added_at": 1539693914, - "trending": -0.09136002683488398, - "installs_last_month": 237, + "trending": 1.6312349272534812, + "installs_last_month": 242, "isMobileFriendly": false } ], @@ -66409,8 +66409,8 @@ "aarch64" ], "added_at": 1522565212, - "trending": 10.145137104492306, - "installs_last_month": 27806, + "trending": 9.715203702938954, + "installs_last_month": 29015, "isMobileFriendly": false }, { @@ -66453,8 +66453,8 @@ "aarch64" ], "added_at": 1700056998, - "trending": 9.385475786044696, - "installs_last_month": 22513, + "trending": 9.900888488119074, + "installs_last_month": 23403, "isMobileFriendly": false }, { @@ -66492,8 +66492,8 @@ "x86_64" ], "added_at": 1672904297, - "trending": 8.006534120820795, - "installs_last_month": 21274, + "trending": 8.080718431890704, + "installs_last_month": 22094, "isMobileFriendly": false }, { @@ -66541,8 +66541,8 @@ "aarch64" ], "added_at": 1661808065, - "trending": 8.500308858576183, - "installs_last_month": 9839, + "trending": 10.458960663981436, + "installs_last_month": 10097, "isMobileFriendly": false }, { @@ -66640,8 +66640,8 @@ "aarch64" ], "added_at": 1691391496, - "trending": 14.386829521375567, - "installs_last_month": 4796, + "trending": 14.591520858094627, + "installs_last_month": 4950, "isMobileFriendly": true }, { @@ -66691,8 +66691,8 @@ "aarch64" ], "added_at": 1671699609, - "trending": 10.382169490204769, - "installs_last_month": 1339, + "trending": 8.246413767971896, + "installs_last_month": 1346, "isMobileFriendly": false }, { @@ -66855,8 +66855,8 @@ "aarch64" ], "added_at": 1624185992, - "trending": 11.78419086227125, - "installs_last_month": 1309, + "trending": 14.281860403942868, + "installs_last_month": 1337, "isMobileFriendly": true }, { @@ -67001,8 +67001,8 @@ "aarch64" ], "added_at": 1567512518, - "trending": 11.086202069079192, - "installs_last_month": 1017, + "trending": 10.951768083071435, + "installs_last_month": 1056, "isMobileFriendly": false }, { @@ -67037,8 +67037,8 @@ "aarch64" ], "added_at": 1609312149, - "trending": 9.05659954031865, - "installs_last_month": 870, + "trending": 8.590355983638807, + "installs_last_month": 876, "isMobileFriendly": false }, { @@ -67231,8 +67231,8 @@ "aarch64" ], "added_at": 1644441223, - "trending": 13.366865408880551, - "installs_last_month": 670, + "trending": 14.28331013907447, + "installs_last_month": 685, "isMobileFriendly": false }, { @@ -67272,55 +67272,8 @@ "aarch64" ], "added_at": 1733626889, - "trending": 11.482489628565853, - "installs_last_month": 463, - "isMobileFriendly": true - }, - { - "name": "Pulp", - "keywords": [ - "rss", - "news", - "minimal", - "distraction", - "gtk", - "gnome" - ], - "summary": "Skim excessive feeds", - "description": "Note: Today Pulp is available as available as a preview which includes direct RSS along with FreshRSS and Nextcloud News backends.\n Pulp provides a workflow focused on reading through an excessive number of RSS feeds with the goal of regularly marking all read, resting in a state akin to an empty inbox.\n Contributing to quickly parsing excessive articles:\n \n Marking read while scrolling\n Ensuring full article titles and longer excerpts are visible in the article list\n A large mobile-friendly \"mash roughly here\" button to mark the list read and continue\n Minimising everything else, in both UI clutter and functionality\n \n Complimenting Pulp being a bucket that you're aiming to keep empty are the abilities to share (via Mastodon, Telegram, Reddit and mail) and save (to Wallabag, Nextcloud Bookmarks, Nextcloud Notes and Iotas).\n The goal here isn't to be a typical RSS reader, please see the README (via the website link) for more about what Pulp is trying to do and what's possible with this preview. There will be some bugs, reporting those (via the Report an Issue link) is greatly appreciated 🙏\n ", - "id": "org_gnome_gitlab_cheywood_Pulp", - "type": "desktop-application", - "translations": { - "en-GB": { - "description": "Pulp provides a workflow focused on reading through an excessive number of RSS feeds with the goal of regularly marking all read, resting in a state akin to an empty inbox.\n Contributing to quickly parsing excessive articles:\n \n Marking read while scrolling\n Ensuring full article titles and longer excerpts are visible in the article list\n Minimising everything else, in both UI clutter and functionality\n \n Complimenting Pulp being a bucket that you're aiming to keep empty are the abilities to share (via Mastodon, Telegram, Reddit and mail) and save (to Wallabag, Nextcloud Bookmarks, Nextcloud Notes and Iotas).\n ", - "summary": "Skim excessive feeds" - } - }, - "project_license": "GPL-3.0-or-later", - "is_free_license": true, - "app_id": "org.gnome.gitlab.cheywood.Pulp", - "icon": "https://dl.flathub.org/media/org/gnome/gitlab.cheywood.Pulp/f982277dc855046b1f5cecb12a83437a/icons/128x128/org.gnome.gitlab.cheywood.Pulp.png", - "main_categories": "network", - "sub_categories": [ - "Feed" - ], - "developer_name": "Chris Heywood", - "verification_verified": true, - "verification_method": "login_provider", - "verification_login_name": "cheywood", - "verification_login_provider": "gnome", - "verification_login_is_organization": "false", - "verification_website": null, - "verification_timestamp": "1722311582", - "runtime": "org.gnome.Platform/x86_64/48", - "updated_at": 1742525033, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1722114940, - "trending": 13.801076157772696, - "installs_last_month": 336, + "trending": 11.728741639043522, + "installs_last_month": 479, "isMobileFriendly": true }, { @@ -67370,10 +67323,57 @@ "aarch64" ], "added_at": 1671788181, - "trending": 9.037530906583129, - "installs_last_month": 308, + "trending": 9.946685161681836, + "installs_last_month": 332, "isMobileFriendly": false }, + { + "name": "Pulp", + "keywords": [ + "rss", + "news", + "minimal", + "distraction", + "gtk", + "gnome" + ], + "summary": "Skim excessive feeds", + "description": "Note: Today Pulp is available as available as a preview which includes direct RSS along with FreshRSS and Nextcloud News backends.\n Pulp provides a workflow focused on reading through an excessive number of RSS feeds with the goal of regularly marking all read, resting in a state akin to an empty inbox.\n Contributing to quickly parsing excessive articles:\n \n Marking read while scrolling\n Ensuring full article titles and longer excerpts are visible in the article list\n A large mobile-friendly \"mash roughly here\" button to mark the list read and continue\n Minimising everything else, in both UI clutter and functionality\n \n Complimenting Pulp being a bucket that you're aiming to keep empty are the abilities to share (via Mastodon, Telegram, Reddit and mail) and save (to Wallabag, Nextcloud Bookmarks, Nextcloud Notes and Iotas).\n The goal here isn't to be a typical RSS reader, please see the README (via the website link) for more about what Pulp is trying to do and what's possible with this preview. There will be some bugs, reporting those (via the Report an Issue link) is greatly appreciated 🙏\n ", + "id": "org_gnome_gitlab_cheywood_Pulp", + "type": "desktop-application", + "translations": { + "en-GB": { + "description": "Pulp provides a workflow focused on reading through an excessive number of RSS feeds with the goal of regularly marking all read, resting in a state akin to an empty inbox.\n Contributing to quickly parsing excessive articles:\n \n Marking read while scrolling\n Ensuring full article titles and longer excerpts are visible in the article list\n Minimising everything else, in both UI clutter and functionality\n \n Complimenting Pulp being a bucket that you're aiming to keep empty are the abilities to share (via Mastodon, Telegram, Reddit and mail) and save (to Wallabag, Nextcloud Bookmarks, Nextcloud Notes and Iotas).\n ", + "summary": "Skim excessive feeds" + } + }, + "project_license": "GPL-3.0-or-later", + "is_free_license": true, + "app_id": "org.gnome.gitlab.cheywood.Pulp", + "icon": "https://dl.flathub.org/media/org/gnome/gitlab.cheywood.Pulp/f982277dc855046b1f5cecb12a83437a/icons/128x128/org.gnome.gitlab.cheywood.Pulp.png", + "main_categories": "network", + "sub_categories": [ + "Feed" + ], + "developer_name": "Chris Heywood", + "verification_verified": true, + "verification_method": "login_provider", + "verification_login_name": "cheywood", + "verification_login_provider": "gnome", + "verification_login_is_organization": "false", + "verification_website": null, + "verification_timestamp": "1722311582", + "runtime": "org.gnome.Platform/x86_64/48", + "updated_at": 1742525033, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1722114940, + "trending": 13.454768076683152, + "installs_last_month": 332, + "isMobileFriendly": true + }, { "name": "Communique", "keywords": [ @@ -67413,7 +67413,7 @@ "aarch64" ], "added_at": 1633348020, - "trending": 12.08097882199868, + "trending": 8.740729481901694, "installs_last_month": 223, "isMobileFriendly": false }, @@ -67451,8 +67451,8 @@ "aarch64" ], "added_at": 1567020533, - "trending": 7.371138654623796, - "installs_last_month": 159, + "trending": 8.837099196288719, + "installs_last_month": 175, "isMobileFriendly": false }, { @@ -67635,8 +67635,8 @@ "aarch64" ], "added_at": 1621235992, - "trending": 10.559147397692849, - "installs_last_month": 151, + "trending": 11.738543627539348, + "installs_last_month": 165, "isMobileFriendly": false }, { @@ -67675,8 +67675,8 @@ "aarch64" ], "added_at": 1735821815, - "trending": 14.076146395313344, - "installs_last_month": 122, + "trending": 15.302549739553791, + "installs_last_month": 129, "isMobileFriendly": false }, { @@ -67711,7 +67711,7 @@ "aarch64" ], "added_at": 1659961539, - "trending": 7.145606798260681, + "trending": 9.377685598425408, "installs_last_month": 48, "isMobileFriendly": false } @@ -67767,8 +67767,8 @@ "aarch64" ], "added_at": 1521176433, - "trending": 9.57265240554738, - "installs_last_month": 41727, + "trending": 9.676051650732544, + "installs_last_month": 43309, "isMobileFriendly": false }, { @@ -67802,8 +67802,8 @@ "aarch64" ], "added_at": 1502991255, - "trending": 8.8506160521932, - "installs_last_month": 9709, + "trending": 11.040853572467336, + "installs_last_month": 10037, "isMobileFriendly": false }, { @@ -68014,8 +68014,8 @@ "aarch64" ], "added_at": 1502346171, - "trending": 11.856418487508822, - "installs_last_month": 7992, + "trending": 13.296835562794772, + "installs_last_month": 8306, "isMobileFriendly": false }, { @@ -68053,8 +68053,8 @@ "aarch64" ], "added_at": 1655825139, - "trending": 4.4065974992954775, - "installs_last_month": 3026, + "trending": 6.059592064890673, + "installs_last_month": 3125, "isMobileFriendly": false }, { @@ -68158,8 +68158,8 @@ "aarch64" ], "added_at": 1594807973, - "trending": 11.656566176995437, - "installs_last_month": 2870, + "trending": 12.237821350084898, + "installs_last_month": 3025, "isMobileFriendly": false }, { @@ -68340,8 +68340,8 @@ "aarch64" ], "added_at": 1603098559, - "trending": 10.708997502727165, - "installs_last_month": 2769, + "trending": 10.76879170181111, + "installs_last_month": 2856, "isMobileFriendly": false }, { @@ -68380,8 +68380,8 @@ "x86_64" ], "added_at": 1655201066, - "trending": 5.9594745298829865, - "installs_last_month": 2570, + "trending": 8.099953650198238, + "installs_last_month": 2545, "isMobileFriendly": false }, { @@ -68419,8 +68419,8 @@ "aarch64" ], "added_at": 1621319461, - "trending": 2.6166045975161305, - "installs_last_month": 2399, + "trending": 4.935888264925772, + "installs_last_month": 2454, "isMobileFriendly": false }, { @@ -68453,8 +68453,8 @@ "x86_64" ], "added_at": 1589572794, - "trending": 8.145503781102787, - "installs_last_month": 2226, + "trending": 7.998267002502535, + "installs_last_month": 2331, "isMobileFriendly": false }, { @@ -68493,8 +68493,8 @@ "aarch64" ], "added_at": 1613727018, - "trending": 9.715906064167584, - "installs_last_month": 1986, + "trending": 9.40344430747877, + "installs_last_month": 2090, "isMobileFriendly": false }, { @@ -68535,8 +68535,43 @@ "aarch64" ], "added_at": 1614083958, - "trending": 8.308041987812022, - "installs_last_month": 1701, + "trending": 7.3564761492674915, + "installs_last_month": 1772, + "isMobileFriendly": false + }, + { + "name": "Syncthing Tray", + "keywords": null, + "summary": "Tray application for Syncthing", + "description": "\n Syncthing Tray complements the normal web-based UI of Syncthing itself providing the following features:\n \n \n A tray icon showing the overall status of Syncthing\n A tray menu showing more detailed status information that also allows to quickly perform common actions such as triggering a rescan\n Notifications for certain events\n Quick access to the normal web-based UI of Syncthing\n Integration with systemd and launcher for Syncthing\n \n \n Note that this is the desktop environment independent version. The Plasmoid/KDE-integrations might be installed via a different\n distribution-specific package (but cannot be provided as Flatpak for technical reasons).\n \n ", + "id": "io_github_martchus_syncthingtray", + "type": "desktop-application", + "translations": {}, + "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/d099b3b64f8bf1d43652da69f73949db/icons/128x128/io.github.martchus.syncthingtray.png", + "main_categories": "network", + "sub_categories": [ + "FileTransfer" + ], + "developer_name": "Martchus", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "martchus.github.io", + "verification_timestamp": "1727540837", + "runtime": "org.kde.Platform/x86_64/6.8", + "updated_at": 1743806511, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1716271651, + "trending": 6.578081253540681, + "installs_last_month": 1626, "isMobileFriendly": false }, { @@ -68574,8 +68609,8 @@ "aarch64" ], "added_at": 1705484927, - "trending": 7.0863296988126585, - "installs_last_month": 1566, + "trending": 7.183063388175788, + "installs_last_month": 1622, "isMobileFriendly": false }, { @@ -68609,43 +68644,8 @@ "aarch64" ], "added_at": 1584083098, - "trending": 2.705005408864105, - "installs_last_month": 1532, - "isMobileFriendly": false - }, - { - "name": "Syncthing Tray", - "keywords": null, - "summary": "Tray application for Syncthing", - "description": "\n Syncthing Tray complements the normal web-based UI of Syncthing itself providing the following features:\n \n \n A tray icon showing the overall status of Syncthing\n A tray menu showing more detailed status information that also allows to quickly perform common actions such as triggering a rescan\n Notifications for certain events\n Quick access to the normal web-based UI of Syncthing\n Integration with systemd and launcher for Syncthing\n \n \n Note that this is the desktop environment independent version. The Plasmoid/KDE-integrations might be installed via a different\n distribution-specific package (but cannot be provided as Flatpak for technical reasons).\n \n ", - "id": "io_github_martchus_syncthingtray", - "type": "desktop-application", - "translations": {}, - "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/bd10dba2b03e7fb94e905acf2ea46d24/icons/128x128/io.github.martchus.syncthingtray.png", - "main_categories": "network", - "sub_categories": [ - "FileTransfer" - ], - "developer_name": "Martchus", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "martchus.github.io", - "verification_timestamp": "1727540837", - "runtime": "org.kde.Platform/x86_64/6.8", - "updated_at": 1743718534, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1716271651, - "trending": 6.541978011616505, - "installs_last_month": 1512, + "trending": -0.03400712448371945, + "installs_last_month": 1603, "isMobileFriendly": false }, { @@ -68686,8 +68686,8 @@ "aarch64" ], "added_at": 1638863697, - "trending": 9.619139000608271, - "installs_last_month": 1447, + "trending": 5.058100592223189, + "installs_last_month": 1514, "isMobileFriendly": false }, { @@ -68721,8 +68721,8 @@ "aarch64" ], "added_at": 1659335188, - "trending": -0.540132974620674, - "installs_last_month": 1267, + "trending": 0.8416444044042887, + "installs_last_month": 1311, "isMobileFriendly": false }, { @@ -68756,8 +68756,8 @@ "x86_64" ], "added_at": 1513541965, - "trending": 11.447805995995646, - "installs_last_month": 1203, + "trending": 11.01803014053524, + "installs_last_month": 1229, "isMobileFriendly": false }, { @@ -68794,8 +68794,8 @@ "aarch64" ], "added_at": 1693589782, - "trending": 6.140296464880133, - "installs_last_month": 1019, + "trending": 6.061241643551742, + "installs_last_month": 1064, "isMobileFriendly": false }, { @@ -68836,8 +68836,8 @@ "aarch64" ], "added_at": 1685340359, - "trending": 3.2638260478746375, - "installs_last_month": 965, + "trending": 0.8439641825175644, + "installs_last_month": 996, "isMobileFriendly": false }, { @@ -69011,8 +69011,8 @@ "aarch64" ], "added_at": 1642284577, - "trending": 5.892913130459307, - "installs_last_month": 898, + "trending": 7.056292433616573, + "installs_last_month": 957, "isMobileFriendly": false }, { @@ -69061,8 +69061,8 @@ "aarch64" ], "added_at": 1741811470, - "trending": 10.27977198808973, - "installs_last_month": 812, + "trending": 11.72973645667143, + "installs_last_month": 880, "isMobileFriendly": false }, { @@ -69095,8 +69095,8 @@ "x86_64" ], "added_at": 1648496823, - "trending": 1.6097767586601064, - "installs_last_month": 758, + "trending": 1.362901592680214, + "installs_last_month": 807, "isMobileFriendly": false }, { @@ -69176,8 +69176,8 @@ "aarch64" ], "added_at": 1633081084, - "trending": 8.94490015874701, - "installs_last_month": 740, + "trending": 9.019835051148403, + "installs_last_month": 751, "isMobileFriendly": false }, { @@ -69212,8 +69212,8 @@ "aarch64" ], "added_at": 1649660029, - "trending": 1.8221989978079136, - "installs_last_month": 658, + "trending": 1.7885699367243508, + "installs_last_month": 682, "isMobileFriendly": false }, { @@ -69248,8 +69248,8 @@ "aarch64" ], "added_at": 1623052890, - "trending": 2.23930332267377, - "installs_last_month": 320, + "trending": 4.874809853839259, + "installs_last_month": 325, "isMobileFriendly": false }, { @@ -69282,8 +69282,8 @@ "x86_64" ], "added_at": 1591265261, - "trending": 5.540098276690889, - "installs_last_month": 235, + "trending": 4.952124365047774, + "installs_last_month": 250, "isMobileFriendly": false }, { @@ -69326,8 +69326,8 @@ "aarch64" ], "added_at": 1649062659, - "trending": 13.976968534348106, - "installs_last_month": 222, + "trending": 12.884782813355056, + "installs_last_month": 226, "isMobileFriendly": false }, { @@ -69364,8 +69364,8 @@ "x86_64" ], "added_at": 1665426170, - "trending": -0.39784760738679514, - "installs_last_month": 187, + "trending": 0.9238036389171986, + "installs_last_month": 204, "isMobileFriendly": false }, { @@ -69465,8 +69465,8 @@ "aarch64" ], "added_at": 1735822042, - "trending": 1.1474631320140585, - "installs_last_month": 169, + "trending": 1.348218747427499, + "installs_last_month": 172, "isMobileFriendly": false }, { @@ -69500,12 +69500,12 @@ ], "added_at": 1506255705, "trending": 8.877527718860918, - "installs_last_month": 55, + "installs_last_month": 56, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 13, + "processingTimeMs": 8, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -69548,8 +69548,8 @@ "aarch64" ], "added_at": 1658744039, - "trending": 0.4763753924484071, - "installs_last_month": 1187, + "trending": 1.660028971892111, + "installs_last_month": 1228, "isMobileFriendly": false }, { @@ -69583,8 +69583,8 @@ "aarch64" ], "added_at": 1607335297, - "trending": 3.637571111547652, - "installs_last_month": 352, + "trending": 2.7089471459480863, + "installs_last_month": 368, "isMobileFriendly": false }, { @@ -69618,8 +69618,8 @@ "aarch64" ], "added_at": 1607335388, - "trending": 5.451134923438148, - "installs_last_month": 285, + "trending": 4.644375140925597, + "installs_last_month": 299, "isMobileFriendly": false }, { @@ -69657,8 +69657,8 @@ "aarch64" ], "added_at": 1708946424, - "trending": 1.8040217098288465, - "installs_last_month": 138, + "trending": 2.463057689901321, + "installs_last_month": 133, "isMobileFriendly": false }, { @@ -69728,7 +69728,7 @@ ], "added_at": 1623052942, "trending": 4.952602323768065, - "installs_last_month": 21, + "installs_last_month": 23, "isMobileFriendly": false } ], @@ -69775,8 +69775,8 @@ "x86_64" ], "added_at": 1497772963, - "trending": 12.031733781297056, - "installs_last_month": 120065, + "trending": 11.431771723231048, + "installs_last_month": 124184, "isMobileFriendly": false }, { @@ -69819,8 +69819,8 @@ "aarch64" ], "added_at": 1507069248, - "trending": 13.99259068902878, - "installs_last_month": 83481, + "trending": 14.121745226838485, + "installs_last_month": 86163, "isMobileFriendly": false }, { @@ -69867,8 +69867,8 @@ "aarch64" ], "added_at": 1522565212, - "trending": 10.145137104492306, - "installs_last_month": 27806, + "trending": 9.715203702938954, + "installs_last_month": 29015, "isMobileFriendly": false }, { @@ -69903,8 +69903,8 @@ "x86_64" ], "added_at": 1516794576, - "trending": 8.533349412220135, - "installs_last_month": 26486, + "trending": 6.955984090643934, + "installs_last_month": 27361, "isMobileFriendly": false }, { @@ -69938,8 +69938,47 @@ "x86_64" ], "added_at": 1510122100, - "trending": 7.787915692843559, - "installs_last_month": 24374, + "trending": 9.03238456568694, + "installs_last_month": 25143, + "isMobileFriendly": false + }, + { + "name": "Opera", + "keywords": [ + "web browser" + ], + "summary": "Your personal browser", + "description": "\n Faster, safer and smarter than default browsers. Opera Browser is fully-featured for privacy, security, and everything you do online.\n \n \n Opera's free VPN, Ad blocker, and Flow file sharing. Just a few of the must-have features built into Opera for faster, smoother and distraction-free browsing designed to improve your online experience.\n \n \n Experience faster, distraction-free browsing with Ad blocking, and browse privately. Smoothly sync your data and send files between Opera on Mac, Windows, Linux, iOS, Android, and Chromebook.\n \n \n NOTE: This package is not verified by, affiliated with, or supported by Opera.\n \n ", + "id": "com_opera_Opera", + "type": "desktop-application", + "translations": {}, + "project_license": "LicenseRef-proprietary", + "is_free_license": false, + "app_id": "com.opera.Opera", + "icon": "https://dl.flathub.org/media/com/opera/Opera/cb2e6ee34bbb9c899632b34043b42836/icons/128x128/com.opera.Opera.png", + "main_categories": "network", + "sub_categories": [ + "WebBrowser", + "InstantMessaging", + "Chat", + "Feed" + ], + "developer_name": "Opera", + "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": 1743088542, + "arches": [ + "x86_64" + ], + "added_at": 1672904297, + "trending": 8.080718431890704, + "installs_last_month": 22094, "isMobileFriendly": false }, { @@ -69995,47 +70034,8 @@ "aarch64" ], "added_at": 1663217081, - "trending": 6.260721892086824, - "installs_last_month": 21289, - "isMobileFriendly": false - }, - { - "name": "Opera", - "keywords": [ - "web browser" - ], - "summary": "Your personal browser", - "description": "\n Faster, safer and smarter than default browsers. Opera Browser is fully-featured for privacy, security, and everything you do online.\n \n \n Opera's free VPN, Ad blocker, and Flow file sharing. Just a few of the must-have features built into Opera for faster, smoother and distraction-free browsing designed to improve your online experience.\n \n \n Experience faster, distraction-free browsing with Ad blocking, and browse privately. Smoothly sync your data and send files between Opera on Mac, Windows, Linux, iOS, Android, and Chromebook.\n \n \n NOTE: This package is not verified by, affiliated with, or supported by Opera.\n \n ", - "id": "com_opera_Opera", - "type": "desktop-application", - "translations": {}, - "project_license": "LicenseRef-proprietary", - "is_free_license": false, - "app_id": "com.opera.Opera", - "icon": "https://dl.flathub.org/media/com/opera/Opera/cb2e6ee34bbb9c899632b34043b42836/icons/128x128/com.opera.Opera.png", - "main_categories": "network", - "sub_categories": [ - "WebBrowser", - "InstantMessaging", - "Chat", - "Feed" - ], - "developer_name": "Opera", - "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": 1743088542, - "arches": [ - "x86_64" - ], - "added_at": 1672904297, - "trending": 8.006534120820795, - "installs_last_month": 21274, + "trending": 6.2113628673656365, + "installs_last_month": 22021, "isMobileFriendly": false }, { @@ -70075,8 +70075,8 @@ "aarch64" ], "added_at": 1701681679, - "trending": 4.31515853752618, - "installs_last_month": 18566, + "trending": 3.9350661690675697, + "installs_last_month": 19107, "isMobileFriendly": false }, { @@ -70109,8 +70109,8 @@ "x86_64" ], "added_at": 1503571282, - "trending": 15.52155458932243, - "installs_last_month": 12252, + "trending": 15.787735152299735, + "installs_last_month": 12728, "isMobileFriendly": false }, { @@ -70158,8 +70158,8 @@ "aarch64" ], "added_at": 1661808065, - "trending": 8.500308858576183, - "installs_last_month": 9839, + "trending": 10.458960663981436, + "installs_last_month": 10097, "isMobileFriendly": false }, { @@ -70204,8 +70204,8 @@ "aarch64" ], "added_at": 1510519332, - "trending": 11.493531104384733, - "installs_last_month": 5814, + "trending": 11.386754602093626, + "installs_last_month": 5986, "isMobileFriendly": false }, { @@ -70242,8 +70242,8 @@ "aarch64" ], "added_at": 1654507031, - "trending": 6.965129023180274, - "installs_last_month": 5453, + "trending": 5.630366074275794, + "installs_last_month": 5658, "isMobileFriendly": false }, { @@ -70277,8 +70277,8 @@ "x86_64" ], "added_at": 1508304361, - "trending": 6.009681651356763, - "installs_last_month": 4323, + "trending": 6.597380252014731, + "installs_last_month": 4492, "isMobileFriendly": false }, { @@ -70316,8 +70316,8 @@ "aarch64" ], "added_at": 1629662557, - "trending": 4.4753723728992565, - "installs_last_month": 3721, + "trending": 3.5539687111723737, + "installs_last_month": 3840, "isMobileFriendly": false }, { @@ -70351,8 +70351,8 @@ "x86_64" ], "added_at": 1592206236, - "trending": 8.409294056639723, - "installs_last_month": 3097, + "trending": 10.19879599726822, + "installs_last_month": 3198, "isMobileFriendly": false }, { @@ -70456,8 +70456,8 @@ "aarch64" ], "added_at": 1594807973, - "trending": 11.656566176995437, - "installs_last_month": 2870, + "trending": 12.237821350084898, + "installs_last_month": 3025, "isMobileFriendly": false }, { @@ -70491,8 +70491,8 @@ "aarch64" ], "added_at": 1654498919, - "trending": 11.8878028136774, - "installs_last_month": 2701, + "trending": 11.313172001731624, + "installs_last_month": 2797, "isMobileFriendly": false }, { @@ -70530,8 +70530,8 @@ "aarch64" ], "added_at": 1713420722, - "trending": 6.487417714951547, - "installs_last_month": 2374, + "trending": 4.7930487624680165, + "installs_last_month": 2410, "isMobileFriendly": false }, { @@ -70565,8 +70565,8 @@ "aarch64" ], "added_at": 1541920814, - "trending": 9.075878381835958, - "installs_last_month": 1803, + "trending": 9.11953021842969, + "installs_last_month": 1862, "isMobileFriendly": false }, { @@ -70610,8 +70610,8 @@ "aarch64" ], "added_at": 1702306357, - "trending": 11.215987109563407, - "installs_last_month": 1734, + "trending": 9.847725265085783, + "installs_last_month": 1730, "isMobileFriendly": false }, { @@ -70645,8 +70645,8 @@ "aarch64" ], "added_at": 1635015429, - "trending": 10.816475886519967, - "installs_last_month": 1688, + "trending": 7.54259518218203, + "installs_last_month": 1655, "isMobileFriendly": false }, { @@ -70680,8 +70680,8 @@ "aarch64" ], "added_at": 1670840398, - "trending": 7.082835860029084, - "installs_last_month": 1504, + "trending": 8.204726592709973, + "installs_last_month": 1547, "isMobileFriendly": false }, { @@ -70856,8 +70856,8 @@ "aarch64" ], "added_at": 1510662667, - "trending": 13.621636771106846, - "installs_last_month": 1415, + "trending": 13.57974577249291, + "installs_last_month": 1441, "isMobileFriendly": true }, { @@ -70899,8 +70899,8 @@ "aarch64" ], "added_at": 1728978462, - "trending": 1.9076269209601733, - "installs_last_month": 1362, + "trending": 2.2823540275180045, + "installs_last_month": 1411, "isMobileFriendly": false }, { @@ -70941,8 +70941,8 @@ "aarch64" ], "added_at": 1710843054, - "trending": 14.424964974971427, - "installs_last_month": 1276, + "trending": 12.424563850899007, + "installs_last_month": 1318, "isMobileFriendly": false }, { @@ -70985,8 +70985,8 @@ "aarch64" ], "added_at": 1546941692, - "trending": 5.813628678629519, - "installs_last_month": 1109, + "trending": 5.067071407552835, + "installs_last_month": 1179, "isMobileFriendly": false }, { @@ -71027,8 +71027,8 @@ "aarch64" ], "added_at": 1606129535, - "trending": 10.993122249431496, - "installs_last_month": 1098, + "trending": 12.084567800023168, + "installs_last_month": 1137, "isMobileFriendly": false }, { @@ -71062,8 +71062,8 @@ "aarch64" ], "added_at": 1530909420, - "trending": 6.360323864090117, - "installs_last_month": 1044, + "trending": 6.9854262117009505, + "installs_last_month": 1084, "isMobileFriendly": false }, { @@ -71109,8 +71109,8 @@ "aarch64" ], "added_at": 1653029838, - "trending": 7.569677355325513, - "installs_last_month": 1019, + "trending": 6.185791551811928, + "installs_last_month": 1007, "isMobileFriendly": false }, { @@ -71272,8 +71272,8 @@ "aarch64" ], "added_at": 1526596299, - "trending": 9.186000053744062, - "installs_last_month": 988, + "trending": 9.239527436283826, + "installs_last_month": 995, "isMobileFriendly": false }, { @@ -71308,8 +71308,8 @@ "aarch64" ], "added_at": 1656320516, - "trending": 12.008278372200785, - "installs_last_month": 870, + "trending": 11.695589259991076, + "installs_last_month": 912, "isMobileFriendly": false }, { @@ -71353,42 +71353,8 @@ "aarch64" ], "added_at": 1580410069, - "trending": 15.376051322863558, - "installs_last_month": 851, - "isMobileFriendly": false - }, - { - "name": "Franz", - "keywords": null, - "summary": "Messenger for the desktop", - "description": "Franz is your messaging app / former Emperor of Austria and combines chat and messaging services into one application. Franz currently supports Slack, WhatsApp, WeChat, HipChat, Facebook Messenger, Telegram, Google Hangouts,GroupMe, Skype and many more.", - "id": "com_meetfranz_Franz", - "type": "desktop-application", - "translations": {}, - "project_license": "Apache-2.0", - "is_free_license": true, - "app_id": "com.meetfranz.Franz", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.meetfranz.Franz.png", - "main_categories": "network", - "sub_categories": [ - "InstantMessaging" - ], - "developer_name": "Stefan Maizner", - "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": 1695018528, - "arches": [ - "x86_64" - ], - "added_at": 1556619810, - "trending": 10.135628082534566, - "installs_last_month": 848, + "trending": 16.44765149932323, + "installs_last_month": 894, "isMobileFriendly": false }, { @@ -71425,8 +71391,92 @@ "aarch64" ], "added_at": 1617112696, - "trending": 8.947368871672664, - "installs_last_month": 848, + "trending": 10.81398055304492, + "installs_last_month": 885, + "isMobileFriendly": false + }, + { + "name": "Jami", + "keywords": [ + "Qt", + "chat", + "talk", + "im", + "message", + "voip" + ], + "summary": "Privacy-oriented voice, video, chat, and conference platform", + "description": "\n Jami [1], a GNU package, is software for universal and\n distributed peer-to-peer communication that respects the\n freedom and privacy of its users.\n \n \n Jami is the simplest and easiest way to connect with people\n (and devices) with instant messaging, audio and video calls\n over the Internet and LAN/WAN intranets.\n \n \n Jami is a free/libre, end-to-end encrypted, and private\n communication platform.\n \n \n Jami – which used to be known as Ring – is also an\n open-source alternative (to Facebook Messenger, Signal,\n Skype, Teams, Telegram, TikTok, Viber, WhatsApp, Zoom) that\n prioritizes the privacy of its users.\n \n \n Jami has a professional-looking design and is available for\n a wide range of platforms. Unlike the alternatives, calls\n using Jami are directly between users as it does not use\n servers to handle calls.\n \n \n This gives the greatest privacy as the distributed nature\n of Jami means your calls are only between participants.\n \n \n One-to-one and group conversations with Jami are enhanced\n with: instant messaging; audio and video calling;\n recording and sending audio and video messages;\n file transfers; screen sharing; and, location sharing.\n \n \n Jami can also function as a SIP client.\n \n \n Jami has multiple extensions [2] available:\n Audio Filter; Auto Answer; Green Screen; Watermark; and,\n Whisper Transcript.\n \n \n Jami can be easily deployed in organizations with the\n “Jami Account Management Server” (JAMS) [3], allowing users\n to connect with their corporate credentials or create local\n accounts. JAMS allows you to manage your own Jami community\n while taking advantage of Jami’s distributed network\n architecture.\n \n \n Jami is available for GNU/Linux, Windows, macOS, iOS,\n Android, and Android TV, making Jami an interoperable and\n cross-platform communication framework.\n \n \n Manage multiple SIP accounts, Jami accounts and JAMS\n accounts with the Jami client installed on one or multiple\n devices.\n \n \n Jami is free, unlimited, private, advertising free,\n compatible, fast, autonomous, and anonymous.\n \n \n [1] https://jami.net/\n \n \n [2] https://jami.net/extensions/\n \n \n [3] https://jami.biz/\n \n ", + "id": "net_jami_Jami", + "type": "desktop-application", + "translations": { + "hu": { + "description": "\n A Jami [1], egy GNU-csomag, egy univerzális és elosztott\n társ-társ kommunikációra szolgáló szoftver, amely\n tiszteletben tartja a felhasználók szabadságát és\n magánéletét.\n \n \n A Jami a legegyszerűbb és legegyszerűbb módja annak, hogy\n azonnali üzenetküldéssel, hang- és videohívásokkal\n kapcsolódjon az emberekhez (és eszközökhöz) az interneten és\n a LAN/WAN intraneteken keresztül.\n \n \n A Jami egy ingyenes, teljes körűen titkosított és privát\n kommunikációs platform.\n \n \n A Jami – amelyet korábban Ring néven ismertek – egy nyílt\n forráskódú alternatíva is (a Facebook Messenger, a Signal,\n a Skype, a Teams, a Telegram, a TikTok, a Viber, a WhatsApp,\n a Zoom számára), amely előtérbe helyezi a felhasználók\n magánéletét.\n \n \n A Jami professzionális megjelenésű, és platformok széles\n skálájához elérhető. Az alternatívákkal ellentétben a Jami-t\n használó hívások közvetlenül a felhasználók között zajlanak,\n mivel nem használ kiszolgálókat a hívások kezelésére.\n \n \n Ez biztosítja a legnagyobb magánéletet, mivel a Jami\n elosztott jellege azt jelenti, hogy a hívások csak a\n résztvevők között zajlanak.\n \n \n A Jamival folytatott személyes és csoportos beszélgetéseket\n a következők javítják: azonnali üzenetküldés; hang- és\n videohívások; hang- és videoüzenetek rögzítése és küldése;\n fájlátvitel; képernyőmegosztás; és helymegosztás.\n \n \n A Jami SIP-ügyfélként is működhet.\n \n \n A Jami-nek több bővítménye [2] is elérhető: hangszűrő;\n automatikus válasz; zöld képernyő; vízjel; és, suttogó\n átirat.\n \n \n A Jami könnyen telepíthető a szervezetekben\n a „Jami fiókkezelő kiszolgálóval” (JAMS) [3], amely lehetővé\n teszi a felhasználók számára, hogy csatlakozzanak vállalati\n hitelesítő adataikhoz, vagy helyi fiókokat hozzanak létre.\n A JAMS lehetővé teszi saját Jami közösségének kezelését,\n miközben kihasználja a Jami elosztott hálózati\n architektúráját.\n \n \n A Jami elérhető GNU/Linux, Windows, macOS, iOS, Android és\n Android TV rendszereken, így a Jami egy interoperábilis és\n platformok közötti kommunikációs keretrendszer.\n \n \n Kezeljen több SIP-fiókot, Jami-fiókot és JAMS-fiókot az egy\n vagy több eszközre telepített Jami-ügyféllel.\n \n \n A Jami ingyenes, korlátlan, privát, reklámmentes,\n kompatibilis, gyors, autonóm és névtelen.\n \n \n [1] https://jami.net/hu/\n \n \n [2] https://jami.net/hu/extensions/\n \n \n [3] https://jami.biz/\n \n ", + "summary": "Adatvédelem-orientált hang-, video-, csevegés- és konferenciaplatform" + } + }, + "project_license": "GPL-3.0+", + "is_free_license": true, + "app_id": "net.jami.Jami", + "icon": "https://dl.flathub.org/media/net/jami/Jami/75a7a0c7fc0f35a2f9b26980eb703eac/icons/128x128/net.jami.Jami.png", + "main_categories": "network", + "sub_categories": [ + "Chat", + "FileTransfer", + "InstantMessaging", + "P2P" + ], + "developer_name": "Savoir-faire Linux", + "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": 1741811470, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1741811470, + "trending": 11.72973645667143, + "installs_last_month": 880, + "isMobileFriendly": false + }, + { + "name": "Franz", + "keywords": null, + "summary": "Messenger for the desktop", + "description": "Franz is your messaging app / former Emperor of Austria and combines chat and messaging services into one application. Franz currently supports Slack, WhatsApp, WeChat, HipChat, Facebook Messenger, Telegram, Google Hangouts,GroupMe, Skype and many more.", + "id": "com_meetfranz_Franz", + "type": "desktop-application", + "translations": {}, + "project_license": "Apache-2.0", + "is_free_license": true, + "app_id": "com.meetfranz.Franz", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/com.meetfranz.Franz.png", + "main_categories": "network", + "sub_categories": [ + "InstantMessaging" + ], + "developer_name": "Stefan Maizner", + "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": 1695018528, + "arches": [ + "x86_64" + ], + "added_at": 1556619810, + "trending": 9.313690071459256, + "installs_last_month": 873, "isMobileFriendly": false }, { @@ -71581,58 +71631,8 @@ "aarch64" ], "added_at": 1655734570, - "trending": 14.901445160653305, - "installs_last_month": 818, - "isMobileFriendly": false - }, - { - "name": "Jami", - "keywords": [ - "Qt", - "chat", - "talk", - "im", - "message", - "voip" - ], - "summary": "Privacy-oriented voice, video, chat, and conference platform", - "description": "\n Jami [1], a GNU package, is software for universal and\n distributed peer-to-peer communication that respects the\n freedom and privacy of its users.\n \n \n Jami is the simplest and easiest way to connect with people\n (and devices) with instant messaging, audio and video calls\n over the Internet and LAN/WAN intranets.\n \n \n Jami is a free/libre, end-to-end encrypted, and private\n communication platform.\n \n \n Jami – which used to be known as Ring – is also an\n open-source alternative (to Facebook Messenger, Signal,\n Skype, Teams, Telegram, TikTok, Viber, WhatsApp, Zoom) that\n prioritizes the privacy of its users.\n \n \n Jami has a professional-looking design and is available for\n a wide range of platforms. Unlike the alternatives, calls\n using Jami are directly between users as it does not use\n servers to handle calls.\n \n \n This gives the greatest privacy as the distributed nature\n of Jami means your calls are only between participants.\n \n \n One-to-one and group conversations with Jami are enhanced\n with: instant messaging; audio and video calling;\n recording and sending audio and video messages;\n file transfers; screen sharing; and, location sharing.\n \n \n Jami can also function as a SIP client.\n \n \n Jami has multiple extensions [2] available:\n Audio Filter; Auto Answer; Green Screen; Watermark; and,\n Whisper Transcript.\n \n \n Jami can be easily deployed in organizations with the\n “Jami Account Management Server” (JAMS) [3], allowing users\n to connect with their corporate credentials or create local\n accounts. JAMS allows you to manage your own Jami community\n while taking advantage of Jami’s distributed network\n architecture.\n \n \n Jami is available for GNU/Linux, Windows, macOS, iOS,\n Android, and Android TV, making Jami an interoperable and\n cross-platform communication framework.\n \n \n Manage multiple SIP accounts, Jami accounts and JAMS\n accounts with the Jami client installed on one or multiple\n devices.\n \n \n Jami is free, unlimited, private, advertising free,\n compatible, fast, autonomous, and anonymous.\n \n \n [1] https://jami.net/\n \n \n [2] https://jami.net/extensions/\n \n \n [3] https://jami.biz/\n \n ", - "id": "net_jami_Jami", - "type": "desktop-application", - "translations": { - "hu": { - "description": "\n A Jami [1], egy GNU-csomag, egy univerzális és elosztott\n társ-társ kommunikációra szolgáló szoftver, amely\n tiszteletben tartja a felhasználók szabadságát és\n magánéletét.\n \n \n A Jami a legegyszerűbb és legegyszerűbb módja annak, hogy\n azonnali üzenetküldéssel, hang- és videohívásokkal\n kapcsolódjon az emberekhez (és eszközökhöz) az interneten és\n a LAN/WAN intraneteken keresztül.\n \n \n A Jami egy ingyenes, teljes körűen titkosított és privát\n kommunikációs platform.\n \n \n A Jami – amelyet korábban Ring néven ismertek – egy nyílt\n forráskódú alternatíva is (a Facebook Messenger, a Signal,\n a Skype, a Teams, a Telegram, a TikTok, a Viber, a WhatsApp,\n a Zoom számára), amely előtérbe helyezi a felhasználók\n magánéletét.\n \n \n A Jami professzionális megjelenésű, és platformok széles\n skálájához elérhető. Az alternatívákkal ellentétben a Jami-t\n használó hívások közvetlenül a felhasználók között zajlanak,\n mivel nem használ kiszolgálókat a hívások kezelésére.\n \n \n Ez biztosítja a legnagyobb magánéletet, mivel a Jami\n elosztott jellege azt jelenti, hogy a hívások csak a\n résztvevők között zajlanak.\n \n \n A Jamival folytatott személyes és csoportos beszélgetéseket\n a következők javítják: azonnali üzenetküldés; hang- és\n videohívások; hang- és videoüzenetek rögzítése és küldése;\n fájlátvitel; képernyőmegosztás; és helymegosztás.\n \n \n A Jami SIP-ügyfélként is működhet.\n \n \n A Jami-nek több bővítménye [2] is elérhető: hangszűrő;\n automatikus válasz; zöld képernyő; vízjel; és, suttogó\n átirat.\n \n \n A Jami könnyen telepíthető a szervezetekben\n a „Jami fiókkezelő kiszolgálóval” (JAMS) [3], amely lehetővé\n teszi a felhasználók számára, hogy csatlakozzanak vállalati\n hitelesítő adataikhoz, vagy helyi fiókokat hozzanak létre.\n A JAMS lehetővé teszi saját Jami közösségének kezelését,\n miközben kihasználja a Jami elosztott hálózati\n architektúráját.\n \n \n A Jami elérhető GNU/Linux, Windows, macOS, iOS, Android és\n Android TV rendszereken, így a Jami egy interoperábilis és\n platformok közötti kommunikációs keretrendszer.\n \n \n Kezeljen több SIP-fiókot, Jami-fiókot és JAMS-fiókot az egy\n vagy több eszközre telepített Jami-ügyféllel.\n \n \n A Jami ingyenes, korlátlan, privát, reklámmentes,\n kompatibilis, gyors, autonóm és névtelen.\n \n \n [1] https://jami.net/hu/\n \n \n [2] https://jami.net/hu/extensions/\n \n \n [3] https://jami.biz/\n \n ", - "summary": "Adatvédelem-orientált hang-, video-, csevegés- és konferenciaplatform" - } - }, - "project_license": "GPL-3.0+", - "is_free_license": true, - "app_id": "net.jami.Jami", - "icon": "https://dl.flathub.org/media/net/jami/Jami/75a7a0c7fc0f35a2f9b26980eb703eac/icons/128x128/net.jami.Jami.png", - "main_categories": "network", - "sub_categories": [ - "Chat", - "FileTransfer", - "InstantMessaging", - "P2P" - ], - "developer_name": "Savoir-faire Linux", - "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": 1741811470, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1741811470, - "trending": 10.27977198808973, - "installs_last_month": 812, + "trending": 16.958652923397857, + "installs_last_month": 845, "isMobileFriendly": false }, { @@ -71667,8 +71667,8 @@ "aarch64" ], "added_at": 1646993368, - "trending": 7.87028985797443, - "installs_last_month": 728, + "trending": 9.33888084776362, + "installs_last_month": 785, "isMobileFriendly": false }, { @@ -71859,8 +71859,8 @@ "aarch64" ], "added_at": 1535617771, - "trending": 9.028215307747606, - "installs_last_month": 654, + "trending": 10.093728219239075, + "installs_last_month": 671, "isMobileFriendly": false }, { @@ -71905,8 +71905,46 @@ "aarch64" ], "added_at": 1718713823, - "trending": 7.56309079446273, - "installs_last_month": 587, + "trending": 8.434539482893312, + "installs_last_month": 604, + "isMobileFriendly": false + }, + { + "name": "qTox", + "keywords": null, + "summary": "Powerful Tox chat client that follows the Tox design guidelines.", + "description": "\n A New Kind of Instant Messaging\n \n \n With the rise of government monitoring programs, qTox provides an easy to use\n application that allows you to connect with friends and family without anyone\n else listening in. While other big-name services require you to pay for\n features, qTox is totally free, and comes without advertising.\n \n \n Nowadays, every government seems to be interested in what we're saying online.\n qTox is built on a \"privacy goes first\" agenda, and we make no compromises.\n Your safety is our top priority, and there isn't anything in the world that\n will change that.\n \n Instant messaging, video conferencing, and more.\n \n Messages: At your fingertips. You're always in the loop with instant encrypted messaging.\n Calls: Stay in touch. Make free and secure qTox to qTox calls.\n Video: Seeing is believing. Catch up face to face with a secure video call.\n \n \n qTox is a free and open source software, built by and for the users!\n \n \n \n Security: qTox takes your privacy seriously. With leading-class encryption,\n you can rest assured knowing that the only people reading your messages are\n the ones you send them to.\n \n \n Ease of Use: Unlike other secure messaging solutions, qTox does not require\n you to be a computer programmer to use it. qTox comes out-of-the-box with an\n easy-to-use interface that allows you to focus on your conversations.\n \n \n Freedom: qTox is both free for you to use, and free for you to change.\n You are completely free to both use and modify qTox. Furthermore,\n qTox will never harass you with ads, or require you to pay for features.\n \n \n ", + "id": "io_github_qtox_qTox", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0", + "is_free_license": true, + "app_id": "io.github.qtox.qTox", + "icon": "https://dl.flathub.org/media/io/github/qtox.qTox/17709cdea5b36131caac54874813d2cc/icons/128x128/io.github.qtox.qTox.png", + "main_categories": "network", + "sub_categories": [ + "InstantMessaging", + "Chat", + "Telephony", + "VideoConference" + ], + "developer_name": "TokTok 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.kde.Platform/x86_64/6.8", + "updated_at": 1736942242, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1735763745, + "trending": 5.055171352152959, + "installs_last_month": 577, "isMobileFriendly": false }, { @@ -71952,46 +71990,8 @@ "x86_64" ], "added_at": 1607504318, - "trending": -1.058726319896189, - "installs_last_month": 556, - "isMobileFriendly": false - }, - { - "name": "qTox", - "keywords": null, - "summary": "Powerful Tox chat client that follows the Tox design guidelines.", - "description": "\n A New Kind of Instant Messaging\n \n \n With the rise of government monitoring programs, qTox provides an easy to use\n application that allows you to connect with friends and family without anyone\n else listening in. While other big-name services require you to pay for\n features, qTox is totally free, and comes without advertising.\n \n \n Nowadays, every government seems to be interested in what we're saying online.\n qTox is built on a \"privacy goes first\" agenda, and we make no compromises.\n Your safety is our top priority, and there isn't anything in the world that\n will change that.\n \n Instant messaging, video conferencing, and more.\n \n Messages: At your fingertips. You're always in the loop with instant encrypted messaging.\n Calls: Stay in touch. Make free and secure qTox to qTox calls.\n Video: Seeing is believing. Catch up face to face with a secure video call.\n \n \n qTox is a free and open source software, built by and for the users!\n \n \n \n Security: qTox takes your privacy seriously. With leading-class encryption,\n you can rest assured knowing that the only people reading your messages are\n the ones you send them to.\n \n \n Ease of Use: Unlike other secure messaging solutions, qTox does not require\n you to be a computer programmer to use it. qTox comes out-of-the-box with an\n easy-to-use interface that allows you to focus on your conversations.\n \n \n Freedom: qTox is both free for you to use, and free for you to change.\n You are completely free to both use and modify qTox. Furthermore,\n qTox will never harass you with ads, or require you to pay for features.\n \n \n ", - "id": "io_github_qtox_qTox", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0", - "is_free_license": true, - "app_id": "io.github.qtox.qTox", - "icon": "https://dl.flathub.org/media/io/github/qtox.qTox/17709cdea5b36131caac54874813d2cc/icons/128x128/io.github.qtox.qTox.png", - "main_categories": "network", - "sub_categories": [ - "InstantMessaging", - "Chat", - "Telephony", - "VideoConference" - ], - "developer_name": "TokTok 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.kde.Platform/x86_64/6.8", - "updated_at": 1736942242, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1735763745, - "trending": 5.887574467492339, - "installs_last_month": 554, + "trending": 0.27738119980086173, + "installs_last_month": 568, "isMobileFriendly": false }, { @@ -72027,8 +72027,43 @@ "aarch64" ], "added_at": 1643364345, - "trending": 9.43909737905363, - "installs_last_month": 487, + "trending": 9.373937909880826, + "installs_last_month": 501, + "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": 6.104668919830927, + "installs_last_month": 443, "isMobileFriendly": false }, { @@ -72168,45 +72203,10 @@ "aarch64" ], "added_at": 1685515610, - "trending": 13.162055342914496, - "installs_last_month": 417, + "trending": 10.237549553179813, + "installs_last_month": 422, "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,8 +72247,8 @@ "aarch64" ], "added_at": 1651741948, - "trending": 15.429370612555026, - "installs_last_month": 336, + "trending": 13.977258132849435, + "installs_last_month": 341, "isMobileFriendly": true }, { @@ -72281,8 +72281,8 @@ "x86_64" ], "added_at": 1683224181, - "trending": 4.1262830509720505, - "installs_last_month": 272, + "trending": 1.1494718141913784, + "installs_last_month": 269, "isMobileFriendly": false }, { @@ -72320,8 +72320,8 @@ "aarch64" ], "added_at": 1655711495, - "trending": 0.9808400913838572, - "installs_last_month": 224, + "trending": 4.1929353457223275, + "installs_last_month": 248, "isMobileFriendly": false }, { @@ -72354,8 +72354,8 @@ "x86_64" ], "added_at": 1629723099, - "trending": 5.302045346072125, - "installs_last_month": 211, + "trending": 7.340979136032536, + "installs_last_month": 221, "isMobileFriendly": false }, { @@ -72389,8 +72389,46 @@ "aarch64" ], "added_at": 1702975001, - "trending": 13.899167514081183, - "installs_last_month": 195, + "trending": 9.631284872533918, + "installs_last_month": 202, + "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": 8.837099196288719, + "installs_last_month": 175, "isMobileFriendly": false }, { @@ -72490,46 +72528,8 @@ "aarch64" ], "added_at": 1735822042, - "trending": 1.1474631320140585, - "installs_last_month": 169, - "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, + "trending": 1.348218747427499, + "installs_last_month": 172, "isMobileFriendly": false }, { @@ -72563,8 +72563,8 @@ "aarch64" ], "added_at": 1739255849, - "trending": 3.4216627605498555, - "installs_last_month": 148, + "trending": 4.311550537254577, + "installs_last_month": 153, "isMobileFriendly": false }, { @@ -72599,8 +72599,8 @@ "aarch64" ], "added_at": 1615670471, - "trending": -0.5239182738961423, - "installs_last_month": 139, + "trending": 3.527421563676852, + "installs_last_month": 152, "isMobileFriendly": false }, { @@ -72656,8 +72656,44 @@ "aarch64" ], "added_at": 1520326486, - "trending": 11.427997755425748, - "installs_last_month": 111, + "trending": 10.69026470426949, + "installs_last_month": 113, + "isMobileFriendly": false + }, + { + "name": "Lanchat", + "keywords": null, + "summary": "LAN chat and file transfer", + "description": "I will not continue development of Lanchat after 2.10 release. Any bugs or security issues will not be fixed. Please consider using alternatives.", + "id": "pl_youkai_lanchat", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0-only", + "is_free_license": true, + "app_id": "pl.youkai.lanchat", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/pl.youkai.lanchat.png", + "main_categories": "network", + "sub_categories": [ + "Chat", + "InstantMessaging" + ], + "developer_name": "Youkai.pl", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "youkai.pl", + "verification_timestamp": "1683198547", + "runtime": "org.freedesktop.Platform/x86_64/22.08", + "updated_at": 1679761471, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1679761368, + "trending": 8.519831238170402, + "installs_last_month": 102, "isMobileFriendly": false }, { @@ -72693,43 +72729,7 @@ ], "added_at": 1535557732, "trending": 0.9288666082995786, - "installs_last_month": 99, - "isMobileFriendly": false - }, - { - "name": "Lanchat", - "keywords": null, - "summary": "LAN chat and file transfer", - "description": "I will not continue development of Lanchat after 2.10 release. Any bugs or security issues will not be fixed. Please consider using alternatives.", - "id": "pl_youkai_lanchat", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0-only", - "is_free_license": true, - "app_id": "pl.youkai.lanchat", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/pl.youkai.lanchat.png", - "main_categories": "network", - "sub_categories": [ - "Chat", - "InstantMessaging" - ], - "developer_name": "Youkai.pl", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "youkai.pl", - "verification_timestamp": "1683198547", - "runtime": "org.freedesktop.Platform/x86_64/22.08", - "updated_at": 1679761471, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1679761368, - "trending": 5.108183194431726, - "installs_last_month": 91, + "installs_last_month": 100, "isMobileFriendly": false }, { @@ -72772,8 +72772,8 @@ "aarch64" ], "added_at": 1648448463, - "trending": 0.5883430789350063, - "installs_last_month": 70, + "trending": 0.6399492094751918, + "installs_last_month": 78, "isMobileFriendly": false }, { @@ -72810,49 +72810,42 @@ ], "added_at": 1643787450, "trending": 4.749141654567384, - "installs_last_month": 68, + "installs_last_month": 71, "isMobileFriendly": false }, { - "name": "Syphon", - "keywords": [ - "Chat", - "Matrix", - "Messenger", - "Social" - ], - "summary": "chat with your privacy and freedom intact", - "description": "Syphon aims to be built on the foundations of privacy, branding, and user experience in an effort to pull others away from proprietary chat clients to the matrix protocol.Website: https://syphon.orgSource Code: https://github.com/syphon-org/syphonMatrix Space: https://matrix.to/#/#syphon-space:matrix.org", - "id": "org_syphon_Syphon", + "name": "OpenBubbles", + "keywords": null, + "summary": "OpenBubbles 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_openbubbles_OpenBubbles", "type": "desktop-application", "translations": {}, - "project_license": "AGPL-3.0-or-later", + "project_license": "Apache-2.0", "is_free_license": true, - "app_id": "org.syphon.Syphon", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.syphon.Syphon.png", + "app_id": "app.openbubbles.OpenBubbles", + "icon": "https://dl.flathub.org/media/app/openbubbles/OpenBubbles/ad53031b845dd7e0bf0d927a3a0be880/icons/128x128/app.openbubbles.OpenBubbles.png", "main_categories": "network", "sub_categories": [ - "Chat", "InstantMessaging", - "VideoConference" + "Chat" ], - "developer_name": "Syphon Organization, LLC", + "developer_name": "OpenBubbles", "verification_verified": true, "verification_method": "website", "verification_login_name": null, "verification_login_provider": null, "verification_login_is_organization": "false", - "verification_website": "syphon.org", - "verification_timestamp": "1684179714", - "runtime": "org.gnome.Platform/x86_64/44", - "updated_at": 1684174021, + "verification_website": "openbubbles.app", + "verification_timestamp": "1743356226", + "runtime": "org.gnome.Platform/x86_64/48", + "updated_at": 1743319740, "arches": [ - "x86_64", - "aarch64" + "x86_64" ], - "added_at": 1646071591, - "trending": 1.0749988951432432, - "installs_last_month": 52, + "added_at": 1743319740, + "trending": 0.9335735599543232, + "installs_last_month": 69, "isMobileFriendly": false }, { @@ -73006,43 +72999,50 @@ "aarch64" ], "added_at": 1651757020, - "trending": 10.047494130207577, - "installs_last_month": 50, + "trending": 16.68790765100934, + "installs_last_month": 66, "isMobileFriendly": false }, { - "name": "OpenBubbles", - "keywords": null, - "summary": "OpenBubbles 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_openbubbles_OpenBubbles", + "name": "Syphon", + "keywords": [ + "Chat", + "Matrix", + "Messenger", + "Social" + ], + "summary": "chat with your privacy and freedom intact", + "description": "Syphon aims to be built on the foundations of privacy, branding, and user experience in an effort to pull others away from proprietary chat clients to the matrix protocol.Website: https://syphon.orgSource Code: https://github.com/syphon-org/syphonMatrix Space: https://matrix.to/#/#syphon-space:matrix.org", + "id": "org_syphon_Syphon", "type": "desktop-application", "translations": {}, - "project_license": "Apache-2.0", + "project_license": "AGPL-3.0-or-later", "is_free_license": true, - "app_id": "app.openbubbles.OpenBubbles", - "icon": "https://dl.flathub.org/media/app/openbubbles/OpenBubbles/ad53031b845dd7e0bf0d927a3a0be880/icons/128x128/app.openbubbles.OpenBubbles.png", + "app_id": "org.syphon.Syphon", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.syphon.Syphon.png", "main_categories": "network", "sub_categories": [ + "Chat", "InstantMessaging", - "Chat" + "VideoConference" ], - "developer_name": "OpenBubbles", + "developer_name": "Syphon Organization, LLC", "verification_verified": true, "verification_method": "website", "verification_login_name": null, "verification_login_provider": null, "verification_login_is_organization": "false", - "verification_website": "openbubbles.app", - "verification_timestamp": "1743356226", - "runtime": "org.gnome.Platform/x86_64/48", - "updated_at": 1743319740, + "verification_website": "syphon.org", + "verification_timestamp": "1684179714", + "runtime": "org.gnome.Platform/x86_64/44", + "updated_at": 1684174021, "arches": [ - "x86_64" + "x86_64", + "aarch64" ], - "added_at": 1743319740, - "trending": 2.5428571428571427, - "installs_last_month": 42, + "added_at": 1646071591, + "trending": 1.0749988951432432, + "installs_last_month": 58, "isMobileFriendly": false }, { @@ -73079,7 +73079,7 @@ ], "added_at": 1540376347, "trending": 1.3536422557629124, - "installs_last_month": 26, + "installs_last_month": 30, "isMobileFriendly": false }, { @@ -73120,7 +73120,7 @@ ], "added_at": 1678210415, "trending": 1.1800066439691332, - "installs_last_month": 18, + "installs_last_month": 22, "isMobileFriendly": false }, { @@ -73155,7 +73155,7 @@ ], "added_at": 1633341824, "trending": 9.566850481271551, - "installs_last_month": 14, + "installs_last_month": 18, "isMobileFriendly": false } ], @@ -73216,8 +73216,8 @@ "aarch64" ], "added_at": 1522565212, - "trending": 10.145137104492306, - "installs_last_month": 27806, + "trending": 9.715203702938954, + "installs_last_month": 29015, "isMobileFriendly": false }, { @@ -73265,8 +73265,8 @@ "aarch64" ], "added_at": 1661808065, - "trending": 8.500308858576183, - "installs_last_month": 9839, + "trending": 10.458960663981436, + "installs_last_month": 10097, "isMobileFriendly": false }, { @@ -73399,8 +73399,8 @@ "aarch64" ], "added_at": 1491927224, - "trending": 7.809518103397909, - "installs_last_month": 1377, + "trending": 7.494885178828781, + "installs_last_month": 1414, "isMobileFriendly": false }, { @@ -73612,8 +73612,8 @@ "aarch64" ], "added_at": 1496249218, - "trending": 13.6501003586066, - "installs_last_month": 702, + "trending": 13.91958529221541, + "installs_last_month": 733, "isMobileFriendly": true }, { @@ -73651,8 +73651,8 @@ "aarch64" ], "added_at": 1688295728, - "trending": 5.425712585242444, - "installs_last_month": 509, + "trending": 7.171631547067379, + "installs_last_month": 511, "isMobileFriendly": false }, { @@ -73831,8 +73831,8 @@ "aarch64" ], "added_at": 1564429730, - "trending": 12.435433898643344, - "installs_last_month": 481, + "trending": 12.618885938629155, + "installs_last_month": 505, "isMobileFriendly": false }, { @@ -73888,8 +73888,8 @@ "aarch64" ], "added_at": 1520326486, - "trending": 11.427997755425748, - "installs_last_month": 111, + "trending": 10.69026470426949, + "installs_last_month": 113, "isMobileFriendly": false }, { @@ -73924,13 +73924,13 @@ "aarch64" ], "added_at": 1510246806, - "trending": 9.183200959907316, - "installs_last_month": 92, + "trending": 8.534568406285407, + "installs_last_month": 96, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 3, + "processingTimeMs": 6, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -73977,8 +73977,8 @@ "aarch64" ], "added_at": 1548320805, - "trending": 8.529610562844926, - "installs_last_month": 4538, + "trending": 6.989301564344653, + "installs_last_month": 4658, "isMobileFriendly": false }, { @@ -74012,8 +74012,8 @@ "aarch64" ], "added_at": 1731213968, - "trending": 9.215750145795967, - "installs_last_month": 315, + "trending": 10.92031460929413, + "installs_last_month": 307, "isMobileFriendly": false }, { @@ -74047,8 +74047,8 @@ "aarch64" ], "added_at": 1743170724, - "trending": 3.254846909387089, - "installs_last_month": 233, + "trending": 3.4549998119586114, + "installs_last_month": 263, "isMobileFriendly": false }, { @@ -74083,7 +74083,7 @@ ], "added_at": 1723197946, "trending": 11.297414299137662, - "installs_last_month": 134, + "installs_last_month": 130, "isMobileFriendly": false }, { @@ -74117,8 +74117,8 @@ "aarch64" ], "added_at": 1712516416, - "trending": 12.712389436932463, - "installs_last_month": 87, + "trending": 20.98562446639164, + "installs_last_month": 98, "isMobileFriendly": false }, { @@ -74153,12 +74153,12 @@ ], "added_at": 1737948488, "trending": 1.0842569854062134, - "installs_last_month": 31, + "installs_last_month": 35, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 2, + "processingTimeMs": 3, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -74214,8 +74214,8 @@ "aarch64" ], "added_at": 1522565212, - "trending": 10.145137104492306, - "installs_last_month": 27806, + "trending": 9.715203702938954, + "installs_last_month": 29015, "isMobileFriendly": false }, { @@ -74263,8 +74263,8 @@ "aarch64" ], "added_at": 1661808065, - "trending": 8.500308858576183, - "installs_last_month": 9839, + "trending": 10.458960663981436, + "installs_last_month": 10097, "isMobileFriendly": false }, { @@ -74314,8 +74314,8 @@ "aarch64" ], "added_at": 1671699609, - "trending": 10.382169490204769, - "installs_last_month": 1339, + "trending": 8.246413767971896, + "installs_last_month": 1346, "isMobileFriendly": false }, { @@ -74508,8 +74508,8 @@ "aarch64" ], "added_at": 1644441223, - "trending": 13.366865408880551, - "installs_last_month": 670, + "trending": 14.28331013907447, + "installs_last_month": 685, "isMobileFriendly": false }, { @@ -74552,8 +74552,8 @@ "aarch64" ], "added_at": 1601877108, - "trending": 9.75558660774313, - "installs_last_month": 357, + "trending": 11.83666482641604, + "installs_last_month": 365, "isMobileFriendly": false }, { @@ -74603,8 +74603,8 @@ "aarch64" ], "added_at": 1671788181, - "trending": 9.037530906583129, - "installs_last_month": 308, + "trending": 9.946685161681836, + "installs_last_month": 332, "isMobileFriendly": false }, { @@ -74646,7 +74646,7 @@ "aarch64" ], "added_at": 1633348020, - "trending": 12.08097882199868, + "trending": 8.740729481901694, "installs_last_month": 223, "isMobileFriendly": false }, @@ -74714,8 +74714,8 @@ "aarch64" ], "added_at": 1528371169, - "trending": 10.22799449956458, - "installs_last_month": 178, + "trending": 10.582527196592183, + "installs_last_month": 183, "isMobileFriendly": false }, { @@ -74898,8 +74898,8 @@ "aarch64" ], "added_at": 1621235992, - "trending": 10.559147397692849, - "installs_last_month": 151, + "trending": 11.738543627539348, + "installs_last_month": 165, "isMobileFriendly": false }, { @@ -74974,7 +74974,7 @@ "aarch64" ], "added_at": 1734348007, - "trending": 10.787486268771405, + "trending": 11.36633321991595, "installs_last_month": 67, "isMobileFriendly": true }, @@ -75010,13 +75010,13 @@ "aarch64" ], "added_at": 1659961539, - "trending": 7.145606798260681, + "trending": 9.377685598425408, "installs_last_month": 48, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 5, + "processingTimeMs": 4, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -75066,8 +75066,8 @@ "aarch64" ], "added_at": 1521176433, - "trending": 9.57265240554738, - "installs_last_month": 41727, + "trending": 9.676051650732544, + "installs_last_month": 43309, "isMobileFriendly": false }, { @@ -75278,8 +75278,8 @@ "aarch64" ], "added_at": 1502346171, - "trending": 11.856418487508822, - "installs_last_month": 7992, + "trending": 13.296835562794772, + "installs_last_month": 8306, "isMobileFriendly": false }, { @@ -75313,8 +75313,8 @@ "x86_64" ], "added_at": 1508304361, - "trending": 6.009681651356763, - "installs_last_month": 4323, + "trending": 6.597380252014731, + "installs_last_month": 4492, "isMobileFriendly": false }, { @@ -75352,8 +75352,8 @@ "aarch64" ], "added_at": 1655825139, - "trending": 4.4065974992954775, - "installs_last_month": 3026, + "trending": 6.059592064890673, + "installs_last_month": 3125, "isMobileFriendly": false }, { @@ -75457,8 +75457,8 @@ "aarch64" ], "added_at": 1594807973, - "trending": 11.656566176995437, - "installs_last_month": 2870, + "trending": 12.237821350084898, + "installs_last_month": 3025, "isMobileFriendly": false }, { @@ -75639,8 +75639,8 @@ "aarch64" ], "added_at": 1603098559, - "trending": 10.708997502727165, - "installs_last_month": 2769, + "trending": 10.76879170181111, + "installs_last_month": 2856, "isMobileFriendly": false }, { @@ -75679,8 +75679,8 @@ "x86_64" ], "added_at": 1655201066, - "trending": 5.9594745298829865, - "installs_last_month": 2570, + "trending": 8.099953650198238, + "installs_last_month": 2545, "isMobileFriendly": false }, { @@ -75719,8 +75719,8 @@ "aarch64" ], "added_at": 1613727018, - "trending": 9.715906064167584, - "installs_last_month": 1986, + "trending": 9.40344430747877, + "installs_last_month": 2090, "isMobileFriendly": false }, { @@ -75819,8 +75819,8 @@ "aarch64" ], "added_at": 1577116401, - "trending": 15.33859911834417, - "installs_last_month": 1613, + "trending": 14.223041357973353, + "installs_last_month": 1679, "isMobileFriendly": true }, { @@ -75861,8 +75861,8 @@ "aarch64" ], "added_at": 1638863697, - "trending": 9.619139000608271, - "installs_last_month": 1447, + "trending": 5.058100592223189, + "installs_last_month": 1514, "isMobileFriendly": false }, { @@ -75896,8 +75896,8 @@ "x86_64" ], "added_at": 1513541965, - "trending": 11.447805995995646, - "installs_last_month": 1203, + "trending": 11.01803014053524, + "installs_last_month": 1229, "isMobileFriendly": false }, { @@ -75936,8 +75936,8 @@ "aarch64" ], "added_at": 1540997872, - "trending": 7.002085571440079, - "installs_last_month": 973, + "trending": 5.323972859115923, + "installs_last_month": 1012, "isMobileFriendly": false }, { @@ -75986,8 +75986,8 @@ "aarch64" ], "added_at": 1741811470, - "trending": 10.27977198808973, - "installs_last_month": 812, + "trending": 11.72973645667143, + "installs_last_month": 880, "isMobileFriendly": false }, { @@ -76067,8 +76067,8 @@ "aarch64" ], "added_at": 1633081084, - "trending": 8.94490015874701, - "installs_last_month": 740, + "trending": 9.019835051148403, + "installs_last_month": 751, "isMobileFriendly": false }, { @@ -76103,8 +76103,8 @@ "aarch64" ], "added_at": 1649660029, - "trending": 1.8221989978079136, - "installs_last_month": 658, + "trending": 1.7885699367243508, + "installs_last_month": 682, "isMobileFriendly": false }, { @@ -76165,8 +76165,8 @@ "aarch64" ], "added_at": 1742789756, - "trending": 2.958018204014585, - "installs_last_month": 605, + "trending": 2.2589301206323587, + "installs_last_month": 664, "isMobileFriendly": false }, { @@ -76200,8 +76200,8 @@ "aarch64" ], "added_at": 1620631972, - "trending": 4.1536737056297435, - "installs_last_month": 540, + "trending": 7.075679455677448, + "installs_last_month": 571, "isMobileFriendly": false }, { @@ -76237,8 +76237,8 @@ "aarch64" ], "added_at": 1643364345, - "trending": 9.43909737905363, - "installs_last_month": 487, + "trending": 9.373937909880826, + "installs_last_month": 501, "isMobileFriendly": false }, { @@ -76273,8 +76273,8 @@ "aarch64" ], "added_at": 1623052890, - "trending": 2.23930332267377, - "installs_last_month": 320, + "trending": 4.874809853839259, + "installs_last_month": 325, "isMobileFriendly": false }, { @@ -76317,8 +76317,8 @@ "aarch64" ], "added_at": 1649062659, - "trending": 13.976968534348106, - "installs_last_month": 222, + "trending": 12.884782813355056, + "installs_last_month": 226, "isMobileFriendly": false }, { @@ -76355,8 +76355,42 @@ "aarch64" ], "added_at": 1567020533, - "trending": 7.371138654623796, - "installs_last_month": 159, + "trending": 8.837099196288719, + "installs_last_month": 175, + "isMobileFriendly": false + }, + { + "name": "Tremotesf", + "keywords": null, + "summary": "Remote GUI for Transmission BitTorrent client", + "description": "Tremotesf is a remote GUI for Transmission BitTorrent client. You can fully control your transmission-daemon instance, manage torrents, set Transmission settings, view server statistics.\n You can add several servers profiles and switch between them (only one can be connected at a time). Tremotesf has support of HTTPS, including self-signed certificates and client certificate authentication. You can set mounted directories for servers and quickly open torrents' files and choose download directory from file dialog.\n ", + "id": "org_equeim_Tremotesf", + "type": "desktop-application", + "project_license": "GPL-3.0+", + "is_free_license": true, + "app_id": "org.equeim.Tremotesf", + "icon": "https://dl.flathub.org/media/org/equeim/Tremotesf/2abf8072838d32714dfba9fa932638be/icons/128x128/org.equeim.Tremotesf.png", + "main_categories": "network", + "sub_categories": [ + "P2P" + ], + "developer_name": "Alexey Rochev", + "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": 1736883663, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1537882650, + "trending": 3.752285471680453, + "installs_last_month": 170, "isMobileFriendly": false }, { @@ -76395,42 +76429,8 @@ "aarch64" ], "added_at": 1662410452, - "trending": 9.70881319135989, - "installs_last_month": 156, - "isMobileFriendly": false - }, - { - "name": "Tremotesf", - "keywords": null, - "summary": "Remote GUI for Transmission BitTorrent client", - "description": "Tremotesf is a remote GUI for Transmission BitTorrent client. You can fully control your transmission-daemon instance, manage torrents, set Transmission settings, view server statistics.\n You can add several servers profiles and switch between them (only one can be connected at a time). Tremotesf has support of HTTPS, including self-signed certificates and client certificate authentication. You can set mounted directories for servers and quickly open torrents' files and choose download directory from file dialog.\n ", - "id": "org_equeim_Tremotesf", - "type": "desktop-application", - "project_license": "GPL-3.0+", - "is_free_license": true, - "app_id": "org.equeim.Tremotesf", - "icon": "https://dl.flathub.org/media/org/equeim/Tremotesf/2abf8072838d32714dfba9fa932638be/icons/128x128/org.equeim.Tremotesf.png", - "main_categories": "network", - "sub_categories": [ - "P2P" - ], - "developer_name": "Alexey Rochev", - "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": 1736883663, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1537882650, - "trending": 0.11765107723659109, - "installs_last_month": 155, + "trending": 9.423033610392649, + "installs_last_month": 161, "isMobileFriendly": false }, { @@ -76469,8 +76469,8 @@ "aarch64" ], "added_at": 1698965712, - "trending": 18.14611089861299, - "installs_last_month": 107, + "trending": 14.207243287328298, + "installs_last_month": 133, "isMobileFriendly": false }, { @@ -76506,8 +76506,45 @@ "aarch64" ], "added_at": 1621496967, - "trending": 0.021666185015360107, - "installs_last_month": 99, + "trending": 0.16520427294082984, + "installs_last_month": 105, + "isMobileFriendly": false + }, + { + "name": "Métier", + "keywords": null, + "summary": "Multi-currency blockchain wallet and Open-Transactions client", + "description": "Métier is the reference GUI client for the Open-Transactions library, supporting native on-blockchain transactions and off-chain accounts.", + "id": "org_opentransactions_metier", + "type": "desktop-application", + "translations": {}, + "project_license": "MPL-2.0", + "is_free_license": true, + "app_id": "org.opentransactions.metier", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.opentransactions.metier.png", + "main_categories": "network", + "sub_categories": [ + "Finance", + "P2P", + "Office" + ], + "developer_name": "The Open-Transactions 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/6.4", + "updated_at": 1683235061, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1618209962, + "trending": 3.0490160335983245, + "installs_last_month": 21, "isMobileFriendly": false }, { @@ -76544,44 +76581,7 @@ ], "added_at": 1650374199, "trending": 0.3912757352563287, - "installs_last_month": 24, - "isMobileFriendly": false - }, - { - "name": "Métier", - "keywords": null, - "summary": "Multi-currency blockchain wallet and Open-Transactions client", - "description": "Métier is the reference GUI client for the Open-Transactions library, supporting native on-blockchain transactions and off-chain accounts.", - "id": "org_opentransactions_metier", - "type": "desktop-application", - "translations": {}, - "project_license": "MPL-2.0", - "is_free_license": true, - "app_id": "org.opentransactions.metier", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.opentransactions.metier.png", - "main_categories": "network", - "sub_categories": [ - "Finance", - "P2P", - "Office" - ], - "developer_name": "The Open-Transactions 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/6.4", - "updated_at": 1683235061, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1618209962, - "trending": 2.9134323958937407, - "installs_last_month": 17, + "installs_last_month": 20, "isMobileFriendly": false }, { @@ -76617,7 +76617,7 @@ ], "added_at": 1585637308, "trending": -0.1506813353544194, - "installs_last_month": 15, + "installs_last_month": 13, "isMobileFriendly": false } ], @@ -76669,8 +76669,8 @@ "aarch64" ], "added_at": 1598900260, - "trending": 4.843181423001092, - "installs_last_month": 3769, + "trending": 6.5483423864949115, + "installs_last_month": 3833, "isMobileFriendly": false }, { @@ -76714,8 +76714,8 @@ "aarch64" ], "added_at": 1666335013, - "trending": 7.327320171514071, - "installs_last_month": 3381, + "trending": 8.03005960285778, + "installs_last_month": 3445, "isMobileFriendly": false }, { @@ -76750,8 +76750,8 @@ "aarch64" ], "added_at": 1665473180, - "trending": 4.68036995677765, - "installs_last_month": 2482, + "trending": 5.344277776643307, + "installs_last_month": 2543, "isMobileFriendly": false }, { @@ -76787,8 +76787,8 @@ "x86_64" ], "added_at": 1726750143, - "trending": 9.54792538505214, - "installs_last_month": 2253, + "trending": 10.76336517502239, + "installs_last_month": 2331, "isMobileFriendly": false }, { @@ -76822,8 +76822,8 @@ "aarch64" ], "added_at": 1675322851, - "trending": 6.779565967225352, - "installs_last_month": 1853, + "trending": 4.43103286953066, + "installs_last_month": 1886, "isMobileFriendly": false }, { @@ -77011,8 +77011,8 @@ "aarch64" ], "added_at": 1645372718, - "trending": 10.26150344058645, - "installs_last_month": 1675, + "trending": 8.471301999507089, + "installs_last_month": 1716, "isMobileFriendly": false }, { @@ -77047,8 +77047,8 @@ "aarch64" ], "added_at": 1529927519, - "trending": 0.3568190944322924, - "installs_last_month": 985, + "trending": 0.21703205892902155, + "installs_last_month": 1013, "isMobileFriendly": false }, { @@ -77082,8 +77082,8 @@ "aarch64" ], "added_at": 1637954239, - "trending": 12.853385277438433, - "installs_last_month": 796, + "trending": 12.422863684070451, + "installs_last_month": 818, "isMobileFriendly": false }, { @@ -77117,8 +77117,8 @@ "aarch64" ], "added_at": 1681369689, - "trending": 7.206974372936005, - "installs_last_month": 684, + "trending": 11.742597703203964, + "installs_last_month": 696, "isMobileFriendly": false }, { @@ -77179,8 +77179,8 @@ "aarch64" ], "added_at": 1742789756, - "trending": 2.958018204014585, - "installs_last_month": 605, + "trending": 2.2589301206323587, + "installs_last_month": 664, "isMobileFriendly": false }, { @@ -77213,8 +77213,8 @@ "x86_64" ], "added_at": 1588580387, - "trending": 0.3970117851625998, - "installs_last_month": 503, + "trending": 1.0098863575421415, + "installs_last_month": 532, "isMobileFriendly": false }, { @@ -77247,8 +77247,8 @@ "aarch64" ], "added_at": 1726045123, - "trending": 16.266015528131398, - "installs_last_month": 419, + "trending": 13.210274344900393, + "installs_last_month": 450, "isMobileFriendly": false }, { @@ -77283,8 +77283,8 @@ "x86_64" ], "added_at": 1724319732, - "trending": 8.137934803595304, - "installs_last_month": 414, + "trending": 5.062869499383928, + "installs_last_month": 417, "isMobileFriendly": false }, { @@ -77322,8 +77322,8 @@ "x86_64" ], "added_at": 1592209356, - "trending": 8.059442685491014, - "installs_last_month": 354, + "trending": 4.851430205707823, + "installs_last_month": 363, "isMobileFriendly": false }, { @@ -77357,8 +77357,8 @@ "aarch64" ], "added_at": 1689189653, - "trending": 8.114987821543652, - "installs_last_month": 281, + "trending": 9.4711774890294, + "installs_last_month": 277, "isMobileFriendly": false }, { @@ -77393,8 +77393,8 @@ "x86_64" ], "added_at": 1649323569, - "trending": 3.868944383481695, - "installs_last_month": 247, + "trending": 5.687927524025359, + "installs_last_month": 265, "isMobileFriendly": false }, { @@ -77432,7 +77432,7 @@ "aarch64" ], "added_at": 1652253555, - "trending": 7.88820628793117, + "trending": 5.505363403054587, "installs_last_month": 129, "isMobileFriendly": false } @@ -77482,8 +77482,8 @@ "x86_64" ], "added_at": 1516794576, - "trending": 8.533349412220135, - "installs_last_month": 26486, + "trending": 6.955984090643934, + "installs_last_month": 27361, "isMobileFriendly": false }, { @@ -77520,8 +77520,8 @@ "aarch64" ], "added_at": 1735763745, - "trending": 5.887574467492339, - "installs_last_month": 554, + "trending": 5.055171352152959, + "installs_last_month": 577, "isMobileFriendly": false }, { @@ -77554,8 +77554,8 @@ "x86_64" ], "added_at": 1585691219, - "trending": 1.8401825962010416, - "installs_last_month": 305, + "trending": 2.1314213082450983, + "installs_last_month": 335, "isMobileFriendly": false } ], @@ -77604,8 +77604,8 @@ "x86_64" ], "added_at": 1516794576, - "trending": 8.533349412220135, - "installs_last_month": 26486, + "trending": 6.955984090643934, + "installs_last_month": 27361, "isMobileFriendly": false }, { @@ -77650,8 +77650,8 @@ "aarch64" ], "added_at": 1510519332, - "trending": 11.493531104384733, - "installs_last_month": 5814, + "trending": 11.386754602093626, + "installs_last_month": 5986, "isMobileFriendly": false }, { @@ -77692,8 +77692,46 @@ "aarch64" ], "added_at": 1606129535, - "trending": 10.993122249431496, - "installs_last_month": 1098, + "trending": 12.084567800023168, + "installs_last_month": 1137, + "isMobileFriendly": false + }, + { + "name": "qTox", + "keywords": null, + "summary": "Powerful Tox chat client that follows the Tox design guidelines.", + "description": "\n A New Kind of Instant Messaging\n \n \n With the rise of government monitoring programs, qTox provides an easy to use\n application that allows you to connect with friends and family without anyone\n else listening in. While other big-name services require you to pay for\n features, qTox is totally free, and comes without advertising.\n \n \n Nowadays, every government seems to be interested in what we're saying online.\n qTox is built on a \"privacy goes first\" agenda, and we make no compromises.\n Your safety is our top priority, and there isn't anything in the world that\n will change that.\n \n Instant messaging, video conferencing, and more.\n \n Messages: At your fingertips. You're always in the loop with instant encrypted messaging.\n Calls: Stay in touch. Make free and secure qTox to qTox calls.\n Video: Seeing is believing. Catch up face to face with a secure video call.\n \n \n qTox is a free and open source software, built by and for the users!\n \n \n \n Security: qTox takes your privacy seriously. With leading-class encryption,\n you can rest assured knowing that the only people reading your messages are\n the ones you send them to.\n \n \n Ease of Use: Unlike other secure messaging solutions, qTox does not require\n you to be a computer programmer to use it. qTox comes out-of-the-box with an\n easy-to-use interface that allows you to focus on your conversations.\n \n \n Freedom: qTox is both free for you to use, and free for you to change.\n You are completely free to both use and modify qTox. Furthermore,\n qTox will never harass you with ads, or require you to pay for features.\n \n \n ", + "id": "io_github_qtox_qTox", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0", + "is_free_license": true, + "app_id": "io.github.qtox.qTox", + "icon": "https://dl.flathub.org/media/io/github/qtox.qTox/17709cdea5b36131caac54874813d2cc/icons/128x128/io.github.qtox.qTox.png", + "main_categories": "network", + "sub_categories": [ + "InstantMessaging", + "Chat", + "Telephony", + "VideoConference" + ], + "developer_name": "TokTok 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.kde.Platform/x86_64/6.8", + "updated_at": 1736942242, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1735763745, + "trending": 5.055171352152959, + "installs_last_month": 577, "isMobileFriendly": false }, { @@ -77739,46 +77777,8 @@ "x86_64" ], "added_at": 1607504318, - "trending": -1.058726319896189, - "installs_last_month": 556, - "isMobileFriendly": false - }, - { - "name": "qTox", - "keywords": null, - "summary": "Powerful Tox chat client that follows the Tox design guidelines.", - "description": "\n A New Kind of Instant Messaging\n \n \n With the rise of government monitoring programs, qTox provides an easy to use\n application that allows you to connect with friends and family without anyone\n else listening in. While other big-name services require you to pay for\n features, qTox is totally free, and comes without advertising.\n \n \n Nowadays, every government seems to be interested in what we're saying online.\n qTox is built on a \"privacy goes first\" agenda, and we make no compromises.\n Your safety is our top priority, and there isn't anything in the world that\n will change that.\n \n Instant messaging, video conferencing, and more.\n \n Messages: At your fingertips. You're always in the loop with instant encrypted messaging.\n Calls: Stay in touch. Make free and secure qTox to qTox calls.\n Video: Seeing is believing. Catch up face to face with a secure video call.\n \n \n qTox is a free and open source software, built by and for the users!\n \n \n \n Security: qTox takes your privacy seriously. With leading-class encryption,\n you can rest assured knowing that the only people reading your messages are\n the ones you send them to.\n \n \n Ease of Use: Unlike other secure messaging solutions, qTox does not require\n you to be a computer programmer to use it. qTox comes out-of-the-box with an\n easy-to-use interface that allows you to focus on your conversations.\n \n \n Freedom: qTox is both free for you to use, and free for you to change.\n You are completely free to both use and modify qTox. Furthermore,\n qTox will never harass you with ads, or require you to pay for features.\n \n \n ", - "id": "io_github_qtox_qTox", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0", - "is_free_license": true, - "app_id": "io.github.qtox.qTox", - "icon": "https://dl.flathub.org/media/io/github/qtox.qTox/17709cdea5b36131caac54874813d2cc/icons/128x128/io.github.qtox.qTox.png", - "main_categories": "network", - "sub_categories": [ - "InstantMessaging", - "Chat", - "Telephony", - "VideoConference" - ], - "developer_name": "TokTok 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.kde.Platform/x86_64/6.8", - "updated_at": 1736942242, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1735763745, - "trending": 5.887574467492339, - "installs_last_month": 554, + "trending": 0.27738119980086173, + "installs_last_month": 568, "isMobileFriendly": false }, { @@ -77821,8 +77821,8 @@ "aarch64" ], "added_at": 1648448463, - "trending": 0.5883430789350063, - "installs_last_month": 70, + "trending": 0.6399492094751918, + "installs_last_month": 78, "isMobileFriendly": false }, { @@ -77864,7 +77864,7 @@ ], "added_at": 1646071591, "trending": 1.0749988951432432, - "installs_last_month": 52, + "installs_last_month": 58, "isMobileFriendly": false }, { @@ -77905,7 +77905,7 @@ ], "added_at": 1678210415, "trending": 1.1800066439691332, - "installs_last_month": 18, + "installs_last_month": 22, "isMobileFriendly": false } ], @@ -77962,8 +77962,8 @@ "aarch64" ], "added_at": 1689081703, - "trending": 10.489237006758149, - "installs_last_month": 165462, + "trending": 11.274274378303469, + "installs_last_month": 172748, "isMobileFriendly": false }, { @@ -77996,8 +77996,8 @@ "x86_64" ], "added_at": 1596138378, - "trending": 8.317793533724984, - "installs_last_month": 156636, + "trending": 9.586805219913218, + "installs_last_month": 162689, "isMobileFriendly": false }, { @@ -78031,8 +78031,8 @@ "aarch64" ], "added_at": 1602485316, - "trending": 9.419638482452244, - "installs_last_month": 133112, + "trending": 10.30692970942422, + "installs_last_month": 136543, "isMobileFriendly": false }, { @@ -78052,7 +78052,7 @@ "project_license": "MPL-2.0", "is_free_license": true, "app_id": "app.zen_browser.zen", - "icon": "https://dl.flathub.org/media/app/zen_browser/zen/dec63beac262d921364b79ab172e6bfb/icons/128x128/app.zen_browser.zen.png", + "icon": "https://dl.flathub.org/media/app/zen_browser/zen/cb9b2959c41393804a53be69b829b391/icons/128x128/app.zen_browser.zen.png", "main_categories": "network", "sub_categories": [ "WebBrowser" @@ -78066,14 +78066,14 @@ "verification_website": "zen-browser.app", "verification_timestamp": "1736878265", "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1743118535, + "updated_at": 1743804858, "arches": [ "x86_64", "aarch64" ], "added_at": 1736875532, - "trending": 9.736564692349274, - "installs_last_month": 57466, + "trending": 10.336568425560998, + "installs_last_month": 57316, "isMobileFriendly": false }, { @@ -78111,8 +78111,8 @@ "aarch64" ], "added_at": 1621435841, - "trending": 6.778790852545413, - "installs_last_month": 49893, + "trending": 7.421536006820513, + "installs_last_month": 49223, "isMobileFriendly": false }, { @@ -78126,7 +78126,7 @@ "project_license": "LicenseRef-proprietary", "is_free_license": false, "app_id": "com.microsoft.Edge", - "icon": "https://dl.flathub.org/media/com/microsoft/Edge/19362527fa94501f2959d0b8ee6afc5a/icons/128x128/com.microsoft.Edge.png", + "icon": "https://dl.flathub.org/media/com/microsoft/Edge/56fabe70ce0bd587e8b790d2e368ad26/icons/128x128/com.microsoft.Edge.png", "main_categories": "network", "sub_categories": [ "WebBrowser" @@ -78140,13 +78140,13 @@ "verification_website": null, "verification_timestamp": null, "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1743107182, + "updated_at": 1743804911, "arches": [ "x86_64" ], "added_at": 1608538115, - "trending": 7.584919803546958, - "installs_last_month": 38660, + "trending": 8.447466697495893, + "installs_last_month": 40277, "isMobileFriendly": false }, { @@ -78184,8 +78184,8 @@ "aarch64" ], "added_at": 1602842796, - "trending": 6.618116894150813, - "installs_last_month": 27670, + "trending": 6.1636345178624685, + "installs_last_month": 28540, "isMobileFriendly": false }, { @@ -78218,8 +78218,8 @@ "x86_64" ], "added_at": 1705483230, - "trending": 0.11764695810271109, - "installs_last_month": 23711, + "trending": 0.19375846825488696, + "installs_last_month": 24561, "isMobileFriendly": false }, { @@ -78262,8 +78262,8 @@ "aarch64" ], "added_at": 1700056998, - "trending": 9.385475786044696, - "installs_last_month": 22513, + "trending": 9.900888488119074, + "installs_last_month": 23403, "isMobileFriendly": false }, { @@ -78301,8 +78301,8 @@ "x86_64" ], "added_at": 1672904297, - "trending": 8.006534120820795, - "installs_last_month": 21274, + "trending": 8.080718431890704, + "installs_last_month": 22094, "isMobileFriendly": false }, { @@ -78346,8 +78346,8 @@ "aarch64" ], "added_at": 1713599371, - "trending": 9.506595832463454, - "installs_last_month": 20116, + "trending": 10.00619592839552, + "installs_last_month": 20522, "isMobileFriendly": false }, { @@ -78386,8 +78386,8 @@ "aarch64" ], "added_at": 1652423514, - "trending": 9.52400731306284, - "installs_last_month": 18702, + "trending": 10.44005046918717, + "installs_last_month": 18364, "isMobileFriendly": false }, { @@ -78425,8 +78425,8 @@ "x86_64" ], "added_at": 1679762198, - "trending": 8.168343858640247, - "installs_last_month": 9648, + "trending": 7.950951967985541, + "installs_last_month": 9597, "isMobileFriendly": false }, { @@ -78466,8 +78466,8 @@ "x86_64" ], "added_at": 1681368803, - "trending": 5.33944801448229, - "installs_last_month": 8584, + "trending": 7.158110942191311, + "installs_last_month": 8662, "isMobileFriendly": false }, { @@ -78506,8 +78506,8 @@ "x86_64" ], "added_at": 1681370718, - "trending": 9.129546001028237, - "installs_last_month": 6562, + "trending": 11.533363229128662, + "installs_last_month": 6788, "isMobileFriendly": false }, { @@ -78764,8 +78764,8 @@ "aarch64" ], "added_at": 1510309691, - "trending": 13.05870487609673, - "installs_last_month": 6553, + "trending": 13.40264132037931, + "installs_last_month": 6682, "isMobileFriendly": true }, { @@ -78781,7 +78781,7 @@ "project_license": "LicenseRef-proprietary", "is_free_license": false, "app_id": "com.google.ChromeDev", - "icon": "https://dl.flathub.org/media/com/google/ChromeDev/f7ef65af1136beaaf4f0293aecf9e197/icons/128x128/com.google.ChromeDev.png", + "icon": "https://dl.flathub.org/media/com/google/ChromeDev/6d356d08ce13c334850fde47c9c17adf/icons/128x128/com.google.ChromeDev.png", "main_categories": "network", "sub_categories": [ "WebBrowser" @@ -78795,13 +78795,13 @@ "verification_website": null, "verification_timestamp": null, "runtime": "org.freedesktop.Platform/x86_64/23.08", - "updated_at": 1743113832, + "updated_at": 1743798521, "arches": [ "x86_64" ], "added_at": 1647615634, - "trending": 7.338956525531797, - "installs_last_month": 4946, + "trending": 6.791238059683839, + "installs_last_month": 5095, "isMobileFriendly": false }, { @@ -78995,8 +78995,8 @@ "aarch64" ], "added_at": 1642712970, - "trending": 10.99446397222125, - "installs_last_month": 4056, + "trending": 10.458782368853528, + "installs_last_month": 4106, "isMobileFriendly": false }, { @@ -79034,8 +79034,8 @@ "x86_64" ], "added_at": 1719821042, - "trending": 4.349557077390587, - "installs_last_month": 2998, + "trending": 4.4957510533356375, + "installs_last_month": 2954, "isMobileFriendly": false }, { @@ -79068,8 +79068,43 @@ "x86_64" ], "added_at": 1681370714, - "trending": 5.35682518792477, - "installs_last_month": 2290, + "trending": 5.669311520304451, + "installs_last_month": 2423, + "isMobileFriendly": false + }, + { + "name": "Spider", + "keywords": null, + "summary": "Install web apps", + "description": "\n Spider is a program designed to make installing and using web apps simple and powerful\n while integrating with the GNOME desktop.\n \n \n Sandboxed: Each web app is completely isolated\n Adaptive Window Styling: Each app's titlebar adapts to it's theme color\n High quality icons: Scrapes websites for a high quality icons to use\n \n ", + "id": "io_github_zaedus_spider", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0-only", + "is_free_license": true, + "app_id": "io.github.zaedus.spider", + "icon": "https://dl.flathub.org/media/io/github/zaedus.spider/6aa870df72c144683896cd98f8ae1faa/icons/128x128/io.github.zaedus.spider.png", + "main_categories": "network", + "sub_categories": [ + "WebBrowser" + ], + "developer_name": "Zaedus", + "verification_verified": true, + "verification_method": "login_provider", + "verification_login_name": "zaedus", + "verification_login_provider": "github", + "verification_login_is_organization": "true", + "verification_website": null, + "verification_timestamp": "1724526652", + "runtime": "org.gnome.Platform/x86_64/47", + "updated_at": 1742440483, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1724319311, + "trending": 14.638782994812864, + "installs_last_month": 1045, "isMobileFriendly": false }, { @@ -79197,45 +79232,10 @@ "aarch64" ], "added_at": 1568146117, - "trending": 14.733257221604031, - "installs_last_month": 1012, + "trending": 13.928754395191788, + "installs_last_month": 1041, "isMobileFriendly": true }, - { - "name": "Spider", - "keywords": null, - "summary": "Install web apps", - "description": "\n Spider is a program designed to make installing and using web apps simple and powerful\n while integrating with the GNOME desktop.\n \n \n Sandboxed: Each web app is completely isolated\n Adaptive Window Styling: Each app's titlebar adapts to it's theme color\n High quality icons: Scrapes websites for a high quality icons to use\n \n ", - "id": "io_github_zaedus_spider", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0-only", - "is_free_license": true, - "app_id": "io.github.zaedus.spider", - "icon": "https://dl.flathub.org/media/io/github/zaedus.spider/6aa870df72c144683896cd98f8ae1faa/icons/128x128/io.github.zaedus.spider.png", - "main_categories": "network", - "sub_categories": [ - "WebBrowser" - ], - "developer_name": "Zaedus", - "verification_verified": true, - "verification_method": "login_provider", - "verification_login_name": "zaedus", - "verification_login_provider": "github", - "verification_login_is_organization": "true", - "verification_website": null, - "verification_timestamp": "1724526652", - "runtime": "org.gnome.Platform/x86_64/47", - "updated_at": 1742440483, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1724319311, - "trending": 13.26987370464271, - "installs_last_month": 1009, - "isMobileFriendly": false - }, { "name": "Ulaa", "keywords": null, @@ -79266,8 +79266,48 @@ "x86_64" ], "added_at": 1737610298, - "trending": 4.394349498044564, - "installs_last_month": 833, + "trending": 5.2605010824527705, + "installs_last_month": 829, + "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.7491829473551455, + "installs_last_month": 648, "isMobileFriendly": false }, { @@ -79413,50 +79453,10 @@ "aarch64" ], "added_at": 1496063708, - "trending": 8.140497328019826, + "trending": 5.910467414728993, "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": 7.792384963892861, - "installs_last_month": 471, + "trending": 7.078373224579113, + "installs_last_month": 469, "isMobileFriendly": false }, { @@ -79677,8 +79677,8 @@ "aarch64" ], "added_at": 1623402066, - "trending": 15.806776261071647, - "installs_last_month": 395, + "trending": 12.281007647106067, + "installs_last_month": 391, "isMobileFriendly": false }, { @@ -79717,8 +79717,8 @@ "aarch64" ], "added_at": 1650740090, - "trending": 1.3420279484505528, - "installs_last_month": 308, + "trending": 0.395689992318996, + "installs_last_month": 325, "isMobileFriendly": false }, { @@ -79764,8 +79764,8 @@ "x86_64" ], "added_at": 1741611475, - "trending": 0.7137359011415301, - "installs_last_month": 307, + "trending": 2.4243882260311147, + "installs_last_month": 321, "isMobileFriendly": false }, { @@ -79798,8 +79798,43 @@ "x86_64" ], "added_at": 1644006729, - "trending": 8.158002530375741, - "installs_last_month": 252, + "trending": 8.93468879478733, + "installs_last_month": 282, + "isMobileFriendly": false + }, + { + "name": "Vieb", + "keywords": null, + "summary": "Vim Inspired Electron Browser", + "description": "Vim bindings for the web by design.\n Vieb is the Vim Inspired Electron Browser.\n Features:\n \n Free, open source, fast and secure\n Local first adblocking, auto-complete, AMP protection, custom redirects and more, all without web requests\n Privacy with strict permission system, navigator overrides, firefox mode, custom WebRTC policy and more\n Accessible with custom themes, full interface & fontsize scaling, page zooming, spellcheck and mouse support\n Security settings with permissions, cache usage, cookie management, (auto-)download settings and more\n Window splitting with buffer, split, Vexplore and Ctrl-w bindings, for multi-window browsing\n Map commands for completely custom keyboard sequences, keystrokes, commands and actions\n Viebrc config file for all custom/Vim/Vieb commands to configure settings permanently\n Set command for runtime setting configuration exactly like Vim\n Vim-compatible options: showcmd, timeout, colorscheme, maxmapdepth, spelllang, splitright, smartcase etc.\n Container tabs with colored grouping, auto-clearing, individual cookies and tab restore from containers\n Ad-blocker with cosmetic filtering, optional updater, custom lists and uses easylist/easyprivacy by default\n Tabs including audio indicator, a toggle for multi-line tabs, pinned tabs, muted tabs and suspended tabs\n Offline help documentation always available upon pressing F1\n And much, much more. For more details, visit https://vieb.dev/features\n \n ", + "id": "dev_vieb_Vieb", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0-or-later", + "is_free_license": true, + "app_id": "dev.vieb.Vieb", + "icon": "https://dl.flathub.org/media/dev/vieb/Vieb/d0502a7061406d51405cd80095ff6976/icons/128x128/dev.vieb.Vieb.png", + "main_categories": "network", + "sub_categories": [ + "WebBrowser" + ], + "developer_name": "Jelmer van Arnhem", + "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": 1737450470, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1652339943, + "trending": 8.179535893325486, + "installs_last_month": 262, "isMobileFriendly": false }, { @@ -79841,43 +79876,8 @@ "aarch64" ], "added_at": 1731596428, - "trending": 11.622399693458147, - "installs_last_month": 250, - "isMobileFriendly": false - }, - { - "name": "Vieb", - "keywords": null, - "summary": "Vim Inspired Electron Browser", - "description": "Vim bindings for the web by design.\n Vieb is the Vim Inspired Electron Browser.\n Features:\n \n Free, open source, fast and secure\n Local first adblocking, auto-complete, AMP protection, custom redirects and more, all without web requests\n Privacy with strict permission system, navigator overrides, firefox mode, custom WebRTC policy and more\n Accessible with custom themes, full interface & fontsize scaling, page zooming, spellcheck and mouse support\n Security settings with permissions, cache usage, cookie management, (auto-)download settings and more\n Window splitting with buffer, split, Vexplore and Ctrl-w bindings, for multi-window browsing\n Map commands for completely custom keyboard sequences, keystrokes, commands and actions\n Viebrc config file for all custom/Vim/Vieb commands to configure settings permanently\n Set command for runtime setting configuration exactly like Vim\n Vim-compatible options: showcmd, timeout, colorscheme, maxmapdepth, spelllang, splitright, smartcase etc.\n Container tabs with colored grouping, auto-clearing, individual cookies and tab restore from containers\n Ad-blocker with cosmetic filtering, optional updater, custom lists and uses easylist/easyprivacy by default\n Tabs including audio indicator, a toggle for multi-line tabs, pinned tabs, muted tabs and suspended tabs\n Offline help documentation always available upon pressing F1\n And much, much more. For more details, visit https://vieb.dev/features\n \n ", - "id": "dev_vieb_Vieb", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0-or-later", - "is_free_license": true, - "app_id": "dev.vieb.Vieb", - "icon": "https://dl.flathub.org/media/dev/vieb/Vieb/d0502a7061406d51405cd80095ff6976/icons/128x128/dev.vieb.Vieb.png", - "main_categories": "network", - "sub_categories": [ - "WebBrowser" - ], - "developer_name": "Jelmer van Arnhem", - "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": 1737450470, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1652339943, - "trending": 6.607182575028032, - "installs_last_month": 241, + "trending": 12.065289713245887, + "installs_last_month": 249, "isMobileFriendly": false }, { @@ -79922,8 +79922,8 @@ "aarch64" ], "added_at": 1651135125, - "trending": 5.1792876488728075, - "installs_last_month": 78, + "trending": 6.671280883547631, + "installs_last_month": 84, "isMobileFriendly": false } ], @@ -79981,8 +79981,8 @@ "aarch64" ], "added_at": 1713599371, - "trending": 9.506595832463454, - "installs_last_month": 20116, + "trending": 10.00619592839552, + "installs_last_month": 20522, "isMobileFriendly": false }, { @@ -80042,7 +80042,7 @@ ], "added_at": 1606129807, "trending": 9.851943574385576, - "installs_last_month": 99, + "installs_last_month": 95, "isMobileFriendly": false } ], @@ -80290,8 +80290,8 @@ "aarch64" ], "added_at": 1501344818, - "trending": 12.475836349910876, - "installs_last_month": 10389, + "trending": 12.636562973128122, + "installs_last_month": 10811, "isMobileFriendly": true }, { @@ -80543,8 +80543,8 @@ "aarch64" ], "added_at": 1538568898, - "trending": 13.135021500684786, - "installs_last_month": 5504, + "trending": 13.521576991663911, + "installs_last_month": 5657, "isMobileFriendly": false }, { @@ -80591,8 +80591,8 @@ "aarch64" ], "added_at": 1575622210, - "trending": 9.918361540994638, - "installs_last_month": 994, + "trending": 9.761910834432587, + "installs_last_month": 1026, "isMobileFriendly": false }, { @@ -80631,8 +80631,8 @@ "aarch64" ], "added_at": 1545401252, - "trending": 11.45817617279492, - "installs_last_month": 831, + "trending": 11.89119352221656, + "installs_last_month": 855, "isMobileFriendly": false }, { @@ -80666,8 +80666,8 @@ "aarch64" ], "added_at": 1719937942, - "trending": 14.622192798233051, - "installs_last_month": 402, + "trending": 14.880801891420797, + "installs_last_month": 458, "isMobileFriendly": false }, { @@ -80720,8 +80720,8 @@ "aarch64" ], "added_at": 1662409159, - "trending": 7.920668240637399, - "installs_last_month": 321, + "trending": 11.437482823307509, + "installs_last_month": 336, "isMobileFriendly": false }, { @@ -80843,8 +80843,8 @@ "aarch64" ], "added_at": 1529733918, - "trending": -0.210697826647801, - "installs_last_month": 187, + "trending": 0.8180671215986545, + "installs_last_month": 206, "isMobileFriendly": false }, { @@ -80930,7 +80930,7 @@ ], "added_at": 1565983769, "trending": 0.9116290020399648, - "installs_last_month": 3, + "installs_last_month": 5, "isMobileFriendly": false } ], @@ -80977,8 +80977,8 @@ "x86_64" ], "added_at": 1689751793, - "trending": 6.672907120273912, - "installs_last_month": 236, + "trending": 6.340026893038519, + "installs_last_month": 238, "isMobileFriendly": false }, { @@ -81065,8 +81065,8 @@ "aarch64" ], "added_at": 1529733984, - "trending": 10.577661528479814, - "installs_last_month": 20, + "trending": 9.213579315133844, + "installs_last_month": 27, "isMobileFriendly": false } ], @@ -81332,8 +81332,8 @@ "aarch64" ], "added_at": 1538568898, - "trending": 13.135021500684786, - "installs_last_month": 5504, + "trending": 13.521576991663911, + "installs_last_month": 5657, "isMobileFriendly": false }, { @@ -81569,8 +81569,8 @@ "aarch64" ], "added_at": 1523975311, - "trending": 12.679652120216186, - "installs_last_month": 4848, + "trending": 13.650434910973576, + "installs_last_month": 5019, "isMobileFriendly": true }, { @@ -81617,8 +81617,8 @@ "aarch64" ], "added_at": 1575622210, - "trending": 9.918361540994638, - "installs_last_month": 994, + "trending": 9.761910834432587, + "installs_last_month": 1026, "isMobileFriendly": false }, { @@ -81671,8 +81671,8 @@ "aarch64" ], "added_at": 1662409159, - "trending": 7.920668240637399, - "installs_last_month": 321, + "trending": 11.437482823307509, + "installs_last_month": 336, "isMobileFriendly": false } ], @@ -81689,43 +81689,6 @@ "subcategory": "database", "data": { "hits": [ - { - "name": "Apache Directory Studio", - "keywords": [ - "ldap", - "ldif" - ], - "summary": "A complete directory tooling platform", - "description": "Apache Directory Studio is a complete directory tooling platform intended to be used with any LDAP server however it is particularly designed for use with ApacheDS. It is an Eclipse RCP application, composed of several Eclipse (OSGi) plugins, that can be easily upgraded with additional ones.\n The LDAP Browser has been designed to work with almost any LDAP server available. It not only permits to read and display the tree of your LDAP Server but also allows you to modify it by creating, editing or removing entries.\n The LDIF Editor is a tool for editing LDIF files. It provides syntax highlighting and content assistance.\n The Schema Editor has been designed to edit the schema files in the OpenLDAP format. It allows you to edit easily attribute types and object classes for Apache Directory Server and OpenLDAP.\n Apache Directory Studio bundles the latest version of the LDAPV3 certified ApacheDS. Creating and launching a new LDAP server now takes less than 10 seconds!\n The ApacheDS Configuration Editor can be used to edit the server configuration ('server.xml' and 'config.ldif' files) of an Apache Directory Server installation.\n The ACI Editor allows you to define, for an entry or a set of entries, graphically or manually (in souce code mode), an ACI (Access Control Information) item specification for Apache Directory Server.\n ", - "id": "org_apache_directory_studio", - "type": "desktop-application", - "translations": {}, - "project_license": "Apache-2.0", - "is_free_license": true, - "app_id": "org.apache.directory.studio", - "icon": "https://dl.flathub.org/media/org/apache/directory.studio/f6932a28ef31243666f0750dea4c3726/icons/128x128/org.apache.directory.studio.png", - "main_categories": "office", - "sub_categories": [ - "Database" - ], - "developer_name": "Apache Software Foundation", - "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": 1723815714, - "arches": [ - "x86_64" - ], - "added_at": 1648191987, - "trending": 1.166138304642506, - "installs_last_month": 530, - "isMobileFriendly": false - }, { "name": "Tellico", "keywords": null, @@ -81896,8 +81859,45 @@ "aarch64" ], "added_at": 1640766471, - "trending": 10.884811593921995, - "installs_last_month": 521, + "trending": 12.053383616189873, + "installs_last_month": 559, + "isMobileFriendly": false + }, + { + "name": "Apache Directory Studio", + "keywords": [ + "ldap", + "ldif" + ], + "summary": "A complete directory tooling platform", + "description": "Apache Directory Studio is a complete directory tooling platform intended to be used with any LDAP server however it is particularly designed for use with ApacheDS. It is an Eclipse RCP application, composed of several Eclipse (OSGi) plugins, that can be easily upgraded with additional ones.\n The LDAP Browser has been designed to work with almost any LDAP server available. It not only permits to read and display the tree of your LDAP Server but also allows you to modify it by creating, editing or removing entries.\n The LDIF Editor is a tool for editing LDIF files. It provides syntax highlighting and content assistance.\n The Schema Editor has been designed to edit the schema files in the OpenLDAP format. It allows you to edit easily attribute types and object classes for Apache Directory Server and OpenLDAP.\n Apache Directory Studio bundles the latest version of the LDAPV3 certified ApacheDS. Creating and launching a new LDAP server now takes less than 10 seconds!\n The ApacheDS Configuration Editor can be used to edit the server configuration ('server.xml' and 'config.ldif' files) of an Apache Directory Server installation.\n The ACI Editor allows you to define, for an entry or a set of entries, graphically or manually (in souce code mode), an ACI (Access Control Information) item specification for Apache Directory Server.\n ", + "id": "org_apache_directory_studio", + "type": "desktop-application", + "translations": {}, + "project_license": "Apache-2.0", + "is_free_license": true, + "app_id": "org.apache.directory.studio", + "icon": "https://dl.flathub.org/media/org/apache/directory.studio/f6932a28ef31243666f0750dea4c3726/icons/128x128/org.apache.directory.studio.png", + "main_categories": "office", + "sub_categories": [ + "Database" + ], + "developer_name": "Apache Software Foundation", + "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": 1723815714, + "arches": [ + "x86_64" + ], + "added_at": 1648191987, + "trending": 0.7268074306420715, + "installs_last_month": 551, "isMobileFriendly": false }, { @@ -82044,8 +82044,8 @@ "aarch64" ], "added_at": 1653288367, - "trending": 8.077265511782521, - "installs_last_month": 170, + "trending": 7.519611351266263, + "installs_last_month": 179, "isMobileFriendly": false } ], @@ -82094,8 +82094,8 @@ "aarch64" ], "added_at": 1615625043, - "trending": 12.28485640006882, - "installs_last_month": 496, + "trending": 11.703300673882188, + "installs_last_month": 505, "isMobileFriendly": false }, { @@ -82129,8 +82129,8 @@ "aarch64" ], "added_at": 1591265164, - "trending": 13.24855486509665, - "installs_last_month": 366, + "trending": 14.023344868841184, + "installs_last_month": 390, "isMobileFriendly": false }, { @@ -82167,7 +82167,7 @@ "x86_64" ], "added_at": 1676540627, - "trending": 1.707094920053888, + "trending": -0.2769454638593478, "installs_last_month": 105, "isMobileFriendly": false }, @@ -82203,7 +82203,7 @@ ], "added_at": 1636926451, "trending": 2.319123782641012, - "installs_last_month": 73, + "installs_last_month": 71, "isMobileFriendly": false } ], @@ -82469,8 +82469,8 @@ "aarch64" ], "added_at": 1538568898, - "trending": 13.135021500684786, - "installs_last_month": 5504, + "trending": 13.521576991663911, + "installs_last_month": 5657, "isMobileFriendly": false }, { @@ -82503,8 +82503,8 @@ "x86_64" ], "added_at": 1566630679, - "trending": 10.378189395398596, - "installs_last_month": 2056, + "trending": 10.73085989991498, + "installs_last_month": 2140, "isMobileFriendly": false }, { @@ -82551,8 +82551,8 @@ "aarch64" ], "added_at": 1575622210, - "trending": 9.918361540994638, - "installs_last_month": 994, + "trending": 9.761910834432587, + "installs_last_month": 1026, "isMobileFriendly": false }, { @@ -82585,8 +82585,8 @@ "x86_64" ], "added_at": 1600446464, - "trending": 1.0869559364431192, - "installs_last_month": 530, + "trending": 0.42049001663292623, + "installs_last_month": 554, "isMobileFriendly": false }, { @@ -82628,8 +82628,8 @@ "aarch64" ], "added_at": 1690198344, - "trending": 1.8160641516149656, - "installs_last_month": 41, + "trending": 5.526385352910931, + "installs_last_month": 46, "isMobileFriendly": false } ], @@ -82749,8 +82749,8 @@ "aarch64" ], "added_at": 1667147308, - "trending": 14.019070123990234, - "installs_last_month": 2533, + "trending": 12.723905979365988, + "installs_last_month": 2628, "isMobileFriendly": false }, { @@ -82788,8 +82788,8 @@ "aarch64" ], "added_at": 1614075157, - "trending": 10.374054150521197, - "installs_last_month": 1298, + "trending": 9.629587828627134, + "installs_last_month": 1360, "isMobileFriendly": false }, { @@ -82829,8 +82829,8 @@ "aarch64" ], "added_at": 1508225235, - "trending": 11.2199508023499, - "installs_last_month": 1205, + "trending": 11.941339166683, + "installs_last_month": 1252, "isMobileFriendly": false }, { @@ -82984,8 +82984,8 @@ "aarch64" ], "added_at": 1690197819, - "trending": 3.530010431914993, - "installs_last_month": 983, + "trending": 3.2761470588675916, + "installs_last_month": 1002, "isMobileFriendly": false }, { @@ -83021,7 +83021,7 @@ "aarch64" ], "added_at": 1567107220, - "trending": 1.293547330910567, + "trending": 1.075878990334771, "installs_last_month": 681, "isMobileFriendly": false }, @@ -83175,8 +83175,8 @@ "aarch64" ], "added_at": 1542107666, - "trending": 5.627823406626664, - "installs_last_month": 505, + "trending": 4.550466619270617, + "installs_last_month": 533, "isMobileFriendly": false }, { @@ -83210,8 +83210,8 @@ "aarch64" ], "added_at": 1729590526, - "trending": 2.6921742746122277, - "installs_last_month": 434, + "trending": 4.415263005149554, + "installs_last_month": 440, "isMobileFriendly": false }, { @@ -83244,8 +83244,8 @@ "x86_64" ], "added_at": 1686032755, - "trending": 2.042672126507546, - "installs_last_month": 395, + "trending": 4.356124144588044, + "installs_last_month": 385, "isMobileFriendly": false }, { @@ -83279,8 +83279,8 @@ "aarch64" ], "added_at": 1628622425, - "trending": 9.089977416872776, - "installs_last_month": 373, + "trending": 4.902586342359614, + "installs_last_month": 381, "isMobileFriendly": false }, { @@ -83314,8 +83314,8 @@ "aarch64" ], "added_at": 1695972618, - "trending": 7.306568456510267, - "installs_last_month": 330, + "trending": 9.17672601800011, + "installs_last_month": 354, "isMobileFriendly": false }, { @@ -83358,8 +83358,8 @@ "x86_64" ], "added_at": 1718954571, - "trending": 2.9277722016167305, - "installs_last_month": 256, + "trending": 2.721350898714736, + "installs_last_month": 244, "isMobileFriendly": false }, { @@ -83402,7 +83402,52 @@ "aarch64" ], "added_at": 1692817122, - "trending": 7.497278627618531, + "trending": 4.796774484178656, + "installs_last_month": 226, + "isMobileFriendly": false + }, + { + "name": "Wasabi Wallet", + "keywords": [ + "bitcoin", + "wallet", + "crypto", + "blockchain", + "wasabi", + "privacy", + "anon", + "awesome", + "qwe", + "asd" + ], + "summary": "Open-source, non-custodial, privacy-focused Bitcoin wallet for Desktop, that implements trustless CoinJoin.", + "description": "\n Wasabi is an open-source, non-custodial, privacy-focused Bitcoin wallet. It is a piece of software that runs on your computer and helps you to manage your bitcoins. Although Wasabi has some very advanced magic under the hood, it is rather easy to use. You can generate a new set of private keys, or import already existing ones. With Wasabi you can receive bitcoins into your full control, and you can send them to someone else without needing permission from any other person or entity. There is also a powerful CoinJoin feature to help obfuscate your transaction history. You can use Wasabi to manage your hardware wallet, and it even connects to your own full node. Of course, Wasabi is libre and open-source, which means you have full control over the software you manage your money with.\n \n ", + "id": "io_wasabiwallet_WasabiWallet", + "type": "desktop-application", + "translations": {}, + "project_license": "MIT", + "is_free_license": true, + "app_id": "io.wasabiwallet.WasabiWallet", + "icon": "https://dl.flathub.org/media/io/wasabiwallet/WasabiWallet/c5e247cfb011acac61a0f28193da87c6/icons/128x128/io.wasabiwallet.WasabiWallet.png", + "main_categories": "office", + "sub_categories": [ + "Finance" + ], + "developer_name": "zkSNACKs", + "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": 1713357707, + "arches": [ + "x86_64" + ], + "added_at": 1617692573, + "trending": 2.4907931971422896, "installs_last_month": 208, "isMobileFriendly": false }, @@ -83449,53 +83494,8 @@ "aarch64" ], "added_at": 1603699442, - "trending": 5.55708278863076, - "installs_last_month": 204, - "isMobileFriendly": false - }, - { - "name": "Wasabi Wallet", - "keywords": [ - "bitcoin", - "wallet", - "crypto", - "blockchain", - "wasabi", - "privacy", - "anon", - "awesome", - "qwe", - "asd" - ], - "summary": "Open-source, non-custodial, privacy-focused Bitcoin wallet for Desktop, that implements trustless CoinJoin.", - "description": "\n Wasabi is an open-source, non-custodial, privacy-focused Bitcoin wallet. It is a piece of software that runs on your computer and helps you to manage your bitcoins. Although Wasabi has some very advanced magic under the hood, it is rather easy to use. You can generate a new set of private keys, or import already existing ones. With Wasabi you can receive bitcoins into your full control, and you can send them to someone else without needing permission from any other person or entity. There is also a powerful CoinJoin feature to help obfuscate your transaction history. You can use Wasabi to manage your hardware wallet, and it even connects to your own full node. Of course, Wasabi is libre and open-source, which means you have full control over the software you manage your money with.\n \n ", - "id": "io_wasabiwallet_WasabiWallet", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT", - "is_free_license": true, - "app_id": "io.wasabiwallet.WasabiWallet", - "icon": "https://dl.flathub.org/media/io/wasabiwallet/WasabiWallet/c5e247cfb011acac61a0f28193da87c6/icons/128x128/io.wasabiwallet.WasabiWallet.png", - "main_categories": "office", - "sub_categories": [ - "Finance" - ], - "developer_name": "zkSNACKs", - "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": 1713357707, - "arches": [ - "x86_64" - ], - "added_at": 1617692573, - "trending": 1.0891507539266194, - "installs_last_month": 200, + "trending": 4.164857629206373, + "installs_last_month": 205, "isMobileFriendly": false }, { @@ -83534,8 +83534,8 @@ "aarch64" ], "added_at": 1552896231, - "trending": 0.4329414763391991, - "installs_last_month": 188, + "trending": 1.763113458367246, + "installs_last_month": 194, "isMobileFriendly": false }, { @@ -83576,43 +83576,8 @@ "aarch64" ], "added_at": 1642019159, - "trending": 7.368694650235589, - "installs_last_month": 170, - "isMobileFriendly": false - }, - { - "name": "Fava", - "keywords": null, - "summary": "Do your finances using fava and beancount", - "description": "This app allows to use the Fava and Beancount double-entry bookkeeping\n\t software packages as a GNOME desktop application.\n\t \n \n Easy installation using flatpak\n Start fava and beancount as you would any other desktop application.\n Built as a GNOME application, using GTK4 and webkit, packaged using flatpak.\n \n ", - "id": "org_gnome_gitlab_johannesjh_favagtk", - "type": "desktop-application", - "translations": {}, - "project_license": "GPL-3.0-or-later", - "is_free_license": true, - "app_id": "org.gnome.gitlab.johannesjh.favagtk", - "icon": "https://dl.flathub.org/media/org/gnome/gitlab.johannesjh.favagtk.desktop/cb88c59614dafdea2cd03ad3f326a138/icons/128x128/org.gnome.gitlab.johannesjh.favagtk.desktop.png", - "main_categories": "office", - "sub_categories": [ - "Finance" - ], - "developer_name": "johannesjh", - "verification_verified": true, - "verification_method": "login_provider", - "verification_login_name": "johannesjh", - "verification_login_provider": "gnome", - "verification_login_is_organization": "false", - "verification_website": null, - "verification_timestamp": "1717158599", - "runtime": "org.gnome.Platform/x86_64/48", - "updated_at": 1743269938, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1656709788, - "trending": 6.773758567752379, - "installs_last_month": 148, + "trending": 8.070386552717121, + "installs_last_month": 187, "isMobileFriendly": false }, { @@ -83646,8 +83611,43 @@ "aarch64" ], "added_at": 1706168119, - "trending": 4.211678887593998, - "installs_last_month": 148, + "trending": 3.505145543702594, + "installs_last_month": 162, + "isMobileFriendly": false + }, + { + "name": "Fava", + "keywords": null, + "summary": "Do your finances using fava and beancount", + "description": "This app allows to use the Fava and Beancount double-entry bookkeeping\n\t software packages as a GNOME desktop application.\n\t \n \n Easy installation using flatpak\n Start fava and beancount as you would any other desktop application.\n Built as a GNOME application, using GTK4 and webkit, packaged using flatpak.\n \n ", + "id": "org_gnome_gitlab_johannesjh_favagtk", + "type": "desktop-application", + "translations": {}, + "project_license": "GPL-3.0-or-later", + "is_free_license": true, + "app_id": "org.gnome.gitlab.johannesjh.favagtk", + "icon": "https://dl.flathub.org/media/org/gnome/gitlab.johannesjh.favagtk.desktop/cb88c59614dafdea2cd03ad3f326a138/icons/128x128/org.gnome.gitlab.johannesjh.favagtk.desktop.png", + "main_categories": "office", + "sub_categories": [ + "Finance" + ], + "developer_name": "johannesjh", + "verification_verified": true, + "verification_method": "login_provider", + "verification_login_name": "johannesjh", + "verification_login_provider": "gnome", + "verification_login_is_organization": "false", + "verification_website": null, + "verification_timestamp": "1717158599", + "runtime": "org.gnome.Platform/x86_64/48", + "updated_at": 1743269938, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1656709788, + "trending": 5.892109538107555, + "installs_last_month": 154, "isMobileFriendly": false }, { @@ -83681,8 +83681,8 @@ "x86_64" ], "added_at": 1694162398, - "trending": 5.967600405292309, - "installs_last_month": 143, + "trending": 5.363536736848854, + "installs_last_month": 152, "isMobileFriendly": false }, { @@ -83723,8 +83723,45 @@ "aarch64" ], "added_at": 1730904595, - "trending": 2.075760198621672, - "installs_last_month": 122, + "trending": 1.3442423753317527, + "installs_last_month": 134, + "isMobileFriendly": false + }, + { + "name": "Dash Core", + "keywords": null, + "summary": "Fully validating Dash peer-to-peer network node, wallet and GUI", + "description": "\n Dash Core connects to the Dash peer-to-peer network to download and\n fully validate blocks and transactions. It also includes a wallet and\n graphical user interface.\n \n ", + "id": "org_dash_dash-core", + "type": "desktop-application", + "translations": {}, + "project_license": "MIT", + "is_free_license": true, + "app_id": "org.dash.dash-core", + "icon": "https://dl.flathub.org/media/org/dash/dash-core/fb887e743e53b808ade53334b49b6891/icons/128x128/org.dash.dash-core.png", + "main_categories": "office", + "sub_categories": [ + "Finance", + "P2P", + "Network" + ], + "developer_name": "Dash Core Group", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "dash.org", + "verification_timestamp": "1733074195", + "runtime": "org.freedesktop.Platform/x86_64/24.08", + "updated_at": 1739282089, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1732074361, + "trending": 3.5843146187312827, + "installs_last_month": 97, "isMobileFriendly": false }, { @@ -83760,47 +83797,10 @@ "aarch64" ], "added_at": 1729673025, - "trending": 13.997313044472763, - "installs_last_month": 103, + "trending": 15.92429508502012, + "installs_last_month": 94, "isMobileFriendly": true }, - { - "name": "Dash Core", - "keywords": null, - "summary": "Fully validating Dash peer-to-peer network node, wallet and GUI", - "description": "\n Dash Core connects to the Dash peer-to-peer network to download and\n fully validate blocks and transactions. It also includes a wallet and\n graphical user interface.\n \n ", - "id": "org_dash_dash-core", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT", - "is_free_license": true, - "app_id": "org.dash.dash-core", - "icon": "https://dl.flathub.org/media/org/dash/dash-core/fb887e743e53b808ade53334b49b6891/icons/128x128/org.dash.dash-core.png", - "main_categories": "office", - "sub_categories": [ - "Finance", - "P2P", - "Network" - ], - "developer_name": "Dash Core Group", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "dash.org", - "verification_timestamp": "1733074195", - "runtime": "org.freedesktop.Platform/x86_64/24.08", - "updated_at": 1739282089, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1732074361, - "trending": 2.4165522937698105, - "installs_last_month": 89, - "isMobileFriendly": false - }, { "name": "Firo", "keywords": null, @@ -83832,7 +83832,7 @@ ], "added_at": 1709731071, "trending": 5.719205829700423, - "installs_last_month": 56, + "installs_last_month": 60, "isMobileFriendly": false }, { @@ -83866,8 +83866,8 @@ "aarch64" ], "added_at": 1672610319, - "trending": 10.741870304628186, - "installs_last_month": 53, + "trending": 6.968164948628926, + "installs_last_month": 52, "isMobileFriendly": false }, { @@ -83902,7 +83902,7 @@ ], "added_at": 1693548067, "trending": 2.552594247158079, - "installs_last_month": 51, + "installs_last_month": 47, "isMobileFriendly": false }, { @@ -83943,7 +83943,7 @@ "aarch64" ], "added_at": 1698742266, - "trending": 6.63797858404898, + "trending": 6.877753067330672, "installs_last_month": 42, "isMobileFriendly": false }, @@ -83983,7 +83983,7 @@ ], "added_at": 1655706579, "trending": 0.9047327855790592, - "installs_last_month": 36, + "installs_last_month": 40, "isMobileFriendly": false }, { @@ -84016,8 +84016,8 @@ "x86_64" ], "added_at": 1665962962, - "trending": 9.718184850451324, - "installs_last_month": 36, + "trending": 10.3206201809661, + "installs_last_month": 38, "isMobileFriendly": false }, { @@ -84053,8 +84053,8 @@ "aarch64" ], "added_at": 1589287558, - "trending": 0.30237202984950184, - "installs_last_month": 34, + "trending": 1.2605765569601497, + "installs_last_month": 35, "isMobileFriendly": false }, { @@ -84087,42 +84087,8 @@ "x86_64" ], "added_at": 1671521493, - "trending": 1.9322433669142591, - "installs_last_month": 29, - "isMobileFriendly": false - }, - { - "name": "Worldcoin", - "keywords": null, - "summary": "Separated by borders, United by technology", - "description": "Launched in May 2013, Worldcoin is the 9th longest running blockchain in existence. Reaching $1 per WDC in late 2013. Worldcoin has a rich history and enormous potential with 8 years of proven durability. Worldcoin has survived because it's truly decentralized.", - "id": "global_worldcoin_worldcoin-core", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT", - "is_free_license": true, - "app_id": "global.worldcoin.worldcoin-core", - "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/global.worldcoin.worldcoin-core.png", - "main_categories": "office", - "sub_categories": [ - "Finance" - ], - "developer_name": "Worldcoin Team", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "worldcoin.global", - "verification_timestamp": "1703610093", - "runtime": "org.freedesktop.Platform/x86_64/22.08", - "updated_at": 1679761562, - "arches": [ - "x86_64" - ], - "added_at": 1679761462, - "trending": 2.001593590944556, - "installs_last_month": 23, + "trending": 0.5113966558939647, + "installs_last_month": 32, "isMobileFriendly": false }, { @@ -84155,8 +84121,42 @@ "x86_64" ], "added_at": 1742842042, - "trending": 9.625188684588196, - "installs_last_month": 21, + "trending": 6.401521806230046, + "installs_last_month": 25, + "isMobileFriendly": false + }, + { + "name": "Worldcoin", + "keywords": null, + "summary": "Separated by borders, United by technology", + "description": "Launched in May 2013, Worldcoin is the 9th longest running blockchain in existence. Reaching $1 per WDC in late 2013. Worldcoin has a rich history and enormous potential with 8 years of proven durability. Worldcoin has survived because it's truly decentralized.", + "id": "global_worldcoin_worldcoin-core", + "type": "desktop-application", + "translations": {}, + "project_license": "MIT", + "is_free_license": true, + "app_id": "global.worldcoin.worldcoin-core", + "icon": "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/global.worldcoin.worldcoin-core.png", + "main_categories": "office", + "sub_categories": [ + "Finance" + ], + "developer_name": "Worldcoin Team", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "worldcoin.global", + "verification_timestamp": "1703610093", + "runtime": "org.freedesktop.Platform/x86_64/22.08", + "updated_at": 1679761562, + "arches": [ + "x86_64" + ], + "added_at": 1679761462, + "trending": 0.16310464901867228, + "installs_last_month": 23, "isMobileFriendly": false }, { @@ -84198,12 +84198,12 @@ ], "added_at": 1714895548, "trending": 0.6198765253952343, - "installs_last_month": 10, + "installs_last_month": 12, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 6, + "processingTimeMs": 7, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -84257,8 +84257,8 @@ "x86_64" ], "added_at": 1573549240, - "trending": 8.226683613226733, - "installs_last_month": 38040, + "trending": 7.963716807278052, + "installs_last_month": 39257, "isMobileFriendly": false }, { @@ -84300,8 +84300,8 @@ "aarch64" ], "added_at": 1714895621, - "trending": 6.824199108027768, - "installs_last_month": 572, + "trending": 7.90340349272523, + "installs_last_month": 566, "isMobileFriendly": false }, { @@ -84337,8 +84337,8 @@ "aarch64" ], "added_at": 1722667131, - "trending": 4.35810235514673, - "installs_last_month": 507, + "trending": 4.433771398131938, + "installs_last_month": 526, "isMobileFriendly": false }, { @@ -84372,8 +84372,8 @@ "aarch64" ], "added_at": 1506590504, - "trending": 0.42814231878320785, - "installs_last_month": 156, + "trending": 1.799545410321347, + "installs_last_month": 170, "isMobileFriendly": false }, { @@ -84407,8 +84407,8 @@ "aarch64" ], "added_at": 1668366986, - "trending": 1.283051204367726, - "installs_last_month": 115, + "trending": 2.9939917662463613, + "installs_last_month": 122, "isMobileFriendly": false } ], @@ -84455,8 +84455,8 @@ "x86_64" ], "added_at": 1733627609, - "trending": 10.768498923010318, - "installs_last_month": 1764, + "trending": 11.509975563629109, + "installs_last_month": 1911, "isMobileFriendly": false }, { @@ -84546,8 +84546,8 @@ "aarch64" ], "added_at": 1594042726, - "trending": 7.342823871514996, - "installs_last_month": 669, + "trending": 6.219086668320423, + "installs_last_month": 678, "isMobileFriendly": false }, { @@ -84594,8 +84594,8 @@ "aarch64" ], "added_at": 1676882400, - "trending": 14.186164832161168, - "installs_last_month": 590, + "trending": 11.255023996224256, + "installs_last_month": 593, "isMobileFriendly": true }, { @@ -84632,8 +84632,8 @@ "aarch64" ], "added_at": 1696412774, - "trending": 9.568705385860358, - "installs_last_month": 384, + "trending": 11.642547101159664, + "installs_last_month": 411, "isMobileFriendly": false }, { @@ -84671,8 +84671,8 @@ "aarch64" ], "added_at": 1711606703, - "trending": 11.440217550856666, - "installs_last_month": 377, + "trending": 11.625219430765188, + "installs_last_month": 385, "isMobileFriendly": false }, { @@ -84803,8 +84803,8 @@ "aarch64" ], "added_at": 1507916632, - "trending": 1.012551796029012, - "installs_last_month": 212, + "trending": 0.939467545044906, + "installs_last_month": 207, "isMobileFriendly": false } ], @@ -84858,8 +84858,8 @@ "aarch64" ], "added_at": 1526929581, - "trending": 10.746964206387483, - "installs_last_month": 1741, + "trending": 6.785550269082503, + "installs_last_month": 1809, "isMobileFriendly": false }, { @@ -84987,8 +84987,8 @@ "aarch64" ], "added_at": 1546880202, - "trending": 9.44796993178843, - "installs_last_month": 1250, + "trending": 10.962056782794456, + "installs_last_month": 1281, "isMobileFriendly": false }, { @@ -85024,8 +85024,8 @@ "aarch64" ], "added_at": 1726751338, - "trending": 1.4225483432854218, - "installs_last_month": 463, + "trending": 4.759271267287046, + "installs_last_month": 476, "isMobileFriendly": false }, { @@ -85130,8 +85130,8 @@ "aarch64" ], "added_at": 1575708557, - "trending": 9.447789568350853, - "installs_last_month": 397, + "trending": 8.038238513250061, + "installs_last_month": 413, "isMobileFriendly": false }, { @@ -85169,8 +85169,8 @@ "aarch64" ], "added_at": 1582841353, - "trending": 6.67454882559644, - "installs_last_month": 372, + "trending": 8.596473332076254, + "installs_last_month": 394, "isMobileFriendly": false }, { @@ -85303,8 +85303,8 @@ "aarch64" ], "added_at": 1548889358, - "trending": 10.683327826821, - "installs_last_month": 347, + "trending": 12.051340899363147, + "installs_last_month": 353, "isMobileFriendly": false }, { @@ -85463,8 +85463,8 @@ "aarch64" ], "added_at": 1645823229, - "trending": 11.049266306468905, - "installs_last_month": 292, + "trending": 12.757694797208496, + "installs_last_month": 307, "isMobileFriendly": false } ], @@ -85523,8 +85523,8 @@ "x86_64" ], "added_at": 1573549240, - "trending": 8.226683613226733, - "installs_last_month": 38040, + "trending": 7.963716807278052, + "installs_last_month": 39257, "isMobileFriendly": false }, { @@ -85641,8 +85641,8 @@ "aarch64" ], "added_at": 1633348844, - "trending": 6.295652848911672, - "installs_last_month": 709, + "trending": 7.356368581539405, + "installs_last_month": 736, "isMobileFriendly": false }, { @@ -85688,8 +85688,8 @@ "aarch64" ], "added_at": 1695972923, - "trending": 7.30010085640401, - "installs_last_month": 580, + "trending": 8.742872392009064, + "installs_last_month": 668, "isMobileFriendly": false } ], @@ -85820,8 +85820,8 @@ "aarch64" ], "added_at": 1559220873, - "trending": 15.239275625241296, - "installs_last_month": 12408, + "trending": 14.023556732861236, + "installs_last_month": 13020, "isMobileFriendly": false }, { @@ -85854,8 +85854,8 @@ "x86_64" ], "added_at": 1681977273, - "trending": 11.576741003414735, - "installs_last_month": 9874, + "trending": 9.635852235188215, + "installs_last_month": 10229, "isMobileFriendly": false }, { @@ -86030,8 +86030,8 @@ "aarch64" ], "added_at": 1718264371, - "trending": 12.72007423607302, - "installs_last_month": 8193, + "trending": 14.791461638118797, + "installs_last_month": 8270, "isMobileFriendly": true }, { @@ -86295,8 +86295,8 @@ "aarch64" ], "added_at": 1510234165, - "trending": 11.75104519600549, - "installs_last_month": 4818, + "trending": 12.616111998878544, + "installs_last_month": 5051, "isMobileFriendly": false }, { @@ -86386,8 +86386,8 @@ "aarch64" ], "added_at": 1672610803, - "trending": 7.940547687357071, - "installs_last_month": 1635, + "trending": 7.227475412919839, + "installs_last_month": 1703, "isMobileFriendly": true }, { @@ -86424,8 +86424,8 @@ "aarch64" ], "added_at": 1678691382, - "trending": 9.80085675460854, - "installs_last_month": 1384, + "trending": 8.583092661499094, + "installs_last_month": 1455, "isMobileFriendly": false }, { @@ -86555,8 +86555,8 @@ "aarch64" ], "added_at": 1509737203, - "trending": 1.854015550522024, - "installs_last_month": 1159, + "trending": 1.1538987715838862, + "installs_last_month": 1199, "isMobileFriendly": false }, { @@ -86777,8 +86777,8 @@ "aarch64" ], "added_at": 1721811146, - "trending": 7.624257328917165, - "installs_last_month": 909, + "trending": 8.92296117534988, + "installs_last_month": 926, "isMobileFriendly": false }, { @@ -86816,8 +86816,8 @@ "aarch64" ], "added_at": 1646899305, - "trending": 5.013619017874197, - "installs_last_month": 495, + "trending": 5.179576090798801, + "installs_last_month": 507, "isMobileFriendly": false }, { @@ -86922,8 +86922,8 @@ "aarch64" ], "added_at": 1575708557, - "trending": 9.447789568350853, - "installs_last_month": 397, + "trending": 8.038238513250061, + "installs_last_month": 413, "isMobileFriendly": false }, { @@ -86957,8 +86957,8 @@ "aarch64" ], "added_at": 1725285194, - "trending": 10.008878439417174, - "installs_last_month": 351, + "trending": 5.02613916635901, + "installs_last_month": 364, "isMobileFriendly": false }, { @@ -87002,8 +87002,8 @@ "aarch64" ], "added_at": 1741448896, - "trending": 10.442608549656748, - "installs_last_month": 254, + "trending": 10.652806297481794, + "installs_last_month": 261, "isMobileFriendly": false }, { @@ -87038,13 +87038,13 @@ "aarch64" ], "added_at": 1674715885, - "trending": 11.403443240985789, - "installs_last_month": 209, + "trending": 5.5829488288129685, + "installs_last_month": 212, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 5, + "processingTimeMs": 6, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -87098,8 +87098,8 @@ "x86_64" ], "added_at": 1573549240, - "trending": 8.226683613226733, - "installs_last_month": 38040, + "trending": 7.963716807278052, + "installs_last_month": 39257, "isMobileFriendly": false }, { @@ -87139,8 +87139,8 @@ "aarch64" ], "added_at": 1739803217, - "trending": 14.711887327670784, - "installs_last_month": 1553, + "trending": 14.623548803946363, + "installs_last_month": 1632, "isMobileFriendly": false }, { @@ -87174,8 +87174,8 @@ "aarch64" ], "added_at": 1533486394, - "trending": 10.394426622131826, - "installs_last_month": 1251, + "trending": 8.733010255912738, + "installs_last_month": 1306, "isMobileFriendly": false }, { @@ -87282,8 +87282,8 @@ "aarch64" ], "added_at": 1725287901, - "trending": 12.85750000960367, - "installs_last_month": 1238, + "trending": 14.342656952359816, + "installs_last_month": 1273, "isMobileFriendly": false }, { @@ -87317,8 +87317,8 @@ "aarch64" ], "added_at": 1607330222, - "trending": 7.918426645664864, - "installs_last_month": 1195, + "trending": 8.68455670875612, + "installs_last_month": 1237, "isMobileFriendly": false }, { @@ -87474,8 +87474,8 @@ "aarch64" ], "added_at": 1713516115, - "trending": 10.721003279623163, - "installs_last_month": 1124, + "trending": 9.038502942074649, + "installs_last_month": 1191, "isMobileFriendly": false }, { @@ -87681,8 +87681,8 @@ "aarch64" ], "added_at": 1505857312, - "trending": 9.208695348519871, - "installs_last_month": 1084, + "trending": 12.676703525274627, + "installs_last_month": 1113, "isMobileFriendly": false }, { @@ -87724,8 +87724,8 @@ "aarch64" ], "added_at": 1636532388, - "trending": 8.6145814764591, - "installs_last_month": 669, + "trending": 8.194110520833698, + "installs_last_month": 694, "isMobileFriendly": false }, { @@ -87759,8 +87759,8 @@ "aarch64" ], "added_at": 1500682200, - "trending": 10.362766262088265, - "installs_last_month": 456, + "trending": 12.715453740042546, + "installs_last_month": 463, "isMobileFriendly": false }, { @@ -87877,8 +87877,8 @@ "aarch64" ], "added_at": 1651827834, - "trending": 0.9116395113161267, - "installs_last_month": 228, + "trending": 3.07129018747435, + "installs_last_month": 235, "isMobileFriendly": false }, { @@ -87912,8 +87912,8 @@ "aarch64" ], "added_at": 1709408574, - "trending": 12.40767884373032, - "installs_last_month": 222, + "trending": 8.59938687170743, + "installs_last_month": 221, "isMobileFriendly": false }, { @@ -87951,8 +87951,8 @@ "aarch64" ], "added_at": 1742581523, - "trending": 11.32233056420947, - "installs_last_month": 194, + "trending": 11.33259173916872, + "installs_last_month": 203, "isMobileFriendly": false }, { @@ -87989,8 +87989,8 @@ "aarch64" ], "added_at": 1674413769, - "trending": 9.34087595935686, - "installs_last_month": 185, + "trending": 9.83888063352435, + "installs_last_month": 195, "isMobileFriendly": false }, { @@ -88031,8 +88031,8 @@ "aarch64" ], "added_at": 1575966807, - "trending": 3.5364670224565615, - "installs_last_month": 133, + "trending": 3.493770021543595, + "installs_last_month": 136, "isMobileFriendly": false } ], @@ -88281,8 +88281,8 @@ "aarch64" ], "added_at": 1527189163, - "trending": 13.340314706799813, - "installs_last_month": 21425, + "trending": 11.91943199887374, + "installs_last_month": 22068, "isMobileFriendly": false }, { @@ -88316,8 +88316,8 @@ "aarch64" ], "added_at": 1520508045, - "trending": -0.17463897752970503, - "installs_last_month": 738, + "trending": 1.7121378514072092, + "installs_last_month": 777, "isMobileFriendly": false }, { @@ -88351,8 +88351,8 @@ "aarch64" ], "added_at": 1608022038, - "trending": 9.410867877305709, - "installs_last_month": 361, + "trending": 8.757665028221513, + "installs_last_month": 375, "isMobileFriendly": false }, { @@ -88387,8 +88387,8 @@ "aarch64" ], "added_at": 1566069144, - "trending": 8.210581478672262, - "installs_last_month": 192, + "trending": 7.893822766204428, + "installs_last_month": 205, "isMobileFriendly": false }, { @@ -88426,8 +88426,8 @@ "aarch64" ], "added_at": 1651737521, - "trending": 6.138400529240202, - "installs_last_month": 192, + "trending": 7.943044456793384, + "installs_last_month": 201, "isMobileFriendly": false } ], @@ -88667,8 +88667,8 @@ "aarch64" ], "added_at": 1554812495, - "trending": 13.592166280110574, - "installs_last_month": 7268, + "trending": 12.495317546836027, + "installs_last_month": 7630, "isMobileFriendly": false }, { @@ -88706,8 +88706,8 @@ "x86_64" ], "added_at": 1686636410, - "trending": 6.932309075938384, - "installs_last_month": 1051, + "trending": 6.905280143046892, + "installs_last_month": 1096, "isMobileFriendly": false }, { @@ -88750,8 +88750,8 @@ "aarch64" ], "added_at": 1618816279, - "trending": 10.419165137361514, - "installs_last_month": 535, + "trending": 10.719698874292748, + "installs_last_month": 565, "isMobileFriendly": false }, { @@ -88924,8 +88924,8 @@ "aarch64" ], "added_at": 1621235935, - "trending": 7.106344888260049, - "installs_last_month": 465, + "trending": 8.231006839557878, + "installs_last_month": 474, "isMobileFriendly": false } ], @@ -89196,8 +89196,8 @@ "aarch64" ], "added_at": 1598957932, - "trending": 11.333127061895985, - "installs_last_month": 11322, + "trending": 12.230722173988172, + "installs_last_month": 11772, "isMobileFriendly": false }, { @@ -89238,8 +89238,8 @@ "aarch64" ], "added_at": 1739721367, - "trending": 4.641469538847841, - "installs_last_month": 829, + "trending": 7.269545894630375, + "installs_last_month": 857, "isMobileFriendly": false }, { @@ -89274,8 +89274,8 @@ "aarch64" ], "added_at": 1566069144, - "trending": 8.210581478672262, - "installs_last_month": 192, + "trending": 7.893822766204428, + "installs_last_month": 205, "isMobileFriendly": false }, { @@ -89315,13 +89315,13 @@ "aarch64" ], "added_at": 1702974754, - "trending": 8.576001076462857, - "installs_last_month": 95, + "trending": 8.329803261780734, + "installs_last_month": 96, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 2, + "processingTimeMs": 3, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -89556,8 +89556,8 @@ "aarch64" ], "added_at": 1554812495, - "trending": 13.592166280110574, - "installs_last_month": 7268, + "trending": 12.495317546836027, + "installs_last_month": 7630, "isMobileFriendly": false }, { @@ -89597,8 +89597,8 @@ "aarch64" ], "added_at": 1611388948, - "trending": 10.559934384270512, - "installs_last_month": 3735, + "trending": 8.976196386555628, + "installs_last_month": 3837, "isMobileFriendly": false }, { @@ -89636,8 +89636,8 @@ "x86_64" ], "added_at": 1686636410, - "trending": 6.932309075938384, - "installs_last_month": 1051, + "trending": 6.905280143046892, + "installs_last_month": 1096, "isMobileFriendly": false }, { @@ -89683,8 +89683,8 @@ "aarch64" ], "added_at": 1686032728, - "trending": 2.0466545595442227, - "installs_last_month": 771, + "trending": 1.5282621959595253, + "installs_last_month": 813, "isMobileFriendly": false }, { @@ -89727,8 +89727,8 @@ "aarch64" ], "added_at": 1618816279, - "trending": 10.419165137361514, - "installs_last_month": 535, + "trending": 10.719698874292748, + "installs_last_month": 565, "isMobileFriendly": false } ], @@ -89946,8 +89946,8 @@ "aarch64" ], "added_at": 1689080874, - "trending": 13.087218354949515, - "installs_last_month": 22197, + "trending": 14.64059030770626, + "installs_last_month": 22841, "isMobileFriendly": false }, { @@ -90186,8 +90186,8 @@ "aarch64" ], "added_at": 1556170700, - "trending": 12.30978541505718, - "installs_last_month": 4345, + "trending": 13.560701132580494, + "installs_last_month": 4483, "isMobileFriendly": false }, { @@ -90417,8 +90417,8 @@ "aarch64" ], "added_at": 1549567992, - "trending": 8.241787425384295, - "installs_last_month": 667, + "trending": 6.122286968092159, + "installs_last_month": 672, "isMobileFriendly": false }, { @@ -90452,8 +90452,8 @@ "aarch64" ], "added_at": 1723325240, - "trending": 4.108680464608611, - "installs_last_month": 166, + "trending": 25.838557998511483, + "installs_last_month": 178, "isMobileFriendly": false }, { @@ -90491,13 +90491,13 @@ "aarch64" ], "added_at": 1714136700, - "trending": 3.139007840585542, - "installs_last_month": 112, + "trending": 6.835680361206595, + "installs_last_month": 116, "isMobileFriendly": false } ], "query": "", - "processingTimeMs": 3, + "processingTimeMs": 4, "hitsPerPage": 250, "page": 1, "totalPages": 1, @@ -90709,8 +90709,8 @@ "aarch64" ], "added_at": 1663309529, - "trending": 8.258349952448206, - "installs_last_month": 2106, + "trending": 8.733276518758899, + "installs_last_month": 2163, "isMobileFriendly": false }, { @@ -90753,8 +90753,8 @@ "aarch64" ], "added_at": 1738080481, - "trending": 1.0031460429960442, - "installs_last_month": 2069, + "trending": 2.020849312626775, + "installs_last_month": 2065, "isMobileFriendly": false }, { @@ -90787,8 +90787,8 @@ "x86_64" ], "added_at": 1570002721, - "trending": 5.492449273787541, - "installs_last_month": 1118, + "trending": 7.479111827745933, + "installs_last_month": 1163, "isMobileFriendly": false }, { @@ -90831,8 +90831,8 @@ "aarch64" ], "added_at": 1514067383, - "trending": 9.79799502754808, - "installs_last_month": 426, + "trending": 8.362314633965397, + "installs_last_month": 425, "isMobileFriendly": false }, { @@ -90866,8 +90866,8 @@ "aarch64" ], "added_at": 1557946295, - "trending": 2.228153751728444, - "installs_last_month": 387, + "trending": 4.663700042426072, + "installs_last_month": 390, "isMobileFriendly": false }, { @@ -91145,8 +91145,8 @@ "aarch64" ], "added_at": 1688295550, - "trending": 11.344843987971936, - "installs_last_month": 4302, + "trending": 11.670465481680775, + "installs_last_month": 4435, "isMobileFriendly": false }, { @@ -91304,8 +91304,8 @@ "aarch64" ], "added_at": 1715582240, - "trending": 13.851770520273265, - "installs_last_month": 3287, + "trending": 13.82331461035426, + "installs_last_month": 3368, "isMobileFriendly": false }, { @@ -91346,8 +91346,8 @@ "aarch64" ], "added_at": 1660029810, - "trending": 6.958251492522141, - "installs_last_month": 2991, + "trending": 5.797277640145194, + "installs_last_month": 3069, "isMobileFriendly": false }, { @@ -91551,8 +91551,8 @@ "aarch64" ], "added_at": 1692023917, - "trending": -0.6062430674213171, - "installs_last_month": 2079, + "trending": 2.5399928704357224, + "installs_last_month": 2172, "isMobileFriendly": false }, { @@ -91591,8 +91591,8 @@ "aarch64" ], "added_at": 1741023107, - "trending": 3.5466233246166325, - "installs_last_month": 416, + "trending": 3.437258557678718, + "installs_last_month": 420, "isMobileFriendly": false }, { @@ -91626,8 +91626,8 @@ "aarch64" ], "added_at": 1656936928, - "trending": 11.0722093166588, - "installs_last_month": 363, + "trending": 11.569398975797004, + "installs_last_month": 369, "isMobileFriendly": false }, { @@ -91661,53 +91661,8 @@ "aarch64" ], "added_at": 1634337078, - "trending": 5.866512381787156, - "installs_last_month": 319, - "isMobileFriendly": false - }, - { - "name": "pw3270", - "keywords": [ - "3270", - "telnet", - "pw3270" - ], - "summary": "Access TN3270 hosts", - "description": "GTK Based 3270 terminal emulator\n pw3270 is a modern, GTK-based, completely free tn3270 emulator.\n Created originally for Banco do Brasil, it's now an official Brazilian Government Public Software project, and is used worldwide.\n ", - "id": "br_app_pw3270_terminal", - "type": "desktop-application", - "translations": { - "pt-BR": { - "description": "Emulador de terminal 3270 baseado em GTK-3\n pw3270 é um emulador tn3270 moderno, baseado em GTK e completamente livre.\n Criado originalmente para o Banco do Brasil, agora é um projeto de software público do governo brasileiro usado em todo o mundo.\n ", - "name": "pw3270", - "summary": "Acesse servidores TN3270" - } - }, - "project_license": "LGPL-3.0", - "is_free_license": true, - "app_id": "br.app.pw3270.terminal", - "icon": "https://dl.flathub.org/media/br/app/pw3270.terminal.desktop/34bbb55d226d3932b93cd8de92a9aa9b/icons/128x128/br.app.pw3270.terminal.desktop.png", - "main_categories": "system", - "sub_categories": [ - "TerminalEmulator" - ], - "developer_name": "Perry Werneck", - "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/47", - "updated_at": 1729171546, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1674053049, - "trending": 5.551221281135027, - "installs_last_month": 157, + "trending": 6.216768076571392, + "installs_last_month": 323, "isMobileFriendly": false }, { @@ -91907,7 +91862,52 @@ "aarch64" ], "added_at": 1676882106, - "trending": 10.090233486743829, + "trending": 9.183545511397956, + "installs_last_month": 162, + "isMobileFriendly": false + }, + { + "name": "pw3270", + "keywords": [ + "3270", + "telnet", + "pw3270" + ], + "summary": "Access TN3270 hosts", + "description": "GTK Based 3270 terminal emulator\n pw3270 is a modern, GTK-based, completely free tn3270 emulator.\n Created originally for Banco do Brasil, it's now an official Brazilian Government Public Software project, and is used worldwide.\n ", + "id": "br_app_pw3270_terminal", + "type": "desktop-application", + "translations": { + "pt-BR": { + "description": "Emulador de terminal 3270 baseado em GTK-3\n pw3270 é um emulador tn3270 moderno, baseado em GTK e completamente livre.\n Criado originalmente para o Banco do Brasil, agora é um projeto de software público do governo brasileiro usado em todo o mundo.\n ", + "name": "pw3270", + "summary": "Acesse servidores TN3270" + } + }, + "project_license": "LGPL-3.0", + "is_free_license": true, + "app_id": "br.app.pw3270.terminal", + "icon": "https://dl.flathub.org/media/br/app/pw3270.terminal.desktop/34bbb55d226d3932b93cd8de92a9aa9b/icons/128x128/br.app.pw3270.terminal.desktop.png", + "main_categories": "system", + "sub_categories": [ + "TerminalEmulator" + ], + "developer_name": "Perry Werneck", + "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/47", + "updated_at": 1729171546, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1674053049, + "trending": 6.647574034114113, "installs_last_month": 157, "isMobileFriendly": false } @@ -91964,8 +91964,8 @@ "aarch64" ], "added_at": 1618902519, - "trending": 7.03226035405627, - "installs_last_month": 3902, + "trending": 7.2944572517391855, + "installs_last_month": 4092, "isMobileFriendly": false }, { @@ -92009,8 +92009,8 @@ "aarch64" ], "added_at": 1671091070, - "trending": 11.840349686466412, - "installs_last_month": 991, + "trending": 10.474521728692832, + "installs_last_month": 1015, "isMobileFriendly": false }, { @@ -92044,8 +92044,8 @@ "aarch64" ], "added_at": 1680758637, - "trending": 9.285989893372143, - "installs_last_month": 560, + "trending": 6.098213666626209, + "installs_last_month": 574, "isMobileFriendly": false }, { @@ -92094,8 +92094,8 @@ "aarch64" ], "added_at": 1709708897, - "trending": 7.64693759843931, - "installs_last_month": 209, + "trending": 4.550325935703255, + "installs_last_month": 213, "isMobileFriendly": false } ], @@ -92151,8 +92151,8 @@ "aarch64" ], "added_at": 1611045618, - "trending": 7.564276664578813, - "installs_last_month": 17840, + "trending": 7.445858503589089, + "installs_last_month": 18401, "isMobileFriendly": false }, { @@ -92328,8 +92328,8 @@ "aarch64" ], "added_at": 1598533911, - "trending": 14.12179709144284, - "installs_last_month": 7806, + "trending": 15.132407262103222, + "installs_last_month": 8043, "isMobileFriendly": true }, { @@ -92551,8 +92551,8 @@ "aarch64" ], "added_at": 1572452136, - "trending": 15.247254379349169, - "installs_last_month": 6234, + "trending": 15.82122430660244, + "installs_last_month": 6547, "isMobileFriendly": true }, { @@ -92818,8 +92818,8 @@ "aarch64" ], "added_at": 1599802166, - "trending": 10.79975560994669, - "installs_last_month": 5416, + "trending": 11.563760379540282, + "installs_last_month": 5685, "isMobileFriendly": false }, { @@ -92874,8 +92874,8 @@ "aarch64" ], "added_at": 1660626708, - "trending": 6.486964279318421, - "installs_last_month": 5158, + "trending": 6.679344181557629, + "installs_last_month": 5298, "isMobileFriendly": false }, { @@ -93095,8 +93095,8 @@ "aarch64" ], "added_at": 1592461919, - "trending": 6.993402128603745, - "installs_last_month": 3576, + "trending": 10.263545417242913, + "installs_last_month": 3656, "isMobileFriendly": false }, { @@ -93132,8 +93132,8 @@ "aarch64" ], "added_at": 1560894139, - "trending": 9.2931285541528, - "installs_last_month": 1357, + "trending": 9.645020421095474, + "installs_last_month": 1412, "isMobileFriendly": false }, { @@ -93178,8 +93178,8 @@ "aarch64" ], "added_at": 1723197944, - "trending": 14.516654619039498, - "installs_last_month": 895, + "trending": 14.359208969186614, + "installs_last_month": 905, "isMobileFriendly": true }, { @@ -93224,8 +93224,8 @@ "aarch64" ], "added_at": 1618816465, - "trending": 8.136675185834669, - "installs_last_month": 678, + "trending": 8.470481819287162, + "installs_last_month": 715, "isMobileFriendly": false }, { @@ -93264,8 +93264,8 @@ "aarch64" ], "added_at": 1674808337, - "trending": 6.707219714166655, - "installs_last_month": 359, + "trending": 8.228028486840387, + "installs_last_month": 357, "isMobileFriendly": false }, { @@ -93306,8 +93306,8 @@ "aarch64" ], "added_at": 1742933295, - "trending": 6.1559668561849, - "installs_last_month": 179, + "trending": 4.344106024036963, + "installs_last_month": 199, "isMobileFriendly": false }, { @@ -93371,8 +93371,8 @@ "aarch64" ], "added_at": 1512478495, - "trending": 10.461261112682624, - "installs_last_month": 156, + "trending": 10.471652981529584, + "installs_last_month": 160, "isMobileFriendly": false } ], @@ -93654,8 +93654,8 @@ "aarch64" ], "added_at": 1510066889, - "trending": 13.40566208060824, - "installs_last_month": 12944, + "trending": 13.517187885183851, + "installs_last_month": 13510, "isMobileFriendly": true }, { @@ -93852,8 +93852,8 @@ "aarch64" ], "added_at": 1597655512, - "trending": 9.754074138833456, - "installs_last_month": 6472, + "trending": 11.568396868809558, + "installs_last_month": 6851, "isMobileFriendly": false }, { @@ -94043,8 +94043,8 @@ "aarch64" ], "added_at": 1621412981, - "trending": 12.311995560273136, - "installs_last_month": 2408, + "trending": 10.27661029206778, + "installs_last_month": 2484, "isMobileFriendly": true }, { @@ -94129,8 +94129,8 @@ "aarch64" ], "added_at": 1645821035, - "trending": 8.99611183297813, - "installs_last_month": 1276, + "trending": 6.3674319393617616, + "installs_last_month": 1344, "isMobileFriendly": false }, { @@ -94223,8 +94223,8 @@ "aarch64" ], "added_at": 1593159164, - "trending": 2.8060518963659944, - "installs_last_month": 1232, + "trending": 3.719107550572408, + "installs_last_month": 1282, "isMobileFriendly": false }, { @@ -94307,8 +94307,8 @@ "aarch64" ], "added_at": 1544216308, - "trending": 1.1682416347847795, - "installs_last_month": 827, + "trending": 1.4778633159436148, + "installs_last_month": 867, "isMobileFriendly": false }, { @@ -94367,8 +94367,8 @@ "aarch64" ], "added_at": 1517830145, - "trending": 15.812030891000353, - "installs_last_month": 477, + "trending": 15.996555743898412, + "installs_last_month": 453, "isMobileFriendly": false }, { @@ -94428,8 +94428,8 @@ "aarch64" ], "added_at": 1544441501, - "trending": 0.7638538894834519, - "installs_last_month": 245, + "trending": -0.08139194291547303, + "installs_last_month": 249, "isMobileFriendly": false }, { @@ -94462,8 +94462,8 @@ "x86_64" ], "added_at": 1711950998, - "trending": 11.11214795972968, - "installs_last_month": 178, + "trending": 9.201909905706904, + "installs_last_month": 180, "isMobileFriendly": false }, { @@ -94501,8 +94501,8 @@ "aarch64" ], "added_at": 1539453306, - "trending": 4.686303948001893, - "installs_last_month": 124, + "trending": 3.2294676875571025, + "installs_last_month": 131, "isMobileFriendly": false }, { @@ -94536,8 +94536,8 @@ "aarch64" ], "added_at": 1724318985, - "trending": 9.56676790298256, - "installs_last_month": 67, + "trending": 8.016740313701908, + "installs_last_month": 76, "isMobileFriendly": false }, { @@ -94571,8 +94571,8 @@ "aarch64" ], "added_at": 1694075241, - "trending": 7.959151222964892, - "installs_last_month": 53, + "trending": 8.638116109187914, + "installs_last_month": 60, "isMobileFriendly": false }, { @@ -94606,8 +94606,8 @@ "aarch64" ], "added_at": 1725340957, - "trending": 6.718960638085551, - "installs_last_month": 45, + "trending": 6.733004275337119, + "installs_last_month": 48, "isMobileFriendly": false } ], @@ -94866,8 +94866,8 @@ "aarch64" ], "added_at": 1508225093, - "trending": 13.807025391348178, - "installs_last_month": 5650, + "trending": 13.85073399132357, + "installs_last_month": 5896, "isMobileFriendly": true }, { @@ -95058,8 +95058,8 @@ "aarch64" ], "added_at": 1623400439, - "trending": 11.179452260857367, - "installs_last_month": 2758, + "trending": 13.6004567861891, + "installs_last_month": 2904, "isMobileFriendly": true }, { @@ -95093,8 +95093,8 @@ "aarch64" ], "added_at": 1652852226, - "trending": 4.846002453974245, - "installs_last_month": 604, + "trending": 2.450680568942507, + "installs_last_month": 649, "isMobileFriendly": false }, { @@ -95247,8 +95247,8 @@ "aarch64" ], "added_at": 1653507934, - "trending": 13.172415080637895, - "installs_last_month": 257, + "trending": 13.982929032346066, + "installs_last_month": 253, "isMobileFriendly": false }, { @@ -95285,8 +95285,8 @@ "aarch64" ], "added_at": 1739629338, - "trending": 7.322142763892804, - "installs_last_month": 118, + "trending": 9.306576490168425, + "installs_last_month": 116, "isMobileFriendly": false }, { @@ -95328,8 +95328,8 @@ "aarch64" ], "added_at": 1675758936, - "trending": 6.567909575800989, - "installs_last_month": 97, + "trending": 7.086503624888657, + "installs_last_month": 95, "isMobileFriendly": false }, { @@ -95373,8 +95373,8 @@ "aarch64" ], "added_at": 1712518071, - "trending": 12.198071665283186, - "installs_last_month": 80, + "trending": 11.893378479624534, + "installs_last_month": 87, "isMobileFriendly": false } ], @@ -95430,8 +95430,8 @@ "aarch64" ], "added_at": 1611045618, - "trending": 7.564276664578813, - "installs_last_month": 17840, + "trending": 7.445858503589089, + "installs_last_month": 18401, "isMobileFriendly": false }, { @@ -95697,8 +95697,8 @@ "aarch64" ], "added_at": 1599802166, - "trending": 10.79975560994669, - "installs_last_month": 5416, + "trending": 11.563760379540282, + "installs_last_month": 5685, "isMobileFriendly": false }, { @@ -95753,8 +95753,8 @@ "aarch64" ], "added_at": 1660626708, - "trending": 6.486964279318421, - "installs_last_month": 5158, + "trending": 6.679344181557629, + "installs_last_month": 5298, "isMobileFriendly": false }, { @@ -95974,8 +95974,8 @@ "aarch64" ], "added_at": 1592461919, - "trending": 6.993402128603745, - "installs_last_month": 3576, + "trending": 10.263545417242913, + "installs_last_month": 3656, "isMobileFriendly": false }, { @@ -96020,8 +96020,8 @@ "aarch64" ], "added_at": 1618816465, - "trending": 8.136675185834669, - "installs_last_month": 678, + "trending": 8.470481819287162, + "installs_last_month": 715, "isMobileFriendly": false } ], @@ -96086,8 +96086,8 @@ "aarch64" ], "added_at": 1727178326, - "trending": 12.80167239283237, - "installs_last_month": 6625, + "trending": 14.13624548749224, + "installs_last_month": 6596, "isMobileFriendly": true }, { @@ -96136,8 +96136,8 @@ "x86_64" ], "added_at": 1675758779, - "trending": 12.086064167069528, - "installs_last_month": 3235, + "trending": 14.39521248325016, + "installs_last_month": 3283, "isMobileFriendly": false }, { @@ -96239,8 +96239,8 @@ "aarch64" ], "added_at": 1641590179, - "trending": 14.615017122467965, - "installs_last_month": 2589, + "trending": 17.016121069413504, + "installs_last_month": 2697, "isMobileFriendly": true }, { @@ -96273,8 +96273,8 @@ "x86_64" ], "added_at": 1683098866, - "trending": 10.691945549000078, - "installs_last_month": 1744, + "trending": 12.543845991039202, + "installs_last_month": 1804, "isMobileFriendly": false }, { @@ -96308,8 +96308,8 @@ "aarch64" ], "added_at": 1724319264, - "trending": 11.375585259985842, - "installs_last_month": 1278, + "trending": 13.35656818100313, + "installs_last_month": 1304, "isMobileFriendly": false }, { @@ -96354,8 +96354,8 @@ "aarch64" ], "added_at": 1618816465, - "trending": 8.136675185834669, - "installs_last_month": 678, + "trending": 8.470481819287162, + "installs_last_month": 715, "isMobileFriendly": false }, { @@ -96394,8 +96394,8 @@ "x86_64" ], "added_at": 1702298632, - "trending": 2.6149624347430427, - "installs_last_month": 518, + "trending": 1.9747154337058088, + "installs_last_month": 546, "isMobileFriendly": false }, { @@ -96429,8 +96429,8 @@ "aarch64" ], "added_at": 1660626546, - "trending": 10.584195120067442, - "installs_last_month": 201, + "trending": 9.699519739610675, + "installs_last_month": 195, "isMobileFriendly": false }, { @@ -96469,8 +96469,8 @@ "aarch64" ], "added_at": 1684146098, - "trending": 1.348654781586102, - "installs_last_month": 82, + "trending": 0.4990966862658399, + "installs_last_month": 95, "isMobileFriendly": false }, { @@ -96504,8 +96504,8 @@ "aarch64" ], "added_at": 1559220964, - "trending": 6.119276968879713, - "installs_last_month": 71, + "trending": 6.018960375304985, + "installs_last_month": 78, "isMobileFriendly": false }, { @@ -96565,8 +96565,8 @@ "aarch64" ], "added_at": 1689022038, - "trending": 11.471093465579802, - "installs_last_month": 36, + "trending": 11.467277445913725, + "installs_last_month": 38, "isMobileFriendly": false } ], @@ -96616,8 +96616,8 @@ "aarch64" ], "added_at": 1647245093, - "trending": 4.947827512073383, - "installs_last_month": 825, + "trending": 5.641649821812381, + "installs_last_month": 852, "isMobileFriendly": false }, { @@ -96650,8 +96650,8 @@ "x86_64" ], "added_at": 1722669481, - "trending": 3.5684792132810235, - "installs_last_month": 415, + "trending": 5.4812262289119005, + "installs_last_month": 419, "isMobileFriendly": false } ], @@ -96888,8 +96888,8 @@ "aarch64" ], "added_at": 1630177081, - "trending": 12.452254195820863, - "installs_last_month": 8807, + "trending": 12.680851864289464, + "installs_last_month": 9247, "isMobileFriendly": true }, { @@ -97109,8 +97109,8 @@ "aarch64" ], "added_at": 1726268078, - "trending": 10.420628823235944, - "installs_last_month": 5070, + "trending": 13.518773102465971, + "installs_last_month": 5214, "isMobileFriendly": false }, { @@ -97144,8 +97144,8 @@ "aarch64" ], "added_at": 1650370042, - "trending": 9.640098269407275, - "installs_last_month": 4219, + "trending": 11.014126932964984, + "installs_last_month": 4501, "isMobileFriendly": false }, { @@ -97182,8 +97182,8 @@ "aarch64" ], "added_at": 1545057431, - "trending": 5.624919277060531, - "installs_last_month": 3666, + "trending": 6.281980559756061, + "installs_last_month": 3727, "isMobileFriendly": false }, { @@ -97400,8 +97400,8 @@ "aarch64" ], "added_at": 1501514709, - "trending": 8.990433110427672, - "installs_last_month": 2735, + "trending": 11.716943202144234, + "installs_last_month": 2814, "isMobileFriendly": false }, { @@ -97439,8 +97439,8 @@ "aarch64" ], "added_at": 1612472407, - "trending": 7.486361548966417, - "installs_last_month": 2292, + "trending": 7.885953454706525, + "installs_last_month": 2338, "isMobileFriendly": false }, { @@ -97553,119 +97553,10 @@ "aarch64" ], "added_at": 1705654617, - "trending": 14.055339140122204, - "installs_last_month": 2100, + "trending": 14.358135729188785, + "installs_last_month": 2173, "isMobileFriendly": true }, - { - "name": "Folio", - "keywords": [ - "Notebook", - "Note", - "Notes", - "Text", - "Markdown", - "Notepad", - "Write", - "School", - "Post-it", - "Sticky" - ], - "summary": "Beautiful markdown note-taking app", - "description": "Create notebooks and take notes in markdown\n Some features include:\n \n Almost WYSIWYG markdown rendering\n Searchable through GNOME search\n Highlight and strikethrough text formatting\n App themeing based on notebook color\n Trash can\n Markdown document\n Optional line numbers\n Optional auto save\n Open links with Control-Click\n Link to other notes in Folio\n Automatically create links for bare URL's and e-mail addresses\n \n ", - "id": "com_toolstack_Folio", - "type": "desktop-application", - "translations": { - "ar": { - "description": "أنشِئ الدفاتر، ودوِّن الملاحظات بـ«ماركداون»\n بعض المزايا تتضمن:\n \n تَصْيير ما تراه هو ما تحصل عليه (WYSIWYG) جزئي لـ«ماركداون»\n قابل للبحث من خلال بحث جنوم\n تنسيق الإبراز والخط الوسطي للنص\n سمة التطبيق استنادًا إلى لون الدفتر\n سلة المهملات\n مستند ماركداون\n أرقام أسطر اختيارية\n حفظ آلي اختياري\n فتح الروابط من خلال التحكم بالضغط\n الربط بالملاحظات الأخرى في «مطوية»\n إنشاء الروابط آليًا للمسارات وعناوين البريد الإلكتروني\n \n " - }, - "ca": { - "description": "\n Renderizatge casi perfecte de markdown\n Cercable traves de cerca de GNOME\n Paperera\n Document markdown\n \n " - }, - "cs": { - "description": "Vytvářejte sešity a dělejte si poznámky v markdown\n Mezi některé funkce patří:\n \n Téměř WYSIWYG vykreslování markdown\n Lze prohledávat pomocí vyhledávání v GNOME\n Formátování textu zvýrazněním a přeškrtnutím\n Motiv aplikace založený na barvě sešitu\n Koš\n Dokument Markdown\n Volitelná čísla řádků\n Volitelné automatické ukládání\n Odkazy otevřete pomocí klávesy CTRL a kliknutí\n Odkaz na další poznámky v aplikaci Folio\n Automaticky vytvářet odkazy pro URL a e-mailové adresy\n \n ", - "summary": "Krásná aplikace na psaní poznámek v markdown" - }, - "de": { - "description": "\n Beinahe vollständige Echtbilddarstellung (WYSIWYG) von Markdown\n Durchsuchbar mit der GNOME-Suche\n Papierkorb\n Markdown-Dokument\n \n " - }, - "es": { - "description": "\n Renderizado casi perfecto de Markdown\n Rastreable a través de la búsqueda de GNOME\n Papelera\n Documento Markdown\n \n " - }, - "fa": { - "description": "\n پردازش تقریباً ویزی‌ویگ مارک‌دون\n جست‌وجوپذیر از جست‌وجوی گنوم\n زباله‌دان\n سند مارک‌دون\n \n " - }, - "fi": { - "description": "\n Lähes WYSIWYG-tason Markdown-editori\n muistiinpanoja voi hakea GNOME:n haulla\n Roskakori\n Markdown-tiedosto\n \n " - }, - "fr": { - "description": "Créez des carnets de notes et prenez des notes en markdown\n Quelques fonctionnalités inclues :\n \n Rendu Markdown instantanné\n Recherche possible directement sur le bureau GNOME\n Mise en forme du texte en surbrillance et en barré\n Coloration de l’application selon la couleur du carnet de notes\n Corbeille\n Document Markdown\n Numérotation des lignes optionnelle\n Enregistrement automatique optionnel\n Ouverture des liens avec Ctrl + Clic\n Lien vers d’autres notes dans Folio\n Création automatique de liens pour les adresses URL et e-mail\n \n ", - "summary": "Une belle application de prise de notes markdown" - }, - "hi": { - "description": "\n लगभग WYSIWYG मार्कडाउन प्रतिपादन\n GNOME खोज के माध्यम से खोजा जा सकता है\n हाइलाइट और स्ट्राइकथ्रू पाठ प्रारूपण\n नोटबुक रंग पर आधारित ऐप थीम\n कूड़ेदान\n \n " - }, - "it": { - "description": "\n Rendering del markdown fedele\n Ricerca direttamente dal desktop GNOME\n Evidenzia e barra la formattazione del testo\n Temi dell'app basati sul colore del taccuino\n Cestino\n Documento markdown\n \n " - }, - "ko": { - "description": "\n 대부분의 WYSIWYG 마크다운 렌더링\n 그놈 검색을 통해 검색 가능\n 휴지통\n 마크다운 문서\n \n " - }, - "nb": { - "description": "\n Nesten WYSIWYG Markdown-gjengivelse\n Søkbar med GNOME-søk\n Fremhev og gjennomstrek tekst\n Appdrakt basert på notisbokfarge\n Papirkurv\n \n " - }, - "oc": { - "description": "\n Gaireben un rendut WYSIWYG markdown\n Trobable via GNOME search\n Bordilhièr\n Document Markdown\n \n " - }, - "pl": { - "description": "\n To co widzisz jest tym co otrzymasz - czytelne formatowanie z Markdown\n Możliwość wyszukiwania treści przez wyszukiwanie GNOME\n Kosz na śmieci\n Dokument Markdown\n \n " - }, - "pt-BR": { - "description": "Crie cadernos e tome notas em Markdown\n Suas funcionalidades incluem:\n \n Renderização de Markdown quase WYSIWYG\n Pesquisável por meio da pesquisa do GNOME\n Formatação com opção de texto destacado e tachado\n Tematização do aplicativo com base na cor de cada caderno\n Lixeira\n Documento markdown\n Números de linha opcionais\n Salvamento automático opcional\n Abrir links com Ctrl + clique\n Criar links para outras notas no Folio\n Criar automaticamente links para URLs e endereços de e-mail escritos como texto\n \n ", - "summary": "Lindo app de notas em Markdown" - }, - "ru": { - "description": "Создавайте блокноты и делайте заметки в формате Markdown\n Некоторые возможности включают:\n \n Рендеринг markdown почти как WYSIWYG\n Доступен для поиска через поиск GNOME\n Форматирование текста с помощью выделения и зачёркивания\n Оформление темы приложения в зависимости от цвета блокнота\n Мусорная корзина\n Документ markdown\n Возможность нумерации строк\n Возможность автосохранения\n Открытие ссылок щелчком при нажатой клавише Control\n Ссылка на другие заметки в Folio\n Автоматическое создание ссылок для URL- и e-mail-адресов\n \n ", - "summary": "Отличное приложение для создания заметок в формате Markdown" - }, - "tr": { - "description": "Not defterleri oluşturun, markdown ile not alın\n Kimi özelikleri:\n \n Neredeyse WYSIWYG markdown oluşturma\n GNOME aramasıyla aranabilir\n Vurgulama ve üstünü çizme\n Not defteri rengine göre uygulama renklendirme\n Çöp kutusu\n Markdown belgesi\n İsteğe bağlı satır numaraları\n İsteğe bağlı kendiliğinden kayıt\n Ctrl tıklama ile bağlantıları açma\n Folio içindeki diğer notlara bağlantı\n Temel URL ve e-posta adreslerinden kendiliğinden bağlantılar oluştur\n \n ", - "summary": "Güzel markdown not alma uygulaması" - }, - "uk": { - "description": "\n Рендеринг markdown майже як WYSIWYG\n Можливий для пошуку через пошук GNOME\n Смітник\n Документ Markdown\n \n " - }, - "zh-Hans": { - "description": "\n 所见即所得 markdown 渲染\n GNOME search 可搜索\n 垃圾桶\n Markdown 文件\n \n " - } - }, - "project_license": "GPL-3.0+", - "is_free_license": true, - "app_id": "com.toolstack.Folio", - "icon": "https://dl.flathub.org/media/com/toolstack/Folio/7338a8166d26c31010f720ec3d71ad78/icons/128x128/com.toolstack.Folio.png", - "main_categories": "utility", - "sub_categories": [ - "TextEditor" - ], - "developer_name": "Greg Ross", - "verification_verified": true, - "verification_method": "website", - "verification_login_name": null, - "verification_login_provider": null, - "verification_login_is_organization": "false", - "verification_website": "toolstack.com", - "verification_timestamp": "1709428437", - "runtime": "org.gnome.Platform/x86_64/47", - "updated_at": 1738717920, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1709408532, - "trending": 13.11208911121074, - "installs_last_month": 1506, - "isMobileFriendly": false - }, { "name": "KWrite", "keywords": [ @@ -97889,8 +97780,117 @@ "aarch64" ], "added_at": 1594483705, - "trending": 12.28752971665036, - "installs_last_month": 1415, + "trending": 13.809645266433556, + "installs_last_month": 1528, + "isMobileFriendly": false + }, + { + "name": "Folio", + "keywords": [ + "Notebook", + "Note", + "Notes", + "Text", + "Markdown", + "Notepad", + "Write", + "School", + "Post-it", + "Sticky" + ], + "summary": "Beautiful markdown note-taking app", + "description": "Create notebooks and take notes in markdown\n Some features include:\n \n Almost WYSIWYG markdown rendering\n Searchable through GNOME search\n Highlight and strikethrough text formatting\n App themeing based on notebook color\n Trash can\n Markdown document\n Optional line numbers\n Optional auto save\n Open links with Control-Click\n Link to other notes in Folio\n Automatically create links for bare URL's and e-mail addresses\n \n ", + "id": "com_toolstack_Folio", + "type": "desktop-application", + "translations": { + "ar": { + "description": "أنشِئ الدفاتر، ودوِّن الملاحظات بـ«ماركداون»\n بعض المزايا تتضمن:\n \n تَصْيير ما تراه هو ما تحصل عليه (WYSIWYG) جزئي لـ«ماركداون»\n قابل للبحث من خلال بحث جنوم\n تنسيق الإبراز والخط الوسطي للنص\n سمة التطبيق استنادًا إلى لون الدفتر\n سلة المهملات\n مستند ماركداون\n أرقام أسطر اختيارية\n حفظ آلي اختياري\n فتح الروابط من خلال التحكم بالضغط\n الربط بالملاحظات الأخرى في «مطوية»\n إنشاء الروابط آليًا للمسارات وعناوين البريد الإلكتروني\n \n " + }, + "ca": { + "description": "\n Renderizatge casi perfecte de markdown\n Cercable traves de cerca de GNOME\n Paperera\n Document markdown\n \n " + }, + "cs": { + "description": "Vytvářejte sešity a dělejte si poznámky v markdown\n Mezi některé funkce patří:\n \n Téměř WYSIWYG vykreslování markdown\n Lze prohledávat pomocí vyhledávání v GNOME\n Formátování textu zvýrazněním a přeškrtnutím\n Motiv aplikace založený na barvě sešitu\n Koš\n Dokument Markdown\n Volitelná čísla řádků\n Volitelné automatické ukládání\n Odkazy otevřete pomocí klávesy CTRL a kliknutí\n Odkaz na další poznámky v aplikaci Folio\n Automaticky vytvářet odkazy pro URL a e-mailové adresy\n \n ", + "summary": "Krásná aplikace na psaní poznámek v markdown" + }, + "de": { + "description": "\n Beinahe vollständige Echtbilddarstellung (WYSIWYG) von Markdown\n Durchsuchbar mit der GNOME-Suche\n Papierkorb\n Markdown-Dokument\n \n " + }, + "es": { + "description": "\n Renderizado casi perfecto de Markdown\n Rastreable a través de la búsqueda de GNOME\n Papelera\n Documento Markdown\n \n " + }, + "fa": { + "description": "\n پردازش تقریباً ویزی‌ویگ مارک‌دون\n جست‌وجوپذیر از جست‌وجوی گنوم\n زباله‌دان\n سند مارک‌دون\n \n " + }, + "fi": { + "description": "\n Lähes WYSIWYG-tason Markdown-editori\n muistiinpanoja voi hakea GNOME:n haulla\n Roskakori\n Markdown-tiedosto\n \n " + }, + "fr": { + "description": "Créez des carnets de notes et prenez des notes en markdown\n Quelques fonctionnalités inclues :\n \n Rendu Markdown instantanné\n Recherche possible directement sur le bureau GNOME\n Mise en forme du texte en surbrillance et en barré\n Coloration de l’application selon la couleur du carnet de notes\n Corbeille\n Document Markdown\n Numérotation des lignes optionnelle\n Enregistrement automatique optionnel\n Ouverture des liens avec Ctrl + Clic\n Lien vers d’autres notes dans Folio\n Création automatique de liens pour les adresses URL et e-mail\n \n ", + "summary": "Une belle application de prise de notes markdown" + }, + "hi": { + "description": "\n लगभग WYSIWYG मार्कडाउन प्रतिपादन\n GNOME खोज के माध्यम से खोजा जा सकता है\n हाइलाइट और स्ट्राइकथ्रू पाठ प्रारूपण\n नोटबुक रंग पर आधारित ऐप थीम\n कूड़ेदान\n \n " + }, + "it": { + "description": "\n Rendering del markdown fedele\n Ricerca direttamente dal desktop GNOME\n Evidenzia e barra la formattazione del testo\n Temi dell'app basati sul colore del taccuino\n Cestino\n Documento markdown\n \n " + }, + "ko": { + "description": "\n 대부분의 WYSIWYG 마크다운 렌더링\n 그놈 검색을 통해 검색 가능\n 휴지통\n 마크다운 문서\n \n " + }, + "nb": { + "description": "\n Nesten WYSIWYG Markdown-gjengivelse\n Søkbar med GNOME-søk\n Fremhev og gjennomstrek tekst\n Appdrakt basert på notisbokfarge\n Papirkurv\n \n " + }, + "oc": { + "description": "\n Gaireben un rendut WYSIWYG markdown\n Trobable via GNOME search\n Bordilhièr\n Document Markdown\n \n " + }, + "pl": { + "description": "\n To co widzisz jest tym co otrzymasz - czytelne formatowanie z Markdown\n Możliwość wyszukiwania treści przez wyszukiwanie GNOME\n Kosz na śmieci\n Dokument Markdown\n \n " + }, + "pt-BR": { + "description": "Crie cadernos e tome notas em Markdown\n Suas funcionalidades incluem:\n \n Renderização de Markdown quase WYSIWYG\n Pesquisável por meio da pesquisa do GNOME\n Formatação com opção de texto destacado e tachado\n Tematização do aplicativo com base na cor de cada caderno\n Lixeira\n Documento markdown\n Números de linha opcionais\n Salvamento automático opcional\n Abrir links com Ctrl + clique\n Criar links para outras notas no Folio\n Criar automaticamente links para URLs e endereços de e-mail escritos como texto\n \n ", + "summary": "Lindo app de notas em Markdown" + }, + "ru": { + "description": "Создавайте блокноты и делайте заметки в формате Markdown\n Некоторые возможности включают:\n \n Рендеринг markdown почти как WYSIWYG\n Доступен для поиска через поиск GNOME\n Форматирование текста с помощью выделения и зачёркивания\n Оформление темы приложения в зависимости от цвета блокнота\n Мусорная корзина\n Документ markdown\n Возможность нумерации строк\n Возможность автосохранения\n Открытие ссылок щелчком при нажатой клавише Control\n Ссылка на другие заметки в Folio\n Автоматическое создание ссылок для URL- и e-mail-адресов\n \n ", + "summary": "Отличное приложение для создания заметок в формате Markdown" + }, + "tr": { + "description": "Not defterleri oluşturun, markdown ile not alın\n Kimi özelikleri:\n \n Neredeyse WYSIWYG markdown oluşturma\n GNOME aramasıyla aranabilir\n Vurgulama ve üstünü çizme\n Not defteri rengine göre uygulama renklendirme\n Çöp kutusu\n Markdown belgesi\n İsteğe bağlı satır numaraları\n İsteğe bağlı kendiliğinden kayıt\n Ctrl tıklama ile bağlantıları açma\n Folio içindeki diğer notlara bağlantı\n Temel URL ve e-posta adreslerinden kendiliğinden bağlantılar oluştur\n \n ", + "summary": "Güzel markdown not alma uygulaması" + }, + "uk": { + "description": "\n Рендеринг markdown майже як WYSIWYG\n Можливий для пошуку через пошук GNOME\n Смітник\n Документ Markdown\n \n " + }, + "zh-Hans": { + "description": "\n 所见即所得 markdown 渲染\n GNOME search 可搜索\n 垃圾桶\n Markdown 文件\n \n " + } + }, + "project_license": "GPL-3.0+", + "is_free_license": true, + "app_id": "com.toolstack.Folio", + "icon": "https://dl.flathub.org/media/com/toolstack/Folio/7338a8166d26c31010f720ec3d71ad78/icons/128x128/com.toolstack.Folio.png", + "main_categories": "utility", + "sub_categories": [ + "TextEditor" + ], + "developer_name": "Greg Ross", + "verification_verified": true, + "verification_method": "website", + "verification_login_name": null, + "verification_login_provider": null, + "verification_login_is_organization": "false", + "verification_website": "toolstack.com", + "verification_timestamp": "1709428437", + "runtime": "org.gnome.Platform/x86_64/47", + "updated_at": 1738717920, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1709408532, + "trending": 14.74203359086106, + "installs_last_month": 1527, "isMobileFriendly": false }, { @@ -97927,8 +97927,8 @@ "aarch64" ], "added_at": 1517396035, - "trending": 7.968630598042588, - "installs_last_month": 1316, + "trending": 9.914144293810022, + "installs_last_month": 1340, "isMobileFriendly": false }, { @@ -97967,8 +97967,8 @@ "aarch64" ], "added_at": 1529345413, - "trending": 9.864809996881489, - "installs_last_month": 1147, + "trending": 12.091449409544394, + "installs_last_month": 1210, "isMobileFriendly": false }, { @@ -98012,8 +98012,8 @@ "aarch64" ], "added_at": 1672995474, - "trending": 8.804493045372512, - "installs_last_month": 1024, + "trending": 5.814444909508971, + "installs_last_month": 1054, "isMobileFriendly": false }, { @@ -98107,8 +98107,8 @@ "aarch64" ], "added_at": 1648060518, - "trending": 12.366878121878134, - "installs_last_month": 762, + "trending": 12.72412888703018, + "installs_last_month": 783, "isMobileFriendly": false }, { @@ -98317,8 +98317,8 @@ "aarch64" ], "added_at": 1632425353, - "trending": 9.661370779348497, - "installs_last_month": 671, + "trending": 8.159418257540958, + "installs_last_month": 722, "isMobileFriendly": false }, { @@ -98360,8 +98360,8 @@ "aarch64" ], "added_at": 1521651121, - "trending": 2.2777142538764066, - "installs_last_month": 646, + "trending": 3.049918882711271, + "installs_last_month": 669, "isMobileFriendly": false }, { @@ -98398,8 +98398,8 @@ "aarch64" ], "added_at": 1731213642, - "trending": 2.6191425192184807, - "installs_last_month": 583, + "trending": 1.9338687534602308, + "installs_last_month": 608, "isMobileFriendly": false }, { @@ -98448,46 +98448,8 @@ "aarch64" ], "added_at": 1568102336, - "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, + "trending": 8.429829745727009, + "installs_last_month": 528, "isMobileFriendly": false }, { @@ -98552,8 +98514,46 @@ "aarch64" ], "added_at": 1712517656, - "trending": 15.152676733158684, - "installs_last_month": 506, + "trending": 14.478812014362983, + "installs_last_month": 527, + "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.2406513785376666, + "installs_last_month": 516, "isMobileFriendly": false }, { @@ -98586,43 +98586,8 @@ "x86_64" ], "added_at": 1651738162, - "trending": 8.90569025833377, - "installs_last_month": 386, - "isMobileFriendly": false - }, - { - "name": "ecode", - "keywords": null, - "summary": "Lightweight multi-platform code editor designed for modern hardware with a focus on responsiveness and performance", - "description": "\n ecode is a lightweight multi-platform code editor designed for modern hardware with a\n focus on responsiveness and performance. It has been developed with the\n hardware-accelerated eepp GUI, which provides the core technology for the editor. The\n project comes as the first serious project using the eepp GUI, and it's currently being\n developed to improve the eepp GUI library as part of one of its main objectives.\n \n ", - "id": "dev_ensoft_ecode", - "type": "desktop-application", - "translations": {}, - "project_license": "MIT", - "is_free_license": true, - "app_id": "dev.ensoft.ecode", - "icon": "https://dl.flathub.org/media/dev/ensoft/ecode/55c17b3f6426a9ae5418af689b8f37cb/icons/128x128/dev.ensoft.ecode.png", - "main_categories": "utility", - "sub_categories": [ - "TextEditor" - ], - "developer_name": "Martín Lucas Golini", - "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": 1743314616, - "arches": [ - "x86_64", - "aarch64" - ], - "added_at": 1676449202, - "trending": 7.376402073067035, - "installs_last_month": 191, + "trending": 6.913298524371564, + "installs_last_month": 396, "isMobileFriendly": false }, { @@ -98656,8 +98621,43 @@ "aarch64" ], "added_at": 1740295968, - "trending": 0.250489109666026, - "installs_last_month": 180, + "trending": 0.6517727317814924, + "installs_last_month": 188, + "isMobileFriendly": false + }, + { + "name": "ecode", + "keywords": null, + "summary": "Lightweight multi-platform code editor designed for modern hardware with a focus on responsiveness and performance", + "description": "\n ecode is a lightweight multi-platform code editor designed for modern hardware with a\n focus on responsiveness and performance. It has been developed with the\n hardware-accelerated eepp GUI, which provides the core technology for the editor. The\n project comes as the first serious project using the eepp GUI, and it's currently being\n developed to improve the eepp GUI library as part of one of its main objectives.\n \n ", + "id": "dev_ensoft_ecode", + "type": "desktop-application", + "translations": {}, + "project_license": "MIT", + "is_free_license": true, + "app_id": "dev.ensoft.ecode", + "icon": "https://dl.flathub.org/media/dev/ensoft/ecode/55c17b3f6426a9ae5418af689b8f37cb/icons/128x128/dev.ensoft.ecode.png", + "main_categories": "utility", + "sub_categories": [ + "TextEditor" + ], + "developer_name": "Martín Lucas Golini", + "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": 1743314616, + "arches": [ + "x86_64", + "aarch64" + ], + "added_at": 1676449202, + "trending": 8.392758405020174, + "installs_last_month": 187, "isMobileFriendly": false }, { @@ -98691,8 +98691,8 @@ "aarch64" ], "added_at": 1680597461, - "trending": 1.1759977633884693, - "installs_last_month": 146, + "trending": 0.8445502960660037, + "installs_last_month": 151, "isMobileFriendly": false }, { @@ -98734,8 +98734,8 @@ "aarch64" ], "added_at": 1618816783, - "trending": 1.4299744319638268, - "installs_last_month": 122, + "trending": 0.6167010385048126, + "installs_last_month": 129, "isMobileFriendly": false }, { @@ -98773,7 +98773,7 @@ ], "added_at": 1539453265, "trending": 11.552784998381258, - "installs_last_month": 91, + "installs_last_month": 100, "isMobileFriendly": false }, { @@ -98819,7 +98819,7 @@ ], "added_at": 1716271135, "trending": 7.757581928399583, - "installs_last_month": 71, + "installs_last_month": 67, "isMobileFriendly": false }, { @@ -98881,8 +98881,8 @@ "aarch64" ], "added_at": 1675684562, - "trending": 8.37187584358851, - "installs_last_month": 46, + "trending": 6.984540932237928, + "installs_last_month": 48, "isMobileFriendly": false }, { @@ -98987,7 +98987,7 @@ ], "added_at": 1565983830, "trending": 11.66816748544458, - "installs_last_month": 39, + "installs_last_month": 40, "isMobileFriendly": false } ], @@ -99039,8 +99039,8 @@ "aarch64" ], "added_at": 1612472407, - "trending": 7.486361548966417, - "installs_last_month": 2292, + "trending": 7.885953454706525, + "installs_last_month": 2338, "isMobileFriendly": false }, { @@ -99153,8 +99153,8 @@ "aarch64" ], "added_at": 1705654617, - "trending": 14.055339140122204, - "installs_last_month": 2100, + "trending": 14.358135729188785, + "installs_last_month": 2173, "isMobileFriendly": true }, { @@ -99239,8 +99239,8 @@ "aarch64" ], "added_at": 1716967099, - "trending": 13.942716196320918, - "installs_last_month": 1614, + "trending": 14.289026684338484, + "installs_last_month": 1638, "isMobileFriendly": true }, { @@ -99278,8 +99278,8 @@ "aarch64" ], "added_at": 1721209624, - "trending": 14.844113751378655, - "installs_last_month": 1561, + "trending": 18.813702099915623, + "installs_last_month": 1605, "isMobileFriendly": false }, { @@ -99358,48 +99358,10 @@ "aarch64" ], "added_at": 1715582157, - "trending": 14.24792148983823, - "installs_last_month": 885, + "trending": 15.421968460733794, + "installs_last_month": 920, "isMobileFriendly": true }, - { - "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 - }, { "name": "Buffer", "keywords": [ @@ -99462,8 +99424,46 @@ "aarch64" ], "added_at": 1712517656, - "trending": 15.152676733158684, - "installs_last_month": 506, + "trending": 14.478812014362983, + "installs_last_month": 527, + "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.2406513785376666, + "installs_last_month": 516, "isMobileFriendly": false }, { @@ -99501,8 +99501,8 @@ "aarch64" ], "added_at": 1737899884, - "trending": 9.981049654502325, - "installs_last_month": 208, + "trending": 6.378540899622373, + "installs_last_month": 217, "isMobileFriendly": false }, { @@ -99536,8 +99536,8 @@ "aarch64" ], "added_at": 1692420724, - "trending": 7.376490271718718, - "installs_last_month": 153, + "trending": 6.1807002213771485, + "installs_last_month": 158, "isMobileFriendly": false }, { @@ -99628,7 +99628,7 @@ } ], "query": "", - "processingTimeMs": 3, + "processingTimeMs": 4, "hitsPerPage": 250, "page": 1, "totalPages": 1,