Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- Resolved a "Slow operations are prohibited on EDT" exception on Flutter Project creation (#8446, #8447, #8448)
- Made dev release daily instead of weekly
- Set the device selector component to opaque during its creation to avoid an unexpected background color (#8471)
- Refactored `DeviceSelectorAction` and add rich icons to different platform devices (#8475)

## 87.1.0

Expand Down
4 changes: 2 additions & 2 deletions resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<!--suppress PluginXmlCapitalization -->
<action id="Flutter.DeviceSelector" class="io.flutter.actions.DeviceSelectorAction"
description="Flutter Device Selection"
icon="FlutterIcons.Phone"/>
icon="FlutterIcons.Mobile"/>
<action id="Flutter.DeviceSelectorRefresher" class="io.flutter.actions.DeviceSelectorRefresherAction"
text="Refresh Device List"
description="Refresh device list"
Expand All @@ -70,7 +70,7 @@
<!--suppress PluginXmlCapitalization -->
<action id="Flutter.DeviceSelectorLegacy" class="io.flutter.actions.DeviceSelectorAction"
description="Flutter Device Selection"
icon="FlutterIcons.Phone"/>
icon="FlutterIcons.Mobile"/>
<action id="Flutter.DeviceSelectorRefresherLegacy" class="io.flutter.actions.DeviceSelectorRefresherAction"
text="Refresh Device List"
description="Refresh device list" />
Expand Down
1 change: 1 addition & 0 deletions resources/icons/android.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions resources/icons/desktop.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions resources/icons/ios.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions resources/icons/mobile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed resources/icons/phone.png
Binary file not shown.
Binary file removed resources/icons/phone@2x.png
Binary file not shown.
1 change: 1 addition & 0 deletions resources/icons/web.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion src/icons/FlutterIcons.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,14 @@ private static Icon load(String path) {
public static final Icon Flutter = load("/icons/flutter.png");
public static final Icon Flutter_2x = load("/icons/flutter@2x.png");
public static final Icon Flutter_test = load("/icons/flutter_test.png");
public static final Icon Phone = load("/icons/phone.png");
public static final Icon RefreshItems = load("/icons/refresh_items.png");

public static final Icon Android = load("/icons/android.svg");
public static final Icon IOS = load("/icons/ios.svg");
public static final Icon Mobile = load("/icons/mobile.svg");
public static final Icon Desktop = load("/icons/desktop.svg");
public static final Icon Web = load("/icons/web.svg");

public static final Icon Dart_16 = load("/icons/dart_16.svg");

public static final Icon HotReload = load("/icons/hot-reload.png");
Expand Down
Loading