Commit Graph

5429 Commits

Author SHA1 Message Date
Matilde Park
86135772c8 Merge branch 'release/next-userspace' into mp/links-indigo 2020-08-31 15:18:35 -04:00
matildepark
966c6aea74
Merge pull request #3397 from tylershuster/dm-name-dedupe
chat: only show other participant in dms
2020-08-31 15:12:13 -04:00
Matilde Park
293e3261f1 Merge branch 'mp/maintainers-rfc' (#3381)
* origin/mp/maintainers-rfc:
  arvo/README: update maintainers

Signed-off-by: Matilde Park <matilde.park@sunshinegardens.org>
2020-08-31 15:01:38 -04:00
matildepark
3c3691f688
Merge pull request #3391 from urbit/mp/profile/log-out-all
profile: log out of all sessions
2020-08-31 14:52:09 -04:00
matildepark
c9e4ddfbcf
Merge pull request #3409 from urbit/lf/eager-title-update
interface: update title eagerly
2020-08-31 14:23:19 -04:00
matildepark
07265435a6
Merge pull request #3414 from urbit/lf/dm-comet-cite
chat: cite patps in DM title
2020-08-31 14:21:23 -04:00
Liam Fitzgerald
11b913b746 chat: cite patps in DM title 2020-09-01 02:17:47 +10:00
matildepark
531d106d31
Merge pull request #3392 from urbit/mp/publish/long-titles
publish: fix unread counts for long titles
2020-08-31 12:10:36 -04:00
matildepark
e58b48a8c1
Merge pull request #3393 from urbit/mp/chat/inline-blocks
chat: break up inline code
2020-08-31 12:09:56 -04:00
Liam Fitzgerald
149ffd32e6 publish: make input form expand to screen 2020-09-01 01:25:51 +10:00
Liam Fitzgerald
bafe213d45 publish: check roles correctly for tags 2020-09-01 01:13:33 +10:00
Liam Fitzgerald
7519838cd2 interface: update title eagerly 2020-09-01 00:38:11 +10:00
Fang
585fb248ec
vere: only touch forward queue counter if scrying
Slightly simplify the logic around changing the queue size counter by
only modifying it when we're _actually_ scrying, instead of
synchronously processing the forward.
2020-08-29 17:33:31 +02:00
Fang
5f77200d0d
vere: cache lanes for stateless forwarding
While stateless forwarding doesn't need to touch disk, there's still
overhead in needing to communicate with the serf over IPC. By caching
lanes, we get to skip the IPC pipeline, and can respond to forwarding
requests synchronously.

We include timestamps alongside the entries in the cache, and consider
entries older than two minutes as stale.

The cache is capped at around ~100mb of memory use. Further commentary
is provided inline.

Previously, ~nus would drop 3 forward requests, for every one it
fulfilled. Now, it seems able to keep up with demand, only dropping
forwards shortly after boot, while the cache isn't primed yet.
2020-08-29 17:17:45 +02:00
Joe Bryan
7fa6499e37 build: updates benchmarks 2020-08-28 16:04:25 -07:00
Joe Bryan
6f3d83f4dc ur: adds ur_jam_unsafe() 2020-08-28 16:04:25 -07:00
Joe Bryan
7b42f540b4 ur: fixes buffer over-read bugs in bitstream in tests 2020-08-28 16:04:25 -07:00
Joe Bryan
1ea8e73104 build: adds microbenchmark for virtualized cue 2020-08-28 16:04:25 -07:00
Joe Bryan
f6042e440f u3: removes double atom allocation in u3s_cue_bytes() 2020-08-28 16:04:25 -07:00
Joe Bryan
daf463c4be ur: fixes a buffer over-write in ur_bsr_bytes_any() 2020-08-28 16:04:25 -07:00
Logan Allen
90a6282b4e interface: integrated and tested all scries with reducer 2020-08-28 14:16:38 -05:00
Philip Monk
9d4003d415
Merge pull request #3400 from urbit/philip/diff
clay: minimal -diff thread
2020-08-28 11:39:37 -07:00
Fang
024c16cd97
vere: give up ames scry after successive failures
Instead of giving up on scrying at the first sight of a u3_none result,
keep trying for a little bit. If five scries fail in direct succession,
consider scrying not worth the effort, and stop trying as before.
2020-08-28 15:34:19 +02:00
Fang
d76a5e9077
vere: properly clean up dropped laneless packets
Previously, if ames told us there was no lane for a target, we would
drop the packet, but fail to register this in the queue, or even reclaim
the memory it was using.

Now, we do all the required book-keeping when dropping packets in the
"no lane for this" case.
2020-08-28 12:53:18 +02:00
Joe Bryan
b9fd36e47b u3: removes u3s_cue_smol, hoped-for performance never materialized 2020-08-27 23:45:30 -07:00
Joe Bryan
4eb3e1217e u3: fixes indirect-atom allocation bug in u3s_cue_smol/full 2020-08-27 23:45:30 -07:00
Joe Bryan
851f03294d build: adds jam/cue microbenchmarks (make bench) 2020-08-27 23:45:25 -07:00
Joe Bryan
899f431284 ur: cleans up hashtable grow, adds consistent wipe operations 2020-08-27 23:42:07 -07:00
Joe Bryan
aee89f6a64 ur: removes trailing whitespace in tests 2020-08-27 23:42:07 -07:00
Joe Bryan
5b9c48c3fd u3: adds jam/cue roundtrip tests of new implementations 2020-08-27 23:42:02 -07:00
Philip Monk
4c758372d6
clay: minimal -diff thread
Barebones 2-way diff thread.  Further development should include:

- recognize at least %txt and %hoon diff types as (urge:clay cord) and
print them prettily

- check if they're directories and recurse through them, noting files
that exist in one or the other and diffing ones that exist in both

- support 3-way diffs.  Since we know the desks they're on, we can find
a mergebase (see how +trouble gets the base-hash in #3378) and do a
3-way diff.

- extend the above to support all the useful diffs, including
diff3(a,b), diff2(mergebase(a,b),a) and any other useful ones.
2020-08-27 21:14:47 -07:00
Tyler Brown Cifu Shuster
b51046d258 chat: only show other participant in dms 2020-08-27 16:17:25 -07:00
Logan Allen
c9bfe272e3 interface: added graph API and stubbed out graph scries 2020-08-27 17:34:46 -05:00
Logan Allen
bbf854d956 graph-store: updated scry interface to return %graph-store marks so as to properly do %json conversion 2020-08-27 17:31:36 -05:00
Joe Bryan
9addb545c0 u3: refactors jam_tests to run all and capture results 2020-08-27 15:14:52 -07:00
Joe Bryan
baf8b884fa u3: adds u3s_jam_xeno() 2020-08-27 15:14:53 -07:00
Joe Bryan
ac7d0731f6 u3: adds u3s_cue_smol/full/bytes/atom 2020-08-27 15:14:32 -07:00
Matilde Park
a4b945b4a3 chat: hideAvatars hides chat input avatar
Fixes #3386.
2020-08-27 16:42:02 -04:00
Joe Bryan
dd8a74cea2 u3: replaces u3_serf_uncram with u3u_uncram() 2020-08-27 12:52:19 -07:00
Joe Bryan
24b91af888 u3: refactors _cu_rock_save(), splitting out path/directory format/creation 2020-08-27 12:52:19 -07:00
Joe Bryan
11e7afdefc u3: adds u3s_cue_xeno() 2020-08-27 12:52:19 -07:00
Matilde Park
f2eeb7a14f chat: break up inline code
Doesn't affect %code messages.

Fixes #3358.
2020-08-27 15:49:48 -04:00
Matilde Park
c08509535f publish: fix unread counts for long titles
Fixes #3283.
2020-08-27 15:35:20 -04:00
Matilde Park
3c0dc59747 profile: log out of all sessions
This was hidden in urbit-os-v1.0.44 until we could ensure it actually
logged you out of all sessions. It requires a hidden input to function,
so it's added here.

Fixes #2649.
2020-08-27 15:11:03 -04:00
Matilde Park
13b5851b71 Merge branch 'master' into release/next-userspace 2020-08-27 14:50:27 -04:00
Logan Allen
20c94d34fe interface: added graph reducer, store state, and subscription 2020-08-27 11:46:46 -05:00
Fang
ddb61adbd1
lib: take json as argument to server json-response
No reason conversion to octs has to happen outside of this function.
2020-08-27 16:57:03 +02:00
Matilde Park
d47cfdb57d release: urbit-os-v1.0.43 2020-08-26 21:12:53 -04:00
Matilde Park
d78e28a167 glob: update to 0v6.8fpt6.7mcjg.nb019.df3fo.haav6 2020-08-26 21:11:32 -04:00
Matilde Park
b0577b9a33 soto: make background transparent
It worked for images, but not colours.
2020-08-26 21:00:54 -04:00
Matilde Park
50b2794ef6 links: fix font setting for hidden nicknames 2020-08-26 20:58:10 -04:00
Matilde Park
e76e919755 landscape/index.html: restore aws script
This got dropped in a merge conflict somewhere.
2020-08-26 20:50:49 -04:00
Matilde Park
0245ea73cf Merge branch 'la/file-server-fix' (#3379)
* origin/la/file-server-fix:
  file-server: fix %file-server by adding SPA flag and threading is-file through request

Signed-off-by: Matilde Park <matilde.park@sunshinegardens.org>
2020-08-26 20:39:38 -04:00
Matilde Park
dd82f3861a Merge branch 'lf/settings-screen' (#3236)
* origin/lf/settings-screen: (25 commits)
  interface: fix setting background color
  interface/api: fix s3 calls for setting endpoint, keys
  interface/profile: hide log out of all header
  interface/profile: hide 'log out of all'
  profile: address comments
  profile: add identity form
  publish,links: respect hide avatar and nickname settings
  StatusBar: update for new design
  chat: support hideAvatars and hideNicknames
  launch: add background to base hash
  StatusBar: update for profile + omnibox
  interface: breakpoints in px
  settings: refactor for line limit
  settings: add inline image upload
  settings: add drag and drop component to reorder tiles
  groups,dojo: fix transparencies
  clock: fix transparency on no location
  profile: refactor layout
  interface: change indigo breakpoints to old queries
  interface: handle transparency correctly
  ...

Signed-off-by: Matilde Park <matilde.park@sunshinegardens.org>
2020-08-26 20:35:08 -04:00
Matilde Park
af44b8fdc8 interface: fix setting background color
A semicolon.
2020-08-26 20:33:53 -04:00
Matilde Park
b540ad5c4e interface/api: fix s3 calls for setting endpoint, keys 2020-08-26 20:29:56 -04:00
Matilde Park
84a832d6e7 interface/profile: hide log out of all header
Ibid.
2020-08-26 20:25:18 -04:00
Matilde Park
ff40759e82 interface/profile: hide 'log out of all'
Non-functional. Requires 'all' in post body, and hasn't been tested.
2020-08-26 20:24:48 -04:00
Liam Fitzgerald
e63c050a6e profile: address comments 2020-08-27 10:05:29 +10:00
matildepark
5c380a46a5
Merge pull request #3377 from urbit/mp/chat/break-word
chat: break overflowing one-word messages
2020-08-26 19:44:58 -04:00
Joe Bryan
1da0c6d353 ur: removes higher-ordered cue traversals 2020-08-26 16:18:55 -07:00
Liam Fitzgerald
6085752f21 profile: add identity form 2020-08-27 09:16:26 +10:00
Liam Fitzgerald
e9c6322ff4 publish,links: respect hide avatar and nickname settings 2020-08-27 09:15:05 +10:00
Joe Bryan
e964e4a1fb ur: reimplements ur_cue/_unsafe directly 2020-08-26 16:13:08 -07:00
Joe Bryan
43bd092476 ur: reimplements ur_cue_test() directly 2020-08-26 16:13:08 -07:00
Joe Bryan
6f93ec3aa5 ur: implements ur_dict_get/put, cleans up ur_dict*_t handling 2020-08-26 16:13:08 -07:00
Joe Bryan
0420bf9aa5 ur: adds additional fibonacci constants 2020-08-26 16:13:08 -07:00
Joe Bryan
88f58d3f01 ur: fixes serial.h includes 2020-08-26 16:13:08 -07:00
Joe Bryan
177432f914 ur: adds 32-bit ur_cue traversal, ur_cue_test validator 2020-08-26 16:01:43 -07:00
Joe Bryan
63d36b4e75 ur: fixes bug in ur_bsr_bytes_any pointer math, adds tests 2020-08-26 16:01:43 -07:00
Joe Bryan
8d5adc8bc1 ur: refactors ur_cue() into higher-order traversal 2020-08-26 16:01:43 -07:00
Joe Bryan
5dca7bd620 u3: implements u3u_cram() 2020-08-26 16:01:43 -07:00
Joe Bryan
9c008c269b u3: refactors u3u_uniq() 2020-08-26 16:01:43 -07:00
Joe Bryan
8a3b2fc061 ur: refactors ur "library" into separate modules 2020-08-26 16:01:36 -07:00
matildepark
e8b51df6dd
arvo/README: update maintainers 2020-08-26 18:29:19 -04:00
Logan Allen
e1b011224d file-server: fix %file-server by adding SPA flag and threading is-file through request 2020-08-26 14:24:16 -05:00
Matilde Park
e636611ccc Merge branch 'release/next-userspace' into mp/chat/fix-joining 2020-08-25 21:57:51 -04:00
Matilde Park
ed17475f12 chat: break overflowing one-word messages
Fixes #3358.
2020-08-25 21:34:51 -04:00
Liam Fitzgerald
a7779025e8 Merge branch 'release/next-userspace' into lf/settings-screen 2020-08-26 10:50:12 +10:00
Philip Monk
9f96259261
Merge pull request #3311 from ohAitch/fix-wuts
dojo: restore `??` and `???` syntax
2020-08-25 15:00:49 -07:00
Anton Dyudin
46af34cfe8
dojo: fix dy-show-type-noun indent 2020-08-25 13:45:32 -07:00
Tyler Brown Cifu Shuster
3ad6c95329 interface: made head reactive 2020-08-24 21:14:23 -07:00
Matilde Park
c5b71e55c1 chat: restore join functionality
Fixes #3371.
2020-08-24 23:10:56 -04:00
Matilde Park
f9f6eb5d1a Merge branch 'lf/publish-indigo' (#3337)
* origin/lf/publish-indigo: (22 commits)
  publish: send read action if content does not overflow
  interface: fix missing import of ErrorBoundary
  publish: fix foreign notebooks
  publish: comment author correct
  interface: indigo Error
  publish: link preview correctly
  publish: loosen property access
  publish: address comments
  publish: style 'about' field for dark mode
  groupView: 'no ships are banned' styling
  publish: allow creation of unmanaged notebooks
  publish: adding dark mode declarations
  publish: make post submit button primary
  publish: improve responsivity on mobile
  publish: address review comments
  publish: remove extraneous files from merge
  publish: cleanup imports
  publish: finish rewrite
  publish: begin rewrite
  publish: rewrite note previews in indigo
  ...

Signed-off-by: Matilde Park <matilde.park@sunshinegardens.org>
2020-08-24 23:01:18 -04:00
Liam Fitzgerald
f92866a83f publish: send read action if content does not overflow 2020-08-25 12:50:55 +10:00
Joe Bryan
1e8158b683
Merge pull request #3355 from frodwith/rolljet
+roll and +reel stack space
2020-08-24 19:16:47 -07:00
Matilde Park
92610b3d57 Merge branch 'lf/publish-indigo' of github.com:urbit/urbit into lf/publish-indigo 2020-08-24 21:52:12 -04:00
Matilde Park
ed053ed0ed interface: fix missing import of ErrorBoundary 2020-08-24 21:51:39 -04:00
Liam Fitzgerald
5e0f6470a2 publish: fix foreign notebooks 2020-08-25 11:47:46 +10:00
Liam Fitzgerald
21a64076e2 publish: comment author correct 2020-08-25 11:47:11 +10:00
Liam Fitzgerald
17e8add450 interface: indigo Error 2020-08-25 11:46:12 +10:00
Liam Fitzgerald
1150c750cf publish: link preview correctly 2020-08-25 11:33:29 +10:00
Liam Fitzgerald
766fd8411b publish: loosen property access 2020-08-25 11:29:56 +10:00
Liam Fitzgerald
487377bd19 publish: address comments 2020-08-25 10:50:09 +10:00
Paul Driver
8bc148acc3 use road stack instead of heap vector in reel 2020-08-24 15:01:02 -07:00
matildepark
f421d5c453
Merge pull request #3368 from tylershuster/dm-dedupe
interface: deduplicate InviteSearch results
2020-08-24 14:45:30 -04:00
matildepark
2bd4a7035a
Merge pull request #3316 from urbit/dk-peek
updated on-peek for s3-store
2020-08-24 14:37:32 -04:00
matildepark
1d19d99ad9
Merge pull request #3366 from tylershuster/sigil-speedup
interface: Sigil speedup
2020-08-24 14:36:50 -04:00
Tyler Brown Cifu Shuster
a441c9275b interface: deduplicate InviteSearch results 2020-08-24 10:10:04 -07:00
Tyler Brown Cifu Shuster
643eba1f2a interface: sped up sigil implementation 2020-08-23 20:10:03 -07:00
Tyler Brown Cifu Shuster
4cec8f481a interface: sped up sigil implementation 2020-08-23 20:05:59 -07:00
Tyler Brown Cifu Shuster
16868c58c9 groups: trim name on create 2020-08-23 19:50:18 -07:00
Tyler Brown Cifu Shuster
c383d31c24 chat: updated Leave Group copy 2020-08-22 10:55:37 -07:00
Joe Bryan
096677a3c3 ur: distinguish "meme" (exceeds memory repr) errors in ur_bsr* and ur_cue* functions 2020-08-21 15:33:04 -07:00
Joe Bryan
753a3ea9a5 ur: removes superceded functions: ur_bsr64 and ur_bsr_bytes 2020-08-21 15:33:04 -07:00
Joe Bryan
66970a01e1 ur: refactors ur_bsr_bit* functions 2020-08-21 15:33:04 -07:00
Joe Bryan
6e3dade9a6 ur: improves ur_bsr_sane() 2020-08-21 15:33:04 -07:00
Joe Bryan
4a7ad95e14 ur: rewrites ur_bsr_tag(), adds tests 2020-08-21 15:33:04 -07:00
Joe Bryan
d130633732 ur: uses ur_bsr_rub_log() in ur_bsr_mat, moves ur_bsr_zeros() into tests 2020-08-21 15:33:04 -07:00
Joe Bryan
1a89c71e96 ur: adds ur_bsr_rub_log and tests, fixes ur_bsr_zeros() 2020-08-21 15:33:04 -07:00
Joe Bryan
e09ba7e8ee ur: fixes typos in tests 2020-08-21 15:33:04 -07:00
Joe Bryan
b3c644930a ur: use new ur_bsr*_any functions in ur_cue() 2020-08-21 15:33:04 -07:00
Joe Bryan
5a8043f620 ur: clean up ur_bsr8_any() 2020-08-21 15:33:04 -07:00
Elliot Glaysher
5f0fa9b2a0
Merge pull request #3354 from urbit/king-reestablish-natpmp
natpmp: when reopening laptop, reestablish a connection to the router.
2020-08-21 10:01:33 -04:00
Joe Bryan
a7ac76d5e7 ur: cleans up ur_bsrN_any tests 2020-08-20 23:44:04 -07:00
Joe Bryan
4d1bb97f36 ur: adds ur_bsr_bytes_any(), for bit-indexed byte reads 2020-08-20 23:43:59 -07:00
Elliot Glaysher
8255fc0e8c natpmp: formatting and cleanup old pmp handle 2020-08-20 20:23:25 -04:00
Paul Driver
6125ac4fe4 fix vector allocation in reel 2020-08-20 12:54:27 -07:00
Elliot Glaysher
15f0df81f1 natpmp: when reopening laptop, reestablish a connection to the router. 2020-08-20 15:47:02 -04:00
Paul Driver
e3cafdd464 roll/reel with while loops 2020-08-20 11:58:08 -07:00
pilfer-pandex
c164f12922
Merge pull request #3339 from urbit/jt/rehob
urbit-king: update urbit-hob to v0.3.3
2020-08-20 08:35:12 -07:00
Joe Bryan
b117ca25a6 ur: fills out bistream-write (ur_bsw*) interface 2020-08-19 19:12:01 -07:00
Matilde Park
ffadf5718d links: use tabbar in links-list, settings 2020-08-19 21:44:45 -04:00
Matilde Park
1fd147f6cb chat, links: componentise tabBar 2020-08-19 21:37:20 -04:00
Joe Bryan
c5bbe9e441 ur: rewrites ur_bsw_bytes to be bit-indexed 2020-08-19 18:37:01 -07:00
Joe Bryan
79363d66a8 ur: refactors bit-stream bounds-enforcement and growth 2020-08-19 18:37:01 -07:00
Joe Bryan
4aa1dbe4a2 ur: adds ur_bsw_bex() and tests 2020-08-19 18:36:56 -07:00
Matilde Park
0dbd879443 links: use componentised metadata 2020-08-19 21:17:33 -04:00
Matilde Park
ecfcb55c17 interface: componentise metadata settings 2020-08-19 21:03:01 -04:00
Matilde Park
1282e2abd1 publish: style 'about' field for dark mode 2020-08-19 20:42:58 -04:00
Matilde Park
0411052e42 groupView: 'no ships are banned' styling 2020-08-19 20:37:55 -04:00
Liam Fitzgerald
730478080c publish: allow creation of unmanaged notebooks 2020-08-20 10:15:40 +10:00
Matilde Park
2c621caac2 Merge branch 'release/next-userspace' into mp/links-indigo 2020-08-19 18:23:11 -04:00
David Kerschner
dd3e1a5bcc launch: minor on-peek update 2020-08-19 11:46:52 -07:00
Elliot Glaysher
88428961dd natpmp: also detect 172.16.0/0/12 ips as private. 2020-08-19 14:02:03 -04:00
Joe Bryan
0f3731a40c ur: adds initial tests for bitstream-read functions (ur_bsr*) 2020-08-19 10:19:28 -07:00
Joe Bryan
d4522adb0c ur: moves slow8/32/64 write functions into tests 2020-08-19 10:19:28 -07:00
matildepark
94151b4a8f
Merge pull request #3351 from urbit/mp/revert/3344
Revert "chat: bottom-align UI in input"
2020-08-19 13:05:47 -04:00
matildepark
669a55ecf3
Merge pull request #3307 from cmarcelo/json-for-chat-update-keys
chat: serialize %keys to JSON for chat update
2020-08-19 13:02:32 -04:00
Elliot Glaysher
1401d7bc5c natpmp: fix error handling and don't die on errors in getpubliaddress
This fixes a case where the natpmp async could pure () instead of
recursing, which would lock ames. This also adds some more error
handling on the haskell side of things and disables the raw fprintfs
in the c bindings layer.
2020-08-19 12:53:59 -04:00
Matilde Park
bb95a54462 Revert "chat: bottom-align UI in input"
This reverts commit a2af03fc70.
2020-08-19 12:11:31 -04:00
Elliot Glaysher
5c7f846d71 natpmp: change the library's timeout system to not wait 4 minutes. 2020-08-19 12:05:13 -04:00
matildepark
e041afe351
Merge pull request #3348 from tylershuster/mobile-dojo
dojo: fixes whitescreen on mobile
2020-08-19 12:01:35 -04:00
Matilde Park
10c6ea77b7 publish: adding dark mode declarations 2020-08-19 11:30:43 -04:00
matildepark
f9805aada9
Merge pull request #3327 from urbit/lf/groups-join-fix
groups: join fixes
2020-08-19 11:09:05 -04:00
Liam Fitzgerald
687a957087 publish: make post submit button primary 2020-08-19 18:39:14 +10:00
Tyler Brown Cifu Shuster
b5485cf0e3 dojo: fixes whitescreen on mobile 2020-08-18 20:10:36 -07:00
Liam Fitzgerald
8064b48ae2 publish: improve responsivity on mobile 2020-08-19 11:00:43 +10:00
Liam Fitzgerald
5b86edd4d6 publish: address review comments 2020-08-19 10:59:24 +10:00
David Kerschner
1eb6407062 launch: added scrys for missing options 2020-08-18 17:25:51 -07:00
David Kerschner
bf4faf467c s3-store: requested stylistic changes 2020-08-18 17:25:35 -07:00
Liam Fitzgerald
5b06ee7678 publish: remove extraneous files from merge 2020-08-19 10:11:44 +10:00
Matilde Park
e0bd7acdc9 Merge branch 'release/next-userspace' into mp/chat/blockquote 2020-08-18 20:09:14 -04:00
matildepark
b4a7d7bace
Merge pull request #3344 from urbit/mp/chat/bottom-aligned-input
chat: bottom-align UI in input
2020-08-18 20:07:16 -04:00
Matilde Park
65b3812191 chat: restore 'copied' notice on copy
Fixes #3326.
2020-08-18 18:39:43 -04:00
Matilde Park
25beef6ded chat: codeblocks get bg color
Fixes #3325.
2020-08-18 18:19:11 -04:00
Matilde Park
3f447645d6 groups: pad shortcode prompt to avoid graphic bug
Fixes #3282. Also refactors shortcode render into a function.
2020-08-18 18:01:20 -04:00
Matilde Park
a2af03fc70 chat: bottom-align UI in input 2020-08-18 17:47:05 -04:00
Matilde Park
d3b5e34c2d chat: add monospace -> source code pro 2020-08-18 17:20:15 -04:00
Matilde Park
f7a2e043a3 chat: code mode uses source code pro 2020-08-18 17:17:14 -04:00
Matilde Park
8c3ef9b87b chat: add blockquotes
Fixes #3338.
2020-08-18 17:10:21 -04:00
Elliot Glaysher
60e2ae02a2 natpmp: cleanup by using a tristate 2020-08-18 15:43:31 -04:00
Matilde Park
0705f94f3f StatusBar: always show home button
Perversely, fixes #3276.
2020-08-18 14:57:05 -04:00
Elliot Glaysher
dca4344a45 natpmp: By default, only try to talk to the router on private ips.
Since startup hangs for seconds when you are not behind a router,
but still attempt to ask one to open ports for you, by default,
only try to contact the router if the local ip is 192.168.*.* or
10.*.*.*.

Also make port forwarding force on/off.
2020-08-18 12:22:45 -04:00
Jared Tobin
5662a085d5
urbit-king: update urbit-hob to v0.3.3
v0.3.2 fixed an important bug that should be pulled in here.
2020-08-18 13:48:05 -02:30
Joe Bryan
572a0d2c91 ur: adds ur_bsw32() 2020-08-17 22:03:55 -07:00
Joe Bryan
5b0c1320fb ur: refactors ur_bsw8 and ur_bsw_bytes internals 2020-08-17 22:03:55 -07:00
Joe Bryan
a9d2a29bf2 ur: rewrites _bsw64_unsafe() for efficiency 2020-08-17 22:03:49 -07:00
Joe Bryan
9282247ba5 ur: adds tests for bitstream write functions (ur_bsw*) 2020-08-17 21:57:02 -07:00
Liam Fitzgerald
1bcd7f27e6 publish: cleanup imports 2020-08-18 10:57:07 +10:00
Liam Fitzgerald
ad711fa41e Merge branch 'release/next-userspace' into lf/publish-indigo 2020-08-18 10:06:07 +10:00
Liam Fitzgerald
5570c076fd publish: finish rewrite 2020-08-18 10:03:39 +10:00
Liam Fitzgerald
135d9ceb20 publish: begin rewrite 2020-08-18 10:03:22 +10:00
Liam Fitzgerald
5334c08533 StatusBar: update for new design 2020-08-18 10:00:31 +10:00
Liam Fitzgerald
a8e4e00627 Merge branch 'release/next-userspace' into lf/settings-screen 2020-08-18 09:56:04 +10:00
Tyler Brown Cifu Shuster
36b11bd881 dojo: fixes #3297 2020-08-17 16:15:35 -07:00
Tyler Brown Cifu Shuster
9e512eb17f Merge branch 'release/next-userspace' of https://github.com/urbit/urbit into dojo-leap-conflict 2020-08-17 15:49:53 -07:00
matildepark
7acb2da366
Merge pull request #3321 from tylershuster/group-name-match
chat: account for digits in group name links
2020-08-17 18:36:17 -04:00
Joe Bryan
e160620256 ur: refactors jam/cue tests 2020-08-17 15:36:01 -07:00
matildepark
4a0112c97d
Merge pull request #3334 from urbit/mp/statusbar-lineheights
statusBar: rewrite in indigo, line-height tweak
2020-08-17 18:35:42 -04:00
Matilde Park
8f121afcb1 ReconnectButton: flush button left 2020-08-17 16:52:04 -04:00
Logan Allen
9c33fbd9be file-server: fix #3047, incorrect path matching 2020-08-17 13:30:05 -07:00
David Kerschner
8837e6686e updated per comments 2020-08-17 12:57:46 -07:00
pilfer-pandex
750b986370 Merge branch 'release/next-vere' into pp/log-cli
Rename `koUseNatPmp` to `hUseNatPmp`; cleanup
2020-08-17 11:43:30 -07:00
Logan Allen
79732ddad3 chat: refactored join page into indigo 2020-08-17 11:35:38 -07:00
pilfer-pandex
6a236a2749 king: use XDG cache directory for default log location 2020-08-17 11:27:30 -07:00
Elliot Glaysher
5ee32841d2
Merge pull request #3261 from urbit/king-natpmp
King should open ames ports via NAT-PMP
2020-08-17 14:12:48 -04:00
pilfer-pandex
e40bd3cf6f Merge branch 'master' into release/next-vere 2020-08-17 11:05:46 -07:00
Elliot Glaysher
b25c0b3443 natpmp: oops. missed a sav_errno 2020-08-17 13:08:22 -04:00
Matilde Park
15e91602c1 leap: results use overflow auto 2020-08-17 13:03:01 -04:00
Matilde Park
80b3d59789 Merge branch 'master' into release/next-userspace 2020-08-17 13:00:28 -04:00
Matilde Park
4894fa2cca leap: add rounded corners to results panel
Fixes #3330.
2020-08-17 12:42:46 -04:00
Matilde Park
dd780d1ff9 statusBar: rewrite in indigo, lineHeight tweaks 2020-08-17 12:28:01 -04:00
Elliot Glaysher
81e3a8f927 natpmp: cleanups for ~master-morzod 2020-08-17 10:58:48 -04:00
Liam Fitzgerald
e89cb3bd71 Merge branch 'release/next-userspace' into lf/settings-screen 2020-08-17 18:10:00 +10:00
Liam Fitzgerald
dd57147189 chat: support hideAvatars and hideNicknames 2020-08-17 17:43:05 +10:00
Liam Fitzgerald
c7f5220d18 launch: add background to base hash 2020-08-17 17:42:42 +10:00
Liam Fitzgerald
b13d2488a4 StatusBar: update for profile + omnibox 2020-08-17 17:37:50 +10:00
Tyler Brown Cifu Shuster
04957632cd Merge branch 'release/next-userspace' of https://github.com/urbit/urbit into dojo-leap-conflict 2020-08-16 21:12:59 -07:00
Tyler Brown Cifu Shuster
494275b6ab interface: track suspended element when leap loads 2020-08-16 21:12:31 -07:00
Liam Fitzgerald
5a1a994b9f group-store: Disallow joining of nonexisting groups
Returns %.n upon requesting a join of group that does not exist
2020-08-17 12:51:45 +10:00
Liam Fitzgerald
f658d99c76 pull-hook: no-op on double add
If we receive an %add poke for a resource we are already pulling, no-op
instead of crashing. This should prevent crashes upon repulling a
resource after a breach of the host.
2020-08-17 12:47:40 +10:00
Liam Fitzgerald
516423b853 contact-hook: no-op on accepted invite
The contact-hook was attempting to join a group upon it's invite being
accepted. However, the join poke is also sent from the frontend, causing
a potential race condition. Changes contact-hook to no-op on an
%invite-update.
2020-08-17 12:41:24 +10:00
pilfer-pandex
2d1f3cdfa0 king: thread LogLevel through, make output better 2020-08-16 10:33:52 -07:00
Tyler Brown Cifu Shuster
1466ca2f48 chat: account for multiple dashes in group name links 2020-08-15 19:23:06 -07:00
Tyler Brown Cifu Shuster
017749b8cf interface: updated tsconfig.json 2020-08-15 15:28:33 -07:00
Tyler Brown Cifu Shuster
54a7acbfc2 leap: stop immediate propagation on invocation 2020-08-15 15:01:11 -07:00
Tyler Brown Cifu Shuster
693ab48529 chat: account for digits in group name links 2020-08-15 14:42:45 -07:00
pilfer-pandex
8ab60b9133 king: configure logging via cli flags 2020-08-14 19:40:48 -07:00
Tyler Brown Cifu Shuster
d8ead05309 interface: adds absolute path resolution to imports 2020-08-14 15:04:38 -07:00
Matilde Park
6046936bef links: simplify comment-item component 2020-08-14 16:42:17 -04:00
Tyler Brown Cifu Shuster
31eb49174d interface: makes embed button a button 2020-08-14 13:39:37 -07:00
Matilde Park
d2579b1658 links: remove members page 2020-08-14 16:25:08 -04:00
Elliot Glaysher
1b3a69e24d
Merge branch 'release/next-vere' into king-natpmp 2020-08-14 16:17:47 -04:00
Matilde Park
9a819746b9 Merge branch 'release/next-userspace' into mp/links-indigo 2020-08-14 16:04:36 -04:00
matildepark
bb1a4d73b2
Merge pull request #3308 from urbit/la/outer-restructure
interface: restructured outer directories into views and logic
2020-08-14 15:52:40 -04:00
Joe Bryan
509c074445 ur: implements cue 2020-08-14 11:48:13 -07:00
David Kerschner
a2c7b16eb1 updated on-peek for s3-store 2020-08-14 11:36:29 -07:00
Joe Bryan
ee8c8ed1bd ur: implements jam 2020-08-14 11:15:51 -07:00
Joe Bryan
377ee490f3 u3: corrects _cu_from_loom() stack struct comment 2020-08-14 11:15:51 -07:00
Joe Bryan
eedb138975 ur: refactors indirect-atom (re-)allocation 2020-08-14 11:15:51 -07:00
Elliot Glaysher
14d1b59117 natpmp: even more cleanup 2020-08-14 10:23:39 -04:00
Tyler Brown Cifu Shuster
a593a9a3de interface: div is not a self-closing tag 2020-08-13 21:17:36 -07:00
Anton Dyudin
4c45ffc7f0 dojo: reintroduce "?? expr" raw-ish type printer 2020-08-14 00:27:31 +00:00
Anton Dyudin
dda386472c dojo ???: handle threads 2020-08-14 00:27:31 +00:00
Anton Dyudin
d372da3829 dojo: reintroduce "??? expr" parse debug mode
NOTE does a somewhat quetionable type thing, original version didn't compile
2020-08-14 00:27:31 +00:00
Logan Allen
d7f3238e39 interface: merged in release/next-userspace 2020-08-13 11:55:16 -07:00
Logan Allen
ddb008b501 interface: restructured outer directories into views and logic 2020-08-13 11:53:50 -07:00
Elliot Glaysher
b4878a8b03 natpmp: Separate out the PortThreadMsgs from the heap actions. 2020-08-13 13:36:20 -04:00
Elliot Glaysher
a3336fde41 natpmp: more nits 2020-08-13 11:52:42 -04:00
Elliot Glaysher
1183ac0b22 natpmp: checkpoint while addressing comments 2020-08-13 11:12:26 -04:00
Elliot Glaysher
ac4b5a99e5 natpmp: Rename RunningEnv to HostEnv. 2020-08-13 10:19:35 -04:00
Elliot Glaysher
3e6fd0f8e8 natpmp: ~pilfer style nits 2020-08-13 10:08:02 -04:00
Caio Marcelo de Oliveira Filho
04326ad04d chat: Refactor to use ?- in chat update JSON serialization 2020-08-13 01:11:12 -07:00
Caio Marcelo de Oliveira Filho
058ec8aa2c chat: serialize %keys to JSON for chat update 2020-08-13 01:10:24 -07:00
Matilde Park
b0d252fa76 publish: no-op when joining our own notebook
Fixes #3300.
2020-08-12 23:08:31 -04:00
Matilde Park
b963a55b04 publish: no-op when joining our own notebook
Fixes #3300.
2020-08-12 21:12:05 -04:00
matildepark
cc59550225
Merge pull request #3302 from urbit/la/indigo-outer-chat
interface: broke out routes from main App.js
2020-08-12 16:47:25 -04:00
matildepark
53f4ad4060
Merge pull request #3303 from urbit/la/msg-key
chat: add key to outer component to prevent re-render
2020-08-12 16:39:22 -04:00
Logan Allen
6b375051e3 chat: add key to outer component to prevent re-render 2020-08-12 12:11:18 -07:00
Logan Allen
a6f88fad80 interface: broke out routes from main App.js 2020-08-12 11:23:25 -07:00
pilfer-pandex
36ee3da818
Merge pull request #3267 from urbit/pp/print-http-ports
king: eyre: add missing printouts with ports
2020-08-11 22:11:35 -07:00
Liam Fitzgerald
993ba2d00f glob: update to 0v2.pbthv.gd1q2.h2ura.5esrn.d361c 2020-08-11 22:14:07 -04:00
Matilde Park
271a9ef235 leap: results link to join routes
Fixes #3274.
2020-08-11 21:52:49 -04:00
matildepark
d07a40b4cd
Merge pull request #3294 from tylershuster/leap-tab
leap: set default select behavior
2020-08-11 18:46:46 -04:00
Tyler Brown Cifu Shuster
62042a067b omni: set default select behavior 2020-08-11 15:35:00 -07:00
Matilde Park
02bd2e795a chat: fix syntax of regex check 2020-08-11 17:57:59 -04:00
matildepark
273bc9c0f3
Merge pull request #3287 from urbit/mp/omnibox-fixes
leap: small fixes
2020-08-11 16:54:19 -04:00
matildepark
97bbac159c
Merge pull request #3292 from urbit/la/chat-read
chat: don't show green line when unread is on page 1
2020-08-11 16:22:20 -04:00
Matilde Park
a123dd67dd interface: allow pinch zooming if needed 2020-08-11 16:20:19 -04:00