diff --git a/.github/workflows/pacnag.yml b/.github/workflows/pacnag.yml index 5ec7ab12e8..067e777da4 100644 --- a/.github/workflows/pacnag.yml +++ b/.github/workflows/pacnag.yml @@ -7,6 +7,7 @@ on: jobs: runjob: + # if: github.repository == 'goatcorp/DalamudPluginsD17' runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 44a802e06c..9fe60dd9c1 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -52,6 +52,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} EXTENDED_IMAGE_LINK: ${{ secrets.EXTENDED_IMAGE_LINK }} + # PLOGON_SECRETS_PK: ${{ secrets.PLOGON_SECRETS_PK }} + # PLOGON_SECRETS_PK_PASSWORD: ${{ secrets.PLOGON_SECRETS_PK_PASSWORD }} XLWEB_KEY: ${{ secrets.XLWEB_KEY }} run: | dotnet run -- \ diff --git a/README.md b/README.md index ede25658c4..4610cb173d 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ 当插件检查组检查你的插件时,他们将检查以下内容。 -- 它是否符合由小组的多个成员商定的[我们的准则](https://ottercorp.github.io/faq/development#q-%E6%88%91%E5%8F%AF%E4%BB%A5%E5%9C%A8%E6%88%91%E7%9A%84%E6%8F%92%E4%BB%B6%E4%B8%AD%E5%81%9A%E4%BB%80%E4%B9%88)? +- 它是否符合由小组的多个成员商定的[我们的准则](https://ottercorp.github.io/faq/development#q-%E6%88%91%E5%8F%AF%E4%BB%A5%E5%9C%A8%E6%88%91%E7%9A%84%E6%8F%92%E4%BB%B6%E4%B8%AD%E5%81%9A%E4%BB%80%E4%B9%88), as agreed upon by multiple members of the group? - 它是否具包含战斗相关功能?如果有,它们是否纯粹是信息性的,并且只显示玩家通常会知道的信息? - 它是否通过了非正式的代码审查? - 它是否安装得很干净? @@ -35,6 +35,7 @@ - 你的插件必须有一个`icon.png`,在`images/`中不大于512x512,不小于64x64。 - 对于普通的ImGui窗口,如设置和实用窗口,你应该使用[Dalamud Windowing API](https://goatcorp.github.io/Dalamud/api/Dalamud.Interface.Windowing.html)。它增强了窗口的一些很好的功能,比如按顺序整合到本地UI。 +- Your plugin's version/assembly version **must not** be based on a timestamp or continually increasing build number. Every time your plugin is built with a specific commit, no matter the time or date, should produce the same version. ### 提交 @@ -65,6 +66,10 @@ 如果你想触发你的 PR 的重建,只需发表一条内容为 `@aonyxbot rebuild` 的评论。 +## Secrets + +If your build process requires secrets, or you want to include a secret in your plugin, use [this page](https://goatcorp.github.io/plogon-secrets/) to encrypt the secret, to be included via your manifest. It will then be made available to your plugin's MSBuild/build script via environment variables, as per the instructions on the page. + --- 提交插件时,请考虑我们的 [可接受使用政策]() 和 [服务条款](),例如详细说明将插件上传到此存储库时您需要授予我们的权利。 diff --git a/stable/BetterMountRoulette/images/icon.png b/hold/stable/BetterMountRoulette/images/icon.png similarity index 100% rename from stable/BetterMountRoulette/images/icon.png rename to hold/stable/BetterMountRoulette/images/icon.png diff --git a/hold/stable/BetterMountRoulette/manifest.toml b/hold/stable/BetterMountRoulette/manifest.toml new file mode 100644 index 0000000000..cc2a43631c --- /dev/null +++ b/hold/stable/BetterMountRoulette/manifest.toml @@ -0,0 +1,6 @@ +[plugin] +repository = "https://github.com/CMDRNuffin/BetterMountRoulette.git" +commit = "dc29ebbb33303263af96e3347573adcd86cb7955" +version = "1.2.0.12" +owners = ["CMDRNuffin"] +changelog = """Fix: Prevent 6.4 crash""" diff --git a/stable/ChatTwo/images/icon.png b/hold/stable/ChatTwo/images/icon.png similarity index 100% rename from stable/ChatTwo/images/icon.png rename to hold/stable/ChatTwo/images/icon.png diff --git a/hold/stable/ChatTwo/manifest.toml b/hold/stable/ChatTwo/manifest.toml new file mode 100644 index 0000000000..aed1465d8c --- /dev/null +++ b/hold/stable/ChatTwo/manifest.toml @@ -0,0 +1,7 @@ +[plugin] +repository = 'https://git.anna.lgbt/anna/ChatTwo.git' +commit = '32e7fbe5863991c1417138307fa2760da52f5262' +owners = [ 'lojewalo' ] +changelog = """\ +- Update for 6.4 +""" diff --git a/stable/ExtraChat/images/icon.png b/hold/stable/ExtraChat/images/icon.png similarity index 100% rename from stable/ExtraChat/images/icon.png rename to hold/stable/ExtraChat/images/icon.png diff --git a/hold/stable/ExtraChat/manifest.toml b/hold/stable/ExtraChat/manifest.toml new file mode 100644 index 0000000000..51642d1730 --- /dev/null +++ b/hold/stable/ExtraChat/manifest.toml @@ -0,0 +1,8 @@ +[plugin] +repository = 'https://git.anna.lgbt/anna/ExtraChat.git' +commit = '0f20595e0fab3daaeb8cd1787c29835e1fe55c14' +owners = [ 'lojewalo' ] +project_path = 'client' +changelog = '''\ +- Fix context menu for 6.4 +''' diff --git a/stable/NoSoliciting/images/icon.png b/hold/stable/NoSoliciting/images/icon.png similarity index 100% rename from stable/NoSoliciting/images/icon.png rename to hold/stable/NoSoliciting/images/icon.png diff --git a/hold/stable/NoSoliciting/manifest.toml b/hold/stable/NoSoliciting/manifest.toml new file mode 100644 index 0000000000..d36ed32cf9 --- /dev/null +++ b/hold/stable/NoSoliciting/manifest.toml @@ -0,0 +1,8 @@ +[plugin] +repository = 'https://git.anna.lgbt/anna/NoSoliciting.git' +commit = 'fae0b28d661f5f8cddddc39062e1638443674ec2' +owners = [ 'lojewalo' ] +project_path = 'NoSoliciting' +changelog = """\ +- API 8 +""" diff --git a/stable/RemotePartyFinder/images/icon.png b/hold/stable/RemotePartyFinder/images/icon.png similarity index 100% rename from stable/RemotePartyFinder/images/icon.png rename to hold/stable/RemotePartyFinder/images/icon.png diff --git a/hold/stable/RemotePartyFinder/manifest.toml b/hold/stable/RemotePartyFinder/manifest.toml new file mode 100644 index 0000000000..f4d76b8c92 --- /dev/null +++ b/hold/stable/RemotePartyFinder/manifest.toml @@ -0,0 +1,6 @@ +[plugin] +repository = 'https://git.anna.lgbt/anna/remote-party-finder.git' +commit = '3ab9670da14f988ee49b45f46e96ae2469f25057' +owners = [ 'lojewalo' ] +project_path = 'csharp/RemotePartyFinder' +changelog = 'API 8' diff --git a/hold/stable/TitleRoulette/manifest.toml b/hold/stable/TitleRoulette/manifest.toml index 9b657ba71c..238e8964ea 100644 --- a/hold/stable/TitleRoulette/manifest.toml +++ b/hold/stable/TitleRoulette/manifest.toml @@ -1,4 +1,4 @@ [plugin] -repository = "https://github.com/carvelli/TitleRoulette.git" -commit = "b29570b432c83ac45d0128605292910b0ed4df18" -owners = ["carvelli"] +repository = "https://github.com/mabako/TitleRoulette.git" +commit = "4878d96b14bb418b4e6d422119011c11af676f31" +owners = ["carvelli", "mabako"] diff --git a/stable/XIVChat/images/icon.png b/hold/stable/XIVChat/images/icon.png similarity index 100% rename from stable/XIVChat/images/icon.png rename to hold/stable/XIVChat/images/icon.png diff --git a/stable/XIVChat/manifest.toml b/hold/stable/XIVChat/manifest.toml similarity index 57% rename from stable/XIVChat/manifest.toml rename to hold/stable/XIVChat/manifest.toml index 8b08b61dfe..a6bd6fb33e 100644 --- a/stable/XIVChat/manifest.toml +++ b/hold/stable/XIVChat/manifest.toml @@ -1,8 +1,8 @@ [plugin] repository = 'https://git.anna.lgbt/XIVChat/XIVChat.git' -commit = '214c90e01584e4c4a017f1b7631abf77d86e6922' -owners = [ 'ascclemens' ] +commit = '48ac0d2a11e1a23c899cc1163fe5fdc3413f4a18' +owners = [ 'lojewalo' ] project_path = 'XIVChatPlugin' changelog = """\ -- API 8 +- 6.4 """ diff --git a/hold/testing/DailyDuty/manifest.toml b/hold/testing/DailyDuty/manifest.toml index fa75425772..d3ab8c6c45 100644 --- a/hold/testing/DailyDuty/manifest.toml +++ b/hold/testing/DailyDuty/manifest.toml @@ -1,5 +1,5 @@ [plugin] repository = "https://github.com/MidoriKami/DailyDuty.git" -commit = "62162d4baf320c62af3daed853210cfe00a8ceb5" +commit = "d2bcad3bbb5e63f93f0ef019dbdef55451cf9ce8" owners = ["MidoriKami"] project_path = "DailyDuty" diff --git a/hold/testing/HotbarHelper/images/icon.png b/hold/testing/HotbarHelper/images/icon.png new file mode 100644 index 0000000000..e70ec28e4b Binary files /dev/null and b/hold/testing/HotbarHelper/images/icon.png differ diff --git a/hold/testing/HotbarHelper/manifest.toml b/hold/testing/HotbarHelper/manifest.toml new file mode 100644 index 0000000000..4791c512e4 --- /dev/null +++ b/hold/testing/HotbarHelper/manifest.toml @@ -0,0 +1,12 @@ +[plugin] +repository = "https://github.com/kiwikahawai/HotbarHelper.git" +commit = "1f8a0c12e751474db31a80328c6882571a2e7bac" +owners = [ + "kiwikahawai", +] +project_path = "HotbarHelper" +version = "0.0.2.3" +changelog = """\ +- Fixed chat messages not respecting ignored actions (thanks Cerrelle). +- Small UI tweak and internal changes. +""" diff --git a/hold/testing/OhGeeCD/images/icon.png b/hold/testing/OhGeeCD/images/icon.png new file mode 100644 index 0000000000..8783b76d91 Binary files /dev/null and b/hold/testing/OhGeeCD/images/icon.png differ diff --git a/hold/testing/OhGeeCD/manifest.toml b/hold/testing/OhGeeCD/manifest.toml new file mode 100644 index 0000000000..3c683449e3 --- /dev/null +++ b/hold/testing/OhGeeCD/manifest.toml @@ -0,0 +1,14 @@ +[plugin] +repository = "https://github.com/kiwikahawai/OhGeeCD.git" +commit = "f9fec6d256121f9cb841ec2f5aeedb4affec5858" +owners = [ + "kiwikahawai", +] +project_path = "OhGeeCD" +version = "0.0.23" +changelog = """\ +**OhGeeCD (return to testing edition)** +- Back after a long hiatus, adopted from darkarchon. +- oGCD assistant providing Text To Speech, (Custom) Sound Effects and unlimited extra bars to visualize and alert you for your oGCDs. +- Mostly tweaks and updates to work with current requirements. +""" \ No newline at end of file diff --git a/hold/testing/Visibility/manifest.toml b/hold/testing/Visibility/manifest.toml new file mode 100644 index 0000000000..3df411dcdc --- /dev/null +++ b/hold/testing/Visibility/manifest.toml @@ -0,0 +1,6 @@ +[plugin] +repository = "https://github.com/SheepGoMeh/VisibilityPlugin.git" +owners = [ "SheepGoMeh",] +project_path = "Visibility" +commit = "6ce84ed800400e645ed05015c0563bfbbefd5455" +changelog = "- Refactored UI code to address disappearing menu issues" diff --git a/plogon_public.gpg b/plogon_public.gpg new file mode 100644 index 0000000000..6344c4bdb7 --- /dev/null +++ b/plogon_public.gpg @@ -0,0 +1,13 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- + +mDMEZGZHEhYJKwYBBAHaRw8BAQdAB6UPjIyydEABtjUkeXYnM8QGPxmvHADfuBIM +MbPcJrO0IVBsbyBQbG8gPGdvYXRzZGV2QHByb3Rvbm1haWwuY29tPoiZBBMWCgBB +FiEEnyQ3sDJRjNvBI+/Z47M+N75ODUoFAmRmRxICGwMFCQPCZwAFCwkIBwICIgIG +FQoJCAsCBBYCAwECHgcCF4AACgkQ47M+N75ODUrlSQEAuGn8W0YZJbwh1A4n7PcQ +jwCKF1hMdJPun67Z4TgBQe8A/3R9ZNaPS6IeCxhYSBjgMR2cvmOCqh13ba5ZvnB0 +pmIMuDgEZGZHEhIKKwYBBAGXVQEFAQEHQCRI9Z0doJy33JjiCECNkLkDah2atfg/ +pRmbC4QuvVk2AwEIB4h+BBgWCgAmFiEEnyQ3sDJRjNvBI+/Z47M+N75ODUoFAmRm +RxICGwwFCQPCZwAACgkQ47M+N75ODUrpHgD9Em3ZKhJyC4SkK6cwKj0q9R3SXfgP +yXv6CXsJgX9au0sA/iu43JddOp168/KcG2E8HCageqacy5U79BnpBVV6seoH +=Z2hh +-----END PGP PUBLIC KEY BLOCK----- diff --git a/pyckager/models.py b/pyckager/models.py index 07184b1977..cde26e2d20 100644 --- a/pyckager/models.py +++ b/pyckager/models.py @@ -38,6 +38,9 @@ class Plugin(BaseModel): project_path: Optional[str] changelog: Optional[str] version: Optional[str] + # There's an opportunity here for additional validation since the value could technically be checked against a gpg + # key, but that will also require somehow informing the validator of the location of the gpg key + secrets: Optional[dict[str, str]] @validator('owners') def validate_owners(cls, owners): diff --git a/stable/ARealmRecorded/images/icon.png b/stable/ARealmRecorded/images/icon.png new file mode 100644 index 0000000000..c6ee583b4e Binary files /dev/null and b/stable/ARealmRecorded/images/icon.png differ diff --git a/stable/ARealmRecorded/manifest.toml b/stable/ARealmRecorded/manifest.toml new file mode 100644 index 0000000000..2d497264eb --- /dev/null +++ b/stable/ARealmRecorded/manifest.toml @@ -0,0 +1,8 @@ +[plugin] +repository = "https://github.com/UnknownX7/ARealmRecorded.git" +commit = "63557dedf8ada6e9943cd191fd7d44d31f0c16cd" +owners = [ "UnknownX7" ] +changelog = ''' +- Moved from testing to stable +- Shortened dates on the replay list +- Fixed an issue with packets failing to save''' diff --git a/stable/Accountant/manifest.toml b/stable/Accountant/manifest.toml index 83a8a1501f..cb14667ea9 100644 --- a/stable/Accountant/manifest.toml +++ b/stable/Accountant/manifest.toml @@ -1,9 +1,8 @@ [plugin] -repository = "https://github.com/Yarukon/Accountant.git" -commit = "08abac60d10e770791c98eaeb26c73dde0a13665" +repository = "https://github.com/Ottermandias/Accountant.git" +commit = "66f083d898849c3abfc2ac8dd2835af11220b19b" owners = [ "Ottermandias", - "Yarukon" ] project_path = "Accountant" changelog = "Updated for Dalamud staging." diff --git a/stable/ActionTimeline/manifest.toml b/stable/ActionTimeline/manifest.toml index 860358a3ee..7bd4929eef 100644 --- a/stable/ActionTimeline/manifest.toml +++ b/stable/ActionTimeline/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/Tischel/ActionTimeline.git" -commit = "7d575d7c72c38be72cb8cbf1b6854ba8f197a220" +commit = "85c6151f90a6a2071c58afd0f26f2c52966964c7" owners = ["Tischel"] project_path = "ActionTimeline" -changelog = "- Added support for Patch 6.3 and Dalamud Api8." \ No newline at end of file +changelog = "- Added support for Patch 6.4." \ No newline at end of file diff --git a/stable/AdventurerInNeed/manifest.toml b/stable/AdventurerInNeed/manifest.toml index 69789107e6..e9a1a646a7 100644 --- a/stable/AdventurerInNeed/manifest.toml +++ b/stable/AdventurerInNeed/manifest.toml @@ -1,7 +1,6 @@ [plugin] -repository = "https://github.com/wozaiha/AdventurerInNeed.git" -commit = "813d21cd2dcea61d08e3fffb96e3931cbb61725c" +repository = "https://github.com/Caraxi/AdventurerInNeed.git" +commit = "a9ad1dc07504682160e5321b8bea505be2df3d22" owners = [ "Caraxi", - "Bluefissure" ] diff --git a/stable/AutoMammet/manifest.toml b/stable/AutoMammet/manifest.toml index cb47331acb..c6da8542d4 100644 --- a/stable/AutoMammet/manifest.toml +++ b/stable/AutoMammet/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/Rietty/AutoMammet.git" -commit = "cd8766a978b2b9aae236457624c05d4d06fbc6d3" +commit = "74402b9919f617d00c8c9ca4b3252d0466a408ac" owners = ["Rietty"] project_path = "/AutoMammet" -changelog = "Update offsets and code for patch 6.3; Added a scrollbar to save space." +changelog = "Fix user reported offset error that occured in sections I do not have access to in island data yet." diff --git a/stable/BetterMountRoulette/manifest.toml b/stable/BetterMountRoulette/manifest.toml deleted file mode 100644 index ccca3e5077..0000000000 --- a/stable/BetterMountRoulette/manifest.toml +++ /dev/null @@ -1,6 +0,0 @@ -[plugin] -repository = "https://github.com/CMDRNuffin/BetterMountRoulette.git" -commit = "b7cff086d2f67021ff3f50e4e2bc1f81df5701f7" -version = "1.2.0.11" -owners = ["CMDRNuffin"] -changelog = """Fix: Remove chat spam""" diff --git a/stable/BetterPlaytime/manifest.toml b/stable/BetterPlaytime/manifest.toml index f2e5f512d7..9953e7fce1 100644 --- a/stable/BetterPlaytime/manifest.toml +++ b/stable/BetterPlaytime/manifest.toml @@ -1,11 +1,8 @@ [plugin] repository = "https://github.com/Infiziert90/BetterPlaytime.git" -commit = "a08b15fee6c7925a0e20d3f804bdb20b5e2a3c83" +commit = "9309db221d1a97ddb8fdd4fb1c1a935e1adea973" owners = [ "Infiziert90", "LittleNightmare", ] project_path = "BetterPlaytime" -changelog = """ -[nofranz] -""" diff --git a/stable/BetterShadows/manifest.toml b/stable/BetterShadows/manifest.toml index ba1296feb7..4a6ddbc5ee 100644 --- a/stable/BetterShadows/manifest.toml +++ b/stable/BetterShadows/manifest.toml @@ -1,10 +1,11 @@ [plugin] repository = "https://github.com/Drahsid/BetterShadows.git" -commit = "d16d4ffb6e3379ef157c69c90a2da291a604ca4b" +commit = "58aab1f3939d7b27d04322f99a6b8b8f2923797c" owners = ["Drahsid"] project_path = "" -changelog = """1.1.4 -- Version should no longer be bogus -- Performance improvements +changelog = """1.1.5 +- Updated for 6.4 +- Shadows resolution applies to more situations +- Fixed bug in editor where the edit override would not apply """ diff --git a/stable/BlueMageHelper/manifest.toml b/stable/BlueMageHelper/manifest.toml index 6c82f9d2a5..be6f9706e9 100644 --- a/stable/BlueMageHelper/manifest.toml +++ b/stable/BlueMageHelper/manifest.toml @@ -1,10 +1,7 @@ [plugin] repository = "https://github.com/Infiziert90/BlueMageHelper.git" -commit = "516ef013f1785d7cf4ea220919b12e463dfbc9a3" +commit = "dadabbd9c4820b2291d483d24eef56583b73b7b6" owners = [ "Infiziert90", ] project_path = "BlueMageHelper" -changelog = """ -+ Check continuously for spell unlocks -""" diff --git a/stable/BozjaBuddy/images/icon.png b/stable/BozjaBuddy/images/icon.png new file mode 100644 index 0000000000..300a016eb0 Binary files /dev/null and b/stable/BozjaBuddy/images/icon.png differ diff --git a/stable/BozjaBuddy/manifest.toml b/stable/BozjaBuddy/manifest.toml new file mode 100644 index 0000000000..23ea3cb474 --- /dev/null +++ b/stable/BozjaBuddy/manifest.toml @@ -0,0 +1,11 @@ +[plugin] +repository = "https://github.com/kaleidocli/BozjaBuddy.git" +commit = "de825a38b68fe7dca691bd8eafeb3f2a0e5cb6be" +owners = ["kaleidocli"] +project_path = "BozjaBuddy" +changelog = """ +Bozja Buddy 1.1.5.3 +- Remove shortcut [Alt] for expanding info-viewer due its inconvenience surpass its merits. +- Fixes incorrect info regarding "Parts and Parcel" FATE +- Fixes incorrect info regarding relic step "One time grind 2" +""" diff --git a/stable/BurntToast/manifest.toml b/stable/BurntToast/manifest.toml index fed2ea557f..88d768fd7f 100644 --- a/stable/BurntToast/manifest.toml +++ b/stable/BurntToast/manifest.toml @@ -1,5 +1,5 @@ [plugin] -repository = 'https://git.anna.lgbt/ascclemens/BurntToast.git' -commit = 'cb77c65dcbe9c78b50dbabe38faaabcd18921adb' -owners = [ 'ascclemens' ] +repository = 'https://git.anna.lgbt/anna/BurntToast.git' +commit = '5c7c751e484d0862e8787f3d441c193c01864cfb' +owners = [ 'lojewalo' ] changelog = 'API 8' diff --git a/stable/CharacterPanelRefined/manifest.toml b/stable/CharacterPanelRefined/manifest.toml index b7486c8cfe..b4c4f94975 100644 --- a/stable/CharacterPanelRefined/manifest.toml +++ b/stable/CharacterPanelRefined/manifest.toml @@ -1,12 +1,8 @@ [plugin] -repository = "https://github.com/zhouhuichen741/ffxiv-characterstatus-refined.git" -commit = "945924b565ea3c4e3d04c66c9a0197ddeb2d3879" -owners = [ - "Kouzukii", - "zhouhuichen741", -] +repository = "https://github.com/Kouzukii/ffxiv-characterstatus-refined.git" +commit = "1513e9afb6d01c2c0d61d16bf93859abca03e0a9" +owners = ["Kouzukii"] project_path = "CharacterPanelRefined" changelog = """ -Fixed a bug that had items being shown as Ilvl synced when they shouldn't be. -Fixed Shifu being assumed to be a 13% speed increase instead of 10% at level 70. -""" +Fixed average damage and healing values broken by patch 6.4 +""" \ No newline at end of file diff --git a/stable/ChatBubbles/manifest.toml b/stable/ChatBubbles/manifest.toml index 355ee839aa..f326ddb7e9 100644 --- a/stable/ChatBubbles/manifest.toml +++ b/stable/ChatBubbles/manifest.toml @@ -1,6 +1,10 @@ [plugin] repository = "https://github.com/Haplo064/ChatBubbles.git" -commit = "6363ac26ef0801aa535f0d63fecf34c7a4cd172e" +commit = "e958472eae0857cb898e35dd5cfb4ed5ff9a90d6" owners = ["Haplo064", "MKhayle"] project_path = "ChatBubbles" -changelog = "Update for 6.3, added API 8 compatibility" \ No newline at end of file +changelog = """top text +### Updated for 6.4 +- Added the `Display friends only` feature in options +- Added the `Display FC only` feature in options +- Added the `Display party only` feature in options""" diff --git a/stable/ChatTwo/manifest.toml b/stable/ChatTwo/manifest.toml deleted file mode 100644 index 78bff583f2..0000000000 --- a/stable/ChatTwo/manifest.toml +++ /dev/null @@ -1,9 +0,0 @@ -[plugin] -repository = 'https://git.anna.lgbt/ascclemens/ChatTwo.git' -commit = 'fcf8e22fcd5b232adb23b58e0373d61fb70fdc17' -owners = [ 'ascclemens' ] -changelog = """\ -- Fix various links not working. -- Fix a crash. -- Fix the search for item in recipes button. -""" diff --git a/stable/ChillFrames/manifest.toml b/stable/ChillFrames/manifest.toml index 4249444219..113c69eb9c 100644 --- a/stable/ChillFrames/manifest.toml +++ b/stable/ChillFrames/manifest.toml @@ -1,5 +1,5 @@ [plugin] repository = "https://github.com/MidoriKami/ChillFrames.git" -commit = "4531f354ebe4b54aaa0c0ecd2cc7e75d40abd178" +commit = "811d4a2843fccccc247f3e132c6359e7d1b3bd4e" owners = ["MidoriKami"] project_path = "ChillFrames" diff --git a/stable/CollectableCalculator/images/icon.png b/stable/CollectableCalculator/images/icon.png new file mode 100644 index 0000000000..f3c9a200cb Binary files /dev/null and b/stable/CollectableCalculator/images/icon.png differ diff --git a/stable/CollectableCalculator/manifest.toml b/stable/CollectableCalculator/manifest.toml new file mode 100644 index 0000000000..20b59bc8cc --- /dev/null +++ b/stable/CollectableCalculator/manifest.toml @@ -0,0 +1,5 @@ +[plugin] +repository = "https://github.com/mabako/CollectableCalculator.git" +commit = "f207da229a2e6a75f729a03f98e93f8d69ac51ff" +owners = ["carvelli", "mabako"] +project_path = "CollectableCalculator" diff --git a/stable/CombatCursorContainment/images/icon.png b/stable/CombatCursorContainment/images/icon.png new file mode 100644 index 0000000000..f6c9a15246 Binary files /dev/null and b/stable/CombatCursorContainment/images/icon.png differ diff --git a/stable/CombatCursorContainment/manifest.toml b/stable/CombatCursorContainment/manifest.toml new file mode 100644 index 0000000000..8d31acbaf0 --- /dev/null +++ b/stable/CombatCursorContainment/manifest.toml @@ -0,0 +1,8 @@ +[plugin] +repository = "https://github.com/Cytraen/CombatCursorContainment.git" +commit = "22ec9568b4396f66df81ecfc407012ebfd5d7af9" +owners = ["Cytraen"] +changelog = """ +- Improve performance, mostly outside of combat. +- Add button to manually toggle cursor lock while auto-lock is disabled. +""" diff --git a/stable/CopyTranslated/images/icon.png b/stable/CopyTranslated/images/icon.png new file mode 100644 index 0000000000..62eda87caa Binary files /dev/null and b/stable/CopyTranslated/images/icon.png differ diff --git a/stable/CopyTranslated/manifest.toml b/stable/CopyTranslated/manifest.toml new file mode 100644 index 0000000000..4e4848afb3 --- /dev/null +++ b/stable/CopyTranslated/manifest.toml @@ -0,0 +1,6 @@ +[plugin] +repository = "https://github.com/kelvin124124/CopyTranslated.git" +commit = "f3c6db34a2465f4f57ba67789cd28e0f306395d3" +owners = ["kelvin124124"] +project_path = "CopyTranslated" +changelog = "Added support to marketboard. Cleaner chat log output." diff --git a/stable/CrossUp/images/icon.png b/stable/CrossUp/images/icon.png new file mode 100644 index 0000000000..655e5d59b2 Binary files /dev/null and b/stable/CrossUp/images/icon.png differ diff --git a/stable/CrossUp/manifest.toml b/stable/CrossUp/manifest.toml new file mode 100644 index 0000000000..f12cb91df8 --- /dev/null +++ b/stable/CrossUp/manifest.toml @@ -0,0 +1,9 @@ +[plugin] +repository = "https://github.com/ItsBexy/CrossUp.git" +commit = "9ba9a43fafe7c8154a3bdd62f5b1fa356b68be54" +owners = [ + "ItsBexy", +] +changelog = """ +Fixed a bug wherein some of the controls for positioning the Expanded Hold bars were faulty (whoops!) +""" diff --git a/stable/CurrencyAlert/manifest.toml b/stable/CurrencyAlert/manifest.toml index 56147f2dcb..7948858c16 100644 --- a/stable/CurrencyAlert/manifest.toml +++ b/stable/CurrencyAlert/manifest.toml @@ -1,21 +1,5 @@ [plugin] -repository = "https://github.com/Lharz/xiv-currency-alert.git" -commit = "1f5c326dfbc56b9e63ab588706c258fc4a1e6276" -owners = ["Lharz"] +repository = "https://github.com/MidoriKami/CurrencyAlert.git" +commit = "f51155212736fb421fc7c74c3246d36cd0f42c1c" +owners = ["MidoriKami", "Lharz"] project_path = "CurrencyAlert" -changelog = """ -=== 0.5.0.1 -- FR, DE and JP translations -=== 0.5.0.0 -Version provided by MidoriKami -- Configuration remade and much more clean now -- More configuration options (such as minimal display, window lock, etc) -- Dynamic currency display, so further game updates shouldn't need a plugin update -- Base code for translations (soon...) -=== 0.4.0.0 -- Added new Tomestones of Causality -- Added icons for currencies -- Added an option to lock the alert window -- Revamped the configuration UI a bit -- Revamped the user configurations code internally, which unfortunately resulted in an inevitable configuration reset -""" diff --git a/stable/DailyDuty/manifest.toml b/stable/DailyDuty/manifest.toml index 14eb208380..69b2be2275 100644 --- a/stable/DailyDuty/manifest.toml +++ b/stable/DailyDuty/manifest.toml @@ -1,6 +1,5 @@ [plugin] -repository = "https://github.com/NiGuangOwO/DailyDuty.git" -commit = "7511047697d05c4183df895d43f17093d530cfdd" -owners = ["MidoriKami", "NiGuangOwO"] +repository = "https://github.com/MidoriKami/DailyDuty.git" +commit = "d4bcdb72cabf99c2aa5312fb2e307e8835ccd5c2" +owners = ["MidoriKami"] project_path = "DailyDuty" -changelog = "更新至最新版本,修正翻译" diff --git a/stable/Dalamud.DiscordBridge/manifest.toml b/stable/Dalamud.DiscordBridge/manifest.toml index 8f2abed6dc..eb3e6d7dd2 100644 --- a/stable/Dalamud.DiscordBridge/manifest.toml +++ b/stable/Dalamud.DiscordBridge/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/reiichi001/Dalamud.DiscordBridge.git" -commit = "80929aa4804a2b74d0f93fb50561d95e56835bab" +commit = "c1e775e3f4b00a23714b685fb9c0ee1e365da2e9" owners = [ "reiichi001", "goaaats", @@ -10,4 +10,9 @@ changelog = """ Adds the following new commands: - `xl!toggleembed` - Switches between Webhooks and classical Embeds - `xl!togglesender` - Toggles whether or not to include the sender name in the message content + +Adds a bandaid for Discord's new username changes. Remember to thank Discord for removing discrimination from their platform. The bot also always accepted user ID numbers, but now it's explicitly mentioned in the setup window. + +Adds the following new commands: +- xl!toggledefaultnameavatar - Switches webhook mode to use a generic bot username and avatar so messages stack. Should be combined with xl!togglesender or you will have no idea who said what. """ \ No newline at end of file diff --git a/stable/Dalamud.LoadingImage/manifest.toml b/stable/Dalamud.LoadingImage/manifest.toml index 7cbe700a47..b905bfb8d2 100644 --- a/stable/Dalamud.LoadingImage/manifest.toml +++ b/stable/Dalamud.LoadingImage/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/goaaats/Dalamud.LoadingImage.git" -commit = "1079128a479265fa71001c6d8adafd44dbfaa6af" +commit = "ec68d5f0cd20c8f149b19af9570c4c9642801d16" owners = [ "goaaats", ] diff --git a/stable/DamageInfoPlugin/manifest.toml b/stable/DamageInfoPlugin/manifest.toml index 8190fdffe0..73555128f9 100644 --- a/stable/DamageInfoPlugin/manifest.toml +++ b/stable/DamageInfoPlugin/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/lmcintyre/DamageInfoPlugin.git" -commit = "2fc448122513d8107731364a3ab1aa7fb64baf85" +commit = "bde1bef41b17170102b669a19f332263ccdce059" owners = [ "lmcintyre", ] diff --git a/stable/DeathRecap/manifest.toml b/stable/DeathRecap/manifest.toml index 51ff59de04..70335a6388 100644 --- a/stable/DeathRecap/manifest.toml +++ b/stable/DeathRecap/manifest.toml @@ -1,8 +1,9 @@ [plugin] repository = "https://github.com/Kouzukii/ffxiv-deathrecap.git" -commit = "b783700c606ce5760bf7bd4a5cb06ddcefbb4ca5" +commit = "303394e6707b9fc1159c1b73daab1277d9c57b18" owners = ["Kouzukii"] project_path = "" changelog = """ -- Add option to disable in PvP +Now uses the "System Message" chat type as default to avoid spamming all chat windows. +Also fixed some chat types missing a space between player name and "has". """ diff --git a/stable/DeepDungeonDex/manifest.toml b/stable/DeepDungeonDex/manifest.toml index c97916d521..a14cb00126 100644 --- a/stable/DeepDungeonDex/manifest.toml +++ b/stable/DeepDungeonDex/manifest.toml @@ -2,6 +2,6 @@ repository = "https://github.com/wolfcomp/DeepDungeonDex.git" owners = [ "wolfcomp" ] project_path = "DeepDungeonDex" -commit = "59d35e23abbe5e8b2424c569fdeb6a605b23284f" -changelog = "### 2.5.5 (2023-04-18)\n\n\n### Bug Fixes\n\n* opacity not being set during load (a8ff4ba)" -version = "2.5.5" +commit = "6f3333b1369274d62ed74fa3afa844acddafb0ce" +changelog = "### 2.7.1 (2023-09-04)\n\n\n### Bug Fixes\n\n* dont open debug window on init (50b123a)" +version = "2.7.1" diff --git a/stable/DeepDungeonTracker/manifest.toml b/stable/DeepDungeonTracker/manifest.toml index ab1e9d1413..87989d8365 100644 --- a/stable/DeepDungeonTracker/manifest.toml +++ b/stable/DeepDungeonTracker/manifest.toml @@ -1,8 +1,11 @@ [plugin] repository = "https://github.com/marconsou/deep-dungeon-tracker.git" -commit = "04c25733b44f910fbe241f095e4272995a3ebc39" +commit = "9680b66cd5a783d26398379c841d854019cc16c1" owners = ["marconsou"] project_path = "DeepDungeonTracker" changelog = """ -- Added the option [Improved Magicite Kills Detection], under General tab > Testing section. +- Added [Score Window Kills] for HoH. Check General tab >>> Information section for more info. +- The option [Improved Magicite Kills Detection] is enabled by default (always enabled for now). +- The time for checking the [Time Bonus] was increased by 1 second. (from 30:01 to 30:02). +- Small tweaks. """ diff --git a/stable/DelvUI/manifest.toml b/stable/DelvUI/manifest.toml index 54a43a804f..1fe41a4e35 100644 --- a/stable/DelvUI/manifest.toml +++ b/stable/DelvUI/manifest.toml @@ -1,5 +1,5 @@ [plugin] repository = "https://github.com/DelvUI/DelvUI.git" -commit = "7ce0a1f9e0121dd1c993fd335a69e697202959a5" +commit = "3a7fc684060328035c1b13585e1ce1d3d6b6598c" owners = ["Tischel"] project_path = "DelvUI" diff --git a/stable/Distance/manifest.toml b/stable/Distance/manifest.toml index 9186802bbe..133524ad46 100644 --- a/stable/Distance/manifest.toml +++ b/stable/Distance/manifest.toml @@ -1,12 +1,15 @@ [plugin] -repository = "https://github.com/wozaiha/Distance.git" -commit = "d5792e81184509f72b73ad7a81df3358c446c7f8" +repository = "https://github.com/PunishedPineapple/Distance.git" +commit = "a28ed6cc29f61d56d91cad5a814fc54317ea8565" owners = [ "PunishedPineapple", - "MapleRecall", - "wozaiha" ] project_path = "Distance" changelog = ''' -- Reduce potential for log spamming. +- Separated the aggro arc from the aggro distance readout. Some options are still shared, but you can now set it to use one without the other. +- Made automatic updating of aggro data on by default *for new installations*. If you have already loaded the plugin at least once, this change will have no effect. Anyone can toggle the automatic update setting in the plugin configuration window at any time. +- Workaround for enemies with RSV'd names. +- Fixed some minor issues with the aggro data updater and improved logging. +- Improved the configuration window. +- Added a link to information about how distances work in the game. ''' \ No newline at end of file diff --git a/stable/DutyTracker/manifest.toml b/stable/DutyTracker/manifest.toml index 07c003edb0..856719180b 100644 --- a/stable/DutyTracker/manifest.toml +++ b/stable/DutyTracker/manifest.toml @@ -1,5 +1,6 @@ [plugin] repository = "https://github.com/Xpahtalo/DutyTracker.git" -commit = "d208f26578a8cbec077c43d6e228a5adbcfa656a" +commit = "831ad26bd9cfba471043d7ec511de0f477a53906" owners = ["Xpahtalo"] project_path = "DutyTracker" +changelog = """Fixed a minor display bug introduced by me fixing a minor display bug in the last patch.""" \ No newline at end of file diff --git a/stable/EasyEyes/manifest.toml b/stable/EasyEyes/manifest.toml index 849b347e61..83d85951f6 100644 --- a/stable/EasyEyes/manifest.toml +++ b/stable/EasyEyes/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/0ceal0t/EasyEyes.git" -commit = "054fef3e0dca9bab72500beef6b1ee08ae26340b" +commit = "0f3367fb73c3434d42e822ad69b27347b141cd23" owners = [ "0ceal0t", ] diff --git a/stable/Echoglossian/manifest.toml b/stable/Echoglossian/manifest.toml index a5338a8292..eef2b22f25 100644 --- a/stable/Echoglossian/manifest.toml +++ b/stable/Echoglossian/manifest.toml @@ -1,7 +1,7 @@ [plugin] repository = "https://github.com/lokinmodar/Echoglossian.git" -commit = "dca95702a188c45974809b52b4601f5585f11688" +commit = "694c6569531b33322c83dcf910bcc602c9e9b68" owners = [ "lokinmodar", ] -changelog = "Fixed for patch 6.3!" \ No newline at end of file +changelog = "New 'Misc Settings' tab and internal fixes" \ No newline at end of file diff --git a/stable/EnemyListDebuffs/manifest.toml b/stable/EnemyListDebuffs/manifest.toml index fdf11168aa..fe41ba0da3 100644 --- a/stable/EnemyListDebuffs/manifest.toml +++ b/stable/EnemyListDebuffs/manifest.toml @@ -1,7 +1,7 @@ [plugin] repository = "https://github.com/Felys1998/EnemyListDebuffs.git" -commit = "bca29d016e997b94b6e71be7aa1cef28b3bd52cd" +commit = "b19f33570c37bb5fbf5261e6d70f9c1ebf27cd58" owners = [ "Felys1998", ] -changelog = "6.2 Arraydata fixed" \ No newline at end of file +changelog = "6.4 updates" diff --git a/stable/EurekaHelper/images/icon.png b/stable/EurekaHelper/images/icon.png index 631f01da3d..7fa708209a 100644 Binary files a/stable/EurekaHelper/images/icon.png and b/stable/EurekaHelper/images/icon.png differ diff --git a/stable/EurekaHelper/manifest.toml b/stable/EurekaHelper/manifest.toml index 568d93ce41..2d92ecbb65 100644 --- a/stable/EurekaHelper/manifest.toml +++ b/stable/EurekaHelper/manifest.toml @@ -1,15 +1,12 @@ [plugin] repository = "https://github.com/snooooowy/EurekaHelper.git" -commit = "08a5ce2968756707e28cbcf20ab12f5e48482c4a" +commit = "dce6cd8fde87ef621294b262ed6d6e3b8ce514a1" owners = ["snooooowy"] project_path = "EurekaHelper" changelog = """ -Relic Helper -- Now allows you to mark relic as complete - Elemental Manager -- Add crowdsourced known positions to plugin +- Added crowdsourced positions -Opt-in and assist to crowdsource all the Elemental positions -Post new positions on GitHub pinned issue or through Discord DM +Misc +- Updated contact information """ \ No newline at end of file diff --git a/stable/EurekaTrackerAutoPopper/manifest.toml b/stable/EurekaTrackerAutoPopper/manifest.toml index cac3cc4e63..7ffbd16d55 100644 --- a/stable/EurekaTrackerAutoPopper/manifest.toml +++ b/stable/EurekaTrackerAutoPopper/manifest.toml @@ -1,12 +1,8 @@ [plugin] repository = "https://github.com/Infiziert90/EurekaTrackerAutoPopper.git" -commit = "21e252bb785a8bb80f398b4368d980a69edaed9e" +commit = "8fd090a53737c0b6bdcd161bb66f07e1d1275b8d" owners = [ "Infiziert90", "electr0sheep", ] project_path = "EurekaTrackerAutoPopper" -changelog = """ -[New] -+ Added log window, a small window to help with your weekly log (/ellog) -""" diff --git a/stable/ExpandedSearchInfo/manifest.toml b/stable/ExpandedSearchInfo/manifest.toml index 6f7b6ef9ab..65387f4de2 100644 --- a/stable/ExpandedSearchInfo/manifest.toml +++ b/stable/ExpandedSearchInfo/manifest.toml @@ -1,5 +1,5 @@ [plugin] -repository = 'https://git.anna.lgbt/ascclemens/ExpandedSearchInfo.git' -commit = '1a00d2ce19ebb095a5760437d455783e0bb66057' -owners = [ 'ascclemens' ] +repository = 'https://git.anna.lgbt/anna/ExpandedSearchInfo.git' +commit = '672e83e186542348c3eb1c06e04ecd96a5617448' +owners = [ 'lojewalo' ] changelog = '.NET 7' diff --git a/stable/ExtraChat/manifest.toml b/stable/ExtraChat/manifest.toml deleted file mode 100644 index 3141811127..0000000000 --- a/stable/ExtraChat/manifest.toml +++ /dev/null @@ -1,8 +0,0 @@ -[plugin] -repository = 'https://git.anna.lgbt/ascclemens/ExtraChat.git' -commit = 'd5108fb0456167216be94e934ad3eff02a8fc700' -owners = [ 'ascclemens' ] -project_path = 'client' -changelog = '''\ -- API 8 -''' diff --git a/stable/FCNameColor/manifest.toml b/stable/FCNameColor/manifest.toml index f3b7b1fa0c..c68538997d 100644 --- a/stable/FCNameColor/manifest.toml +++ b/stable/FCNameColor/manifest.toml @@ -1,8 +1,8 @@ [plugin] repository = "https://github.com/WesselKuipers/FCNameColor.git" -commit = "5bfadc08f3e269b954180854d06c37d0ea5e088a" +commit = "6d57f2206b9d0090f6222ff9da2993fdb544bd74" owners = ["WesselKuipers"] project_path = "FCNameColor" changelog = """ -- Fix issue where settings were not correctly being read, causing names abbreviations not matching up with the user's settings. +- Update for 6.4 """ diff --git a/stable/Ffxiv2Mqtt/manifest.toml b/stable/Ffxiv2Mqtt/manifest.toml index 3bd364c107..bfa49b9904 100644 --- a/stable/Ffxiv2Mqtt/manifest.toml +++ b/stable/Ffxiv2Mqtt/manifest.toml @@ -1,8 +1,8 @@ [plugin] repository = "https://github.com/Xpahtalo/Ffxiv2Mqtt.git" -commit = "ce9b427ae3503cdbf639c57b721abe4cdbf515bc" +commit = "8f989ab874b3df3549b92185977a6e3dcae83373" owners = [ "Xpahtalo", ] project_path = "ffxiv2Mqtt" -changelog = """Patch 6.3 support.""" \ No newline at end of file +changelog = """Updated dependencies.""" \ No newline at end of file diff --git a/stable/FlyTextFilter/manifest.toml b/stable/FlyTextFilter/manifest.toml index 4cdcfe3361..113a8e87c4 100644 --- a/stable/FlyTextFilter/manifest.toml +++ b/stable/FlyTextFilter/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/Aireil/FlyTextFilter.git" -commit = "e9c196a1cf039da472abd00eb94f9bd492cb0699" +commit = "4fcdd606420a675b986e41ba218cfc1108ce19c4" owners = [ "Aireil", ] diff --git a/stable/G4EUkrChatSupport/images/.gitkeep b/stable/G4EUkrChatSupport/images/.gitkeep new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/stable/G4EUkrChatSupport/images/.gitkeep @@ -0,0 +1 @@ + diff --git a/testing/live/G4EUkrChatSupport/images/icon.png b/stable/G4EUkrChatSupport/images/icon.png similarity index 100% rename from testing/live/G4EUkrChatSupport/images/icon.png rename to stable/G4EUkrChatSupport/images/icon.png diff --git a/testing/live/G4EUkrChatSupport/manifest.toml b/stable/G4EUkrChatSupport/manifest.toml similarity index 77% rename from testing/live/G4EUkrChatSupport/manifest.toml rename to stable/G4EUkrChatSupport/manifest.toml index 0ad40c9b0b..2f7f504af3 100644 --- a/testing/live/G4EUkrChatSupport/manifest.toml +++ b/stable/G4EUkrChatSupport/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/justscribe/g4e_ukrchatsupport.git" -commit = "3e714cfbac3686feb74b6e14beab20bdef4c9907" +commit = "0b59c2190e2ff6ea5d8cdac1d8e23294bd4e6d66" owners = ["justscribe"] project_path = "G4EUkrChatSupport" changelog = "Fix for ConfigWindow size." diff --git a/stable/GatherBuddy/manifest.toml b/stable/GatherBuddy/manifest.toml index c743f509d7..3d4294d4ad 100644 --- a/stable/GatherBuddy/manifest.toml +++ b/stable/GatherBuddy/manifest.toml @@ -1,8 +1,7 @@ [plugin] -repository = "https://github.com/wozaiha/GatherBuddy.git" -commit = "a675e10513d222e224319b61dfe46ca473bca814" +repository = "https://github.com/Ottermandias/GatherBuddy.git" +commit = "0a5a32069aa28d4d944a84d5708a2ea93fa8e669" owners = [ "Ottermandias", - "wozaiha", ] project_path = "GatherBuddy" diff --git a/stable/GentleTouch/manifest.toml b/stable/GentleTouch/manifest.toml index 215f823459..7591ad0192 100644 --- a/stable/GentleTouch/manifest.toml +++ b/stable/GentleTouch/manifest.toml @@ -1,8 +1,8 @@ [plugin] repository = "https://github.com/fitzchivalrik/gentletouch.git" -commit = "b39d9bcc9cac9f903196f058fc166a9922ef3256" +commit = "44a0c17b2af8045c827284fa05c62bfe148fc649" owners = ["fitzchivalrik"] project_path = "GentleTouch" changelog = """ -- fix(DS/4): No more auto-repeat when holding Create/PSHome +- fix: Update for 6.4 """ diff --git a/stable/Glamaholic/manifest.toml b/stable/Glamaholic/manifest.toml index 41f4d6c889..213c1e34e1 100644 --- a/stable/Glamaholic/manifest.toml +++ b/stable/Glamaholic/manifest.toml @@ -1,5 +1,5 @@ [plugin] -repository = 'https://git.anna.lgbt/ascclemens/Glamaholic.git' -commit = 'd9b283e7fd4865b0e7b518405f5fcb6b52235d70' -owners = [ 'ascclemens' ] -changelog = 'API 8' +repository = 'https://git.anna.lgbt/anna/Glamaholic.git' +commit = 'ff7a529b5aba4befab52b7f59845ad34ee12354e' +owners = [ 'lojewalo' ] +changelog = 'Fix for creating saved plates from the fitting room.' diff --git a/stable/Globetrotter/manifest.toml b/stable/Globetrotter/manifest.toml index 2b5e8632f3..e5e4ba5888 100644 --- a/stable/Globetrotter/manifest.toml +++ b/stable/Globetrotter/manifest.toml @@ -1,5 +1,5 @@ [plugin] -repository = 'https://git.anna.lgbt/ascclemens/Globetrotter.git' -commit = '2cb48ff73fcb84190d0b410e794c7f9ac4125d4a' -owners = [ 'ascclemens' ] +repository = 'https://git.anna.lgbt/anna/Globetrotter.git' +commit = 'c21918fe9476e30b4f48ee951120970ae40e5c06' +owners = [ 'lojewalo' ] changelog = 'API 8' diff --git a/stable/GoodFriend/manifest.toml b/stable/GoodFriend/manifest.toml index 21766605b5..23f946ae7c 100644 --- a/stable/GoodFriend/manifest.toml +++ b/stable/GoodFriend/manifest.toml @@ -1,10 +1,7 @@ [plugin] -repository = "https://github.com/BitsOfAByte/GoodFriend.git" -commit = "92c2a23c83cb72bbbeabdd0be2930a074df9573b" +repository = "https://github.com/Blooym/GoodFriend.git" +commit = "19a0020080c93fbad89d937431e3b0be4d181856" owners = [ - "BitsOfAByte", + "Blooym", ] -project_path = "GoodFriend.Plugin" -changelog = """ -- Optimizations and improvements -""" +project_path = "src/Plugin" diff --git a/stable/HimbeertoniRaidTool/manifest.toml b/stable/HimbeertoniRaidTool/manifest.toml index 18c1a28505..4a75cca6c5 100644 --- a/stable/HimbeertoniRaidTool/manifest.toml +++ b/stable/HimbeertoniRaidTool/manifest.toml @@ -2,7 +2,12 @@ repository = "https://github.com/Koenari/HimbeertoniRaidTool.git" owners = [ "Koenari" ] project_path = "HimbeertoniRaidTool" -commit = "d943dbd54078a0453e427460af3302ad2e5431ee" +commit = "db8a4175507b3e8411afae0da6d6fd7b68cc57ff" changelog = """ -Bugfix: General configuration is saved correctly -Bugfix: Updating gear is working again""" +Ui: You can now manage jobs directly in solo and detail view +Ui: Old Examine button is now Quick Compare +LootRule: Fixed "Can Buy" +Options: reworked Ui for loot rules +LootSession: You can ignore players/jobs based on certain rules +LootMaster: you can now edit name + role priority for the Solo group +Translation: Updated French translation (Thanks to Arganier)""" diff --git a/stable/Honorific/manifest.toml b/stable/Honorific/manifest.toml index b78f9ef9c4..aa1f2a847a 100644 --- a/stable/Honorific/manifest.toml +++ b/stable/Honorific/manifest.toml @@ -1,4 +1,4 @@ [plugin] repository = "https://github.com/Caraxi/Honorific.git" owners = [ "Caraxi" ] -commit = "310647da05c98f2f447ccc133b3754a63dca1f61" +commit = "d83fedfc3309ae973e78fa7d4d33fd24be20c1be" diff --git a/stable/Housemate/manifest.toml b/stable/Housemate/manifest.toml index c8351d5a7e..fe6ef861b8 100644 --- a/stable/Housemate/manifest.toml +++ b/stable/Housemate/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/lmcintyre/Housemate.git" -commit = "c59d5d53f4b0489e30bbddb2fc336de4088af183" +commit = "8ed53cd99660c4cbc2356368777020bcea9a3e8e" owners = [ "lmcintyre", ] diff --git a/stable/HuntBuddy/manifest.toml b/stable/HuntBuddy/manifest.toml index 595d434cc2..b40380ef00 100644 --- a/stable/HuntBuddy/manifest.toml +++ b/stable/HuntBuddy/manifest.toml @@ -1,5 +1,6 @@ [plugin] repository = "https://github.com/SheepGoMeh/HuntBuddy.git" -commit = "fe63fcd4ac1c5853d7f5deeb6e9d0613e95a48cf" -owners = ["SheepGoMeh"] -project_path = "HuntBuddy" \ No newline at end of file +owners = [ "SheepGoMeh", "PrincessRTFM",] +project_path = "HuntBuddy" +commit = "45804a5524fd0c6e1fb8e4dbc17c99755248e4d1" +changelog = "The `/phb next` command should no longer break when only one mark is\nfound outside of the current zone, and should handle elite marks in a\nsane and safe way that prioritises them last in the current zone, rather\nthan risking breaking because they don't have location data.\n\nAlso bumped DalamudPackager to latest (2.1.11) at the same time." diff --git a/stable/HuntHelper/manifest.toml b/stable/HuntHelper/manifest.toml index c67eff4900..f176ec7cdb 100644 --- a/stable/HuntHelper/manifest.toml +++ b/stable/HuntHelper/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/imaginary-png/HuntHelper.git" -commit = "6cc5d77bc6ad94223ae28ee7dba2d0ef3dd5f5ff" +commit = "1b502f26d8b30461e707fcc676f061f12d7b163a" owners = [ "imaginary-png", ] diff --git a/stable/Hunty/manifest.toml b/stable/Hunty/manifest.toml index 2811ecc58d..30e8b4f4a7 100644 --- a/stable/Hunty/manifest.toml +++ b/stable/Hunty/manifest.toml @@ -1,12 +1,10 @@ [plugin] -repository = "https://github.com/LittleNightmare/Hunty.git" -commit = "c34ad05422bb245ebb30734d740036737c0ec2c9" +repository = "https://github.com/Infiziert90/Hunty.git" +commit = "c60242fb9a3de12a80d32533545372c8673550e0" owners = [ "Infiziert90", - "LittleNightmare" ] project_path = "Hunty" changelog = """ -- 修复极少数情况下无法传送的问题 -- 修复错误的怪物坐标 +nofranz """ diff --git a/stable/InventorySearchBar/manifest.toml b/stable/InventorySearchBar/manifest.toml index 9e3c238a3a..a0922d2b02 100644 --- a/stable/InventorySearchBar/manifest.toml +++ b/stable/InventorySearchBar/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/Tischel/InventorySearchBar.git" -commit = "9c0637049ce7f1c2e55df212dc0af811812d98a7" +commit = "649141bd643d7fb0e0bd3bf9c0e2306626584305" owners = ["Tischel"] project_path = "InventorySearchBar" -changelog = "- Added support for Patch 6.35." \ No newline at end of file +changelog = "- Added support for Patch 6.4." \ No newline at end of file diff --git a/stable/InventoryTools/manifest.toml b/stable/InventoryTools/manifest.toml index b619ae5b70..cd73b401fb 100644 --- a/stable/InventoryTools/manifest.toml +++ b/stable/InventoryTools/manifest.toml @@ -1,19 +1,12 @@ [plugin] repository = "https://github.com/Critical-Impact/InventoryTools.git" -commit = "3dfd116989bfb070ef993a6b1c842fb70021f17b" +commit = "6e89f14a46fd1b66f48c9fb361fa83ed97d28e90" owners = [ "Critical-Impact", ] project_path = "InventoryTools" -version = "1.4.1.4" +version = "1.6.1.6" changelog = """\ -Retainer Venture Column/Filter -Real Money Shop Column/Filter -Added a window for viewing ventures + window for individual ventures -Added a new search operator, having a single ! will show all items that are not empty -Gil is now right aligned for easier reading -Added more mob spawn data(thanks users for contributing) -Fixed a copy json to clipboard crash for craft lists -Added a Item ID column -Added a Source World column +**New Features** +- Added in a gathered by filter and column """ diff --git a/stable/ItemSearchPlugin/manifest.toml b/stable/ItemSearchPlugin/manifest.toml index dc64bec002..436db30f71 100644 --- a/stable/ItemSearchPlugin/manifest.toml +++ b/stable/ItemSearchPlugin/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/Caraxi/ItemSearchPlugin.git" -commit = "cced26ccecd5fb36ba234e6c479f1e246e491b4d" +commit = "bd95fcdc671426b11113d9aaebf6b2df684976b6" owners = [ "Caraxi", ] diff --git a/stable/ItemVendorLocation/manifest.toml b/stable/ItemVendorLocation/manifest.toml index 78e43411ec..910cfd4b01 100644 --- a/stable/ItemVendorLocation/manifest.toml +++ b/stable/ItemVendorLocation/manifest.toml @@ -1,12 +1,17 @@ [plugin] repository = "https://github.com/electr0sheep/ItemVendorLocation.git" -commit = "8e5552f5f3371e619642499d92dd8f61808a6489" +commit = "2a6ca2328fd2f84913e6da9a54f960f330bbace5" owners = [ "electr0sheep", - "NukoOoOoOoO", + "Nukoooo", ] project_path = "ItemVendorLocation" changelog = """ -- Fixed issue with Filter GC Results option +- Add Chinese localization +- Fix for Aenc Ose shop name +- Remove Garland Tools data source +- Fix GC bugs (hopefully) +- Add Keybinding option to switch between single and multiple results +- Manually add a few NPC locations """ -version = "2.2.0.1" +version = "2.3.0.0" diff --git a/stable/JobBars/manifest.toml b/stable/JobBars/manifest.toml index 7dba3fc846..f8e200507b 100644 --- a/stable/JobBars/manifest.toml +++ b/stable/JobBars/manifest.toml @@ -1,6 +1,6 @@ [plugin] -repository = "https://github.com/wozaiha/JobBars.git" -commit = "ec9d56a458fc3059bf788eb3a3c949eeee0ee54d" +repository = "https://github.com/0ceal0t/JobBars.git" +commit = "0440468ce9f37516b263dfed71e73aaab213dc54" owners = [ "0ceal0t", ] diff --git a/stable/LogogramHelper/manifest.toml b/stable/LogogramHelper/manifest.toml index 70b5926ffa..5724f25cfe 100644 --- a/stable/LogogramHelper/manifest.toml +++ b/stable/LogogramHelper/manifest.toml @@ -1,8 +1,8 @@ [plugin] repository = "https://github.com/apetih/LogogramHelper.git" -commit = "11e8d1dda3438ce917c5a7f79b3f09e17496a85e" +commit = "ccfcc07c4dec82dc7d77c3f0d3afb1d6c5814a24" owners = ["apetih"] project_path = "LogogramHelper" changelog = """ -- Fixed recipe for Wisdom of the Fiendhunter. +- Added text input for filtering logos actions by name """ diff --git a/stable/MOAction/manifest.toml b/stable/MOAction/manifest.toml index ea5e61aacd..1e224d5350 100644 --- a/stable/MOAction/manifest.toml +++ b/stable/MOAction/manifest.toml @@ -2,7 +2,7 @@ repository = "https://github.com/attickdoor/MOActionPlugin.git" # The commit to check out and build from the repository. -commit = "3810f84dcabbba0ce3da0542cc85184cd791f720" +commit = "b0e56430ebac817320d6769f6bd98febff4bf67d" # The people authorised to update this manifest (e.g. who can deploy updates). These are GitHub usernames. owners = [ @@ -15,5 +15,5 @@ project_path = "MOAction" # The changelog for this version. Will be shown in-game, as well on the Goat Place Discord. changelog = """\ - 6.3 update\ + 6.4 update\ """ diff --git a/stable/MacroRecorded/images/icon.png b/stable/MacroRecorded/images/icon.png new file mode 100644 index 0000000000..9b312d5092 Binary files /dev/null and b/stable/MacroRecorded/images/icon.png differ diff --git a/stable/MacroRecorded/manifest.toml b/stable/MacroRecorded/manifest.toml new file mode 100644 index 0000000000..1dea57950a --- /dev/null +++ b/stable/MacroRecorded/manifest.toml @@ -0,0 +1,9 @@ +[plugin] +repository = "https://github.com/danielbrenom/MacroRecorded.git" +commit = "053dcfd3d5f15befdfa97bd791cae3055c5ada50" +owners = [ + "danielbrenom", +] +project_path = "MacroRecorded" +changelog = """- Patch 6.4 package updates + """ diff --git a/stable/Mappy/images/icon.png b/stable/Mappy/images/icon.png new file mode 100644 index 0000000000..79ef8ff233 Binary files /dev/null and b/stable/Mappy/images/icon.png differ diff --git a/stable/Mappy/manifest.toml b/stable/Mappy/manifest.toml new file mode 100644 index 0000000000..72104fde1a --- /dev/null +++ b/stable/Mappy/manifest.toml @@ -0,0 +1,5 @@ +[plugin] +repository = "https://github.com/MidoriKami/Mappy.git" +commit = "a7c8a8ad4e7a7766be2b09a3b6ded6a9fb1f1773" +owners = ["MidoriKami"] +project_path = "Mappy" diff --git a/stable/MarketBoardPlugin/images/icon.png b/stable/MarketBoardPlugin/images/icon.png new file mode 100644 index 0000000000..407e514ff6 Binary files /dev/null and b/stable/MarketBoardPlugin/images/icon.png differ diff --git a/stable/MarketBoardPlugin/manifest.toml b/stable/MarketBoardPlugin/manifest.toml index aff68fd8e8..2a99f66499 100644 --- a/stable/MarketBoardPlugin/manifest.toml +++ b/stable/MarketBoardPlugin/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/fmauNeko/MarketBoardPlugin.git" -commit = "641fe694cfb12f25b7612fd044a680c4d6705a05" +commit = "5410a1f874a8f3cc94d6b5ad17a0e216522131e7" owners = ["fmauNeko"] project_path = "MarketBoardPlugin" -changelog = "- Added Advanced class filter\n- Minimum quantity in Advanced Search\n- Shopping list fixes: Correct world attribution + History total price fix\n- Made compatible with API 8 / .NET 7" +changelog = "- Open selected item page when clicking Universalis button\n- Marketboard item caching\n- Universalis fetching data prompt\n- Recent history option\n- Updated Dependencies for patch 6.4" \ No newline at end of file diff --git a/stable/MemoryMarker/manifest.toml b/stable/MemoryMarker/manifest.toml index 9b93472412..eada356950 100644 --- a/stable/MemoryMarker/manifest.toml +++ b/stable/MemoryMarker/manifest.toml @@ -1,5 +1,5 @@ [plugin] repository = "https://github.com/MidoriKami/MemoryMarker.git" -commit = "605f08546c97037a321345841e9c84a9c05e087c" +commit = "03027a8228b2d9c5b29ba077dd922411a9bc166c" owners = ["MidoriKami"] project_path = "MemoryMarker" diff --git a/stable/Messenger/images/icon.png b/stable/Messenger/images/icon.png index 6896cd913a..71f25975f7 100644 Binary files a/stable/Messenger/images/icon.png and b/stable/Messenger/images/icon.png differ diff --git a/stable/Messenger/manifest.toml b/stable/Messenger/manifest.toml index e928cd0fe8..9a1549217e 100644 --- a/stable/Messenger/manifest.toml +++ b/stable/Messenger/manifest.toml @@ -5,7 +5,7 @@ # must be accessible (i.e. no `git` or `ssh` URLs, as the agent cannot clone those) repository = "https://github.com/NightmareXIV/XIVInstantMessenger.git" # The commit to check out and build from the repository. -commit = "a00c38fa26c8fcc1b1cc306bdcb122b47035ac5a" +commit = "b0250a22b6a8a89a3d4559f7a9e61e39e49b0b3c" # The people authorised to update this manifest (e.g. who can deploy updates). These are GitHub usernames. owners = [ "Limiana" diff --git a/stable/MiniMappingway/manifest.toml b/stable/MiniMappingway/manifest.toml index 9e6513bafd..6a8f0a3035 100644 --- a/stable/MiniMappingway/manifest.toml +++ b/stable/MiniMappingway/manifest.toml @@ -1,8 +1,8 @@ [plugin] repository = "https://github.com/jaycewhite/MiniMappingway.git" -commit = "2a05c700d6b681be22a368656dc788bd367112d7" +commit = "34e7f2361a5b901441527c75b54db8af772a0aeb" owners = [ "jaycewhite" ] -changelog = "Bug fixes for occasionally not hiding during cutscenes, and not working while world visiting. Credit to Scrxtchy for fixing these!" -version = "1.0.0.3" +changelog = "Bugs fixed: friends not showing up; people still showing up on minimap if in party/alliance." +version = "1.0.0.4" diff --git a/stable/MonsterLootHunter/manifest.toml b/stable/MonsterLootHunter/manifest.toml index 6de7cb9e5c..b8c8cbef36 100644 --- a/stable/MonsterLootHunter/manifest.toml +++ b/stable/MonsterLootHunter/manifest.toml @@ -1,11 +1,9 @@ [plugin] repository = "https://github.com/danielbrenom/MonsterLootHunter.git" -commit = "ca7c3235a5eb66c125e6d0e2702985989858e8f6" +commit = "0a99f39cab1f70a1285d3ab184594cd840a1bd5d" owners = [ "danielbrenom", ] project_path = "MonsterLootHunter" -changelog = """- Added alternative item name lookup for information retrieval -- Fixed data processing of wiki information -- Added aetherial reduction source +changelog = """- Patch 6.4 update """ diff --git a/stable/NamePlateDebuffs/manifest.toml b/stable/NamePlateDebuffs/manifest.toml index 63db934c4c..d07fdd67dc 100644 --- a/stable/NamePlateDebuffs/manifest.toml +++ b/stable/NamePlateDebuffs/manifest.toml @@ -1,12 +1,12 @@ [plugin] -repository = "https://github.com/jherig/NamePlateDebuffs.git" -commit = "0f80aad0587288369fc373c62d2191c5553ed8a9" +repository = "https://github.com/abashby/NamePlateDebuffs.git" +commit = "ac54d7278a4605f1bdb089e568e71568ce2da776" owners = [ "aers", "JHerig", - "squidmade", + "abashby", ] project_path = "NamePlateDebuffs" changelog = """ -- Fixed plugin loading +- Update for 6.4 """ diff --git a/stable/Namingway/manifest.toml b/stable/Namingway/manifest.toml index d743e4df59..0c0de7aa48 100644 --- a/stable/Namingway/manifest.toml +++ b/stable/Namingway/manifest.toml @@ -1,5 +1,5 @@ [plugin] -repository = 'https://git.anna.lgbt/ascclemens/Namingway.git' -commit = '5f61957138e980aafe3bc7f2742ee92e5c063813' -owners = [ 'ascclemens' ] -changelog = '6.3 update' +repository = 'https://git.anna.lgbt/anna/Namingway.git' +commit = '0719b2b6f0bf222c6b2f506c09813b5e3214c4d0' +owners = [ 'lojewalo' ] +changelog = 'it should work' diff --git a/stable/Neko/manifest.toml b/stable/Neko/manifest.toml index c9cb6b8b06..e93491abb1 100644 --- a/stable/Neko/manifest.toml +++ b/stable/Neko/manifest.toml @@ -1,9 +1,9 @@ [plugin] repository = "https://github.com/Meisterlala/NekoFans.git" -commit = "48ca2270845567af77931679904a5f25aee749e0" +commit = "d5f2aa00d707ad2cb8487f0e54874a4e23481091" owners = [ "Meisterlala", ] project_path = "Neko" -changelog = """- .Net 7 Update (FFXIV 6.3) -- Added warning for when the Twitter API limit is reached""" +changelog = """- Removed Twitter API due to insane cost increases +- Updated WAIFU.IM API to v5""" \ No newline at end of file diff --git a/stable/NoSoliciting/manifest.toml b/stable/NoSoliciting/manifest.toml deleted file mode 100644 index c9df3b5bde..0000000000 --- a/stable/NoSoliciting/manifest.toml +++ /dev/null @@ -1,8 +0,0 @@ -[plugin] -repository = 'https://git.anna.lgbt/ascclemens/NoSoliciting.git' -commit = '3d8757ac314970916024ad3591f66d8ea93a0b57' -owners = [ 'ascclemens' ] -project_path = 'NoSoliciting' -changelog = """\ -- API 8 -""" diff --git a/stable/NoTankYou/manifest.toml b/stable/NoTankYou/manifest.toml index c24197f2d5..008925cf3a 100644 --- a/stable/NoTankYou/manifest.toml +++ b/stable/NoTankYou/manifest.toml @@ -1,5 +1,5 @@ [plugin] -repository = "https://github.com/NiGuangOwO/NoTankYou.git" -commit = "70c14b2a8bc24919e9163021d8d16bb35fa90b7c" -owners = ["MidoriKami", "NiGuangOwO"] +repository = "https://github.com/MidoriKami/NoTankYou.git" +commit = "340d3aa38da525185ef6f341c4b5449808ab99d8" +owners = ["MidoriKami"] project_path = "NoTankYou" diff --git a/stable/OrangeGuidanceTomestone/manifest.toml b/stable/OrangeGuidanceTomestone/manifest.toml index ab384dc363..ab57ec4de1 100644 --- a/stable/OrangeGuidanceTomestone/manifest.toml +++ b/stable/OrangeGuidanceTomestone/manifest.toml @@ -1,7 +1,7 @@ [plugin] -repository = 'https://git.anna.lgbt/ascclemens/OrangeGuidanceTomestone.git' -commit = '73fdfd326341edd31189b7b3ccb1faf793ea9fa9' -owners = [ 'ascclemens' ] +repository = 'https://git.anna.lgbt/anna/OrangeGuidanceTomestone.git' +commit = '829bf354d8b1c6a6a5f030ded376dc75f1068bd1' +owners = [ 'lojewalo' ] project_path = 'client' changelog = """\ - Housing areas now have messages separated by ward/plot. diff --git a/stable/PartyIcons/manifest.toml b/stable/PartyIcons/manifest.toml index 20320c4942..b1cc54a601 100644 --- a/stable/PartyIcons/manifest.toml +++ b/stable/PartyIcons/manifest.toml @@ -1,19 +1,12 @@ [plugin] -repository = "https://github.com/wozaiha/xivPartyIcons.git" -commit = "6b1d5a049ab52d4765a40c13d28376a6cc38c2d1" +repository = "https://github.com/shdwp/xivPartyIcons.git" +commit = "65d3a70f7dbb01312c352ff16a68bf248645600b" owners = [ "shdwp", "avafloww", - "squidmade", - "wozaiha", + "abashby", ] project_path = "PartyIcons" changelog = """ -- Added the following icons as priority icons: - - Looking to Meld Materia - - Looking for Party - - Game Master - - Game QA - - Event Participant -- I plan to go through and just add all of the overworld player icons (with exceptions as needed) since that'd be easier than adding them gradually as requested. +- Update for 6.4 """ diff --git a/stable/PartyPlanner/manifest.toml b/stable/PartyPlanner/manifest.toml index 711f5d762d..b832928338 100644 --- a/stable/PartyPlanner/manifest.toml +++ b/stable/PartyPlanner/manifest.toml @@ -1,10 +1,8 @@ [plugin] repository = "https://github.com/ZhyraPlugins/PartyPlanner.git" -commit = "a6fbfe7b89c7340854b3703467a2862f3cca9b47" +commit = "d148bd184885daf2e0bb86fe4fb9a09eb0e93eab" owners = ["edg-l"] project_path = "PartyPlanner" changelog = """ -- Rework the window layout to show the events in a prettier way. -- General perfomance improvements. -- Clicking on the event title will now open a link to the event website. +- Fix a possible crash if the api is not online. """ diff --git a/stable/PeepingTom/manifest.toml b/stable/PeepingTom/manifest.toml index 5fb56c0be7..c0955242b0 100644 --- a/stable/PeepingTom/manifest.toml +++ b/stable/PeepingTom/manifest.toml @@ -1,8 +1,8 @@ [plugin] -repository = 'https://git.anna.lgbt/ascclemens/PeepingTom.git' -commit = '3749a6b42154a51397733abb2d3b06a47915bdcc' -owners = [ 'ascclemens' ] +repository = 'https://git.anna.lgbt/anna/PeepingTom.git' +commit = '24564a69283d71cb709c5c3690b66c4e2d5d3cbf' +owners = [ 'lojewalo' ] project_path = 'Peeping Tom' changelog = '''\ -- API 8 +- 6.4 ''' diff --git a/stable/PennyPincher/images/icon.png b/stable/PennyPincher/images/icon.png new file mode 100644 index 0000000000..1be17ad6f2 Binary files /dev/null and b/stable/PennyPincher/images/icon.png differ diff --git a/stable/PennyPincher/manifest.toml b/stable/PennyPincher/manifest.toml index de97cf26dd..a25a1c3737 100644 --- a/stable/PennyPincher/manifest.toml +++ b/stable/PennyPincher/manifest.toml @@ -1,7 +1,7 @@ [plugin] repository = "https://github.com/tesu/PennyPincher.git" -commit = "52c35396c59b5730753407ecc3b3c2b31736abf3" +commit = "873aac0b9794f84266dc1ce57b370d16fdc8dfa2" owners = [ "tesu", ] -changelog = "updates config options for the new behavior (automatically undercutting HQ when listing HQ, don't undercut own retainer)" +changelog = "use hooks instead of opcodes" diff --git a/stable/PetRenamer/images/icon.png b/stable/PetRenamer/images/icon.png new file mode 100644 index 0000000000..f8bd8db5e6 Binary files /dev/null and b/stable/PetRenamer/images/icon.png differ diff --git a/stable/PetRenamer/manifest.toml b/stable/PetRenamer/manifest.toml new file mode 100644 index 0000000000..e38d0b91ec --- /dev/null +++ b/stable/PetRenamer/manifest.toml @@ -0,0 +1,17 @@ +[plugin] +repository = "https://github.com/Glyceri/FFXIVPetRenamer.git" +commit = "dc74181930ca031ab6824ae7b096f1990cdb12f1" +owners = ["Glyceri",] + changelog = """ + + [1.2.1.2] + + Fixed a rare crash occuring during targeting. + + Fixed imported lists not saving. + + [1.2.1.1] + + Updates now dispose properly O///O + + No more colour themes leaking when quitting the plugin. + + Huge, and I mean HUGE performance improvements. + + More intuitive UI and theme upgrades. + + There is now a help screen. + + Target Bars are now hook based, no more flickering. + + Save file version updated from 4 to 5 +""" diff --git a/stable/PingPlugin/manifest.toml b/stable/PingPlugin/manifest.toml index a0d26f89c8..8b2ad69e92 100644 --- a/stable/PingPlugin/manifest.toml +++ b/stable/PingPlugin/manifest.toml @@ -1,7 +1,7 @@ [plugin] -repository = "https://github.com/wozaiha/PingPlugin.git" -commit = "6e6ed21f91a203f9a4fde0bfe0bea48e229796f6" -owners = ["karashiiro","wozaiha"] +repository = "https://github.com/karashiiro/PingPlugin.git" +commit = "7b6cfa524ee7906dd7a624afc26ebd3a6d6bd81a" +owners = ["karashiiro"] changelog = """\ -- Fixed server bar display failing to set up sometimes +- Fix ping sometimes getting stuck at 0ms (thanks Diyagi!) """ diff --git a/stable/PlayerTags/manifest.toml b/stable/PlayerTags/manifest.toml index a1580cb9c2..031cbb1328 100644 --- a/stable/PlayerTags/manifest.toml +++ b/stable/PlayerTags/manifest.toml @@ -1,12 +1,10 @@ [plugin] repository = "https://github.com/Pilzinsel64/PlayerTags.git" -commit = "c24d7f3ddb6c9ad020bcb64e20cad5cf826645b0" +commit = "618166aac7c5ba16a69ce91d404cd257370ae90b" owners = [ "Pilzinsel64", ] project_path = "PlayerTags" -changelog = """ Version 1.9 -- Target to API 8 -- Target to .NET 7 -- Updated translations +changelog = """- Updated community translation +- A big Thank You to everyone who helped with translation! """ diff --git a/stable/PlayerTrack/images/icon.png b/stable/PlayerTrack/images/icon.png new file mode 100644 index 0000000000..85c81cef0b Binary files /dev/null and b/stable/PlayerTrack/images/icon.png differ diff --git a/stable/PlayerTrack/manifest.toml b/stable/PlayerTrack/manifest.toml index 4391175972..c323b10e3e 100644 --- a/stable/PlayerTrack/manifest.toml +++ b/stable/PlayerTrack/manifest.toml @@ -2,4 +2,4 @@ repository = "https://github.com/kalilistic/PlayerTrack.git" owners = [ "kalilistic" ] project_path = "src/PlayerTrack" -commit = "d78485a0dba6c3805411ac954fa66e351cdb4e04" +commit = "d41eef3b6092c15fa2f4d80adecd2029eac43039" diff --git a/stable/PositionalGuide/manifest.toml b/stable/PositionalGuide/manifest.toml index c7c5a4ee86..3957ff11d8 100644 --- a/stable/PositionalGuide/manifest.toml +++ b/stable/PositionalGuide/manifest.toml @@ -2,5 +2,5 @@ repository = "https://github.com/PrincessRTFM/PositionalAssistant.git" owners = [ "PrincessRTFM",] project_path = "" -commit = "01611586aceb345a2d81c38fd366c5a8720df99e" -changelog = "In certain circumstances, based on the user's configuration, the target circle feature could previously attempt to read an index beyond that bounds of an array, causing per-frame errors and breaking the feature. The bug in question has been found and fixed." +commit = "4830ad193f2a4a1452537efc8ecd29cfb0c54415" +changelog = "The target circle feature hasn't been experimental in ages, it's confirmed working perfectly." diff --git a/stable/PriceCheck/manifest.toml b/stable/PriceCheck/manifest.toml index 3efbd243fc..758feef3ab 100644 --- a/stable/PriceCheck/manifest.toml +++ b/stable/PriceCheck/manifest.toml @@ -2,4 +2,4 @@ repository = "https://github.com/kalilistic/PriceCheck.git" owners = [ "kalilistic" ] project_path = "src/PriceCheck" -commit = "5db9fea1a0128febf47d0dd36e29f37c4269bcd4" +commit = "c1c9d1c6e6d55d1f7d8b626ebbbc814b4bb402f3" diff --git a/stable/PriceInsight/manifest.toml b/stable/PriceInsight/manifest.toml index 8c6f78fa61..f6e4ad98fc 100644 --- a/stable/PriceInsight/manifest.toml +++ b/stable/PriceInsight/manifest.toml @@ -1,9 +1,8 @@ [plugin] repository = "https://github.com/Kouzukii/ffxiv-priceinsight.git" -commit = "90de1b7e10eeab8244cdc82beaef01a602d1e83b" +commit = "2b1fe544fd5b9ec79f84e033627c53dc247b42aa" owners = ["Kouzukii"] project_path = "" changelog = """ -- Add option to show sales per day and average sale price. -- Fix some collectible items having price tooltips +Fixed tooltip text color displaying incorrectly when using light theme """ \ No newline at end of file diff --git a/testing/live/PushyFinder/images/icon.png b/stable/PushyFinder/images/icon.png similarity index 100% rename from testing/live/PushyFinder/images/icon.png rename to stable/PushyFinder/images/icon.png diff --git a/stable/PushyFinder/manifest.toml b/stable/PushyFinder/manifest.toml new file mode 100644 index 0000000000..8c2fd6e258 --- /dev/null +++ b/stable/PushyFinder/manifest.toml @@ -0,0 +1,9 @@ +[plugin] +repository = "https://github.com/lostkagamine/PushyFinder.git" +commit = "7c7db5abb7dcf441097a10d6b9fba14eb477378c" +owners = ["lostkagamine"] +project_path = "PushyFinder" +version = "1.0.0.3" +changelog = """ +This update changes nothing but I changed my GitHub username so I have to version bump. +""" diff --git a/stable/QuestMap/manifest.toml b/stable/QuestMap/manifest.toml index fe12c5e7b1..9af9aebe7f 100644 --- a/stable/QuestMap/manifest.toml +++ b/stable/QuestMap/manifest.toml @@ -1,5 +1,5 @@ [plugin] -repository = 'https://git.anna.lgbt/ascclemens/QuestMap.git' -commit = '2030f8374eb65a64947b2bc37f35fc53ff3723f4' -owners = [ 'ascclemens' ] +repository = 'https://git.anna.lgbt/anna/QuestMap.git' +commit = 'fae049bbf6ec8b12395fbce48389a8da263debe7' +owners = [ 'lojewalo' ] changelog = 'API 8' diff --git a/stable/ReadyCheckHelper/manifest.toml b/stable/ReadyCheckHelper/manifest.toml index 6d699dd624..57d7db45d4 100644 --- a/stable/ReadyCheckHelper/manifest.toml +++ b/stable/ReadyCheckHelper/manifest.toml @@ -1,10 +1,11 @@ [plugin] -repository = "https://github.com/PunishedPineapple/ReadyCheckHelper.git" -commit = "bfbe5b2bd2220f613114404c73b8928f2fd37c00" +repository = "https://github.com/Infiziert90/ReadyCheckHelper.git" +commit = "a82d4701944acef7258d20ecfc4abe10776ef6c5" owners = [ + "Infiziert90", "PunishedPineapple", ] project_path = "ReadyCheckHelper" -changelog = ''' -- Updated for Dalamud API 8. -''' \ No newline at end of file +changelog = """ ++ Added support for the new 'Align List to Bottom' option +""" diff --git a/stable/Redirect/manifest.toml b/stable/Redirect/manifest.toml index 4d459eadd6..6025c3478f 100644 --- a/stable/Redirect/manifest.toml +++ b/stable/Redirect/manifest.toml @@ -1,8 +1,8 @@ [plugin] repository = "https://github.com/cairthenn/Redirect.git" -commit = "6ae2a17a3bed2a00e3b3e3b080649f29e0f8a5d4" +commit = "e907a0653db62cdf41035d1fe6398f05b5ab95e6" owners = [ "cairthenn", ] project_path = "Redirect" -changelog = "Update for FFXIV 6.3 (thank you, @ellieglad)" +changelog = "Fixes for patch 6.4" diff --git a/stable/RemotePartyFinder/manifest.toml b/stable/RemotePartyFinder/manifest.toml deleted file mode 100644 index d06f8a1024..0000000000 --- a/stable/RemotePartyFinder/manifest.toml +++ /dev/null @@ -1,10 +0,0 @@ -[plugin] -repository = 'https://github.com/LittleNightmare/remote-party-finder.git' -commit = '40baaec3c1db919458db643fe0c8e0a734ea0328' -owners = [ 'ascclemens', 'LittleNightmare' ] -project_path = 'csharp/RemotePartyFinder' -changelog = """ -- 插件支持国服,但网站不保证可访问和稳定性 -- https://xivpf.littlenightmare.top/ -- 直接的中文的介绍 -""" diff --git a/stable/RoleplayProfiles/images/icon.png b/stable/RoleplayProfiles/images/icon.png new file mode 100644 index 0000000000..988f93d594 Binary files /dev/null and b/stable/RoleplayProfiles/images/icon.png differ diff --git a/stable/RoleplayProfiles/manifest.toml b/stable/RoleplayProfiles/manifest.toml index b9a5d0a151..4666036bfc 100644 --- a/stable/RoleplayProfiles/manifest.toml +++ b/stable/RoleplayProfiles/manifest.toml @@ -1,6 +1,18 @@ [plugin] repository = "https://github.com/Maia-Everett/dalamud-roleplay-profiles.git" -commit = "7415fe96f544a633dcb50ec28bf02263db93d251" +commit = "51a59efbd04bc3282996386f416b73db7e64bb55" owners = ["Maia-Everett"] project_path = "RoleplayProfiles" -changelog = "Updated to Dalamud 8." \ No newline at end of file +changelog = """ +New features: +* Added a configuration option to enable or disable the tooltip window. +* Added a configuration option to enable or disable the tooltip window during duties. By default, the RPP tooltip window is now hidden while in a duty instance. +* Added the /rpp slash command to control the plugin. Supported options: /rpp edit, /rpp profile, /rpp config, /rpp show, /rpp hide, /rpp duty show, /rpp duty hide. +* Logged in users should now remain logged in indefinitely. In case a login session does expire because the game wasn't launched for a year, the plugin will detect this and offer to log in again. + +Bug fixes: +* Fixed a bug where the tooltip window got stuck at "Retrieving profile..." under Linux if Wine was configured to identify as Windows 10, as it does since XIVLauncher Core 1.0.4. + +Known issues: +* The plugin is still currently region-locked to Europe because that's the only region allowed by its backing website, Chaos Archives. This will be fixed in a future update. +""" diff --git a/stable/SimpleTweaksPlugin/manifest.toml b/stable/SimpleTweaksPlugin/manifest.toml index 6b31226ba6..a83e96235d 100644 --- a/stable/SimpleTweaksPlugin/manifest.toml +++ b/stable/SimpleTweaksPlugin/manifest.toml @@ -1,8 +1,6 @@ [plugin] -repository = "https://github.com/ottercorp/SimpleTweaksPlugin.git" -commit = "56cfc6fd8c67ea0f5e01631935e63a3003db03ce" +repository = "https://github.com/Caraxi/SimpleTweaksPlugin.git" +commit = "4689bddb9e89f7a188b08e673d9870e819de6d64" owners = [ "Caraxi", - "wozaiha", - "Loskh", ] diff --git a/stable/SonarPlugin/images/icon.png b/stable/SonarPlugin/images/icon.png new file mode 100644 index 0000000000..fbf943991b Binary files /dev/null and b/stable/SonarPlugin/images/icon.png differ diff --git a/stable/SonarPlugin/images/image1.png b/stable/SonarPlugin/images/image1.png new file mode 100644 index 0000000000..1e1bf79d71 Binary files /dev/null and b/stable/SonarPlugin/images/image1.png differ diff --git a/stable/SonarPlugin/images/image2.png b/stable/SonarPlugin/images/image2.png new file mode 100644 index 0000000000..22350b292d Binary files /dev/null and b/stable/SonarPlugin/images/image2.png differ diff --git a/stable/SonarPlugin/images/image3.png b/stable/SonarPlugin/images/image3.png new file mode 100644 index 0000000000..e15de09a0c Binary files /dev/null and b/stable/SonarPlugin/images/image3.png differ diff --git a/stable/SonarPlugin/images/image4.png b/stable/SonarPlugin/images/image4.png new file mode 100644 index 0000000000..07abeb6b59 Binary files /dev/null and b/stable/SonarPlugin/images/image4.png differ diff --git a/stable/SonarPlugin/images/image5.png b/stable/SonarPlugin/images/image5.png new file mode 100644 index 0000000000..1d4d48ca84 Binary files /dev/null and b/stable/SonarPlugin/images/image5.png differ diff --git a/stable/SonarPlugin/images/logo.png b/stable/SonarPlugin/images/logo.png new file mode 100644 index 0000000000..fbf943991b Binary files /dev/null and b/stable/SonarPlugin/images/logo.png differ diff --git a/stable/SonarPlugin/manifest.toml b/stable/SonarPlugin/manifest.toml new file mode 100644 index 0000000000..55532d15b5 --- /dev/null +++ b/stable/SonarPlugin/manifest.toml @@ -0,0 +1,10 @@ +[plugin] +repository = "https://github.com/FFXIV-Sonar/SonarDistrib.git" +commit = "ccb2606990e9c97fdb4d593410a809efe51b0404" +owners = ["rreminy"] +project_path = "SonarPlugin" +changelog = "Check the Sonar Support Discord for more information: https://discord.gg/K7y24Rr" + +[plugin.secrets] +sonar = "-----BEGIN PGP MESSAGE-----\n\nwV4D5E6vRX2hj04SAQdADuydo4T0gZRkp/1e7KxbtcvvOngs/yZgvBzE24ee\nDlAw9XAGsEOXwTXi/NrjrpHtj6NRksW8F1j7hE8YMfL/5/MQzQ6kN4lu1lH1\nLqry45050pAB7psSQXy2kYw/4MZ3CsslzEqUqGNaBcHDOjEJjcUUC4pLZsLt\nL4ro20HShpTT1Hp/YVKNZmO8Jmku00IqMQvHQTTLGHuusNyFaB5MxyzMlqaY\nkBbOsyXQde9oK4h1yYppEJIxO1SxYbrpsdTEdMiCIvdRNFAe6FrQiai5PHGm\n8kbBJg/49ihUb7QJZRftmsc=\n=EkrJ\n-----END PGP MESSAGE-----\n" +plugin = "-----BEGIN PGP MESSAGE-----\n\nwV4D5E6vRX2hj04SAQdAKM9RJezhLN4U5CoCIKhSX0lG7t51mJBdqbvk3aca\nEDEwC6AaTL0zm/hiQdYUKgl6nEk8KOfjvLFjTKhypquTxqJw9u23P57f4M5F\nqihaVsBt0pMB/1CuDIHGIb+EJM5Oxt+rimgxRtpEtes5orAfi4MHcuFkRXA/\nzGTxi9SNJbNcqrVEgWamO7MOPevXx4HDd+22freC3NNPiztIv5AYB9joNynd\nwDxteGXfReILRiIFqWmEgB3rC9JXSpxkF0IXa5YCN2TIePtePUIxyqE0zKnB\nyOJvKiMt5PPEhThxgyEyJfVGJYU=\n=y4I9\n-----END PGP MESSAGE-----\n" diff --git a/stable/SortaKinda/images/icon.png b/stable/SortaKinda/images/icon.png new file mode 100644 index 0000000000..9c3fb1197a Binary files /dev/null and b/stable/SortaKinda/images/icon.png differ diff --git a/stable/SortaKinda/manifest.toml b/stable/SortaKinda/manifest.toml new file mode 100644 index 0000000000..bfac8b0f21 --- /dev/null +++ b/stable/SortaKinda/manifest.toml @@ -0,0 +1,5 @@ +[plugin] +repository = "https://github.com/MidoriKami/SortaKinda.git" +commit = "0076795372443095c46bafa8b38f53f7f6309753" +owners = ["MidoriKami"] +project_path = "SortaKinda" diff --git a/stable/SoundFilter/manifest.toml b/stable/SoundFilter/manifest.toml index e6411aadeb..ff6df4d210 100644 --- a/stable/SoundFilter/manifest.toml +++ b/stable/SoundFilter/manifest.toml @@ -1,5 +1,5 @@ [plugin] -repository = 'https://git.anna.lgbt/ascclemens/SoundFilter.git' -commit = '24be9d517f7715c9828cdc5e798a96a12abd7dd7' -owners = [ 'ascclemens' ] -changelog = 'API 8' +repository = 'https://git.anna.lgbt/anna/SoundFilter.git' +commit = '3c94e07c13ef48f2108785a915828e6bc9c46952' +owners = [ 'lojewalo' ] +changelog = 'Fix the sound log staying open when not closed properly' diff --git a/stable/SoundSetter/images/icon.png b/stable/SoundSetter/images/icon.png new file mode 100644 index 0000000000..6f2658d0ce Binary files /dev/null and b/stable/SoundSetter/images/icon.png differ diff --git a/stable/SoundSetter/manifest.toml b/stable/SoundSetter/manifest.toml index c64676d540..872f7da79e 100644 --- a/stable/SoundSetter/manifest.toml +++ b/stable/SoundSetter/manifest.toml @@ -1,8 +1,7 @@ [plugin] repository = "https://github.com/karashiiro/SoundSetter.git" -commit = "251898ceaf99cb2b0c855f220e50e61647f3d8ac" +commit = "ca14a50b8a019024def076e5afef2a80fcbc8b10" owners = ["karashiiro"] changelog = """\ -- Updates for 6.35 -- Removed debug-level log spam +- Updates for 6.4 """ diff --git a/stable/StackSellPrice/manifest.toml b/stable/StackSellPrice/manifest.toml index 8048a0313c..9ee9d70168 100644 --- a/stable/StackSellPrice/manifest.toml +++ b/stable/StackSellPrice/manifest.toml @@ -2,5 +2,5 @@ repository = "https://github.com/PrincessRTFM/StackSellPrice.git" owners = [ "PrincessRTFM",] project_path = "" -commit = "13f3b4903b8ec3bc98e387fdc03f1db34d19f641" -changelog = "Update for api8/patch6.3" +commit = "74e987a77dd2344386107e2a309cbcda936458ca" +changelog = "HQ item prices are now handled correctly (fixed rounding logic) and\nmateria prices should be calculated properly, since they're treated\nby the game as being HQ even though they _can't_ be HQ. I blame SE.\n\nAlso updated XivCommon to latest (7.0.2) as well." diff --git a/stable/SubmarineTracker/manifest.toml b/stable/SubmarineTracker/manifest.toml index 7a5741899f..96a0aceab0 100644 --- a/stable/SubmarineTracker/manifest.toml +++ b/stable/SubmarineTracker/manifest.toml @@ -1,19 +1,7 @@ [plugin] repository = "https://github.com/Infiziert90/SubmarineTracker.git" -commit = "99c830360feb496a6fb956669f31ea12664ac597" +commit = "e9bf8c6a99884531450ff0dee00cda9682cd360b" owners = [ "Infiziert90", ] project_path = "SubmarineTracker" -changelog = """ -[New] -+ New command to access the config menu (/sconf) - -[Changes] -+ All commands act as toggle now - -[Builder] -+ Improvements to load and save -+ Added 3 letter map identification -+ Allow overwrite of existing save with CTRL -""" diff --git a/stable/TPie/manifest.toml b/stable/TPie/manifest.toml index 5beb42dbc8..8ae2e421db 100644 --- a/stable/TPie/manifest.toml +++ b/stable/TPie/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/Tischel/TPie.git" -commit = "434fdde846f9506bbdbfb745f70d504098c7ee54" +commit = "92de2146442f1a51e8c17db1bd1451932c5b3b3a" owners = ["Tischel"] project_path = "TPie" -changelog = "- Added support for Patch 6.3 and Dalamud Api8." +changelog = "- Fixed crash if Wotsit is not installed." diff --git a/stable/TargetLines/manifest.toml b/stable/TargetLines/manifest.toml index 29fcb16e63..d2c9689d43 100644 --- a/stable/TargetLines/manifest.toml +++ b/stable/TargetLines/manifest.toml @@ -1,16 +1,14 @@ [plugin] repository = "https://github.com/Drahsid/TargetLines.git" -commit = "682fe492f533776c0eebd93f4861d7d972f2d353" +commit = "f135a3b9d8ffb526af9dd65451b936e28a9536db" owners = ["Drahsid"] project_path = "" -changelog = """1.2.2 -- Fixed flag tooltips -- Priority is now verbosely displayed -- You can now optionally manually specify priority -- Now using simplified priority calculation, to make custom priority easier to work with -- List will now sort by priority -1.2.3 -- Fixed Some bugs when easing from the no-target state to new targets, and from the switching state to the no-target state. Note that going from the no-target state to the new-target state is unfixed -- Added animation options for the no-target state +changelog = """1.2.7 +- Improved the rendering of fancy lines, now they should look less looney when they clip the camera +- Improved visibility logic +- Improved logic relating to intangible game objects (ghost lines should no longer appear) +- Set default sample count for fancy lines to an odd number (should give the line a middle point with the default config) +- Made visibility check on Game Objects less aggresive +- Introduced a regression, where the sample count for lines is only applied when the line is constructed """ diff --git a/stable/TextBoxStyler/manifest.toml b/stable/TextBoxStyler/manifest.toml index 6aa099fba2..1dbe82b2d3 100644 --- a/stable/TextBoxStyler/manifest.toml +++ b/stable/TextBoxStyler/manifest.toml @@ -1,5 +1,5 @@ [plugin] -repository = 'https://git.annaclemens.io/ascclemens/TextBoxStyler.git' -commit = '475f52d88dd8f2c8ad3880be1545ae04f3c5f0dc' -owners = [ 'ascclemens' ] -changelog = 'API 7' +repository = 'https://git.anna.lgbt/anna/TextBoxStyler.git' +commit = 'af01f73fe4a01bb4cc7448218e56503af0aced6b' +owners = [ 'lojewalo' ] +changelog = 'Update (please stop emailing me)' diff --git a/stable/TextToTalk/images/icon.png b/stable/TextToTalk/images/icon.png new file mode 100644 index 0000000000..0318ace446 Binary files /dev/null and b/stable/TextToTalk/images/icon.png differ diff --git a/stable/TextToTalk/manifest.toml b/stable/TextToTalk/manifest.toml index bb7259319d..4db2d45120 100644 --- a/stable/TextToTalk/manifest.toml +++ b/stable/TextToTalk/manifest.toml @@ -1,8 +1,8 @@ [plugin] repository = "https://github.com/karashiiro/TextToTalk.git" -commit = "da07364715707f218143691f893be76b5d922cc3" +commit = "711291a37ad37ff52d7a371908dfb61b4cd795e5" project_path = "src" owners = ["karashiiro"] changelog = """\ -- Sends the speaker name in WebSocket messages +- Fixes login issue in Azure backend """ diff --git a/stable/Tf2CriticalHitsPlugin/manifest.toml b/stable/Tf2CriticalHitsPlugin/manifest.toml index 05d46a39c6..658018c7ca 100644 --- a/stable/Tf2CriticalHitsPlugin/manifest.toml +++ b/stable/Tf2CriticalHitsPlugin/manifest.toml @@ -1,11 +1,14 @@ [plugin] repository = "https://github.com/Berna-L/ffxiv-tf2-crit-plugin.git" -commit = "1fe89c0f15a9f595e76733631a59e12f9b999160" +commit = "04c67c409ccbcba45e1a1342d036482521cc32f2" owners = ["Berna-L"] project_path = "Tf2CriticalHitsPlugin" changelog = """ [TF2-ish Critical Hits] -**Did you know Astrologians own the stars?** -- Fix AST's Stellar Burst being considered a fairy heal. (Thanks HuiEtyud for the report!) -- Remove extraneous logging. +- Add option per job to set a minimum time between sounds. + - For example, if you set the time as 1000 ms and a critical hit sound is played, + no other sound (be it for critical hit, direct hit, critical heal etc.) will be played for the next second. + - Keep it at 0 ms to use the current behavior. + +(Thanks to Grayve for the idea and everyone at the Discord thread for the feedback!) """ diff --git a/stable/Tf2Hud/manifest.toml b/stable/Tf2Hud/manifest.toml index 26f4ff6a46..2ae70b720b 100644 --- a/stable/Tf2Hud/manifest.toml +++ b/stable/Tf2Hud/manifest.toml @@ -1,14 +1,12 @@ [plugin] repository = "https://github.com/Berna-L/ffxiv-tf2-hud-plugin.git" -commit = "2c7df503c289c54176eecc0a2dc6d7d62783a8a3" +commit = "c28f1181443d57fc6374d81b7ad8369a8d01cbcd" owners = ["Berna-L"] project_path = "Tf2Hud" changelog = """ -[Win Panel] -- Added option to have the Win Panel save the score per duty. - - This is the default behavior for new installations. - - Current users will be told about this through chat when updating the plugin. -- Added window (accessible in the Win Panel configuration) to check the saved scores per duty. - - This window also has an option to copy the values as CSV to the clipboard and delete individual scores. -- Fixed the MVP list closing when pressing ESC. +[General] +- Add failsafe if Dalamud thinks a Windows user is under Linux. +- Add chat message if the TF2 installation folder could not be autodetected. + +(Thanks to AlexFlipnote for the report!) """ diff --git a/stable/TheGreatSeparator/manifest.toml b/stable/TheGreatSeparator/manifest.toml index 242a432e03..603f6433ec 100644 --- a/stable/TheGreatSeparator/manifest.toml +++ b/stable/TheGreatSeparator/manifest.toml @@ -1,5 +1,5 @@ [plugin] -repository = 'https://git.annaclemens.io/ascclemens/TheGreatSeparator.git' -commit = '746c91a0561aa4b3c185f891933ab9cb84a57bd1' -owners = [ 'ascclemens' ] -changelog = 'API 7' +repository = 'https://git.anna.lgbt/anna/TheGreatSeparator.git' +commit = '51e0fe042b979cb6bbc250db3b30d8c568552361' +owners = [ 'lojewalo' ] +changelog = 'Guess I forgot to publish this update...' diff --git a/stable/TooltipNotes/manifest.toml b/stable/TooltipNotes/manifest.toml index 647d6bc671..f69c9b0785 100644 --- a/stable/TooltipNotes/manifest.toml +++ b/stable/TooltipNotes/manifest.toml @@ -1,13 +1,20 @@ [plugin] repository = "https://github.com/Lerofni/TooltipNotes.git" -commit = "3cc06f3106acb0e4d036d9c72978819ecc0b1d88" +commit = "bc935f975c86d3f4faaa0b6bedb514b86b51420c" owners = ["Lerofni"] project_path = "TooltipNotes" changelog = """ -1.0.0.0 +1.1.2.0 ## Feature -Made Debug logging a optional toggle +updated for 6.4 -This version also removes access to the allnotes Window since it is very buggy and kinda useless in its current form. -It will come back in the next testin release, this is just to prepare for the port to stable. +for other features, I am going to be honest I forgot the descrepancy between the testing and stable release, so here are just a couple of things that I believe changed: + +* The All notes window: + * Acessible via /tnallnotes it lets you see and edit all your notes in one ImGui window +* An alternative for the context menu: + * using /tnnote you can now bring up the singular note editing window based on the last hovered item allowing you to add notes to items in situations that you dont have the context menu +* proper multiline editing + * both the all note window and the singular note window allow you to make notes multiline now wihtout having to use .\n everywhere +* CharacterSpecific Notes now only hide your global notes if there is a CharacterSpecific Note and not always anymore. """ diff --git a/stable/Tourist/manifest.toml b/stable/Tourist/manifest.toml index ed71300d39..76755a93a6 100644 --- a/stable/Tourist/manifest.toml +++ b/stable/Tourist/manifest.toml @@ -1,5 +1,5 @@ [plugin] -repository = 'https://git.anna.lgbt/ascclemens/Tourist.git' -commit = '3619894c367f7e2809590b7062c49c21cd908e16' -owners = [ 'ascclemens' ] +repository = 'https://git.anna.lgbt/anna/Tourist.git' +commit = '5fd80a63589275230da6cf097e808783fe35edd7' +owners = [ 'lojewalo' ] changelog = 'Fix a crash in squadrons' diff --git a/stable/TrackyTrack/images/icon.png b/stable/TrackyTrack/images/icon.png new file mode 100644 index 0000000000..0ddcdf1804 Binary files /dev/null and b/stable/TrackyTrack/images/icon.png differ diff --git a/stable/TrackyTrack/manifest.toml b/stable/TrackyTrack/manifest.toml new file mode 100644 index 0000000000..fd66144ba3 --- /dev/null +++ b/stable/TrackyTrack/manifest.toml @@ -0,0 +1,7 @@ +[plugin] +repository = "https://github.com/Infiziert90/TrackyTrack.git" +commit = "60f76f1c1067e0a8e52cd60fabf3c49d18c8e139" +owners = [ + "Infiziert90", +] +project_path = "TrackyTrack" diff --git a/stable/UsedName/manifest.toml b/stable/UsedName/manifest.toml index 1509970bd6..a5a5893cc0 100644 --- a/stable/UsedName/manifest.toml +++ b/stable/UsedName/manifest.toml @@ -1,11 +1,14 @@ [plugin] repository = "https://github.com/LittleNightmare/UsedName.git" -commit = "72a258637257e80e1defa52e50822d7935bbcb03" +commit = "299037f9b54fb6937fbaaa47a49a446de8c4597d" owners = [ "LittleNightmare" ] project_path = "UsedName" changelog = """ -- 修复有时UI崩溃的问题 -- 修复右键添加昵称失败 +- fix cannot read data +- fix actual behavior is inconsistent with the description +- add PlayerSearch button back +- Fix sometimes UI crashes +- Fix use Right click to add nickname may failed """ diff --git a/stable/VFXEditor/manifest.toml b/stable/VFXEditor/manifest.toml index 35a35ba632..42e6b2d4f1 100644 --- a/stable/VFXEditor/manifest.toml +++ b/stable/VFXEditor/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/0ceal0t/Dalamud-VFXEditor.git" -commit = "0b5c30c3c066ac8a207fdd1ade7fb3a3b57debb6" +commit = "1555f423b214eb139a78949bdb2e30fb4775e844" owners = [ "0ceal0t", ] diff --git a/stable/Visibility/manifest.toml b/stable/Visibility/manifest.toml index ccf427767c..e8bb37334f 100644 --- a/stable/Visibility/manifest.toml +++ b/stable/Visibility/manifest.toml @@ -1,6 +1,6 @@ [plugin] -repository = "https://github.com/wozaiha/VisibilityPlugin.git" -commit = "d0d12f7734832021958f43a0a2d2b8114ee28a6b" -owners = ["SheepGoMeh","wozaiha"] +repository = "https://github.com/SheepGoMeh/VisibilityPlugin.git" +owners = [ "SheepGoMeh",] project_path = "Visibility" -changelog = "国服6.3适配." +commit = "0e53262f04966de78f49152e19324275748427ec" +changelog = "- Fix Whitelist UI adding entries to VoidList" diff --git a/stable/WaymarkPresetPlugin/manifest.toml b/stable/WaymarkPresetPlugin/manifest.toml index 7559148984..01f372c2af 100644 --- a/stable/WaymarkPresetPlugin/manifest.toml +++ b/stable/WaymarkPresetPlugin/manifest.toml @@ -1,11 +1,12 @@ [plugin] -repository = "https://github.com/squidmade/WaymarkPresetPlugin.git" -commit = "11e730f2cc4653249a2a6807a1296b346f8b2545" +repository = "https://github.com/Infiziert90/WaymarkPresetPlugin.git" +commit = "aaa901607099e97dc7168e3028cf7f8ca0bf58d5" owners = [ "PunishedPineapple", - "squidmade", + "abashby", + "Infiziert90", ] project_path = "WaymarkPresetPlugin" changelog = ''' -- Adopting plugin +nofranz ''' diff --git a/stable/WhichPatchWasThat/manifest.toml b/stable/WhichPatchWasThat/manifest.toml index a1040437a6..e590e5759c 100644 --- a/stable/WhichPatchWasThat/manifest.toml +++ b/stable/WhichPatchWasThat/manifest.toml @@ -1,10 +1,10 @@ [plugin] repository = "https://github.com/Kouzukii/ffxiv-whichpatchwasthat.git" -commit = "33098f55232e237b47c70ab14b5ae6ec0d3a795d" +commit = "f67f2a123acaf5cffdc968b63bb1ed12ca5ac5b0" owners = [ "Kouzukii", ] project_path = "WhichPatchWasThat" changelog = """ -Add support for mounts, minions and fashion accessories +Will now show the patch a quest was released in in the journal and quest accept window. """ \ No newline at end of file diff --git a/stable/WhoDidThat/images/icon.png b/stable/WhoDidThat/images/icon.png new file mode 100644 index 0000000000..f30e8f0e59 Binary files /dev/null and b/stable/WhoDidThat/images/icon.png differ diff --git a/stable/WhoDidThat/manifest.toml b/stable/WhoDidThat/manifest.toml new file mode 100644 index 0000000000..634b887ee2 --- /dev/null +++ b/stable/WhoDidThat/manifest.toml @@ -0,0 +1,6 @@ +[plugin] +repository = "https://github.com/spide-r/WhoDidThat.git" +commit = "02788ddd19ec97cc9307223bc301f0f6b9af9db7" +owners = ["spide-r"] +project_path = "WhoDidThat" +changelog = "Added a combat timer. Now you can see exactly when abilities were used in a fight!" diff --git a/stable/Wholist/manifest.toml b/stable/Wholist/manifest.toml index 38a17644de..7b48408a04 100644 --- a/stable/Wholist/manifest.toml +++ b/stable/Wholist/manifest.toml @@ -1,19 +1,7 @@ [plugin] -repository = "https://github.com/BitsOfAByte/Wholist.git" -commit = "d1d37f74cb9fc9537f613a87df03f0376e8f63c4" +repository = "https://github.com/Blooym/Wholist.git" +commit = "21100771a42ca7a9d4098a1a68b979a9a540e4cc" owners = [ - "BitsOfAByte", + "Blooym", ] project_path = "Wholist" -changelog = """ -Hey look at this really [cute cat image](https://twitter.com/fatfatmillycat/status/1634256353295212551/photo/3). - -**Features** - -- Added the ability to set colours per job instead of per role. - -**Other** - -- Translation updates & improvements in multiple languages (Thanks translators) -- Added 42% more silliness to code :3 -""" diff --git a/stable/WorkshopOptimizerPlugin/manifest.toml b/stable/WorkshopOptimizerPlugin/manifest.toml index d0e66a4f30..d3a680d718 100644 --- a/stable/WorkshopOptimizerPlugin/manifest.toml +++ b/stable/WorkshopOptimizerPlugin/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/belzaru17/WorkshopOptimizerPlugin.git" -commit = "cbaf1ee71659e61b66193492e0bf4dc30eb035f8" +commit = "5b76e9291ea459f728fc2f6326c6e43065592df8" owners = ["belzaru17"] project_path = "WorkshopOptimizerPlugin" -changelog = "Improved rest day handling and items usable in more than one cycle." +changelog = "Updated for 6.4 items and workshops." diff --git a/stable/XIVCombo/manifest.toml b/stable/XIVCombo/manifest.toml index f45c2f35b5..733a5b29d1 100644 --- a/stable/XIVCombo/manifest.toml +++ b/stable/XIVCombo/manifest.toml @@ -2,9 +2,9 @@ repository = "https://github.com/attickdoor/XIVComboPlugin.git" # The commit to check out and build from the repository. -commit = "fae48d8a49613d6d7326552a90927d72c0200c43" +commit = "1f17d013e427fe8e219ff1233bd35dd8ff0c71b1" -version = "1.7.23" +version = "1.7.24" # The people authorised to update this manifest (e.g. who can deploy updates). These are GitHub usernames. owners = [ @@ -17,6 +17,5 @@ project_path = "XIVComboPlugin" # The changelog for this version. Will be shown in-game, as well on the Goat Place Discord. changelog = """\ - updated for patch\ - removed goring blade combo. thanks yoship for making pld playable!\ + fix energy drain being broken on scholar """ diff --git a/stable/XIVDeck.FFXIVPlugin/manifest.toml b/stable/XIVDeck.FFXIVPlugin/manifest.toml index 22b8f9e1ed..113365ad8c 100644 --- a/stable/XIVDeck.FFXIVPlugin/manifest.toml +++ b/stable/XIVDeck.FFXIVPlugin/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/KazWolfe/XIVDeck.git" -commit = "bd76af4a47ca2f50666fcc0b0d43d810ef377cc3" +commit = "b7774a11a7aa6a0b975839c65e8036b170dc4774" owners = [ "KazWolfe", ] diff --git a/stable/XIVDupeFinder/images/icon.png b/stable/XIVDupeFinder/images/icon.png new file mode 100644 index 0000000000..02db7c80cb Binary files /dev/null and b/stable/XIVDupeFinder/images/icon.png differ diff --git a/stable/XIVDupeFinder/images/image1.png b/stable/XIVDupeFinder/images/image1.png new file mode 100644 index 0000000000..03140e7b7b Binary files /dev/null and b/stable/XIVDupeFinder/images/image1.png differ diff --git a/stable/XIVDupeFinder/images/image2.png b/stable/XIVDupeFinder/images/image2.png new file mode 100644 index 0000000000..6ee053155c Binary files /dev/null and b/stable/XIVDupeFinder/images/image2.png differ diff --git a/stable/XIVDupeFinder/manifest.toml b/stable/XIVDupeFinder/manifest.toml new file mode 100644 index 0000000000..88b84c8846 --- /dev/null +++ b/stable/XIVDupeFinder/manifest.toml @@ -0,0 +1,13 @@ +[plugin] +repository = "https://github.com/CallumCarmicheal/XIVDupeFinder.git" +commit = "7c3653270265c4280dd5cc8e31de8d94650152f5" +owners = ["CallumCarmicheal"] +project_path = "XIVDupeFinder" +changelog = """# XIVDupeFinder 1.0.1 +- Fixed hooks to stop plugin running when disabled / closed. +- Fixed issue with highlighting always clearing when not enabled +- Minor optimizations and code refactoring +- Moving from Testing to Stable + +# XIVDupeFinder v1.0.0 Patch Notes +Fixed ghosted items""" \ No newline at end of file diff --git a/stable/orchestrion/images/image1.png b/stable/orchestrion/images/image1.png deleted file mode 100644 index c4c2cfac23..0000000000 Binary files a/stable/orchestrion/images/image1.png and /dev/null differ diff --git a/stable/orchestrion/manifest.toml b/stable/orchestrion/manifest.toml index b0221117a1..d60e1f21ea 100644 --- a/stable/orchestrion/manifest.toml +++ b/stable/orchestrion/manifest.toml @@ -1,7 +1,7 @@ [plugin] repository = "https://github.com/lmcintyre/OrchestrionPlugin.git" -commit = "36072b1f884f62dc116ff5a568d88198fe8a1af6" +commit = "7a0883f5532d78a90585df9afec08695850ae5eb" owners = [ "lmcintyre", ] -project_path = "Orchestrion" \ No newline at end of file +project_path = "Orchestrion" diff --git a/testing/live/ARealmRecorded/manifest.toml b/testing/live/ARealmRecorded/manifest.toml index aea4ee4305..e84363bab4 100644 --- a/testing/live/ARealmRecorded/manifest.toml +++ b/testing/live/ARealmRecorded/manifest.toml @@ -1,6 +1,15 @@ [plugin] repository = "https://github.com/UnknownX7/ARealmRecorded.git" -commit = "39873a4ba50d58f9d203db185dbbc7a77e2be652" +commit = "7338f564dfbfcd9d454ae70037d8f2930f372296" owners = [ "UnknownX7" ] changelog = ''' -- The recording icon setting will now block the icon even in officially supported duties''' +- Major backend changes +- Massively increased the speed for loading certain chapters and reduced the fade in and out time +- Added recording on logging in +- Added the duration of each chapter to the chapter dropdown box +- Added a button to indicate when recording is disabled + - You can utilize this feature to enable recording and then relog while inside a duty if you forgot to do so beforehand +- Added a settings button to open the in game UI +- Added a feature to hide the extended playback controls +- Fixed the first pull not being counted on replay tooltips +- Fixed the plugin assuming you were stuck while watching a cutscene''' diff --git a/testing/live/Beachcomber/manifest.toml b/testing/live/Beachcomber/manifest.toml index 536453b5bc..cc05219c40 100644 --- a/testing/live/Beachcomber/manifest.toml +++ b/testing/live/Beachcomber/manifest.toml @@ -1,9 +1,9 @@ [plugin] repository = "https://github.com/rosella500/IslandWorkshopSolver.git" -commit = "8bf6522dee26b899394790a2d22b7ff900f51241" +commit = "104592b2aefbb2b92054918486cde253d9b9b1a7" owners = [ "rosella500", "k99k5" ] project_path = "Beachcomber" -changelog = "Fix groove being set improperly for future cycles when it's inputted manually" +changelog = "Fix overzealous validation" diff --git a/testing/live/BetterInBlue/images/icon.png b/testing/live/BetterInBlue/images/icon.png new file mode 100644 index 0000000000..2e880c31a0 Binary files /dev/null and b/testing/live/BetterInBlue/images/icon.png differ diff --git a/testing/live/BetterInBlue/manifest.toml b/testing/live/BetterInBlue/manifest.toml new file mode 100644 index 0000000000..0e82c7dcb7 --- /dev/null +++ b/testing/live/BetterInBlue/manifest.toml @@ -0,0 +1,5 @@ +[plugin] +repository = "https://github.com/NotNite/BetterInBlue.git" +commit = "dcb10ac2ac2e9f9ee88b569507d5e07c62ba4786" +owners = ["NotNite"] +project_path = "BetterInBlue" diff --git a/testing/live/BetterMountRoulette/images/icon.png b/testing/live/BetterMountRoulette/images/icon.png new file mode 100644 index 0000000000..94bdc7b207 Binary files /dev/null and b/testing/live/BetterMountRoulette/images/icon.png differ diff --git a/testing/live/BetterMountRoulette/manifest.toml b/testing/live/BetterMountRoulette/manifest.toml new file mode 100644 index 0000000000..aa2fa95c59 --- /dev/null +++ b/testing/live/BetterMountRoulette/manifest.toml @@ -0,0 +1,8 @@ +[plugin] +repository = "https://github.com/CMDRNuffin/BetterMountRoulette.git" +commit = "e0a261b374f5c004d8825fcf70afab05623b011a" +version = "1.3.0.13" +owners = ["CMDRNuffin"] +changelog = """Now includes an option to only mount single-seated mounts while solo. + +Also added an option to only use mounts that can fit the entire party, or failing that, as many party members as possible.""" diff --git a/testing/live/BozjaBuddy/manifest.toml b/testing/live/BozjaBuddy/manifest.toml index cec85e2782..2de01b1576 100644 --- a/testing/live/BozjaBuddy/manifest.toml +++ b/testing/live/BozjaBuddy/manifest.toml @@ -1,15 +1,10 @@ [plugin] repository = "https://github.com/kaleidocli/BozjaBuddy.git" -commit = "3daf957f0fbaaa3ad10ccf33be239d32e3e21aac" +commit = "5a2cc6f0cea74595ee5be2501d5bf2dfdeae48e9" owners = ["kaleidocli"] project_path = "BozjaBuddy" changelog = """ -Bozja Buddy 0.3.0.3 - -- Added option for Fate/CE alarms to be set to all FATEs, all CEs, all FATE/CEs, and can be filtered by zone (e.g. Zadnor zone 3). These options exclude CLL, Dalriada, Delubrum Reginae Normal & Savage. - -- Fixed a bug in Custom loadout tab where the whole tab would be unavailable upon using any Custom loadout Filter related features. -- Fixed a bug in Custom loadout tab where disabling rec. loadouts would also hide user's loadouts. -- Fixed a bug (hopefully) in Custom loadout tab where the Import from Clipboard button would not work properly. -- Fixed a bug where Fate/CEs would be assigned incorrect Area. +Bozja Buddy [1.1.4.1] +- Added Relic guide and tracking. +- Adjustments with node graph viewer stuff. """ diff --git a/testing/live/CameraLoader/images/icon.png b/testing/live/CameraLoader/images/icon.png index 6b510c2300..630d02514f 100644 Binary files a/testing/live/CameraLoader/images/icon.png and b/testing/live/CameraLoader/images/icon.png differ diff --git a/testing/live/CameraLoader/manifest.toml b/testing/live/CameraLoader/manifest.toml index 81efbbd30f..d4a68ef715 100644 --- a/testing/live/CameraLoader/manifest.toml +++ b/testing/live/CameraLoader/manifest.toml @@ -1,6 +1,9 @@ [plugin] -repository = "https://github.com/NeNeppie/CameraLoader.git" -commit = "7f722ec07d3db4cb89c1cd51554df6ff06925a69" +repository = "https://github.com/NeNeppie/LightsCameraAction.git" +commit = "8e1c6a34d28a92c4cc84722aaa988e55f4e1f2a7" owners = ["NeNeppie"] project_path = "CameraLoader" -changelog = "" +changelog = """ +- You can now sort presets by creation date and name, under Sorting Settings in the settings tab. +- Tidied up the preset information boxes, now also featuring cute icons. +""" diff --git a/testing/live/Casexile/images/icon.png b/testing/live/Casexile/images/icon.png new file mode 100644 index 0000000000..a539d6d7cd Binary files /dev/null and b/testing/live/Casexile/images/icon.png differ diff --git a/testing/live/Casexile/manifest.toml b/testing/live/Casexile/manifest.toml new file mode 100644 index 0000000000..f6cee4ccda --- /dev/null +++ b/testing/live/Casexile/manifest.toml @@ -0,0 +1,6 @@ +[plugin] +repository = "https://gitlab.com/Bakura/casexile.git" +commit = "24c89aacb26827218b90ecd296a0637a07af2bb8" +owners = ["RyouBakura"] +project_path = "" +changelog = "Initial Release" \ No newline at end of file diff --git a/testing/live/Chatter/images/icon.png b/testing/live/Chatter/images/icon.png new file mode 100644 index 0000000000..6c4fbb7520 Binary files /dev/null and b/testing/live/Chatter/images/icon.png differ diff --git a/testing/live/Chatter/manifest.toml b/testing/live/Chatter/manifest.toml new file mode 100644 index 0000000000..be41788e90 --- /dev/null +++ b/testing/live/Chatter/manifest.toml @@ -0,0 +1,6 @@ +[plugin] +repository = "https://github.com/jlkeesey/Chatter.git" +commit = "514fde8fb94b14fa2522765129d5ba1ed8578bbc" +owners = ["jlkeesey"] +project_path = "Chatter" +changelog = "Many updated and refactoring plus tests." \ No newline at end of file diff --git a/testing/live/Collections/images/icon.png b/testing/live/Collections/images/icon.png new file mode 100644 index 0000000000..d991e04eb2 Binary files /dev/null and b/testing/live/Collections/images/icon.png differ diff --git a/testing/live/Collections/images/image1.png b/testing/live/Collections/images/image1.png new file mode 100644 index 0000000000..14895e6150 Binary files /dev/null and b/testing/live/Collections/images/image1.png differ diff --git a/testing/live/Collections/images/image2.png b/testing/live/Collections/images/image2.png new file mode 100644 index 0000000000..feab45e18e Binary files /dev/null and b/testing/live/Collections/images/image2.png differ diff --git a/testing/live/Collections/manifest.toml b/testing/live/Collections/manifest.toml new file mode 100644 index 0000000000..af70c03926 --- /dev/null +++ b/testing/live/Collections/manifest.toml @@ -0,0 +1,6 @@ +[plugin] +repository = "https://github.com/Seventhxiv/Collections.git" +commit = "a5805cdb25f31af15cc9d4762c5c93912e41f132" +owners = ["Seventhxiv"] +project_path = "Collections" +changelog = "Initial version" \ No newline at end of file diff --git a/testing/live/CollectorsAnxiety/manifest.toml b/testing/live/CollectorsAnxiety/manifest.toml index 2d23950f7e..914fc0c99f 100644 --- a/testing/live/CollectorsAnxiety/manifest.toml +++ b/testing/live/CollectorsAnxiety/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/KazWolfe/CollectorsAnxiety.git" -commit = "402962988e69a8b7d6eefed27638be3219ec3937" +commit = "f87902390c2a1bc211cba6475b3f0ee3bc459e37" owners = [ "KazWolfe", ] diff --git a/testing/live/Craftimizer/images/icon.png b/testing/live/Craftimizer/images/icon.png new file mode 100644 index 0000000000..a820d0e7e9 Binary files /dev/null and b/testing/live/Craftimizer/images/icon.png differ diff --git a/testing/live/Craftimizer/manifest.toml b/testing/live/Craftimizer/manifest.toml new file mode 100644 index 0000000000..0a6fdd7df5 --- /dev/null +++ b/testing/live/Craftimizer/manifest.toml @@ -0,0 +1,12 @@ +[plugin] +repository = "https://git.camora.dev/asriel/craftimizer.git" +commit = "3e93a8196328e8373fbeb33c5f74d67c31a71400" +owners = [ "WorkingRobot" ] +project_path = "Craftimizer" +changelog = """Release 1.2 + +- Add a helper window with recommended actions for in-progress crafts + - More work to be done here, but it works well enough for the most part + - I'd like to add a more strict solver in the future designed for expert crafts +- Refactored a bunch of UI code +""" diff --git a/testing/live/CurrencyTracker/images/icon.png b/testing/live/CurrencyTracker/images/icon.png new file mode 100644 index 0000000000..0fb9da1e0e Binary files /dev/null and b/testing/live/CurrencyTracker/images/icon.png differ diff --git a/testing/live/CurrencyTracker/manifest.toml b/testing/live/CurrencyTracker/manifest.toml new file mode 100644 index 0000000000..2222f892a4 --- /dev/null +++ b/testing/live/CurrencyTracker/manifest.toml @@ -0,0 +1,6 @@ +[plugin] +repository = "https://github.com/AtmoOmen/CurrencyTracker.git" +commit = "57095b85219890a88aedf0a80f7fdd2c11c6c3ab" +owners = ["AtmoOmen"] +project_path = "CurrencyTracker" +changelog = "- Functional Adjustments:\n - Added a new function Location Filter under Filter Options, and it enables users to enter key words to serach transactions with relevant Location names.\n - Added some new functions under Transactions Toolbar: Select All, Inverse Select, Unselect.\n - Added a new interface operation logic to Transactions List, which now enables users to select a number of transactions when holding Ctrl.\n - Adjusted Time Filter function code logic.\n- UI Adjustments:\n - Added a sequence number column to Transactions List.\n - Adjusted the layout of various functions when expanding/collapsing under the Filter Options.\n - Adjusted the appearance of the functions under Filter Options except for the Inverse Sort function when enabled.\n- Others:\n - Adjusted Transactions List draw logic.\n - Adjusted some appropiate expressions in English localization." diff --git a/testing/live/DelvCD/images/icon.png b/testing/live/DelvCD/images/icon.png new file mode 100644 index 0000000000..865eb8bc72 Binary files /dev/null and b/testing/live/DelvCD/images/icon.png differ diff --git a/testing/live/DelvCD/manifest.toml b/testing/live/DelvCD/manifest.toml new file mode 100644 index 0000000000..a114f3e718 --- /dev/null +++ b/testing/live/DelvCD/manifest.toml @@ -0,0 +1,5 @@ +[plugin] +repository = "https://github.com/DelvUI/DelvCD.git" +commit = "02261ec37be9c9eae1515624aceb4ceb24d2b811" +owners = ["Tischel"] +project_path = "DelvCD" diff --git a/testing/live/DistantSeas/images/icon.png b/testing/live/DistantSeas/images/icon.png new file mode 100644 index 0000000000..b912f2d576 Binary files /dev/null and b/testing/live/DistantSeas/images/icon.png differ diff --git a/testing/live/DistantSeas/manifest.toml b/testing/live/DistantSeas/manifest.toml new file mode 100644 index 0000000000..7a77935e30 --- /dev/null +++ b/testing/live/DistantSeas/manifest.toml @@ -0,0 +1,5 @@ +[plugin] +repository = "https://github.com/NotNite/DistantSeas.git" +commit = "1558ef989175567109d0248331ed3dde71ac0f64" +owners = ["NotNite"] +project_path = "DistantSeas" diff --git a/testing/live/DutyTracker/images/icon.png b/testing/live/DutyTracker/images/icon.png deleted file mode 100644 index 6c3863cfad..0000000000 Binary files a/testing/live/DutyTracker/images/icon.png and /dev/null differ diff --git a/testing/live/DutyTracker/manifest.toml b/testing/live/DutyTracker/manifest.toml deleted file mode 100644 index aa04b5829b..0000000000 --- a/testing/live/DutyTracker/manifest.toml +++ /dev/null @@ -1,7 +0,0 @@ -[plugin] -repository = "https://github.com/Xpahtalo/DutyTracker.git" -commit = "5e0d947c0c11851c19844b1315140e867c477f2d" -owners = ["Xpahtalo"] -project_path = "DutyTracker" -changelog = """Options and Info tabs work again. -Fixed several bugs that occur when abandoning or failing a duty""" diff --git a/testing/live/EurekaHelper/manifest.toml b/testing/live/EurekaHelper/manifest.toml deleted file mode 100644 index afae45000e..0000000000 --- a/testing/live/EurekaHelper/manifest.toml +++ /dev/null @@ -1,9 +0,0 @@ -[plugin] -repository = "https://github.com/snooooowy/EurekaHelper.git" -commit = "e032c5b9316ec594e6e77e559e238be28baf6e31" -owners = ["snooooowy"] -project_path = "EurekaHelper" -changelog = """ -- Added new configuration to randomize map coordinates by a range of +- 0.5 (enabled by default) -- Added new formatting for NM boss short name -""" diff --git a/testing/live/FCNameColor/manifest.toml b/testing/live/FCNameColor/manifest.toml index f3b7b1fa0c..c68538997d 100644 --- a/testing/live/FCNameColor/manifest.toml +++ b/testing/live/FCNameColor/manifest.toml @@ -1,8 +1,8 @@ [plugin] repository = "https://github.com/WesselKuipers/FCNameColor.git" -commit = "5bfadc08f3e269b954180854d06c37d0ea5e088a" +commit = "6d57f2206b9d0090f6222ff9da2993fdb544bd74" owners = ["WesselKuipers"] project_path = "FCNameColor" changelog = """ -- Fix issue where settings were not correctly being read, causing names abbreviations not matching up with the user's settings. +- Update for 6.4 """ diff --git a/testing/live/FFXIVRPCalendarPlugin/images/icon.png b/testing/live/FFXIVRPCalendarPlugin/images/icon.png new file mode 100644 index 0000000000..3a3ccd2792 Binary files /dev/null and b/testing/live/FFXIVRPCalendarPlugin/images/icon.png differ diff --git a/testing/live/FFXIVRPCalendarPlugin/manifest.toml b/testing/live/FFXIVRPCalendarPlugin/manifest.toml new file mode 100644 index 0000000000..2729826256 --- /dev/null +++ b/testing/live/FFXIVRPCalendarPlugin/manifest.toml @@ -0,0 +1,10 @@ +[plugin] +repository = "https://github.com/erroch/FFXIVRPEventCalendarPlugin.git" +commit = "98138f21bdca901bb3d71f9ffa8c8f822f7fbc5e" +owners = ["erroch"] +project_path = "FFXIVRPEventCalendarPlugin" +changelog = """ +1.0.1 (2023.08.09) +- Fixed improper icon. +- Added 'add event' and 'report event' links. +""" \ No newline at end of file diff --git a/testing/live/FantasyPlayer/images/icon.png b/testing/live/FantasyPlayer/images/icon.png new file mode 100644 index 0000000000..7b78ca635d Binary files /dev/null and b/testing/live/FantasyPlayer/images/icon.png differ diff --git a/testing/live/FantasyPlayer/manifest.toml b/testing/live/FantasyPlayer/manifest.toml new file mode 100644 index 0000000000..7a649a12ed --- /dev/null +++ b/testing/live/FantasyPlayer/manifest.toml @@ -0,0 +1,12 @@ +[plugin] +repository = "https://github.com/Critical-Impact/FantasyPlayer.git" +commit = "8b16c56540046bc77fc7f9a5e7d952fe3993a816" +owners = [ + "Critical-Impact", +] +project_path = "FantasyPlayer" +version = "2.1.1.3" +changelog = """\ +Fixed crash on boot +Altered the way the providers are loaded +""" diff --git a/testing/live/GlamourWishlist/images/icon.png b/testing/live/GlamourWishlist/images/icon.png new file mode 100644 index 0000000000..66c7e3c8da Binary files /dev/null and b/testing/live/GlamourWishlist/images/icon.png differ diff --git a/testing/live/GlamourWishlist/manifest.toml b/testing/live/GlamourWishlist/manifest.toml new file mode 100644 index 0000000000..8d3f9e549f --- /dev/null +++ b/testing/live/GlamourWishlist/manifest.toml @@ -0,0 +1,6 @@ +[plugin] +repository = "https://github.com/Imaginary-Narwhal/GlamourWishlist.git" +commit = "f015a7496f92aa13905cc9d5271af72cfee6cd4f" +owners = ["Imaginary-Narwhal"] +project_path = "GlamourWishlist" +changelog = "Initial Release" diff --git a/testing/live/GoodFriend/manifest.toml b/testing/live/GoodFriend/manifest.toml index a36db78952..4e7f0c6c93 100644 --- a/testing/live/GoodFriend/manifest.toml +++ b/testing/live/GoodFriend/manifest.toml @@ -1,7 +1,7 @@ [plugin] repository = "https://github.com/BitsOfAByte/GoodFriend.git" -commit = "22f55179b43de801aad2b94cc3193300a2579ed1" +commit = "684820716884d8878a729dbb69180162486ee2b1" owners = [ "BitsOfAByte", ] -project_path = "src/GoodFriend.Plugin" +project_path = "src/Plugin" diff --git a/testing/live/HUDManager/manifest.toml b/testing/live/HUDManager/manifest.toml index e95d85a301..ac7aa7e3f6 100644 --- a/testing/live/HUDManager/manifest.toml +++ b/testing/live/HUDManager/manifest.toml @@ -1,5 +1,5 @@ [plugin] repository = "https://github.com/zacharied/FFXIV-Plugin-HudManager.git" -commit = "f770c42500c8af2c5f98741782e0d923893869c9" -owners = ["zacharied"] -project_path = "HUDManager" \ No newline at end of file +commit = "6150a364099186424ca14ce5ebd862e143652f6b" +owners = ["zacharied", "nebel"] +project_path = "HUDManager" diff --git a/testing/live/HighFpsPhysicsPlugin/manifest.toml b/testing/live/HighFpsPhysicsPlugin/manifest.toml index ca653e3dce..e0b618057e 100644 --- a/testing/live/HighFpsPhysicsPlugin/manifest.toml +++ b/testing/live/HighFpsPhysicsPlugin/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/Kirrana/xivlauncher_physics_plugin.git" -commit = "34d517340be9295ff2ec919bc8a8fb2e3008b8f3" +commit = "bd60109fefc25c07173cb33884c064134e0f9881" owners = ["Kirrana"] project_path = "SamplePlugin" -changelog = "Adds support for skipping 1,2,3,4 frames instead of only 1" \ No newline at end of file +changelog = "Reworked how the entire thing works, can now select a framerate that physics will be (approximately) run at directly, instead of dividing the FPS by a constant value." \ No newline at end of file diff --git a/testing/live/InventoryTools/manifest.toml b/testing/live/InventoryTools/manifest.toml index 2e95ed3e3b..c73d282992 100644 --- a/testing/live/InventoryTools/manifest.toml +++ b/testing/live/InventoryTools/manifest.toml @@ -1,18 +1,18 @@ [plugin] repository = "https://github.com/Critical-Impact/InventoryTools.git" -commit = "f677c3a5445cfc473c7f1d74f24c81cadea10fb1" +commit = "baefeee3d269d1b5bf5c1ea7a1e9f478a544ad96" owners = [ "Critical-Impact", ] project_path = "InventoryTools" -version = "1.5.0.0" +version = "1.6.0.4" changelog = """\ -**House Storage has arrived** -So this took a while but it has finally come to fruition. A few things to note: - -- To have a house register with the plugin you must first enter it, have permission and then open the 'Indoor Furnishings' menu. This will allow for the plugin to see you own the house and add it to your 'Characters' list. -- Once the house is registered due to the way the inventory data of each section is provided, you must enter each section to have it be parsed by the plugin. For Indoor and Outdoor Furnishings you must enter the storeroom tab before that data is collected. -- For Interior Fixtures open the relevant section in the housing menu. -- There's a lot of moving parts so if you run into issues, bugs or crashes hit up the #plugin-help-forum on discord. -- I'll be working on making the 'Is Housing Item' filter a bit more reliable as this might be more important now. +**Allagan Tools: v1.6.0.4** +- Have finished crafts count correctly towards completion based on their flags +- Add the ability to choose "Empty" as a source +- Fix an issue where setting an item to 0 while Hide Completed is active would remove all the items +- The craft table now has a moveable splitter with a saved position + the original collapse functionality +- Copying a configuration into the default craft list now works +- Stopped items that can't be bought from gil vendors from being considered as buyable(even if they have a buy from vendor price) +- Unless there are other bugs this will be the final release before this is pushed to live """ diff --git a/testing/live/MagitekStratagem/images/icon.png b/testing/live/MagitekStratagem/images/icon.png new file mode 100644 index 0000000000..ce94ab0118 Binary files /dev/null and b/testing/live/MagitekStratagem/images/icon.png differ diff --git a/testing/live/MagitekStratagem/manifest.toml b/testing/live/MagitekStratagem/manifest.toml new file mode 100644 index 0000000000..6803ba247b --- /dev/null +++ b/testing/live/MagitekStratagem/manifest.toml @@ -0,0 +1,17 @@ +[plugin] +repository = "https://github.com/meoiswa/MagitekStratagem.git" +commit = "19eb100638003b53e072ce2e3e302df68fe9a4d9" +owners = [ + "meoiswa" +] +project_path = "MagitekStratagem" +changelog = """ + +Version 0.1.0.0: + - ⚠️Experimental Plugin⚠️, merely a proof of concept. + - Tobii Eyetracker integration for FFXIV. + - Enables Gaze-at-object target aquisition. + - Supports overriding Tab Target (Enemy) and Soft Target (Target Cursor) + - Works best for Gamepad users, but is compatible with KB&M + - Requires Tobii Game Hub to be installed. +""" diff --git a/testing/live/Mappy/manifest.toml b/testing/live/Mappy/manifest.toml new file mode 100644 index 0000000000..6174a84041 --- /dev/null +++ b/testing/live/Mappy/manifest.toml @@ -0,0 +1,5 @@ +[plugin] +repository = "https://github.com/MidoriKami/Mappy.git" +commit = "a2fc9114306928c915e230a6adb4458030ce222a" +owners = ["MidoriKami"] +project_path = "Mappy" diff --git a/testing/live/MountCollectioner/images/icon.png b/testing/live/MountCollectioner/images/icon.png new file mode 100644 index 0000000000..459e590cef Binary files /dev/null and b/testing/live/MountCollectioner/images/icon.png differ diff --git a/testing/live/MountCollectioner/manifest.toml b/testing/live/MountCollectioner/manifest.toml new file mode 100644 index 0000000000..a7d7521fb2 --- /dev/null +++ b/testing/live/MountCollectioner/manifest.toml @@ -0,0 +1,5 @@ +[plugin] +repository = "https://github.com/Samuelkaa/MountCollectioner.git" +commit = "0fd3234b15ee6ee51fa65a0067db9e67c1d1c83b" +owners = ["Samuelkaa"] +project_path = "MountCollectioner" \ No newline at end of file diff --git a/testing/live/NICEDamage/images/icon.png b/testing/live/NICEDamage/images/icon.png new file mode 100644 index 0000000000..7f227d07b2 Binary files /dev/null and b/testing/live/NICEDamage/images/icon.png differ diff --git a/testing/live/NICEDamage/manifest.toml b/testing/live/NICEDamage/manifest.toml new file mode 100644 index 0000000000..4ec79a9b69 --- /dev/null +++ b/testing/live/NICEDamage/manifest.toml @@ -0,0 +1,6 @@ +[plugin] +repository = "https://github.com/gnargle/NICEDamage.git" +commit = "5e0f4f5f87011631191f90993b0f9f550acfca4d" +owners = ["gnargle"] +project_path = "NICEDamage" +changelog = "Initial version" \ No newline at end of file diff --git a/testing/live/NoTankYou/manifest.toml b/testing/live/NoTankYou/manifest.toml index b3d007d740..19b467d9a2 100644 --- a/testing/live/NoTankYou/manifest.toml +++ b/testing/live/NoTankYou/manifest.toml @@ -1,5 +1,5 @@ [plugin] repository = "https://github.com/MidoriKami/NoTankYou.git" -commit = "ae612c65661bf5a7d3bebc2693dcc1f6e69765ec" +commit = "169673d96610212ec7549c44e89515efdd7c306a" owners = ["MidoriKami"] project_path = "NoTankYou" diff --git a/testing/live/OofPlugin/manifest.toml b/testing/live/OofPlugin/manifest.toml index fd0056e7f0..b98edb8d35 100644 --- a/testing/live/OofPlugin/manifest.toml +++ b/testing/live/OofPlugin/manifest.toml @@ -1,15 +1,13 @@ [plugin] repository = "https://github.com/Frogworks-Interactive/OOF.git" -commit = "4b8d76e7d27db96c2970d37d7190ce79e0f1919a" +commit = "5072d3bfc19d6ff3ad870f85be8791515eab97bc" owners = [ - "Frogworks Interactive", "codelastnight" ] project_path = "OofPlugin" changelog = """ -- Add Hbomberguy video, credits -- Oof on Party Member's death -- Oof on Alliance member's death (maybe works) -- Load custom audio file -- Update to API 8 +- UI overhaul (fully featured settings window) +- added distance-based oof +- bugfixes & performance fix +- last release before sending it off stable """ \ No newline at end of file diff --git a/testing/live/PartyPlanner/manifest.toml b/testing/live/PartyPlanner/manifest.toml index bf1162e68f..c6155e1125 100644 --- a/testing/live/PartyPlanner/manifest.toml +++ b/testing/live/PartyPlanner/manifest.toml @@ -1,11 +1,9 @@ [plugin] repository = "https://github.com/ZhyraPlugins/PartyPlanner.git" -commit = "a6fbfe7b89c7340854b3703467a2862f3cca9b47" +commit = "75af325f84158b28d7907899b7dad0782ea33639" owners = ["edg-l"] project_path = "PartyPlanner" changelog = """ -- Rework the window layout to show the events in a prettier way. -- General perfomance improvements. -- Clicking on the event title will now open a link to the event website. +- Fixes an issue where some events were not shown. """ diff --git a/testing/live/PetRenamer/images/icon.png b/testing/live/PetRenamer/images/icon.png new file mode 100644 index 0000000000..f8bd8db5e6 Binary files /dev/null and b/testing/live/PetRenamer/images/icon.png differ diff --git a/testing/live/PetRenamer/manifest.toml b/testing/live/PetRenamer/manifest.toml new file mode 100644 index 0000000000..21c282b9b0 --- /dev/null +++ b/testing/live/PetRenamer/manifest.toml @@ -0,0 +1,9 @@ +[plugin] +repository = "https://github.com/Glyceri/FFXIVPetRenamer.git" +commit = "c0310542147b66b93ffa706a56d090f12baa734c" +owners = ["Glyceri",] + changelog = """ + + [1.2.3.2] + + Added multiple configuration options + + Other Plugin Support +""" diff --git a/testing/live/PlayerTrack/manifest.toml b/testing/live/PlayerTrack/manifest.toml deleted file mode 100644 index 1871405966..0000000000 --- a/testing/live/PlayerTrack/manifest.toml +++ /dev/null @@ -1,5 +0,0 @@ -[plugin] -repository = "https://github.com/kalilistic/PlayerTrack.git" -owners = [ "kalilistic" ] -project_path = "src/PlayerTrack" -commit = "cf60f572695cbba9d979bafc34447b9eaa1cc415" diff --git a/testing/live/ProperHousing/manifest.toml b/testing/live/ProperHousing/manifest.toml index 8585731867..bd3dd2fa12 100644 --- a/testing/live/ProperHousing/manifest.toml +++ b/testing/live/ProperHousing/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/Sevii77/properhousing.git" -commit = "b236d935dd78f5c40f940bb359c7de6356b50190" +commit = "206b16b7ed9b822fae36a51cf648f2632a54a00b" owners = ["Sevii77"] project_path = "ProperHousing" -changelog = """- 6.3 support""" \ No newline at end of file +changelog = """- 6.4 support""" diff --git a/testing/live/PushyFinder/manifest.toml b/testing/live/PushyFinder/manifest.toml deleted file mode 100644 index 810be41156..0000000000 --- a/testing/live/PushyFinder/manifest.toml +++ /dev/null @@ -1,10 +0,0 @@ -[plugin] -repository = "https://github.com/ry00001/PushyFinder.git" -commit = "a8db1ca91abfc5c6e1fb75508bd7b66247c62169" -owners = ["ry00001"] -project_path = "PushyFinder" -changelog = """ -- Make the configuration window clearer about when the plugin is active or not -- Add a checkbox to always send notifications regardless of AFK status -- Take Camera Mode (gpose, afk cam) into account when checking if AFK -""" diff --git a/testing/live/RPBlurb/manifest.toml b/testing/live/RPBlurb/manifest.toml index d52ba7560d..549d27e552 100644 --- a/testing/live/RPBlurb/manifest.toml +++ b/testing/live/RPBlurb/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/meoiswa/RPBlurb.git" -commit = "7ace2b558389f207a282406e498c98246790bf9d" +commit = "1e2e012ae24131408b2b07f5bcbb3c27116833a1" owners = [ "meoiswa" ] @@ -22,4 +22,12 @@ Version 1.0.0.2: Version 1.0.0.3: - Bugfix: Plugin breaks when switching to an alt. Altholics rejoice! - Improvement: Descriptions can now be twice as long (512 characters). + +Version 1.0.1.0: + - Improvement: Overlay is now hidden in combat. + - Feature: Option to display overlay in combat. + +Version 1.0.2.0: + - Bugfix: Attempt to fix the Style Bleeding issue, + where some users have reported RPBlurb alters the UI styling of other plugins. """ diff --git a/testing/live/Redirect/manifest.toml b/testing/live/Redirect/manifest.toml index 176ec4d046..6025c3478f 100644 --- a/testing/live/Redirect/manifest.toml +++ b/testing/live/Redirect/manifest.toml @@ -1,8 +1,8 @@ [plugin] repository = "https://github.com/cairthenn/Redirect.git" -commit = "e5510fc369d6b719c5bc21b877bc4fa2705215f2" +commit = "e907a0653db62cdf41035d1fe6398f05b5ab95e6" owners = [ "cairthenn", ] project_path = "Redirect" -changelog = "Fix ground-targeted action behavior for actions leaving the queue" \ No newline at end of file +changelog = "Fixes for patch 6.4" diff --git a/testing/live/SortaKinda/images/icon.png b/testing/live/SortaKinda/images/icon.png new file mode 100644 index 0000000000..9c3fb1197a Binary files /dev/null and b/testing/live/SortaKinda/images/icon.png differ diff --git a/testing/live/SortaKinda/manifest.toml b/testing/live/SortaKinda/manifest.toml new file mode 100644 index 0000000000..365fee7260 --- /dev/null +++ b/testing/live/SortaKinda/manifest.toml @@ -0,0 +1,5 @@ +[plugin] +repository = "https://github.com/MidoriKami/SortaKinda.git" +commit = "39ea5bd1ed38f87e64c7348d28d861e9d3b3ebb1" +owners = ["MidoriKami"] +project_path = "SortaKinda" diff --git a/testing/live/TextToTalk/manifest.toml b/testing/live/TextToTalk/manifest.toml index 647d424c51..ae5f7e4fdd 100644 --- a/testing/live/TextToTalk/manifest.toml +++ b/testing/live/TextToTalk/manifest.toml @@ -1,8 +1,8 @@ [plugin] repository = "https://github.com/karashiiro/TextToTalk.git" -commit = "213104a530c0e8fddcc497c64ac07de52ffabda6" +commit = "fa8647dd4bb4eab10ba006ff9c4bf02a8cd7bd09" project_path = "src" owners = ["karashiiro"] changelog = """\ -- Fixes the pop-up talk UI not being disableable +- Fixes login issue in Azure backend """ diff --git a/testing/live/Tf2CriticalHitsPlugin/manifest.toml b/testing/live/Tf2CriticalHitsPlugin/manifest.toml index c6d5a057ac..45eb70588b 100644 --- a/testing/live/Tf2CriticalHitsPlugin/manifest.toml +++ b/testing/live/Tf2CriticalHitsPlugin/manifest.toml @@ -1,11 +1,14 @@ [plugin] repository = "https://github.com/Berna-L/ffxiv-tf2-crit-plugin.git" -commit = "bc21edcd938d3b07f8c061b38aff14ec54824712" +commit = "04c67c409ccbcba45e1a1342d036482521cc32f2" owners = ["Berna-L"] project_path = "Tf2CriticalHitsPlugin" changelog = """ -[Countdown Jams] -- Add option to interrupt Jam when the countdown hits Start. +[TF2-ish Critical Hits] +- Add option per job to set a minimum time between sounds. + - For example, if you set the time as 1000 ms and a critical hit sound is played, + no other sound (be it for critical hit, direct hit, critical heal etc.) will be played for the next second. + - Keep it at 0 ms to use the current behavior. -(Thanks to Verbose Mode for the idea!) +(Thanks to Grayve for the idea and everyone at the Discord thread for the feedback!) """ diff --git a/testing/live/TickTracker/images/icon.png b/testing/live/TickTracker/images/icon.png new file mode 100644 index 0000000000..895d0d8246 Binary files /dev/null and b/testing/live/TickTracker/images/icon.png differ diff --git a/testing/live/TickTracker/manifest.toml b/testing/live/TickTracker/manifest.toml new file mode 100644 index 0000000000..d120f801d0 --- /dev/null +++ b/testing/live/TickTracker/manifest.toml @@ -0,0 +1,8 @@ +[plugin] +repository = "https://github.com/Kurochi51/TickTracker.git" +commit = "78d3ff8900265da7fbcb312380fb5073abb9e9bc" +owners = ["Kurochi51"] +project_path = "TickTracker" +changelog = """ +- Fix edge case scenario where bars wouldn't update after a loading screen +""" diff --git a/testing/live/Tilted/manifest.toml b/testing/live/Tilted/manifest.toml index 65618aac14..db220aff14 100644 --- a/testing/live/Tilted/manifest.toml +++ b/testing/live/Tilted/manifest.toml @@ -1,8 +1,14 @@ [plugin] repository = "https://github.com/meoiswa/TiltedPlugin.git" -commit = "fd8689642ed77b404f0047ea758cd3c83263d91e" +commit = "6c61fee4697539dccc776631966e85d191839ec0" owners = [ "meoiswa" ] project_path = "Tilted" -changelog = "3.0.0 Fixed trigger wonkiness, migrated config to new version" +changelog = """ +Version 3.1.0.0: + - New Trigger: Zoomed. Activates when zooming in past a certain amount. Deactivates when zooming out. + - TiltOffset is now handled as a float, allowing for smoother tilt changes. (Thanks Cara! 💕) + - Improved Camera Distance (zoom) handling + - Remove usage of FFXIVClientStructs to read/set Config values +""" diff --git a/testing/live/TrackyTrack/images/icon.png b/testing/live/TrackyTrack/images/icon.png new file mode 100644 index 0000000000..0ddcdf1804 Binary files /dev/null and b/testing/live/TrackyTrack/images/icon.png differ diff --git a/testing/live/TrackyTrack/manifest.toml b/testing/live/TrackyTrack/manifest.toml new file mode 100644 index 0000000000..ec8502f3a4 --- /dev/null +++ b/testing/live/TrackyTrack/manifest.toml @@ -0,0 +1,7 @@ +[plugin] +repository = "https://github.com/Infiziert90/TrackyTrack.git" +commit = "5fd9970dcc57047374022ba31eee2858c842ba45" +owners = [ + "Infiziert90", +] +project_path = "TrackyTrack" diff --git a/testing/live/UsedName/manifest.toml b/testing/live/UsedName/manifest.toml index 075d387465..7d0d1129b9 100644 --- a/testing/live/UsedName/manifest.toml +++ b/testing/live/UsedName/manifest.toml @@ -1,13 +1,12 @@ [plugin] repository = "https://github.com/LittleNightmare/UsedName.git" -commit = "c85f5ab51c3ad0b6f84d24453ba49b747a197ead" +commit = "a1c40059a311e90b83c48db0805d4b4dc40a9f7c" owners = [ "LittleNightmare" ] project_path = "UsedName" changelog = """ -- player not in FriendList of game could update -- Add a temporary subscription list to add non friends to the plugin's player list -- Remove Update from Player Search -- Add Update from Company Member +- fix cannot read data +- fix actual behavior is inconsistent with the description +- add PlayerSearch button back """ diff --git a/testing/live/WhosTalking/manifest.toml b/testing/live/WhosTalking/manifest.toml index 1997f50a7c..fadc684e21 100644 --- a/testing/live/WhosTalking/manifest.toml +++ b/testing/live/WhosTalking/manifest.toml @@ -1,8 +1,8 @@ [plugin] repository = "https://github.com/sersorrel/WhosTalking.git" -commit = "7e2a30d6155dace594134996df4ae0f73550ff66" +commit = "fd7ea08255fc7a26be013945a00f662dd5ae2ba9" owners = ["sersorrel"] project_path = "WhosTalking" changelog = """\ -- Fix poorly-sized voice activity indicators at certain UI scales +Fixed some positioning bugs with the list of non-party speakers. """ diff --git a/testing/live/XIVDeck.FFXIVPlugin/manifest.toml b/testing/live/XIVDeck.FFXIVPlugin/manifest.toml index 2118344246..a4f3b27ce9 100644 --- a/testing/live/XIVDeck.FFXIVPlugin/manifest.toml +++ b/testing/live/XIVDeck.FFXIVPlugin/manifest.toml @@ -1,6 +1,6 @@ [plugin] repository = "https://github.com/KazWolfe/XIVDeck.git" -commit = "d4a8470c9f23d5f5f50975ddf3a12f6bba8cd5c4" +commit = "d1e264b14374401703546898cfdb01223b4b8011" owners = [ "KazWolfe", ] diff --git a/testing/live/orchestrion/images/icon.png b/testing/live/orchestrion/images/icon.png deleted file mode 100644 index ac49b9a544..0000000000 Binary files a/testing/live/orchestrion/images/icon.png and /dev/null differ diff --git a/testing/live/orchestrion/images/image1.png b/testing/live/orchestrion/images/image1.png deleted file mode 100644 index c4c2cfac23..0000000000 Binary files a/testing/live/orchestrion/images/image1.png and /dev/null differ diff --git a/testing/live/orchestrion/manifest.toml b/testing/live/orchestrion/manifest.toml deleted file mode 100644 index 464a069820..0000000000 --- a/testing/live/orchestrion/manifest.toml +++ /dev/null @@ -1,7 +0,0 @@ -[plugin] -repository = "https://github.com/lmcintyre/OrchestrionPlugin.git" -commit = "3e8c22c7332410d1bc5d3cd0ff45d96364be3d0a" -owners = [ - "lmcintyre", -] -project_path = "Orchestrion" \ No newline at end of file diff --git a/testing/live/rtyping/manifest.toml b/testing/live/rtyping/manifest.toml index 1afd6e91a1..483d847b52 100644 --- a/testing/live/rtyping/manifest.toml +++ b/testing/live/rtyping/manifest.toml @@ -1,8 +1,8 @@ [plugin] repository = "https://github.com/apetih/rtyping.git" -commit = "15e3fcde97748a103a9f522052527478d6268b0c" +commit = "5eeee862b08f71f5c05402b16e536dd50398e0d8" owners = ["apetih"] project_path = "client/rtyping" changelog = """ -- Force window to main monitor, hopefully fixes opaque window +- Added support for Cross-world parties. """