diff --git a/ci/src/updater.py b/ci/src/updater.py index f41f6dfcc..8ca18f1f0 100644 --- a/ci/src/updater.py +++ b/ci/src/updater.py @@ -1,7 +1,9 @@ # -*-coding: utf-8 -*- import asyncio import aiohttp +from zipfile import ZipFile import re +from io import BytesIO from typing import List from os import getenv from sys import argv @@ -68,14 +70,29 @@ async def batch_github_plugin_info( browser_download_url or assets[0]["browser_download_url"] ) - if webhook_url: - await send_notification( - info, - clean(latest_rel["tag_name"], "v"), - latest_rel, - webhook_url, + latest_ver = clean(latest_rel["tag_name"], "v") + if version_tuple(info[version]) != version_tuple(latest_ver): + tqdm.write(f"Update detected: {info[plugin_name]} {latest_ver}") + + metadata = await get_plugin_dot_json( + info[url_download], session=session ) - info[version] = clean(latest_rel["tag_name"], "v") + for key in ( + description, + author, + language_name, + website, + ): + info[key] = metadata[key] + + if webhook_url: + await send_notification( + info, + latest_ver, + latest_rel, + webhook_url, + ) + info[version] = latest_ver tags[info[id_name]] = res.headers.get(etag, "") @@ -86,6 +103,21 @@ async def batch_github_plugin_info( return info +async def get_plugin_dot_json(download_url: str, *, session: aiohttp.ClientSession): + async with session.get(download_url) as res: + data = await res.read() + + with ZipFile(BytesIO(data)) as zip: + for fileinfo in zip.filelist: + if not fileinfo.filename.endswith("plugin.json"): + continue + + with zip.open(fileinfo, "r") as file: + return json.loads(file.read()) + + raise ValueError(f"plugin.json file not found. Download Url: {download_url}") + + async def batch_plugin_infos( plugin_infos: Ps, tags: ETagsType, github_token, webhook_url: str | None = None ) -> Ps: @@ -114,17 +146,15 @@ def remove_unused_etags(plugin_infos: PluginsType, etags: ETagsType) -> ETagsTyp async def send_notification( - info: PluginType, latest_ver, release, webhook_url: str | None = None + info: PluginType, latest_ver: str, release, webhook_url: str | None = None ) -> None: if not webhook_url: return - if version_tuple(info[version]) != version_tuple(latest_ver): - tqdm.write(f"Update detected: {info[plugin_name]} {latest_ver}") - try: - await update_hook(webhook_url, info, latest_ver, release) - except Exception as e: - tqdm.write(str(e)) + try: + await update_hook(webhook_url, info, latest_ver, release) + except Exception as e: + tqdm.write(str(e)) async def main(): diff --git a/plugins/Amazing Marvin-90f799c3-c04e-443b-bce8-eec5fbcba1e9.json b/plugins/Amazing Marvin-90f799c3-c04e-443b-bce8-eec5fbcba1e9.json index 69992a9c1..bf66ab07a 100644 --- a/plugins/Amazing Marvin-90f799c3-c04e-443b-bce8-eec5fbcba1e9.json +++ b/plugins/Amazing Marvin-90f799c3-c04e-443b-bce8-eec5fbcba1e9.json @@ -1,11 +1,11 @@ { "ID": "90f799c3-c04e-443b-bce8-eec5fbcba1e9", "Name": "Amazing Marvin", - "Description": "Communication with Amazing Marvin over API", + "Description": "Plugin to run Amazing Marvin", "Author": "RrobertRr", "Version": "0.2.0", "Language": "python", - "Website": "https://github.com/rrFlowLauncher/amazing_marvin", + "Website": "https://github.com/rrFlowLauncher/amazing_marvin/", "UrlDownload": "https://github.com/rrFlowLauncher/amazing_marvin/releases/download/v0.2.0/amazing_marvin.zip", "UrlSourceCode": "https://github.com/rrFlowLauncher/amazing_marvin", "IcoPath": "https://github.com/rrFlowLauncher/amazing_marvin/blob/main/Images/Amazing_Marvin.09233c09.png", diff --git a/plugins/Anilist-08AF784C-A014-4A03-822F-6C2F3665A843.json b/plugins/Anilist-08AF784C-A014-4A03-822F-6C2F3665A843.json index fc4916947..d2270ef46 100644 --- a/plugins/Anilist-08AF784C-A014-4A03-822F-6C2F3665A843.json +++ b/plugins/Anilist-08AF784C-A014-4A03-822F-6C2F3665A843.json @@ -1,7 +1,7 @@ { "ID": "08AF784C-A014-4A03-822F-6C2F3665A843", "Name": "Anilist", - "Description": "an anilist plugin for Flow-Launcher", + "Description": "An Anilist plugin for Flow-Launcher", "Author": "DiekoMA", "Version": "1.0.7", "Language": "csharp", diff --git a/plugins/AnyVideo Downloader-70CED0AC-3D9D-4255-AD0B-D9A37862E879.json b/plugins/AnyVideo Downloader-70CED0AC-3D9D-4255-AD0B-D9A37862E879.json index 67acf67f6..1dba986db 100644 --- a/plugins/AnyVideo Downloader-70CED0AC-3D9D-4255-AD0B-D9A37862E879.json +++ b/plugins/AnyVideo Downloader-70CED0AC-3D9D-4255-AD0B-D9A37862E879.json @@ -3,13 +3,13 @@ "Name": "AnyVideo Downloader", "Description": "Plugin for downloading videos from YouTube, Facebook, Twitter, Instagram, and many other websites.", "Author": "z1nc0r3", - "Version": "2.1.2", + "Version": "2.1.3", "Language": "python", "Website": "https://github.com/z1nc0r3/AnyVideo-Downloader-Flow-Plugin", - "UrlDownload": "https://github.com/z1nc0r3/AnyVideo-Downloader-Flow-Plugin/releases/download/v2.1.2/Flow.Launcher.Plugin.AnyVideo.Downloader.zip", + "UrlDownload": "https://github.com/z1nc0r3/AnyVideo-Downloader-Flow-Plugin/releases/download/v2.1.3/Flow.Launcher.Plugin.AnyVideo.Downloader.zip", "UrlSourceCode": "https://github.com/z1nc0r3/AnyVideo-Downloader-Flow-Plugin/tree/main", "IcoPath": "https://cdn.jsdelivr.net/gh/z1nc0r3/AnyVideo-Downloader-Flow-Plugin@main/Images/app.png", "Tested": true, "DateAdded": "2024-07-30T07:46:00Z", - "LatestReleaseDate": "2025-03-02T06:47:38Z" + "LatestReleaseDate": "2025-03-13T18:16:39Z" } \ No newline at end of file diff --git a/plugins/AppsSnapshoter-0F7232DB70E54C9B91205480C0C56D1F.json b/plugins/AppsSnapshoter-0F7232DB70E54C9B91205480C0C56D1F.json index 6d7933b9f..7ba22c03e 100644 --- a/plugins/AppsSnapshoter-0F7232DB70E54C9B91205480C0C56D1F.json +++ b/plugins/AppsSnapshoter-0F7232DB70E54C9B91205480C0C56D1F.json @@ -1,11 +1,11 @@ { "ID": "0F7232DB70E54C9B91205480C0C56D1F", "Name": "AppsSnapshoter", - "Description": "Snapshot opened apps with help of plugin for Flow-Launcher for future open", + "Description": "Snapshot opened apps with help of plugin for Flow-Launcher", "Author": "spinozanilast", "Version": "1.2.1", "Language": "csharp", - "Website": "https://github.com/Spinozanilast/Flow.Launcher.Plugin.AppsSnapshoter", + "Website": "https://github.com/spinozanilast/Flow.Launcher.Plugin.AppsSnapshoter", "UrlDownload": "https://github.com/Spinozanilast/Flow.Launcher.Plugin.AppsSnapshoter/releases/download/v1.2.1/AppsSnapshoter-1.2.1.zip", "UrlSourceCode": "https://github.com/Spinozanilast/Flow.Launcher.Plugin.AppsSnapshoter/tree/master", "IcoPath": "https://cdn.jsdelivr.net/gh/Spinozanilast/Flow.Launcher.Plugin.AppsSnapshoter@master/icon.png", diff --git a/plugins/Astro-d429a0ef-94e5-4ba6-8eba-b4dd0e69dc48.json b/plugins/Astro-d429a0ef-94e5-4ba6-8eba-b4dd0e69dc48.json index 8f3bea3ce..6357a8a47 100644 --- a/plugins/Astro-d429a0ef-94e5-4ba6-8eba-b4dd0e69dc48.json +++ b/plugins/Astro-d429a0ef-94e5-4ba6-8eba-b4dd0e69dc48.json @@ -2,7 +2,7 @@ "ID": "d429a0ef-94e5-4ba6-8eba-b4dd0e69dc48", "Name": "Astro", "Description": "Search Astro Docs", - "Author": "palmiak", + "Author": "Maciek Palmowski", "Version": "0.0.2", "Language": "javascript", "Website": "https://github.com/palmiak/astro-flow-launcher-plugin", diff --git a/plugins/Audio Device Selector-C04175CF5284406DAA9E30A85EC7DA76.json b/plugins/Audio Device Selector-C04175CF5284406DAA9E30A85EC7DA76.json index ae6773357..1444dadb2 100644 --- a/plugins/Audio Device Selector-C04175CF5284406DAA9E30A85EC7DA76.json +++ b/plugins/Audio Device Selector-C04175CF5284406DAA9E30A85EC7DA76.json @@ -1,7 +1,7 @@ { "ID": "C04175CF5284406DAA9E30A85EC7DA76", "Name": "Audio Device Selector", - "Description": "Easily change your playback device", + "Description": "Easy change your playback device", "Author": "AttilaKapostyak", "Version": "1.0.3", "Language": "csharp", diff --git a/plugins/BinancePrice-9E3D73EA-6618-40B4-AA2A-60F6F60CDD15.json b/plugins/BinancePrice-9E3D73EA-6618-40B4-AA2A-60F6F60CDD15.json index 34619d2fc..fabc5b5c7 100644 --- a/plugins/BinancePrice-9E3D73EA-6618-40B4-AA2A-60F6F60CDD15.json +++ b/plugins/BinancePrice-9E3D73EA-6618-40B4-AA2A-60F6F60CDD15.json @@ -5,7 +5,7 @@ "Author": "SUPEROLEJKAAA", "Version": "1.0.0", "Language": "JavaScript", - "Website": "https://github.com/SUPEROLEJKAAA/Flow.Launcher.Plugin.BinancePrice", + "Website": "https://github.com/SUPEROLEJKAAA/flow-binance-price", "UrlDownload": "https://github.com/SUPEROLEJKAAA/Flow.Launcher.Plugin.BinancePrice/releases/download/v1.0.0/Flow.Launcher.Plugin.BinancePrice.zip", "UrlSourceCode": "https://github.com/SUPEROLEJKAAA/Flow.Launcher.Plugin.BinancePrice", "IcoPath": "https://cdn.jsdelivr.net/gh/SUPEROLEJKAAA/Flow.Launcher.Plugin.BinancePrice@master/icons/app.png", diff --git a/plugins/Bulk URL Opener-2d5036e2-eccc-4254-b88e-de78580e2195.json b/plugins/Bulk URL Opener-2d5036e2-eccc-4254-b88e-de78580e2195.json index 2a910dec0..ef0da60ba 100644 --- a/plugins/Bulk URL Opener-2d5036e2-eccc-4254-b88e-de78580e2195.json +++ b/plugins/Bulk URL Opener-2d5036e2-eccc-4254-b88e-de78580e2195.json @@ -1,7 +1,7 @@ { "ID": "2d5036e2-eccc-4254-b88e-de78580e2195", "Name": "Bulk URL Opener", - "Description": "Opens groups of tabs", + "Description": "Opens groups of tabs. To edit the tab groups, edit the tab_groups.yaml file in the plugin directory.", "Author": "Tarik Jaber", "Version": "2.0.0", "Language": "python", diff --git a/plugins/CPPreference-28b1bc8d-06e1-4bda-8311-f36e8d4f9915.json b/plugins/CPPreference-28b1bc8d-06e1-4bda-8311-f36e8d4f9915.json index dfd307c19..715f1c7fc 100644 --- a/plugins/CPPreference-28b1bc8d-06e1-4bda-8311-f36e8d4f9915.json +++ b/plugins/CPPreference-28b1bc8d-06e1-4bda-8311-f36e8d4f9915.json @@ -2,7 +2,7 @@ "ID": "28b1bc8d-06e1-4bda-8311-f36e8d4f9915", "Name": "CPPreference", "Description": "Search cppreference.com efficiently", - "Author": "Peter Schussheim", + "Author": "Peter Schussheim, Jonas de Bruin", "Version": "1.1.0", "Language": "csharp", "Website": "https://github.com/peterschussheim/CPPreference-flow-plugin", diff --git a/plugins/Cider-4e2018ca-4ed0-11ed-bdc3-0242ac120002.json b/plugins/Cider-4e2018ca-4ed0-11ed-bdc3-0242ac120002.json index 0ed4c4822..57201d55c 100644 --- a/plugins/Cider-4e2018ca-4ed0-11ed-bdc3-0242ac120002.json +++ b/plugins/Cider-4e2018ca-4ed0-11ed-bdc3-0242ac120002.json @@ -5,7 +5,7 @@ "Author": "Monochromish", "Version": "1.1.1", "Language": "javascript", - "Website": "https://github.com/Monochromish/Flow.Launcher.Plugin.Cider", + "Website": "https://github.com/Monchromish/Flow.Launcher.Plugin.Cider", "UrlDownload": "https://github.com/Monochromish/Flow.Launcher.Plugin.Cider/releases/download/v1.1.1/Flow.Launcher.Plugin.Cider.zip", "UrlSourceCode": "https://github.com/Monochromish/Flow.Launcher.Plugin.Cider/tree/main", "IcoPath": "https://cdn.jsdelivr.net/gh/Monochromish/Flow.Launcher.Plugin.Cider@main/Assets/app.png", diff --git a/plugins/Clipboard History-8025ce8b-b1ce-49cd-af48-b343a0df8606.json b/plugins/Clipboard History-8025ce8b-b1ce-49cd-af48-b343a0df8606.json index b347761c5..654b8d006 100644 --- a/plugins/Clipboard History-8025ce8b-b1ce-49cd-af48-b343a0df8606.json +++ b/plugins/Clipboard History-8025ce8b-b1ce-49cd-af48-b343a0df8606.json @@ -2,7 +2,7 @@ "ID": "8025ce8b-b1ce-49cd-af48-b343a0df8606", "Name": "Clipboard History", "Description": "a Clipboard History Plugin for FlowLauncher", - "Author": "liberize,Xenolphthalein", + "Author": "liberize", "Version": "1.1.1", "Language": "csharp", "Website": "https://github.com/liberize/Flow.Launcher.Plugin.ClipboardHistory", diff --git a/plugins/Date Calculator-b6a9192c-6646-4c77-bc6b-be4f8195ffda.json b/plugins/Date Calculator-b6a9192c-6646-4c77-bc6b-be4f8195ffda.json index b19f828e9..e561975e6 100644 --- a/plugins/Date Calculator-b6a9192c-6646-4c77-bc6b-be4f8195ffda.json +++ b/plugins/Date Calculator-b6a9192c-6646-4c77-bc6b-be4f8195ffda.json @@ -1,7 +1,7 @@ { "ID": "b6a9192c-6646-4c77-bc6b-be4f8195ffda", "Name": "Date Calculator", - "Description": "Date Calculator using Flow's embedded python", + "Description": "Date Calculator", "Author": "jasonz3157", "Version": "0.2.1", "Language": "python", diff --git a/plugins/DdFlow-735A3608B5D240E5A44357CCF852E329.json b/plugins/DdFlow-735A3608B5D240E5A44357CCF852E329.json index 480394917..71bbf3e83 100644 --- a/plugins/DdFlow-735A3608B5D240E5A44357CCF852E329.json +++ b/plugins/DdFlow-735A3608B5D240E5A44357CCF852E329.json @@ -1,7 +1,7 @@ { "ID": "735A3608B5D240E5A44357CCF852E329", "Name": "DdFlow", - "Description": "Plugin for Get the day from the date", + "Description": "all-in-one date plugin", "Author": "Ahmed ElSaeed", "Version": "2.0.0", "Language": "python", diff --git a/plugins/Direct Translate-1b7c732781f94b748ed08351f8200894.json b/plugins/Direct Translate-1b7c732781f94b748ed08351f8200894.json index d2dda2a9f..a34dba628 100644 --- a/plugins/Direct Translate-1b7c732781f94b748ed08351f8200894.json +++ b/plugins/Direct Translate-1b7c732781f94b748ed08351f8200894.json @@ -1,11 +1,11 @@ { "ID": "1b7c732781f94b748ed08351f8200894", "Name": "Direct Translate", - "Description": "Translate between any languages supported by textblob.", + "Description": "Translate between any languages supported by Googletrans", "Author": "Drimix20", "Version": "2.1.0", "Language": "python", - "Website": "https://github.com/deefrawley/Flow.Launcher.Plugin.DirectTranslate", + "Website": "https://github.com/Drimix20/Flow.Launcher.Plugin.DirectTranslate", "UrlDownload": "https://github.com/deefrawley/Flow.Launcher.Plugin.DirectTranslate/releases/download/2.1.0/Flow.Launcher.Plugin.DirectTranslate-2.1.0.zip", "UrlSourceCode": "https://github.com/deefrawley/Flow.Launcher.Plugin.DirectTranslate/tree/master", "IcoPath": "https://cdn.jsdelivr.net/gh/deefrawley/Flow.Launcher.Plugin.DirectTranslate@master/assets/favicon.ico", diff --git a/plugins/Discord timestamps-32DD22C2-7E7D-4A49-9032-B57046975824.json b/plugins/Discord timestamps-32DD22C2-7E7D-4A49-9032-B57046975824.json index dd4602fbc..129979294 100644 --- a/plugins/Discord timestamps-32DD22C2-7E7D-4A49-9032-B57046975824.json +++ b/plugins/Discord timestamps-32DD22C2-7E7D-4A49-9032-B57046975824.json @@ -4,7 +4,7 @@ "Description": "Generate discord timestamps", "Author": "Jessuh", "Version": "1.0.1", - "Language": "executable", + "Language": "JavaScript", "Website": "https://github.com/Jessuhh/discord-timestamps-flowlauncher-plugin", "UrlDownload": "https://github.com/Jessuhh/discord-timestamps-flowlauncher-plugin/releases/download/v1.0.1/Flow.Launcher.Plugin.DiscordTimestamps.zip", "UrlSourceCode": "https://github.com/Jessuhh/discord-timestamps-flowlauncher-plugin", diff --git a/plugins/Epic Games Store Launcher-02D91372A4C9429B93BA6365E38FBD4C.json b/plugins/Epic Games Store Launcher-02D91372A4C9429B93BA6365E38FBD4C.json index d3c4baf77..24564d7d8 100644 --- a/plugins/Epic Games Store Launcher-02D91372A4C9429B93BA6365E38FBD4C.json +++ b/plugins/Epic Games Store Launcher-02D91372A4C9429B93BA6365E38FBD4C.json @@ -5,7 +5,7 @@ "Author": "Garulf", "Version": "2.0.0", "Language": "python", - "Website": "https://github.com/Garulf/Epic-Games-Store-Launcher", + "Website": "https://github.com/Garulf/epic_games_store_launcher", "UrlDownload": "https://github.com/Garulf/Epic-Games-Store-Launcher/releases/download/v2.0.0/Epic-Games-Store-Launcher.zip", "UrlSourceCode": "https://github.com/Garulf/Epic-Games-Store-Launcher/tree/main", "IcoPath": "https://cdn.jsdelivr.net/gh/Garulf/Epic-Games-Store-Launcher@main/icon.png", diff --git a/plugins/FabCalc-4f9e42bbcd9045e1969f97293dfaf4c7.json b/plugins/FabCalc-4f9e42bbcd9045e1969f97293dfaf4c7.json index bd4478f28..3d5c0313b 100644 --- a/plugins/FabCalc-4f9e42bbcd9045e1969f97293dfaf4c7.json +++ b/plugins/FabCalc-4f9e42bbcd9045e1969f97293dfaf4c7.json @@ -1,7 +1,7 @@ { "ID": "4f9e42bbcd9045e1969f97293dfaf4c7", "Name": "FabCalc", - "Description": "Advanced algebric and symbolic Calculator", + "Description": "Advanced Calculator (symbolic, numeric, UUID, IP, dates, websearches, etc.)", "Author": "Fabio", "Version": "1.4.2", "Language": "python", diff --git a/plugins/Fake Data-8BE6E623BC294D4684F86A47CA797742.json b/plugins/Fake Data-8BE6E623BC294D4684F86A47CA797742.json index f146f2b2a..e4c277769 100644 --- a/plugins/Fake Data-8BE6E623BC294D4684F86A47CA797742.json +++ b/plugins/Fake Data-8BE6E623BC294D4684F86A47CA797742.json @@ -5,7 +5,7 @@ "Author": "Yusyuriv", "Version": "1.0.0", "Language": "csharp", - "Website": "https://github.com/Yusyuriv/Flow.Launcher.Plugin.FakeData/tree/main", + "Website": "https://github.com/Yusyuriv/Flow.Launcher.Plugin.FakeData", "UrlDownload": "https://github.com/Yusyuriv/Flow.Launcher.Plugin.FakeData/releases/download/1.0.0/Flow.Launcher.Plugin.FakeData.zip", "UrlSourceCode": "https://github.com/Yusyuriv/Flow.Launcher.Plugin.FakeData/tree/main", "IcoPath": "https://cdn.jsdelivr.net/gh/Yusyuriv/Flow.Launcher.Plugin.FakeData@main/app.png", diff --git a/plugins/Fancy Emoji-FF2C31D6A47348FFB9ED4EB26F6794E2.json b/plugins/Fancy Emoji-FF2C31D6A47348FFB9ED4EB26F6794E2.json index c2232489e..7c9c9cc1d 100644 --- a/plugins/Fancy Emoji-FF2C31D6A47348FFB9ED4EB26F6794E2.json +++ b/plugins/Fancy Emoji-FF2C31D6A47348FFB9ED4EB26F6794E2.json @@ -1,11 +1,11 @@ { "ID": "FF2C31D6A47348FFB9ED4EB26F6794E2", "Name": "Fancy Emoji", - "Description": "Search for emoji and add to your clipboard automatically", + "Description": "Search for emoji and add to your clipboard automatically.", "Author": "Mave", "Version": "1.0.9", "Language": "python", - "Website": "https://github.com/Ma-ve/Flow.Launcher.Plugin.FancyEmoji", + "Website": "https://github.com/Ma-ve", "UrlDownload": "https://github.com/Ma-ve/Flow.Launcher.Plugin.FancyEmoji/releases/download/1.0.9/Flow.Launcher.Plugin.FancyEmoji.zip", "UrlSourceCode": "https://github.com/Ma-ve/Flow.Launcher.Plugin.FancyEmoji/tree/master", "IcoPath": "https://cdn.jsdelivr.net/gh/Ma-ve/Flow.Launcher.Plugin.FancyEmoji@master/icon.png", diff --git a/plugins/Firefox Keyword Bookmarks-bb3ca236-f416-46d5-b88b-597748c33dce.json b/plugins/Firefox Keyword Bookmarks-bb3ca236-f416-46d5-b88b-597748c33dce.json index 1d96f3a29..b644d0540 100644 --- a/plugins/Firefox Keyword Bookmarks-bb3ca236-f416-46d5-b88b-597748c33dce.json +++ b/plugins/Firefox Keyword Bookmarks-bb3ca236-f416-46d5-b88b-597748c33dce.json @@ -5,7 +5,7 @@ "Author": "cibere", "Version": "0.2.3", "Language": "python_v2", - "Website": "https://github.com/cibere/Flow.Launcher.Plugin.FirefoxKeywordBookmarks", + "Website": "https://github.com/cibere/Flow.Launcher.Plugin.FirefoxKeywordBookmarks/tree/v0.2.2", "UrlDownload": "https://github.com/cibere/FirefoxKeywordBookmarks/releases/download/v0.2.3/FirefoxKeywordBookmarks.zip", "UrlSourceCode": "https://github.com/cibere/Flow.Launcher.Plugin.FirefoxKeywordBookmarks", "IcoPath": "https://i.imgur.com/1cGHQTp.png", diff --git a/plugins/Flow Load Notification-5f48576d-efe7-4562-a4ed-fe64455f1ac1.json b/plugins/Flow Load Notification-5f48576d-efe7-4562-a4ed-fe64455f1ac1.json index c0b4dab4b..d6b14b367 100644 --- a/plugins/Flow Load Notification-5f48576d-efe7-4562-a4ed-fe64455f1ac1.json +++ b/plugins/Flow Load Notification-5f48576d-efe7-4562-a4ed-fe64455f1ac1.json @@ -5,7 +5,7 @@ "Author": "cibere", "Version": "0.0.4", "Language": "python_v2", - "Website": "https://github.com/cibere/Flow.Launcher.Plugin.FlowLoadNotification", + "Website": "https://github.com/cibere/Flow.Launcher.Plugin.FlowLoadNotification/tree/v0.0.4", "UrlDownload": "https://github.com/cibere/Flow.Launcher.Plugin.FlowLoadNotification/releases/download/v0.0.4/Flow.Launcher.Plugin.FlowLoadNotification.zip", "UrlSourceCode": "https://github.com/cibere/Flow.Launcher.Plugin.FlowLoadNotification", "IcoPath": "https://i.imgur.com/G0lVumf.png", diff --git a/plugins/Flow.Plugin.UrlEncode-D2D2C23B084D411DB66EE0C79D6C2A7C.json b/plugins/Flow.Plugin.UrlEncode-D2D2C23B084D411DB66EE0C79D6C2A7C.json index 773c1477b..0ffe03ffb 100644 --- a/plugins/Flow.Plugin.UrlEncode-D2D2C23B084D411DB66EE0C79D6C2A7C.json +++ b/plugins/Flow.Plugin.UrlEncode-D2D2C23B084D411DB66EE0C79D6C2A7C.json @@ -5,7 +5,7 @@ "Author": "cxfksword", "Version": "1.0", "Language": "csharp", - "Website": "https://github.com/taooceros/Flow.Plugin.UrlEncode", + "Website": "https://github.com/cxfksword/Wox.Plugin.UrlEncode", "UrlDownload": "https://github.com/taooceros/Flow.Plugin.UrlEncode/releases/download/v1.0/Flow.Plugin.UrlEncode.zip", "UrlSourceCode": "https://github.com/taooceros/Flow.Plugin.UrlEncode", "IcoPath": "https://cdn.jsdelivr.net/gh/taooceros/Flow.Plugin.UrlEncode@master/Images/app.png", diff --git a/plugins/GamesLauncher-54545DC7B3A542DBB6C7DA50DEAD455B.json b/plugins/GamesLauncher-54545DC7B3A542DBB6C7DA50DEAD455B.json index eed874236..1e756b501 100644 --- a/plugins/GamesLauncher-54545DC7B3A542DBB6C7DA50DEAD455B.json +++ b/plugins/GamesLauncher-54545DC7B3A542DBB6C7DA50DEAD455B.json @@ -1,7 +1,7 @@ { "ID": "54545DC7B3A542DBB6C7DA50DEAD455B", "Name": "GamesLauncher", - "Description": "Search and launch games from multiple platforms like Steam, Epic Games etc.", + "Description": "Search and launch games from multiple platforms like Steam, Epic Games, Xbox etc.", "Author": "KrystianLesniak", "Version": "1.9.2", "Language": "csharp", diff --git a/plugins/Godot-D8AF059F555C48A380AAD5D57B4A5D61.json b/plugins/Godot-D8AF059F555C48A380AAD5D57B4A5D61.json index 8ee261841..afcc50b14 100644 --- a/plugins/Godot-D8AF059F555C48A380AAD5D57B4A5D61.json +++ b/plugins/Godot-D8AF059F555C48A380AAD5D57B4A5D61.json @@ -1,7 +1,7 @@ { "ID": "D8AF059F555C48A380AAD5D57B4A5D61", "Name": "Godot", - "Description": "Quickly launch your Godot projects from flow launcher", + "Description": "Quickly launch your godot projects from flow launcher", "Author": "DiekoMA", "Version": "1.0.3", "Language": "csharp", diff --git a/plugins/Guid Converter-27ad17d5-dacb-4732-9653-03def5f86125.json b/plugins/Guid Converter-27ad17d5-dacb-4732-9653-03def5f86125.json index 36cb566b6..8b07b56e1 100644 --- a/plugins/Guid Converter-27ad17d5-dacb-4732-9653-03def5f86125.json +++ b/plugins/Guid Converter-27ad17d5-dacb-4732-9653-03def5f86125.json @@ -5,7 +5,7 @@ "Author": "N.Duong", "Version": "1.1.1", "Language": "csharp", - "Website": "https://github.com/NDiiong/Flow.Launcher.Plugin.GuidConverter/tree/main", + "Website": "https://github.com/NDiiong/Flow.Launcher.Plugin.GuidConverter.git", "UrlDownload": "https://github.com/NDiiong/Flow.Launcher.Plugin.GuidConverter/releases/download/v1.1.1/Flow.Launcher.Plugin.GuidConverter.zip", "UrlSourceCode": "https://github.com/NDiiong/Flow.Launcher.Plugin.GuidConverter/tree/main", "IcoPath": "https://cdn.jsdelivr.net/gh/NDiiong/Flow.Launcher.Plugin.GuidConverter@main/Flow.Launcher.Plugin.GuidConverter/Images/icon.png", diff --git a/plugins/Heidi-76148ECE-AA72-4C68-AFD5-54BA8A3C1F61.json b/plugins/Heidi-76148ECE-AA72-4C68-AFD5-54BA8A3C1F61.json index 84db5339d..e699607eb 100644 --- a/plugins/Heidi-76148ECE-AA72-4C68-AFD5-54BA8A3C1F61.json +++ b/plugins/Heidi-76148ECE-AA72-4C68-AFD5-54BA8A3C1F61.json @@ -1,7 +1,7 @@ { "ID": "76148ECE-AA72-4C68-AFD5-54BA8A3C1F61", "Name": "Heidi", - "Description": "Launch HeidiSQL Sessions.", + "Description": "Launch Heidi Sessions", "Author": "LostPing", "Version": "1.0.0", "Language": "csharp", diff --git a/plugins/How Long To Beat-dcbb0454f0694431944b1b7f18673a54.json b/plugins/How Long To Beat-dcbb0454f0694431944b1b7f18673a54.json index 04bc9bcf9..edb5ff70b 100644 --- a/plugins/How Long To Beat-dcbb0454f0694431944b1b7f18673a54.json +++ b/plugins/How Long To Beat-dcbb0454f0694431944b1b7f18673a54.json @@ -4,7 +4,7 @@ "Description": "Searches for the provided Name and returns the Playtime from HowLongToBeat", "Author": "Tueska", "Version": "1.0.1", - "Language": "javascript", + "Language": "JavaScript", "ExecuteFileName": "main.js", "Website": "https://github.com/Tueska/fl-howlongtobeat", "IcoPath": "https://cdn.jsdelivr.net/gh/Tueska/fl-HowLongToBeat/Images/howlongtobeat.png", diff --git a/plugins/KeePass2Flow-a6da9c8f-523f-4806-a140-45f10af18e21.json b/plugins/KeePass2Flow-a6da9c8f-523f-4806-a140-45f10af18e21.json index a50011aa9..172bf5ca1 100644 --- a/plugins/KeePass2Flow-a6da9c8f-523f-4806-a140-45f10af18e21.json +++ b/plugins/KeePass2Flow-a6da9c8f-523f-4806-a140-45f10af18e21.json @@ -2,10 +2,10 @@ "ID": "a6da9c8f-523f-4806-a140-45f10af18e21", "Name": "KeePass2Flow", "Description": "Hook up Flow to KeePass 2", - "Author": "geisterfurz007", + "Author": "mvarendorff", "Version": "1.1.7", "Language": "csharp", - "Website": "https://github.com/geisterfurz007/KeePass2Flow", + "Website": "https://github.com/mvarendorff/KeePass2Flow", "UrlDownload": "https://github.com/mvarendorff/KeePass2Flow/releases/download/v1.1.7/KeePass2Flow.zip", "UrlSourceCode": "https://github.com/geisterfurz007/KeePass2Flow", "IcoPath": "https://cdn.jsdelivr.net/gh/geisterfurz007/KeePass2Flow@master/Flow.Launcher.Plugin.KeePass2Flow/icon.png", diff --git a/plugins/Kitty-898FC7F0-4F38-401B-82E0-A852798C2D59.json b/plugins/Kitty-898FC7F0-4F38-401B-82E0-A852798C2D59.json index 7da096a74..adf8554e5 100644 --- a/plugins/Kitty-898FC7F0-4F38-401B-82E0-A852798C2D59.json +++ b/plugins/Kitty-898FC7F0-4F38-401B-82E0-A852798C2D59.json @@ -1,7 +1,7 @@ { "ID": "898FC7F0-4F38-401B-82E0-A852798C2D59", "Name": "Kitty", - "Description": "Launch Kitty Sessions.", + "Description": "Launch Kitty Sessions", "Author": "LostPing", "Version": "1.0.6", "Language": "csharp", diff --git a/plugins/LibreTranslate-81b8c8c8-72ef-427c-a9c1-17cf8f1c766c.json b/plugins/LibreTranslate-81b8c8c8-72ef-427c-a9c1-17cf8f1c766c.json index 6254f0dea..eae3a8f60 100644 --- a/plugins/LibreTranslate-81b8c8c8-72ef-427c-a9c1-17cf8f1c766c.json +++ b/plugins/LibreTranslate-81b8c8c8-72ef-427c-a9c1-17cf8f1c766c.json @@ -5,7 +5,7 @@ "Author": "taooceros", "Version": "1.0.1", "Language": "csharp", - "Website": "https://github.com/taooceros/Flow.LibreTranslate", + "Website": "https://github.com/taooceros/Flow.Launcher.Plugin.LibreTranslate", "UrlDownload": "https://github.com/taooceros/Flow.LibreTranslate/releases/download/v1.0.1/Flow.LibreTranslate.zip", "UrlSourceCode": "https://github.com/taooceros/Flow.LibreTranslate/tree/main", "IcoPath": "https://cdn.jsdelivr.net/gh/taooceros/Flow.LibreTranslate@main/Flow.LibreTranslate/Images/translate.png", diff --git a/plugins/Linguee-9316b88a-009d-498c-a980-1aefa44d2fd2.json b/plugins/Linguee-9316b88a-009d-498c-a980-1aefa44d2fd2.json index 0dceb6258..ab46be22c 100644 --- a/plugins/Linguee-9316b88a-009d-498c-a980-1aefa44d2fd2.json +++ b/plugins/Linguee-9316b88a-009d-498c-a980-1aefa44d2fd2.json @@ -5,7 +5,7 @@ "Author": "Galedrim", "Version": "1.1.0", "Language": "python", - "Website": "https://github.com/Galedrim/Flow.Launcher.Plugin.Linguee/tree/main", + "Website": "https://github.com/Galedrim/Flow.Launcher.Plugin.Linguee", "UrlDownload": "https://github.com/Galedrim/Flow.Launcher.Plugin.Linguee/releases/download/v1.1.0/Flow.Launcher.Plugin.Linguee.zip", "UrlSourceCode": "https://github.com/Galedrim/Flow.Launcher.Plugin.Linguee/tree/main", "IcoPath": "https://cdn.jsdelivr.net/gh/Galedrim/Flow.Launcher.Plugin.Linguee@main/images/app.png", diff --git a/plugins/Lorem Ipsum Generator-e483e4f2-ec67-3c54-2aea-f823c5e5f61b.json b/plugins/Lorem Ipsum Generator-e483e4f2-ec67-3c54-2aea-f823c5e5f61b.json index 20278ee3f..05e09d20e 100644 --- a/plugins/Lorem Ipsum Generator-e483e4f2-ec67-3c54-2aea-f823c5e5f61b.json +++ b/plugins/Lorem Ipsum Generator-e483e4f2-ec67-3c54-2aea-f823c5e5f61b.json @@ -4,7 +4,7 @@ "Description": "Generates Lorem Ipsum and copies it to your clipboard.", "Author": "Tom Kliner", "Version": "3.0.0", - "Language": "python", + "Language": "csharp", "Website": "https://github.com/Tomkov1c/Lorem-Ipsum-Generator", "UrlDownload": "https://github.com/Tomkov1c/Lorem-Ipsum-Generator/releases/download/v3.0.0/Flow.Launcher.Plugin.LoremIpsumGenerator.zip", "UrlSourceCode": "https://github.com/Tomkov1c/Lorem-Ipsum-Generator", diff --git a/plugins/Minecraft Multi Launcher-91B97FA34859445782AEF1893DE4E350.json b/plugins/Minecraft Multi Launcher-91B97FA34859445782AEF1893DE4E350.json index 98b936856..ae947311b 100644 --- a/plugins/Minecraft Multi Launcher-91B97FA34859445782AEF1893DE4E350.json +++ b/plugins/Minecraft Multi Launcher-91B97FA34859445782AEF1893DE4E350.json @@ -1,11 +1,11 @@ { "ID": "91B97FA34859445782AEF1893DE4E350", "Name": "Minecraft Multi Launcher", - "Description": "Launch your Minecraft instances using MultiMC, PolyMC, and PrismLauncher", + "Description": "Launcher your Minecraft instances using MultiMC, PolyMC, and PrismLauncher", "Author": "Garulf", "Version": "1.2.2", "Language": "executable", - "Website": "https://github.com/Garulf/MC-Multi-Launcher", + "Website": "https://github.com/Garulf/mc_multi_launcher", "UrlDownload": "https://github.com/Garulf/MC-Multi-Launcher/releases/download/v1.2.2/Minecraft.Multi.Launcher.zip", "UrlSourceCode": "https://github.com/Garulf/MC-Multi-Launcher", "IcoPath": "https://cdn.jsdelivr.net/gh/garulf/MC-Multi-Launcher@main/src/icon.png", diff --git a/plugins/Nightlight-ef3a6ece-ca05-4d4f-92ba-2ff8a67e017b.json b/plugins/Nightlight-ef3a6ece-ca05-4d4f-92ba-2ff8a67e017b.json index e9ab341ce..a33b45a00 100644 --- a/plugins/Nightlight-ef3a6ece-ca05-4d4f-92ba-2ff8a67e017b.json +++ b/plugins/Nightlight-ef3a6ece-ca05-4d4f-92ba-2ff8a67e017b.json @@ -5,7 +5,7 @@ "Author": "Jonathan Glanz", "Version": "1.1.4", "Language": "TypeScript", - "Website": "https://github.com/jglanz/flow-launcher-plugin-nightlight", + "Website": "https://github.com/jglanz", "IcoPath": "https://cdn.jsdelivr.net/gh/jglanz/flow-launcher-plugin-nightlight/assets/bulb.png", "UrlDownload": "https://github.com/jglanz/flow-launcher-plugin-nightlight/releases/download/v1.1.4/Nightlight-1.1.4.zip", "UrlSourceCode": "https://github.com/jglanz/flow-launcher-plugin-nightlight/tree/master", diff --git a/plugins/OneNote-506B2EE8-4117-4BDF-8F00-DF58498DF922.json b/plugins/OneNote-506B2EE8-4117-4BDF-8F00-DF58498DF922.json index 3aaa97540..25a7630d0 100644 --- a/plugins/OneNote-506B2EE8-4117-4BDF-8F00-DF58498DF922.json +++ b/plugins/OneNote-506B2EE8-4117-4BDF-8F00-DF58498DF922.json @@ -1,7 +1,7 @@ { "ID": "506B2EE8-4117-4BDF-8F00-DF58498DF922", "Name": "OneNote", - "Description": "Search your OneNote notes", + "Description": "Search and create your OneNote notes", "Author": "Odotocodot", "Version": "2.1.1", "Language": "csharp", diff --git a/plugins/Plexy-32D9F15C38EE400EA7E3DF57DA15BFD5.json b/plugins/Plexy-32D9F15C38EE400EA7E3DF57DA15BFD5.json index af84ae2b9..6b23ce4eb 100644 --- a/plugins/Plexy-32D9F15C38EE400EA7E3DF57DA15BFD5.json +++ b/plugins/Plexy-32D9F15C38EE400EA7E3DF57DA15BFD5.json @@ -1,7 +1,7 @@ { "ID": "32D9F15C38EE400EA7E3DF57DA15BFD5", "Name": "Plexy", - "Description": "Search and cast your Plex Media Server Library", + "Description": "Search and cast your Plex Media Library", "Author": "Garulf", "Version": "2.0.0", "Language": "python", diff --git a/plugins/Pokedex-eda56b23-b5c5-48d9-be0d-05ccb907c86d.json b/plugins/Pokedex-eda56b23-b5c5-48d9-be0d-05ccb907c86d.json index 8261ce0cd..cff737c89 100644 --- a/plugins/Pokedex-eda56b23-b5c5-48d9-be0d-05ccb907c86d.json +++ b/plugins/Pokedex-eda56b23-b5c5-48d9-be0d-05ccb907c86d.json @@ -5,7 +5,7 @@ "Author": "Galedrim", "Version": "2.0.2", "Language": "python", - "Website": "https://github.com/Galedrim/Flow.Launcher.Plugin.Pokedex/tree/main", + "Website": "https://github.com/Galedrim/Flow.Launcher.Plugin.Pokedex", "UrlDownload": "https://github.com/Galedrim/Flow.Launcher.Plugin.Pokedex/releases/download/v2.0.2/Flow.Launcher.Plugin.Pokedex.zip", "UrlSourceCode": "https://github.com/Galedrim/Flow.Launcher.Plugin.Pokedex/tree/main", "IcoPath": "https://cdn.jsdelivr.net/gh/Galedrim/Flow.Launcher.Plugin.Pokedex@main/Images/app.png", diff --git a/plugins/PyRepl-8d7d2301-4d69-4da2-a19b-e51c8ea239a9.json b/plugins/PyRepl-8d7d2301-4d69-4da2-a19b-e51c8ea239a9.json index 743113702..b344fc33a 100644 --- a/plugins/PyRepl-8d7d2301-4d69-4da2-a19b-e51c8ea239a9.json +++ b/plugins/PyRepl-8d7d2301-4d69-4da2-a19b-e51c8ea239a9.json @@ -5,7 +5,7 @@ "Author": "cibere", "Version": "0.0.4", "Language": "executable_v2", - "Website": "https://github.com/cibere/Flow.Launcher.Plugin.PyRepl", + "Website": "https://github.com/cibere/Flow.Launcher.Plugin.PyRepl/tree/v0.0.4", "UrlSourceCode": "https://github.com/cibere/Flow.Launcher.Plugin.PyRepl", "UrlDownload": "https://github.com/cibere/Flow.Launcher.Plugin.PyRepl/releases/download/v0.0.4/Flow.Launcher.Plugin.PyRepl.zip", "IcoPath": "https://i.imgur.com/A7VSboi.png", diff --git a/plugins/RDP-B7CDDEA47E354243BEE0434DDBAE438A.json b/plugins/RDP-B7CDDEA47E354243BEE0434DDBAE438A.json index 897ae7437..805579a7e 100644 --- a/plugins/RDP-B7CDDEA47E354243BEE0434DDBAE438A.json +++ b/plugins/RDP-B7CDDEA47E354243BEE0434DDBAE438A.json @@ -1,7 +1,7 @@ { "ID": "B7CDDEA47E354243BEE0434DDBAE438A", "Name": "RDP", - "Description": "RDP plugin for Flow Launcher", + "Description": "RDP plugin for Flow", "Author": "MBeggiato", "Version": "1.0.15", "Language": "csharp", diff --git a/plugins/Reddit Browser-51F9B93359B24716BF9D7FCD1CB075B6.json b/plugins/Reddit Browser-51F9B93359B24716BF9D7FCD1CB075B6.json index 1b1cc7437..c616fb80d 100644 --- a/plugins/Reddit Browser-51F9B93359B24716BF9D7FCD1CB075B6.json +++ b/plugins/Reddit Browser-51F9B93359B24716BF9D7FCD1CB075B6.json @@ -1,7 +1,7 @@ { "ID": "51F9B93359B24716BF9D7FCD1CB075B6", "Name": "Reddit Browser", - "Description": "Search and browse Reddit", + "Description": "Search and browse Reddit.", "Author": "Garulf", "Version": "1.0.2", "Language": "python", diff --git a/plugins/RollDice-5403b2dc28fb4327aedc9f8c872d9d1f.json b/plugins/RollDice-5403b2dc28fb4327aedc9f8c872d9d1f.json index 7210a8e11..862f76a7e 100644 --- a/plugins/RollDice-5403b2dc28fb4327aedc9f8c872d9d1f.json +++ b/plugins/RollDice-5403b2dc28fb4327aedc9f8c872d9d1f.json @@ -1,7 +1,7 @@ { "ID": "5403b2dc28fb4327aedc9f8c872d9d1f", "Name": "RollDice", - "Description": "Rolls the given dices and evaluates the expression", + "Description": "Rolls the given dice and evaluates the expression", "Author": "lvonkacsoh", "Version": "2.0.1", "Language": "python", diff --git a/plugins/ShareX_Flow_Plugin-75763350-A89D-4942-B697-14875D94C222.json b/plugins/ShareX_Flow_Plugin-75763350-A89D-4942-B697-14875D94C222.json index 2156c5fe1..086fb43f6 100644 --- a/plugins/ShareX_Flow_Plugin-75763350-A89D-4942-B697-14875D94C222.json +++ b/plugins/ShareX_Flow_Plugin-75763350-A89D-4942-B697-14875D94C222.json @@ -2,7 +2,7 @@ "ID": "75763350-A89D-4942-B697-14875D94C222", "Name": "ShareX_Flow_Plugin", "Description": "Run ShareX capture, OCR, ...", - "Author": "dufguix", + "Author": "Dufguix", "Version": "1.0.0", "Language": "csharp", "Website": "https://github.com/dufguix/Flow.Launcher.Plugin.ShareX", diff --git a/plugins/StringUtils-2972879D-1702-48A7-BA50-CA8352A6AA74.json b/plugins/StringUtils-2972879D-1702-48A7-BA50-CA8352A6AA74.json index 740aa37e5..5306b8d2a 100644 --- a/plugins/StringUtils-2972879D-1702-48A7-BA50-CA8352A6AA74.json +++ b/plugins/StringUtils-2972879D-1702-48A7-BA50-CA8352A6AA74.json @@ -1,7 +1,7 @@ { "ID": "2972879D-1702-48A7-BA50-CA8352A6AA74", "Name": "StringUtils", - "Description": "A multi-purpose plugin that supports UUID/GUID/random string generation, base64/URL encoding and decoding", + "Description": "a multi-purpose Flow Launcher plugin that supports UUID/GUID/random string generation, base64/URL encoding and decoding", "Author": "t-tan", "Version": "1.0.0", "Language": "csharp", diff --git a/plugins/Temp Cleaner-2DC588F9-98DB-4E8E-BBE0-B4EFF4286E40.json b/plugins/Temp Cleaner-2DC588F9-98DB-4E8E-BBE0-B4EFF4286E40.json index 91f1adf6c..1720fdcda 100644 --- a/plugins/Temp Cleaner-2DC588F9-98DB-4E8E-BBE0-B4EFF4286E40.json +++ b/plugins/Temp Cleaner-2DC588F9-98DB-4E8E-BBE0-B4EFF4286E40.json @@ -5,7 +5,7 @@ "Author": "N.Duong", "Version": "1.1.0", "Language": "csharp", - "Website": "https://github.com/NDiiong/Flow.Launcher.Plugin.TempCleaner/tree/main", + "Website": "https://github.com/NDiiong/Flow.Launcher.Plugin.TempCleaner", "UrlDownload": "https://github.com/NDiiong/Flow.Launcher.Plugin.TempCleaner/releases/download/v1.1.0/Flow.Launcher.Plugin.TempCleaner.zip", "UrlSourceCode": "https://github.com/NDiiong/Flow.Launcher.Plugin.TempCleaner/tree/main", "IcoPath": "https://cdn.jsdelivr.net/gh/NDiiong/Flow.Launcher.Plugin.TempCleaner@main/Flow.Launcher.Plugin.TempCleaner/Images/icon.png", diff --git a/plugins/Timestamp-84ddc2a6d43911e8a8d5f2801f1b9fd1.json b/plugins/Timestamp-84ddc2a6d43911e8a8d5f2801f1b9fd1.json index d1a441ce0..cade5dd27 100644 --- a/plugins/Timestamp-84ddc2a6d43911e8a8d5f2801f1b9fd1.json +++ b/plugins/Timestamp-84ddc2a6d43911e8a8d5f2801f1b9fd1.json @@ -1,11 +1,11 @@ { "ID": "84ddc2a6d43911e8a8d5f2801f1b9fd1", "Name": "Timestamp", - "Description": "Show system time and could copy that", - "Author": "Zero ", + "Description": "A time plugin for Flow.", + "Author": "Zeroto521", "Version": "1.0.8", "Language": "python", - "Website": "https://github.com/Garulf/Flow.Launcher.Plugin.Timestamp", + "Website": "https://github.com/Zeroto521/Flow.Launcher.Plugin.Timestamp", "UrlDownload": "https://github.com/Garulf/Flow.Launcher.Plugin.Timestamp/releases/download/v1.0.8/Flow.Launcher.Plugin.TimeStamp.zip", "UrlSourceCode": "https://github.com/Garulf/Flow.Launcher.Plugin.Timestamp", "IcoPath": "https://cdn.jsdelivr.net/gh/Garulf/Flow.Launcher.Plugin.Timestamp@master/assets/favicon.ico", diff --git a/plugins/TinyUrlPlugin-589CA535BD5041E78179C4F2D2F2D8FD.json b/plugins/TinyUrlPlugin-589CA535BD5041E78179C4F2D2F2D8FD.json index a440b8524..50a188a55 100644 --- a/plugins/TinyUrlPlugin-589CA535BD5041E78179C4F2D2F2D8FD.json +++ b/plugins/TinyUrlPlugin-589CA535BD5041E78179C4F2D2F2D8FD.json @@ -5,7 +5,7 @@ "Author": "haider", "Version": "1.0.5", "Language": "csharp", - "Website": "https://github.com/DevHJS/TinyUrlPlugin", + "Website": "https://github.com/DevHJS/Flow.Launcher.Plugin.TinyUrlPlugin", "UrlDownload": "https://github.com/HMO-SOUL/TinyUrlPlugin/releases/download/v1.0.5/TinyUrlPlugin-1.0.5.zip", "UrlSourceCode": "https://github.com/DevHJS/TinyUrlPlugin/tree/master", "IcoPath": "https://cdn.jsdelivr.net/gh/DevHJS/TinyUrlPlugin/Flow.Launcher.Plugin.TinyUrlPlugin/icons/icon.png", diff --git a/plugins/Twitchy-477F16413D374364A4D5D36DCE68ED45.json b/plugins/Twitchy-477F16413D374364A4D5D36DCE68ED45.json index c6ed7ee64..f42720279 100644 --- a/plugins/Twitchy-477F16413D374364A4D5D36DCE68ED45.json +++ b/plugins/Twitchy-477F16413D374364A4D5D36DCE68ED45.json @@ -1,7 +1,7 @@ { "ID": "477F16413D374364A4D5D36DCE68ED45", "Name": "Twitchy", - "Description": "Search and stream twitch.tv", + "Description": "Search and stream Twitch.tv", "Author": "Garulf", "Version": "7.0.0", "Language": "python", diff --git a/plugins/UUID Generator-959A3FED8292422784F7892F7FB59DB1.json b/plugins/UUID Generator-959A3FED8292422784F7892F7FB59DB1.json index e4bf1dbd3..804e432ad 100644 --- a/plugins/UUID Generator-959A3FED8292422784F7892F7FB59DB1.json +++ b/plugins/UUID Generator-959A3FED8292422784F7892F7FB59DB1.json @@ -5,7 +5,7 @@ "Author": "Vladislav Atakhanov @vladislav-atakhanov", "Version": "1.0.0", "Language": "python", - "Website": "https://github.com/vladislav-atakhanov/Flow.Launcher.Plugin.UUID", + "Website": "https://github.com/vladislav-atakhanov/Flow.Plugin.UUID", "UrlSourceCode": "https://github.com/vladislav-atakhanov/Flow.Launcher.Plugin.UUID", "UrlDownload": "https://github.com/vladislav-atakhanov/Flow.Launcher.Plugin.UUID/releases/download/1.0.0/Flow.Launcher.Plugin.UUID.zip", "IcoPath": "https://cdn.jsdelivr.net/gh/vladislav-atakhanov/Flow.Plugin.UUID@main/images/uuid.png", diff --git a/plugins/Unity Projects Launcher-8de584c0-f855-4825-8886-65e670ebe441.json b/plugins/Unity Projects Launcher-8de584c0-f855-4825-8886-65e670ebe441.json index abfb8f663..9ac6cd782 100644 --- a/plugins/Unity Projects Launcher-8de584c0-f855-4825-8886-65e670ebe441.json +++ b/plugins/Unity Projects Launcher-8de584c0-f855-4825-8886-65e670ebe441.json @@ -1,7 +1,7 @@ { "ID": "8de584c0-f855-4825-8886-65e670ebe441", "Name": "Unity Projects Launcher", - "Description": "Open Unity projects from Flow Launcher", + "Description": "adds an option to launch Unity projects from Flow Launcher", "Author": "Ghost-Miner", "Version": "1.1.0", "Language": "csharp", diff --git a/plugins/VimCheatSheet-ddd30a33-c565-4dcf-9558-7bc5bb433e13.json b/plugins/VimCheatSheet-ddd30a33-c565-4dcf-9558-7bc5bb433e13.json index 724e1eae0..a2db20a9b 100644 --- a/plugins/VimCheatSheet-ddd30a33-c565-4dcf-9558-7bc5bb433e13.json +++ b/plugins/VimCheatSheet-ddd30a33-c565-4dcf-9558-7bc5bb433e13.json @@ -1,7 +1,7 @@ { "ID": "ddd30a33-c565-4dcf-9558-7bc5bb433e13", "Name": "VimCheatSheet", - "Description": "Instant access to Vim commands and shortcuts via an interactive cheat sheet.", + "Description": "Search Vim commands with Flow Launcher.", "Author": "MoAlSeifi", "Version": "0.0.2", "Language": "python", diff --git a/plugins/Win Hotkey-7D530704C68E4838896BBA5C4C1DE7DF.json b/plugins/Win Hotkey-7D530704C68E4838896BBA5C4C1DE7DF.json index 229086a42..b09d61317 100644 --- a/plugins/Win Hotkey-7D530704C68E4838896BBA5C4C1DE7DF.json +++ b/plugins/Win Hotkey-7D530704C68E4838896BBA5C4C1DE7DF.json @@ -1,7 +1,7 @@ { "ID": "7D530704C68E4838896BBA5C4C1DE7DF", "Name": "Win Hotkey", - "Description": "Trigger Flow Launcher by Win Key.", + "Description": "Trigger Flow Launcher by Win Key", "Author": "Amin Salah", "Version": "4.0.0", "Language": "csharp", diff --git a/plugins/Window Walker-F737A9223560B3C6833B5FFB8CDF78E5.json b/plugins/Window Walker-F737A9223560B3C6833B5FFB8CDF78E5.json index 0278c89ff..8f7bed99b 100644 --- a/plugins/Window Walker-F737A9223560B3C6833B5FFB8CDF78E5.json +++ b/plugins/Window Walker-F737A9223560B3C6833B5FFB8CDF78E5.json @@ -2,10 +2,10 @@ "ID": "F737A9223560B3C6833B5FFB8CDF78E5", "Name": "Window Walker", "Description": "Alt-Tab alternative enabling searching through your windows.", - "Author": "betadele", + "Author": "taooceros", "Version": "3.0.2", "Language": "csharp", - "Website": "https://www.windowwalker.com/", + "Website": "https://github.com/taooceros/Flow.Plugin.WindowWalker", "UrlDownload": "https://github.com/taooceros/Flow.Plugin.WindowWalker/releases/download/v3.0.2/WindowWalker-3.0.2.zip", "UrlSourceCode": "https://github.com/taooceros/Microsoft.Plugin.WindowWalker/tree/master", "IcoPath": "https://cdn.jsdelivr.net/gh/taooceros/Microsoft.Plugin.WindowWalker@master/Images/windowwalker.dark.png", diff --git a/plugins/Windows Startup-747F1A93B6D24CCFBC433BA2455B3BEA.json b/plugins/Windows Startup-747F1A93B6D24CCFBC433BA2455B3BEA.json index eb6f95ada..7f55b5632 100644 --- a/plugins/Windows Startup-747F1A93B6D24CCFBC433BA2455B3BEA.json +++ b/plugins/Windows Startup-747F1A93B6D24CCFBC433BA2455B3BEA.json @@ -5,7 +5,7 @@ "Author": "Garulf", "Version": "1.0.2", "Language": "python", - "Website": "https://github.com/Garulf/Windows-Startup", + "Website": "https://github.com/garulf/windows_startup", "UrlDownload": "https://github.com/Garulf/Windows-Startup/releases/download/v1.0.2/Windows-Startup.zip", "UrlSourceCode": "https://github.com/Garulf/Windows-Startup/tree/main", "IcoPath": "https://github.com/Garulf/Windows-Startup/raw/main/icons/application.png", diff --git a/plugins/WireGuard-89f50521dd80461895ae6ce1b700f444.json b/plugins/WireGuard-89f50521dd80461895ae6ce1b700f444.json index bc6469072..1a3b3ef23 100644 --- a/plugins/WireGuard-89f50521dd80461895ae6ce1b700f444.json +++ b/plugins/WireGuard-89f50521dd80461895ae6ce1b700f444.json @@ -1,11 +1,11 @@ { "ID": "89f50521dd80461895ae6ce1b700f444", "Name": "WireGuard", - "Description": "Connect to VPN via WireGuard VPN interfaces", + "Description": "Connect to VPN via WireGuard interfaces", "Author": "flooxo", "Version": "1.0.2", "Language": "csharp", - "Website": "https://github.com/flooxo/Flow.Lancher.Plugin.WireGuard", + "Website": "https://github.com/flooxo/Flow.Plugin.WireGuard", "UrlDownload": "https://github.com/flooxo/Flow.Lancher.Plugin.WireGuard/releases/download/v1.0.2/Flow.Launcher.Plugin.WireGuard.zip", "UrlSourceCode": "https://github.com/flooxo/Flow.Lancher.Plugin.WireGuard/tree/master", "IcoPath": "https://cdn.jsdelivr.net/gh/flooxo/Flow.Lancher.Plugin.WireGuard@master/Flow.Launcher.Plugin.WireGuard/Images/wireguard.png", diff --git a/plugins/Wordnik Dictionary-7ed41d7e3d174379972e1cdacb647474.json b/plugins/Wordnik Dictionary-7ed41d7e3d174379972e1cdacb647474.json index 80ffbff25..b447f9297 100644 --- a/plugins/Wordnik Dictionary-7ed41d7e3d174379972e1cdacb647474.json +++ b/plugins/Wordnik Dictionary-7ed41d7e3d174379972e1cdacb647474.json @@ -1,11 +1,11 @@ { "ID": "7ed41d7e3d174379972e1cdacb647474", "Name": "Wordnik Dictionary", - "Description": "Wordnik wrapper using python. Gives you the definition of words similiar to duckduckgo.", + "Description": "A feature-packed that lets you see stuff like definitions for words using wordnik.", "Author": "cibere", "Version": "2.1.0", "Language": "python", - "Website": "https://github.com/cibere/Flow.Launcher.Plugin.WordNikDictionary", + "Website": "https://github.com/cibere/Flow.Launcher.Plugin.WordNikDictionary/tree/v2.1.0", "UrlDownload": "https://github.com/cibere/Flow.Launcher.Plugin.WordNikDictionary/releases/download/v2.1.0/Flow.Launcher.Plugin.WordNikDictionary.zip", "UrlSourceCode": "https://github.com/cibere/Flow.Launcher.Plugin.WordNikDictionary/tree/main", "IcoPath": "https://i.imgur.com/VTVaFuF.png", diff --git a/plugins/Workflowy-3b42afc0d17f45b98a55e324728252be.json b/plugins/Workflowy-3b42afc0d17f45b98a55e324728252be.json index ecdeda8eb..86959504d 100644 --- a/plugins/Workflowy-3b42afc0d17f45b98a55e324728252be.json +++ b/plugins/Workflowy-3b42afc0d17f45b98a55e324728252be.json @@ -1,7 +1,7 @@ { "ID": "3b42afc0d17f45b98a55e324728252be", "Name": "Workflowy", - "Description": "Save notes directly into Workflowy", + "Description": "Quick save items to Workflowy", "Author": "BrunoLM", "Version": "1.0.0", "Language": "executable", diff --git a/plugins/Youtube Downloader-d58fbe34-bce7-11ed-afa1-0242ac120002.json b/plugins/Youtube Downloader-d58fbe34-bce7-11ed-afa1-0242ac120002.json index fc24b5fcf..039d98993 100644 --- a/plugins/Youtube Downloader-d58fbe34-bce7-11ed-afa1-0242ac120002.json +++ b/plugins/Youtube Downloader-d58fbe34-bce7-11ed-afa1-0242ac120002.json @@ -1,7 +1,7 @@ { "ID": "d58fbe34-bce7-11ed-afa1-0242ac120002", "Name": "Youtube Downloader", - "Description": "A youtube downloader", + "Description": "Download videos on youtube! usage: {-yt} {youtube link}", "Author": "LordOfTheEel; Eyal.Br", "Version": "0.1.2", "Language": "python", diff --git a/plugins/isPrime-b9aaddfa36a948f384b31b4fb6186861.json b/plugins/isPrime-b9aaddfa36a948f384b31b4fb6186861.json index 36ebafda4..ecb5f4cd1 100644 --- a/plugins/isPrime-b9aaddfa36a948f384b31b4fb6186861.json +++ b/plugins/isPrime-b9aaddfa36a948f384b31b4fb6186861.json @@ -5,11 +5,11 @@ "Author": "lvonkacsoh", "Version": "1.4.0", "Language": "python", - "Website": "https://github.com/lvonkacsoh/Flow.Launcher.Plugin.IsPrime", + "Website": "https://github.com/lvonkacsoh/flow-plugin-isPrime", "UrlDownload": "https://github.com/lvonkacsoh/Flow.Launcher.Plugin.IsPrime/releases/download/v1.4.0/Flow.Launcher.Plugin.IsPrime.zip", "UrlSourceCode": "https://github.com/lvonkacsoh/Flow.Launcher.Plugin.IsPrime/tree/main", "IcoPath": "https://cdn.jsdelivr.net/gh/lvonkacsoh/Flow.Launcher.Plugin.IsPrime@main/assets/icon.png", "Tested": true, - "LatestReleaseDate": "2022-07-21T07:20:53Z", + "LatestReleaseDate": "2025-03-13T19:40:06Z", "DateAdded": "2022-10-08T16:26:57Z" } \ No newline at end of file diff --git a/plugins/nexusmods-search-3C62514E3C8644D583E3F12202F11161.json b/plugins/nexusmods-search-3C62514E3C8644D583E3F12202F11161.json index 9c02d93f8..3dfa380d2 100644 --- a/plugins/nexusmods-search-3C62514E3C8644D583E3F12202F11161.json +++ b/plugins/nexusmods-search-3C62514E3C8644D583E3F12202F11161.json @@ -1,7 +1,7 @@ { "ID": "3C62514E3C8644D583E3F12202F11161", "Name": "nexusmods-search", - "Description": "Search Nexusmods.com", + "Description": "Search nexusmods.com", "Author": "Garulf", "Version": "0.2.3", "Language": "python",