Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/JS-5173: Date Object #1033

Closed
wants to merge 31 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
9da2517
JS-5077: page main tag
mhlv Oct 24, 2024
42d2815
Merge branch 'main' of github.com:anyproto/anytype-ts into feature/JS…
ra3orblade Oct 25, 2024
3e3420e
JS-5077: wip
mhlv Oct 29, 2024
2650d0e
Merge branch 'main' of github.com:anyproto/anytype-ts into feature/JS…
ra3orblade Oct 29, 2024
400330f
JS-5077: layout
mhlv Nov 4, 2024
48b0303
Merge branch 'feature/JS-5077-tag-layout' of github.com:anyproto/anyt…
mhlv Nov 4, 2024
7aacbe1
JS-5077: code review
mhlv Nov 4, 2024
62438e0
JS-5077: code review
mhlv Nov 4, 2024
d0a34a1
JS-5077: code review
mhlv Nov 4, 2024
236649f
JS-5077: code review
mhlv Nov 4, 2024
29d80a4
JS-5077: code review
mhlv Nov 4, 2024
f41b134
Draft
Nek Nov 6, 2024
8b4b9af
Add Date layout
Nek Nov 6, 2024
9ca1e92
merge
ra3orblade Nov 6, 2024
8c2274e
merge
ra3orblade Nov 6, 2024
82f4573
Merge branch 'feature/JS-5077-tag-layout' of github.com:anyproto/anyt…
ra3orblade Nov 6, 2024
290cc77
Merge remote-tracking branch 'origin' into feature/date-as-object
Nek Nov 7, 2024
2e4c372
Dump WIP
Nek Nov 11, 2024
b3bf853
Merge remote-tracking branch 'origin' into feature/date-as-object
Nek Nov 11, 2024
ff4e969
Update RelationWithCounter response decoding
Nek Nov 12, 2024
0b30afa
Add type definitions for rspack APIs
Nek Nov 12, 2024
41d98fc
Update dev server config and remove unnecessary npm modules
Nek Nov 12, 2024
a514ab0
Add RSDoctor, a replacement for Bundle Analyzer and much more
Nek Nov 12, 2024
f694b0b
Add fast typechecker that works in parallel with dev build
Nek Nov 12, 2024
e832735
Add missing getType declaration to eliminate TS bug.
Nek Nov 12, 2024
028abef
Merge remote-tracking branch 'origin' into feature/date-as-object
Nek Nov 12, 2024
12ea969
Unify and clean up build and dev configs
Nek Nov 12, 2024
5caded5
Update configs
Nek Nov 12, 2024
f185551
Fix wrong rspack config file name
Nek Nov 12, 2024
29579b6
Dump changes
Nek Nov 13, 2024
b576521
Merge remote-tracking branch 'origin' into feature/date-as-object
Nek Nov 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ docs/*
electron/env.json
src/json/schema
licenses.json
dist/.rsdoctor
.rsdoctor

# generated by rspack
/compilation-stats.json
Expand Down
1 change: 1 addition & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="http://localhost:8097"></script>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Anytype</title>
</head>
Expand Down
1 change: 1 addition & 0 deletions electron/js/window.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class WindowManager {
nodeIntegration: false,
spellcheck: true,
sandbox: false,
webSecurity: false,
}, param.webPreferences);

let win = new BrowserWindow(param);
Expand Down
Loading
Loading