diff
stringlengths
12
9.3k
message
stringlengths
8
199
reasoning_trace
null
repo
stringlengths
6
68
license
stringclasses
3 values
language
stringclasses
16 values
@@ -31,7 +31,7 @@ fn test_with<R>(execute: impl Fn(VaultId) -> R) { test_with(Token(KSM), Token(IBTC)); test_with(Token(DOT), Token(IBTC)); test_with(ForeignAsset(1), Token(IBTC)); - // test_with(PToken(1), Token(IBTC)); + test_with(PToken(1), Token(IBTC)); } fn test_with_nomination_enabled<R>(execute: impl Fn(VaultId)...
feat(loans): nomination integration tests with ptokens collateral
null
interlay/interbtc
Apache License 2.0
Rust
@@ -197,6 +197,11 @@ open class Player: UIViewController { return baseObject.on(event.rawValue, callback: callback) } + @discardableResult + public func on(_ eventName: String, callback: @escaping EventCallback) -> String { + return baseObject.on(eventName, callback: callback) + } + open func trigger(_ eventName: Strin...
feat: exposing on method on Player
null
clappr/clappr-ios
BSD 3-Clause New or Revised License
Swift
@@ -64,7 +64,7 @@ class Runner { } _findRelations(pipeline, nodeName) { - const graph = new NodesMap({ nodes: pipeline.nodes }); + const graph = new NodesMap({ nodes: pipeline.nodes }, { validateNodesRelations: false }); const successorsMap = this._getSuccessors(graph, nodeName); const successors = this._flatten(succes...
feat: fix run node twice
null
kube-hpc/hkube
MIT License
JavaScript
@@ -12,17 +12,19 @@ extension SolanaSDK { public var unit: String } - public init(transaction: UInt64, accountBalances: UInt64, others: [OtherFee]? = nil) { + public init(transaction: UInt64, accountBalances: UInt64, deposit: UInt64 = 0, others: [OtherFee]? = nil) { self.transaction = transaction self.accountBalances =...
feat: deposit fee
null
p2p-org/solana-swift
MIT License
Swift
@@ -3,6 +3,7 @@ from django.core.management.base import BaseCommand from django.db.models import Q from dimagi.utils.chunked import chunked +from corehq.util.log import with_progress_bar from corehq.apps.users.permissions import EXPORT_PERMISSIONS from corehq.apps.users.models import RolePermission, HqPermissions from ...
feat: adds progress bar
null
dimagi/commcare-hq
BSD 3-Clause New or Revised License
Python
@@ -3,7 +3,7 @@ defmodule Mix.Tasks.Nerves.Artifact.Details do @moduledoc """ Prints Nerves artifact details. - This displays various artifact names/information. + This displays various details. ## Examples @@ -16,6 +16,8 @@ defmodule Mix.Tasks.Nerves.Artifact.Details do import Mix.Nerves.IO + alias Nerves.Artifact + r...
feat: Added additional information to `nerves.artifact.details` task
null
nerves-project/nerves
Apache License 2.0
Elixir
@@ -20,6 +20,7 @@ export type Action = | ModMessageAction | DeleteMessageAction | LoadMessageArchiveAction + | LoadMessageAction | WhisperAction | ShoutAction | EmoteAction @@ -126,6 +127,7 @@ export enum ActionType { BanToggle = 'BAN_TOGGLE', ModToggle = 'MOD_TOGGLE', LoadMessageArchive = 'LOAD_MESSAGE_ARCHIVE', + Loa...
feat: adds LoadMessageAction
null
lazerwalker/azure-mud
MIT License
TypeScript
@@ -7,7 +7,9 @@ import { buildTextField, } from '@island.is/application/core' import { DefaultEvents, Form, FormModes } from '@island.is/application/types' +import { ChangeOperatorOfVehicle } from '../../lib/dataSchema' import { conclusion, payment } from '../../lib/messages' +import { getChargeItemCodes } from '../../...
feat(transport authority change operator): Dont allow user to open payment page if nothing changed
null
island-is/island.is
MIT License
TypeScript
@@ -156,7 +156,26 @@ module.exports = (common) => { }) }) - it('a Readable Stream', (done) => { + it('adds from readable stream', (done) => { + const expectedCid = 'QmVv4Wz46JaZJeH5PMV4LGbRiiMKEmszPYY3g6fjGnVXBS' + + const rs = new Readable() + rs.push(Buffer.from('some data')) + rs.push(null) + + ipfs.files.add(rs, (e...
feat: adds pull stream tests for files.add
null
ipfs-inactive/interface-js-ipfs-core
MIT License
JavaScript
+package me.melijn.melijnbot.commands.developer + +import me.melijn.melijnbot.internals.command.AbstractCommand +import me.melijn.melijnbot.internals.command.CommandCategory +import me.melijn.melijnbot.internals.command.CommandContext +import me.melijn.melijnbot.internals.utils.message.sendRsp + +class ClearCacheComman...
feat: ClearCacheCommand.kt
null
toxicmushroom/melijn
MIT License
Kotlin
@@ -11,11 +11,12 @@ export default { // General "tabs.general.borderBottomColor": { type: COLOR, - value: { ref: "colorScheme.baseColor" } + value: { ref: "colorScheme.baseColor" }, + transform: { alpha: 0.1 } }, "tabs.general.borderBottomWidth": { type: BORDER_WIDTH, - value: { ref: "basics.borderWidths.medium" } + va...
feat: update Tab theme data
null
autodesk/hig
Apache License 2.0
JavaScript
@@ -90,7 +90,7 @@ class Build extends Command if ($this->option('hot')) { $this->startWatcher(resource_path('assets/js/**/*.vue'), 'php artisan twill:build --copyOnly'); - $this->runProcessInTwill(['npm', 'run', 'serve'], true); + $this->runProcessInTwill(['npm', 'run', 'serve', '--', "--port={$this->getDevPort()}"], t...
feat: Read vue-cli dev port from `dev_mode_url` config
null
area17/twill
Apache License 2.0
PHP
@@ -516,6 +516,10 @@ namespace acl const error_result result = merge_mappings[mapping_index].is_valid(); if (result.any()) return result; + + const acl_impl::database_header& header = acl_impl::get_database_header(*merge_mappings[mapping_index].database); + if (settings.max_chunk_size < header.max_chunk_size) + return ...
feat(compression): add sanity check
null
nfrechette/acl
MIT License
C
+// +// Generated file. Do not edit. +// + +import FlutterMacOS +import Foundation + +import connectivity_macos +import kraken +import kraken_audioplayers +import kraken_geolocation +import kraken_video_player +import path_provider_macos +import shared_preferences_macos + +func RegisterGeneratedPlugins(registry: Flutte...
feat: add macos plugin registrant files
null
openkraken/kraken
Apache License 2.0
Swift
@@ -19,14 +19,27 @@ irma scheme sign ${dir}/irma_configuration/test-requestors/sk.pem ${dir}/irma_co sleep 1 # restore changes to studentCard and stempas credtype, then resign -git checkout -- ${dir}/irma_configuration_updated/irma-demo/RU/Issues/studentCard/description.xml -git checkout -- ${dir}/irma_configuration_up...
feat: makeschemes.sh just restores relative diffs instead of entire file
null
privacybydesign/irmago
Apache License 2.0
Shell
@@ -30,6 +30,12 @@ export const Notebooksbilliger: Store = { series: 'test:series', url: 'https://www.notebooksbilliger.de/gainward+geforce+rtx+2070+super+phoenix+v1+grafikkarte+656238' }, + { + brand: 'nvidia', + model: 'founders edition', + series: '3080', + url: 'https://www.notebooksbilliger.de/nvidia+geforce+rtx+3...
feat(store): add founders editions to notebooksbilliger.de
null
jef/streetmerchant
MIT License
TypeScript
@@ -35,7 +35,7 @@ extension SolanaSDK.PublicKey { } // MARK: - Helpers - static func findProgramAddress( + public static func findProgramAddress( seeds: [Data], programId: Self ) throws -> (Self, UInt8) {
feat: public func findProgramAddress
null
p2p-org/solana-swift
MIT License
Swift
@@ -100,7 +100,7 @@ class Media extends Entries filesystem()->file($uploadFolder . '/' . $result->name)->move($mediaFile); if (getimagesize($mediaFile)) { - $this->processImage($mediaFile, $settings); + image($mediaFile, $settings['process']['image']); } } catch (\Exception $e) { $result->clear(); @@ -112,136 +112,4 @@...
feat(media): use `image` helper function
null
flextype/flextype
MIT License
PHP
+package com.ibm.watson.developer_cloud.http; + +import okhttp3.Headers; + +/** + * Class holding the converted service call result along with some HTTP response data. + * + * @param <T> the generic type + */ +public class Response<T> { + + private T result; + private Headers headers; + + public Response (T result, okh...
feat(core): Add new Response class for returning HTTP info as well as the response model
null
watson-developer-cloud/java-sdk
Apache License 2.0
Java
@@ -480,8 +480,13 @@ class Engine: if is_str: if fields == "*": return fields - if " as " in fields: - fields, reference = fields.split(" as ") + if "`" in fields: + fields = PseudoColumn(fields) + if " as " in str(fields): + fields, reference = str(fields).split(" as ") + if "`" in str(fields): + fields = PseudoColumn...
feat: Added support for aliasing in PseudoColumns
null
frappe/frappe
MIT License
Python
@@ -227,7 +227,6 @@ class _ProductPageState extends State<ProductPage> with TraceableClientMixin { ), ), ), - _buildKnowledgePanelCards(), _buildActionBar(appLocalizations), if (productListNames.isNotEmpty) _buildListWidget( @@ -235,6 +234,7 @@ class _ProductPageState extends State<ProductPage> with TraceableClientMixi...
feat: - product page - moved higher the action bar
null
openfoodfacts/smooth-app
Apache License 2.0
Dart
@@ -93,22 +93,30 @@ export class ServerHtmlDirective implements AfterContentInit, AfterViewInit, OnD const href = el.getAttribute('href'); const cb = el.getAttribute('callback'); - // apply default link handling for empty href, external links & target _blank - if (!cb && (!href || href.startsWith('http') || el.getAttri...
feat: extend ishServerHtml directive to apply default handling to 'javascript:' links and allow a callback function in combination with further link handling
null
intershop/intershop-pwa
MIT License
TypeScript
@@ -21,6 +21,7 @@ import static org.camunda.bpm.engine.impl.util.EnsureUtil.ensureNotNull; import java.io.Serializable; import org.camunda.bpm.engine.BadUserRequestException; +import org.camunda.bpm.engine.exception.NotFoundException; import org.camunda.bpm.engine.impl.cfg.CommandChecker; import org.camunda.bpm.engine....
feat(engine-rest): add method to delete single historic variable instance
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -32,6 +32,7 @@ import ( var ( _ SingleColumn = (*NumericStaticMap)(nil) + _ Hashing = (*NumericStaticMap)(nil) ) // NumericLookupTable stores the mapping of keys. @@ -88,19 +89,13 @@ func (vind *NumericStaticMap) NeedsVCursor() bool { // Verify returns true if ids and ksids match. func (vind *NumericStaticMap) Verif...
feat: numeric_static_map vindex implemented hashing interface
null
vitessio/vitess
Apache License 2.0
Go
@@ -16,6 +16,13 @@ namespace CodeIgniter\Database\OCI8; */ class Forge extends \CodeIgniter\Database\Forge { + /** + * DROP INDEX statement + * + * @var string + */ + protected $dropIndexStr = 'DROP INDEX %s'; + /** * CREATE DATABASE statement *
feat: add dropIndexStr for OCI8
null
codeigniter4/codeigniter4
MIT License
PHP
from avalon import api +import hiero +from pype.nukestudio import lib +reload(lib) class LoadSequencesToTimelineAssetOrigin(api.Loader): @@ -17,7 +20,18 @@ class LoadSequencesToTimelineAssetOrigin(api.Loader): color = "orange" def load(self, context, name, namespace, data): - pass + + data.update({ + # "projectBinPath"...
feat(nks): wip of loader plugin
null
pypeclub/openpype
MIT License
Python
import { Octokit } from "https://cdn.skypack.dev/octokit?dts"; import type { RestEndpointMethodTypes } from "https://cdn.skypack.dev/@octokit/plugin-rest-endpoint-methods?dts"; import type { EventPayloadMap } from "https://cdn.skypack.dev/@octokit/webhooks-types?dts"; +import "https://raw.githubusercontent.com/GoogleCh...
feat: Add Lighthouse types
null
guardian/dotcom-rendering
Apache License 2.0
TypeScript
@@ -554,6 +554,7 @@ export class NovoDataTableCellHeader<T> implements IDataTableSortFilter, OnInit, this.activeDateFilter = undefined; this.filterData(undefined); this.clearOptionFilter(); + this.dropdown.closePanel(); } private getNextSortDirection(direction: string): string {
feat(data-table): close filter dialog on filter clear
null
bullhorn/novo-elements
MIT License
TypeScript
@@ -452,6 +452,8 @@ where IOXD_METRICS .lp_lines_errors .add(lines.len() as u64, &metric_kv); + let num_lines = lines.len(); + debug!(?e, ?db_name, ?num_lines, "error writing lines"); match e { server::Error::DatabaseNotFound { .. } => ApplicationError::DatabaseNotFound {
feat(iox): Log write points errors at debug level
null
influxdata/influxdb_iox
Apache License 2.0
Rust
@@ -10,6 +10,8 @@ class UriParser { String _url = ''; int _contextId; + static RegExp exp = RegExp("^([a-z][a-z\d\+\-\.]*:)?\/\/"); + UriParser(contextId) : _contextId = contextId; Uri parse(Uri uri) { @@ -17,15 +19,15 @@ class UriParser { KrakenController controller = KrakenController.getControllerOfJSContextId(_conte...
feat: modify UriParser
null
openkraken/kraken
Apache License 2.0
Dart
<small id="change-image-tip" class="text-center" style="display:block">CLICK IMAGE TO CHOOSE A LOCAL IMAGE</small> <input id="image-file" type="file" style="display:none" accept=".jpg,.png,.jpeg,.gif" /> <label for="image-file" style="display: block; cursor: pointer;" class="text-center"> - <img class="group-image" sty...
feat: group image
null
zsgsdesign/noj
MIT License
PHP
@@ -16,7 +16,7 @@ import { import { Picker } from '@react-native-picker/picker' -import Video, { TextTrackType } from 'react-native-video'; +import Video, { VideoDecoderProperties, TextTrackType } from 'react-native-video'; class VideoPlayer extends Component { @@ -77,6 +77,28 @@ class VideoPlayer extends Component { v...
feat(android): add sample to test decoder capabilities
null
react-native-video/react-native-video
MIT License
TypeScript
@@ -55,7 +55,7 @@ func PutBlock( } // get row and col roots to be provided // this also triggers adding data to DAG - prov := newProvider(ctx, croute, logger.With("block", block.Hash().String())) + prov := newProvider(ctx, croute, logger.With("height", block.Height)) for _, root := range eds.RowRoots() { prov.Provide(p...
feat(p2p/ipld): log block height instead of hash
null
lazyledger/lazyledger-core
Apache License 2.0
Go
@@ -6,7 +6,6 @@ import ( "fmt" "github.com/GoAdminGroup/go-admin/plugins/admin/modules/tools" tmpl "html/template" - "net/http" "net/url" "regexp" "strconv" @@ -16,7 +15,6 @@ import ( "github.com/GoAdminGroup/go-admin/context" "github.com/GoAdminGroup/go-admin/modules/collection" "github.com/GoAdminGroup/go-admin/modul...
feat(automation): improve online config edit / generate tool
null
goadmingroup/go-admin
Apache License 2.0
Go
@@ -23,7 +23,6 @@ public enum Event: String, CaseIterable { case requestPosterUpdate case willUpdatePoster case didUpdatePoster - case seek case willSeek case didSeek case didChangeDvrStatus @@ -34,4 +33,6 @@ public enum Event: String, CaseIterable { case didShowMediaControl case willHideMediaControl case didHideMediaC...
feat: deprecate seek event
null
clappr/clappr-ios
BSD 3-Clause New or Revised License
Swift
@@ -127,11 +127,7 @@ func parseMsgParams(attributes []sdk.Attribute) (sessionID string, from string, func prepareTrafficIn(principalAddr string, from string, sessionID string, payload *tofnd.TrafficOut, logger log.Logger) (*tofnd.MessageIn, error) { if principalAddr == from { - return nil, nil - } - - if !payload.IsBro...
feat(tofnd): broadcast all p2p messages to all parties
null
axelarnetwork/axelar-core
Apache License 2.0
Go
@@ -120,6 +120,9 @@ public final class VersionDocument implements Serializable { return matchAny(Fields.AUTHOR, authors); } + public static Expression createdAt(long from, long to) { + return matchRange(Fields.CREATED_AT, from, to); + } } public static Builder builder() {
feat: add createdAt match range expressio
null
b2ihealthcare/snow-owl
Apache License 2.0
Java
-from commitizen import factory, out, changelog +import re +from collections import OrderedDict + +from commitizen import factory, out, git +from commitizen.config import BaseConfig class Changelog: """Generate a changelog based on the commit history.""" - def __init__(self, config: dict, *args): - self.config: dict = ...
feat(commands/changelog): generate changelog_tree from all past commits
null
commitizen-tools/commitizen
MIT License
Python
@@ -57,3 +57,16 @@ export type Last<T extends unknown[]> = { 0: Head<T>; 1: Last<Tail<T>>; }[Tail<T> extends [] ? 0 : 1]; + +/** + * Internal version of Init accepting 1 extra argument for the accumulated value. + */ +type InitReducer<T extends unknown[], C extends unknown[] = []> = { + 0: Reverse<C>; + 1: InitReducer<...
feat(api): added the Init type
null
thi-ng/umbrella
Apache License 2.0
TypeScript
@@ -245,7 +245,7 @@ if (! function_exists('filter')) { if (! function_exists('image')) { /** - * Create image. + * Create a new image instance. * * @param string $file Image file. * @param array $options Options array. @@ -386,3 +386,35 @@ if (! function_exists('image')) { $image->destroy(); } } + +if (! function_exist...
feat(media): add `imageCanvas` and `imageCache` helpers functions
null
flextype/flextype
MIT License
PHP
@@ -19,9 +19,16 @@ String err = (AnsiPen()..red())('[TEST FAILED]'); final Directory specsDirectory = Directory(Platform.environment['KRAKEN_SPEC_DIR'] + '/integration/.specs'); final Directory snapshotsDirectory = Directory(Platform.environment['KRAKEN_SPEC_DIR'] + '/integration/snapshots'); -Kraken kraken; +const int...
feat: Under multiple kraken scenarios
null
openkraken/kraken
Apache License 2.0
Dart
@@ -52,7 +52,11 @@ export const getActivityTypes = createSelector( isValid = false; } // Filter activity type based on feature requirement - if (activityType.feature && !features.getIn([`items`, activityType.feature.key])) { + if (activityType.feature && !activityType.feature.hide && !features.getIn([`items`, activityT...
feat(widget-space): add support for feature hide activities
null
webex/react-widgets
MIT License
JavaScript
+import defu from 'defu' +import LocalScheme from './local' + +export default class CookieScheme extends LocalScheme { + constructor (auth, options) { + super(auth, defu(options, DEFAULTS)) + } + + check () { + const cookies = this.$auth.$storage.getCookies() + return Boolean(cookies[this.options.cookie.name]) + } +} +...
feat: cookie-scheme
null
nuxt-community/auth-module
MIT License
JavaScript
@@ -40,6 +40,36 @@ ui::KeyboardCode KeyboardCodeFromKeyIdentifier(const std::string& s, return ui::VKEY_OEM_PLUS; } else if (str == "tab") { return ui::VKEY_TAB; + } else if (str == "num0") { + return ui::VKEY_NUMPAD0; + } else if (str == "num1") { + return ui::VKEY_NUMPAD1; + } else if (str == "num2") { + return ui::V...
feat: add numpad accelerator strings
null
electron/electron
MIT License
C++
@@ -296,9 +296,9 @@ export const stackAxis = <S = never, D extends SerieDatum = SerieDatum>( const stackX = <S = never, D extends SerieDatum = SerieDatum>( xy: StackedXY, series: NestedSerie<S, D>[] -) => stackAxis('x', xy, series) +) => stackAxis<S, D>('x', xy, series) const stackY = <S = never, D extends SerieDatum =...
feat(scales): forward generic types from stackX/stackY to stackAxis
null
plouc/nivo
MIT License
TypeScript
@@ -82,7 +82,7 @@ impl<V: IdentityVault, S: AuthenticatedStorage> Server<V, S> { Some(Method::Get) => match req.path_segments::<2>().as_slice() { ["verify"] => { let crd: Credential = dec.decode()?; - match self.verify(crd.attributes(), crd.signature()).await { + match verify(&self.identity, &self.storage, &crd).await ...
feat(rust): change `signer::Server::verify` to function
null
ockam-network/ockam
Apache License 2.0
Rust
@@ -198,7 +198,7 @@ pub fn register(registry: &mut FunctionRegistry) { T::Scalar: HashtableKeyable, { // must be scalar in rhs, if rhs contains column, it'll be rewritted to `a = b1 or a = b2 or a = b3` in type_checker - let array = rhs.as_scalar().ok_or(IN_ERROR_MSG.to_string())?; + let array = rhs.as_scalar().ok_or_e...
feat: fix lint
null
datafuselabs/databend
Apache License 2.0
Rust
@@ -28,6 +28,12 @@ function getChangelog( 'CHANGELOG', 'ChangeLog', 'changelog', + 'CHANGES.md', + 'changes.md', + 'Changes.md', + 'CHANGES', + 'changes', + 'Changes', 'HISTORY.md', 'history.md', 'HISTORY',
feat(changelog): add changes variations
null
algolia/npm-search
MIT License
JavaScript
@@ -975,6 +975,9 @@ impl MainWin { Some(&edit_view.top_bar.event_box), position, ); + main_win + .notebook + .set_tab_reorderable(&edit_view.root_widget, true); if let Some(w) = main_win.notebook.get_nth_page(Some(page_num)) { main_win .w_to_ev
feat(tau): make tabs reorderable via mouse drag
null
cogitri/tau
MIT License
Rust
@@ -171,9 +171,16 @@ public virtual void OnValidate() if (playerPrefab != null && playerPrefab.GetComponent<NetworkIdentity>() == null) { - Debug.LogError("NetworkManager - playerPrefab must have a NetworkIdentity."); + Debug.LogError("NetworkManager - Player Prefab must have a NetworkIdentity."); playerPrefab = null; ...
feat: Prevent Player Prefab from being added to spawnPrefabs
null
vis2k/mirror
MIT License
C#
u64_snowflake_t g_app_id; -void print_usage(void) +void +print_usage(void) { log_info( "\nUsage :\n" @@ -21,7 +22,8 @@ void print_usage(void) "\tDelete Command : DELETE <cmd_id> <?guild_id>\n"); } -void on_ready(struct discord *client) +void +on_ready(struct discord *client) { const struct discord_user *bot = discord_g...
feat(bot-slash-commands2.c): add DELETE command
null
cee-studio/orca
MIT License
C
@@ -10,11 +10,12 @@ class App extends React.Component { state = { selectedKey: 'admin', - apis: [] + apis: [], + serverUrl: process.env.REACT_APP_SO_BASE_URL || process.env.PUBLIC_URL } componentDidMount() { - fetch(`${process.env.REACT_APP_SO_BASE_URL}/admin/apis`) + fetch(`${this.state.serverUrl}/admin/apis`) .then(r...
feat(docs): use either env configuration or public URL for serverUrl
null
b2ihealthcare/snow-owl
Apache License 2.0
JavaScript
@@ -95,26 +95,46 @@ class Plugins $plugins = []; $plugin_settings = []; $plugin_manifest = []; + $default_plugin_settings = []; + $site_plugin_settings = []; + $default_plugin_manifest = []; + $site_plugin_manifest = []; // Go through... foreach ($plugins_list as $plugin) { - if (Filesystem::has($_plugin_settings = PAT...
feat(core): add ability to override plugins default manifest and settings
null
flextype/flextype
MIT License
PHP
use crate::{database::DatabaseGuard, pdu::PduBuilder, utils, ConduitResult, Error, Ruma}; use ruma::{ - api::client::{ + api::{ + client::{ error::ErrorKind, r0::profile::{ get_avatar_url, get_display_name, get_profile, set_avatar_url, set_display_name, }, }, + federation::{self, query::get_profile_information::v1::Pro...
feat: call /query/profile over federation when local user asks
null
timokoesters/conduit
Apache License 2.0
Rust
@@ -217,11 +217,12 @@ class PlaylistCommand : AbstractCommand("command.playlist") { val playlistNames = playlists.keys.sorted() val title = context.getTranslation("$root.playlist.title") - val sb = StringBuilder("```INI\n# [name] - tracks") + val sb = StringBuilder("```INI\n# index - [name] - tracks") - for (playlistNa...
feat: allow loading playlists by index
null
toxicmushroom/melijn
MIT License
Kotlin
+import Avatar from './components/Avatar/'; +import Badge from './components/Badge/'; +import Breadcrumb from './components/Breadcrumb/'; +import Breadcrumbs from './components/Breadcrumbs/'; +import Button from './components/Button/'; +import ButtonGroup from './components/ButtonGroup/'; +import ButtonIcon from './com...
feat: added index export file
null
nexxtway/react-rainbow
MIT License
JavaScript
@@ -35,6 +35,7 @@ import { const MoleculePhotoUploader = ({ acceptedFileTypes = DEFAULT_FILE_TYPES_ACCEPTED, acceptedFileMaxSize = DEFAULT_MAX_FILE_SIZE_ACCEPTED, + allowUploadDuplicatedPhotos = false, addMorePhotosIcon, addPhotoTextButton, addPhotoTextSkeleton, @@ -120,10 +121,28 @@ const MoleculePhotoUploader = ({ re...
feat(molecule/photoUploader): add prop to allow upload repeated photos (false by default)
null
sui-components/sui-components
MIT License
JavaScript
@@ -5,6 +5,7 @@ import com.conveyal.r5.analyst.PathScorer; import com.conveyal.r5.analyst.TravelTimeReducer; import com.conveyal.r5.analyst.cluster.AnalysisTask; import com.conveyal.r5.analyst.cluster.PathWriter; +import com.conveyal.r5.api.util.LegMode; import com.conveyal.r5.streets.LinkedPointSet; import gnu.trove.m...
feat(egress): Use access time limit on egress leg
null
conveyal/r5
MIT License
Java
@@ -17,12 +17,6 @@ open class MediaControl: UICorePlugin, UIGestureRecognizerDelegate { return core?.activePlayback } -<<<<<<< HEAD -======= - public var plugins: [MediaControlPlugin] = [] - var defaultPlugins: [MediaControlPlugin.Type] = [PlayButton.self, TimeIndicator.self, FullscreenButton.self, Seekbar.self] - ->>>...
feat: Add seekbar to builtin plugins
null
clappr/clappr-ios
BSD 3-Clause New or Revised License
Swift
@@ -251,6 +251,35 @@ private static void addVideoToContent(ContentPacketExtension content, h264, "x-google-start-bitrate", String.valueOf(startBitrate)); } + // a=rtpmap:101 VP9/90000 + int vp9pt = 101; + PayloadTypePacketExtension vp9 + = addPayloadTypeExtension(rtpDesc, vp9pt, Constants.VP9, 90000); + + // a=rtcp-fb:...
feat: Adds VP9
null
jitsi/jicofo
Apache License 2.0
Java
@@ -114,7 +114,7 @@ pub fn referential_actions(schema: String) -> String { /// type GetConfigResponse = GetConfigErrorResponse | GetConfigSuccessResponse /// /// ``` -pub fn get_config(get_config_params: String) -> String { +pub fn get_config(get_config_params: String) -> Result<String, String> { get_config::get_config...
feat(prisma-fmt): 'get_config' now returns a 'Result' value. Contributes to
null
prisma/prisma-engines
Apache License 2.0
Rust
@@ -4,41 +4,44 @@ import ( "context" "encoding/json" "fmt" - - "github.com/influxdata/platform" ) +// ID is an ID +type ID string + // CellService represents a service for managing cell data. type CellService interface { - // FindCellByplatform.ID returns a single cell by platform.ID. - FindCellByID(ctx context.Context...
feat(v2): fix json unmarshalling of cell updates
null
influxdata/influxdb
MIT License
Go
@@ -1283,6 +1283,13 @@ mod array { #[pyimpl(with(IterNext), flags(HAS_DICT))] impl PyArrayIter { + #[pymethod(magic)] + fn setstate(&self, state: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { + self.internal + .lock() + .set_state(state, |obj, pos| pos.min(obj.len()), vm) + } + #[pymethod(magic)] fn reduce(&self,...
feat: impl `PyArrayIter.setstate`
null
rustpython/rustpython
MIT License
Rust
@@ -24,6 +24,7 @@ namespace Uno.Cupertino this.MergedDictionaries.Add(new ResourceDictionary { Source = new Uri("ms-appx:///Uno.Cupertino/Styles/Controls/Button.xaml") }); this.MergedDictionaries.Add(new ResourceDictionary { Source = new Uri("ms-appx:///Uno.Cupertino/Styles/Controls/TextBlock.xaml") }); this.MergedDict...
feat: Create ToggleSwitch Cupertino style
null
unoplatform/uno.themes
Apache License 2.0
C#
* @param generateDepthBuffer True to generate a depth buffer * @param generateStencilBuffer True to generate a stencil buffer * @param isMulti True if multiple textures need to be created (Draw Buffers) + * @param format The internal format of the buffer in the RTT (RED, RG, RGB, RGBA, ALPHA...) */ - constructor(name: ...
feat: Add format parameter to RenderTargetTexture constructor
null
babylonjs/babylon.js
Apache License 2.0
TypeScript
@@ -107,6 +107,7 @@ pub fn grpc_default_port(app_type: ApplicationType, network: Network) -> u16 { Network::Dibbler => 18122, Network::Esmeralda => 18142, Network::Igor => 18152, + Network::LocalNet => 18162, _ => unreachable!("Network {} not supported", network), }, ApplicationType::ConsoleWallet => match network { @@...
feat: add default grpc for localnet
null
tari-project/tari
BSD 3-Clause New or Revised License
Rust
@@ -29,7 +29,7 @@ class PDFView extends Component { componentDidUpdate(prevProps) { // Use window height changes to toggle the keyboard. To maintain keyboard state // on all platforms we also use focus/blur events. So we need to make sure here - // that we avoid toggling the keyboard twice. + // that we avoid redundant...
feat: pdf password form - updated comment related to redundant keyboard toggling
null
expensify/expensify.cash
MIT License
JavaScript
@@ -358,6 +358,58 @@ impl RLE { dst } + // + // + // ---- Methods for getting encoded values directly, typically to be used + // as part of group keys. + // + // + + /// Return the raw encoded values for the provided logical row ids. + /// Encoded values for NULL values are included. + /// + pub fn encoded_values(&self...
feat: methods for encoded values
null
influxdata/influxdb_iox
Apache License 2.0
Rust
* Author: Kraken Team. */ import 'package:flutter/rendering.dart'; +import 'package:flutter/gestures.dart'; import 'package:kraken/launcher.dart'; import 'dart:ui'; import 'package:meta/meta.dart'; +import 'package:kraken/rendering.dart'; +import 'package:kraken/gesture.dart'; -class RenderViewportBox extends RenderPro...
feat: view port add gesture
null
openkraken/kraken
Apache License 2.0
Dart
@@ -62,4 +62,14 @@ func TestRemoveTypeExtensions(t *testing.T) { extendScalarTypeDefinition, removeMergedTypeExtensions) }) + t.Run("remove multiple scalar type extensions", func(t *testing.T) { + runMany(testDefinition, ` + union Mammal + extend union Mammal @deprecated(reason: "some reason") @skip(if: false) = Cat | ...
feat: add test for union type extension removal
null
jensneuse/graphql-go-tools
MIT License
Go
@@ -1278,8 +1278,11 @@ def _get_tx(owner: Optional[AccountsType], args: Tuple) -> Tuple: if key in tx: tx[target] = tx[key] + # enable the magic of ganache's `evm_unlockUnknownAccount` if isinstance(tx["from"], str): tx["from"] = accounts.at(tx["from"], force=True) + elif isinstance(tx["from"], Contract): + tx["from"] ...
feat: allow sending tx's from a contract
null
eth-brownie/brownie
MIT License
Python
@@ -41,8 +41,8 @@ pub static METACLI_COMMIT_SEMVER: Lazy<Version> = Lazy::new(|| { /// Oldest compatible nightly metasrv version pub static MIN_METASRV_SEMVER: Version = Version { major: 0, - minor: 7, - patch: 63, + minor: 8, + patch: 30, pre: Prerelease::EMPTY, build: BuildMetadata::EMPTY, };
feat(cluster): upgrade MIN_METASRV_SEMVER
null
datafuselabs/databend
Apache License 2.0
Rust
@@ -16,7 +16,7 @@ export default Vue.extend({ 'tr', this.props === void 0 || this.props.header === true ? on - : { ...on, class: this.props.__trClass }, + : { on, class: this.props.__trClass }, slot(this, 'default') ) }
feat(QTr): events do not propagate
null
quasarframework/quasar
MIT License
JavaScript
@@ -5,6 +5,7 @@ import au.com.dius.pact.core.model.ContentType.Companion.JSONREGEXP import au.com.dius.pact.core.model.ContentType.Companion.XMLREGEXP import au.com.dius.pact.core.model.ContentType.Companion.XMLREGEXP2 import mu.KLogging +import org.apache.commons.codec.binary.Hex import org.apache.tika.config.TikaConf...
feat: with binary body do not print the body contents out
null
pact-foundation/pact-jvm
Apache License 2.0
Kotlin
@@ -33,6 +33,7 @@ module FrontendConfigHelper config[:bigquery_enabled] = Carto::Connector.provider_available?('bigquery', user) config[:bigquery_available] = Carto::Connector.provider_public?('bigquery') config[:oauth_mechanism_bigquery] = Cartodb.get_config(:oauth, 'bigquery', 'oauth_mechanism') + config[:bigquery_us...
feat: add config to detect big query service auth mode is active
null
cartodb/cartodb
BSD 3-Clause New or Revised License
Ruby
@@ -98,6 +98,9 @@ pub enum ApplicationError { WritingPoints { org: String, bucket_name: String, + tables: Vec<String>, + num_lines: usize, + body_size: usize, source: Box<dyn std::error::Error + Send + Sync>, }, @@ -539,11 +542,20 @@ where server::Error::DatabaseNotFound { .. } => ApplicationError::DatabaseNotFound { n...
feat: Add more details to WritePoints error log
null
influxdata/influxdb_iox
Apache License 2.0
Rust
@@ -370,7 +370,7 @@ open class AVFoundationPlayback: Playback { private func handlePlayerRateChanged(_ player: AVPlayer, _ changes: NSKeyValueObservedChange<Float>) { guard playerStatus != .unknown else { return } - if changes.isPrior && player.rate == 1 && state == .playing { + if changes.isPrior && player.rate != 0.0...
feat: represent playing state with any player.rate that is not 0.0 (paused)
null
clappr/clappr-ios
BSD 3-Clause New or Revised License
Swift
@@ -6,12 +6,17 @@ const requireComponent = require.context( '@/components', true, /\.vue$/ ) +// Dynamically load all components +// and lazily load them +// https://vuejs.org/v2/guide/components-dynamic-async requireComponent.keys().forEach(fileName => { - const componentConfig = requireComponent(fileName) - const com...
feat(dynamic-async): make components dynamic and async
null
vuetifyjs/vuetify
MIT License
JavaScript
@@ -275,8 +275,8 @@ class CBSecurityController implements DBWSecurityController { try (ResultSet dbResult = dbStat.executeQuery()) { while (dbResult.next()) { result.put( - dbResult.getString(1), - dbResult.getString(2)); + dbResult.getString(2), + dbResult.getString(3)); } } } @@ -301,13 +301,13 @@ class CBSecurityCon...
feat(server): change parameters pass order
null
dbeaver/cloudbeaver
Apache License 2.0
Java
@@ -26,9 +26,9 @@ impl<'a> GameMap<'a> { &self.state.planets } - pub fn get_me(&self) -> &Player { - let my_id = self.game.my_id; - &self.state.players[my_id] + /// Returns all players at the actual game state including yourself. + pub fn all_players(&self) -> &[Player] { + &self.state.players } pub fn obstacles_betwee...
feat: Add a `all_players` method
null
halitechallenge/halite-ii
MIT License
Rust
+<?php + +declare(strict_types=1); + +test('uuid shortcode', function () { + expect(strings(parsers()->shortcodes()->parse('(uuid1)'))->length() > 0)->toBeTrue(); + expect(strings(parsers()->shortcodes()->parse('(uuid2)'))->length() > 0)->toBeTrue(); + expect(strings(parsers()->shortcodes()->parse('(uuid3)'))->length()...
feat(tests): add missed tests for `uuid` shortcode
null
flextype/flextype
MIT License
PHP
@@ -3,6 +3,7 @@ import nodeToString from 'hast-util-to-string' import { format } from 'docz-utils/lib/format' import { componentName, sanitizeCode, removeTags } from 'docz-utils/lib/jsx' import { getImportsVariables } from 'docz-utils/lib/imports' +import { getExportsVariables } from 'docz-utils/lib/exports' const isPl...
feat(rehype-docz): add mdx exports to Playground scope
null
doczjs/docz
MIT License
TypeScript
@@ -17,6 +17,7 @@ class KitsuLibrary( var offset = 0 var page = 0 var retries = 0 + var errorMessage = "" while (true) { val result = libraryService.retrieveAnimeAsync(userId, offset, LIMIT).await() @@ -34,6 +35,8 @@ class KitsuLibrary( if (retries < MAX_RETRIES) { retries++ continue + } else { + errorMessage = result....
feat: pass the error message on failure
null
chesire/nekome
Apache License 2.0
Kotlin
@@ -190,6 +190,124 @@ impl Remapping { } } +/// A relative [`Remapping`] that's aware of the current location +/// +/// See [`RelativeRemappingPathBuf`] +#[derive(Clone, Debug, PartialEq)] +pub struct RelativeRemapping { + pub name: String, + pub path: RelativeRemappingPathBuf, +} + +impl RelativeRemapping { + /// Crea...
feat(solc): relative remappings
null
gakonst/ethers-rs
Apache License 2.0
Rust
@@ -159,7 +159,7 @@ class Entries // Run event: onEntriesInitialized flextype('emitter')->emit('onEntriesInitialized'); - // Find entries + // Apply find_filter $entries_list = find_filter($this->storage['fetch_collection']['id'], $filter); // If entries founded in the entries folder @@ -176,7 +176,7 @@ class Entries $...
feat(entries): code typo formating
null
flextype/flextype
MIT License
PHP
@@ -3,6 +3,7 @@ package org.burningokr.service.okr; import static org.mockito.ArgumentMatchers.*; import static org.mockito.Mockito.*; +import java.time.LocalDateTime; import java.util.*; import org.burningokr.model.activity.Action; import org.burningokr.model.configuration.Configuration; @@ -11,11 +12,13 @@ import org...
feat(NoteObjective): finished tests for ObjectiveService
null
burningokr/burningokr
Apache License 2.0
Java
// SPDX-License-Identifier: Apache-2.0 pub use snp::certs; +pub use snp::firmware::Firmware; use super::kvm::mem::Region; use super::kvm::{Keep, KeepPersonality}; @@ -14,7 +15,6 @@ use data::{ kvm_version, sev_enabled_in_kernel, CPUIDS, }; use kvm_ioctls::VmFd; -use snp::firmware::Firmware; use snp::launch::linux::KvmE...
feat(sev): reexport `sev::Firmware`
null
enarx/enarx
Apache License 2.0
Rust
@@ -763,10 +763,14 @@ export class Graph extends Basecoat<EventArgs> { return this } - positionRect(rect: Rectangle.RectangleLike, direction: Transform.Direction) { + positionRect( + rect: Rectangle.RectangleLike, + direction: Transform.Direction, + options?: { padding?: NumberExt.SideOptions }, + ) { const scroller = ...
feat: add options for positionCell api
null
antvis/x6
MIT License
TypeScript
@@ -64,6 +64,11 @@ pub fn main() -> std::io::Result<()> { ); opts.optflag("L", "enable-tasklists", "enable GitHub-style task lists"); opts.optflag("P", "enable-smart-punctuation", "enable smart punctuation"); + opts.optflag( + "H", + "enable-heading-attributes", + "enable heading attributes", + ); let matches = match o...
feat: Add `enable-heading-attributes`
null
raphlinus/pulldown-cmark
MIT License
Rust
@@ -168,6 +168,11 @@ func (s *Server) HandleFunc(path string, h http.HandlerFunc) { s.router.HandleFunc(path, h) } +// HandleHeader registers a new route with a matcher for the header. +func (s *Server) HandleHeader(key, val string, h http.HandlerFunc) { + s.router.Headers(key, val).Handler(h) +} + // ServeHTTP should ...
feat: add http header handler
null
go-kratos/kratos
MIT License
Go
@@ -2,6 +2,11 @@ package com.codingame.gameengine.runner.dto; public class ConfigResponseDto { public String title; - public int min_players; - public int max_players; + public int minPlayers; + public int maxPlayers; + public String type; + public String criteria; + public String sortingOrder; + public String criteria...
feat(sdk): add new config fields to ConfigResponseDto
null
codingame/codingame-game-engine
MIT License
Java
@@ -30,7 +30,7 @@ func configureLocal() *peer.Local { var externalIP net.IP if str := parameter.NodeConfig.GetString(CFG_EXTERNAL); strings.ToLower(str) == "auto" { log.Info("Querying external IP ...") - ip, err := netutil.GetPublicIP(false) + ip, err := netutil.GetPublicIP(parameter.NodeConfig.GetBool("network.preferI...
feat: Use global preferIPv6 parameter for GetPublicIP
null
iotaledger/hornet
Apache License 2.0
Go
@@ -376,7 +376,7 @@ def stock_zh_a_minute( if __name__ == "__main__": - stock_zh_a_daily_hfq_df_one = stock_zh_a_daily(symbol="sh603843", start_date="20171103", end_date="20210908", adjust="") + stock_zh_a_daily_hfq_df_one = stock_zh_a_daily(symbol="sh600308", start_date="20171103", end_date="20211021", adjust="qfq") p...
feat(stock_zh_index_value_csindex): add stock_zh_index_value_csindex interface
null
jindaxiang/akshare
MIT License
Python
@@ -33,6 +33,7 @@ export default class SwaggerUI extends React.Component { deepLinking: typeof this.props.deepLinking === "boolean" ? this.props.deepLinking : false, showExtensions: this.props.showExtensions, filter: ["boolean", "string"].includes(typeof this.props.filter) ? this.props.filter : false, + persistAuthoriz...
feat(swagger-ui-react): add support for persistAuthorization prop
null
swagger-api/swagger-ui
Apache License 2.0
JavaScript
@@ -194,7 +194,20 @@ impl NodeManager { self.start_uppercase_service_impl(ctx, "uppercase".into()) .await?; self.start_echoer_service_impl(ctx, "echo".into()).await?; - self.create_secure_channel_listener_impl("api".into(), None) + + let authorized_identifiers = if self.config.readlock_inner().identity_was_overridden {...
feat(rust): by default, trust only overridden identity if provided
null
ockam-network/ockam
Apache License 2.0
Rust
@@ -22,9 +22,27 @@ const styles = (theme) => ({ flexWrap: "wrap", }, textField: { - marginLeft: theme.spacing.unit, + marginLeft: theme.spacing(1), marginRight: "61px", }, + searchResultPrimary: { + "& em": { + fontStyle: "normal", + fontWeight: 700, + textDecoration: "underline", + textUnderlineOffset: "0.15rem", + //...
feat: add style from <em> element
null
oi-wiki/gatsby-oi-wiki
Apache License 2.0
JavaScript
@@ -98,6 +98,9 @@ final class ChRemote implements CommitHash { * Load all hashes and tags. * @return Map of them (hash -> tag) * @throws IOException if fails + * @todo #1174:90m The code duplication with ChText. It's better to reuse the logic + * of parsing text source from ChText class. Maybe we can implement caching ...
feat(#1174): add puzzle for ChRemote
null
cqfn/eo
MIT License
Java
@@ -96,6 +96,13 @@ Status DBMetaImpl::add_group(GroupSchema& group_info) { } catch(std::system_error& e) { return Status::GroupError("Add Group " + group_info.group_id + " Error"); } + + auto group_path = GetGroupPath(group_info.group_id); + + if (!boost::filesystem::is_directory(group_path)) { + assert(boost::filesyst...
feat(db): create group and partition folders
null
milvus-io/milvus
Apache License 2.0
C++
@@ -8,6 +8,7 @@ import android.view.ViewGroup import com.squareup.picasso.Picasso import org.fossasia.susi.ai.R import org.fossasia.susi.ai.dataclasses.GroupWiseSkills +import org.fossasia.susi.ai.helper.CircleTransform import org.fossasia.susi.ai.rest.responses.susi.SkillData import org.fossasia.susi.ai.skills.SkillFr...
feat: Use circular image view for skill image in group wise skill cards
null
fossasia/susi_android
Apache License 2.0
Kotlin
@@ -50,5 +50,15 @@ pub fn register(registry: &mut FunctionRegistry) { Ok(()) }, ); + registry.register_with_writer_1_arg::<StringType, NumberType<u64>, _, _>( + "octet_length", + FunctionProperty::default(), + |_| None, + |val, writer| { + let octet_length = val.len() as u64; + writer.push(octet_length); + Ok(()) + }, ...
feat(function): migrate octet_length functions to new expression framework
null
datafuselabs/databend
Apache License 2.0
Rust