Skip to content

Commit

Permalink
Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Sep 3, 2024
1 parent 6030099 commit 5e7f931
Show file tree
Hide file tree
Showing 68 changed files with 353 additions and 432 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@
"jsx-quotes": [
"error",
"prefer-double"
]
],
"unicorn/prevent-abbreviations": "off"
}
}
}
Binary file added public/apps/scratchpad/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apps/scratchpad/screenshot1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apps/scratchpad/screenshot2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apps/scratchpad/screenshot3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions source/components/widgets/OverflowMenu.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
import {Icon} from 'astro-iconify';
export type OverflowItemProps = {
title: string;
url: string;
};
export type OverflowMenuProps = {
overflowItems?: readonly OverflowItemProps[];
};
const {overflowItems} = Astro.props;
---

<div class="relative flex items-center" style="padding-top:2px">
<select
aria-label="Overflow menu"
class="overflow-menu-component absolute inset-0 w-full h-full opacity-0 cursor-pointer"
style="font-weight: initial; font-family: system-ui;"
>
<option value="" disabled selected>…</option>
{overflowItems?.map(item => (
<option value={item.url}>{item.title}</option>
))}
<slot />
</select>
<Icon
name="tabler:dots-circle-horizontal"
class="w-5 h-5 text-primary-600 dark:text-primary-400 pointer-events-none"
aria-hidden="true"
/>
</div>

<script is:inline>
document.addEventListener('change', event => {
if (event.target?.matches('.overflow-menu-component')) {
const selectedValue = event.target.value;
if (selectedValue) {
event.target.value = ''; // Clear selection
window.location.href = selectedValue;
}
}
});
</script>
10 changes: 1 addition & 9 deletions source/content/apps/ai-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ Your API key is securely stored in your keychain, not in a shortcut.

*You may also like my [Actions](/actions) app.*

<br>

### Frequently Asked Questions {#faq}

#### I have a feature request, bug report, or some feedback
Expand Down Expand Up @@ -62,24 +60,18 @@ No, the Whisper API isn't suitable for this app due to Shortcuts' 30-second limi

I just enjoy making apps. Consider leaving a nice review on the App Store.

#### Where can I find the changelog?

Go [here](https://apps.apple.com/app/id6465250302) and click “Version History”.

#### Can you localize the app into my language?

I don't plan to localize the app.

#### [More FAQs…](/apps/faq)

<!-- <br>
<!--
### Older Versions
- []() for macOS 14+ -->

<br>

### Non-App Store Version

A special version for users that cannot access the App Store. It won't receive automatic updates. I will update it here once a year.
Expand Down
12 changes: 0 additions & 12 deletions source/content/apps/aiko.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,6 @@ Aiko transcribes audio directly on your device, ensuring complete privacy. It's

The app uses the Whisper large v2 model on macOS and the medium or small model on iOS depending on available memory.

<br>

### Tips

#### Divide text into paragraphs
Expand Down Expand Up @@ -181,8 +179,6 @@ You can use [this shortcut](https://www.icloud.com/shortcuts/e43220d72f3343659e0

[Get this shortcut](https://www.icloud.com/shortcuts/7c3031aa674c405fa69093d1f6c184a6) and add it to the Home Screen. Then tap it instead of the original Aiko app icon.

<br>

### Frequently Asked Questions {#faq}

#### I have a feature request, bug report, or some feedback
Expand Down Expand Up @@ -349,24 +345,16 @@ Yes, it's native and written in Swift and SwiftUI.

I just enjoy making apps. Consider leaving a nice review on the App Store.

#### Where can I find the changelog?

Go [here](https://apps.apple.com/app/id1672085276) and click “Version History”.

#### Can you localize the app into my language?

I don't plan to localize the app.

#### [More FAQs…](/apps/faq)

<br>

### Older Versions

- [1.5.3](https://drive.google.com/file/d/15NOcj4fyX58I3_NlQyCziL87Ru89yFRx/view?usp=sharing) for macOS 13+

<br>

### Non-App Store Version

A special version for users that cannot access the App Store. It won't receive automatic updates. I will update it here once a year.
Expand Down
12 changes: 0 additions & 12 deletions source/content/apps/amazing-ai.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ On iOS, it requires at minimum an iPhone 15 Pro or iPad with M1 processor.

The app is [highly optimized](https://machinelearning.apple.com/research/stable-diffusion-coreml-apple-silicon) and runs on the [Apple Neural Engine](https://apple.fandom.com/wiki/Neural_Engine).

<br>

### Tips

#### Preview
Expand All @@ -48,8 +46,6 @@ On macOS, when in preview mode, there are some keyboard shortcuts available:

On macOS, when you save a generated image, it includes a lot of useful metadata (prompt, steps, etc). You can [view this in Finder](https://twitter.com/sindresorhus/status/1611441129622278146/photo/1) by right-clicking the image file and selecting “Get Info”. The file also includes some relevant tags which can be used to create [smart folders](https://support.apple.com/guide/mac-help/tag-files-and-folders-mchlp15236/mac).

<br>

### Frequently Asked Questions {#faq}

#### I have a feature request, bug report, or some feedback
Expand Down Expand Up @@ -121,24 +117,16 @@ The AI model used to generate images is large. This is reasonable given the mode

I just enjoy making apps. Consider leaving a nice review on the App Store.

#### Where can I find the changelog?

Go [here](https://apps.apple.com/app/id1660147028) and click “Version History”.

#### Can you localize the app into my language?

I don't plan to localize the app.

#### [More FAQs…](/apps/faq)

<br>

### Older Versions

- [1.2.2](https://drive.google.com/file/d/1mcEhAKhmQGYzmSS-zlejt3_qsKFzqm0h/view?usp=sharing) for macOS 13+

<br>

### Non-App Store Version

A special version for users that cannot access the App Store. It won't receive automatic updates. I will update it here once a year.
Expand Down
6 changes: 0 additions & 6 deletions source/content/apps/any-text.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ For macOS, it's only available for Apple silicon Macs running macOS 14 or later.

*You may also like [my similar app](https://sindresorhus.com/one-thing) for macOS.*

<br>

### Frequently Asked Questions {#faq}

#### I have a feature request, bug report, or some feedback
Expand Down Expand Up @@ -121,10 +119,6 @@ If you work at Apple, you know what to do:

I just enjoy making apps. I earn money on other apps. Consider leaving a nice review on the App Store.

#### Where can I find the changelog?

Go [here](https://apps.apple.com/app/id1643199620) and click “Version History”.

#### Can you localize the app into my language?

I don't plan to localize the app.
Expand Down
6 changes: 0 additions & 6 deletions source/content/apps/ask-ai.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ The app uses [GPT-4o mini](https://openai.com/index/gpt-4o-mini-advancing-cost-e

The app uses OpenAI's official ChatGPT API. I have to pay for every question, but the app is a one-time purchase since I hate subscription. I sure hope I estimated the price correctly 🤣

<br>

### Frequently Asked Questions {#faq}

#### I bought the app on my iPhone/iPad but it does not show up on my watch
Expand All @@ -42,8 +40,4 @@ Add [this shortcut](https://www.icloud.com/shortcuts/6b890da159844407a6b39de4545

Unfortunately, it is unlikely that the app will be available on iOS and macOS. The pricing of the app is based on its expected lifetime usage, and since I am charged for the amount of usage, the cost would be much higher on iOS. For macOS, check out [QuickGPT](/quickgpt).

#### Where can I find the changelog?

Go [here](https://apps.apple.com/app/id6446167837) and click “Version History”.

#### [More FAQs…](/apps/faq)
12 changes: 2 additions & 10 deletions source/content/apps/battery-indicator.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ olderMacOSVersions:

Battery Indicator lets you quickly glance the remaining battery time or percentage right in your menu bar.

<br>

### Frequently Asked Questions {#faq}

#### I have a feature request, bug report, or some feedback
Expand Down Expand Up @@ -53,32 +51,26 @@ The app has a built-in sound when showing notifications. However, if you want a

This is a perfect use case for the built-in Shortcuts app. You can use the `Play Sound` action to play the sound you want. To run the shortcut when the battery is at a certain percentage, you need the [Shortery app](https://apps.apple.com/app/id1594183810). Use its “Power Status” trigger.

*(The Shortery app is only a temporary requirement. It's likely that Apple will introduce automation for Shortcuts in macOS 15.)*
*(The Shortery app is only a temporary requirement. It's likely that Apple will introduce automation for Shortcuts in macOS 16.)*

You can find sound effects [here](https://pixabay.com/sound-effects/search/interface/).

#### Can the battery icon hide when the battery is charged a certain percentage?

This is a perfect use case for the built-in Shortcuts app. Create a shortcut that quits the app and one that launches it. To run the shortcut when the battery is at a certain percentage, you need the [Shortery app](https://apps.apple.com/app/id1594183810). Use its “Power Status” trigger.

*(The Shortery app is only a temporary requirement. It's likely that Apple will introduce automation for Shortcuts in macOS 15.)*
*(The Shortery app is only a temporary requirement. It's likely that Apple will introduce automation for Shortcuts in macOS 16.)*

#### How can I export, import, sync, or back up the settings?

[See this guide.](https://github.com/sindresorhus/guides/blob/main/backup-app-settings.md)

#### Where can I find the changelog?

Go [here](https://apps.apple.com/app/id1206020918) and click “Version History”.

#### Can you localize the app into my language?

I don't plan to localize the app.

#### [More FAQs…](/apps/faq)

<br>

### Older Versions

- [2.16.1](https://github.com/sindresorhus/meta/files/13942534/Battery.Indicator.2.16.1.-.macOS.13.zip) for macOS 13
Expand Down
4 changes: 0 additions & 4 deletions source/content/apps/black-out.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ olderMacOSVersions:

This app can be useful when you want to post a screenshot or photo on the web that contains some information you don’t want to be revealed. Maybe you want to share a screenshot of a Slack conversation on Twitter but hide some private information. It also removes all metadata, like when and where a photo was captured.

<br>

### Frequently Asked Questions {#faq}

#### I have a feature request, bug report, or some feedback
Expand All @@ -41,8 +39,6 @@ It’s from Apple’s inspirational [“Here’s to the Crazy Ones” TV commerc

#### [More FAQs…](/apps/faq)

<br>

### Older Versions

- [2.3.1](https://github.com/sindresorhus/meta/files/13923936/Black.Out.2.3.1.-.macOS.13.zip) for macOS 13
Expand Down
2 changes: 1 addition & 1 deletion source/content/apps/blear.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ repoUrl: https://github.com/sindresorhus/blear
appStoreId: 994182280
---

Blear lets you easily transform your own photos or the bundled ones into stunning blurry wallpapers for your device. Make your Home/Lock screen shine!
Transform your photos or the bundled ones into stunning blurry wallpapers for your device. Make your Home/Lock screen shine!
12 changes: 0 additions & 12 deletions source/content/apps/camera-preview.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,12 @@ olderMacOSVersions:

Instant access to your Mac's camera feed for quick checks before video calls.

<br>

### Tips

- Press the <kbd>Return</kbd> or <kbd>Space</kbd> key while showing the camera feed to take a photo.
- Press the <kbd>Command</kbd> and <kbd>+</kbd> key to zoom in, <kbd>Command</kbd> and <kbd>-</kbd> to zoom out, and <kbd>Command</kbd> and <kbd>0</kbd> to reset the zoom.
- Press the <kbd>Option<kbd> key while resizing the window to resize from the center (this works with any app).

<br>

### Frequently Asked Questions {#faq}

#### I have a feature request, bug report, or some feedback
Expand Down Expand Up @@ -79,24 +75,16 @@ No. That's outside the scope of this app. You can use the built-in QuickTime Pla

I just enjoy making apps. Consider leaving a nice review on the App Store.

#### Where can I find the changelog?

Go [here](https://apps.apple.com/app/id1632827132) and click “Version History”.

#### Can you localize the app into my language?

I don't plan to localize the app.

#### [More FAQs…](/apps/faq)

<br>

### Older Versions

- [1.4.0](https://github.com/sindresorhus/meta/files/13988612/Camera.Preview.1.4.0.-.macOS.13.zip) for macOS 13+

<br>

### Non-App Store Version

A special version for users that cannot access the App Store. It won't receive automatic updates. I will update it here once a year.
Expand Down
4 changes: 2 additions & 2 deletions source/content/apps/caprine.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
unlisted: true
isUnlisted: true
title: Caprine
subtitle: Elegant Facebook Messenger desktop app
pubDate: 2015-09-16
Expand All @@ -10,4 +10,4 @@ platforms:
repoUrl: https://github.com/sindresorhus/caprine
---

Caprine is an open-source, cross-platform, and privacy-focused Facebook Messenger desktop app.
An open-source, cross-platform, and privacy-focused Facebook Messenger desktop app.
14 changes: 4 additions & 10 deletions source/content/apps/command-x.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ Cut and paste files and folders in Finder using Command+X and Command+V. Without

Known limitation: You cannot cut the name of a file when editing a filename in Finder or cut when using the search field. There is no way for the app to work around this.

<br>

### Frequently Asked Questions {#faq}

#### I have a feature request, bug report, or some feedback
Expand Down Expand Up @@ -54,6 +52,10 @@ tccutil reset All com.sindresorhus.Command-X

To help me figure out the issue, make sure the “Use more reliable way of handling Command+X” setting is enabled, press <kbd>Command+X</kbd> and <kbd>Command+V</kbd> in Finder, click the “Copy Debug Info” button in the Command X menu bar menu, and then [send the debug info to me](/feedback?product=Command%20X&referrer=Website-FAQ), including a short explanation of what didn't work.

#### How does the app work?

The app works by overriding the normal cut <kbd>⌘X</kbd> keyboard shortcut when Finder is active and executes a copy <kbd>⌘C</kbd> instead. When you then paste <kbd>⌘V</kbd>, it executes the native move <kbd>⌥⌘V</kbd> keyboard shortcut. So really, it's Finder moving the files. This app just makes the keyboard shortcuts more intuitive.

#### Is there any risk of data loss if I forget to paste?

No. The files are not touched until you paste. If you don't paste, the files just stay in place.
Expand All @@ -78,24 +80,16 @@ This is a known issue that is unfortunately not fixable. The app works by overri

Same as the above.

#### Where can I find the changelog?

Go [here](https://apps.apple.com/app/id6448461551) and click “Version History”.

#### Can you localize the app into my language?

I don't plan to localize the app.

#### [More FAQs…](/apps/faq)

<br>

### Older Versions

- [1.3.1](https://github.com/sindresorhus/meta/files/13987707/Command.X.1.3.1.-.macOS.13.zip) for macOS 13+

<br>

### Non-App Store Version

A special version for users that cannot access the App Store. It won't receive automatic updates. I will update it here once a year.
Expand Down
Loading

0 comments on commit 5e7f931

Please sign in to comment.