Logan Allen
c874849203
metadata + post validator + -graph-create-group-feed: end to end create group feed
2021-03-15 17:28:45 -05:00
Logan Allen
5c69e92da4
-graph-add-nodes: sign nodes
2021-03-12 10:53:54 -06:00
Logan Allen
b58e30fba7
metadata-store, observe-hook, threads: auto-joining group feeds works for groups you're already a part of, and so does group feed creation
2021-03-11 15:37:29 -06:00
Logan Allen
6d88c471bc
-group and -graph threads: update to use new module data structure
2021-03-10 17:22:24 -06:00
raghu
20bcb37989
ddiff: always show full beam in diffs
2021-03-09 22:34:20 -05:00
Logan Allen
59da9e1f49
Merge branch 'release/next-userspace' into la/group-feed
2021-03-09 13:22:25 -06:00
Logan Allen
b2759b9f36
Merge branch 'release/next-js' into la/release-2021-03-04
2021-03-08 14:11:54 -06:00
raghu
a7165e0f85
ddiff: c/r
2021-03-05 17:09:24 -05:00
Logan Allen
45b2ea4096
interface + -group-create thread: group homepage asks if you want to enable feed
2021-03-05 15:21:41 -06:00
Philip Monk
538a5eaf15
threads: make compile
...
mostly by deleting them
2021-03-04 19:35:31 -08:00
Philip Monk
f5ce79da9d
marks: fixup
...
Many of the marks were broken, and staticizing the marks revealed this.
This makes them build.
2021-03-04 19:21:34 -08:00
Philip Monk
a0146f4a44
clay: add %e, %f requests
...
For static naves, casts respectively
2021-03-04 18:28:16 -08:00
Logan Allen
69fa1296be
graph-threads: make %groupify and %restore compile
2021-03-04 19:09:41 -06:00
Philip Monk
6e3d1680a7
Merge remote-tracking branch 'origin/master' into release/next-sys
2021-03-03 17:54:57 -08:00
Logan Allen
379e1840bc
-graph-add-nodes: scry properly within a thread
2021-03-02 15:55:58 -06:00
raghu
76a189f544
ddiff: add generator
2021-03-02 15:05:27 -05:00
Logan Allen
e7ad46db15
-graph-add-nodes: add commented out signature support
2021-03-02 13:10:40 -06:00
J
c1b259af5b
interface, gcp: don't spam the console with 500s
...
Options here were: make the get-token thread try to return a unit, or
write a different thread to check whether GCP Storage seemed to be
configured and poll on that thread, or move the whole thing into a Gall
app.
The compromise between time-to-implement and overall cleanliness seemed
to be to write a different thread that just checks whether the settings
fields have been poked. Unfortunately this means GcpManager is now a
somewhat hefty JavaScript state machine.
Took out the logic to check whether S3 was configured in GcpManager,
since it was really only there to prevent spamming the console with
500s. If you have both S3 and GCP Storage configured for some reason,
you will now use GCP per the logic in useStorage.
2021-02-26 23:42:57 +00:00
Logan Allen
7c18df399c
interface: beginnings of api/reducer integration
2021-02-26 16:59:13 -06:00
Logan Allen
b2ef9044a6
-graph-add-nodes: return (map index hash) upon completion and finish out the json conversion
2021-02-26 14:05:11 -06:00
Logan Allen
c5e846d573
-graph-add-nodes: %graph-add-nodes thread that adds a hash to each node being added
2021-02-25 15:56:59 -06:00
J
0a23c0f4a4
-get-gcp-token: docs, formatting
...
Correct expiry from @da -> @dr, and set max cols to 72.
2021-02-24 21:26:59 +00:00
J
2a82da55ca
-get-gcp-token: error messages
...
Don't dump extra console output on thread failure. Say 'gcp' in failures
to aid debugging.
2021-02-24 20:37:37 +00:00
J
03e99f52c9
gcp: make expiry relative
...
This indeed makes it easier on the Landscape side. It also makes it
easier to coerce from the JSON Google gives us, so a win all around.
2021-02-24 20:35:24 +00:00
J
328159da67
-get-gcp-token: renamed from -get-gcp-jwt
2021-02-24 00:49:47 +00:00
J
d94f35aa5c
gcp: add token type
...
Also use it in -get-gcp-jwt.
2021-02-24 00:49:47 +00:00
J
a8113182a8
-get-gcp-jwt: vertical
2021-02-23 23:48:50 +00:00
J
6a07130f0d
-get-gcp-jwt: correct scope, clean up call
...
It turns out 'devstorage.read_write' also gives us an access token
instead of a JWT, and is probably more the thing that we want.
Took the opportunity to make scope a macro to clean up the make-jwt call
site.
2021-02-23 23:12:48 +00:00
J
aa93ac49c1
-get-gcp-jwt: sot -> jot, moar vertical
...
Since we only have one JWT (the thing we produce is an "access token",
not a JWT), we can just call it jot.
2021-02-23 23:03:07 +00:00
J
61d8030ec9
-get-gcp-jwt: documentation, clearer return faces
2021-02-23 22:53:42 +00:00
J
9f43fef85d
-get-gcp-jwt: returns time of expiry
...
Couldn't bring myself to pass in a relative date without a base, so we
instead pass now into get-access-token, and return the time of expiry.
2021-02-23 22:40:05 +00:00
J
b0bb659f12
-get-gcp-jwt: @dr expires_in, cleanup
...
The expiry field we get from Google is not a timestamp, but a count of
seconds after which the token is invalid (hence, 'expires_in'). We
represent this as a @dr by multiplying the integer we get from Google by
~1s. (Perhaps it will wind up being easier on the Landscape side to
consume the raw integer, but we may as well start off more
type-correct.)
Also cleans up some names now that I'm less confused about how the token
API works, and makes some syntax more vertical.
2021-02-23 22:34:48 +00:00
J
d978e6a551
-get-gcp-jwt: produces an access token
...
The correct scope to ask for is not devstorage.editor, but
cloud-platform. This will, rather than returning a signed JWT from
Google that looks like it works but doesn't, return a JSON object
containing an access token and expiration time.
2021-02-23 22:18:59 +00:00
J
860343e3d4
-get-gcp-jwt: clean up references, use +ot
...
Moves =, closer to call sites so it's clearer what's coming from where.
Also uses +ot, allowing a less horrifying +sign-jwt. This also seems to
not jump back and forth between tapes and cords as much, for what that's
worth.
2021-02-23 21:14:35 +00:00
Jōshin
ac40b5cf24
-get-gcp-jwt: produce a JWT for use in GCP Storage
2021-02-23 21:13:30 +00:00
Joe Bryan
9c9f0d68c4
test: report and continue on build failures
2021-02-19 20:36:05 -08:00
Liam Fitzgerald
66d9fd8426
sane: fix accidental self kick
...
Does not remove ourselves from the group when run. Additionally adds
card preview support to the inside app pokes.
Fixes urbit/landscape#442
2021-02-16 12:24:30 +10:00
L
071fcc621b
Merge pull request #4398 from urbit/lf/spider-code
...
ted: add -code thread
2021-02-10 13:20:07 -06:00
Liam Fitzgerald
b6935d50d6
-graph-delete: fix syntax error
2021-02-10 17:20:32 +10:00
Liam Fitzgerald
a1eda0469b
ted: add -code thread
2021-02-09 10:28:49 +10:00
Logan Allen
3a7c201e80
Merge branch 'release/next-userspace' into la/push-hook-list-resource
2021-02-03 11:52:38 -06:00
L
ac759b7d96
Merge pull request #4365 from urbit/lf/revive-invites
...
Invites: update for new group-view
2021-02-02 18:58:58 -06:00
Liam Fitzgerald
e17bf31859
group-view: add -group-invite thread
2021-02-03 09:52:00 +10:00
Liam Fitzgerald
c16f2365bf
Merge remote-tracking branch 'origin/release/next-userspace' into lf/graph-permissioning
2021-02-02 10:40:40 +10:00
Logan Allen
e1b1e1abf7
group-threads: contact push/pull hooks added to group lifecycle
2021-02-01 16:19:25 -06:00
Liam Fitzgerald
ee1ab3b131
metadata, groups: update for %groups metadata
2021-02-01 17:54:37 +10:00
Liam Fitzgerald
97502838d6
Merge remote-tracking branch 'origin/la/contact-store' into lf/join-cleanup
2021-02-01 17:01:02 +10:00
Liam Fitzgerald
e6d66b205a
group,graph-view: fixup calling convention for awaiting threads
2021-02-01 16:27:38 +10:00
Liam Fitzgerald
2730eb6c09
graph-view: refactor threads to call into %group-view
2021-02-01 14:07:39 +10:00
Liam Fitzgerald
d5bfe028e8
group-view: add leave, delete threads
2021-02-01 13:43:40 +10:00
Liam Fitzgerald
a6e1459395
group-view: add %create thread
2021-02-01 13:25:00 +10:00
Logan Allen
7b82c55b59
graph-delete thread: fix %metadata-store scry and %hook reference to %push-hook
2021-01-29 16:58:44 -06:00
Logan Allen
13bad6b16c
graph-create thread: fix metadata to metadatum rename
2021-01-29 16:52:04 -06:00
Logan Allen
691409eda9
metadata-store: compiles
2021-01-29 16:38:32 -06:00
Logan Allen
72e036bae3
Merge branch 'release/next-userspace' into la/contact-store
2021-01-29 14:48:39 -06:00
Liam Fitzgerald
aa62d18d2f
ChannelSettings: refine delete/remove logic and buttons
2021-01-28 14:59:26 +10:00
Matilde Park
78940cb10f
Merge branch 'release/next-js' into mp/contacts/ui-detail
2021-01-26 16:51:46 -05:00
Liam Fitzgerald
4b6637ec9a
graph-hooks: %remove-nodes permissioning
2021-01-26 14:47:35 +10:00
Liam Fitzgerald
ccbe4f9ad3
Merge remote-tracking branch 'origin/release/next-userspace' into lf/md-modernize
2021-01-25 14:00:07 +10:00
Matilde Park
d3c52c5e19
Merge branch 'release/next-js' into release/next-userspace
2021-01-22 17:01:28 -05:00
matildepark
84d23a9308
Merge pull request #4239 from urbit/m/graph-join-backoff
...
graph: make the join thread back off
2021-01-21 13:27:59 -05:00
Liam Fitzgerald
3bf03ffc9b
graph-join: crash on backoff and fix scry mold
2021-01-21 10:43:25 +10:00
Matilde Park
31def6f57a
Merge branch 'release/next-js' into release/next-userspace
2021-01-20 12:47:31 -05:00
Logan Allen
1eb99bfdcd
contact-store: wrote out all the JSON conversions and store compiles
2021-01-19 13:59:11 -06:00
Liam Fitzgerald
5d9955c0ce
Merge remote-tracking branch 'origin/release/next-js' into lf/md-modernize
2021-01-15 14:53:10 +10:00
Liam Fitzgerald
2cfa0f073f
Merge remote-tracking branch 'origin/release/next-userspace' into lf/md-modernize
2021-01-14 13:37:55 +10:00
Liam Fitzgerald
541efa5ff9
various, metadata: update metadata interactions
2021-01-14 11:04:15 +10:00
Liam Fitzgerald
2cd5e462b0
Merge remote-tracking branch 'origin/release/next-userspace' into lf/app-sane
2021-01-12 14:29:22 +10:00
fang
69704c6a80
graph: make the join thread back off
...
Pushes the pathological case back a bit, but doesn't make it stop trying.
2021-01-06 23:22:54 +01:00
Logan Allen
c99bf65d81
graph-delete thread: properly remove entry from metadata-store and hook
2021-01-06 15:32:16 -06:00
Liam Fitzgerald
06ed5af3f4
graph-store: add -eval thread
2020-12-11 15:52:17 +10:00
Liam Fitzgerald
bce1b3e65e
group-pull-hook: remove group on nack
2020-12-11 14:57:20 +10:00
Liam Fitzgerald
f8452af94e
Merge remote-tracking branch 'origin/release/next-userspace' into lf/chat-graph
2020-12-11 11:50:18 +10:00
Logan Allen
b281b9c91f
group-on-leave: soften de-path
2020-12-10 13:49:51 -06:00
Liam Fitzgerald
c29b3d8167
chat: address migration of missing owner in unmanaged groups
2020-12-10 13:52:25 +10:00
Liam Fitzgerald
fc189a7c13
graph-store: on overwrite, archive existing graph
2020-12-10 12:36:59 +10:00
Logan Allen
7802a7f8d9
Merge branch 'release/next-userspace' into lf/chat-graph
2020-12-09 15:45:26 -06:00
Liam Fitzgerald
8c4b453ed4
Merge remote-tracking branch 'origin/release/next-userspace' into lf/app-sane
2020-12-08 13:14:26 +10:00
Joe Bryan
aaf506ce8a
Merge branch 'jb/motion' into jb/motion-merge
...
* jb/motion:
pill: solid
zuse: remove %crud from vane-task
arvo: full vane names in $sign
aqua: build again (still broken)
arvo: reform of the scry reform
2020-12-07 18:52:51 -08:00
fang
d98c59e73a
zuse: lift moves out of +able
2020-12-08 01:47:06 +01:00
Joe Bryan
17736990ed
arvo: full vane names in $sign
2020-12-07 16:30:22 -08:00
fang
eab88170e2
Merge branch 'jb/motion' into m/de-thereum
2020-12-07 13:42:00 +01:00
Joe Bryan
5a82f1d4c0
Merge branch 'na-release/candidate' into jb/motion
...
* na-release/candidate: (36 commits)
ames: don't crash on forward-lane scry
jael: cleanup per review
jael: don't signal breach if first hearing of ship
pill: update
vere: compile
lens: don't de-base64
vere: make import flow not use base64 encoding
version: strip trailing newline
pill: mainnet
Revert "zuse: change to ropsten"
chat-hook: fix another poke-import issue
chat-hook: fix poke-import issue
apps: reorder maps, sets, and jugs
apps: reorder maps, sets, and jugs
kiln: add base-hash and our scries
lens: fix change lost in merge
graph-store: leave try-rejoin wire when subscription succeeds
graphs: import-export
chat: import/export
invites: import/export
...
2020-12-07 00:27:58 -08:00
Liam Fitzgerald
f4c2dedba2
hark-graph-hook: autowatch unmanaged graphs
2020-12-07 13:55:55 +10:00
fang
25a55c0f63
various: ethereum, azimuth, json-rpc out of zuse
...
Moves them into files in /lib, and updates dependents accordingly.
2020-12-06 17:26:52 +01:00
Joe Bryan
205c9a8620
zuse: removes en/de-beam (now in arvo)
2020-12-06 03:33:43 -08:00
Philip Monk
b9fe6af976
jael: don't signal breach if first hearing of ship
...
When you first boot, if you try talk to someone before your azimuth is
up-to-date (for example by import), then if they've ever breached
(twice) then you'll get breach notification, cancelling your message.
This changes is it so that if we haven't heard anything about this ship,
we don't signal a breach.
The implementation complexity is primarily because we need
eth-watcher/azimuth-tracker to produce an update of a list instead of a
list of updates. This way, Jael can keep a "state as of the beginning
of this move" variable to check when deciding whether to signal a
breach.
2020-12-04 23:08:47 -08:00
Philip Monk
0de3e76055
glob: update to 0v6.cmrce.5ass7.5gfqi.7c8cg.mdo7n
2020-12-04 17:59:15 -08:00
fang
3be0ab5030
ted: update straggler threads for vase unit change
...
Also cleans up a duplicate case in a ?-.
2020-12-04 13:45:35 +01:00
Joe Bryan
bbaeafe751
Merge pull request #4036 from urbit/m/listless-generators
...
various: start threads with unit of tuple args
2020-12-04 00:21:00 -08:00
Matilde Park
78c22ae5c4
Merge branch 'na-release/candidate' into release/next-userspace
2020-12-03 20:55:16 -05:00
Philip Monk
1213e298db
Merge remote-tracking branch 'origin/na-release/candidate' into philip/testnet
2020-12-03 17:16:02 -08:00
Joe Bryan
4a825df15b
Merge branch 'na-release/candidate' into jb/atom-gates
...
* na-release/candidate:
kh: use Word8 for Tint true color values
arvo: remove unused app files, libraries, and imports
webterm: improve line-spacing in certain browsers
vere: avoid +scot call for color value rendering
kh: support 24-bit %klr colors
vere: support 24-bit %klr colors
webterm: update mar and js to support 24-bit color
tests: fix ames tests
pill: update ivory pill
dojo: correct mark conversion scry path
pill: solid
aqua/ph: fix comet test
ames: flat packet format
hoon, dill: Add 24-bit true color
2020-12-03 14:17:23 -08:00
Joe Bryan
ce053facd5
Merge pull request #4051 from urbit/ted/ames-flat-revised
...
Ames flat packet format
2020-12-03 14:12:56 -08:00
Logan Allen
275144c72a
observe-hook: add %group-on-remove-member thread
2020-12-03 13:32:06 -06:00
Liam Fitzgerald
2caf1dac24
group-push-hook: kick members who are not subscribed
...
If a ship breaches, it may no longer be subscribed to the group, but
still be in it. This causes DM breakage amongst other things. To fix it,
we loop over the incoming subscriptions and kick everyone who is a part
of a group, but not subscribed to it.
2020-12-03 16:00:57 +10:00
Isaac Visintainer
2cf6af586d
Merge branch 'na-release/candidate' into philip/testnet
2020-12-02 21:10:15 -08:00
Logan Allen
1913cdf4f1
arvo: remove unused app files, libraries, and imports
2020-12-02 14:05:04 -06:00
Joe Bryan
b5ec0c30f0
hoon: renames +new-end, +new-lsh, +new-rsh
2020-12-02 01:00:09 -08:00
Isaac Visintainer
e672c7348b
Merge branch 'ixv/data-migration' into philip/testnet
2020-12-02 00:29:14 -08:00
Joe Bryan
bec63413b0
hoon: adds +new-rsh, switches all +rsh call sites
2020-12-02 00:21:51 -08:00
Joe Bryan
4f9cba2baf
hoon: adds +new-end, switches all +end call sites
2020-12-02 00:21:12 -08:00
Isaac Visintainer
f5137a5114
userspace: data migration testing utilities
2020-12-01 17:38:51 -08:00
Logan Allen
0007c5c097
Merge branch 'release/next-userspace' into la/archive-graph-on-leave
2020-12-01 16:41:26 -06:00
fang
03fd56e8cc
various: start threads with unit of tuple args
...
Instead of a list of arguments, with trailing ~.
2020-12-01 23:38:02 +01:00
Philip Monk
e69804a5ae
Merge remote-tracking branch 'origin/na-release/candidate' into m/flagday-keyfile
2020-12-01 14:02:37 -08:00
Logan Allen
2760f79f66
group-on-leave thread: clean up contacts as well as everything else
2020-12-01 15:20:45 -06:00
Logan Allen
9e69cba237
group-on-leave: poke %graph-pull-hook to allow resubscription
2020-12-01 12:51:26 -06:00
Ted Blackman
174f36f1a8
aqua/ph: fix comet test
2020-12-01 09:59:07 -05:00
Isaac Visintainer
7d1c58031c
userspace: data migration testing utilities
2020-11-30 23:02:12 -08:00
Logan Allen
46fd3004bf
%group-on-leave thread: simplified and got it to compile
2020-11-30 16:59:30 -06:00
Logan Allen
2a47b18be7
thread: remove group-leave-metadata
2020-11-30 16:33:48 -06:00
Logan Allen
41e3af25b3
threads: collapse them into a single %group-on-leave thread
2020-11-30 16:30:20 -06:00
Logan Allen
a6bf3ca924
observe-hook + thread: remove metadata when leaving a group
2020-11-30 16:20:26 -06:00
Isaac Visintainer
5217a5c00e
ph: add and modify some ph helper functions; adds new thread for booting/breaching in the new paradigm, as well as a helper thread for just starting drivers in case you want to manipulate aqua manually
2020-11-30 13:15:59 -08:00
Isaac Visintainer
94bb140448
aqua: manage azimuth state within aqua itself rather than using a thread
2020-11-30 13:15:59 -08:00
Logan Allen
1aa9337301
leave-graph: emit %done upon failed poke-acks
2020-11-30 14:33:22 -06:00
Logan Allen
b4e66ec4ed
thread: %group-leave-graph now compiles
2020-11-30 12:50:38 -06:00
Liam Fitzgerald
f552492414
ted/sane: add thread to run sanity checking
2020-11-30 13:44:31 +10:00
fang
f71bcb9f11
ted: update threads that had fallen into disrepair
2020-11-26 17:44:25 +01:00
fang
d6a9c39f29
test: only build .hoon files
...
Previously it would fail to build .txt files and such. Now it filters
those out and doesn't try.
2020-11-26 17:44:19 +01:00
fang
d61e5afdc4
test: don't panic after building non-/tests files
2020-11-26 17:44:10 +01:00
fang
194e8ae440
hoon: remove += and +- arm syntax
2020-11-26 17:27:30 +01:00
fang
27d6fc7597
zuse, clay, various: unflop the spur in beams
...
Unflops the spur in +en-beam, +de-beam, and everything that calls either
of those, or works with the consequences of their output.
This includes clay's interface for mounting and unmounting, which now
no longer expects the arguments to contain an old-style spur.
2020-11-24 15:44:25 +01:00
Logan Allen
837abacb9c
observe-hook: add new thread to leave graphs upon removing a group
2020-11-20 11:01:24 -06:00
Logan Allen
4f7ca0a0dc
graph-store: add overwrite field to %add-graph
2020-11-12 20:40:12 +00:00
L
9cbed7a4a9
Merge pull request #3832 from urbit/la/thread-watcher
...
observe-hook: spin up a thread upon receiving a %fact from a subscription
2020-11-09 12:37:13 -06:00
matildepark
1ffea0be06
Merge pull request #3891 from urbit/lf/groupify-graph
...
landscape: restore groupify functionality
2020-11-05 19:50:39 -05:00
Liam Fitzgerald
03b797102c
ph: add lib-hooks test
2020-11-06 08:53:55 +10:00
Liam Fitzgerald
fd149da592
ted/groupify: fix %remove-group poke
2020-11-05 12:02:59 +10:00
Logan Allen
63a0bb00c0
thread-watch-hook: edge cases tested and fixed
2020-11-04 18:42:52 -06:00
Logan Allen
65291863a0
thread-watch-hook: successfully sends facts to %invite-accepted-graph
...
thread
2020-11-04 12:12:24 -06:00
Logan Allen
697d23f83a
thread-watch-hook: made %invite-accepted-graph thread
2020-11-02 15:22:50 -06:00
Logan Allen
e357a36577
graph-create: fix creation in edge cases
2020-10-28 14:06:34 -05:00
Liam Fitzgerald
39d538f9bc
Merge branch 'release/next-userspace' into lf/graph-publish-fe
2020-10-28 16:40:02 +10:00
L
210a9f968c
Merge pull request #3721 from urbit/la/modernize-invites
...
invite-store/hook: modernize the code style to match other new apps
2020-10-27 19:37:44 -05:00
Logan Allen
870a6f635f
invites: indentation fixes
2020-10-27 15:45:26 -05:00
Logan Allen
c8068e8fcb
agents: all agents compile with new invites types and import patterns
2020-10-22 12:17:15 -05:00
Logan Allen
cbfa820ee3
graph-threads: delete thread gets rid of metadata properly
2020-10-20 15:15:58 -05:00
Logan Allen
926c9975c2
graph-leave: fixed leave thread to function properly
2020-10-16 12:10:07 -05:00
Logan Allen
ace6a41e9e
graph-threads: update to work with dojo and http
2020-10-16 10:42:31 -05:00
Philip Monk
77b33632a6
Merge remote-tracking branch 'origin/master' into release/next-sys
2020-10-14 19:26:33 -07:00
Ted Blackman
501c1bdc01
-graph-leave: fix action type
2020-10-08 17:34:25 -04:00
Liam Fitzgerald
f4d75ad74d
graph: add restore thread
2020-09-25 12:07:21 +10:00
Liam Fitzgerald
69d8130334
graph-view: en-path resource for md-hook
2020-09-24 10:11:54 +10:00
Logan Allen
598b4e19c2
graph-view: added %module field to %graph-view %create action
2020-09-22 12:44:52 -05:00
Logan Allen
38459a1095
graph-threads: fixed graph threads and added more fine-grained permissions to graph-push-hook
2020-09-18 16:59:56 -05:00
Logan Allen
0f2c4d069e
graph-push-hook: graph push hook forwarding works
2020-09-18 15:09:06 -05:00
Logan Allen
0211cdd73c
graph-thread: %forward an update to the appropriate %graph-push-hook
2020-09-17 13:56:21 -05:00
Ted Blackman
9d4e10ff48
graph-view: hard-code app-name to %graph on server-side
2020-09-15 16:25:58 -04:00
Ted Blackman
183e7210cc
-graph-join: remove timeout
2020-09-15 16:10:12 -04:00
Liam Fitzgerald
61e1a40650
graph-view: remove typing of app
2020-09-15 11:23:13 +10:00
Liam Fitzgerald
9ef2adf9da
graph-view: error-handling pass
2020-09-11 13:09:34 +10:00
Liam Fitzgerald
e206b9c951
graph-view: fix app-name in metadata
2020-09-11 10:15:04 +10:00
Liam Fitzgerald
af77d47e73
graph-view: revived groupify
2020-09-11 10:15:04 +10:00
Liam Fitzgerald
574e6de984
graph-view: refine threads
2020-09-11 10:15:04 +10:00
Liam Fitzgerald
556759ee3f
graph-view: address review comments
2020-09-11 09:35:44 +10:00
Liam Fitzgerald
cd0ca3a1b4
lib/graph: fix scries
2020-09-11 09:35:44 +10:00
Liam Fitzgerald
08dab6c5b0
graph-view: add delete, leave threads
2020-09-11 09:35:44 +10:00
Liam Fitzgerald
19371c46c2
graph-view: added create,join threads
2020-09-11 09:35:44 +10:00
Philip Monk
67c5caada8
clay: add safe merge options
...
As described in gen/hood/merge/help.txt
2020-08-28 16:36:00 -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
Philip Monk
3d1b7f2b35
clay: fix ph tests
2020-07-28 21:44:45 -07:00
Liam Fitzgerald
24b25a3422
Merge remote-tracking branch 'origin/release/next-userspace' into lf/groups-refactor
2020-07-22 10:42:52 +00:00
Philip Monk
d641210c6f
Merge branch 'philip/glob' ( #3139 )
...
* philip/glob:
interface: don't require urbitrc for build:prod
maintainers: add glob-making instructions
publish: loosen +noun:grab
glob: autostart and make ota-able
glob: added app to distribute js outside clay
Signed-off-by: Philip Monk <phil@pcmonk.me>
2020-07-21 11:22:16 -07:00
Matilde Park
a3caf1a214
Merge branch 'release/next-userspace' into lf/groups-refactor
2020-07-16 13:55:44 -04:00
Philip Monk
016719ca6b
glob: added app to distribute js outside clay
2020-07-15 12:26:55 -07:00
Ted Blackman
ae3064687c
-build-{cast,file,mark}: accept full beams; load from any desk
2020-07-08 03:08:17 -04:00
Liam Fitzgerald
93cf40a604
Merge branch 'release/next-userspace' into lf/groups-refactor
2020-07-02 12:38:12 +10:00
Ted Blackman
d7b9889b4a
-test: support other desks (full beams in args)
2020-06-28 05:06:16 -04:00
Liam Fitzgerald
8cf81002ec
Merge branch 'ford-fusion' into lf/groups-refactor
2020-06-23 12:13:03 +10:00
Philip Monk
8b78f04dd3
Merge remote-tracking branch 'origin/master' into ford-fusion
2020-06-02 21:50:20 -07:00
Liam Fitzgerald
841ba72bd9
chat: update to new groups
2020-06-02 15:20:14 +10:00
Liam Fitzgerald
d2de8d72eb
groups: begin rewrite
2020-06-02 15:07:09 +10:00
Philip Monk
a4a44f1e21
kiln: cleanup
2020-05-22 14:32:32 -07:00
Philip Monk
25bd1340f6
ph: update breach-sync now that %base is gone
2020-05-22 00:30:15 -07:00
Philip Monk
4aff4d74e2
kiln: get updates into %home, remove %base
...
We need to get updates directly into %home in case the marks depend on
changes to hoon.hoon. %base has no reason to exist.
Our ota strategy is now to merge from parent/kids to home, then
parent/kids to kids.
2020-05-21 23:45:17 -07:00
Isaac Visintainer
8e6cbbb1d6
migrate-channels: addressed review
2020-05-20 14:24:24 -06:00
Isaac Visintainer
e931a473dd
os1: migrate app data to new group
2020-05-19 20:08:35 -06:00
Ted Blackman
9bb6daad06
-work: create and mount dev desks
2020-05-15 04:00:56 -04:00
Philip Monk
a874ab4355
zuse: remove +ford
2020-05-14 00:22:39 -07:00
Philip Monk
9a1183e69f
clay: remove -merge
2020-05-12 00:02:37 -07:00
Philip Monk
9a9d91214f
clay: port mate/meld to ford fusion
2020-05-11 18:23:44 -07:00
Philip Monk
65766a73e2
clay: port -merge to fusion
2020-04-29 17:38:24 -07:00
Philip Monk
42bab4ecfb
clay: move -commit back into clay
2020-04-23 17:16:42 -07:00
Philip Monk
fa0e019ddf
clay: change %park interface to not take caches
...
Now a full commit is synchronous. -commit will be assimilated back into
clay.
2020-04-23 13:54:57 -07:00
Ted Blackman
f3544067af
-test: full path syntax
2020-04-20 01:33:29 -04:00
Ted Blackman
47d1d31a8d
WIP :spider2 (actually committed) and -tree (untested)
2020-04-19 05:18:14 -04:00
Ted Blackman
4bf854c180
WIP :spider2 using ford-fusion
2020-04-19 05:11:01 -04:00
Ted Blackman
a705954b08
-test, -build-file, -build-mark, -build-cast
2020-04-18 04:21:15 -04:00
Philip Monk
3d04695ca7
clay: use ford fusion for ankh and mime cache
2020-04-17 18:04:51 -07:00
Philip Monk
522a7fb933
clay: add -read to demonstrate live ford builds
2020-04-15 20:12:47 -07:00
Philip Monk
d04191320a
clay: add +promote-ford
2020-04-15 16:24:48 -07:00
Philip Monk
0c2eddd39f
clay: add %meet strategy to -merge
2020-04-10 22:38:10 -07:00
Philip Monk
17fa15336f
clay: fix %init for -merge
2020-04-10 20:42:56 -07:00
Philip Monk
3f2a7b08a5
clay: add -merge except meet/mate/meld
...
-merge will replace |merge so that. Once they reach feature parity and
%info is rewritten to forward to -commit, we can rip out about half of
clay.hoon
2020-03-25 20:54:19 -07:00
Philip Monk
531630e93a
clay: add %park task and -commit
...
%park is a plumbing commit task. It guarantees completion in a single
event, so you have to do much of the work before calling it. -commit
is an example of how to do this.
2020-03-20 21:30:56 -07:00
Philip Monk
6b7a791054
clay: initial version of +up
2020-03-20 15:30:24 -07:00
Philip Monk
9375616335
eth-watcher: reduce required number of confirmations
...
To 30 blocks + 30 blocks + 0-5 minutes == about 15 minutes total.
Further reduction should be possible, but requires changing the
algorithm a bit. We don't want to reduce the number of confirmations
below about 30, though, since we don't handle reorganizations well.
See #2414 .
2020-03-10 16:12:56 -07:00
Fang
ae8a57ca25
gall: (list path) in %fact and %kick
...
Instead of providing a (unit path), allows for (list path), which better
supports the "update to path and subpath cases".
For example, if /things wants updates about everything, and
/things/specific wants updates about the specific thing, they'll both
need to receive a %fact when the specific thing changes.
Previously, these would have been two separate moves. Now, gall handles
the multi-targeting for you.
2019-12-23 13:37:32 +01:00