diff --git a/assets/app_screenshot.png b/assets/app_screenshot.png
index 1d88957..d124744 100644
Binary files a/assets/app_screenshot.png and b/assets/app_screenshot.png differ
diff --git a/landing/index.html b/landing/index.html
index bc78d0a..3df8aa5 100644
--- a/landing/index.html
+++ b/landing/index.html
@@ -44,7 +44,7 @@
Customize your macOS app icons with ease.
brew install
+ > brew install
hitblast/tap/alter
or
@@ -61,7 +61,7 @@
here.
Download
latest zip (not recommended)
🍺 v1.1.3 on 🍎 Apple Silicon
diff --git a/landing/script.js b/landing/script.js
index 034bba4..9d66f87 100644
--- a/landing/script.js
+++ b/landing/script.js
@@ -31,7 +31,7 @@ ScrollReveal().reveal("footer", {
(function () {
var codeBlock = document.querySelector(".code-block");
- var iconHTML = '
';
+ var iconHTML = '
';
var originalText = " brew install hitblast/tap/alter";
var hoverText = " Copy command to clipboard";
var copiedText = " Copied to clipboard!";
diff --git a/lib/pages/apps_page.dart b/lib/pages/apps_page.dart
index ae230c1..b20b602 100644
--- a/lib/pages/apps_page.dart
+++ b/lib/pages/apps_page.dart
@@ -69,6 +69,8 @@ class _AppsPageState extends ConsumerState
{
await launchOnWeb(context, 'https://macosicons.com/'),
),
const ToolBarSpacer(),
+ const ToolBarDivider(),
+ const ToolBarSpacer(),
ToolBarIconButton(
icon: const MacosIcon(
CupertinoIcons.xmark_shield_fill,
@@ -152,15 +154,18 @@ class _AppsPageState extends ConsumerState {
? secondaryColorDarkMode
: secondaryColorLightMode,
),
- padding: const EdgeInsets.all(17),
+ padding: const EdgeInsets.all(12),
child: MacosListTile(
leading: Row(
children: [
Text(
'${i + 1}.',
- style: TextStyle(fontWeight: FontWeight.bold),
+ style: TextStyle(
+ fontWeight: FontWeight.bold,
+ color: CupertinoColors.systemGrey,
+ ),
),
- const SizedBox(width: 10),
+ const SizedBox(width: 8),
MacosTooltip(
message: app.appBundleId,
child: Container(
@@ -206,7 +211,7 @@ class _AppsPageState extends ConsumerState {
children: [
Text(
path.basenameWithoutExtension(app.path),
- style: const TextStyle(fontSize: 15.5),
+ style: const TextStyle(fontSize: 14),
),
const Spacer(),
MacosTooltip(
@@ -225,7 +230,6 @@ class _AppsPageState extends ConsumerState {
},
icon: const MacosIcon(
CupertinoIcons.pencil,
- size: 20,
color: CupertinoColors.systemGrey,
),
),
@@ -249,7 +253,6 @@ class _AppsPageState extends ConsumerState {
icon: const MacosIcon(
CupertinoIcons.trash_fill,
color: CupertinoColors.systemGrey,
- size: 20,
),
),
),
diff --git a/lib/pages/iconchooser_sheet_page.dart b/lib/pages/iconchooser_sheet_page.dart
index 5899114..bc119ce 100644
--- a/lib/pages/iconchooser_sheet_page.dart
+++ b/lib/pages/iconchooser_sheet_page.dart
@@ -46,7 +46,6 @@ class _IconChooserSheetPageState extends ConsumerState {
@override
Widget build(BuildContext context) {
- final appName = path.basenameWithoutExtension(widget.appFile.path);
final brightness = MediaQuery.of(context).platformBrightness;
return MacosSheet(
@@ -67,8 +66,8 @@ class _IconChooserSheetPageState extends ConsumerState {
children: [
Text(
(widget.preexistingAppId != null)
- ? 'Modify icon for $appName'
- : 'Select icon for $appName',
+ ? 'Modify icon for app'
+ : 'Select icon for app',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 21,
diff --git a/pubspec.yaml b/pubspec.yaml
index 5989e64..c66fd2e 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,7 +1,7 @@
name: alter
description: "Alter is a minimal macOS app which can be used to customize your app icons with ease."
publish_to: "none"
-version: 1.1.3
+version: 1.1.4
environment:
sdk: ^3.7.0