1 Commits

Author SHA1 Message Date
nbats
21df3b36f5 Revert "feat: add monochrome theme support (#4537)"
This reverts commit bfc15e8141.
2026-01-04 00:43:31 -08:00
146 changed files with 1621 additions and 3493 deletions

View File

@@ -33,7 +33,6 @@ Here you'll find some general guidelines for those who would like to start contr
For submitting new links, follow these steps: For submitting new links, follow these steps:
- Make sure it's not already in the wiki. The easiest way to do this is to check our [Single Page](https://api.fmhy.net/single-page) using `ctrl+f`. - Make sure it's not already in the wiki. The easiest way to do this is to check our [Single Page](https://api.fmhy.net/single-page) using `ctrl+f`.
- Don't spam a bunch of un-tested links at once. Try to only send things you genuinely feel might be worth adding.
- Reach out via the feedback system, [GitHub](https://github.com/fmhy/edit), or join our [Discord](https://github.com/fmhy/FMHY/wiki/FMHY-Discord). Note that we have to check sites ourselves, so using a issue, rather than pull request is easier. - Reach out via the feedback system, [GitHub](https://github.com/fmhy/edit), or join our [Discord](https://github.com/fmhy/FMHY/wiki/FMHY-Discord). Note that we have to check sites ourselves, so using a issue, rather than pull request is easier.
- You can optionally include socials, tools, or any other additional info alongside the entry. - You can optionally include socials, tools, or any other additional info alongside the entry.

2
.github/README.md vendored
View File

@@ -8,7 +8,7 @@
- Website: [fmhy.net](https://fmhy.net) - Website: [fmhy.net](https://fmhy.net)
- News & Monthly Updates: [fmhy.net/posts](https://fmhy.net/posts) - News & Monthly Updates: [fmhy.net/posts](https://fmhy.net/posts)
- Backups, Markdown, JSON API: [github.com/fmhy/FMHY/wiki/Backups](https://github.com/fmhy/FMHY/wiki/Backups) - Backups: [github.com/fmhy/FMHY/wiki/Backups](https://github.com/fmhy/FMHY/wiki/Backups)
- Neither the site nor GitHub host any files - Neither the site nor GitHub host any files
## 🗺️ Emoji Legend ## 🗺️ Emoji Legend

View File

@@ -20,7 +20,6 @@ import { defs, emojiRender, movePlugin } from './markdown/emoji'
import { headersPlugin } from './markdown/headers' import { headersPlugin } from './markdown/headers'
import { toggleStarredPlugin } from './markdown/toggleStarred' import { toggleStarredPlugin } from './markdown/toggleStarred'
import { transformsPlugin } from './transformer' import { transformsPlugin } from './transformer'
import { replaceNoteLink } from './utils/markdown'
// @unocss-include // @unocss-include
@@ -105,12 +104,6 @@ export default defineConfig({
replacement: fileURLToPath( replacement: fileURLToPath(
new URL('./theme/components/VPLocalSearchBox.vue', import.meta.url) new URL('./theme/components/VPLocalSearchBox.vue', import.meta.url)
) )
},
{
find: /^.*VPNav\.vue$/,
replacement: fileURLToPath(
new URL('./theme/components/VPNav.vue', import.meta.url)
)
} }
] ]
}, },
@@ -215,7 +208,6 @@ export default defineConfig({
md.use(emojiRender) md.use(emojiRender)
md.use(toggleStarredPlugin) md.use(toggleStarredPlugin)
meta.build.api && md.use(headersPlugin) meta.build.api && md.use(headersPlugin)
replaceNoteLink(md)
} }
}, },
themeConfig: { themeConfig: {

View File

@@ -15,12 +15,51 @@
*/ */
import type { DefaultTheme } from 'vitepress' import type { DefaultTheme } from 'vitepress'
import { excluded } from './shared' import consola from 'consola'
import { transform, transformGuide } from './transformer' import { transform, transformGuide } from './transformer'
// @unocss-include // @unocss-include
export * from './shared' export const meta = {
name: 'freemediaheckyeah',
description: 'The largest collection of free stuff on the internet!',
hostname: 'https://fmhy.net',
keywords: ['stream', 'movies', 'gaming', 'reading', 'anime'],
build: {
api: true,
nsfw: true
}
}
export const excluded = [
'readme.md',
'single-page',
'feedback.md',
'index.md',
'sandbox.md',
'startpage.md'
]
if (process.env.FMHY_BUILD_NSFW === 'false') {
consola.info('FMHY_BUILD_NSFW is set to false, disabling NSFW content')
meta.build.nsfw = false
}
if (process.env.FMHY_BUILD_API === 'false') {
consola.info('FMHY_BUILD_API is set to false, disabling API component')
meta.build.api = false
}
const formatCommitRef = (commitRef: string) =>
`<a href="https://github.com/fmhy/edit/commit/${commitRef}">${commitRef.slice(0, 8)}</a>`
export const commitRef =
process.env.CF_PAGES && process.env.CF_PAGES_COMMIT_SHA
? formatCommitRef(process.env.CF_PAGES_COMMIT_SHA)
: process.env.COMMIT_REF
? formatCommitRef(process.env.COMMIT_REF)
: 'dev'
export const feedback = `<a href="/feedback" class="feedback-footer">Made with ❤</a>`
export const search: DefaultTheme.Config['search'] = { export const search: DefaultTheme.Config['search'] = {
options: { options: {
@@ -47,7 +86,7 @@ export const search: DefaultTheme.Config['search'] = {
}, },
miniSearch: { miniSearch: {
options: { options: {
tokenize: (text) => text.replace(/[\u2060\u200B]/g, '').split(/[\n\r #%*,=/:;?[\]{}()&]+/u), // simplified charset: removed [-_.@] and non-english chars (diacritics etc.) tokenize: (text) => text.split(/[\n\r #%*,=/:;?[\]{}()&]+/u), // simplified charset: removed [-_.@] and non-english chars (diacritics etc.)
processTerm: (term, fieldName) => { processTerm: (term, fieldName) => {
// biome-ignore lint/style/noParameterAssign: h // biome-ignore lint/style/noParameterAssign: h
term = term term = term
@@ -108,3 +147,190 @@ export const search: DefaultTheme.Config['search'] = {
}, },
provider: 'local' provider: 'local'
} }
export const socialLinks: DefaultTheme.SocialLink[] = [
{ icon: 'github', link: 'https://github.com/fmhy/edit' },
{ icon: 'discord', link: 'https://github.com/fmhy/FMHY/wiki/FMHY-Discord' },
{
icon: 'reddit',
link: 'https://reddit.com/r/FREEMEDIAHECKYEAH'
}
]
export const nav: DefaultTheme.NavItem[] = [
{ text: '📑 Changelog', link: '/posts/changelog-sites' },
{ text: '📖 Glossary', link: 'https://rentry.org/The-Piracy-Glossary' },
{
text: '💾 Backups',
link: '/other/backups'
},
{
text: '🌱 Ecosystem',
items: [
{ text: '🌐 Search', link: '/posts/search' },
{ text: '❓ FAQs', link: '/other/FAQ' },
{ text: '🔖 Bookmarks', link: 'https://github.com/fmhy/bookmarks' },
{ text: '✅ SafeGuard', link: 'https://github.com/fmhy/FMHY-SafeGuard' },
{ text: '🚀 Startpage', link: 'https://fmhy.net/startpage' },
{ text: '📋 snowbin', link: 'https://pastes.fmhy.net' },
{ text: '🔎 SearXNG', link: 'https://searx.fmhy.net/' },
{
text: '💡 Site Hunting',
link: 'https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/find-new-sites/'
},
{
text: '😇 SFW FMHY',
link: 'https://rentry.org/piracy'
},
{
text: '🏠 Selfhosting',
link: '/other/selfhosting'
},
{ text: '🏞 Wallpapers', link: '/other/wallpapers' },
{ text: '💙 Feedback', link: '/feedback' }
]
}
]
export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
{
text: '<span class="i-twemoji:books"></span> Beginners Guide',
link: '/beginners-guide'
},
{
text: '<span class="i-twemoji:newspaper"></span> Posts',
link: '/posts'
},
{
text: '<span class="i-twemoji:light-bulb"></span> Contribute',
link: '/other/contributing'
},
{
text: 'Wiki',
collapsed: false,
items: [
{
text: '<span class="i-twemoji:name-badge"></span> Adblocking / Privacy',
link: '/privacy'
},
{
text: '<span class="i-twemoji:robot"></span> Artificial Intelligence',
link: '/ai'
},
{
text: '<span class="i-twemoji:television"></span> Movies / TV / Anime',
link: '/video'
},
{
text: '<span class="i-twemoji:musical-note"></span> Music / Podcasts / Radio',
link: '/audio'
},
{
text: '<span class="i-twemoji:video-game"></span> Gaming / Emulation',
link: '/gaming'
},
{
text: '<span class="i-twemoji:green-book"></span> Books / Comics / Manga',
link: '/reading'
},
{
text: '<span class="i-twemoji:floppy-disk"></span> Downloading',
link: '/downloading'
},
{
text: '<span class="i-twemoji:cyclone"></span> Torrenting',
link: '/torrenting'
},
{
text: '<span class="i-twemoji:brain"></span> Educational',
link: '/educational'
},
{
text: '<span class="i-twemoji:mobile-phone"></span> Android / iOS',
link: '/mobile'
},
{
text: '<span class="i-twemoji:penguin"></span> Linux / macOS',
link: '/linux-macos'
},
{
text: '<span class="i-twemoji:globe-showing-asia-australia"></span> Non-English',
link: '/non-english'
},
{
text: '<span class="i-twemoji:file-folder"></span> Miscellaneous',
link: '/misc'
}
]
},
{
text: 'Tools',
collapsed: false,
items: [
{
text: '<span class="i-twemoji:laptop"></span> System Tools',
link: '/system-tools'
},
{
text: '<span class="i-twemoji:card-file-box"></span> File Tools',
link: '/file-tools'
},
{
text: '<span class="i-twemoji:paperclip"></span> Internet Tools',
link: '/internet-tools'
},
{
text: '<span class="i-twemoji:left-speech-bubble"></span> Social Media Tools',
link: '/social-media-tools'
},
{
text: '<span class="i-twemoji:memo"></span> Text Tools',
link: '/text-tools'
},
{
text: '<span class="i-twemoji:alien-monster"></span> Gaming Tools',
link: '/gaming-tools'
},
{
text: '<span class="i-twemoji:camera"></span> Image Tools',
link: '/image-tools'
},
{
text: '<span class="i-twemoji:videocassette"></span> Video Tools',
link: '/video-tools'
},
{
text: '<span class="i-twemoji:speaker-high-volume"></span> Audio Tools',
link: '/audio#audio-tools'
},
{
text: '<span class="i-twemoji:red-apple"></span> Educational Tools',
link: '/educational#educational-tools'
},
{
text: '<span class="i-twemoji:man-technologist"></span> Developer Tools',
link: '/developer-tools'
}
]
},
{
text: 'More',
collapsed: true,
items: [
meta.build.nsfw
? {
text: '<span class="i-twemoji:no-one-under-eighteen"></span> NSFW',
link: 'https://rentry.org/NSFW-Checkpoint'
}
: {},
{
text: '<span class="i-twemoji:warning"></span> Unsafe Sites',
link: '/unsafe'
},
{
text: '<span class="i-twemoji:package"></span> Storage',
link: '/storage'
}
]
}
]

View File

@@ -17,27 +17,23 @@
import type { MarkdownRenderer } from 'vitepress' import type { MarkdownRenderer } from 'vitepress'
const excluded = ['Beginners Guide'] const excluded = ['Beginners Guide']
const starredMarkers = [':star:', ':glowing-star:', '⭐', '🌟']
const indexMarkers = ['🌐', ':globe_with_meridians:', ':globe-with-meridians:']
export function toggleStarredPlugin(md: MarkdownRenderer) { export function toggleStarredPlugin(md: MarkdownRenderer) {
md.renderer.rules.list_item_open = (tokens, index, options, env, self) => { md.renderer.rules.list_item_open = (tokens, index, options, env, self) => {
const contentToken = tokens[index + 2] const contentToken = tokens[index + 2]
if (!contentToken) return self.renderToken(tokens, index, options) // Ensure the token exists
if (contentToken) {
const content = contentToken.content
const content = contentToken.content if (
const isStarred = !excluded.includes(env.frontmatter.title) &&
!excluded.includes(env.frontmatter.title) && (content.includes(':star:') || content.includes(':glowing-star:'))
starredMarkers.some((marker) => content.includes(marker)) ) {
const isIndex = indexMarkers.some((marker) => content.includes(marker)) return `<li class="starred">`
}
}
if (!isStarred && !isIndex) return self.renderToken(tokens, index, options) return self.renderToken(tokens, index, options)
const classes = []
if (isStarred) classes.push('starred')
if (isIndex) classes.push('index')
return `<li class="${classes.join(' ')}">`
} }
} }

View File

@@ -1,8 +0,0 @@
#### 1337x Ranks
* ⬛ Black - Admin
* 🟩 Green - Moderator
* 🟦 Blue - VIP (Very Trusted)
* 🟨 Yellow - Uploader (Trusted)
* 🟥 Red - Trial Uploader
* ⬜ Grey - User

View File

@@ -1 +0,0 @@
Spacewar! is a [1962 multiplayer game](https://wikipedia.org/wiki/Spacewar!) made for the DEC PDP-1 minicomputer. It was later ported to other systems, making it the first ever multi-computer game.

View File

@@ -1,7 +0,0 @@
#### Advanced Logic Calculators
* analytic tableaux generator: https://www.umsu.de/trees/
* natural deduction proof checker: https://proofs.openlogicproject.org/
* propositional logic calculator (finds models): https://www.inf.unibz.it/~franconi/teaching/propcalc/
* a tutorial on sequent calculus: http://logitext.mit.edu/tutorial
* modal logic playground (for constructing models): https://rkirsling.github.io/modallogic/

View File

@@ -1,4 +0,0 @@
#### Alt Twitch Player Extensions
* https://addons.mozilla.org/en-US/firefox/addon/twitch_5/
* https://chrome.google.com/webstore/detail/alternate-player-for-twit/bhplkbgoehhhddaoolmakpocnenplmhf

View File

@@ -1,6 +0,0 @@
#### Alt Warp Clients
If you can't connect, try Scanner Settings -> Endpoint -> Suggested -> Try different IP's to find one that works
* https://github.com/bepass-org/oblivion-desktop
* https://github.com/bepass-org/oblivion

View File

@@ -1,3 +0,0 @@
#### Android Spotify Note
Many modded apks are buggy as of now and may not work at all.

View File

@@ -1,5 +0,0 @@
#### APKMirror Extensions
* https://addons.mozilla.org/en-US/firefox/addon/toolbox-google-play-store/
* https://chrome.google.com/webstore/detail/toolbox-for-google-play-s/fepaalfjfchbdianlgginbmpeeacahoo
* https://addons.opera.com/en/extensions/details/toolbox-for-google-play-storetm/

View File

@@ -1,3 +0,0 @@
#### App Lock
Keep in mind this is a privacy utility meant to prevent common snooping, its not claiming to be a security tool, and will not stop forensic analysis.

View File

@@ -1,3 +0,0 @@
#### Audiobookbay Warning
Avoid Fake download links, use [Torrents / Magnets](https://i.ibb.co/8sV2061/0fa8159b11bb.png), or paste info hash into torrent client

View File

@@ -1,3 +0,0 @@
#### Aurora Note
Keep in mind that some apps that exist do not work unless you installed them from the google play store. This is usually true for things like banking apps, or some institutions app.

View File

@@ -1,3 +0,0 @@
#### Better Reasoning
For better reasoning, switch mode to "think deeper"

View File

@@ -1,3 +0,0 @@
#### Bookmarkeddit
This also extends the amount of saved posts you can view (reddit caps at 1000 by default)

View File

@@ -1,7 +0,0 @@
#### Buster Note
The client app simulates user interactions which greatly improves the success rate of buster. You can download the app through the extensions option page, or get it from the link below:
https://github.com/dessant/buster-client
The app is available for Windows, Linux, and macOS

View File

@@ -1,3 +0,0 @@
#### Buzzheavier Warning
Make sure you have an [adblocker](https://fmhy.net/adblockvpnguide#adblocking) when using Buzzheavier as there are hidden ads on download pages with malicious content. Both the download button and torrent buttons should automatically start a download in your browser, NOT redirect you to another page.

View File

@@ -1,3 +0,0 @@
#### Bypass FREEdlink
You still need to bypass Cloudflare captcha by yourself. This only bypasses timer on single downloads. You may still need to wait normal time to download another file which is enforced from server-side.

View File

@@ -1,3 +0,0 @@
#### Captcha 4PDA
Use Google Gemini to translate the captcha

View File

@@ -1,3 +0,0 @@
#### ChatGPT Limits
GPT-5.2 Instant (no reasoning; 16K context) / 10 messages every 5 hours, then gpt-5-mini

View File

@@ -1,4 +0,0 @@
#### Clipboard2File Addons
* https://github.com/vord1080/clipboard2file/
* https://github.com/daijro/Clipboard2File-Chrome

View File

@@ -1,3 +0,0 @@
#### Cofi Note
Useful if you're a coffee enthusiast. The methods are created by James Hoffmann, he's a world champion barista and popular YouTuber

View File

@@ -1,3 +0,0 @@
#### CrystalDiskInfo
Avoid versions labeled "Ads".

View File

@@ -1,5 +0,0 @@
#### CS.RIN Search
If your initial search doesn't work, trying searching the same term again within the "search these results" engine on the results screen.
<img width="1307" height="97" alt="image" src="https://github.com/user-attachments/assets/b2f149b9-8a9a-4250-8754-e63f50b82c59" />

View File

@@ -1,3 +0,0 @@
#### DODI Warning
Its highly recommended to stick to dodi's 1337x page or main website, as sites they linked to have fake DDL buttons, and shouldn't be used without an adblocker

View File

@@ -1,3 +0,0 @@
#### Dolby Access / Atmos Note
Many headsets come with Dolby Access for free without letting users know. You can check if you're licensed by opening Dolby Access, going to settings, and looking in the [bottom right corner](https://i.imgur.com/9vJA6CL.png). Its much better than things like iCue or similar apps.

View File

@@ -1,3 +0,0 @@
#### Driver Note
Only install the drivers you actually need. Don't install all new drivers at once, as this could lead to things breaking, especially system audio.

View File

@@ -1,3 +0,0 @@
#### Eaglercraft Note
Play on Chromium-based browsers for the best performance

View File

@@ -1,5 +0,0 @@
#### Eruda
Eruda Console for mobile browsers bookmarklet:
`javascript:(function () { var script = document.createElement('script'); script.src="//cdn.jsdelivr.net/npm/eruda"; document.body.appendChild(script); script.onload = function () { eruda.init() } })();`

View File

@@ -1,3 +0,0 @@
#### Filebin Warning
Anyone with a link to a "bin" has full access to it. They can add new files, delete existing files, etc

View File

@@ -1,3 +0,0 @@
#### Filelu Warning
According to their FAQ question "When will my files expire?", you must login to your account at least once every 180 days to prevent your account being deleted.

View File

@@ -1,4 +0,0 @@
#### FileZilla
Keep in mind the link on their frontpage is sponsored and has adware, but you can get to the non-adware version by following the link on fmhy,
or pressing download on the FileZilla website, and then clicking "additional downloads" under the big download button.

View File

@@ -1,3 +0,0 @@
#### Flicker Proxy
Note that the proxy may be slower, but it can be used in cases where the site or TMDb is blocked.

View File

@@ -1,3 +0,0 @@
#### Fluxy Repacks
Note that though it has repacks in the name, its not actually a repack site.

View File

@@ -1,4 +0,0 @@
#### Forest Extensions
* https://addons.mozilla.org/en-US/firefox/addon/forest-stay-focused-be-present/
* https://chrome.google.com/webstore/detail/forest-stay-focused-be-pr/kjacjjdnoddnpbbcjilcajfhhbdhkpgk

View File

@@ -1,3 +0,0 @@
#### Foxit Warning
The installer tries to install McAfee WebAdvisor + PhantomPDF Business. They can be skipped by clicking "decline" both times.

View File

@@ -1,7 +0,0 @@
#### FreeGOGPCGames Note
Many titles on the site are the older versions of the installers. The digital signature on the installer is signed by GOG Limited, which is the old company name before it was merged with GOG Sp. z o.o and all digital file signatures were updated to reflect this name change.
The hash does not match the gog-games database because the digital file signatures differ on the installer. Installing either version will produce identical sets of files since the game version remains unchanged.
/u/AtariRiot66

View File

@@ -1 +0,0 @@
Nano Banana Pro is a bit glitchy as of now, but its being worked on according to their Discord staff

View File

@@ -1,3 +0,0 @@
#### General Tweak Warning
Its not recommended to use these unless you know what you're doing. Always research first, never just "Apply All" tweaks randomly.

View File

@@ -1,9 +0,0 @@
#### Glitchwave Note
For charts you can specify months and days using URLs like the following examples
January 2006:
`https://glitchwave.com/charts/popular/game/2006.01/excl:ratings/`
Jan-Feb 2018:
`https://glitchwave.com/charts/popular/game/2018.01-2018.02/excl:ratings/`

View File

@@ -1,3 +0,0 @@
#### Google Song Identification
Google and YouTube Music mobile apps have song identification button next to the search box.

View File

@@ -1,3 +0,0 @@
#### Google Translate Note
Google translate can serve as a web proxy. Simply paste your URL into the translate field and then click on the result and view the page in the original language. This way you can navigate any web-page via google.com. Google is almost never blocked so this trick works on most occasions.

View File

@@ -1,3 +0,0 @@
#### HDO Box Note
To use the app, HDO Box may ask you to install a third-party video player which contains ads. Check out the DNS Adblocking section on FMHY for adblocking solutions.

View File

@@ -1,3 +0,0 @@
#### Hugging Face Warning
HuggingFace uses a system called ZeroGPU to manage access to their high-end GPUs. To make sure that their GPUs don't get fully used up, there are limits on how long you can use the GPU on Spaces like this one that utilize ZeroGPU. The rate limit is 120 seconds daily for non-logged in users. You can get around the 120 second limit by changing your IP address, which can be done by using a proxy or VPN while logged out. If you sign up for a free HuggingFace account, you get a much higher 300 second rate limit, but changing your IP won't reset the limit

View File

@@ -1,3 +0,0 @@
#### Instaeclipse Note
Use ['advanced'](https://wispydocs.pages.dev/revanced-morphe-obtainium/#advanced) to build clean apks, or use antisplitm with revanced manager.

View File

@@ -1,5 +0,0 @@
#### IRC Highway Note
To request a book run: @request [author] [title] - Requests without both [author] and [title] are deleted.
To view request status and rules run: @request-list

View File

@@ -1,3 +0,0 @@
#### Jdownloader
Keep in mind the link on their frontpage is sponsored and has adware, but jdownloader2 which is linked on fmhy, does not contain any adware.

View File

@@ -1,4 +0,0 @@
#### Limit Bypass Note
- sparsebox: ios 17.0 - 18.1 beta 4 (not including 17.7.1, 17.7.2)
- live container: ios 16+

View File

@@ -1,3 +0,0 @@
#### LiteAPK + Modyolo Note
The site is safe, but they are known for mislabeling things like RockMods releases as their own, and mislabeling versions to make it look like they have newer things than they really do.

View File

@@ -1,3 +0,0 @@
#### Malware Removal Forums
Note that many of these will suggest removing pirated software, but if you got everything from trusted sources, there is no real need to do that.

View File

@@ -1,3 +0,0 @@
#### Megabasterd Note
Free proxies work but they are very hit and miss

View File

@@ -1,13 +0,0 @@
#### Mobilism Ranks
The users in red. Administrators are members assigned with the highest level of control over the entire board. Usually theyre Section Heads. Most Administrators are Section Heads but not all Section Heads are administrators.
The users in green. They moderate! Moderators are members of our staff who make everyone follows the sites rules.
The users in light green. Theyre similar to moderators but do not have the same authority. Oftentimes helpers eventually become moderators.
The people in orange. Mobilism has an Android Review Section and a Book Review Section. Users who are part of their review teams are the Reviewers.
The guys in purple. Different sections have different requirements for becoming a Major Releaser but generally it comes with making significant contributions to the release sections.
The users in blue. VIPs are either members who were rewarded with VIP status for their contributions, or donated to support Mobilism. VIPs have access to VIP sections: VIP Releases, VIP Requests, VIP Talk, receive extra WRZ$ and do not see any ads.

View File

@@ -1 +0,0 @@
This site uses credits ("magicubes") to generate images and videos, you get 100 daily. It costs 2 magicubes per image for Qwen, 1 for Z-Image, and 28 for Wan 2.2 14b I2V. Linking an Alibaba Cloud account (free, ignore the final part of account setup where it asks for payment info and link the account anyways) gets you 50 extra magicubes daily.

View File

@@ -1,3 +0,0 @@
#### Māori Note
Māori is the indigenous language of mainland New Zealand. Due to the [Native Schools Act](https://en.wikipedia.org/wiki/M%C4%81ori_language#Suppression_and_decline) in 1867, children were forbidden to speak it in the classroom, under penalty of corporal punishment, which led to a rapid decline of speakers. There are now [revitalization efforts](https://en.wikipedia.org/wiki/M%C4%81ori_language_revival) (such as Tōku Reo) attempting to promote and reinforce its use.

View File

@@ -1,8 +0,0 @@
#### movie-web
You can [enable an extension](https://pstream.org/onboarding/extension) / [2](https://github.com/sussy-code/browser-ext/releases/) that will add more sources, but it needs to connect to all sites to function. The extension is safe, and many people use it, the permissions are just needed in order for the [extension to work correctly](https://rentry.co/htagcrv4).
Note that it can be ran in a new browser or fresh browser profile if you don't want to use your main browser.
Docs + selfhosting guides can be found here:
https://docs.pstream.mov/

View File

@@ -1,5 +0,0 @@
#### MovieParadise Code
* In order to unlock the better host (1fichier) you need a signup code. This is important as without it the site will be rapidgator only links which are very slow. You can get a code from the link below, or the pins in our #free-stuff discord channel.
**[Click Here To Get Code](https://rentry.org/he8fhzku)**

View File

@@ -1,3 +0,0 @@
#### MVSEP Note
Register for wav and flac output, and lower queue times

View File

@@ -1,10 +0,0 @@
#### OneClick Note
Main features include:
- Download links straight to Google Drive.
- Torrent to Google Drive.
- Google Drive Download Manager (similar to pyLoad).
- Spotify Downloader.
- Jellyfin Support.
- RClone + WebUI.
- And much more.

View File

@@ -1,3 +0,0 @@
#### Openasar
The Vencord installer has an option to install OpenAsar, but you may need to click the install button twice (only once more after clicking "Accept").

View File

@@ -1,14 +0,0 @@
#### OpenRGB Beta
How to download OpenRGB beta.
Why?
Because the latest version that you can download from the website dates from July 9 2023, and since a new device is added to the software almost every day, using the beta version becomes a necessity.
Go to Gitlab OpenRgb site `https://gitlab.com/CalcProgrammer1/OpenRGB` and on the left go to Build => Pipelines and then download the appropriate version from the download button on the top right.
(Note: Before downloading it should say Passed at the top left.)
Supported devices (0.9) => `https://openrgb.org/devices_0.9.html`
(The link may become outdated after a while, go to the OpenRGB site `https://openrgb.org/index.html` and find the newer one in the menu on the top right.)
Supported devices (Latest experimental) => `https://openrgb.org/devices.html`

View File

@@ -1,17 +0,0 @@
#### Pollinations Limits
For `chat.pollinations.ai` (and the underlying API), the rate limits depend on how you're using it:
**Anonymous / Free Tier (No Login)**
- **Text/Chat**: ~1 request every **3 seconds** (per IP).
- **Images**: ~1 request every **5 seconds** (per IP).
**Logged In (Pollen System)**
- Users get a **daily free Pollen allowance** based on their tier.
- **Publishable Keys (`pk_`)**: Rate limited to prevent abuse (e.g., ~1 pollen/hour per IP).
- **Secret Keys (`sk_`)**: **No rate limits** (requests run as fast as you can pay for them with Pollen).
If you're hitting limits on the chat site:
1. Slow down slightly (wait 3-5s between messages).
2. **Log in** at [enter.pollinations.ai](https://enter.pollinations.ai) to use your daily free credits.
3. If you need massive throughput, use an API key (`sk_`) with purchased credits.

View File

@@ -1,4 +0,0 @@
#### PrintEditWe Addons
* https://addons.mozilla.org/en-US/firefox/addon/print-edit-we/
* https://chrome.google.com/webstore/detail/print-edit-we/olnblpmehglpcallpnbgmikjblmkopia

View File

@@ -1,5 +0,0 @@
#### Proton Torrenting
Torrenting on Proton VPN's free plan is only possible when using an OpenVPN configuration / [Guide](https://protonvpn.com/support/vpn-config-download). Note that they do expire, so you'll have to make new ones occasionally.
OpenVPN login credentials are located [here](https://account.protonvpn.com/account-password).

View File

@@ -1,3 +0,0 @@
#### Reaper Note
Asks user to buy after 60 days, but you can just close the popup and keep using for free

View File

@@ -1,3 +0,0 @@
#### RedditFilter Note
Go to Settings → Feed Filter and untoggle 'Promoted' to not see ads. Those that don't like AI suggestions can untoggle 'Recommended' as well.

View File

@@ -1,3 +0,0 @@
#### RGShows Autoplay
If you're using Firefox and you want autoplay, hit the permissions on your url search bar and allow both audio + video.

View File

@@ -1,3 +0,0 @@
#### Sanet Warning
Note that Sanet has been known to host things like KMS Matrix, so its best to avoid it for software and games

View File

@@ -1,4 +0,0 @@
#### SavePageWe
* https://addons.mozilla.org/en-US/firefox/addon/save-page-we/
* https://chrome.google.com/webstore/detail/save-page-we/dhhpefjklgkmgeafimnjhojgjamoafof

View File

@@ -1,5 +0,0 @@
#### ScrollAnywhere Addons
* https://addons.mozilla.org/en-US/firefox/addon/scroll_anywhere/
* https://chrome.google.com/webstore/detail/scrollanywhere/jehmdpemhgfgjblpkilmeoafmkhbckhi
* https://addons.opera.com/en/extensions/details/scrollanywhere/?display=en

View File

@@ -1,3 +0,0 @@
#### SD Maid
Google play version is paid. Press donate to unlock the app on F-Droid and GitHub versions.

View File

@@ -1,3 +0,0 @@
#### SH Note
Based on popular [card game](https://en.wikipedia.org/wiki/Secret_Hitler), created by cards against humanity co-founder.

View File

@@ -1,3 +0,0 @@
#### Site Favicon DL
You can also do `https://www.google.com/s2/favicons?domain=URL&sz=64` where URL is the URL of the site you want and sz is the size in pixels

View File

@@ -1,3 +0,0 @@
#### Soft98 Note
Enable `AdGuard - Ads` filterlist in uBlock to allow downloads to work. To remove all ads, you can also get the [AdGuard Extra Userscript](https://github.com/AdguardTeam/AdGuardExtra?tab=readme-ov-file#userscript) (not the extension) and enable it in your script manager. Note that you may need to disable filter `ir: PersianBlocker`.

View File

@@ -1,9 +0,0 @@
#### SoftArchive Mirrors
- https://sanet.download/
- https://softarchive.is/
- https://sanet.lc/
- https://sanet.ws/
- https://sanet.st/
- https://sanet.sb/
- https://soft.ac/

View File

@@ -1,3 +0,0 @@
#### Sora
Bypass the need for a invite code by installing Sora Mobile, and logging into OpenAI.

View File

@@ -1,5 +0,0 @@
#### Spicetify Note
Join their [Discord](https://discord.gg/VnevqPp2Rr) for version compatibility.
Note that you can use the store built in to get a full list of addons and themes.

View File

@@ -1,3 +0,0 @@
#### Sport7
Note that many sites use this player, but Sport7 is their main site.

View File

@@ -1,3 +0,0 @@
#### Steam Controller Support
Steam has built in support for most controller types, just add your games to steam, right click the game, and turn on your controller

View File

@@ -1,3 +0,0 @@
#### Steam Currency Converter Note
For instant currency conversion : Go to Firefox's extensions settings, click on the add-on, enter the permissions section and allow the sites there

View File

@@ -1,4 +0,0 @@
#### Tabiverse Extensions
* https://addons.mozilla.org/firefox/addon/tabiverse/
* https://chromewebstore.google.com/detail/hpplgjkooibhfkmmepoikcjpadcojcik

View File

@@ -1,3 +0,0 @@
#### Tautulli Note
This will sometimes get falsely flagged by defender and removed automatically, so it may need to be allowed manually.

View File

@@ -1,3 +0,0 @@
#### TeamSpeak Warning
Note that teamspeak server admins can view IPs, so only join servers you trust

View File

@@ -1,3 +0,0 @@
#### Thunderbird
To get real-time notification, press the three lines in the top left corner, select the account you want to configure, select Manage Folders, then select the folder you want from below. You can then select inbox and enable push. (Notifications must be enabled).

View File

@@ -1,5 +0,0 @@
#### TinyURL Note
To reveal the destination URL, replace "www" with "preview" in the URL like so:
https://preview.tinyurl.com/5erwtst5

View File

@@ -1,3 +0,0 @@
#### Video DownloadHelper
Note that some versions of this extension give a watermark on sites that need conversion. It seems to happen on the Windows + Firefox version.

View File

@@ -1,3 +0,0 @@
#### Vuenxx Note
If you want to download the files, you need to send the screenshot that you subscribed to the vuenxx youtube channel to the discord "teyit" channel. After a while the download channels will open.

View File

@@ -1,3 +0,0 @@
#### WeLib Note
WeLib is *not* connected to Anna's Archive, they simply mirror Anna's content onto their own site that has a different UI. It is not updated as often, and they don't share their codebase improvements publicly, so they aren't endorsed by Anna's themselves.

View File

@@ -1,3 +0,0 @@
#### WinRAR
WinRAR does not auto-update, and because it had a remote code execution vulnerability in the past, you should make sure you've manually updated **to 7.13 or later** to be safe.

View File

@@ -1,3 +0,0 @@
#### Yet Another Call Blocker Note
The app itself isn't maintained, but the repo contains the "main" phone number database. It is updated once in a couple of months. The app receives daily (incremental) updates directly from third-party services.

View File

@@ -1,4 +0,0 @@
#### YouTube Tweaks
* https://addons.mozilla.org/firefox/addon/youtube-tweaks/
* https://chrome.google.com/webstore/detail/youtube-tweaks/oeakphpfoaeggagmgphfejmfjbhjfhhh

View File

@@ -1,3 +0,0 @@
#### YTS / Yify Note
YTS / Yify has many fake ripoff sites out there, make 100% sure you're on one of the official domains before downloading.

View File

@@ -1,250 +0,0 @@
/**
* Copyright (c) 2025 taskylizard. Apache License 2.0.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import type { DefaultTheme } from 'vitepress'
// @unocss-include
export const meta = {
name: 'freemediaheckyeah',
description: 'The largest collection of free stuff on the internet!',
hostname: 'https://fmhy.net',
keywords: ['stream', 'movies', 'gaming', 'reading', 'anime'],
build: {
api: true,
nsfw: true
}
}
export const excluded = [
'readme.md',
'single-page',
'feedback.md',
'index.md',
'sandbox.md',
'startpage.md'
]
const safeEnv = (key: string) => typeof process !== 'undefined' ? process.env?.[key] : undefined
if (safeEnv('FMHY_BUILD_NSFW') === 'false') {
meta.build.nsfw = false
}
if (safeEnv('FMHY_BUILD_API') === 'false') {
meta.build.api = false
}
const formatCommitRef = (commitRef: string) =>
`<a href="https://github.com/fmhy/edit/commit/${commitRef}">${commitRef.slice(0, 8)}</a>`
const cfStart = safeEnv('CF_PAGES_COMMIT_SHA')
const commitStart = safeEnv('COMMIT_REF')
export const commitRef =
safeEnv('CF_PAGES') && cfStart
? formatCommitRef(cfStart)
: commitStart
? formatCommitRef(commitStart)
: 'dev'
export const feedback = `<a href="/feedback" class="feedback-footer">Made with ❤</a>`
export const socialLinks: DefaultTheme.SocialLink[] = [
{ icon: 'github', link: 'https://github.com/fmhy/edit' },
{ icon: 'discord', link: 'https://github.com/fmhy/FMHY/wiki/FMHY-Discord' },
{
icon: 'reddit',
link: 'https://reddit.com/r/FREEMEDIAHECKYEAH'
}
]
export const nav: DefaultTheme.NavItem[] = [
{ text: '📑 Changelog', link: '/posts/changelog-sites' },
{ text: '📖 Glossary', link: 'https://rentry.org/The-Piracy-Glossary' },
{
text: '💾 Backups',
link: '/other/backups'
},
{
text: '🌱 Ecosystem',
items: [
{ text: '🌐 Search', link: '/posts/search' },
{ text: '❓ FAQs', link: '/other/FAQ' },
{ text: '🔖 Bookmarks', link: 'https://github.com/fmhy/bookmarks' },
{ text: '✅ SafeGuard', link: 'https://github.com/fmhy/FMHY-SafeGuard' },
{ text: '🚀 Startpage', link: 'https://fmhy.net/startpage' },
{ text: '📋 snowbin', link: 'https://pastes.fmhy.net' },
{ text: '🔎 SearXNG', link: 'https://searx.fmhy.net/' },
{
text: '💡 Site Hunting',
link: 'https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/find-new-sites/'
},
{
text: '😇 SFW FMHY',
link: 'https://rentry.org/piracy'
},
{
text: '🏠 Selfhosting',
link: '/other/selfhosting'
},
{ text: '🏞 Wallpapers', link: '/other/wallpapers' },
{ text: '💙 Feedback', link: '/feedback' }
]
}
]
export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
{
text: '<span class="i-twemoji:books"></span> Beginners Guide',
link: '/beginners-guide'
},
{
text: '<span class="i-twemoji:newspaper"></span> Posts',
link: '/posts'
},
{
text: '<span class="i-twemoji:light-bulb"></span> Contribute',
link: '/other/contributing'
},
{
text: 'Wiki',
collapsed: false,
items: [
{
text: '<span class="i-twemoji:name-badge"></span> Adblocking / Privacy',
link: '/privacy'
},
{
text: '<span class="i-twemoji:robot"></span> Artificial Intelligence',
link: '/ai'
},
{
text: '<span class="i-twemoji:television"></span> Movies / TV / Anime',
link: '/video'
},
{
text: '<span class="i-twemoji:musical-note"></span> Music / Podcasts / Radio',
link: '/audio'
},
{
text: '<span class="i-twemoji:video-game"></span> Gaming / Emulation',
link: '/gaming'
},
{
text: '<span class="i-twemoji:green-book"></span> Books / Comics / Manga',
link: '/reading'
},
{
text: '<span class="i-twemoji:floppy-disk"></span> Downloading',
link: '/downloading'
},
{
text: '<span class="i-twemoji:cyclone"></span> Torrenting',
link: '/torrenting'
},
{
text: '<span class="i-twemoji:brain"></span> Educational',
link: '/educational'
},
{
text: '<span class="i-twemoji:mobile-phone"></span> Android / iOS',
link: '/mobile'
},
{
text: '<span class="i-twemoji:penguin"></span> Linux / macOS',
link: '/linux-macos'
},
{
text: '<span class="i-twemoji:globe-showing-asia-australia"></span> Non-English',
link: '/non-english'
},
{
text: '<span class="i-twemoji:file-folder"></span> Miscellaneous',
link: '/misc'
}
]
},
{
text: 'Tools',
collapsed: false,
items: [
{
text: '<span class="i-twemoji:laptop"></span> System Tools',
link: '/system-tools'
},
{
text: '<span class="i-twemoji:card-file-box"></span> File Tools',
link: '/file-tools'
},
{
text: '<span class="i-twemoji:paperclip"></span> Internet Tools',
link: '/internet-tools'
},
{
text: '<span class="i-twemoji:left-speech-bubble"></span> Social Media Tools',
link: '/social-media-tools'
},
{
text: '<span class="i-twemoji:memo"></span> Text Tools',
link: '/text-tools'
},
{
text: '<span class="i-twemoji:alien-monster"></span> Gaming Tools',
link: '/gaming-tools'
},
{
text: '<span class="i-twemoji:camera"></span> Image Tools',
link: '/image-tools'
},
{
text: '<span class="i-twemoji:videocassette"></span> Video Tools',
link: '/video-tools'
},
{
text: '<span class="i-twemoji:speaker-high-volume"></span> Audio Tools',
link: '/audio#audio-tools'
},
{
text: '<span class="i-twemoji:red-apple"></span> Educational Tools',
link: '/educational#educational-tools'
},
{
text: '<span class="i-twemoji:man-technologist"></span> Developer Tools',
link: '/developer-tools'
}
]
},
{
text: 'More',
collapsed: true,
items: [
meta.build.nsfw
? {
text: '<span class="i-twemoji:no-one-under-eighteen"></span> NSFW',
link: 'https://rentry.org/NSFW-Checkpoint'
}
: {},
{
text: '<span class="i-twemoji:warning"></span> Unsafe Sites',
link: '/unsafe'
},
{
text: '<span class="i-twemoji:package"></span> Storage',
link: '/storage'
}
]
}
]

View File

@@ -211,8 +211,12 @@ watch(selectedColor, async (color) => {
if (!color) return; if (!color) return;
const theme = generateThemeFromColor(color) const theme = generateThemeFromColor(color)
themeRegistry[`color-${color}`] = theme themeRegistry[`color-${color}`] = theme
// Explicitly set the theme to override any previous selection
await nextTick() await nextTick()
console.log('Setting theme to:', `color-${color}`)
console.log('Current themeName:', themeName ? themeName.value : undefined, 'mode:', mode ? (mode as any).value : undefined)
setTheme(`color-${color}`) setTheme(`color-${color}`)
console.log('After setTheme, themeName:', themeName ? themeName.value : undefined)
}) })
const toggleAmoled = () => { const toggleAmoled = () => {

View File

@@ -4,7 +4,6 @@ import ColorPicker from './ColorPicker.vue'
import ThemeSelector from './ThemeSelector.vue' import ThemeSelector from './ThemeSelector.vue'
import InputField from './InputField.vue' import InputField from './InputField.vue'
import ToggleStarred from './ToggleStarred.vue' import ToggleStarred from './ToggleStarred.vue'
import ToggleIndexes from './ToggleIndexes.vue'
</script> </script>
<template> <template>
@@ -27,11 +26,6 @@ import ToggleIndexes from './ToggleIndexes.vue'
<ToggleStarred /> <ToggleStarred />
</template> </template>
</InputField> </InputField>
<InputField id="toggle-indexes" label="Toggle Indexes">
<template #display>
<ToggleIndexes />
</template>
</InputField>
<div class="mt-4"> <div class="mt-4">
<ColorPicker /> <ColorPicker />

View File

@@ -1,26 +1,14 @@
<script setup lang="ts"> <script setup>
import { Switch as HeadlessSwitch } from '@headlessui/vue' import { Switch } from '@headlessui/vue'
import { ref } from 'vue'
const props = defineProps<{ const enabled = ref(false)
modelValue: boolean
disabled?: boolean
}>()
const emit = defineEmits<{
(event: 'update:modelValue', value: boolean): void
}>()
</script> </script>
<template> <template>
<HeadlessSwitch <Switch v-model="enabled" class="switch" :class="{ enabled }">
:model-value="props.modelValue"
:disabled="props.disabled"
class="switch"
:class="{ enabled: props.modelValue, disabled: props.disabled }"
@update:modelValue="emit('update:modelValue', $event)"
>
<span class="thumb" /> <span class="thumb" />
</HeadlessSwitch> </Switch>
</template> </template>
<style> <style>
@@ -41,23 +29,6 @@ const emit = defineEmits<{
.switch.enabled { .switch.enabled {
background-color: var(--vp-c-brand); background-color: var(--vp-c-brand);
} }
.switch.disabled {
opacity: 0.5;
pointer-events: none;
background-color: var(--vp-c-bg-soft, #2f2f2f);
border-color: var(--vp-c-divider, #666);
}
.switch.disabled .thumb {
background-color: #fff;
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2), var(--vp-shadow-1);
}
.dark .switch.disabled {
background-color: #2f2f2f;
border-color: #7d7d7d;
}
</style> </style>
<style scoped> <style scoped>
@@ -72,7 +43,7 @@ const emit = defineEmits<{
width: 20px; width: 20px;
height: 20px; height: 20px;
border-radius: 50%; border-radius: 50%;
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08), var(--vp-shadow-1); box-shadow: var(--vp-shadow-1);
} }
.switch.enabled .thumb { .switch.enabled .thumb {

View File

@@ -1,67 +0,0 @@
<script setup lang="ts">
import { onBeforeUnmount, onMounted, ref } from 'vue'
import Switch from './Switch.vue'
const isDisabled = ref(false)
const isOn = ref(false)
const syncState = () => {
const root = document.documentElement
isDisabled.value = root.classList.contains('starred-only')
isOn.value = root.classList.contains('indexes-only')
}
let observer: MutationObserver | undefined
onMounted(() =>
(observer = new MutationObserver(syncState)).observe(document.documentElement, {
attributes: true,
attributeFilter: ['class']
})
)
onMounted(syncState)
onBeforeUnmount(() => observer?.disconnect())
const toggleIndexes = (value: boolean) => {
if (isDisabled.value) {
isOn.value = document.documentElement.classList.contains('indexes-only')
return
}
const root = document.documentElement
const enabling = value
const wasStarred = root.classList.contains('starred-only')
root.classList.toggle('indexes-only', enabling)
if (enabling) {
root.dataset.starredWasOn = wasStarred ? 'true' : 'false'
if (wasStarred) {
root.classList.remove('starred-only')
}
} else {
if (root.dataset.starredWasOn === 'true') {
root.classList.add('starred-only')
}
delete root.dataset.starredWasOn
}
isOn.value = enabling
}
</script>
<template>
<Switch v-model="isOn"
:disabled="isDisabled"
:class="{ disabled: isDisabled }"@update:modelValue="toggleIndexes" />
</template>
<style>
.indexes-only .vp-doc li:not(.index) {
display: none;
}
</style>

View File

@@ -1,53 +1,16 @@
<script setup lang="ts"> <script setup lang="ts">
import { onBeforeUnmount, onMounted, ref } from 'vue'
import Switch from './Switch.vue' import Switch from './Switch.vue'
const isDisabled = ref(false) const toggleStarred = () =>
const isOn = ref(false) document.documentElement.classList.toggle('starred-only')
const syncState = () => {
const root = document.documentElement
isDisabled.value = root.classList.contains('indexes-only')
isOn.value = root.classList.contains('starred-only')
}
let observer: MutationObserver | undefined
onMounted(() =>
(observer = new MutationObserver(syncState)).observe(document.documentElement, {
attributes: true,
attributeFilter: ['class']
})
)
onMounted(syncState)
onBeforeUnmount(() => observer?.disconnect())
const toggleStarred = (value: boolean) => {
if (isDisabled.value) {
isOn.value = document.documentElement.classList.contains('starred-only')
return
}
const root = document.documentElement
root.classList.toggle('starred-only', value)
root.dataset.starredWasOn = value ? 'true' : 'false'
isOn.value = value
}
</script> </script>
<template> <template>
<Switch <Switch @click="toggleStarred()" />
v-model="isOn"
:disabled="isDisabled"
:class="{ disabled: isDisabled }"
@update:modelValue="toggleStarred"
/>
</template> </template>
<style> <style>
.starred-only .vp-doc li:not(.starred) { .starred-only li:not(.starred) {
display: none; display: none;
} }
</style> </style>

View File

@@ -1,60 +0,0 @@
<script setup lang="ts">
import { withBase } from 'vitepress'
import { computed } from 'vue'
import { useMediaQuery } from '@vueuse/core'
const props = withDefaults(
defineProps<{ title?: string; icon?: string }>(),
{ icon: '/note.svg' }
)
const resolvedIcon = computed(() => withBase(props.icon))
const isHoverable = useMediaQuery('(hover: hover)')
const triggers = computed(() => isHoverable.value ? ['hover'] : ['click'])
</script>
<template>
<VDropdown :triggers="triggers" :popper-triggers="triggers" :delay="{ show: 50, hide: 50 }" :auto-hide="true" :distance="15" placement="auto">
<button
aria-label="Tooltip"
class="text-brand-1 relative inline-flex align-middle items-center justify-center leading-none p-0 select-none font-bold cursor-pointer transition-all h-[1.2em] w-[1.5em]"
>
<div
class="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1.2 w-[1.3em] h-[1.3em] bg-current transition-all"
:style="{
mask: `url(${resolvedIcon}) no-repeat center / contain`,
'-webkit-mask': `url(${resolvedIcon}) no-repeat center / contain`,
}"
/>
</button>
<template #popper>
<div class="border-$vp-c-divider bg-$vp-c-bg-alt b-rd-4 max-w-md max-h-md border-2 border-solid flex flex-col transition-all overflow-hidden">
<div class="overflow-y-auto p-4">
<h3 v-if="title" class="text-$vp-c-text-1 mb-2 text-lg font-semibold" v-text="title" />
<div class="text-$vp-c-text-1 text-sm content vp-doc">
<slot />
</div>
</div>
</div>
</template>
</VDropdown>
</template>
<style>
.v-popper__popper { --uno: z-5000; }
.v-popper { display: inline-flex !important; }
.v-popper--theme-dropdown .v-popper__inner {
background: transparent !important;
box-shadow: none !important;
border: none !important;
padding: 0 !important;
}
.vp-doc a.tooltip-source-link {
color: inherit;
text-decoration: none;
}
</style>

Some files were not shown because too many files have changed in this diff Show More