AI-Dolphin | 2021.3.1 Patch 1 <debuggerx@debuggerx Merge branch 'master'

Conflicts:
	editor-font.xml
master
debuggerx 3 years ago
commit 9351cdaabf

@ -2,7 +2,12 @@
<component name="AndroidEditors">
<option name="state">
<GlobalState>
<option name="magnifySensitivity" value="0.1" />
<option name="preferXmlEditor" value="true" />
<option name="preferredComposableEditorMode" value="CODE" />
<option name="preferredDrawableEditorMode" value="CODE" />
<option name="preferredEditorMode" value="CODE" />
<option name="preferredKotlinEditorMode" value="CODE" />
<option name="visible" value="false" />
</GlobalState>
</option>

@ -1,22 +1,22 @@
<scheme name="My Vim dark " version="142" parent_scheme="Default">
<option name="FONT_SCALE" value="1.0" />
<option name="FONT_SCALE" value="1.5" />
<option name="LINE_SPACING" value="1.0" />
<font>
<option name="EDITOR_FONT_NAME" value="Fira Code SemiBold" />
<option name="EDITOR_FONT_SIZE" value="14" />
<option name="EDITOR_FONT_SIZE" value="21" />
</font>
<font>
<option name="EDITOR_FONT_NAME" value="Noto Sans CJK SC Regular" />
<option name="EDITOR_FONT_SIZE" value="14" />
<option name="EDITOR_FONT_SIZE" value="22" />
</font>
<option name="EDITOR_LIGATURES" value="true" />
<console-font>
<option name="EDITOR_FONT_NAME" value="DejaVu Sans Mono" />
<option name="EDITOR_FONT_SIZE" value="12" />
<option name="EDITOR_FONT_SIZE" value="18" />
</console-font>
<console-font>
<option name="EDITOR_FONT_NAME" value="Noto Sans CJK SC Regular" />
<option name="EDITOR_FONT_SIZE" value="12" />
<option name="EDITOR_FONT_SIZE" value="18" />
</console-font>
<colors>
<option name="ADDED_LINES_COLOR" value="295622" />
@ -512,7 +512,6 @@
<value>
<option name="FOREGROUND" value="0" />
<option name="BACKGROUND" value="79787b" />
<option name="FONT_TYPE" value="1" />
<option name="ERROR_STRIPE_COLOR" value="5555" />
</value>
</option>

@ -0,0 +1,13 @@
<application>
<component name="DefaultFont">
<option name="VERSION" value="1" />
<option name="FONT_SIZE" value="21" />
<option name="FONT_SIZE_2D" value="21.0" />
<option name="FONT_FAMILY" value="Fira Code" />
<option name="FONT_REGULAR_SUB_FAMILY" value="Regular" />
<option name="FONT_BOLD_SUB_FAMILY" value="Bold" />
<option name="FONT_SCALE" value="1.5" />
<option name="LINE_SPACING" value="1.0" />
<option name="USE_LIGATURES" value="true" />
</component>
</application>

@ -6,6 +6,17 @@
<option name="newTranslationDialogY" value="447" />
<option name="pinTranslationDialog" value="true" />
<histories>
<item value="Creates a random number generator. The optional parameter [seed] is used to initialize the internal state of the generator. The implementation of the random stream can change between releases of the library." />
<item value="Creates a cryptographically secure random number generator. If the program cannot provide a cryptographically secure source of random numbers, it throws an [UnsupportedError]." />
<item value="Makes this Rx looks like a function so you can update a new value using `rx(someOtherValue)`. Practical to assign the Rx directly to some Widget that has a signature ::onChange( value ) Example: ``` final myText = 'GetX rocks!'.obs; in your Constructor, just to check it works :P ever( myText, print ) ; in your build(BuildContext) { TextField( onChanged: myText, ), ```" />
<item value="'Widgets that mix AutomaticKeepAliveClientMixin into their State must ' 'call super.build() but must ignore the return value of the superclass.'," />
<item value="Called when this object is removed from the tree permanently. The framework calls this method when this [State] object will never build again. After the framework calls [dispose], the [State] object is considered unmounted and the [mounted] property is false. It is an error to call [setState] at this point. This stage of the lifecycle is terminal: there is no way to remount a [State] object that has been disposed. Subclasses should override this method to release any resources retained by this object (e.g., stop any active animations). {@macro flutter.widgets.State.initState} Implementations of this method should end with a call to the inherited method, as in `super.dispose()`. See also: [deactivate], which is called prior to [dispose]." />
<item value="audit Toxic" />
<item value="BuiltList can not be serialization." />
<item value="序列化" />
<item value="create Item" />
<item value="transaction" />
<item value="group Chat Ref" />
<item value="check Name Exist" />
<item value="update Soul Avatar" />
<item value="已修复" />
@ -45,34 +56,29 @@
<item value="decimal" />
<item value="The number is decimal, allowing a decimal point to provide fractional. This flag is only used for the [number] input type, otherwise `null`. Use `const TextInputType.numberWithOptions(decimal: true)` to set this." />
<item value="The number is signed, allowing a positive or negative sign at the start. This flag is only used for the [number] input type, otherwise `null`. Use `const TextInputType.numberWithOptions(signed: true)` to set this." />
<item value="signed" />
<item value="animating" />
<item value="Reduces a collection to a single value by iteratively combining elements of the collection using the provided function. The iterable must have at least one element. If it has only one element, that element is returned. Otherwise this method starts with the first element from the iterator, and then combines it with the remaining elements in iteration order, as if by: ``` E value = iterable.first; iterable.skip(1).forEach((element) { value = combine(value, element); }); return value; ``` Example of calculating the sum of an iterable: ```dart final numbers = &lt;double&gt;[10, 2, 5, 0.5]; final result = numbers.reduce((value, element) =&gt; value + element); print(result); 17.5" />
<item value="cost" />
<item value="stress" />
<item value="sequence" />
<item value="次序" />
<item value="Selected Order" />
<item value="vibes" />
<item value="shrink" />
<item value="Register a closure to be called when the object changes. If the given closure is already registered, an additional instance is added, and must be removed the same number of times it is added before it will stop being called. This method must not be called after [dispose] has been called. {@template flutter.foundation.ChangeNotifier.addListener} If a listener is added twice, and is removed once during an iteration (e.g. in response to a notification), it will still be called again. If, on the other hand, it is removed as many times as it was registered, then it will no longer be called. This odd behavior is the result of the [ChangeNotifier] not being able to determine which listener is being removed, since they are identical, therefore it will conservatively still call all the listeners when it knows that any are still registered. This surprising behavior can be unexpectedly observed when registering a listener on two separate objects which are both forwarding all registrations to a common upstream object. {@endtemplate} See also: [removeListener], which removes a previously registered closure from the list of closures that are notified when the object changes." />
</histories>
<option name="languageScores">
<map>
<entry key="CHINESE" value="431" />
<entry key="ENGLISH" value="432" />
<entry key="CHINESE" value="443" />
<entry key="ENGLISH" value="444" />
<entry key="GERMAN" value="1" />
<entry key="FRENCH" value="1" />
</map>
</option>
</component>
<component name="Cache">
<option name="lastTrimTime" value="1666575973401" />
<option name="lastTrimTime" value="1667183462284" />
</component>
<component name="Settings">
<option name="phoneticFontFamily" value="DejaVu Sans Mono" />
<option name="primaryFontFamily" value="Noto Sans CJK SC Regular" />
<option name="showActionsInContextMenuOnlyWithSelection" value="false" />
<option name="translateDocumentation" value="true" />
<option name="translator" value="YOUDAO" />
<option name="youdaoTranslateSettings">
<youdao-translate>
<option name="appId" value="6ff353d64c7c642b" />
</youdao-translate>
</option>
</component>
</application>
Loading…
Cancel
Save