Skip to content

Commit 3945afa

Browse files
committed
feat: update version to 0.4.1 across all manifests and configuration files; enhance Instagram download handling and permissions management
1 parent 554e5c3 commit 3945afa

9 files changed

Lines changed: 14 additions & 9 deletions

File tree

browser-extension/chrome/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "OmniGet",
44
"description": "Detect supported media pages and send them to OmniGet with one click.",
5-
"version": "0.2.0",
5+
"version": "0.3.0",
66
"default_locale": "en",
77
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ribk9X5HR4XBloFk2g/V6kjICK8XWYC/QqrGFTOjKkRhRNDJr8Z14JFLggvWBbrj0D/zYdd5CfHJG01bGWMZC0hxRtm71q5Pbu1jtChEfE4QO/xWvM8WfrXH895nJFcUzxi137eoWq+FtSGxqFnSl6IXg5EZdgYH5LN3t6kL0HTwKnJLB3/8d4JD1uF2tQxHzii+MosIozKyDatqtEaBLprY1gfAfCwfY8Iqr9yehFUm7IDH+TGwjE17GJY1ZhfkpNBRmH/h23hwyk6coocSsWpM9GbCFdBX22iUnZjxZqACO1n+8xw2364Lznqtuot4iawznQGF4ALL7CbIvHPOQIDAQAB",
88
"permissions": [

browser-extension/firefox/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "OmniGet",
44
"description": "Detect supported media pages and send them to OmniGet with one click.",
5-
"version": "0.2.0",
5+
"version": "0.3.0",
66
"default_locale": "en",
77
"browser_specific_settings": {
88
"gecko": {

flatpak/wtf.tonho.omniget.metainfo.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@
4242
</branding>
4343
<content_rating type="oars-1.1" />
4444
<releases>
45+
<release version="0.4.1" date="2026-04-13">
46+
<description>
47+
<p>Fix Instagram downloads failing with "Server returned HTML instead of media" when the primary extractors fell back to yt-dlp. The browser extension now requests wildcard host permissions only when the media sniffer is enabled, ships with an explicit allowlist for 13 supported platforms, and distinguishes the two popup toggles (open app vs. media detection) with separate icons. Native host logging redacts cookie values; cookie-domain mappings are now data-driven.</p>
48+
</description>
49+
</release>
4550
<release version="0.4.0" date="2026-04-05">
4651
<description>
4752
<p>Plugin system release: courses, telegram, and convert plugins now ship independently via Marketplace. Version 0.4.0 enables the new plugin architecture.</p>

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "omniget",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "",
55
"type": "module",
66
"packageManager": "pnpm@10.29.3",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resolver = "2"
44

55
[package]
66
name = "omniget"
7-
version = "0.4.0"
7+
version = "0.4.1"
88
description = "A Tauri App"
99
authors = ["you"]
1010
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "omniget",
4-
"version": "0.4.0",
4+
"version": "0.4.1",
55
"identifier": "wtf.tonho.omniget",
66
"build": {
77
"beforeDevCommand": "pnpm plugins:deploy && pnpm dev",

src/routes/about/project/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { t } from "$lib/i18n";
44
55
const GITHUB_URL = "https://github.com/tonhowtf/omniget";
6-
const APP_VERSION = "0.4.0";
6+
const APP_VERSION = "0.4.1";
77
88
async function openGitHub() {
99
await open(GITHUB_URL);

0 commit comments

Comments
 (0)