author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
129,187
20.12.2019 17:27:17
18,000
8b4425d64c980079e4f58e543221797b2bde1179
[lib] logOut should never reject or take longer than 500ms
[ { "change_type": "MODIFY", "old_path": "lib/actions/user-actions.js", "new_path": "lib/actions/user-actions.js", "diff": "@@ -24,6 +24,7 @@ import type { UserSearchResult } from '../types/search-types';\nimport threadWatcher from '../shared/thread-watcher';\nimport { getConfig } from '../utils/confi...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[lib] logOut should never reject or take longer than 500ms
129,187
20.12.2019 17:36:39
18,000
75ba179813d831a270d5bea1a5eeea8000c672f0
[lib] Don't try to openSocket on native unless user cookie available
[ { "change_type": "MODIFY", "old_path": "lib/socket/socket.react.js", "new_path": "lib/socket/socket.react.js", "diff": "@@ -140,7 +140,11 @@ class Socket extends React.PureComponent<Props, State> {\n}\nopenSocket(newStatus: ConnectionStatus) {\n- if (this.props.frozen) {\n+ if (\n+ this.props.frozen...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[lib] Don't try to openSocket on native unless user cookie available
129,187
20.12.2019 17:54:51
18,000
c99a64b145c351f0efc5a6aef9d6dcc14c5f6395
[lib] deleteAccount should never reject or take longer than 500ms
[ { "change_type": "MODIFY", "old_path": "lib/actions/user-actions.js", "new_path": "lib/actions/user-actions.js", "diff": "@@ -57,10 +57,18 @@ async function deleteAccount(\nfetchJSON: FetchJSON,\npassword: string,\n): Promise<LogOutResult> {\n- const response = await fetchJSON('delete_account', { pa...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[lib] deleteAccount should never reject or take longer than 500ms
129,187
22.12.2019 15:37:10
18,000
91ab59a3c4fec3c0e9d5c1e21ff9427b1caf9c24
Pass currentUserInfo into action-utils
[ { "change_type": "MODIFY", "old_path": "lib/utils/action-utils.js", "new_path": "lib/utils/action-utils.js", "diff": "@@ -9,7 +9,11 @@ import type {\nimport type { LoadingOptions, LoadingInfo } from '../types/loading-types';\nimport type { FetchJSON, FetchJSONOptions } from './fetch-json';\nimport t...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
Pass currentUserInfo into action-utils
129,187
22.12.2019 16:58:49
18,000
bf7a030e7ecbd78e5c553a79867c0cbcffd3d94a
account-regexes.js -> account-utils.js
[ { "change_type": "RENAME", "old_path": "lib/shared/account-regexes.js", "new_path": "lib/shared/account-utils.js", "diff": "" }, { "change_type": "MODIFY", "old_path": "native/account/forgot-password-panel.react.js", "new_path": "native/account/forgot-password-panel.react.js", "d...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
account-regexes.js -> account-utils.js
129,187
22.12.2019 17:14:48
18,000
62f3ab3d30db373c44813bffaa14dce62f682985
Ignore expired session downgrades in SET_NEW_SESSION
[ { "change_type": "MODIFY", "old_path": "lib/shared/account-utils.js", "new_path": "lib/shared/account-utils.js", "diff": "// @flow\n+import type { CurrentUserInfo } from '../types/user-types';\n+\nconst validUsernameRegex = /^[a-zA-Z0-9-_]+$/;\nconst validEmailRegex = new RegExp(\n/^[a-zA-Z0-9.!#$%&...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
Ignore expired session downgrades in SET_NEW_SESSION
129,187
22.12.2019 17:31:18
18,000
175bca27b0d5282e5f467612aae139c50793f268
Ignore expired session downgrades in socket SET_NEW_SESSION
[ { "change_type": "MODIFY", "old_path": "lib/socket/socket.react.js", "new_path": "lib/socket/socket.react.js", "diff": "@@ -38,6 +38,7 @@ import type {\n} from '../utils/action-utils';\nimport type { LogOutResult } from '../types/account-types';\nimport type { CalendarQuery } from '../types/entry-ty...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
Ignore expired session downgrades in socket SET_NEW_SESSION
129,187
22.12.2019 18:07:04
18,000
8acf5e4000a3b9a22fb9d8fbdf1c8355997997c2
Ignore expired session downgrades in LOG_OUT_SUCCESS and DELETE_ACCOUNT_SUCCESS
[ { "change_type": "MODIFY", "old_path": "lib/actions/user-actions.js", "new_path": "lib/actions/user-actions.js", "diff": "@@ -5,7 +5,11 @@ import {\nverifyField,\ntype HandleVerificationCodeResult,\n} from '../types/verify-types';\n-import type { UserInfo, AccountUpdate } from '../types/user-types';...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
Ignore expired session downgrades in LOG_OUT_SUCCESS and DELETE_ACCOUNT_SUCCESS
129,187
23.12.2019 15:57:26
18,000
14fd7255066fcb881022e56ae6f9d4b128cb65f1
[lib] Fix notif text for multimedia sent to group chat
[ { "change_type": "MODIFY", "old_path": "lib/shared/notif-utils.js", "new_path": "lib/shared/notif-utils.js", "diff": "@@ -418,7 +418,7 @@ function fullNotifTextsForMessageInfo(\nbody = `sent you ${contentString}`;\nmerged = body;\n} else {\n- body = `${userString} send ${contentString}`;\n+ body = `...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[lib] Fix notif text for multimedia sent to group chat
129,187
23.12.2019 19:01:55
18,000
e9f8413c66a9196139e250c4423075ef39459057
[native] Rename to webpack.config.cjs New version of Node isn't cool with `require(web/webpack.config.js)`
[ { "change_type": "MODIFY", "old_path": "web/package.json", "new_path": "web/package.json", "diff": "\"license\": \"BSD-3-Clause\",\n\"scripts\": {\n\"clean\": \"rm -rf dist/ && rm -rf node_modules/\",\n- \"dev\": \"yarn concurrently --names=\\\"NODESSR,BROWSER\\\" -c \\\"bgBlue.bold,bgMagenta.bold\\...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Rename to webpack.config.cjs New version of Node isn't cool with `require(web/webpack.config.js)`
129,187
24.12.2019 12:56:26
18,000
c55d892fcc631023f051042786474022469b8ee7
Compare cookie and sessionID when determining if session downgrade is invalid
[ { "change_type": "MODIFY", "old_path": "lib/actions/user-actions.js", "new_path": "lib/actions/user-actions.js", "diff": "@@ -5,11 +5,7 @@ import {\nverifyField,\ntype HandleVerificationCodeResult,\n} from '../types/verify-types';\n-import type {\n- UserInfo,\n- AccountUpdate,\n- CurrentUserInfo,\n-...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
Compare cookie and sessionID when determining if session downgrade is invalid
129,187
24.12.2019 18:21:15
18,000
84e9bfa5a26a56fe62031fbb577365357dbe3cb1
[native] Hide MediaGalleryKeyboard when ChatInputState unmounts
[ { "change_type": "MODIFY", "old_path": "native/keyboard/keyboard-input-host.react.js", "new_path": "native/keyboard/keyboard-input-host.react.js", "diff": "@@ -26,11 +26,13 @@ import { styleSelector } from '../themes/colors';\nimport {\nmediaGalleryKeyboardName,\n} from '../media/media-gallery-keybo...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Hide MediaGalleryKeyboard when ChatInputState unmounts
129,187
26.12.2019 13:26:44
18,000
c1e0d69723c869968c985ab4b3071f5221ae218a
[lib] Don't persist queuedActivityUpdates until persisting navInfo
[ { "change_type": "MODIFY", "old_path": "lib/reducers/connection-reducer.js", "new_path": "lib/reducers/connection-reducer.js", "diff": "@@ -105,6 +105,9 @@ export default function reduceConnectionInfo(\nreturn {\n...action.payload.connection,\nstatus: \"connecting\",\n+ queuedActivityUpdates: action...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[lib] Don't persist queuedActivityUpdates until persisting navInfo
129,187
26.12.2019 13:42:07
18,000
8b7fcabd9afb1808fdc325a7f537e0f8c1ac0d71
[native] Don't set unread to false in validateState for background action types (Unless it's clear that the app is in the foreground)
[ { "change_type": "MODIFY", "old_path": "native/redux/action-types.js", "new_path": "native/redux/action-types.js", "diff": "// @flow\n+import { saveMessagesActionType } from 'lib/actions/message-actions';\n+\nexport const handleURLActionType = \"HANDLE_URL\";\nexport const navigateToAppActionType = ...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Don't set unread to false in validateState for background action types (Unless it's clear that the app is in the foreground)
129,187
16.01.2020 13:59:08
-32,400
6daacd841ca6aa309008b3b44f71001477d2c5c9
[web] Don't upload any files in a batch if one fails validation
[ { "change_type": "MODIFY", "old_path": "web/chat/chat-input-state-container.react.js", "new_path": "web/chat/chat-input-state-container.react.js", "diff": "@@ -343,13 +343,16 @@ class ChatInputStateContainer extends React.PureComponent<Props, State> {\nasync appendFiles(threadID: string, files: $Rea...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[web] Don't upload any files in a batch if one fails validation
129,187
16.01.2020 13:59:31
-32,400
1f3680da0125400f1a8f85621e3510bad7c73ec8
[server] Maintain own list of valid MIME types
[ { "change_type": "MODIFY", "old_path": "server/src/uploads/media-utils.js", "new_path": "server/src/uploads/media-utils.js", "diff": "@@ -8,6 +8,12 @@ import { fileInfoFromData } from 'lib/utils/file-utils';\nconst fiveMegabytes = 5 * 1024 * 1024;\n+const allowedMimeTypes = new Set([\n+ \"image/png\...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[server] Maintain own list of valid MIME types
129,187
16.01.2020 14:00:00
-32,400
6cf94203aaa7f181b4d6432b281d9026409250b2
[web] Maintain own list of valid MIME types
[ { "change_type": "MODIFY", "old_path": "web/utils/media-utils.js", "new_path": "web/utils/media-utils.js", "diff": "import type { MediaType, Dimensions } from 'lib/types/media-types';\n-import {\n- fileInfoFromData,\n- mimeTypesToMediaTypes,\n-} from 'lib/utils/file-utils';\n+import { fileInfoFromDa...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[web] Maintain own list of valid MIME types
129,187
16.01.2020 14:39:39
-32,400
1d0d69190c33db6e4e0872a4a61850a5b75680a8
[native] react-native-progress@^4.0.3
[ { "change_type": "MODIFY", "old_path": "native/ios/Podfile", "new_path": "native/ios/Podfile", "diff": "@@ -16,7 +16,6 @@ target 'SquadCal' do\npod 'React-RCTText', :path => '../../node_modules/react-native/Libraries/Text'\npod 'React-RCTVibration', :path => '../../node_modules/react-native/Librarie...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] react-native-progress@^4.0.3
129,187
17.01.2020 16:00:33
-32,400
4239663a8374ad14c2d53590cbd31fbfc1b3509f
[native] Don't upload any files in a batch if one fails validation And show a message when the failure happens
[ { "change_type": "MODIFY", "old_path": "native/chat/chat-input-state-container.react.js", "new_path": "native/chat/chat-input-state-container.react.js", "diff": "@@ -43,6 +43,7 @@ import { createMediaMessageInfo } from 'lib/shared/message-utils';\nimport { ChatInputStateContext } from './chat-input-...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Don't upload any files in a batch if one fails validation And show a message when the failure happens
129,187
28.01.2020 13:41:00
28,800
236308ea40e3b8ec68463f65983153960780e53a
[native] Keep Dimensions together in ClientImageInfo
[ { "change_type": "MODIFY", "old_path": "native/chat/chat-input-state-container.react.js", "new_path": "native/chat/chat-input-state-container.react.js", "diff": "@@ -582,14 +582,14 @@ class ChatInputStateContainer extends React.PureComponent<Props, State> {\nretryMedia.map(singleMedia => {\nif (sing...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Keep Dimensions together in ClientImageInfo
129,187
28.01.2020 13:49:19
28,800
5669dcfa57a95d31619e1f5c6df7488b5a6aa748
[native] ClientImageInfo -> ClientMediaInfo
[ { "change_type": "MODIFY", "old_path": "native/chat/chat-input-state-container.react.js", "new_path": "native/chat/chat-input-state-container.react.js", "diff": "import type {\nPendingMultimediaUploads,\n- ClientImageInfo,\n+ ClientMediaInfo,\n} from './chat-input-state';\nimport type { AppState } f...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] ClientImageInfo -> ClientMediaInfo
129,187
28.01.2020 15:37:40
28,800
bc70783568ef4ed10d530ff4cd04313546f7e750
[native] Kill GalleryMediaInfo and ValidateMediaInput
[ { "change_type": "MODIFY", "old_path": "native/chat/chat-input-state-container.react.js", "new_path": "native/chat/chat-input-state-container.react.js", "diff": "@@ -20,7 +20,6 @@ import {\ntype RawMediaMessageInfo,\n} from 'lib/types/message-types';\nimport type { MediaValidationResult } from '../u...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Kill GalleryMediaInfo and ValidateMediaInput
129,187
28.01.2020 16:53:30
28,800
2bb1f1cd22f3b680e5a191ae04bdae8b55d7ba90
[native] Pass filename through stack for photo too For upcoming improved logging
[ { "change_type": "MODIFY", "old_path": "lib/types/media-types.js", "new_path": "lib/types/media-types.js", "diff": "@@ -19,6 +19,8 @@ export type Image = {|\nuri: string,\ntype: \"photo\",\ndimensions: Dimensions,\n+ // stored on native only during creation in case retry needed after state lost\n+ f...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Pass filename through stack for photo too For upcoming improved logging
129,187
28.01.2020 17:15:49
28,800
757f04667f4d418b51755f156d6d10f138c10b10
Store unlinkDepartingURI in Redux state
[ { "change_type": "MODIFY", "old_path": "lib/types/media-types.js", "new_path": "lib/types/media-types.js", "diff": "@@ -21,6 +21,7 @@ export type Image = {|\ndimensions: Dimensions,\n// stored on native only during creation in case retry needed after state lost\nfilename?: string,\n+ unlinkURIAfterR...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
Store unlinkDepartingURI in Redux state
129,187
28.01.2020 19:02:44
28,800
8fa1db9c20e8da65fc62c38d6f897cfd8d49e391
[native] Call validateMedia after creating MultimediaMessage
[ { "change_type": "MODIFY", "old_path": "native/chat/chat-input-state-container.react.js", "new_path": "native/chat/chat-input-state-container.react.js", "diff": "@@ -19,7 +19,6 @@ import {\ntype RawImagesMessageInfo,\ntype RawMediaMessageInfo,\n} from 'lib/types/message-types';\n-import type { Media...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Call validateMedia after creating MultimediaMessage
129,187
28.01.2020 19:19:37
28,800
924e6f47ad6a826864c435456d748b2368fd0edc
[native] displayActionResultModal on any issues with sendMultimediaMessage
[ { "change_type": "MODIFY", "old_path": "native/chat/chat-input-state-container.react.js", "new_path": "native/chat/chat-input-state-container.react.js", "diff": "@@ -40,6 +40,7 @@ import { createMediaMessageInfo } from 'lib/shared/message-utils';\nimport { ChatInputStateContext } from './chat-input-...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] displayActionResultModal on any issues with sendMultimediaMessage
129,187
03.02.2020 12:15:23
18,000
b252b64b9336d9e650fea28aca0534dd9e66ae6d
Update react-router Flow libdefs
[ { "change_type": "ADD", "old_path": null, "new_path": "server/flow-typed/npm/history_v4.x.x.js", "diff": "+// flow-typed signature: e461b9fe923a5f62ed607392b0742c02\n+// flow-typed version: c6154227d1/history_v4.x.x/flow_>=v0.25.x <=v0.103.x\n+\n+declare module \"history/createBrowserHistory\" {\n+ ...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
Update react-router Flow libdefs
129,187
03.02.2020 13:57:41
18,000
ed31c33dde0e781065f1db1c2066812e9304be85
[native] Use
[ { "change_type": "MODIFY", "old_path": "native/ios/Podfile", "new_path": "native/ios/Podfile", "diff": "@@ -32,5 +32,8 @@ target 'SquadCal' do\npod 'react-native-ffmpeg/min-lts', :podspec => '../../node_modules/react-native-ffmpeg/ios/react-native-ffmpeg.podspec'\npod 'react-native-video/VideoCachin...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Use 1PasswordExtension@1.8.6
129,187
06.02.2020 18:28:09
18,000
259b08e42c3eaad72ba1fbec14e7f5c7e959244e
[native] TagInput hack to make backspace work correctly on Android
[ { "change_type": "MODIFY", "old_path": "native/components/tag-input.react.js", "new_path": "native/components/tag-input.react.js", "diff": "@@ -130,6 +130,7 @@ class TagInput<T> extends React.PureComponent<Props<T>, State> {\n// refs\ntagInput: ?React.ElementRef<typeof TextInput> = null;\nscrollView...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] TagInput hack to make backspace work correctly on Android
129,187
06.02.2020 23:19:24
18,000
79ff4b682c3db903cda43a2471d98be9d2f65236
[native] Android TextInput transparent editTextBackground
[ { "change_type": "MODIFY", "old_path": "native/android/app/src/main/res/values/styles.xml", "new_path": "native/android/app/src/main/res/values/styles.xml", "diff": "<resources>\n<style name=\"AppTheme\" parent=\"Theme.AppCompat.Light.NoActionBar\">\n+ <item name=\"android:editTextBackground\">@andr...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Android TextInput transparent editTextBackground
129,187
07.02.2020 13:22:18
18,000
f2d322e95629e2106d1e585ffda2d9050ff2203a
[native] Fix up some color scheme issues Primarily placeholder color on `TextInput`s
[ { "change_type": "MODIFY", "old_path": "native/components/tag-input.react.js", "new_path": "native/components/tag-input.react.js", "diff": "@@ -239,11 +239,13 @@ class TagInput<T> extends React.PureComponent<Props<T>, State> {\n}\nrender() {\n- const tagColor = this.props.tagColor || this.props.colo...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Fix up some color scheme issues Primarily placeholder color on `TextInput`s
129,187
10.02.2020 10:55:23
18,000
e5f27cbc21f8fe2a28656fd71e0bc1880fda9664
[native] Fix ThreadSettings behavior when editing name/description
[ { "change_type": "MODIFY", "old_path": "native/chat/settings/thread-settings-description.react.js", "new_path": "native/chat/settings/thread-settings-description.react.js", "diff": "@@ -209,23 +209,25 @@ class ThreadSettingsDescription extends React.PureComponent<Props> {\nreturn;\n}\n+ const editDe...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Fix ThreadSettings behavior when editing name/description
129,187
10.02.2020 14:00:33
18,000
d524fb06edf81f602f538505057bdc42e9d1faac
[native] Fix up display of emojis in Entry Use `System` `fontFamily`, adjust spacing, and hide `Text` while `TextInput` is active
[ { "change_type": "MODIFY", "old_path": "native/calendar/entry.react.js", "new_path": "native/calendar/entry.react.js", "diff": "@@ -375,7 +375,11 @@ class InternalEntry extends React.Component<Props, State> {\nif (rawText === \"\" || rawText.slice(-1) === \"\\n\") {\nrawText += \" \";\n}\n- const te...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Fix up display of emojis in Entry Use `System` `fontFamily`, adjust spacing, and hide `Text` while `TextInput` is active
129,187
10.02.2020 14:07:39
18,000
e1144a7d6cca1253847cdc7be3e3637f7772bedb
[native] codeVersion -> 42
[ { "change_type": "MODIFY", "old_path": "native/android/app/build.gradle", "new_path": "native/android/app/build.gradle", "diff": "@@ -131,8 +131,8 @@ android {\napplicationId \"org.squadcal\"\nminSdkVersion rootProject.ext.minSdkVersion\ntargetSdkVersion rootProject.ext.targetSdkVersion\n- versionCo...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] codeVersion -> 42
129,187
10.02.2020 14:35:55
18,000
90a0ce023e068a349747588b59e45f0ff926a20d
[server] Use license key for GeoIP update
[ { "change_type": "MODIFY", "old_path": "server/package.json", "new_path": "server/package.json", "diff": "\"babel-build\": \"yarn --silent babel src/ --out-dir dist/ --config-file ./.babelrc --verbose --ignore 'src/lib/flow-typed','src/lib/node_modules','src/lib/package.json','src/web/flow-typed','s...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[server] Use license key for GeoIP update
129,187
12.02.2020 18:03:22
18,000
445e99e5e5c786fe61e2cbce0b15ca7128efaa23
Return partial details from fileInfoFromData on failure
[ { "change_type": "MODIFY", "old_path": "lib/utils/file-utils.js", "new_path": "lib/utils/file-utils.js", "diff": "@@ -4,19 +4,23 @@ import type { MediaType } from '../types/media-types';\nimport fileType from 'file-type';\n-type FileInfo = {| name: string, mime: string, mediaType: MediaType |};\n+ty...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
Return partial details from fileInfoFromData on failure
129,187
12.02.2020 21:22:49
18,000
644acd9118d9d695761214cdb6b1869988ddac9b
MediaMission for validateMedia on native
[ { "change_type": "MODIFY", "old_path": "lib/types/media-types.js", "new_path": "lib/types/media-types.js", "diff": "@@ -96,3 +96,136 @@ export type UpdateMultimediaMessageMediaPayload = {|\nexport type UploadDeletionRequest = {|\nid: string,\n|};\n+\n+export type MediaMissionStep =\n+ | {|\n+ step: ...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
MediaMission for validateMedia on native
129,187
17.02.2020 21:16:07
28,800
226ebadf27531a6d84fd9c1b3a3ae9cb564fac7f
MediaMission for transcodeVideo on native
[ { "change_type": "MODIFY", "old_path": "lib/types/media-types.js", "new_path": "lib/types/media-types.js", "diff": "@@ -97,6 +97,15 @@ export type UploadDeletionRequest = {|\nid: string,\n|};\n+export type VideoProbeMediaMissionStep = {|\n+ step: \"video_probe\",\n+ success: bool,\n+ time: number, /...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
MediaMission for transcodeVideo on native
129,187
02.03.2020 18:28:46
18,000
382b7f68750614845ccae440647f4c453d18c276
MediaMission for convertMedia on native
[ { "change_type": "MODIFY", "old_path": "lib/types/media-types.js", "new_path": "lib/types/media-types.js", "diff": "@@ -21,7 +21,7 @@ export type Image = {|\ndimensions: Dimensions,\n// stored on native only during creation in case retry needed after state lost\nfilename?: string,\n- unlinkURIAfterR...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
MediaMission for convertMedia on native
129,187
02.03.2020 18:46:47
18,000
ee017152974a93bf29a015c4a452f293208a25ec
[native] Combine validateMedia and convertMedia into processMedia
[ { "change_type": "MODIFY", "old_path": "native/chat/chat-input-state-container.react.js", "new_path": "native/chat/chat-input-state-container.react.js", "diff": "@@ -39,7 +39,7 @@ import {\nimport { createMediaMessageInfo } from 'lib/shared/message-utils';\nimport { ChatInputStateContext } from './c...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Combine validateMedia and convertMedia into processMedia
129,187
02.03.2020 19:00:28
18,000
9be892adfe0368090a94ccb97a9c6df411eef86c
[native] Keep Redux info needed for media retry in localMediaCreationInfo
[ { "change_type": "MODIFY", "old_path": "lib/types/media-types.js", "new_path": "lib/types/media-types.js", "diff": "@@ -14,14 +14,18 @@ export const dimensionsPropType = PropTypes.shape({\nexport type MediaType = \"photo\" | \"video\";\n+// stored on native only during creation in case retry needed ...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Keep Redux info needed for media retry in localMediaCreationInfo
129,187
02.03.2020 20:02:13
18,000
8bd56af83c3b667d06aa097161336e1b992f80d5
New type MediaSelection for native
[ { "change_type": "MODIFY", "old_path": "lib/types/media-types.js", "new_path": "lib/types/media-types.js", "diff": "@@ -14,18 +14,13 @@ export const dimensionsPropType = PropTypes.shape({\nexport type MediaType = \"photo\" | \"video\";\n-// stored on native only during creation in case retry needed ...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
New type MediaSelection for native
129,187
02.03.2020 22:59:11
18,000
e7c44b094796f5c067d107135fe0214071ed6a8d
Construct full MediaMission in native ChatInputStateContainer uploadFile
[ { "change_type": "MODIFY", "old_path": "lib/types/media-types.js", "new_path": "lib/types/media-types.js", "diff": "@@ -204,6 +204,16 @@ export type MediaMissionStep =\nsuccess: bool,\ntime: number, // ms\npath: string,\n+ |}\n+ | {|\n+ step: \"upload\",\n+ success: bool,\n+ time: number,\n+ |}\n+ |...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
Construct full MediaMission in native ChatInputStateContainer uploadFile
129,187
03.03.2020 00:45:10
18,000
7687adcfb7c4319b0cdccd32f79f333d23dff3b6
[native] Stop using data URI for upload on iOS We've been doing this since where we first started uploading images. It's not clear why we started, maybe the old version of React Native couldn't handle uploading `ph://` protocol?
[ { "change_type": "MODIFY", "old_path": "native/utils/media-utils.js", "new_path": "native/utils/media-utils.js", "diff": "@@ -309,10 +309,10 @@ async function convertMedia(\nblob = newValidationResult.blob;\n}\n- let fileDataDetectionStep, dataURI;\n+ let fileDataDetectionStep;\nif (blob) {\nconst f...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Stop using data URI for upload on iOS We've been doing this since 5b1fee81c8029488ae1086900316d3869d0eb014 where we first started uploading images. It's not clear why we started, maybe the old version of React Native couldn't handle uploading `ph://` protocol?
129,187
03.03.2020 17:03:14
18,000
040010e03b1682c715ede70cdc226d0f5bba3652
[lib] InconsistencyReportHandler -> ReportHandler
[ { "change_type": "MODIFY", "old_path": "lib/selectors/socket-selectors.js", "new_path": "lib/selectors/socket-selectors.js", "diff": "@@ -26,7 +26,7 @@ import { values, hash } from '../utils/objects';\nimport { currentCalendarQuery } from './nav-selectors';\nimport threadWatcher from '../shared/thre...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[lib] InconsistencyReportHandler -> ReportHandler
129,187
03.03.2020 18:08:18
18,000
565c11034a383a612627c57d9c9e5d76846ebfd9
Store ClientReportCreationRequests instead of ClientInconsistencyResponses in Redux
[ { "change_type": "MODIFY", "old_path": "lib/reducers/entry-reducer.js", "new_path": "lib/reducers/entry-reducer.js", "diff": "@@ -14,8 +14,6 @@ import {\nprocessUpdatesActionType,\n} from '../types/update-types';\nimport {\n- type ClientEntryInconsistencyClientResponse,\n- type ServerRequest,\nserve...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
Store ClientReportCreationRequests instead of ClientInconsistencyResponses in Redux
129,187
04.03.2020 11:28:35
18,000
514500358aa54765392b54b872e603856b0e5449
Actually upload and handle MediaMission reports
[ { "change_type": "MODIFY", "old_path": "lib/actions/report-actions.js", "new_path": "lib/actions/report-actions.js", "diff": "@@ -24,7 +24,10 @@ async function sendReport(\nreturn { id: response.id };\n}\n+const queueReportsActionType = \"QUEUE_REPORTS\";\n+\nexport {\nsendReportActionTypes,\nsendRe...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
Actually upload and handle MediaMission reports
129,187
04.03.2020 15:45:19
18,000
7ad509458428960d1067bd76b836b464fd83a444
[native] Try to keep original media filename
[ { "change_type": "MODIFY", "old_path": "native/utils/media-utils.js", "new_path": "native/utils/media-utils.js", "diff": "@@ -15,6 +15,7 @@ import invariant from 'invariant';\nimport {\nfileInfoFromData,\nmimeTypesToMediaTypes,\n+ stripExtension,\n} from 'lib/utils/file-utils';\nimport { transcodeVi...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Try to keep original media filename
129,187
17.03.2020 18:05:23
14,400
1b108e3fb76cf7b0e2790f976987517a2830244f
[server] run-nvm.sh -> run-prod.sh
[ { "change_type": "MODIFY", "old_path": "server/bash/deploy.sh", "new_path": "server/bash/deploy.sh", "diff": "@@ -31,7 +31,7 @@ su $DAEMON_USER -c \"server/bash/setup.sh\"\n# STEP 2: test if the binary crashes within 60 seconds\nset +e\n-su $DAEMON_USER -c \"cd server && PORT=3001 timeout 60 bash/ru...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[server] run-nvm.sh -> run-prod.sh
129,187
17.03.2020 18:26:52
14,400
e0261b639fa38b7b57f782b362471316bc21d503
[server] Use nvm on dev environment
[ { "change_type": "ADD", "old_path": null, "new_path": "server/bash/source-nvm.sh", "diff": "+#!/bin/bash\n+\n+# source as: logged in user\n+# source from: package.json (via npm/yarn scripts)\n+\n+unset PREFIX\n+[ -s \"/usr/local/opt/nvm/nvm.sh\" ] && . \"/usr/local/opt/nvm/nvm.sh\"\n+[ -s \"$NVM_DIR...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[server] Use nvm on dev environment
129,187
18.03.2020 15:44:43
14,400
77891ceec9217a0b4cd6ef1409d825ba97d9cbd9
[server] Don't require server/facts/backups.json to exist
[ { "change_type": "MODIFY", "old_path": "server/src/cron/backups.js", "new_path": "server/src/cron/backups.js", "diff": "@@ -6,15 +6,34 @@ import zlib from 'zlib';\nimport dateFormat from 'dateformat';\nimport StreamCache from 'stream-cache';\nimport { promisify } from 'util';\n+import invariant from...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[server] Don't require server/facts/backups.json to exist
129,187
18.03.2020 17:32:13
14,400
8d98f0d03a597fd4fcf300575dd6e2d664fda8cc
[server] ScriptContext
[ { "change_type": "MODIFY", "old_path": "server/src/database.js", "new_path": "server/src/database.js", "diff": "@@ -5,7 +5,7 @@ import mysql from 'mysql2';\nimport SQL from 'sql-template-strings';\nimport dbConfig from '../secrets/db_config';\n-import { isDryRun } from './scripts/dry-run';\n+import ...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[server] ScriptContext
129,187
18.03.2020 17:39:50
14,400
5ebf68d59b58018af5edf0811c40db6233b71249
[server] ScriptContext.allowMultiStatementSQLQueries
[ { "change_type": "MODIFY", "old_path": "server/src/database.js", "new_path": "server/src/database.js", "diff": "@@ -14,10 +14,21 @@ export type QueryResult = [\nany[],\n];\n-const pool = mysqlPromise.createPool({\n+let pool;\n+function getPool() {\n+ if (pool) {\n+ return pool;\n+ }\n+ const scriptC...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[server] ScriptContext.allowMultiStatementSQLQueries
129,187
18.03.2020 17:40:02
14,400
7033157f90b29c87b2995c2e7601761eb95d787b
[server] createTables script
[ { "change_type": "ADD", "old_path": null, "new_path": "server/src/scripts/create-tables.js", "diff": "+// @flow\n+\n+import { setScriptContext } from './script-context';\n+import { endScript } from './utils';\n+import { dbQuery, SQL } from '../database';\n+\n+setScriptContext({\n+ allowMultiStatemen...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[server] createTables script
129,187
18.03.2020 23:04:54
14,400
36a2dbff9dc234dd59ec3891c519430066607d94
[server] Don't require push secrets to exist
[ { "change_type": "MODIFY", "old_path": "server/src/push/utils.js", "new_path": "server/src/push/utils.js", "diff": "@@ -4,15 +4,48 @@ import { threadPermissions } from 'lib/types/thread-types';\nimport apn from 'apn';\nimport fcmAdmin from 'firebase-admin';\n+import invariant from 'invariant';\nimpo...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[server] Don't require push secrets to exist
129,187
18.03.2020 23:16:51
14,400
4478cac4bdfda012a2c9607980b82f4dbb893a27
[server] Don't require server/secrets/geoip_license.json to exist
[ { "change_type": "MODIFY", "old_path": "server/src/cron/update-geoip-db.js", "new_path": "server/src/cron/update-geoip-db.js", "diff": "@@ -5,9 +5,35 @@ import geoip from 'geoip-lite';\nimport cluster from 'cluster';\nimport { handleAsyncPromise } from '../responders/handlers';\n-import geoipLicense...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[server] Don't require server/secrets/geoip_license.json to exist
129,187
19.03.2020 13:23:09
14,400
977d497f6b7cef5a1a9ff222d80087846a567b7e
[docs] Minor docs fix
[ { "change_type": "MODIFY", "old_path": "docs/dev_environment.md", "new_path": "docs/dev_environment.md", "diff": "@@ -369,8 +369,7 @@ yarn cleaninstall\nThe server side needs to see some config files before things can work. The first is a config file with MySQL details.\n```\n-cd squadcal\n-cd secre...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[docs] Minor docs fix
129,187
19.03.2020 15:44:30
14,400
6a467123b192751f2410fb6a4a334eb1bd56868b
[native] codeVersion -> 43
[ { "change_type": "MODIFY", "old_path": "native/android/app/build.gradle", "new_path": "native/android/app/build.gradle", "diff": "@@ -131,8 +131,8 @@ android {\napplicationId \"org.squadcal\"\nminSdkVersion rootProject.ext.minSdkVersion\ntargetSdkVersion rootProject.ext.targetSdkVersion\n- versionCo...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] codeVersion -> 43
129,187
19.03.2020 20:44:15
14,400
1ee5fbeeb03ccfefefa101100cb34d3af97a676b
[native] Update app vs. index and tests
[ { "change_type": "DELETE", "old_path": "native/__tests__/index.ios.js", "new_path": null, "diff": "-import 'react-native';\n-import React from 'react';\n-import Index from '../index.js';\n-\n-// Note: test renderer must be required after react-native.\n-import renderer from 'react-test-renderer';\n-...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Update app vs. index and tests
129,187
21.03.2020 12:14:10
14,400
12bc22a62a41e5a1d53110122cf84c682fa028eb
[native] Avoid using same route key for MesssageList
[ { "change_type": "MODIFY", "old_path": "native/navigation/navigation-setup.js", "new_path": "native/navigation/navigation-setup.js", "diff": "@@ -119,10 +119,10 @@ export type NavInfo = {|\nnavigationState: NavigationState,\n|};\n-const uniqueBaseId = `id-${Date.now()}`;\n-let uuidCount = 0;\n-funct...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Avoid using same route key for MesssageList
129,187
21.03.2020 15:37:07
14,400
72318133701fd12e3897a50c84f2a6aa4f38920e
[native] Avoid double-pruning MessageStore
[ { "change_type": "MODIFY", "old_path": "native/chat/message-store-pruner.react.js", "new_path": "native/chat/message-store-pruner.react.js", "diff": "@@ -31,9 +31,16 @@ class MessageStorePruner extends React.PureComponent<Props> {\nfrozen: PropTypes.bool.isRequired,\ndispatchActionPayload: PropTypes...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Avoid double-pruning MessageStore
129,187
22.03.2020 09:37:55
14,400
352b1e0d3bfde5ce7d5a594a5a6d2e3d2d4abef0
Standardize on babel.config.cjs
[ { "change_type": "RENAME", "old_path": "native/babel.config.js", "new_path": "native/babel.config.cjs", "diff": "" }, { "change_type": "RENAME", "old_path": "server/.babelrc", "new_path": "server/babel.config.cjs", "diff": "-{\n+module.exports = {\npresets: ['@babel/preset-react'...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
Standardize on babel.config.cjs
129,187
22.03.2020 10:59:13
14,400
30ab0f6cc8f0141347b63e2769f2f338a1f2cbfe
[web] babel.config.cjs
[ { "change_type": "ADD", "old_path": null, "new_path": "web/babel.config.cjs", "diff": "+module.exports = {\n+ presets: ['@babel/preset-react', '@babel/preset-flow'],\n+ plugins: [\n+ '@babel/plugin-proposal-class-properties',\n+ '@babel/plugin-proposal-object-rest-spread',\n+ ],\n+};\n" }, { ...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[web] babel.config.cjs
129,187
22.03.2020 23:32:39
14,400
20fea866ecce601d803f28e44b176580b17d0a86
[server] Only use local fonts if they are available
[ { "change_type": "MODIFY", "old_path": "server/src/responders/website-responders.js", "new_path": "server/src/responders/website-responders.js", "diff": "@@ -14,6 +14,8 @@ import ReactRedux from 'react-redux';\nimport ReactRouter from 'react-router';\nimport React from 'react';\nimport _keyBy from '...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[server] Only use local fonts if they are available
129,187
22.03.2020 23:42:16
14,400
a9559a26cb0f717e85b7c9f4e3b872acd9a0baf5
[native] codeVersion -> 44 This is an iOS-only build to test if introduced a regression in media library order on iOS
[ { "change_type": "MODIFY", "old_path": "native/android/app/build.gradle", "new_path": "native/android/app/build.gradle", "diff": "@@ -131,8 +131,8 @@ android {\napplicationId \"org.squadcal\"\nminSdkVersion rootProject.ext.minSdkVersion\ntargetSdkVersion rootProject.ext.targetSdkVersion\n- versionCo...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] codeVersion -> 44 This is an iOS-only build to test if 6a467123b192751f2410fb6a4a334eb1bd56868b introduced a regression in media library order on iOS
129,187
24.03.2020 00:42:45
14,400
5769a3c13ad831937a63e9df6cc4936693c05b51
[server] Allow createUpdates while logged out
[ { "change_type": "MODIFY", "old_path": "server/src/creators/update-creator.js", "new_path": "server/src/creators/update-creator.js", "diff": "@@ -42,7 +42,6 @@ import {\nconditionKeyForUpdateDataFromKey,\nrawUpdateInfoFromUpdateData,\n} from 'lib/shared/update-utils';\n-import { ServerError } from '...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[server] Allow createUpdates while logged out
129,187
24.03.2020 02:34:46
14,400
cb7aad567e296fdae9d5c49ce0073d64f2341a60
[native] Fix Android bug where notif press leads to log-in screen
[ { "change_type": "MODIFY", "old_path": "native/account/logged-out-modal.react.js", "new_path": "native/account/logged-out-modal.react.js", "diff": "@@ -209,6 +209,15 @@ class LoggedOutModal extends React.PureComponent<Props, State> {\ncomponentDidMount() {\nthis.mounted = true;\n+ if (this.props.reh...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Fix Android bug where notif press leads to log-in screen
129,187
24.03.2020 03:11:21
14,400
6ea3f455872a1bc8b7b160c0aefda157bdaefa91
Don't pass list of staged files to Flow from lint-staged
[ { "change_type": "ADD", "old_path": null, "new_path": ".lintstagedrc.js", "diff": "+const { CLIEngine } = require('eslint');\n+\n+const cli = new CLIEngine({ });\n+\n+module.exports = {\n+ \"*.js\": \"eslint --cache --fix\",\n+ \"lib/**/*.js\": function libFlow(files) { return \"yarn workspace lib f...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
Don't pass list of staged files to Flow from lint-staged
129,187
24.03.2020 03:28:14
14,400
4f9c337e64a68af71173c8ef67d65b7e5069ba90
[server] Fix getGeoipLicense to actually find license file
[ { "change_type": "MODIFY", "old_path": "server/src/cron/update-geoip-db.js", "new_path": "server/src/cron/update-geoip-db.js", "diff": "@@ -13,11 +13,11 @@ async function getGeoipLicense() {\n}\ntry {\nconst geoipLicenseImport = await import('../../secrets/geoip_license');\n- if (cachedGeoipLicense ...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[server] Fix getGeoipLicense to actually find license file
129,187
25.03.2020 23:42:13
14,400
524e4f6612d32beb90ef1da3cb1f70b850555e5c
[web] Autofocus ChatInputBar when loading thread
[ { "change_type": "MODIFY", "old_path": "web/chat/chat-input-bar.react.js", "new_path": "web/chat/chat-input-bar.react.js", "diff": "@@ -115,6 +115,11 @@ class ChatInputBar extends React.PureComponent<Props> {\n) {\n// Whenever a pending upload is added, we focus the textarea\nthis.textarea.focus();\...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[web] Autofocus ChatInputBar when loading thread
129,207
30.03.2020 23:53:57
-7,200
cfaa86d13b59b025044152013df3e0b9ed99b707
[server] Update sharp version
[ { "change_type": "MODIFY", "old_path": "server/package.json", "new_path": "server/package.json", "diff": "\"redis\": \"^2.8.0\",\n\"redux\": \"^4.0.4\",\n\"replacestream\": \"^4.0.3\",\n- \"sharp\": \"^0.23.1\",\n+ \"sharp\": \"^0.25.2\",\n\"sql-template-strings\": \"^2.2.2\",\n\"stream-cache\": \"^...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[server] Update sharp version
129,187
05.04.2020 23:48:37
14,400
37709afb0286356784cb08a0fb7f6c35b1492a96
[native] apns JSON test file for XCode 11.4
[ { "change_type": "ADD", "old_path": null, "new_path": "native/ios/apns/test.apns", "diff": "+{\n+ \"Simulator Target Bundle\": \"org.squadcal.app\",\n+ \"body\": \"asdasd\",\n+ \"title\": \"test\",\n+ \"threadID\": \"82251\",\n+ \"messageInfos\": \"[{\\\"type\\\":0,\\\"threadID\\\":\\\"82251\\\",\\\...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] apns JSON test file for XCode 11.4
129,187
26.03.2020 14:47:15
14,400
8511cbe519881f889209c78964529ed4562dd8f3
[native] App -> Root
[ { "change_type": "MODIFY", "old_path": "native/__tests__/test.js", "new_path": "native/__tests__/test.js", "diff": "import 'react-native';\nimport * as React from 'react';\n-import App from '../app.react';\n+import Root from '../root.react';\n// Note: test renderer must be required after react-nativ...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] App -> Root
129,187
26.03.2020 18:35:31
14,400
c2938afb629bf81c89d36a94b144fc797adcd6e2
[native] Separate nav state and Redux state in backgroundIsDarkSelector
[ { "change_type": "MODIFY", "old_path": "native/navigation/action-result-modal.react.js", "new_path": "native/navigation/action-result-modal.react.js", "diff": "@@ -119,5 +119,5 @@ const styles = {\nconst stylesSelector = overlayStyleSelector(styles);\nexport default connect((state: AppState) => ({\n...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Separate nav state and Redux state in backgroundIsDarkSelector
129,187
27.03.2020 14:49:18
14,400
b227067d278a083341b2c17ef7554381973dd74a
[native] Separate nav state and Redux state in calendarQuery nav selectors
[ { "change_type": "MODIFY", "old_path": "native/calendar/entry.react.js", "new_path": "native/calendar/entry.react.js", "diff": "@@ -744,7 +744,10 @@ const activeThreadPickerSelector = createIsForegroundSelector(\nconst Entry = connect(\n(state: AppState) => ({\n- calendarQuery: nonThreadCalendarQuer...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Separate nav state and Redux state in calendarQuery nav selectors
129,187
27.03.2020 19:57:48
14,400
6225d09e9081d1e22ab2609bc563883779b35f8b
[native] Move sendTextMessage to ChatInputStateContainer
[ { "change_type": "MODIFY", "old_path": "native/chat/chat-input-bar.react.js", "new_path": "native/chat/chat-input-bar.react.js", "diff": "@@ -5,12 +5,7 @@ import type {\nDispatchActionPayload,\nDispatchActionPromise,\n} from 'lib/utils/action-utils';\n-import {\n- type RawTextMessageInfo,\n- type Se...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Move sendTextMessage to ChatInputStateContainer
129,187
27.03.2020 20:12:05
14,400
5049e7a562a0aa4038c1211f2ab71d34eab89c15
[native] Move retrying sendTextMessage to ChatInputStateContainer
[ { "change_type": "MODIFY", "old_path": "native/chat/failed-send.react.js", "new_path": "native/chat/failed-send.react.js", "diff": "import type { ChatMessageInfoItemWithHeight } from './message.react';\nimport { chatMessageItemPropType } from 'lib/selectors/chat-selectors';\n-import {\n- messageType...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Move retrying sendTextMessage to ChatInputStateContainer
129,187
27.03.2020 22:43:38
14,400
a8c345e806038d29ce3ad1207d47c5eefb9557bd
[web] Move sendTextMessage to ChatInputStateContainer
[ { "change_type": "MODIFY", "old_path": "web/chat/chat-input-bar.react.js", "new_path": "web/chat/chat-input-bar.react.js", "diff": "@@ -15,12 +15,7 @@ import {\ntype ClientThreadJoinRequest,\ntype ThreadJoinPayload,\n} from 'lib/types/thread-types';\n-import {\n- type RawTextMessageInfo,\n- type Sen...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[web] Move sendTextMessage to ChatInputStateContainer
129,187
28.03.2020 01:09:41
14,400
c434645ab7b0ae193959fd376f2105251c4a1d05
[native] Fix lint-staged to not report eslint ignore files
[ { "change_type": "MODIFY", "old_path": ".lintstagedrc.js", "new_path": ".lintstagedrc.js", "diff": "@@ -3,7 +3,7 @@ const { CLIEngine } = require('eslint');\nconst cli = new CLIEngine({ });\nmodule.exports = {\n- \"*.js\": \"eslint --cache --fix\",\n+ '*.js': files => 'eslint --cache --fix --max-war...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Fix lint-staged to not report eslint ignore files
129,187
28.03.2020 01:09:59
14,400
3719c59f85a9950462bd291e19b11faa17f050f0
[native] Custom ChatRouter
[ { "change_type": "MODIFY", "old_path": "native/chat/chat-input-state-container.react.js", "new_path": "native/chat/chat-input-state-container.react.js", "diff": "@@ -105,6 +105,7 @@ class ChatInputStateContainer extends React.PureComponent<Props, State> {\nstate = {\npendingUploads: {},\n};\n+ sendC...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Custom ChatRouter
129,187
28.03.2020 01:17:34
14,400
c3fdcf24e25322e22daac406a43d91985638a7af
[native] Get rid of messageSentFromRoute
[ { "change_type": "MODIFY", "old_path": "native/redux/persist.js", "new_path": "native/redux/persist.js", "diff": "@@ -22,7 +22,6 @@ import { defaultNotifPermissionAlertInfo } from '../push/alerts';\nconst baseBlacklist = [\n'loadingStatuses',\n'foreground',\n- 'messageSentFromRoute',\n'dimensions',\...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Get rid of messageSentFromRoute
129,187
28.03.2020 23:14:30
14,400
3006ff305bd8b584056dffceafe8898f07b0aa3f
[native] Use popToTop when resetting chat navigator on chat tab press
[ { "change_type": "MODIFY", "old_path": "native/chat/chat.react.js", "new_path": "native/chat/chat.react.js", "diff": "import * as React from 'react';\nimport {\n- type NavigationScreenProp,\n- type NavigationStateRoute,\ntype NavigationRouteConfigMap,\ntype NavigationState,\ncreateKeyboardAwareNavig...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Use popToTop when resetting chat navigator on chat tab press
129,187
28.03.2020 23:10:45
14,400
a7e80e5b5ef29030cb464fad09c257204f905124
[native] Move navigation for push notifs to use navigation prop
[ { "change_type": "MODIFY", "old_path": "lib/shared/notif-utils.js", "new_path": "lib/shared/notif-utils.js", "diff": "@@ -7,7 +7,7 @@ import {\ntype MessageType,\nmessageTypes,\n} from '../types/message-types';\n-import type { ThreadInfo, RawThreadInfo } from '../types/thread-types';\n+import type {...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Move navigation for push notifs to use navigation prop
129,187
30.03.2020 11:02:14
14,400
d5629b3a18fe49e21384a7f4093854691d48d231
[native] Include dispatch in NavigationContext
[ { "change_type": "MODIFY", "old_path": "native/navigation/navigation-context.js", "new_path": "native/navigation/navigation-context.js", "diff": "// @flow\n-import type { NavigationState } from 'react-navigation';\n+import type { NavigationState, NavigationDispatch } from 'react-navigation';\nimport...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Include dispatch in NavigationContext
129,187
30.03.2020 11:18:29
14,400
87133da00ada5c55c70b3c9d7c6cb1c84b88c0b8
[native] Avoid appLoggedIn in handlers We will be using Redux state instead, and setting up nav state to depend on Redux state
[ { "change_type": "MODIFY", "old_path": "native/push/push-handler.react.js", "new_path": "native/push/push-handler.react.js", "diff": "@@ -55,10 +55,7 @@ import {\nrecordNotifPermissionAlertActionType,\nclearAndroidNotificationsActionType,\n} from '../redux/action-types';\n-import {\n- activeThreadSe...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Avoid appLoggedIn in handlers We will be using Redux state instead, and setting up nav state to depend on Redux state
129,187
30.03.2020 14:32:40
14,400
81745318f0ce0dc34c21023497f356bd4f4a4f0c
[native] Extract AppNavigator, RootNavigator, and RootRouter
[ { "change_type": "MODIFY", "old_path": "native/chat/chat-router.js", "new_path": "native/chat/chat-router.js", "diff": "@@ -26,7 +26,10 @@ type ReplaceWithThreadAction = {|\n+type: 'REPLACE_WITH_THREAD',\n+threadInfo: ThreadInfo,\n|};\n-type CustomNavigationAction = ClearScreensAction | ReplaceWithT...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Extract AppNavigator, RootNavigator, and RootRouter
129,187
30.03.2020 14:46:29
14,400
8d65d535052ed11a43a484424c94c8e0e08fbcb8
[native] NavigationHandler
[ { "change_type": "MODIFY", "old_path": "native/navigation/navigation-context.js", "new_path": "native/navigation/navigation-context.js", "diff": "// @flow\n-import type { NavigationState, NavigationDispatch } from 'react-navigation';\n+import type { NavigationState, NavigationAction } from 'react-na...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] NavigationHandler
129,187
30.03.2020 15:25:33
14,400
1552c15b9e35a3f1d606fa1bac3a33682d454688
[native] Extract removeScreensFromStack
[ { "change_type": "MODIFY", "old_path": "native/chat/chat-router.js", "new_path": "native/chat/chat-router.js", "diff": "@@ -12,11 +12,11 @@ import {\ntype NavigationStackRouterConfig,\n} from 'react-navigation';\n-import { removeScreensFromStack } from '../navigation/navigation-setup';\nimport {\nCh...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Extract removeScreensFromStack
129,187
30.03.2020 17:30:50
14,400
edea8b5651fbe1d56f1a385365f73439193e0fa0
[native] Update react-redux libdef
[ { "change_type": "RENAME", "old_path": "native/flow-typed/npm/react-redux_v5.x.x.js", "new_path": "native/flow-typed/npm/react-redux_v7.x.x.js", "diff": "-// flow-typed signature: be1a6a9041ded9d5eb2308664fa10a77\n-// flow-typed version: c6154227d1/react-redux_v5.x.x/flow_>=v0.89.x <=v0.103.x\n+// f...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Update react-redux libdef
129,187
30.03.2020 17:53:18
14,400
93998c12e8f1ef3ebbf7405ab18a7740470d97cd
[native] useIsAppLoggedIn
[ { "change_type": "MODIFY", "old_path": "native/navigation/nav-selectors.js", "new_path": "native/navigation/nav-selectors.js", "diff": "@@ -7,6 +7,7 @@ import type { CalendarQuery } from 'lib/types/entry-types';\nimport type { GlobalTheme } from '../types/themes';\nimport type { NavPlusRedux } from ...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] useIsAppLoggedIn
129,187
30.03.2020 18:30:17
14,400
de78afca5a177ed1ab0aa0771721b0087e57a1ac
[native] AppNavigator to hook
[ { "change_type": "MODIFY", "old_path": "native/navigation/app-navigator.react.js", "new_path": "native/navigation/app-navigator.react.js", "diff": "@@ -4,7 +4,6 @@ import type { NavigationStackProp } from 'react-navigation-stack';\nimport type { NavigationStateRoute } from 'react-navigation';\nimpor...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] AppNavigator to hook
129,187
30.03.2020 21:08:55
14,400
fb8f74990911e45813576c4decb525002b3b3d77
[native] Use NavigationHandler and RootRouter to handle log ins
[ { "change_type": "MODIFY", "old_path": "native/account/logged-out-modal.react.js", "new_path": "native/account/logged-out-modal.react.js", "diff": "// @flow\nimport type { NavigationScreenProp, NavigationRoute } from 'react-navigation';\n-import type {\n- DispatchActionPayload,\n- DispatchActionProm...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Use NavigationHandler and RootRouter to handle log ins
129,187
30.03.2020 22:44:23
14,400
d0b49b2864c3e1ccb173b1f5c209cd4c1bc76d8e
[native] Keep VerificationModal visible for a couple seconds after success
[ { "change_type": "MODIFY", "old_path": "native/account/reset-password-panel.react.js", "new_path": "native/account/reset-password-panel.react.js", "diff": "@@ -48,7 +48,7 @@ type Props = {\nverifyCode: string,\nusername: string,\nonePasswordSupported: boolean,\n- onSuccess: () => void,\n+ onSuccess:...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Keep VerificationModal visible for a couple seconds after success
129,187
30.03.2020 23:40:09
14,400
696b08d48c98d0126a7d8e79dad9556764f3a74f
[native] Use NavigationHandler and RootRouter to handle log outs
[ { "change_type": "ADD", "old_path": null, "new_path": "native/navigation/default-state.js", "diff": "+// @flow\n+\n+import type { BaseNavInfo } from 'lib/types/nav-types';\n+import type { NavigationState } from 'react-navigation';\n+\n+import { fifteenDaysEarlier, fifteenDaysLater } from 'lib/utils/...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Use NavigationHandler and RootRouter to handle log outs
129,187
31.03.2020 17:58:11
14,400
b1e952ed28d0689f1da2488d5343d4e56ed40ed6
[native] getThreadIDFromRoute
[ { "change_type": "MODIFY", "old_path": "native/navigation/nav-reducer.js", "new_path": "native/navigation/nav-reducer.js", "diff": "@@ -26,11 +26,11 @@ import { threadInfoFromRawThreadInfo } from 'lib/shared/thread-utils';\nimport {\nassertNavigationRouteNotLeafNode,\ngetThreadIDFromParams,\n+ getTh...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] getThreadIDFromRoute
129,187
01.04.2020 10:20:51
14,400
b936c93f1b44c79944f97b07323aedfba2bc37e1
[native] Only count a thread MessageList as active thread For clearing notifs and badge count
[ { "change_type": "MODIFY", "old_path": "native/navigation/nav-selectors.js", "new_path": "native/navigation/nav-selectors.js", "diff": "@@ -17,7 +17,6 @@ import { nonThreadCalendarFiltersSelector } from 'lib/selectors/calendar-filter-\nimport {\nAppRouteName,\nTabNavigatorRouteName,\n- ThreadSetting...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Only count a thread MessageList as active thread For clearing notifs and badge count
129,187
01.04.2020 09:59:49
14,400
938d5111e8762fce4c8903a1583201b69ea0d6f5
[native] ThreadScreenPruner
[ { "change_type": "MODIFY", "old_path": "native/chat/chat-router.js", "new_path": "native/chat/chat-router.js", "diff": "@@ -16,7 +16,10 @@ import {\nChatThreadListRouteName,\nMessageListRouteName,\n} from '../navigation/route-names';\n-import { removeScreensFromStack } from '../utils/navigation-util...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] ThreadScreenPruner
129,187
01.04.2020 10:56:45
14,400
3e415cec705033ec5cb48c94f5379ea1a72eed27
[native] Clear ComposeThreadRouteName with parentThreadID when thread invalidated
[ { "change_type": "MODIFY", "old_path": "native/navigation/route-names.js", "new_path": "native/navigation/route-names.js", "diff": "@@ -66,4 +66,5 @@ export const threadRoutes = [\nMessageListRouteName,\nThreadSettingsRouteName,\nDeleteThreadRouteName,\n+ ComposeThreadRouteName,\n];\n" }, { ...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Clear ComposeThreadRouteName with parentThreadID when thread invalidated
129,187
01.04.2020 15:04:42
14,400
af1c2d35e3797c5348d12ec4718464c873033916
[native] ChatInputState.unregisterSendCallback
[ { "change_type": "MODIFY", "old_path": "native/chat/chat-input-state-container.react.js", "new_path": "native/chat/chat-input-state-container.react.js", "diff": "@@ -276,6 +276,7 @@ class ChatInputStateContainer extends React.PureComponent<Props, State> {\nmessageHasUploadFailure: this.messageHasUpl...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] ChatInputState.unregisterSendCallback
129,187
01.04.2020 15:14:35
14,400
893f3ef934cbcbf040f84c2fb839b8708cfdd8bf
[native] Don't bother with registerChatScreen for ComposeThread
[ { "change_type": "MODIFY", "old_path": "native/chat/compose-thread.react.js", "new_path": "native/chat/compose-thread.react.js", "diff": "@@ -52,7 +52,6 @@ import UserList from '../components/user-list.react';\nimport ThreadList from '../components/thread-list.react';\nimport LinkButton from '../com...
JavaScript
BSD 3-Clause New or Revised License
comme2e/comm
[native] Don't bother with registerChatScreen for ComposeThread