├── .claude └── cclsp.json ├── .github └── ISSUE_TEMPLATE │ ├── bug-report-------.md │ └── feature-request-------.md ├── .gitignore ├── CHANGELOG.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── LOCALIZATION.md ├── Mos.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ ├── Caldis.xcuserdatad │ │ ├── IDEFindNavigatorScopes.plist │ │ └── WorkspaceSettings.xcsettings │ │ └── Cb.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings ├── xcshareddata │ └── xcschemes │ │ ├── Debug.xcscheme │ │ └── Profile.xcscheme └── xcuserdata │ └── Caldis.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Mos ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Base-1024.png │ │ ├── Base-128.png │ │ ├── Base-16.png │ │ ├── Base-256 1.png │ │ ├── Base-256.png │ │ ├── Base-32 1.png │ │ ├── Base-32.png │ │ ├── Base-512 1.png │ │ ├── Base-512.png │ │ ├── Base-64.png │ │ └── Contents.json │ ├── AppStatusBarIcon.imageset │ │ ├── Contents.json │ │ ├── MenubarIcon-16 1.png │ │ ├── MenubarIcon-16.png │ │ ├── MenubarIcon-32 1.png │ │ ├── MenubarIcon-32.png │ │ └── MenubarIcon-64.png │ ├── Contents.json │ ├── Donate │ │ ├── AlipayLogo.imageset │ │ │ ├── AliPayForDark.png │ │ │ ├── AliPayForLight.png │ │ │ └── Contents.json │ │ ├── AlipayQR.imageset │ │ │ ├── AliPayQRForDark.png │ │ │ ├── AliPayQRForLight.png │ │ │ └── Contents.json │ │ ├── BuyMeACoffee.imageset │ │ │ ├── Contents.json │ │ │ └── bmc-brand-logo.svg │ │ ├── Contents.json │ │ ├── MEOW.imageset │ │ │ ├── Contents.json │ │ │ └── IMG_0412.jpeg │ │ ├── PaypalLogo.imageset │ │ │ ├── Contents.json │ │ │ ├── PayPalForDark.pdf │ │ │ └── PayPalForLight.png │ │ ├── WechatpayLogo.imageset │ │ │ ├── Contents.json │ │ │ ├── WeChatPayForDark.png │ │ │ └── WeChatPayForLight.png │ │ └── WechatpayQR.imageset │ │ │ ├── Contents.json │ │ │ ├── WeChatPayQRForDark.png │ │ │ └── WeChatPayQRForLight.png │ ├── Guidance │ │ ├── Contents.json │ │ ├── drag-arrow.imageset │ │ │ ├── Contents.json │ │ │ └── drag-arrow.png │ │ ├── manual-remove.imageset │ │ │ ├── Contents.json │ │ │ └── manual-remove.png │ │ └── sparkle.imageset │ │ │ ├── Contents.json │ │ │ └── sparkle.png │ ├── Monitor │ │ ├── Contents.json │ │ └── SF.arrow.clockwise.imageset │ │ │ ├── Contents.json │ │ │ └── SF.arrow.clockwise.svg │ ├── Preferences │ │ ├── Contents.json │ │ ├── SF.app.background.dotted.imageset │ │ │ ├── Contents.json │ │ │ └── SF.app.background.dotted.svg │ │ ├── SF.arrow.triangle.capsulepath.imageset │ │ │ ├── Contents.json │ │ │ └── SF.arrow.triangle.capsulepath.svg │ │ ├── SF.button.horizontal.top.press.imageset │ │ │ ├── Contents.json │ │ │ └── SF.button.horizontal.top.press.svg │ │ ├── SF.circle.dotted.circle.imageset │ │ │ ├── Contents.json │ │ │ └── SF.circle.dotted.circle.svg │ │ ├── SF.ellipsis.circle.imageset │ │ │ ├── Contents.json │ │ │ └── SF.ellipsis.circle.svg │ │ ├── SF.gearshape.imageset │ │ │ ├── Contents.json │ │ │ └── SF.gearshape.svg │ │ ├── SF.lasso.badge.sparkles.imageset │ │ │ ├── Contents.json │ │ │ └── SF.lasso.badge.sparkles.svg │ │ ├── SF.minus.imageset │ │ │ ├── Contents.json │ │ │ └── minus.pdf │ │ ├── SF.person.crop.circle.dashed.imageset │ │ │ ├── Contents.json │ │ │ └── SF.person.crop.circle.dashed.svg │ │ ├── SF.plus.imageset │ │ │ ├── Contents.json │ │ │ └── plus.pdf │ │ ├── SF.scribble.imageset │ │ │ ├── Contents.json │ │ │ └── scribble.pdf │ │ ├── SF.tray.imageset │ │ │ ├── Contents.json │ │ │ └── tray.pdf │ │ └── SF.wand.and.rays.inverse.imageset │ │ │ ├── Contents.json │ │ │ └── wand.and.rays.inverse.pdf │ └── StatusItem │ │ ├── Contents.json │ │ ├── SF.escape.imageset │ │ ├── Contents.json │ │ └── escape.pdf │ │ ├── SF.gauge.imageset │ │ ├── Contents.json │ │ └── gauge.pdf │ │ └── SF.square.stack.3d.down.right.imageset │ │ ├── Contents.json │ │ └── square.stack.3d.down.right.pdf ├── Base.lproj │ └── Main.storyboard ├── ButtonCore │ ├── ButtonCore.swift │ ├── ButtonFilter.swift │ └── ButtonUtils.swift ├── Components │ ├── AdaptivePopover.swift │ ├── DraggingImageView.swift │ └── PrimaryButton.swift ├── Extension │ ├── CGEvent+Extensions.swift │ └── NSColor+Extensions.swift ├── Info.plist ├── Keys │ ├── KeyCode.swift │ ├── KeyPopover.swift │ ├── KeyPreview.swift │ └── KeyRecorder.swift ├── Localizable.xcstrings ├── Managers │ ├── StatusItemManager.swift │ └── WindowManager.swift ├── MosRelease.entitlements ├── Options │ └── Options.swift ├── ScrollCore │ ├── Interpolator.swift │ ├── ScrollCore.swift │ ├── ScrollEvent.swift │ ├── ScrollFilter.swift │ ├── ScrollPhase.swift │ ├── ScrollPoster.swift │ └── ScrollUtils.swift ├── Shortcut │ ├── ShortcutExecutor.swift │ ├── ShortcutManager.swift │ └── SystemShortcut.swift ├── Utils │ ├── Archieve.swift │ ├── Constants.swift │ ├── EnhanceArray.swift │ ├── Interceptor.swift │ └── Utils.swift ├── Windows │ ├── IntroductionWindow │ │ ├── IntroductionViewController.swift │ │ └── IntroductionWindowController.swift │ ├── MonitorWindow │ │ ├── Logger.swift │ │ ├── MonitorViewController.swift │ │ └── MonitorWindowController.swift │ ├── PreferencesWindow │ │ ├── AboutView │ │ │ ├── PreferencesAboutViewController.swift │ │ │ ├── PreferencesContributorsViewController.swift │ │ │ └── PreferencesDonateViewController.swift │ │ ├── ApplicationView │ │ │ ├── Application.swift │ │ │ └── PreferencesApplicationViewController.swift │ │ ├── ButtonsView │ │ │ ├── ButtonTableCellView.swift │ │ │ ├── PreferencesButtonsViewController.swift │ │ │ └── RecordedEvent.swift │ │ ├── GeneralView │ │ │ └── PreferencesGeneralViewController.swift │ │ ├── PreferencesTabViewController.swift │ │ ├── PreferencesWindowController.swift │ │ ├── ScrollingView │ │ │ ├── PreferencesScrollingViewController.swift │ │ │ ├── PreferencesScrollingWithApplicationViewController.swift │ │ │ ├── ScrollOptionsContextProviding.swift │ │ │ ├── ScrollReverseDetailSettingsPopoverViewController.swift │ │ │ └── ScrollSmoothDetailSettingsPopoverViewController.swift │ │ └── UpdateView │ │ │ └── PreferencesUpdatesViewController.swift │ └── WelcomeWindow │ │ ├── WelcomeViewController.swift │ │ └── WelcomeWindowController.swift └── mul.lproj │ └── Main.xcstrings ├── README.enUS.md ├── README.id.md ├── README.md ├── README.ru.md ├── Resource ├── DonatePic │ ├── AliPayForDark.png │ ├── AliPayForLight.png │ ├── AliPayQRForDark.png │ ├── AliPayQRForLight.png │ ├── PayPalForDark.pdf │ ├── PayPalForLight.png │ ├── WeChatPayForDark.png │ ├── WeChatPayForLight.png │ ├── WeChatPayQRForDark.png │ └── WeChatPayQRForLight.png ├── Icon │ ├── SFIcon │ │ ├── IconGrops.sketch │ │ ├── arrow.2.circlepath.svg │ │ ├── arrow.2.squarepath.svg │ │ ├── chevron.left.pdf │ │ ├── chevron.left.square.fill.svg │ │ ├── chevron.left.square.svg │ │ ├── chevron.left.svg │ │ ├── chevron.right.pdf │ │ ├── chevron.right.svg │ │ ├── cube.fill.svg │ │ ├── cube.pdf │ │ ├── cube.svg │ │ ├── dial.svg │ │ ├── ellipsis.circle.pdf │ │ ├── ellipsis.circle.svg │ │ ├── flowchart.svg │ │ ├── folder.svg │ │ ├── gauge.pdf │ │ ├── gauge.svg │ │ ├── gearshape.svg │ │ ├── minus.pdf │ │ ├── minus.svg │ │ ├── option.svg │ │ ├── pencil.and.ellipsis.rectangle.pdf │ │ ├── pencil.and.ellipsis.rectangle.svg │ │ ├── plus.pdf │ │ ├── plus.svg │ │ ├── rosette.svg │ │ ├── scribble.pdf │ │ ├── scribble.svg │ │ ├── selection.pin.in.out.svg │ │ ├── square.stack.3d.down.right.pdf │ │ ├── square.stack.3d.down.right.svg │ │ ├── tray.pdf │ │ ├── tray.svg │ │ ├── viewfinder.circle.pdf │ │ ├── viewfinder.circle.svg │ │ ├── wand.and.rays.inverse.pdf │ │ ├── wand.and.rays.inverse.svg │ │ └── wand.and.rays.svg │ ├── left.pdf │ └── right.pdf └── designs.sketch ├── dmg ├── README.md ├── archive │ ├── Intro.psd │ ├── dmg-background-black.jpg │ ├── dmg-background-white.png │ └── dmgBackground.psd ├── create-dmg.command ├── dmg-bg.png └── dmg-icon.png ├── docs ├── .nojekyll ├── 404.html ├── CNAME ├── _next │ └── static │ │ ├── chunks │ │ ├── 4bd1b696-7ff92c8e320feb25.js │ │ ├── 517-b50e81e275a91cf3.js │ │ ├── 964-d8efec21bab179dd.js │ │ ├── app │ │ │ ├── _not-found │ │ │ │ └── page-2bb09a679abb77e8.js │ │ │ ├── layout-adf07e950c06c253.js │ │ │ └── page-e3d874e8cb8e4271.js │ │ ├── framework-6b27c2b7aa38af2d.js │ │ ├── main-app-42124d93d96c0188.js │ │ ├── main-c27170c947371c9b.js │ │ ├── pages │ │ │ ├── _app-d23763e3e6c904ff.js │ │ │ └── _error-9b7125ad1a1e68fa.js │ │ ├── polyfills-42372ed130431b0a.js │ │ └── webpack-d140ecdde22f3923.js │ │ ├── css │ │ ├── 74723e9b07d9ca6e.css │ │ └── b263cb19c76fdfa5.css │ │ ├── h45_n93EzV6wxu1iPdPkl │ │ ├── _buildManifest.js │ │ └── _ssgManifest.js │ │ └── media │ │ ├── 034d78ad42e9620c-s.woff2 │ │ ├── 0484562807a97172-s.p.woff2 │ │ ├── 281dae1e814de8c6-s.woff2 │ │ ├── 29a4aea02fdee119-s.woff2 │ │ ├── 29e7bbdce9332268-s.woff2 │ │ ├── 3c70c5716f1730b3-s.woff2 │ │ ├── 4cf2300e9c8272f7-s.p.woff2 │ │ ├── 747892c23ea88013-s.woff2 │ │ ├── 77fb5eec12c66d49-s.woff2 │ │ ├── 806de4d605d3ad01-s.p.woff2 │ │ ├── 8d697b304b401681-s.woff2 │ │ ├── 93f479601ee12b01-s.p.woff2 │ │ ├── 9610d9e46709d722-s.woff2 │ │ ├── a1386beebedccca4-s.woff2 │ │ ├── ae822095a172cc5c-s.woff2 │ │ ├── b957ea75a84b6ea7-s.p.woff2 │ │ ├── ba015fad6dcf6784-s.woff2 │ │ ├── c3bc380753a8436c-s.woff2 │ │ ├── eafabf029ad39a43-s.p.woff2 │ │ ├── fc727f226c737876-s.p.woff2 │ │ ├── fe0777f1195381cb-s.woff2 │ │ └── logo-64.775e8e78.png ├── favicon.ico ├── file.svg ├── globe.svg ├── index.html ├── index.txt ├── next.svg ├── vercel.svg └── window.svg └── website ├── .nvmrc ├── CNAME ├── README.md ├── app ├── components │ ├── DownloadButton │ │ ├── DownloadButton.tsx │ │ └── index.ts │ ├── GithubButton │ │ ├── GithubButton.tsx │ │ └── index.ts │ ├── GithubVersion │ │ ├── GithubVersion.tsx │ │ └── index.ts │ ├── HomebrewButton │ │ ├── HomebrewButton.tsx │ │ └── index.ts │ ├── LanguageSelector │ │ ├── LanguageSelector.tsx │ │ └── index.ts │ ├── Modal │ │ ├── Modal.tsx │ │ ├── hooks.ts │ │ └── index.ts │ ├── ShinyText │ │ ├── ShinyText.tsx │ │ └── index.ts │ ├── SquaresBackground │ │ ├── SquaresBackground.tsx │ │ └── index.ts │ └── SysRequireButton │ │ ├── SysRequireButton.tsx │ │ └── index.ts ├── favicon.ico ├── globals.css ├── i18n │ ├── context.tsx │ ├── de.ts │ ├── el.ts │ ├── en.ts │ ├── id.ts │ ├── ja.ts │ ├── ko.ts │ ├── pl.ts │ ├── ru.ts │ ├── tr.ts │ ├── uk.ts │ ├── zh-Hant.ts │ └── zh.ts ├── layout.tsx ├── page.tsx └── services │ ├── github.ts │ └── utils.ts ├── archive ├── v0 │ ├── index.css │ ├── index.html │ ├── index.js │ ├── indexCN.html │ └── reset.css └── v1 │ ├── assets │ ├── fonts │ │ └── ubuntu │ │ │ ├── 4iCs6KVjbNBYlgoKcQ72j00.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKcg72j00.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKcw72j00.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKew72j00.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKfA72j00.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKfw72.woff2 │ │ │ └── font.css │ └── image │ │ ├── cn │ │ ├── Mointor.png │ │ ├── PreferencesAdvanced.png │ │ ├── PreferencesExceptionFull.png │ │ └── PreferencesGeneral.png │ │ ├── en │ │ ├── Mointor.png │ │ ├── PreferencesAdvanced.png │ │ ├── PreferencesExceptionFull.png │ │ └── PreferencesGeneral.png │ │ ├── intro.png │ │ ├── logo-big.png │ │ ├── logo-medium.png │ │ ├── logo-small.png │ │ └── ru │ │ ├── Mointor.png │ │ ├── PreferencesAdvanced.png │ │ ├── PreferencesException.png │ │ └── PreferencesGeneral.png │ ├── index.html │ ├── index.template.html │ ├── package.json │ ├── src │ ├── i18n │ │ ├── image.js │ │ └── text.js │ ├── index.css │ ├── index.js │ ├── parallaxButton │ │ ├── index.css │ │ └── index.js │ ├── releases │ │ └── index.js │ └── reset.css │ └── webpack.config.js ├── assets └── image │ ├── logo-1024.png │ ├── logo-128.png │ ├── logo-16.png │ ├── logo-256.png │ ├── logo-32.png │ ├── logo-512.png │ └── logo-64.png ├── eslint.config.mjs ├── next-env.d.ts ├── next.config.ts ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── postcss.config.mjs ├── public ├── file.svg ├── globe.svg ├── next.svg ├── vercel.svg └── window.svg ├── tailwind.config.ts ├── tsconfig.json └── tsconfig.tsbuildinfo /.claude/cclsp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/.claude/cclsp.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-------.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/.github/ISSUE_TEMPLATE/bug-report-------.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request-------.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/.github/ISSUE_TEMPLATE/feature-request-------.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/LICENSE -------------------------------------------------------------------------------- /LOCALIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/LOCALIZATION.md -------------------------------------------------------------------------------- /Mos.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Mos.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Mos.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Mos.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Mos.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Mos.xcodeproj/project.xcworkspace/xcuserdata/Caldis.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos.xcodeproj/project.xcworkspace/xcuserdata/Caldis.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /Mos.xcodeproj/project.xcworkspace/xcuserdata/Caldis.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos.xcodeproj/project.xcworkspace/xcuserdata/Caldis.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Mos.xcodeproj/project.xcworkspace/xcuserdata/Cb.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos.xcodeproj/project.xcworkspace/xcuserdata/Cb.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Mos.xcodeproj/project.xcworkspace/xcuserdata/Cb.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos.xcodeproj/project.xcworkspace/xcuserdata/Cb.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Mos.xcodeproj/xcshareddata/xcschemes/Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos.xcodeproj/xcshareddata/xcschemes/Debug.xcscheme -------------------------------------------------------------------------------- /Mos.xcodeproj/xcshareddata/xcschemes/Profile.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos.xcodeproj/xcshareddata/xcschemes/Profile.xcscheme -------------------------------------------------------------------------------- /Mos.xcodeproj/xcuserdata/Caldis.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos.xcodeproj/xcuserdata/Caldis.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Mos.xcodeproj/xcuserdata/Caldis.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos.xcodeproj/xcuserdata/Caldis.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Mos/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/AppDelegate.swift -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppIcon.appiconset/Base-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppIcon.appiconset/Base-1024.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppIcon.appiconset/Base-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppIcon.appiconset/Base-128.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppIcon.appiconset/Base-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppIcon.appiconset/Base-16.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppIcon.appiconset/Base-256 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppIcon.appiconset/Base-256 1.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppIcon.appiconset/Base-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppIcon.appiconset/Base-256.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppIcon.appiconset/Base-32 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppIcon.appiconset/Base-32 1.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppIcon.appiconset/Base-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppIcon.appiconset/Base-32.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppIcon.appiconset/Base-512 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppIcon.appiconset/Base-512 1.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppIcon.appiconset/Base-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppIcon.appiconset/Base-512.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppIcon.appiconset/Base-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppIcon.appiconset/Base-64.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppStatusBarIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppStatusBarIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppStatusBarIcon.imageset/MenubarIcon-16 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppStatusBarIcon.imageset/MenubarIcon-16 1.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppStatusBarIcon.imageset/MenubarIcon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppStatusBarIcon.imageset/MenubarIcon-16.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppStatusBarIcon.imageset/MenubarIcon-32 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppStatusBarIcon.imageset/MenubarIcon-32 1.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppStatusBarIcon.imageset/MenubarIcon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppStatusBarIcon.imageset/MenubarIcon-32.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/AppStatusBarIcon.imageset/MenubarIcon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/AppStatusBarIcon.imageset/MenubarIcon-64.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/AlipayLogo.imageset/AliPayForDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/AlipayLogo.imageset/AliPayForDark.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/AlipayLogo.imageset/AliPayForLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/AlipayLogo.imageset/AliPayForLight.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/AlipayLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/AlipayLogo.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/AlipayQR.imageset/AliPayQRForDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/AlipayQR.imageset/AliPayQRForDark.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/AlipayQR.imageset/AliPayQRForLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/AlipayQR.imageset/AliPayQRForLight.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/AlipayQR.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/AlipayQR.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/BuyMeACoffee.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/BuyMeACoffee.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/BuyMeACoffee.imageset/bmc-brand-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/BuyMeACoffee.imageset/bmc-brand-logo.svg -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/MEOW.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/MEOW.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/MEOW.imageset/IMG_0412.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/MEOW.imageset/IMG_0412.jpeg -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/PaypalLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/PaypalLogo.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/PaypalLogo.imageset/PayPalForDark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/PaypalLogo.imageset/PayPalForDark.pdf -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/PaypalLogo.imageset/PayPalForLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/PaypalLogo.imageset/PayPalForLight.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/WechatpayLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/WechatpayLogo.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/WechatpayLogo.imageset/WeChatPayForDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/WechatpayLogo.imageset/WeChatPayForDark.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/WechatpayLogo.imageset/WeChatPayForLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/WechatpayLogo.imageset/WeChatPayForLight.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/WechatpayQR.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/WechatpayQR.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/WechatpayQR.imageset/WeChatPayQRForDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/WechatpayQR.imageset/WeChatPayQRForDark.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Donate/WechatpayQR.imageset/WeChatPayQRForLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Donate/WechatpayQR.imageset/WeChatPayQRForLight.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Guidance/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Guidance/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Guidance/drag-arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Guidance/drag-arrow.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Guidance/drag-arrow.imageset/drag-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Guidance/drag-arrow.imageset/drag-arrow.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Guidance/manual-remove.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Guidance/manual-remove.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Guidance/manual-remove.imageset/manual-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Guidance/manual-remove.imageset/manual-remove.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Guidance/sparkle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Guidance/sparkle.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Guidance/sparkle.imageset/sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Guidance/sparkle.imageset/sparkle.png -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Monitor/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Monitor/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Monitor/SF.arrow.clockwise.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Monitor/SF.arrow.clockwise.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Monitor/SF.arrow.clockwise.imageset/SF.arrow.clockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Monitor/SF.arrow.clockwise.imageset/SF.arrow.clockwise.svg -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.app.background.dotted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.app.background.dotted.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.app.background.dotted.imageset/SF.app.background.dotted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.app.background.dotted.imageset/SF.app.background.dotted.svg -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.arrow.triangle.capsulepath.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.arrow.triangle.capsulepath.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.arrow.triangle.capsulepath.imageset/SF.arrow.triangle.capsulepath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.arrow.triangle.capsulepath.imageset/SF.arrow.triangle.capsulepath.svg -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.button.horizontal.top.press.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.button.horizontal.top.press.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.button.horizontal.top.press.imageset/SF.button.horizontal.top.press.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.button.horizontal.top.press.imageset/SF.button.horizontal.top.press.svg -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.circle.dotted.circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.circle.dotted.circle.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.circle.dotted.circle.imageset/SF.circle.dotted.circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.circle.dotted.circle.imageset/SF.circle.dotted.circle.svg -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.ellipsis.circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.ellipsis.circle.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.ellipsis.circle.imageset/SF.ellipsis.circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.ellipsis.circle.imageset/SF.ellipsis.circle.svg -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.gearshape.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.gearshape.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.gearshape.imageset/SF.gearshape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.gearshape.imageset/SF.gearshape.svg -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.lasso.badge.sparkles.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.lasso.badge.sparkles.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.lasso.badge.sparkles.imageset/SF.lasso.badge.sparkles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.lasso.badge.sparkles.imageset/SF.lasso.badge.sparkles.svg -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.minus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.minus.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.minus.imageset/minus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.minus.imageset/minus.pdf -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.person.crop.circle.dashed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.person.crop.circle.dashed.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.person.crop.circle.dashed.imageset/SF.person.crop.circle.dashed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.person.crop.circle.dashed.imageset/SF.person.crop.circle.dashed.svg -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.plus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.plus.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.plus.imageset/plus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.plus.imageset/plus.pdf -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.scribble.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.scribble.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.scribble.imageset/scribble.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.scribble.imageset/scribble.pdf -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.tray.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.tray.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.tray.imageset/tray.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.tray.imageset/tray.pdf -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.wand.and.rays.inverse.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.wand.and.rays.inverse.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/Preferences/SF.wand.and.rays.inverse.imageset/wand.and.rays.inverse.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/Preferences/SF.wand.and.rays.inverse.imageset/wand.and.rays.inverse.pdf -------------------------------------------------------------------------------- /Mos/Assets.xcassets/StatusItem/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/StatusItem/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/StatusItem/SF.escape.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/StatusItem/SF.escape.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/StatusItem/SF.escape.imageset/escape.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/StatusItem/SF.escape.imageset/escape.pdf -------------------------------------------------------------------------------- /Mos/Assets.xcassets/StatusItem/SF.gauge.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/StatusItem/SF.gauge.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/StatusItem/SF.gauge.imageset/gauge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/StatusItem/SF.gauge.imageset/gauge.pdf -------------------------------------------------------------------------------- /Mos/Assets.xcassets/StatusItem/SF.square.stack.3d.down.right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/StatusItem/SF.square.stack.3d.down.right.imageset/Contents.json -------------------------------------------------------------------------------- /Mos/Assets.xcassets/StatusItem/SF.square.stack.3d.down.right.imageset/square.stack.3d.down.right.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Assets.xcassets/StatusItem/SF.square.stack.3d.down.right.imageset/square.stack.3d.down.right.pdf -------------------------------------------------------------------------------- /Mos/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Mos/ButtonCore/ButtonCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/ButtonCore/ButtonCore.swift -------------------------------------------------------------------------------- /Mos/ButtonCore/ButtonFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/ButtonCore/ButtonFilter.swift -------------------------------------------------------------------------------- /Mos/ButtonCore/ButtonUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/ButtonCore/ButtonUtils.swift -------------------------------------------------------------------------------- /Mos/Components/AdaptivePopover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Components/AdaptivePopover.swift -------------------------------------------------------------------------------- /Mos/Components/DraggingImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Components/DraggingImageView.swift -------------------------------------------------------------------------------- /Mos/Components/PrimaryButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Components/PrimaryButton.swift -------------------------------------------------------------------------------- /Mos/Extension/CGEvent+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Extension/CGEvent+Extensions.swift -------------------------------------------------------------------------------- /Mos/Extension/NSColor+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Extension/NSColor+Extensions.swift -------------------------------------------------------------------------------- /Mos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Info.plist -------------------------------------------------------------------------------- /Mos/Keys/KeyCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Keys/KeyCode.swift -------------------------------------------------------------------------------- /Mos/Keys/KeyPopover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Keys/KeyPopover.swift -------------------------------------------------------------------------------- /Mos/Keys/KeyPreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Keys/KeyPreview.swift -------------------------------------------------------------------------------- /Mos/Keys/KeyRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Keys/KeyRecorder.swift -------------------------------------------------------------------------------- /Mos/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Localizable.xcstrings -------------------------------------------------------------------------------- /Mos/Managers/StatusItemManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Managers/StatusItemManager.swift -------------------------------------------------------------------------------- /Mos/Managers/WindowManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Managers/WindowManager.swift -------------------------------------------------------------------------------- /Mos/MosRelease.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/MosRelease.entitlements -------------------------------------------------------------------------------- /Mos/Options/Options.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Options/Options.swift -------------------------------------------------------------------------------- /Mos/ScrollCore/Interpolator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/ScrollCore/Interpolator.swift -------------------------------------------------------------------------------- /Mos/ScrollCore/ScrollCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/ScrollCore/ScrollCore.swift -------------------------------------------------------------------------------- /Mos/ScrollCore/ScrollEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/ScrollCore/ScrollEvent.swift -------------------------------------------------------------------------------- /Mos/ScrollCore/ScrollFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/ScrollCore/ScrollFilter.swift -------------------------------------------------------------------------------- /Mos/ScrollCore/ScrollPhase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/ScrollCore/ScrollPhase.swift -------------------------------------------------------------------------------- /Mos/ScrollCore/ScrollPoster.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/ScrollCore/ScrollPoster.swift -------------------------------------------------------------------------------- /Mos/ScrollCore/ScrollUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/ScrollCore/ScrollUtils.swift -------------------------------------------------------------------------------- /Mos/Shortcut/ShortcutExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Shortcut/ShortcutExecutor.swift -------------------------------------------------------------------------------- /Mos/Shortcut/ShortcutManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Shortcut/ShortcutManager.swift -------------------------------------------------------------------------------- /Mos/Shortcut/SystemShortcut.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Shortcut/SystemShortcut.swift -------------------------------------------------------------------------------- /Mos/Utils/Archieve.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Utils/Archieve.swift -------------------------------------------------------------------------------- /Mos/Utils/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Utils/Constants.swift -------------------------------------------------------------------------------- /Mos/Utils/EnhanceArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Utils/EnhanceArray.swift -------------------------------------------------------------------------------- /Mos/Utils/Interceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Utils/Interceptor.swift -------------------------------------------------------------------------------- /Mos/Utils/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Utils/Utils.swift -------------------------------------------------------------------------------- /Mos/Windows/IntroductionWindow/IntroductionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/IntroductionWindow/IntroductionViewController.swift -------------------------------------------------------------------------------- /Mos/Windows/IntroductionWindow/IntroductionWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/IntroductionWindow/IntroductionWindowController.swift -------------------------------------------------------------------------------- /Mos/Windows/MonitorWindow/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/MonitorWindow/Logger.swift -------------------------------------------------------------------------------- /Mos/Windows/MonitorWindow/MonitorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/MonitorWindow/MonitorViewController.swift -------------------------------------------------------------------------------- /Mos/Windows/MonitorWindow/MonitorWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/MonitorWindow/MonitorWindowController.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/AboutView/PreferencesAboutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/AboutView/PreferencesAboutViewController.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/AboutView/PreferencesContributorsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/AboutView/PreferencesContributorsViewController.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/AboutView/PreferencesDonateViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/AboutView/PreferencesDonateViewController.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/ApplicationView/Application.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/ApplicationView/Application.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/ApplicationView/PreferencesApplicationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/ApplicationView/PreferencesApplicationViewController.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/ButtonsView/ButtonTableCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/ButtonsView/ButtonTableCellView.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/ButtonsView/PreferencesButtonsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/ButtonsView/PreferencesButtonsViewController.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/ButtonsView/RecordedEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/ButtonsView/RecordedEvent.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/GeneralView/PreferencesGeneralViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/GeneralView/PreferencesGeneralViewController.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/PreferencesTabViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/PreferencesTabViewController.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/PreferencesWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/PreferencesWindowController.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/ScrollingView/PreferencesScrollingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/ScrollingView/PreferencesScrollingViewController.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/ScrollingView/PreferencesScrollingWithApplicationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/ScrollingView/PreferencesScrollingWithApplicationViewController.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/ScrollingView/ScrollOptionsContextProviding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/ScrollingView/ScrollOptionsContextProviding.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/ScrollingView/ScrollReverseDetailSettingsPopoverViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/ScrollingView/ScrollReverseDetailSettingsPopoverViewController.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/ScrollingView/ScrollSmoothDetailSettingsPopoverViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/ScrollingView/ScrollSmoothDetailSettingsPopoverViewController.swift -------------------------------------------------------------------------------- /Mos/Windows/PreferencesWindow/UpdateView/PreferencesUpdatesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/PreferencesWindow/UpdateView/PreferencesUpdatesViewController.swift -------------------------------------------------------------------------------- /Mos/Windows/WelcomeWindow/WelcomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/WelcomeWindow/WelcomeViewController.swift -------------------------------------------------------------------------------- /Mos/Windows/WelcomeWindow/WelcomeWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/Windows/WelcomeWindow/WelcomeWindowController.swift -------------------------------------------------------------------------------- /Mos/mul.lproj/Main.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Mos/mul.lproj/Main.xcstrings -------------------------------------------------------------------------------- /README.enUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/README.enUS.md -------------------------------------------------------------------------------- /README.id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/README.id.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/README.md -------------------------------------------------------------------------------- /README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/README.ru.md -------------------------------------------------------------------------------- /Resource/DonatePic/AliPayForDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/DonatePic/AliPayForDark.png -------------------------------------------------------------------------------- /Resource/DonatePic/AliPayForLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/DonatePic/AliPayForLight.png -------------------------------------------------------------------------------- /Resource/DonatePic/AliPayQRForDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/DonatePic/AliPayQRForDark.png -------------------------------------------------------------------------------- /Resource/DonatePic/AliPayQRForLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/DonatePic/AliPayQRForLight.png -------------------------------------------------------------------------------- /Resource/DonatePic/PayPalForDark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/DonatePic/PayPalForDark.pdf -------------------------------------------------------------------------------- /Resource/DonatePic/PayPalForLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/DonatePic/PayPalForLight.png -------------------------------------------------------------------------------- /Resource/DonatePic/WeChatPayForDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/DonatePic/WeChatPayForDark.png -------------------------------------------------------------------------------- /Resource/DonatePic/WeChatPayForLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/DonatePic/WeChatPayForLight.png -------------------------------------------------------------------------------- /Resource/DonatePic/WeChatPayQRForDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/DonatePic/WeChatPayQRForDark.png -------------------------------------------------------------------------------- /Resource/DonatePic/WeChatPayQRForLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/DonatePic/WeChatPayQRForLight.png -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/IconGrops.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/IconGrops.sketch -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/arrow.2.circlepath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/arrow.2.circlepath.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/arrow.2.squarepath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/arrow.2.squarepath.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/chevron.left.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/chevron.left.pdf -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/chevron.left.square.fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/chevron.left.square.fill.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/chevron.left.square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/chevron.left.square.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/chevron.left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/chevron.left.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/chevron.right.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/chevron.right.pdf -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/chevron.right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/chevron.right.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/cube.fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/cube.fill.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/cube.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/cube.pdf -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/cube.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/dial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/dial.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/ellipsis.circle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/ellipsis.circle.pdf -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/ellipsis.circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/ellipsis.circle.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/flowchart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/flowchart.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/folder.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/gauge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/gauge.pdf -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/gauge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/gauge.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/gearshape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/gearshape.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/minus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/minus.pdf -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/minus.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/option.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/option.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/pencil.and.ellipsis.rectangle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/pencil.and.ellipsis.rectangle.pdf -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/pencil.and.ellipsis.rectangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/pencil.and.ellipsis.rectangle.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/plus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/plus.pdf -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/plus.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/rosette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/rosette.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/scribble.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/scribble.pdf -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/scribble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/scribble.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/selection.pin.in.out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/selection.pin.in.out.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/square.stack.3d.down.right.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/square.stack.3d.down.right.pdf -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/square.stack.3d.down.right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/square.stack.3d.down.right.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/tray.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/tray.pdf -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/tray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/tray.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/viewfinder.circle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/viewfinder.circle.pdf -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/viewfinder.circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/viewfinder.circle.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/wand.and.rays.inverse.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/wand.and.rays.inverse.pdf -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/wand.and.rays.inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/wand.and.rays.inverse.svg -------------------------------------------------------------------------------- /Resource/Icon/SFIcon/wand.and.rays.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/SFIcon/wand.and.rays.svg -------------------------------------------------------------------------------- /Resource/Icon/left.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/left.pdf -------------------------------------------------------------------------------- /Resource/Icon/right.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/Icon/right.pdf -------------------------------------------------------------------------------- /Resource/designs.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/Resource/designs.sketch -------------------------------------------------------------------------------- /dmg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/dmg/README.md -------------------------------------------------------------------------------- /dmg/archive/Intro.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/dmg/archive/Intro.psd -------------------------------------------------------------------------------- /dmg/archive/dmg-background-black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/dmg/archive/dmg-background-black.jpg -------------------------------------------------------------------------------- /dmg/archive/dmg-background-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/dmg/archive/dmg-background-white.png -------------------------------------------------------------------------------- /dmg/archive/dmgBackground.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/dmg/archive/dmgBackground.psd -------------------------------------------------------------------------------- /dmg/create-dmg.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/dmg/create-dmg.command -------------------------------------------------------------------------------- /dmg/dmg-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/dmg/dmg-bg.png -------------------------------------------------------------------------------- /dmg/dmg-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/dmg/dmg-icon.png -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | mos.caldis.me -------------------------------------------------------------------------------- /docs/_next/static/chunks/4bd1b696-7ff92c8e320feb25.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/chunks/4bd1b696-7ff92c8e320feb25.js -------------------------------------------------------------------------------- /docs/_next/static/chunks/517-b50e81e275a91cf3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/chunks/517-b50e81e275a91cf3.js -------------------------------------------------------------------------------- /docs/_next/static/chunks/964-d8efec21bab179dd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/chunks/964-d8efec21bab179dd.js -------------------------------------------------------------------------------- /docs/_next/static/chunks/app/_not-found/page-2bb09a679abb77e8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/chunks/app/_not-found/page-2bb09a679abb77e8.js -------------------------------------------------------------------------------- /docs/_next/static/chunks/app/layout-adf07e950c06c253.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/chunks/app/layout-adf07e950c06c253.js -------------------------------------------------------------------------------- /docs/_next/static/chunks/app/page-e3d874e8cb8e4271.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/chunks/app/page-e3d874e8cb8e4271.js -------------------------------------------------------------------------------- /docs/_next/static/chunks/framework-6b27c2b7aa38af2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/chunks/framework-6b27c2b7aa38af2d.js -------------------------------------------------------------------------------- /docs/_next/static/chunks/main-app-42124d93d96c0188.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/chunks/main-app-42124d93d96c0188.js -------------------------------------------------------------------------------- /docs/_next/static/chunks/main-c27170c947371c9b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/chunks/main-c27170c947371c9b.js -------------------------------------------------------------------------------- /docs/_next/static/chunks/pages/_app-d23763e3e6c904ff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/chunks/pages/_app-d23763e3e6c904ff.js -------------------------------------------------------------------------------- /docs/_next/static/chunks/pages/_error-9b7125ad1a1e68fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/chunks/pages/_error-9b7125ad1a1e68fa.js -------------------------------------------------------------------------------- /docs/_next/static/chunks/polyfills-42372ed130431b0a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/chunks/polyfills-42372ed130431b0a.js -------------------------------------------------------------------------------- /docs/_next/static/chunks/webpack-d140ecdde22f3923.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/chunks/webpack-d140ecdde22f3923.js -------------------------------------------------------------------------------- /docs/_next/static/css/74723e9b07d9ca6e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/css/74723e9b07d9ca6e.css -------------------------------------------------------------------------------- /docs/_next/static/css/b263cb19c76fdfa5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/css/b263cb19c76fdfa5.css -------------------------------------------------------------------------------- /docs/_next/static/h45_n93EzV6wxu1iPdPkl/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/h45_n93EzV6wxu1iPdPkl/_buildManifest.js -------------------------------------------------------------------------------- /docs/_next/static/h45_n93EzV6wxu1iPdPkl/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/h45_n93EzV6wxu1iPdPkl/_ssgManifest.js -------------------------------------------------------------------------------- /docs/_next/static/media/034d78ad42e9620c-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/034d78ad42e9620c-s.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/0484562807a97172-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/0484562807a97172-s.p.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/281dae1e814de8c6-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/281dae1e814de8c6-s.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/29a4aea02fdee119-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/29a4aea02fdee119-s.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/29e7bbdce9332268-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/29e7bbdce9332268-s.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/3c70c5716f1730b3-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/3c70c5716f1730b3-s.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/4cf2300e9c8272f7-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/4cf2300e9c8272f7-s.p.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/747892c23ea88013-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/747892c23ea88013-s.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/77fb5eec12c66d49-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/77fb5eec12c66d49-s.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/806de4d605d3ad01-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/806de4d605d3ad01-s.p.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/8d697b304b401681-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/8d697b304b401681-s.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/93f479601ee12b01-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/93f479601ee12b01-s.p.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/9610d9e46709d722-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/9610d9e46709d722-s.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/a1386beebedccca4-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/a1386beebedccca4-s.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/ae822095a172cc5c-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/ae822095a172cc5c-s.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/b957ea75a84b6ea7-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/b957ea75a84b6ea7-s.p.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/ba015fad6dcf6784-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/ba015fad6dcf6784-s.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/c3bc380753a8436c-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/c3bc380753a8436c-s.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/eafabf029ad39a43-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/eafabf029ad39a43-s.p.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/fc727f226c737876-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/fc727f226c737876-s.p.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/fe0777f1195381cb-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/fe0777f1195381cb-s.woff2 -------------------------------------------------------------------------------- /docs/_next/static/media/logo-64.775e8e78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/_next/static/media/logo-64.775e8e78.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/file.svg -------------------------------------------------------------------------------- /docs/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/globe.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/index.txt -------------------------------------------------------------------------------- /docs/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/next.svg -------------------------------------------------------------------------------- /docs/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/vercel.svg -------------------------------------------------------------------------------- /docs/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/docs/window.svg -------------------------------------------------------------------------------- /website/.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /website/CNAME: -------------------------------------------------------------------------------- 1 | mos.caldis.me -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/README.md -------------------------------------------------------------------------------- /website/app/components/DownloadButton/DownloadButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/DownloadButton/DownloadButton.tsx -------------------------------------------------------------------------------- /website/app/components/DownloadButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/DownloadButton/index.ts -------------------------------------------------------------------------------- /website/app/components/GithubButton/GithubButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/GithubButton/GithubButton.tsx -------------------------------------------------------------------------------- /website/app/components/GithubButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/GithubButton/index.ts -------------------------------------------------------------------------------- /website/app/components/GithubVersion/GithubVersion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/GithubVersion/GithubVersion.tsx -------------------------------------------------------------------------------- /website/app/components/GithubVersion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/GithubVersion/index.ts -------------------------------------------------------------------------------- /website/app/components/HomebrewButton/HomebrewButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/HomebrewButton/HomebrewButton.tsx -------------------------------------------------------------------------------- /website/app/components/HomebrewButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/HomebrewButton/index.ts -------------------------------------------------------------------------------- /website/app/components/LanguageSelector/LanguageSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/LanguageSelector/LanguageSelector.tsx -------------------------------------------------------------------------------- /website/app/components/LanguageSelector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/LanguageSelector/index.ts -------------------------------------------------------------------------------- /website/app/components/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/Modal/Modal.tsx -------------------------------------------------------------------------------- /website/app/components/Modal/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/Modal/hooks.ts -------------------------------------------------------------------------------- /website/app/components/Modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/Modal/index.ts -------------------------------------------------------------------------------- /website/app/components/ShinyText/ShinyText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/ShinyText/ShinyText.tsx -------------------------------------------------------------------------------- /website/app/components/ShinyText/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/ShinyText/index.ts -------------------------------------------------------------------------------- /website/app/components/SquaresBackground/SquaresBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/SquaresBackground/SquaresBackground.tsx -------------------------------------------------------------------------------- /website/app/components/SquaresBackground/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/SquaresBackground/index.ts -------------------------------------------------------------------------------- /website/app/components/SysRequireButton/SysRequireButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/SysRequireButton/SysRequireButton.tsx -------------------------------------------------------------------------------- /website/app/components/SysRequireButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/components/SysRequireButton/index.ts -------------------------------------------------------------------------------- /website/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/favicon.ico -------------------------------------------------------------------------------- /website/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/globals.css -------------------------------------------------------------------------------- /website/app/i18n/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/i18n/context.tsx -------------------------------------------------------------------------------- /website/app/i18n/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/i18n/de.ts -------------------------------------------------------------------------------- /website/app/i18n/el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/i18n/el.ts -------------------------------------------------------------------------------- /website/app/i18n/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/i18n/en.ts -------------------------------------------------------------------------------- /website/app/i18n/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/i18n/id.ts -------------------------------------------------------------------------------- /website/app/i18n/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/i18n/ja.ts -------------------------------------------------------------------------------- /website/app/i18n/ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/i18n/ko.ts -------------------------------------------------------------------------------- /website/app/i18n/pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/i18n/pl.ts -------------------------------------------------------------------------------- /website/app/i18n/ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/i18n/ru.ts -------------------------------------------------------------------------------- /website/app/i18n/tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/i18n/tr.ts -------------------------------------------------------------------------------- /website/app/i18n/uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/i18n/uk.ts -------------------------------------------------------------------------------- /website/app/i18n/zh-Hant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/i18n/zh-Hant.ts -------------------------------------------------------------------------------- /website/app/i18n/zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/i18n/zh.ts -------------------------------------------------------------------------------- /website/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/layout.tsx -------------------------------------------------------------------------------- /website/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/page.tsx -------------------------------------------------------------------------------- /website/app/services/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/services/github.ts -------------------------------------------------------------------------------- /website/app/services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/app/services/utils.ts -------------------------------------------------------------------------------- /website/archive/v0/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v0/index.css -------------------------------------------------------------------------------- /website/archive/v0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v0/index.html -------------------------------------------------------------------------------- /website/archive/v0/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v0/index.js -------------------------------------------------------------------------------- /website/archive/v0/indexCN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v0/indexCN.html -------------------------------------------------------------------------------- /website/archive/v0/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v0/reset.css -------------------------------------------------------------------------------- /website/archive/v1/assets/fonts/ubuntu/4iCs6KVjbNBYlgoKcQ72j00.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/fonts/ubuntu/4iCs6KVjbNBYlgoKcQ72j00.woff2 -------------------------------------------------------------------------------- /website/archive/v1/assets/fonts/ubuntu/4iCs6KVjbNBYlgoKcg72j00.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/fonts/ubuntu/4iCs6KVjbNBYlgoKcg72j00.woff2 -------------------------------------------------------------------------------- /website/archive/v1/assets/fonts/ubuntu/4iCs6KVjbNBYlgoKcw72j00.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/fonts/ubuntu/4iCs6KVjbNBYlgoKcw72j00.woff2 -------------------------------------------------------------------------------- /website/archive/v1/assets/fonts/ubuntu/4iCs6KVjbNBYlgoKew72j00.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/fonts/ubuntu/4iCs6KVjbNBYlgoKew72j00.woff2 -------------------------------------------------------------------------------- /website/archive/v1/assets/fonts/ubuntu/4iCs6KVjbNBYlgoKfA72j00.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/fonts/ubuntu/4iCs6KVjbNBYlgoKfA72j00.woff2 -------------------------------------------------------------------------------- /website/archive/v1/assets/fonts/ubuntu/4iCs6KVjbNBYlgoKfw72.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/fonts/ubuntu/4iCs6KVjbNBYlgoKfw72.woff2 -------------------------------------------------------------------------------- /website/archive/v1/assets/fonts/ubuntu/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/fonts/ubuntu/font.css -------------------------------------------------------------------------------- /website/archive/v1/assets/image/cn/Mointor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/image/cn/Mointor.png -------------------------------------------------------------------------------- /website/archive/v1/assets/image/cn/PreferencesAdvanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/image/cn/PreferencesAdvanced.png -------------------------------------------------------------------------------- /website/archive/v1/assets/image/cn/PreferencesExceptionFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/image/cn/PreferencesExceptionFull.png -------------------------------------------------------------------------------- /website/archive/v1/assets/image/cn/PreferencesGeneral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/image/cn/PreferencesGeneral.png -------------------------------------------------------------------------------- /website/archive/v1/assets/image/en/Mointor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/image/en/Mointor.png -------------------------------------------------------------------------------- /website/archive/v1/assets/image/en/PreferencesAdvanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/image/en/PreferencesAdvanced.png -------------------------------------------------------------------------------- /website/archive/v1/assets/image/en/PreferencesExceptionFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/image/en/PreferencesExceptionFull.png -------------------------------------------------------------------------------- /website/archive/v1/assets/image/en/PreferencesGeneral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/image/en/PreferencesGeneral.png -------------------------------------------------------------------------------- /website/archive/v1/assets/image/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/image/intro.png -------------------------------------------------------------------------------- /website/archive/v1/assets/image/logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/image/logo-big.png -------------------------------------------------------------------------------- /website/archive/v1/assets/image/logo-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/image/logo-medium.png -------------------------------------------------------------------------------- /website/archive/v1/assets/image/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/image/logo-small.png -------------------------------------------------------------------------------- /website/archive/v1/assets/image/ru/Mointor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/image/ru/Mointor.png -------------------------------------------------------------------------------- /website/archive/v1/assets/image/ru/PreferencesAdvanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/image/ru/PreferencesAdvanced.png -------------------------------------------------------------------------------- /website/archive/v1/assets/image/ru/PreferencesException.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/image/ru/PreferencesException.png -------------------------------------------------------------------------------- /website/archive/v1/assets/image/ru/PreferencesGeneral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/assets/image/ru/PreferencesGeneral.png -------------------------------------------------------------------------------- /website/archive/v1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/index.html -------------------------------------------------------------------------------- /website/archive/v1/index.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/index.template.html -------------------------------------------------------------------------------- /website/archive/v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/package.json -------------------------------------------------------------------------------- /website/archive/v1/src/i18n/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/src/i18n/image.js -------------------------------------------------------------------------------- /website/archive/v1/src/i18n/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/src/i18n/text.js -------------------------------------------------------------------------------- /website/archive/v1/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/src/index.css -------------------------------------------------------------------------------- /website/archive/v1/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/src/index.js -------------------------------------------------------------------------------- /website/archive/v1/src/parallaxButton/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/src/parallaxButton/index.css -------------------------------------------------------------------------------- /website/archive/v1/src/parallaxButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/src/parallaxButton/index.js -------------------------------------------------------------------------------- /website/archive/v1/src/releases/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/src/releases/index.js -------------------------------------------------------------------------------- /website/archive/v1/src/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/src/reset.css -------------------------------------------------------------------------------- /website/archive/v1/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/archive/v1/webpack.config.js -------------------------------------------------------------------------------- /website/assets/image/logo-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/assets/image/logo-1024.png -------------------------------------------------------------------------------- /website/assets/image/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/assets/image/logo-128.png -------------------------------------------------------------------------------- /website/assets/image/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/assets/image/logo-16.png -------------------------------------------------------------------------------- /website/assets/image/logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/assets/image/logo-256.png -------------------------------------------------------------------------------- /website/assets/image/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/assets/image/logo-32.png -------------------------------------------------------------------------------- /website/assets/image/logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/assets/image/logo-512.png -------------------------------------------------------------------------------- /website/assets/image/logo-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/assets/image/logo-64.png -------------------------------------------------------------------------------- /website/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/eslint.config.mjs -------------------------------------------------------------------------------- /website/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/next-env.d.ts -------------------------------------------------------------------------------- /website/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/next.config.ts -------------------------------------------------------------------------------- /website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/package-lock.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/package.json -------------------------------------------------------------------------------- /website/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/pnpm-lock.yaml -------------------------------------------------------------------------------- /website/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/pnpm-workspace.yaml -------------------------------------------------------------------------------- /website/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/postcss.config.mjs -------------------------------------------------------------------------------- /website/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/public/file.svg -------------------------------------------------------------------------------- /website/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/public/globe.svg -------------------------------------------------------------------------------- /website/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/public/next.svg -------------------------------------------------------------------------------- /website/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/public/vercel.svg -------------------------------------------------------------------------------- /website/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/public/window.svg -------------------------------------------------------------------------------- /website/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/tailwind.config.ts -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/tsconfig.json -------------------------------------------------------------------------------- /website/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caldis/Mos/HEAD/website/tsconfig.tsbuildinfo --------------------------------------------------------------------------------