AI-Electric Eel | 2022.1.1 <debuggerx@debuggerx Merge branch 'master'

Conflicts:
	editor-font.xml
master
debuggerx 2 years ago
commit 3aca5e938f

@ -3,6 +3,6 @@
<version>1</version> <version>1</version>
</component> </component>
<component name="whatsNew"> <component name="whatsNew">
<shownVersion>2022.2.1rc10</shownVersion> <shownVersion>2022.2.1rc11</shownVersion>
</component> </component>
</application> </application>

@ -5,23 +5,23 @@
<key> <key>
<Key> <Key>
<type value="SERIAL_NUMBER" /> <type value="SERIAL_NUMBER" />
<value value="c1492081" /> <value value="22cbc849" />
</Key> </Key>
</key> </key>
<name value="Xiaomi M2011K2C" /> <name value="Xiaomi MI 6X" />
<target value="Android 12.0" /> <target value="Android 11.0" />
<api value="androidversion:31:null:null:true" /> <api value="androidversion:30:null:null:true" />
</PhysicalDevice> </PhysicalDevice>
<PhysicalDevice> <PhysicalDevice>
<key> <key>
<Key> <Key>
<type value="SERIAL_NUMBER" /> <type value="SERIAL_NUMBER" />
<value value="22cbc849" /> <value value="c1492081" />
</Key> </Key>
</key> </key>
<name value="Xiaomi MI 6X" /> <name value="Xiaomi M2011K2C" />
<target value="Android 11.0" /> <target value="Android 12.0" />
<api value="androidversion:30:null:null:true" /> <api value="androidversion:31:null:null:true" />
</PhysicalDevice> </PhysicalDevice>
<PhysicalDevice> <PhysicalDevice>
<key> <key>

@ -1,5 +1,13 @@
<application> <application>
<component name="DefaultFont"> <component name="DefaultFont">
<option name="VERSION" value="1" /> <option name="VERSION" value="1" />
<option name="FONT_SIZE" value="20" />
<option name="FONT_SIZE_2D" value="20.0" />
<option name="FONT_FAMILY" value="Fira Code" />
<option name="FONT_REGULAR_SUB_FAMILY" value="SemiBold" />
<option name="FONT_BOLD_SUB_FAMILY" value="Bold" />
<option name="FONT_SCALE" value="1.5" />
<option name="USE_LIGATURES" value="true" />
<option name="SECONDARY_FONT_FAMILY" value="Noto Sans Mono CJK SC" />
</component> </component>
</application> </application>

@ -5,6 +5,7 @@
<mapping ext="gradle.kts" type="Kotlin" /> <mapping ext="gradle.kts" type="Kotlin" />
<mapping ext="main.kts" type="Kotlin" /> <mapping ext="main.kts" type="Kotlin" />
<mapping pattern=".gitkeep" type="PLAIN_TEXT" /> <mapping pattern=".gitkeep" type="PLAIN_TEXT" />
<mapping ext="o" type="PLAIN_TEXT" />
<mapping ext="so" type="PLAIN_TEXT" /> <mapping ext="so" type="PLAIN_TEXT" />
<removed_mapping ext="apk" approved="true" type="ARCHIVE" /> <removed_mapping ext="apk" approved="true" type="ARCHIVE" />
<removed_mapping ext="ignore" approved="true" type="IgnoreLang file" /> <removed_mapping ext="ignore" approved="true" type="IgnoreLang file" />

@ -2,8 +2,8 @@
<component name="FindSettings"> <component name="FindSettings">
<option name="customScope" value="All Places" /> <option name="customScope" value="All Places" />
<option name="defaultScopeName" value="All Places" /> <option name="defaultScopeName" value="All Places" />
<option name="regularExpressions" value="true" /> <option name="localRegularExpressions" value="true" />
<option name="REGULAR_EXPRESSIONS" value="true" /> <option name="LOCAL_REGULAR_EXPRESSIONS" value="true" />
<option name="SEARCH_SCOPE" value="All Places" /> <option name="SEARCH_SCOPE" value="All Places" />
</component> </component>
</application> </application>

@ -81,13 +81,28 @@
</option> </option>
</component> </component>
<component name="Translation.Cache"> <component name="Translation.Cache">
<option name="lastTrimTime" value="1672738769249" /> <option name="lastTrimTime" value="1673868778007" />
</component> </component>
<component name="Translation.Settings"> <component name="Translation.Settings">
<option name="primaryLanguage" value="CHINESE" /> <option name="primaryLanguage" value="CHINESE" />
</component> </component>
<component name="Translation.States"> <component name="Translation.States">
<histories> <histories>
<item value="Decoration Image" />
<item value="denomination" />
<item value="radial" />
<item value="sweep" />
<item value="hide When Dialog Shown" />
<item value="A route that blocks interaction with previous routes. [ModalRoute]s cover the entire [Navigator]. They are not necessarily [opaque], however; for example, a pop-up menu uses a [ModalRoute] but only shows the menu in a small box overlapping the previous route. The `T` type argument is the return value of the route. If there is no return value, consider using `void` as the return value." />
<item value="A modal route that overlays a widget over the current route." />
<item value="Called when the application's dimensions change. For example, when a phone is rotated. This method exposes notifications from [dart:ui.PlatformDispatcher.onMetricsChanged]. {@tool snippet} This [StatefulWidget] implements the parts of the [State] and [WidgetsBindingObserver] protocols necessary to react when the device is rotated (or otherwise changes dimensions)." />
<item value="The widget to show under the pointer when a drag is under way. See [child] and [childWhenDragging] for information about what is shown at the location of the [Draggable] itself when a drag is under way." />
<item value="This entry will include the widget built by this builder in the overlay at the entry's position. To cause this builder to be called again, call [markNeedsBuild] on this overlay entry." />
<item value="Discards any resources used by this [OverlayEntry]. This method must be called after [remove] if the [OverlayEntry] is inserted into an [Overlay]. After this is called, the object is not in a usable state and should be discarded (calls to [addListener] will throw after the object is disposed). However, the listeners registered may not be immediately released until the widget built using this [OverlayEntry] is unmounted from the widget tree. This method should only be called by the object's owner." />
<item value="Remove this entry from the overlay. This should only be called once. This method removes this overlay entry from the overlay immediately. The UI will be updated in the same frame if this method is called before the overlay rebuild in this frame; otherwise, the UI will be updated in the next frame. This means that it is safe to call during builds, but also that if you do call this after the overlay rebuild, the UI will not update until the next frame (i.e. many milliseconds later)." />
<item value="Called when a notification of the appropriate type arrives at this location in the tree. Return true to cancel the notification bubbling. Return false to allow the notification to continue to be dispatched to further ancestors. Notifications vary in terms of when they are dispatched. There are two main possibilities: dispatch between frames, and dispatch during layout. For notifications that dispatch during layout, such as those that inherit from [LayoutChangedNotification], it is too late to call [State.setState] in response to the notification (as layout is currently happening in a descendant, by definition, since notifications bubble up the tree). For widgets that depend on layout, consider a [LayoutBuilder] instead." />
<item value="分析" />
<item value="additional relocation overflows omitted from the output" />
<item value="stars Amount" /> <item value="stars Amount" />
<item value="quarter Turns" /> <item value="quarter Turns" />
<item value="Creates a widget that scales its child along the 2D plane. The `scaleX` argument provides the scalar by which to multiply the `x` axis, and the `scaleY` argument provides the scalar by which to multiply the `y` axis. Either may be omitted, in which case that axis defaults to 1.0. For convenience, to scale the child uniformly, instead of providing `scaleX` and `scaleY`, the `scale` parameter may be used. At least one of `scale`, `scaleX`, and `scaleY` must be non-null. If `scale` is provided, the other two must be null; similarly, if it is not provided, one of the other two must be provided. The [alignment] controls the origin of the scale; by default, this is the center of the box. {@tool snippet} This example shrinks an orange box containing text such that each dimension is half the size it would otherwise be." /> <item value="Creates a widget that scales its child along the 2D plane. The `scaleX` argument provides the scalar by which to multiply the `x` axis, and the `scaleY` argument provides the scalar by which to multiply the `y` axis. Either may be omitted, in which case that axis defaults to 1.0. For convenience, to scale the child uniformly, instead of providing `scaleX` and `scaleY`, the `scale` parameter may be used. At least one of `scale`, `scaleX`, and `scaleY` must be non-null. If `scale` is provided, the other two must be null; similarly, if it is not provided, one of the other two must be provided. The [alignment] controls the origin of the scale; by default, this is the center of the box. {@tool snippet} This example shrinks an orange box containing text such that each dimension is half the size it would otherwise be." />
@ -121,8 +136,8 @@
</histories> </histories>
<option name="languageScores"> <option name="languageScores">
<map> <map>
<entry key="CHINESE" value="22" /> <entry key="CHINESE" value="33" />
<entry key="ENGLISH" value="23" /> <entry key="ENGLISH" value="34" />
<entry key="JAVANESE" value="1" /> <entry key="JAVANESE" value="1" />
</map> </map>
</option> </option>

Loading…
Cancel
Save