diff stringlengths 12 9.3k | message stringlengths 8 199 | reasoning_trace null | repo stringlengths 6 68 | license stringclasses 3
values | language stringclasses 16
values |
|---|---|---|---|---|---|
@@ -30,9 +30,13 @@ Future<String> getBundleContent({ String bundleUrl, String bundlePath }) async {
return Future<String>.value(content);
}
+ if (Platform.isAndroid || Platform.isIOS) {
return await loadBundleFromAssets();
}
+ return Future<String>.value('');
+}
+
// See http://github.com/flutter/flutter/wiki/Desktop-s... | feat: only ios and android load js from assets | null | openkraken/kraken | Apache License 2.0 | Dart |
@@ -10,8 +10,6 @@ then
gsutil cp /tmp/linux/dist/*.AppImage gs://selfkey-builds/$VERSION/
else
gsutil cp /tmp/mac/dist/*.zip gs://selfkey-builds/$VERSION/
-# if [ "$TRAVIS_PULL_REQUEST" == "false" && "$TRAVIS_BRANCH" == "dev" ]
-# then
-# curl -i -X POST -H "Content-Type: application/json" -d "{\"text\": \"Mac build ha... | feat: add notification for mac build | null | selfkeyfoundation/identity-wallet | MIT License | Shell |
@@ -171,7 +171,8 @@ public class RedisCache<V> implements Cache<V>
@Override
public void invalidateAll()
{
- // No operation
+ Set<String> keysToDelete = redisTemplate.keys( cacheRegion.concat( ":*" ) );
+ redisTemplate.delete( keysToDelete );
}
@Override
| feat: Add invalidateAll capability for shared cache | null | dhis2/dhis2-core | BSD 3-Clause New or Revised License | Java |
@@ -425,7 +425,7 @@ class Milvus(ConnectIntf):
:type table_name: str
:param table_name: table name been queried
- :type file_ids: list[str]
+ :type file_ids: list[str] or list[int]
:param file_ids: Specified files id array
:type query_records: list[list[float]]
@@ -458,7 +458,7 @@ class Milvus(ConnectIntf):
raise Param... | feat(Client): file_ids support list[int] | null | milvus-io/pymilvus | Apache License 2.0 | Python |
@@ -176,10 +176,14 @@ class Forms
$form_label = '';
}
+ if ($property['type'] == 'hidden') {
+ $form .= $form_element;
+ } else {
$form .= '<div class="form-group ' . $property['size'] . '">';
$form .= $form_label . $form_element;
$form .= '</div>';
}
+ }
$form .= '</div>';
$form .= '</div>';
}
| feat(core): add ability to hide title for hidden fields | null | flextype/flextype | MIT License | PHP |
@@ -169,7 +169,7 @@ public final class ParseMojo extends SafeMojo {
if (tojo.exists(AssembleMojo.ATTR_HASH)) {
footprint = new FtCached(
tojo.get(AssembleMojo.ATTR_HASH),
- this.targetDir.toPath().resolve(ParseMojo.DIR),
+ this.cache.resolve(ParseMojo.PARSED),
footprint
);
}
| feat(#1633): change cached path | null | cqfn/eo | MIT License | Java |
@@ -19,6 +19,7 @@ class CartItems extends Component {
classes: PropTypes.object,
hasMoreCartItems: PropTypes.bool,
isMiniCart: PropTypes.bool,
+ isReadOnly: PropTypes.bool,
items: PropTypes.arrayOf(PropTypes.shape({
_id: PropTypes.string,
attributes: PropTypes.arrayOf(PropTypes.object),
@@ -55,6 +56,7 @@ class CartItem... | feat: add `isReadOnly` prop to `CartItems` component | null | reactioncommerce/example-storefront | Apache License 2.0 | JavaScript |
@@ -596,6 +596,7 @@ func (m *Launcher) run(ctx context.Context) (err error) {
m.apibackend = &http.APIBackend{
AssetsPath: m.assetsPath,
+ HTTPErrorHandler: http.ErrorHandler(0),
Logger: m.logger,
SessionRenewDisabled: m.sessionRenewDisabled,
NewBucketService: source.NewBucketService,
| feat(cmd/influxd): add http error handler | null | influxdata/influxdb | MIT License | Go |
@@ -19,6 +19,20 @@ import Foundation
/** ToneChatScore. */
public struct ToneChatScore: Decodable {
+ /**
+ The unique, non-localized identifier of the tone for the results. The service returns results only for tones whose
+ scores meet a minimum threshold of 0.5.
+ */
+ public enum ToneID: String {
+ case excited = "e... | feat(ToneAnalyzer): Add `ToneID` options to `ToneChatScore` | null | watson-developer-cloud/swift-sdk | Apache License 2.0 | Swift |
+import Colors from './Colors';
+import Fonts from './Fonts';
+import FontSizes from './FontSizes';
+import FontWeights from './FontWeights';
+import LineHeights from './Lineheights';
+import Breakpoints from './Breakpoints';
+import Spacing from './Spacing';
+import Borders from './Borders';
+import Elevations from '.... | feat(theme): index to import and export theme components | null | gympass/yoga | MIT License | JavaScript |
@@ -41,6 +41,8 @@ export class Platform<TGlobal extends GlobalThisOrWindowOrWorkerGlobalScope = Gl
public readonly setTimeout: TGlobal['setTimeout'];
public readonly console: TGlobal['console'];
+ public readonly performanceNow: TGlobal['performance']['now'];
+
public constructor(
g: TGlobal,
overrides: Partial<Exclude... | feat(platform): add performanceNow property | null | aurelia/aurelia | MIT License | TypeScript |
@@ -9,11 +9,6 @@ import Summary from './Summary';
import Description from './Description';
import Tooltip from '../../../components/Tooltip';
import TooltipStyledLabel from '../../../components/TooltipStyledLabel';
-import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
-import {
- faCaretSquareUp,
- faCaret... | feat: OT CRISPR remove and update columns | null | opentargets/platform-app | Apache License 2.0 | JavaScript |
+import os
+import pype.api
+import pyblish
+
+
+class ExtractReviewSlate(pype.api.Extractor):
+ """
+ Will add slate frame at the start of the video files
+ """
+
+ label = "Review with Slate frame"
+ order = pyblish.api.ExtractorOrder + 0.031
+ families = ["slate"]
+ hosts = ["nuke", "maya", "shell"]
+ optional = Tru... | feat(global): adding slate to video files | null | pypeclub/openpype | MIT License | Python |
@@ -20,7 +20,7 @@ import (
)
// VERSION of DiscordGo, follows Semantic Versioning. (http://semver.org/)
-const VERSION = "0.24.0"
+const VERSION = "0.25.0"
// New creates a new Discord session with provided token.
// If the token is for a bot, it must be prefixed with "Bot "
| feat(*): bump version to 0.25.0 | null | bwmarrin/discordgo | BSD 3-Clause New or Revised License | Go |
@@ -167,6 +167,33 @@ class VerbosityTest extends BaseRollbarTest
);
}
+ /**
+ * Test verbosity of \Rollbar\RollbarLogger::log when
+ * `max_items` is reached.
+ *
+ * @return void
+ */
+ public function testRollbarLoggerSendMaxItems()
+ {
+ $this->rollbarLogTest(
+ array( // config
+ "access_token" => $this->getTestAcc... | feat(dev options): test verbosity for `max_items` | null | rollbar/rollbar-php | MIT License | PHP |
@@ -277,7 +277,14 @@ where
info!(%db_name, ?range, ?group_keys, ?group, ?aggregate,predicate=%predicate.loggable(),"read_group");
+ let ob = self.metrics.requests.observation();
+ let labels = &[
+ KeyValue::new("operation", "read_group"),
+ KeyValue::new("db_name", db_name.to_string()),
+ ];
+
if hints != 0 {
+ ob.err... | feat: instrument read_group | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -305,6 +305,25 @@ where
dst
}
+ fn all_non_null_row_ids(&self, mut dst: RowIDs) -> RowIDs {
+ dst.clear();
+
+ if self.null_count() == 0 {
+ dst.add_range(0, self.num_rows());
+ return dst;
+ }
+
+ let mut curr_logical_row_id = 0;
+ for (rl, next) in &self.run_lengths {
+ if next.is_some() {
+ dst.add_range(curr_log... | feat: add rle method for identifying all non-null row IDs | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -111,7 +111,7 @@ return [
[
'key' => 'android',
'name' => 'Android',
- 'version' => '0.0.1-SNAPSHOT',
+ 'version' => '0.0.1',
'url' => 'https://github.com/appwrite/sdk-for-android',
'package' => 'https://repo1.maven.org/maven2/io/appwrite/sdk-for-android/',
'enabled' => true,
@@ -349,7 +349,7 @@ return [
[
'key' => ... | feat: update android versions | null | appwrite/appwrite | BSD 3-Clause New or Revised License | PHP |
@@ -22,7 +22,7 @@ void usage(std::ostream& os, const string& app_name, const char* what = nullptr)
}
os << "Usage:" << endl
- << " " << app_name << " 0.0.0.0 [<get>|<put>|<ping>] # Any ipv4 interface" << endl
+ << " " << app_name << " 0.0.0.0 [<get>|<put>|<ping>|<find_node>|<get_peers>]" << endl;
}
| feat(test/bep5): Upd usage | null | equalitie/ouinet | MIT License | C++ |
@@ -63,7 +63,7 @@ var selectbox = function(options, defaultParameters) {
if (isList(selectOptions)) {
forEach(selectOptions, function(option) {
- resource.html += '<option value="' + escapeHTML(option.value) + '">' +
+ resource.html += '<option value="' + escapeHTML(option.value) + (option.title ? '" title="' + escapeH... | feat(select-entry-factory): add (optional) tooltip support for drop down options | null | bpmn-io/bpmn-js-properties-panel | MIT License | JavaScript |
@@ -34,7 +34,9 @@ def get_desktop_page(page):
# all_permissions = standard_permissions + custom_permissions
# print(all_permissions)
- cards = apply_permissions(doc.cards)
+ all_cards = doc.cards + get_custom_reports_and_doctypes(doc.module)
+
+ cards = apply_permissions(all_cards)
# return cards
shortcuts = prepare_sh... | feat: also fetch custom doctypes and reports | null | frappe/frappe | MIT License | Python |
@@ -45,11 +45,11 @@ const noopScope: ContextScope = [[[], null], [[], null], [[], null]]
const noopIdentifier = ContextScope.stringify(noopScope)
export interface Logger {
- warn: (format: any, ...param: any) => void
- info: (format: any, ...param: any) => void
- debug: (format: any, ...param: any) => void
- success: (... | feat(core): logger event | null | koishijs/koishi | MIT License | TypeScript |
@@ -30,11 +30,24 @@ public class ConfigHelper {
private static final Pattern BOSS_FILE_PATTERN = Pattern.compile("Boss\\.(?<extension>.*)");
private static final Pattern LEVEL_DIR_PATTERN = Pattern.compile("level(?<level>\\d+)");
+ enum GameType {
+ SOLO, MULTI, UNDEFINED
+ }
+
public static class GameConfig {
private ... | feat(sdk): add game type to GameConfig | null | codingame/codingame-game-engine | MIT License | Java |
@@ -15,8 +15,8 @@ import { TestServerOptions } from './types';
* @docsCategory testing
*/
export class TestServer {
- private app: INestApplication;
- private worker?: INestMicroservice;
+ public app: INestApplication;
+ public worker?: INestMicroservice;
constructor(private vendureConfig: Required<VendureConfig>) {}
| feat(testing): Expose underlying NestApplication & NestMicroservice | null | vendure-ecommerce/vendure | MIT License | TypeScript |
@@ -40,6 +40,80 @@ pub mod array {
}
}
+ pub(crate) fn slice<'vm>(
+ array: Array<'vm, generic::A>,
+ start: usize,
+ end: usize,
+ ) -> RuntimeResult<Array<'vm, generic::A>, Error> {
+ if start > end {
+ return RuntimeResult::Panic(Error::Message(format!(
+ "slice index starts at {} but ends at {}",
+ start, end
+ )))... | feat(std): Add std.array.slice | null | gluon-lang/gluon | MIT License | Rust |
@@ -335,8 +335,8 @@ export class InstanceSwitcherComponent implements OnDestroy, AfterViewInit {
this._instanceContextValue = value;
}
- _instanceEdit(key: string | null, value: string, clickEvent?: MouseEvent): void {
- if (this.editable && key) {
+ _instanceEdit(key: string | null, value: string | null, clickEvent?: ... | feat(instance-switcher): fix type in component | null | healthcatalyst/fabric.cashmere | Apache License 2.0 | TypeScript |
@@ -602,10 +602,14 @@ open class ExoPlayerPlayback(source: String, mimeType: String? = null, options:
override fun onTimelineChanged(timeline: Timeline?, manifest: Any?, reason: Int) {
player?.currentWindowIndex?.let { currentWindowIndex ->
- Timeline.Window().let {
- timeline?.getWindow(currentWindowIndex, it)
- curre... | feat(dvr_exoplayer): guard index off bounds exception in time line change | null | clappr/clappr-android | BSD 3-Clause New or Revised License | Kotlin |
@@ -16,6 +16,24 @@ from .errors import RequestError
from .implicit_database import ImplicitDatabase, ImplicitTable
+INFO_TEMPLATE = Template(
+ """{% for tb in tbs.keys() %}
+Table {{dbname}}.{{tb}}
+
+Parameters
+----------
+{% if tbs[tb].required_params %}{{", ".join(tbs[tb].required_params)}} required {% endif %}
+{... | feat(data_connector): implement dc.show_schema() | null | sfu-db/dataprep | MIT License | Python |
@@ -3,7 +3,6 @@ import { HashRouter } from "react-router-dom";
import { Route, Switch } from "react-router";
import { message } from "antd";
import WhiteboardCreatorPage from "./WhiteboardCreatorPage";
-import BigClassPage from "./BigClassPage";
import ReplayPage from "./ReplayPage";
import JoinPage from "./JoinPage";
... | feat(UserScheduledPage): complete room scheduling process | null | netless-io/flat | MIT License | TypeScript |
@@ -103,7 +103,7 @@ final class Flextype
public static function getInstance(?ContainerInterface $container = null): Flextype
{
if (static::$instance === null) {
- static::$instance = new self();
+ static::$instance = new self($container);
}
return static::$instance;
| feat(flextype): add missed container for flextype instance | null | flextype/flextype | MIT License | PHP |
@@ -67,6 +67,12 @@ pub struct IoxObjectStore {
}
/// Metadata about a deleted database that could be restored or permanently deleted.
+#[derive(Debug, Clone, PartialEq)]
+pub struct DeletedDatabase {
+ name: DatabaseName<'static>,
+ generation_id: GenerationId,
+ deleted_at: DateTime<Utc>,
+}
/// Identifier for a gener... | feat: Add a list_deleted_databases API | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -5,6 +5,7 @@ import os
import shutil
import sys
import zipfile
+from base64 import b64encode
from hashlib import sha1
from io import BytesIO
from pathlib import Path
@@ -563,7 +564,27 @@ def _install_from_github(package_id: str) -> str:
if install_path.exists():
raise FileExistsError("Package is aleady installed")
-... | feat: use github api token for package tag queries | null | eth-brownie/brownie | MIT License | Python |
@@ -2,6 +2,8 @@ from pypika.functions import *
from pypika.terms import Function
from frappe.query_builder.utils import ImportMapper, db_type_is
from frappe.query_builder.custom import GROUP_CONCAT, STRING_AGG, MATCH, TO_TSVECTOR
+from frappe.database.query import Query
+from .utils import Column
class Concat_ws(Functi... | feat: Added aggregation functions to qb functions | null | frappe/frappe | MIT License | Python |
@@ -44,10 +44,20 @@ export function createStore({
callSafety = callSafetyDefault,
onError = noop,
onPatch = noop,
+ now = Date.now.bind(Date),
}: {
callSafety?: typeof callSafetyDefault
- onError?: Fn<[error: unknown, transactionData: TransactionResult]>
- onPatch?: Fn<[transactionResult: TransactionResult]>
+ onError?... | feat(core): add dispatch duration tracking | null | artalar/reatom | MIT License | TypeScript |
@@ -23,6 +23,13 @@ struct EhPandaView: View, StoreAccessor {
Info(
url: "https://t.me/ehpanda",
text: "Telegram"
+ ),
+ Info(
+ url: "altstore://source?url="
+ + "https://github.com/tatsuz0u"
+ + "/EhPanda-PromotionResources"
+ + "/raw/main/altStore.json",
+ text: "AltStore Source".localized()
)
]
}
| feat: Add AltStore source entry | null | ehpanda-team/ehpanda | MIT License | Swift |
#include "acl/core/impl/compiler_utils.h"
#include "acl/core/error.h"
+#include <rtm/math.h>
+
#include <cstdint>
#include <cstring>
#include <type_traits>
#include <libkern/OSByteOrder.h>
#endif
+// For __prefetch
+#if defined(RTM_NEON64_INTRINSICS) && defined(ACL_COMPILER_MSVC)
+ #include <intrin.h>
+#endif
+
ACL_IMP... | feat(core): add support for memory prefetching with SSE2 and ARM | null | nfrechette/acl | MIT License | C |
@@ -523,6 +523,8 @@ open class AVFoundationPlayback: Playback {
}
open override func stop() {
+ guard state != .idle else { return }
+
isStopped = true
trigger(.willStop)
updateState(.idle)
| feat: avoid sending stop events when already stopped | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Swift |
@@ -45,6 +45,9 @@ enum {
LV_KEYBOARD_MODE_USER_2,
LV_KEYBOARD_MODE_USER_3,
LV_KEYBOARD_MODE_USER_4,
+#if LV_USE_ARABIC_PERSIAN_CHARS == 1
+ LV_KEYBOARD_MODE_TEXT_ARABIC
+#endif
};
typedef uint8_t lv_keyboard_mode_t;
| feat(keyboard): ported arabic keyboard from release 7.10.0 | null | lvgl/lvgl | MIT License | C |
@@ -262,7 +262,21 @@ impl Context {
///
/// [`Address`]: ockam_core::Address
/// [`RouteBuilder`]: ockem_core::RouteBuilder
- pub async fn send_from_address<M>(
+ pub async fn send_from_address<R, M>(
+ &self,
+ route: R,
+ msg: M,
+ sending_address: Address,
+ ) -> Result<()>
+ where
+ R: Into<Route>,
+ M: Message + S... | feat(rust): introduce context send_from_address_impl | null | ockam-network/ockam | Apache License 2.0 | Rust |
@@ -144,7 +144,7 @@ open class MediaControl(core: Core, pluginName: String = name) : UICorePlugin(co
showMediaControlElements()
showDefaultMediaControlPanels()
- if (shouldAnimate) animateFadeIn { setupShowDuration(duration) }
+ if (shouldAnimate) animateFadeIn(view) { setupShowDuration(duration) }
else setupShowDurati... | feat: add anim to media control modal | null | clappr/clappr-android | BSD 3-Clause New or Revised License | Kotlin |
# For license information, please see license.txt
from __future__ import unicode_literals
+import frappe
+from frappe import _
from frappe.modules.export_file import export_to_files
from frappe.model.document import Document
class DeskPage(Document):
+ def validate(self):
+ if (not (frappe.flags.in_install or frappe.fl... | feat: only allow developers to edit | null | frappe/frappe | MIT License | Python |
@@ -214,7 +214,11 @@ Status DBImpl::merge_files(const std::string& group_id, const meta::DateT& date,
meta::GroupFilesSchema updated;
for (auto& file : files) {
- auto file_index = dynamic_cast<faiss::IndexIDMap*>(faiss::read_index(file.location.c_str()));
+ auto to_merge = zilliz::vecwise::cache::CpuCacheMgr::GetInsta... | feat(db): cache for mem merge | null | milvus-io/milvus | Apache License 2.0 | C++ |
@@ -221,8 +221,8 @@ public abstract class AnalysisWorkerTask extends ProfileRequest {
checkNotNull(destinationPointSetKeys);
int nPointSets = destinationPointSetKeys.length;
checkState(
- nPointSets > 0 && nPointSets <= 10,
- "You must specify at least 1 destination PointSet, but no more than 10."
+ nPointSets > 0 && n... | feat(destinations): allow up to 12 destination layers | null | conveyal/r5 | MIT License | Java |
@@ -321,16 +321,11 @@ private extension ReadingView {
)
}
func tryUpdatePagerIndexByTimer(_: Timer) {
- let distance = DeviceUtil.isLandscape && setting.enablesDualPageMode
- && setting.readingDirection != .vertical ? 2 : 1
-
- guard Int(sliderValue) + distance <= pageCount else {
+ guard Int(sliderValue) < pageCount e... | feat: Tap to next / previous page | null | ehpanda-team/ehpanda | MIT License | Swift |
@@ -24,15 +24,12 @@ public class AuthController : ControllerBase
private readonly IFluentEmail _fluentEmail;
- private readonly IServer _server;
-
public AuthController(SignInManager<User> signInManager,
UserManager<User> userManager,
IJwtService jwtService,
IMapper mapper,
IOptionsSnapshot<AppSettings> setting,
- IFlu... | feat(template): fix the display issue of the company logo in the confirmation email | null | bitfoundation/bitframework | MIT License | C# |
+/*
+ * Copyright 2018 IBM Corp. All Rights Reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applica... | feat(Discovery): Add NluEnrichmentConcepts model | null | watson-developer-cloud/java-sdk | Apache License 2.0 | Java |
@@ -58,7 +58,8 @@ extension SolanaSDK {
public static func unsupported(
mint: String?,
- decimals: Decimals = 0
+ decimals: Decimals = 0,
+ symbol: String = ""
) -> Token {
Token(
_tags: [],
| feat: symbol on unsupported token | null | p2p-org/solana-swift | MIT License | Swift |
@@ -127,7 +127,7 @@ public class IdentityProviderEndpoints implements ApplicationEventPublisherAware
} catch (IdpAlreadyExistsException e) {
return new ResponseEntity<>(body, CONFLICT);
} catch (Exception x) {
- logger.debug("Unable to create IdentityProvider[origin="+body.getOriginKey()+"; zone="+body.getIdentityZoneI... | feat: error log on internal error | null | cloudfoundry/uaa | Apache License 2.0 | Java |
@@ -42,10 +42,25 @@ macro_rules! credential_attribute_values {
($($x:expr),* $(,)?) => ({
use $crate::CredentialAttribute;
- #[allow(unused_mut)]
let mut attribute_values: Vec<CredentialAttribute> = vec![];
$(attribute_values.push($x.into());)*
attribute_values
});
}
+
+/// Creates a list of revealed attributes contain... | feat(rust): add reveal_attributes macro | null | ockam-network/ockam | Apache License 2.0 | Rust |
+import { cloneDeep } from 'lodash'
import { Project } from 'types'
import { IRootStore } from '../RootStore'
import { constructHeaders } from 'lib/api/apiHelpers'
@@ -40,6 +41,26 @@ export default class ProjectStore extends PostgresMetaInterface<Project> {
project.postgrestStatus = success ? 'ONLINE' : 'OFFLINE'
}
thi... | feat: fetch project subscription tier lazily | null | supabase/supabase | Apache License 2.0 | TypeScript |
@@ -5,7 +5,7 @@ use std::{
fs::{create_dir, File},
io::{BufRead, BufReader},
path::PathBuf,
- process::{Child, Command, Stdio},
+ process::{Child, ChildStderr, Command, Stdio},
time::{Duration, Instant},
};
@@ -76,7 +76,17 @@ impl GethInstance {
&self.data_dir
}
+ /// Takes the stderr contained in the child process.
+ ... | feat(core): add ability to take geth stderr | null | gakonst/ethers-rs | Apache License 2.0 | Rust |
@@ -29,6 +29,10 @@ class AMSRewardVideo: AMSAdBase, GADRewardBasedVideoAdDelegate {
plugin.emit(eventType: AMSEvents.rewardVideoReward)
}
+ func rewardBasedVideoAd(_ rewardBasedVideoAd: GADRewardBasedVideoAd, didFailToLoadWithError error: Error) {
+ plugin.emit(eventType: AMSEvents.rewardVideoLoadFail)
+ }
+
func rewar... | feat(cordova-ios): add RewardVideoLoadFail Event on iOS | null | admob-plus/admob-plus | MIT License | Swift |
@@ -59,6 +59,10 @@ class Entries
$this->registry = arrays();
$this->options = $options;
$this->initFields();
+
+ filesystem()
+ ->directory(PATH['project'] . '/entries/' . $options['directory'])
+ ->ensureExists(0755, true);
}
/**
| feat(entries): ensure entries directory exists | null | flextype/flextype | MIT License | PHP |
@@ -121,9 +121,9 @@ trait ProjectCustom
'functions.create',
'functions.update',
'functions.delete',
- 'functions.tags.create',
- 'functions.tags.update',
- 'functions.tags.delete',
+ 'functions.deployments.create',
+ 'functions.deployments.update',
+ 'functions.deployments.delete',
'functions.executions.create',
'funct... | feat: update project custom scope | null | appwrite/appwrite | BSD 3-Clause New or Revised License | PHP |
@@ -130,7 +130,7 @@ func New(
return nil, err
}
- cm := &Client{
+ client := &Client{
credentialsCache: make(map[irma.CredentialTypeIdentifier]map[int]*credential),
keyshareServers: make(map[irma.SchemeManagerIdentifier]*keyshareServer),
attributes: make(map[irma.CredentialTypeIdentifier][]*irma.AttributeList),
@@ -138... | feat: asynchronously populate nonrevocation caches on irmaclient startup | null | privacybydesign/irmago | Apache License 2.0 | Go |
@@ -57,15 +57,15 @@ class ViewController: UIViewController {
present(fullscreenController, animated: false) {
self.player.setFullscreen(true)
}
- fullscreenController.view.addSubviewMatchingConstraints(player.core!.view)
+ player.presentFullscreenIn(fullscreenController)
}
@objc func onExitFullscreen() {
- guard let co... | feat: adjust sample to adhere player modifications | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Swift |
@@ -5,19 +5,21 @@ const nextHandlerWrapper = app => {
return h.close
}
}
-const defaultHandlerWrapper = app => async ({ raw: { req, res }, url }) => {
+const defaultHandlerWrapper = app => async ({ raw: { req, res }, url }, h) => {
const { pathname, query } = url
- return app.renderToHTML(req, res, pathname, query)
+ c... | feat(web): Passing actual status code instead 200 | null | vercel/next.js | MIT License | JavaScript |
open class SpinnerPlugin: OverlayPlugin {
fileprivate var spinningWheel: UIActivityIndicatorView!
+ private let loadingStates: [PlaybackState] = [.none, .stalling]
@objc var isAnimating: Bool {
return spinningWheel.isAnimating
@@ -18,7 +19,12 @@ open class SpinnerPlugin: OverlayPlugin {
view.accessibilityIdentifier = "... | feat: update visibility on modal plugins events | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Swift |
@@ -98,9 +98,7 @@ class _EditNewPackagingsState extends State<EditNewPackagings> {
child: ListTile(
title: Text(appLocalizations.edit_packagings_completed),
trailing: Icon(
- _packagingsComplete == null
- ? Icons.indeterminate_check_box
- : _packagingsComplete == true
+ _packagingsComplete == true
? Icons.check_box
: I... | feat: 3621 - changed icon for null "is packaging complete?" bool | null | openfoodfacts/smooth-app | Apache License 2.0 | Dart |
from enum import Enum
from core.models import BaseModel
-from django.contrib.postgres.fields import JSONField
from django.db import models
from projects.models import Page, ProjectAuditParameters, Script
from django.utils import timezone
@@ -65,7 +64,7 @@ class AuditStatusHistory(BaseModel):
choices=[(status.name, stat... | feat: update json field import (fix warning) | null | theodo/falco | MIT License | Python |
</div>
@if (!$hasError && $hint)
- <label @if($id) for="{{ $id }}" @endif class="mt-2 text-sm text-secondary-500">{{ $hint }}</label>
+ <label @if($id) for="{{ $id }}" @endif class="mt-2 text-sm text-secondary-500 dark:text-secondary-400">
+ {{ $hint }}
+ </label>
@endif
@if ($name)
| feat: add textarea dark mode | null | wireui/wireui | MIT License | PHP |
@@ -7,6 +7,7 @@ import Typography from "material-ui/Typography";
import Layout from "components/Layout";
import withData from "lib/apollo/withData";
import withRoot from "lib/theme/withRoot";
+import withShop from "containers/shop/withShop";
import Profile from "components/Profile";
const styles = (theme) => ({
@@ -18,... | feat: decorate index with `withShop` HOC | null | reactioncommerce/example-storefront | Apache License 2.0 | JavaScript |
@@ -62,7 +62,7 @@ export default {
resume () {
this.working = true
this.scrollContainer.addEventListener('scroll', this.poll, listenOpts.passive)
- this.poll()
+ this.immediatePoll()
},
stop () {
this.working = false
@@ -79,6 +79,7 @@ export default {
}
this.poll()
+ this.immediatePoll = this.poll
this.poll = debounce(... | feat: Infinite scroll delay after resume | null | quasarframework/quasar | MIT License | JavaScript |
@@ -273,7 +273,7 @@ function RichtextEditorComponent(props: RichtextEditorComponentProps) {
const initialRender = useRef(true);
const toolbarConfig =
- "insertfile undo redo | formatselect | bold italic underline backcolor forecolor | lineheight | alignleft aligncenter alignright alignjustify | bullist numlist outdent ... | feat: emoji picker for the RTE widget | null | appsmithorg/appsmith | Apache License 2.0 | TypeScript |
@@ -6,7 +6,7 @@ var config = require('../lib/config');
var useRules = require('./use');
var showStatus = require('./status');
var util = require('./util');
-var install = require('./install');
+var plugin = require('./plugin');
var showUsage = util.showUsage;
var error = util.error;
@@ -68,6 +68,8 @@ program
.descripti... | feat: w2 uninstall whistle.plugin | null | avwo/whistle | MIT License | JavaScript |
@@ -17,6 +17,12 @@ 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: adding seekbar plugin on media control default plugins | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Swift |
@@ -65,6 +65,16 @@ const styles = () => ({
display: "flex",
justifyContent: "center",
alignItems: "center",
+ transition: "backgroudn 1s ease"
+ },
+ contentTopConnected: {
+ background: "white",
+ height: "10rem",
+ width: "100%",
+ display: "flex",
+ justifyContent: "center",
+ alignItems: "center",
+ transition: "ba... | feat: Change background to white if component is connected | null | layer5io/meshery | Apache License 2.0 | JavaScript |
@@ -19,7 +19,7 @@ class SkillListingPresenter : ISkillListingPresenter,
private var skillListingModel: ISkillListingModel = SkillListingModel()
private var skillListingView: ISkillListingView? = null
- private var count = 0
+ private var count = 1
var skills: ArrayList<Pair<String, Map<String, SkillData>>> = ArrayList(... | feat: Social Skills group is shown only once | null | fossasia/susi_android | Apache License 2.0 | Kotlin |
//! Generic deferred execution of arbitrary [`Future`]'s.
-use std::{sync::Arc, time::Duration};
+use std::{fmt::Display, sync::Arc, time::Duration};
use futures::Future;
use observability_deps::tracing::*;
@@ -14,6 +14,11 @@ use tokio::{
task::JoinHandle,
};
+/// [`UNRESOLVED_DISPLAY_STRING`] defines the string shown ... | feat: Display impl for DeferredLoad | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -72,7 +72,7 @@ class SeekbarView: UIView {
scrubberPosition.constant = position - haltScrubberWidth
progressBarWidthConstraint?.constant = position
- updateTimeLabel(relativeTo: scrubberPosition.constant)
+ timeLabel.text = ClapprDateFormatter.formatSeconds(TimeInterval(time))
}
}
@@ -139,8 +139,8 @@ class SeekbarVi... | feat: Update time label | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Swift |
@@ -760,6 +760,8 @@ static void generate_report(void)
"LVGL v%d.%d.%d " LVGL_VERSION_INFO
" Benchmark (in csv format)\r\n",
LVGL_VERSION_MAJOR, LVGL_VERSION_MINOR, LVGL_VERSION_PATCH);
+ LV_LOG("Weighted FPS: %"LV_PRIu32"\r\n", fps_weighted);
+ LV_LOG("Opa. speed: %"LV_PRIu32"%%\r\n", opa_speed_pct);
row++;
char buf[25... | feat(demo): add Weighted FPS and Opa speed log output | null | lvgl/lvgl | MIT License | C |
@@ -122,7 +122,7 @@ func TestService_handleGetAuthorizations(t *testing.T) {
for _, tt := range tests {
t.Run(tt.token, func(t *testing.T) {
- h := NewAuthorizationHandler()
+ h := NewAuthorizationHandler(mock.NewUserService())
h.AuthorizationService = tt.fields.AuthorizationService
r := httptest.NewRequest("GET", "htt... | feat(http): test an authorization for non-existing user cannot be created | null | influxdata/influxdb | MIT License | Go |
@@ -125,8 +125,8 @@ class LDAPSettings(Document):
user.insert(ignore_permissions=True)
# always add default role.
user.add_roles(self.default_role)
- if self.ldap_group_field:
self.sync_roles(user, groups)
+
return user
def get_ldap_attributes(self):
| feat(ldap): sync ldap groups to roles | null | frappe/frappe | MIT License | Python |
@@ -19,9 +19,11 @@ import (
)
const (
- // envRedisPassword is a env variable name which stores redis password
+ // envRedisPassword is an env variable name which stores redis password
envRedisPassword = "REDIS_PASSWORD"
- // envRedisRetryCount is a env variable name which stores redis retry count
+ // envRedisUsername... | feat: add support for redis acl username/password flow | null | argoproj/argo-cd | Apache License 2.0 | Go |
@@ -239,6 +239,13 @@ class API {
return this.constructor.name;
}
+ /**
+ * Updates the token in options
+ */
+ public set token(token: string) {
+ this.options.token = token;
+ }
+
/**
* Call execute method
*/
| feat(api): add setter for token | null | negezor/vk-io | MIT License | TypeScript |
@@ -24,7 +24,7 @@ use function entries;
use function parsers;
use function registry;
-// Shortcode: [entries_fetch id="entry-id" field="field-name" default="default-value"]
+// Shortcode: [entries-fetch id="entry-id" field="field-name" default="default-value"]
parsers()->shortcodes()->addHandler('entries-fetch', static... | feat(shortcodes): update [entries-fetch] shortcode | null | flextype/flextype | MIT License | PHP |
@@ -109,6 +109,7 @@ activateBitcoinOverTOR()
echo "main.addnode=ndndword5lpb7eex.onion" >> /home/bitcoin/.${network}/${network}.conf
echo "main.addnode=6m2iqgnqjxh7ulyk.onion" >> /home/bitcoin/.${network}/${network}.conf
echo "main.addnode=5tuxetn7tar3q5kp.onion" >> /home/bitcoin/.${network}/${network}.conf
+ echo "mai... | feat: add bitcoind main tor node | null | rootzoll/raspiblitz | MIT License | Shell |
@@ -134,13 +134,25 @@ impl Operator for Aggregate {
.cloned()
.collect();
- // Derive cardinality. We can not estimate the cardinality of an aggregate with group by, until
- // we have information about distribution of group keys. So we pass through the cardinality.
let cardinality = if self.group_items.is_empty() {
//... | feat: enhance aggregator cardinality evaluation | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -9,6 +9,7 @@ use crate::{
};
use rlp::{Decodable, DecoderError, RlpStream};
use serde::{Deserialize, Serialize};
+use std::cmp::Ordering;
/// Details of a signed transaction
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
@@ -434,6 +435,28 @@ impl rlp::Encodable for TransactionReceipt {
}
}
+... | feat(core): impl Ord for receipt | null | gakonst/ethers-rs | Apache License 2.0 | Rust |
@@ -32,11 +32,14 @@ const columns = [
{
id: 'diseaseFromSource',
label: 'Reported disease/phenotype',
- renderCell: ({ diseaseFromSource, studyId }) => (
+ renderCell: ({ diseaseFromSource, studyId }) => {
+ const parsedDiseaseFromSource = diseaseFromSource.replace(/['"]+/g, '');
+ return (
<Link external to={otgStudyU... | feat: format OT Genetics diseaseFromSource | null | opentargets/platform-app | Apache License 2.0 | JavaScript |
-use std::fmt::Display;
+use std::{convert::TryFrom, fmt::Display};
use arrow_deps::arrow;
+use data_types::schema::InfluxFieldType;
/// A schema that is used to track the names and semantics of columns returned
/// in results out of various operations on a row group.
@@ -77,6 +78,26 @@ impl Display for ResultSchema {
... | feat: teach read_buffer schema -> data_types schema | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -445,9 +445,17 @@ int main(int argc, char *argv[])
printf("\n\nThis bot demonstrates how easy it is to have two distinct"
" APIs interacting with eachother (Reddit + Discord).\n"
"1. Type reddit.search<?query> <keywords> \n"
- "Ex1: reddit.search Hello everyone!\n"
- "Ex2: reddit.search?srs=CryptoCurrency+dogecoin d... | feat: better explanation for bot-reddit-search.c | null | cee-studio/orca | MIT License | C |
+package kv
+
+import (
+ "testing"
+
+ "github.com/google/go-cmp/cmp"
+ "github.com/influxdata/influxdb"
+)
+
+func Test_newTaskMatchFN(t *testing.T) {
+ ct := func(typ string, name string) *influxdb.Task {
+ return &influxdb.Task{
+ Type: typ,
+ OrganizationID: 1,
+ Name: name,
+ }
+ }
+
+ const (
+ NoOrg = influxdb.... | feat(kv): Add unit tests for expected behavior of taskMatchFn | null | influxdata/influxdb | MIT License | Go |
@@ -26,15 +26,15 @@ public int GetAffinityForView(Type view)
public IObservable<bool> GetActivationForView(IActivatableView view)
{
if (!(view is IVisual visual)) return Observable.Return(false);
- if (view is Control control) return GetActivationForControl(control);
- return GetActivationForVisual(visual);
+ if (view ... | feat(Reactive): Address rule CA1822 | null | avaloniaui/avalonia | MIT License | C# |
@@ -100,6 +100,9 @@ import org.hisp.dhis.node.types.CollectionNode;
import org.hisp.dhis.node.types.ComplexNode;
import org.hisp.dhis.node.types.RootNode;
import org.hisp.dhis.node.types.SimpleNode;
+import org.hisp.dhis.patch.Patch;
+import org.hisp.dhis.patch.PatchParams;
+import org.hisp.dhis.patch.PatchService;
imp... | feat: support old patch for API version 34, 35, 36 | null | dhis2/dhis2-core | BSD 3-Clause New or Revised License | Java |
+/* Anchor gets its content from the `children` prop */
+/* eslint-disable jsx-a11y/anchor-has-content */
+import React, { Component } from "react";
+import PropTypes from "prop-types";
+import track from "lib/tracking/track";
+
+@track((ownProps) => ({
+ component: "Anchor",
+ url: ownProps.href
+}))
+export default c... | feat: add Anchor component with tracking | null | reactioncommerce/example-storefront | Apache License 2.0 | JavaScript |
+package io.clappr.player.extensions
+
+fun Double.asTimeInterval(): String {
+ val hours = this.toInt() / 3600
+ val hoursStr = "%02d".format(hours)
+ val minutesStr = "%02d".format((this.toInt() / 60) % 60)
+ val secondsStr = "%02d".format(this.toInt() % 60)
+
+ return if (hours > 0) "$hoursStr:$minutesStr:$secondsSt... | feat(time_indicator): create double extension to build time interval | null | clappr/clappr-android | BSD 3-Clause New or Revised License | Kotlin |
@@ -47,16 +47,52 @@ interface IPropsHeader {
scrollWidth: number
}
/** This is a container component that allows ractivity with the Timeline collection */
-export const SourceLayerItemContainer = withTracker((props: IPropsHeader) => {
- let overrides: {
- [key: string]: any
- } = {}
+export const SourceLayerItemContain... | feat: a better implementation of SourceLayerItemContainer | null | nrkno/tv-automation-server-core | MIT License | TypeScript |
@@ -29,8 +29,6 @@ pub enum OckamError {
AttestationNonceDoesNotMatch, // 15
InvalidHubResponse,
InvalidParameter,
- SecureChannelVerificationFailed,
- SecureChannelCannotBeAuthenticated,
NoSuchProtocol,
SystemAddressNotBound,
SystemInvalidConfiguration,
| feat(rust): remove unused errors from `ockam` crate | null | ockam-network/ockam | Apache License 2.0 | Rust |
+import * as _ from 'underscore'
+import * as saferEval from 'safer-eval'
+import {
+ IMOSConnectionStatus,
+ IMOSDevice,
+ IMOSListMachInfo,
+ MosString128,
+ MosTime,
+ IMOSRunningOrder,
+ IMOSRunningOrderBase,
+ IMOSRunningOrderStatus,
+ IMOSStoryStatus,
+ IMOSItemStatus,
+ IMOSStoryAction,
+ IMOSROStory,
+ IMOSROAc... | feat: started implementation of mos-templates | null | nrkno/tv-automation-server-core | MIT License | TypeScript |
@@ -530,5 +530,12 @@ task('run-benchmark', async (done) => {
execSync(`flutter run -d ${androidDevices[0].id} --profile`, {stdio: 'inherit', cwd: paths.performanceTests});
execSync(`flutter run -d ${androidDevices[0].id} --profile`, {stdio: 'inherit', cwd: paths.performanceTests});
execSync(`flutter run -d ${androidDev... | feat: run benchmark 10 times | null | openkraken/kraken | Apache License 2.0 | JavaScript |
@@ -1045,8 +1045,11 @@ static void gen_use_default_inject_settings(FILE *fp, struct jc_struct *s)
i, act.inject_arg_decor, act.c_name);
break;
case INJECT_IF_NOT_EMPTY_STR:
+ if (f->type.decor.tag == DEC_POINTER)
fprintf(fp, " if (p->%s != NULL && strlen(p->%s) != 0)\n",
act.c_name, act.c_name);
+ else
+ fprintf(fp, " ... | feat: dont check null if it is an array | null | cee-studio/orca | MIT License | C |
@@ -503,6 +503,8 @@ struct ClientContextImpl {
database_name: String,
producer_queue_msg_count: Metric<U64Gauge>,
producer_queue_msg_bytes: Metric<U64Gauge>,
+ producer_queue_max_msg_count: Metric<U64Gauge>,
+ producer_queue_max_msg_bytes: Metric<U64Gauge>,
tx_bytes: Metric<U64Gauge>,
rx_bytes: Metric<U64Gauge>,
consum... | feat: add more Kafka metrics | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -88,24 +88,6 @@ impl Parse for Element {
tokens: content.parse()?,
},
});
- // if content.fork().parse::<ExprClosure>().is_ok() {
- // //
- // attributes.push(ElementAttrNamed {
- // el_name: el_name.clone(),
- // attr: ElementAttr::EventClosure {
- // name,
- // closure: content.parse()?,
- // },
- // });
- // } el... | feat: collapse rsx | null | dioxuslabs/dioxus | Apache License 2.0 | Rust |
@@ -56,6 +56,11 @@ final class Timeout {
*/
private final AtomicBoolean finish;
+ /**
+ * Synchronization lock.
+ */
+ private final Object lock;
+
/**
* The shortest constructor with default preset for units and thread.
*
@@ -98,6 +103,7 @@ final class Timeout {
this.unit = unit;
this.thread = thread;
this.finish = ne... | feat(#1423): make all methods inside Timeout as synchronizes in order to prevent race conditions | null | cqfn/eo | MIT License | Java |
@@ -2,6 +2,8 @@ package com.codingame.gameengine.core;
import java.lang.reflect.Type;
+import javax.inject.Provider;
+
import com.google.inject.AbstractModule;
import com.google.inject.Injector;
import com.google.inject.Key;
@@ -41,13 +43,53 @@ class GameEngineModule extends AbstractModule {
return abstractPlayer;
}
+ ... | feat(sdk): resolve injection game manager providers | null | codingame/codingame-game-engine | MIT License | Java |
@@ -14,7 +14,11 @@ impl FromStr for PgConnectOptions {
let mut options = Self::default();
if let Some(host) = url.host_str() {
- options = options.host(host);
+ let host_decoded = percent_decode_str(host);
+ options = match host_decoded.clone().next() {
+ Some(b'/') => options.socket(&*host_decoded.decode_utf8().map_er... | feat: correctly handle percent-encoded socket as host for postgres URI | null | launchbadge/sqlx | Apache License 2.0 | Rust |
@@ -30,6 +30,8 @@ public enum MouseInputMode
#region Public fields
+ [Header("General Settings")]
+
[Tooltip("Show control information in the upper left corner of the screen.")]
public bool showControlHints = true;
[Tooltip("Hide hands when disabling them.")]
@@ -39,14 +41,14 @@ public enum MouseInputMode
[Tooltip("Dis... | feat(SDK): allow custom colour for simulator hands | null | extendrealityltd/vrtk | MIT License | C# |
package org.eolang;
-import java.io.PrintStream;
+import java.util.logging.Logger;
/**
* An attribute that logs all its operations to the console (very
@@ -47,9 +47,9 @@ final class AtLogged implements Attr {
private final String owner;
/**
- * Output stream.
+ * Logger.
*/
- private final PrintStream out;
+ private fi... | feat(#1664): replace stream with logger | null | cqfn/eo | MIT License | Java |
@@ -109,6 +109,7 @@ void parse_args( const vector<string>& args
, vector<asio::ip::address>* ifaddrs
, bool* ping_cmd
, bool* find_node_cmd
+ , bool* get_peers_cmd
, optional<GetCmd>* get_cmd
, optional<PutCmd>* put_cmd)
{
@@ -145,6 +146,9 @@ void parse_args( const vector<string>& args
if (args[2] == "find_node") {
*fi... | feat(test/bep5): Impl get_peers behind option | null | equalitie/ouinet | MIT License | C++ |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.