Commit Graph

3544 Commits

Author SHA1 Message Date
Liam Fitzgerald
07d13b536b
RemoteContent: fix video, audio overflow
Fixes urbit/landscape#756
2021-04-09 12:14:50 +10:00
Liam Fitzgerald
7bbef74ffe
ShipSearch: fix error reporting
Fixes urbit/landscape#753
2021-04-09 12:05:02 +10:00
Liam Fitzgerald
3903ff8ad3
Publish: reset scroll on nav change
Fixes urbit/landscape#758
2021-04-09 11:53:56 +10:00
Liam Fitzgerald
027fd225a9
notifications: prevent race condition causing empty notifications
Fixes urbit/landscape#741
2021-04-09 11:42:09 +10:00
Liam Fitzgerald
7340f3f7e5
Merge pull request #4743 from urbit/james/group-forwarding
groups: forward to already-joined group from GroupLink
2021-04-09 11:22:37 +10:00
Liam Fitzgerald
1b1d7e9e80
FormGroup: address review 2021-04-09 10:22:44 +10:00
Liam Fitzgerald
0617a1ff55
Merge remote-tracking branch 'origin/release/next-js' into lf/form-merge 2021-04-09 10:04:04 +10:00
Liam Fitzgerald
1c2aa24c7a
PostContent: fix bottom spacing 2021-04-09 09:55:41 +10:00
Liam Fitzgerald
623e13bd3e
Merge remote-tracking branch 'origin/release/next-js' into lf/graph-unification 2021-04-09 09:53:59 +10:00
James Acklin
2477b2248e groups: forward to already-joined group from GroupLink
fixes urbit/landscape#593
2021-04-08 17:27:57 -04:00
James Acklin
b19233633b groups: set universal maxWidth of GroupDescription
fixes urbit/landscape#728
2021-04-08 16:36:08 -04:00
James Acklin
8b43984831 Merge branch 'release/next-js' into james/empty-group-home 2021-04-08 08:05:35 -04:00
Liam Fitzgerald
087103b3f4
GroupFeed: show unread count 2021-04-08 16:38:55 +10:00
Liam Fitzgerald
887a12ba0c
interface: surface and dismiss unread counts 2021-04-08 16:05:20 +10:00
Liam Fitzgerald
a22db08ff6
interface: update package-lock.json 2021-04-08 10:02:40 +10:00
Liam Fitzgerald
2e41b7657e
ChatMessage: prevent link overflow
Fixes urbit/landscape#732
2021-04-07 17:08:11 +10:00
Jōshin
8112c8a041
Merge pull request #4735 from urbit/jo/gcp/conf
gcp: isConfigured doesn't touch store
2021-04-06 22:18:57 -07:00
Liam Fitzgerald
8272902a7a
PostContent: use unified graph rendering 2021-04-07 14:27:38 +10:00
Liam Fitzgerald
d06fcc741d
CommentItem: use unified graph rendering 2021-04-07 13:15:24 +10:00
Liam Fitzgerald
156f91adb5
ChatMessage: refactor content rendering 2021-04-07 13:14:52 +10:00
Liam Fitzgerald
186ac17d5d
useHovering: memoize hooks 2021-04-07 13:13:39 +10:00
Liam Fitzgerald
5f8437dbad
useCopy: expose didCopy state 2021-04-07 13:11:56 +10:00
Liam Fitzgerald
6bae511b9d
Merge pull request #4731 from urbit/lf/edit-profile-crash
EditProfile: do not mutate contact
2021-04-07 12:01:00 +10:00
L
feafdfaf43
Merge pull request #4730 from urbit/lf/callback-capture 2021-04-06 20:13:29 -05:00
L
1d43fd9f0b
Merge pull request #4733 from urbit/lf/darkmode-publish-transclusion 2021-04-06 20:08:20 -05:00
Liam Fitzgerald
705ee08727
Merge pull request #4728 from urbit/lf/immer-orm
interface: mark BigIntOrderedMap compat with immer
2021-04-07 11:07:49 +10:00
Jōshin
78faf9ba25
Merge remote-tracking branch 'origin/release/next-js' into jo/gcp/conf 2021-04-06 22:31:01 +00:00
Liam Fitzgerald
9e5ecc303c
Merge pull request #4734 from urbit/jo/tsc 2021-04-07 08:14:41 +10:00
L
c69b15d3a5
Merge pull request #4729 from urbit/lf/sub-restart
subscription: clear opened subs before restart
2021-04-06 16:41:30 -05:00
Jōshin
4aa9bba5b3
gcp: isConfigured doesn't touch store
Makes the thread return a simple boolean; almost as simple as just
returning %.y or %.n.

gcpManager now stores whether GCP is configured as a private variable.

Also fixes some type errors in gcp.
2021-04-06 19:08:53 +00:00
Jōshin
272cc6905e
interface: no nullish assignment
Typescript as of 3.7 understands null coalescing (??), but nullish
assignment (??=) is not available until 4.0.

This broke `npm run tsc`, preventing other type errors from showing up.
2021-04-06 18:05:55 +00:00
Jōshin
2dba1d0504
interface: remove broken/unused MetadataForm
It was causing tsc to hard-fail due to an extra comma on L70.
2021-04-06 17:57:55 +00:00
Jōshin
88317eefe5
Merge pull request #4655 from urbit/jo/gcp/is-token
interface: type annotations, imports
2021-04-06 09:05:31 -07:00
Liam Fitzgerald
6da3877430
Invite: fix stale props in inviteAccept callback
Now that the store is immutable, callbacks that close over props will
see stale props because the reference is captured at instantiation. This
was not an issue previously, because the references would be directly
mutated. To remedy this, useRunIO has been added, which takes an async
function to run for the actual network processing, and a second
callback, which is able to see fresh props because it is not
instantiated until the async callback has resolved successfully.
Importantly, useRunIO does not resolve until the second callback has
finished, preserving the semantics of the callback for Formik handlers
and the like.

Fixes urbit/landscape#691
2021-04-06 15:50:21 +10:00
Liam Fitzgerald
f592b33d89
subscription: clear opened subs before restart 2021-04-06 14:33:56 +10:00
Liam Fitzgerald
c60a41b26d
publish: fix color in darkmode
Fixes urbit/landscape#736
2021-04-06 11:54:31 +10:00
Liam Fitzgerald
067991533a
EditProfile: do not mutate contact
Fixes urbit/landscape#698
2021-04-06 11:43:58 +10:00
Liam Fitzgerald
c398b2c0e4
interface: mark BigIntOrderedMap compat with immer
Fixes urbit/landscape#707
Fixes urbit/landscape#740
2021-04-06 08:28:53 +10:00
James Acklin
24ca01a10c interface: adds clickable instructions to ImageInput, removes truncation in settings
fixes urbit/landscape#695, fixes urbit/landscape#581
2021-04-03 17:30:18 -04:00
James Acklin
f0c3f37b0e groups: resize group summary
fixes urbit/landscape#728
2021-04-03 12:04:01 -04:00
janeway-bot
9ccf490f5b
Merge 6ed5ccbc4e into release/next-js 2021-04-03 01:09:18 +04:00
Matilde Park
e870c251cc Merge branch 'mp/landscape/mention-overlays' (#4718)
* origin/mp/landscape/mention-overlays:
  landscape: restore profile overlays on mention clicks

Signed-off-by: Matilde Park <matilde.park@gmail.com>
2021-04-02 16:51:24 -04:00
Matilde Park
39ce6f9d58 Merge branch 'mp/landscape/sidebar' (#4719)
* origin/mp/landscape/sidebar:
  landscape: fix 'my channels' sidebar logic

Signed-off-by: Matilde Park <matilde.park@gmail.com>
2021-04-02 16:51:00 -04:00
Matilde Park
5305d0770f invites: prevent from flexshrinking closed on safari 2021-04-02 15:39:40 -04:00
Matilde Park
a059f85952 commentItem: fix background on actions 2021-04-02 15:38:56 -04:00
Matilde Park
de8e7b5937 landscape: fix 'my channels' sidebar logic 2021-04-02 15:08:42 -04:00
Matilde Park
c4903fa1fd landscape: restore profile overlays on mention clicks 2021-04-02 14:51:16 -04:00
James Acklin
c889fd5638 chat: rectify sigil corners
fixes urbit/landscape#725
2021-04-02 14:49:35 -04:00
janeway-bot
621bcc8be4
Merge 4bc7952d56 into release/next-js 2021-04-02 18:57:25 +04:00
Liam Fitzgerald
4bc7952d56
omnibox: update for new metadata 2021-04-03 00:56:48 +10:00
Liam Fitzgerald
7e1a6ae541
embeds: address review 2021-04-03 00:23:16 +10:00
Liam Fitzgerald
e52f8ab9e3
GroupSettings: show feed settings correctly 2021-04-02 21:51:28 +10:00
Liam Fitzgerald
72fc0f02c3
interface: do not wait for deletion before navigation
Fixes urbit/landscape#706
2021-04-02 21:50:45 +10:00
Liam Fitzgerald
0ef5c5b562
chat: focus at end of input
Fixes urbit/landscape#715
2021-04-02 21:46:20 +10:00
Liam Fitzgerald
bbf07c4139
interface: fix subscription reconnect
Fixes urbit/landscape#713
2021-04-02 21:46:19 +10:00
Liam Fitzgerald
f50bea444a
embeds: adjust scroll on load 2021-04-02 21:46:06 +10:00
Liam Fitzgerald
b552460a5e
RemoteContent: rescale replaced elements correctly
Fixes urbit/landscape#708
2021-04-02 20:40:23 +10:00
janeway-bot
80c68ab57e
Merge f322360dca into release/next-js 2021-04-02 09:58:30 +04:00
Liam Fitzgerald
510524e3da
notifications: include custom avatar
Fixes urbit/landscape#710
2021-04-02 15:30:04 +10:00
Liam Fitzgerald
315804e698
PostInput: fix replying with a link 2021-04-02 15:19:39 +10:00
Liam Fitzgerald
63ba664c03
interface: fix link underline on ff 2021-04-02 15:14:09 +10:00
Liam Fitzgerald
726f0c1d58
chat-editor: focus on reply 2021-04-02 14:56:54 +10:00
Liam Fitzgerald
2bbff45c38
notifications: correct background for action 2021-04-02 14:54:57 +10:00
Liam Fitzgerald
47c59de82f
notifications: fix post url 2021-04-02 14:39:17 +10:00
Liam Fitzgerald
5c47bf5bc0
Launch: remove dev cruft 2021-04-02 14:37:32 +10:00
Liam Fitzgerald
75baa3f97d
Embed: prevent 404 on graph links 2021-04-02 14:25:59 +10:00
Liam Fitzgerald
8325f232f3
GroupLink: cap at 500px 2021-04-02 14:24:31 +10:00
Matilde Park
ebcd2136eb Revert "build: pkg/interface builds pkg/npm preinstall"
This reverts commit ca1c9e471f.
2021-04-01 23:50:47 -04:00
Liam Fitzgerald
511f48d35b
Merge branch 'master' into release/next-js 2021-04-02 13:39:51 +10:00
Liam Fitzgerald
c470e73b34
VirtualScroller: repaint on loaded 2021-04-02 13:04:32 +10:00
Logan Allen
f06dbe1ada interface: back button works again in group feed 2021-04-01 21:56:41 -05:00
Liam Fitzgerald
65405f1f1a
interface: prevent crash in non-group workspace 2021-04-02 12:44:27 +10:00
Logan Allen
03b5946089 interface: replace baseurl + feed 2021-04-01 21:36:25 -05:00
Liam Fitzgerald
c41320bea7
interface: remove duplicate import 2021-04-02 12:22:44 +10:00
Liam Fitzgerald
3c2d7a0291
interface: tweak permissions copy 2021-04-02 12:13:24 +10:00
Liam Fitzgerald
f2a7617376
Post: tweak permissions to match designs 2021-04-02 12:11:24 +10:00
Liam Fitzgerald
578924049d
Merge branch 'release/next-userspace' into lf/post-parent 2021-04-02 12:06:16 +10:00
Liam Fitzgerald
16be3b97c4
Post: update permissions to support admins properly 2021-04-02 11:48:38 +10:00
Logan Allen
c7dc6c46ac interface: fix back button not showing up on mobile 2021-04-01 20:33:07 -05:00
Liam Fitzgerald
e246d4f6ec
GroupSettings: hide feed settings to non-owners 2021-04-02 10:48:01 +10:00
Liam Fitzgerald
7381e491dd
AddFeedBanner: show only to owner 2021-04-02 10:40:34 +10:00
Logan Allen
7bf2691fca interface: group feed history goBack works 2021-04-01 19:39:27 -05:00
Liam Fitzgerald
d14b4ea471
Post: show reply if main post 2021-04-02 10:34:14 +10:00
Logan Allen
96a87d6f18 interface: api, fix disable group feed 2021-04-01 19:21:51 -05:00
Logan Allen
95cae3e36b interface: fix group feed settings render 2021-04-01 19:14:38 -05:00
Matilde Park
86fd281bd0 Merge branch 'release/next-userspace' of github.com:urbit/urbit into release/next-userspace 2021-04-01 19:02:10 -04:00
Matilde Park
c745bba77d api/graph: adding fallback vip 2021-04-01 19:02:04 -04:00
Matilde Park
87b6d35c42 groupFeed: flex width of parent row of 'add feed' 2021-04-01 18:38:35 -04:00
Logan Allen
96a57a9c4b interface: redirect properly upon create and dismiss of group feed 2021-04-01 17:31:19 -05:00
Logan Allen
d494ef1c15 interface: remove log 2021-04-01 17:03:11 -05:00
Logan Allen
352a906154 interface: group feed permissions work properly 2021-04-01 17:01:21 -05:00
Logan Allen
983df1c686 interface: vip prop drilling for group feed 2021-04-01 16:11:27 -05:00
Logan Allen
e3bfca7783 interface: update frontend api actions 2021-04-01 16:10:54 -05:00
matildepark
dd38b4dd64
Merge pull request #4706 from urbit/lf/more-usp
interface: assorted grabbag for next-userspace
2021-04-01 11:56:13 -04:00
Liam Fitzgerald
16f05a165c
interface: normalize headers to 600 font weight
Fixes urbit/landscape#622
2021-04-01 18:26:54 +10:00
Liam Fitzgerald
aaaa4e275c
PostInput: adjust resize behaviour
Mitigates urbit/landscape#617 but does not fix it.
2021-04-01 18:24:18 +10:00
Liam Fitzgerald
24deef9d1f
AddFeedBanner: update design to match spec
Fixes urbit/landscape#664
2021-04-01 18:17:46 +10:00
Liam Fitzgerald
a3db404147
interface: fix protocol handler
Fixes urbit/landscape#680
2021-04-01 18:01:10 +10:00
Liam Fitzgerald
b15772c96c
Merge branch 'master' into release/next-js 2021-04-01 13:49:53 +10:00
Matilde Park
d265a6f5bc ViewProfile: clone contact groups array
Fixes urbit/landscape#682
2021-03-31 15:13:58 -04:00
matildepark
c3bd7a7f21
Merge pull request #4698 from urbit/la/group-feed-touch-ups
group-feed: tons of post item touch-ups
2021-03-31 13:53:33 -04:00
Liam Fitzgerald
881054b95a
GroupHome: description by default
Fixes urbit/landscape#668
2021-03-31 19:05:27 +10:00
Liam Fitzgerald
7c14ec35ae
GroupFeed: add settings page
Fixes urbit/landscape#665
2021-03-31 19:01:04 +10:00
Liam Fitzgerald
6031b44bfb
Post: enable feed modal fixes
Fixes urbit/landscape#667
2021-03-31 15:10:36 +10:00
Liam Fitzgerald
ed1de34dfc
interface: immutable store 2021-03-31 14:47:56 +10:00
Liam Fitzgerald
b06b4388c9
interface: update reducers for immer 2021-03-31 14:44:52 +10:00
Logan Allen
4e87b59479 group-feed: finalize timeline padding 2021-03-30 21:56:49 -05:00
Logan Allen
113b99f475 group-feed: tons of post item touch-ups 2021-03-30 21:29:37 -05:00
matildepark
8b326bfa12
Merge pull request #4697 from urbit/lf/ctrl-enter-post
Post: allow submission with ctrl+enter
2021-03-30 20:25:55 -04:00
Liam Fitzgerald
331622383a
Post: allow submission with ctrl+enter
Fixes urbit/landscape#677
2021-03-31 10:19:45 +10:00
Matilde Park
f65527e145 Merge branch 'pre-release/next-userspace' into release/next-userspace 2021-03-30 20:13:49 -04:00
Liam Fitzgerald
6a11c47e0f
interface: version local state by commit hash
Fixes urbit/landscape#652
2021-03-31 09:59:13 +10:00
Matilde Park
15c1c2146a Merge branch 'master' into pre-release/next-userspace 2021-03-30 19:49:14 -04:00
Liam Fitzgerald
b77f4e2596
FormGroup: block windowclose 2021-03-30 14:16:17 +10:00
Liam Fitzgerald
a6b18824d5
ChannelPopover: unify forms
Fixes urbit/landscape#534
2021-03-30 14:01:21 +10:00
Liam Fitzgerald
7686d55df6
FormGroup: add component 2021-03-30 13:59:14 +10:00
matildepark
0d9e7becf8
Merge pull request #4659 from urbit/mp/chat/editor-scroll
chat: prevent input overflow offscreen
2021-03-29 23:03:47 -04:00
Liam Fitzgerald
6556059b99
interface: update md version
Fixes urbit/landscape#662
2021-03-30 09:06:39 +10:00
Logan Allen
f53d300fa4 interface: fix empty group home 2021-03-29 15:23:24 -05:00
Matilde Park
07b2b6c98b landscape: don't build serviceworker in dev 2021-03-29 15:57:14 -04:00
matildepark
dd563ac26a
Merge pull request #4673 from urbit/la/feed-perf
group-feed: improve performance and make mobile load
2021-03-29 15:08:53 -04:00
Matilde Park
3c1708d194 Merge branch 'release/next-js' into release/next-userspace 2021-03-29 14:52:12 -04:00
Logan Allen
bf49fd81f9 Merge branch 'release/next-userspace' into la/feed-perf 2021-03-29 13:39:57 -05:00
L
6f7d1b0c1b
Merge pull request #4680 from urbit/lf/ref-collections
collections: allow %reference as link
2021-03-29 13:39:08 -05:00
Matilde Park
31b252605d landscape: delete console.logs, revert instant timeout 2021-03-29 14:27:29 -04:00
Liam Fitzgerald
23e3c9eab9 Post: allow transclusion of and into
Fixes urbit/landscape#660
2021-03-29 14:27:29 -04:00
Liam Fitzgerald
365f17f210 interface: support %started update 2021-03-29 14:27:28 -04:00
Liam Fitzgerald
1ec9141de1 Invites: fix prop passing
Fixes urbit/landscape#654
2021-03-29 14:27:28 -04:00
Logan Allen
360f76949a interface: fix PostReplies crash 2021-03-29 13:13:24 -05:00
Logan Allen
2c260a78a8 interface: group feed prop drilling reduced, purecomponent approach discarded, subscription restart rewritten 2021-03-29 13:11:25 -05:00
matildepark
503dd3538a
Merge pull request #4676 from urbit/james/unread-corners
chat: adjust unread banner corners
2021-03-29 13:57:28 -04:00
James Acklin
515f9fb9b4 resourceSkeleton: remove imports 2021-03-28 22:56:13 -04:00
Liam Fitzgerald
bd1e6de907
interface: support %reference in collections
Fixes urbit/landscape#661
2021-03-29 12:39:56 +10:00
James Acklin
7807de758c interface: trunc channel names & descriptions in header
fixes urbit/landscape#587, fixes urbit/landscape#512
2021-03-28 22:33:57 -04:00
Liam Fitzgerald
185f35f194
collections: update link copy
Fixes urbit/landscape#615
2021-03-29 09:47:27 +10:00
James Acklin
feaabacf01 chat: adjust unread banner corners
fixes urbit/landscape#657
2021-03-27 22:49:14 -04:00
Logan Allen
58087d45bd interface: re-render reply view properly by modifying locationUrl prop 2021-03-26 17:07:28 -05:00
Logan Allen
9fa768dfe8 interface: missing contacts in PostReplies 2021-03-26 17:01:15 -05:00
Logan Allen
16f5e95df6 interface: moved around post items 2021-03-26 16:59:25 -05:00
Logan Allen
fe4b61ed6b interface: remove worthless withMemo 2021-03-26 16:53:48 -05:00
Logan Allen
2dddf1b837 group-feed: improve performance and make mobile load 2021-03-26 16:52:50 -05:00
Matilde Park
ab5c7e159f launch: prevent aggressive tutorial render
hasLoaded has a poor heuristic in a localStorage state world, rendering
the modal unconditionally. We pass the connection directly as our check.
2021-03-26 16:10:39 -04:00
Matilde Park
4e6655db3b launch: get tutorial state from zustand
The check for rendering the tutorial modal
was relying on a passed prop that does not exist now.
2021-03-26 15:53:47 -04:00
Matilde Park
27ba0f90fe RemoteContent: flex truncate links 2021-03-26 13:59:05 -04:00
Liam Fitzgerald
e8248691e8
Post: fix virtscroller position on replies
Fixes urbit/landscape#649
2021-03-26 13:55:07 +10:00
Liam Fitzgerald
45e11204d3
Post: fix various crashes 2021-03-26 13:51:28 +10:00
Liam Fitzgerald
b506eb44eb
chat: update links to match spec 2021-03-26 13:27:26 +10:00
Liam Fitzgerald
70d18fa851
invites: render correctly
Fixes urbit/landscape#628
2021-03-26 13:03:00 +10:00
Liam Fitzgerald
3cb4a689bf
chat: fix showing contact in transclusion
Fixes urbit/landscape#629
2021-03-26 12:54:46 +10:00
Liam Fitzgerald
6842cc0f15
ProfileOverlay: fix contact render
Fixes urbit/landscape#630
2021-03-26 12:42:04 +10:00
Liam Fitzgerald
4af130ca2e
chat: cap block content at 500px
Fixes urbit/landscape#641
2021-03-26 12:20:04 +10:00
Liam Fitzgerald
1f0b6d5a9c
notifications: clear before applying unreads
Fixes urbit/landscape#646
2021-03-26 08:12:00 +10:00
Logan Allen
e840eaae7e interface: terminal and permalink embeds washedGray -> lightGray 2021-03-25 16:53:58 -05:00
Logan Allen
8654880299 interface: profile and settings light gray 2021-03-25 16:51:30 -05:00
Logan Allen
31e392608a interface: share profile banner washedGray to lightGray 2021-03-25 16:27:19 -05:00
Logan Allen
fdd529a8ea interface: borders changed from washedGray to lightGray to match Figma mocks 2021-03-25 16:18:33 -05:00
Logan Allen
9ac24ed6a9 interface: post permalinks work 2021-03-25 14:36:50 -05:00
Logan Allen
466935b84b group-feed: prevent crash by temporarily using Spaces icon 2021-03-25 14:32:45 -05:00
Logan Allen
bd5de5b145 group-feed: copy permalinks from group feed posts 2021-03-25 14:13:54 -05:00
Logan Allen
b865227de7 group-feed: prevent event propagation for links so as not to trigger page navigation, enable remote content embeds properly 2021-03-25 13:43:44 -05:00
Logan Allen
b6b31ce45e group-feed: fix text overflow to make it not cut-off horizontally incorrectly 2021-03-25 13:05:50 -05:00
Logan Allen
94fcb992a1 group-feed: fix reply view top margin 2021-03-25 12:57:06 -05:00
Logan Allen
4efed9483c interface: fix a grab bag of group feed design issues, including header spacing, highlighting message upon hovering, collapsing text content of large posts, ensuring overflow of content works properly, ensuring scroll works properly for large content items, etc 2021-03-25 12:52:19 -05:00
Matilde Park
bc433597fd chat: prevent input overflow offscreen
Fixes urbit/landscape#632
2021-03-25 12:27:29 -04:00
Liam Fitzgerald
9db4217220
ChatWindow: stop unread notice disappearing 2021-03-25 16:38:27 +10:00
Liam Fitzgerald
05c8a9fc06
embeds: fix protocol 2021-03-25 14:31:40 +10:00
Liam Fitzgerald
3295cb764e
GroupFeed: fix crash on enable 2021-03-25 14:11:59 +10:00
Liam Fitzgerald
6adc249d76
permalinks: fix parsing 2021-03-25 14:11:39 +10:00
Liam Fitzgerald
e206c8bb8d
Sidebar: fix render on safari 2021-03-25 14:11:07 +10:00
Matilde Park
7fd4928d96 Merge branch 'release/next-js' into release/next-userspace 2021-03-24 19:10:27 -04:00
Logan Allen
b15d7524e1 Merge branch 'release/next-userspace' into la/group-feed 2021-03-24 15:08:01 -05:00
Matilde Park
bafe95a988 landscape: stubbing empty functions
@liam-fitzgerald
2021-03-24 16:02:08 -04:00
Logan Allen
58bf89d834 Merge branch 'release/next-userspace' into la/group-feed 2021-03-24 14:51:49 -05:00
Matilde Park
ef8d7c3900 interface: rename web+urbit URI -> web+urbit-graph 2021-03-24 15:16:30 -04:00
Jōshin
fe8313bbe6
interface: type annotations, imports 2021-03-23 21:45:15 -07:00
Liam Fitzgerald
369c0cc565
ChatWindow: fix at bottom dismiss 2021-03-24 13:58:00 +10:00
Liam Fitzgerald
1a03b0c63f
ChatWindow: dismiss unread if we are at bottom of window 2021-03-24 13:47:49 +10:00
Liam Fitzgerald
0f674aab17
ChatWindow: stop blue line moving 2021-03-24 13:29:43 +10:00
Liam Fitzgerald
28a2aae408
permalinks: cleanup styling 2021-03-24 13:17:16 +10:00
Liam Fitzgerald
e49446f85e
interface: styling fixes for permalinks 2021-03-24 13:11:50 +10:00
Liam Fitzgerald
986fa02ccd
interface: register permalink handler 2021-03-24 13:11:50 +10:00
Liam Fitzgerald
dd44377624
interface: update transclusion for reference content 2021-03-24 13:11:48 +10:00
Liam Fitzgerald
b1e86b42ba
interface: fix private permalinks 2021-03-24 13:09:55 +10:00
Liam Fitzgerald
9ea2091494
permalinks: cap transclusion depth 2021-03-24 12:59:55 +10:00
Liam Fitzgerald
ec94f2c5d4
permalinks: add transclusion 2021-03-24 12:59:01 +10:00
Liam Fitzgerald
f9e7f4602c
permalinks: support in apps 2021-03-24 12:57:43 +10:00
Liam Fitzgerald
c7015e2080
permalinks: restructure paths 2021-03-24 12:57:43 +10:00
Liam Fitzgerald
bc82f02091
wip 2021-03-24 12:57:43 +10:00
Liam Fitzgerald
5d43031f3d
graph: permalinks 2021-03-24 12:57:42 +10:00
Liam Fitzgerald
d06c3399aa
Merge branch 'lf/hark-hotfix' 2021-03-24 12:54:00 +10:00
Liam Fitzgerald
1cb71260c8
notifications: fix crash in reducer 2021-03-24 12:51:16 +10:00
Matilde Park
6f18be7232 chat: hotfixing to use overflow='auto' 2021-03-23 22:38:41 -04:00
Liam Fitzgerald
dfb313dba3
Merge branch 'lf/hark-final-fix' 2021-03-24 12:21:13 +10:00
Matilde Park
a1e3aa0a01 build: revert accidental webpack.dev.js commit 2021-03-23 22:16:11 -04:00
Logan Allen
9de66bc5af Merge branch 'release/next-userspace' into la/group-feed 2021-03-23 21:13:12 -05:00
matildepark
8fb3c6bbb9
Merge pull request #4652 from urbit/lf/blue-line
chat: fix unread line setting
2021-03-23 22:08:57 -04:00
Liam Fitzgerald
3149e5fd45
chat: fix unread line setting 2021-03-24 12:03:36 +10:00
Matilde Park
c0ee07a240 Merge branch 'release/next-js' into lf/dm-redir 2021-03-23 21:47:41 -04:00
Liam Fitzgerald
a1a5dee114
notifications: fix DM redirect
Weird zombie children issues, refactored to use props from parent
instead

Fixes urbit/landscape#595
2021-03-24 11:30:00 +10:00
matildepark
4d13b065cd
Merge pull request #4648 from urbit/mp/landscape/2021-3-23-grabbag
landscape: assigned grabbag
2021-03-23 20:14:25 -04:00