File tree Expand file tree Collapse file tree 5 files changed +22
-14
lines changed
flutter-idea/src/io/flutter Expand file tree Collapse file tree 5 files changed +22
-14
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 20
20
public class FlutterSurveyService {
21
21
private static final String FLUTTER_LAST_SURVEY_CONTENT_CHECK_KEY = "FLUTTER_LAST_SURVEY_CONTENT_CHECK_KEY" ;
22
22
private static final long CHECK_INTERVAL_IN_MS = TimeUnit .HOURS .toMillis (40 );
23
- private static final String CONTENT_URL = "https://flutter.dev/f/flutter-survey-metadata.json" ;
23
+ private static final String CONTENT_URL = "https://docs. flutter.dev/f/flutter-survey-metadata.json" ;
24
24
private static final PropertiesComponent properties = PropertiesComponent .getInstance ();
25
25
private static final Logger LOG = Logger .getInstance (FlutterSurveyService .class );
26
26
private static FlutterSurvey cachedSurvey ;
27
27
28
-
29
28
private static boolean timeToUpdateCachedContent () {
30
29
// Don't check more often than daily.
31
30
final long currentTimeMillis = System .currentTimeMillis ();
Original file line number Diff line number Diff line change @@ -22,7 +22,11 @@ public class JxBrowserUtils {
22
22
public String getPlatformFileName () throws FileNotFoundException {
23
23
String name = "" ;
24
24
if (SystemInfo .isMac ) {
25
- name = "mac" ;
25
+ if (SystemInfo .OS_ARCH .equals ("aarch64" )) {
26
+ name = "mac-arm" ;
27
+ } else {
28
+ name = "mac" ;
29
+ }
26
30
} else if (SystemInfo .isWindows ) {
27
31
if (SystemInfo .is32Bit ) {
28
32
name = "win32" ;
Original file line number Diff line number Diff line change 48
48
"baseVersion" : " 212.5284.40" ,
49
49
"dartPluginVersion" : " 212.5486" ,
50
50
"sinceBuild" : " 212.5284.40" ,
51
- "untilBuild" : " 212.5284.40"
51
+ "untilBuild" : " 212.5457.46"
52
+ },
53
+ {
54
+ "channel" : " dev" ,
55
+ "comments" : " IntelliJ 2021.3 Beta" ,
56
+ "name" : " 2021.3 Beta" ,
57
+ "version" : " 2021.3" ,
58
+ "ideaProduct" : " ideaIC" ,
59
+ "ideaVersion" : " 213.5744.125" ,
60
+ "baseVersion" : " 213.5744.125" ,
61
+ "dartPluginVersion" : " 213.5744.122" ,
62
+ "sinceBuild" : " 213.5744.125" ,
63
+ "untilBuild" : " 213.*"
52
64
}
53
65
]
54
66
}
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ void main() {
47
47
'android-studio' ,
48
48
'ideaIC' ,
49
49
'android-studio' ,
50
+ 'ideaIC' ,
50
51
]));
51
52
});
52
53
});
@@ -63,6 +64,7 @@ void main() {
63
64
'android-studio' ,
64
65
'ideaIC' ,
65
66
'android-studio' ,
67
+ 'ideaIC' ,
66
68
]));
67
69
});
68
70
});
@@ -79,6 +81,7 @@ void main() {
79
81
'android-studio' ,
80
82
'ideaIC' ,
81
83
'android-studio' ,
84
+ 'ideaIC' ,
82
85
]));
83
86
});
84
87
});
You can’t perform that action at this time.
0 commit comments