├── .eslintignore ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── generated-pr.yml │ └── stale.yml ├── .gitignore ├── LICENSE ├── PRIVACY-POLICY.md ├── README.md ├── android ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── capacitor.build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── getcapacitor │ │ │ └── myapp │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── capacitor.config.json │ │ │ └── capacitor.plugins.json │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── ai │ │ │ │ └── protocol │ │ │ │ └── durin │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-land-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── splash.png │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ ├── config.xml │ │ │ └── file_paths.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── getcapacitor │ │ └── myapp │ │ └── ExampleUnitTest.java ├── build.gradle ├── capacitor.settings.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── variables.gradle ├── capacitor.config.ts ├── ionic.config.json ├── ios ├── .gitignore └── App │ ├── App.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Durin.xcscheme │ ├── App.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ ├── App │ ├── App.entitlements │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-20x20@1x.png │ │ │ ├── AppIcon-20x20@2x-1.png │ │ │ ├── AppIcon-20x20@2x.png │ │ │ ├── AppIcon-20x20@3x.png │ │ │ ├── AppIcon-29x29@1x.png │ │ │ ├── AppIcon-29x29@2x-1.png │ │ │ ├── AppIcon-29x29@2x.png │ │ │ ├── AppIcon-29x29@3x.png │ │ │ ├── AppIcon-40x40@1x.png │ │ │ ├── AppIcon-40x40@2x-1.png │ │ │ ├── AppIcon-40x40@2x.png │ │ │ ├── AppIcon-40x40@3x.png │ │ │ ├── AppIcon-512@2x.png │ │ │ ├── AppIcon-60x60@2x.png │ │ │ ├── AppIcon-60x60@3x.png │ │ │ ├── AppIcon-76x76@1x.png │ │ │ ├── AppIcon-76x76@2x.png │ │ │ ├── AppIcon-83.5x83.5@2x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Splash.imageset │ │ │ ├── Contents.json │ │ │ ├── splash-2732x2732-1.png │ │ │ ├── splash-2732x2732-2.png │ │ │ └── splash-2732x2732.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── capacitor.config.json │ └── config.xml │ ├── Podfile │ ├── ShareExtension │ ├── Base.lproj │ │ └── MainInterface.storyboard │ ├── Info.plist │ ├── ShareExtension.entitlements │ └── ShareViewController.swift │ └── ci_scripts │ ├── ci_post_clone.sh │ ├── ci_post_xcodebuild.sh │ └── ci_pre_xcodebuild.sh ├── package.json ├── privacy_policy.md ├── public ├── assets │ ├── icon │ │ ├── favicon.png │ │ └── icon.png │ └── images │ │ ├── diffuse.png │ │ ├── durin-logo.svg │ │ ├── webrecorder.png │ │ └── wikipedia.png ├── index.html └── manifest.json ├── resources ├── icon.png └── splash.png ├── src ├── App.test.tsx ├── App.tsx ├── _fonts.scss ├── app.scss ├── assets │ ├── fonts │ │ ├── Koulen-normal-400.eot │ │ ├── Koulen-normal-400.svg │ │ ├── Koulen-normal-400.ttf │ │ ├── Koulen-normal-400.woff │ │ ├── Koulen-normal-400.woff2 │ │ ├── Source-Code-Pro-italic-300.ttf │ │ ├── Source-Code-Pro-italic-300.woff │ │ ├── Source-Code-Pro-italic-300.woff2 │ │ ├── Source-Code-Pro-italic-400.ttf │ │ ├── Source-Code-Pro-italic-400.woff │ │ ├── Source-Code-Pro-italic-400.woff2 │ │ ├── Source-Code-Pro-italic-700.ttf │ │ ├── Source-Code-Pro-italic-700.woff │ │ ├── Source-Code-Pro-italic-700.woff2 │ │ ├── Source-Code-Pro-italic-900.ttf │ │ ├── Source-Code-Pro-italic-900.woff │ │ ├── Source-Code-Pro-italic-900.woff2 │ │ ├── Source-Code-Pro-normal-300.ttf │ │ ├── Source-Code-Pro-normal-300.woff │ │ ├── Source-Code-Pro-normal-300.woff2 │ │ ├── Source-Code-Pro-normal-700.ttf │ │ ├── Source-Code-Pro-normal-700.woff │ │ ├── Source-Code-Pro-normal-700.woff2 │ │ ├── Source-Code-Pro-normal-900.ttf │ │ ├── Source-Code-Pro-normal-900.woff │ │ ├── Source-Code-Pro-normal-900.woff2 │ │ ├── Source-Code-Pro.eot │ │ ├── Source-Code-Pro.svg │ │ ├── Source-Code-Pro.ttf │ │ ├── Source-Code-Pro.woff │ │ ├── Source-Code-Pro.woff2 │ │ ├── font-koulen.css │ │ └── font-source-code-pro.css │ └── images │ │ └── portals-bg.svg ├── components │ ├── FileIcon │ │ └── index.tsx │ ├── PageContainer │ │ ├── index.scss │ │ └── index.tsx │ └── Shortcuts │ │ ├── index.scss │ │ └── index.tsx ├── index.tsx ├── pages │ ├── Browse │ │ ├── index.scss │ │ └── index.tsx │ ├── File │ │ ├── index.scss │ │ └── index.tsx │ ├── Files │ │ ├── index.scss │ │ └── index.tsx │ ├── Settings │ │ ├── index.scss │ │ └── index.tsx │ └── Share │ │ ├── index.scss │ │ └── index.tsx ├── react-app-env.d.ts ├── service-worker.ts ├── serviceWorkerRegistration.ts ├── setupTests.ts ├── theme │ └── variables.css └── util │ ├── ipfs.ts │ └── upload.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | ios/ 3 | android/ 4 | build/ -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/generated-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/.github/workflows/generated-pr.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY-POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/PRIVACY-POLICY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/capacitor.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/capacitor.build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/assets/capacitor.config.json -------------------------------------------------------------------------------- /android/app/src/main/assets/capacitor.plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/assets/capacitor.plugins.json -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/java/ai/protocol/durin/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/java/ai/protocol/durin/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/drawable-land-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/drawable-land-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/drawable-land-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/drawable-land-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/drawable-land-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/drawable-port-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/drawable-port-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/drawable-port-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/drawable-port-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/drawable-port-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/xml/config.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/capacitor.settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/capacitor.settings.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/variables.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/android/variables.gradle -------------------------------------------------------------------------------- /capacitor.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/capacitor.config.ts -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ionic.config.json -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/App/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/App/App.xcodeproj/xcshareddata/xcschemes/Durin.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App.xcodeproj/xcshareddata/xcschemes/Durin.xcscheme -------------------------------------------------------------------------------- /ios/App/App.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/App/App.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/App/App/App.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/App.entitlements -------------------------------------------------------------------------------- /ios/App/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/AppDelegate.swift -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png -------------------------------------------------------------------------------- /ios/App/App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/App/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/App/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/Info.plist -------------------------------------------------------------------------------- /ios/App/App/capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/capacitor.config.json -------------------------------------------------------------------------------- /ios/App/App/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/App/config.xml -------------------------------------------------------------------------------- /ios/App/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/Podfile -------------------------------------------------------------------------------- /ios/App/ShareExtension/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/ShareExtension/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /ios/App/ShareExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/ShareExtension/Info.plist -------------------------------------------------------------------------------- /ios/App/ShareExtension/ShareExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/ShareExtension/ShareExtension.entitlements -------------------------------------------------------------------------------- /ios/App/ShareExtension/ShareViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/ShareExtension/ShareViewController.swift -------------------------------------------------------------------------------- /ios/App/ci_scripts/ci_post_clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/ci_scripts/ci_post_clone.sh -------------------------------------------------------------------------------- /ios/App/ci_scripts/ci_post_xcodebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/ci_scripts/ci_post_xcodebuild.sh -------------------------------------------------------------------------------- /ios/App/ci_scripts/ci_pre_xcodebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/ios/App/ci_scripts/ci_pre_xcodebuild.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/package.json -------------------------------------------------------------------------------- /privacy_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/privacy_policy.md -------------------------------------------------------------------------------- /public/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/public/assets/icon/favicon.png -------------------------------------------------------------------------------- /public/assets/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/public/assets/icon/icon.png -------------------------------------------------------------------------------- /public/assets/images/diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/public/assets/images/diffuse.png -------------------------------------------------------------------------------- /public/assets/images/durin-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/public/assets/images/durin-logo.svg -------------------------------------------------------------------------------- /public/assets/images/webrecorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/public/assets/images/webrecorder.png -------------------------------------------------------------------------------- /public/assets/images/wikipedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/public/assets/images/wikipedia.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/public/manifest.json -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/resources/splash.png -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/_fonts.scss -------------------------------------------------------------------------------- /src/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/app.scss -------------------------------------------------------------------------------- /src/assets/fonts/Koulen-normal-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Koulen-normal-400.eot -------------------------------------------------------------------------------- /src/assets/fonts/Koulen-normal-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Koulen-normal-400.svg -------------------------------------------------------------------------------- /src/assets/fonts/Koulen-normal-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Koulen-normal-400.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Koulen-normal-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Koulen-normal-400.woff -------------------------------------------------------------------------------- /src/assets/fonts/Koulen-normal-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Koulen-normal-400.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-italic-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-italic-300.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-italic-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-italic-300.woff -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-italic-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-italic-300.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-italic-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-italic-400.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-italic-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-italic-400.woff -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-italic-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-italic-400.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-italic-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-italic-700.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-italic-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-italic-700.woff -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-italic-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-italic-700.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-italic-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-italic-900.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-italic-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-italic-900.woff -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-italic-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-italic-900.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-normal-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-normal-300.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-normal-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-normal-300.woff -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-normal-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-normal-300.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-normal-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-normal-700.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-normal-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-normal-700.woff -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-normal-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-normal-700.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-normal-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-normal-900.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-normal-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-normal-900.woff -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro-normal-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro-normal-900.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro.eot -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro.svg -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro.woff -------------------------------------------------------------------------------- /src/assets/fonts/Source-Code-Pro.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/Source-Code-Pro.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/font-koulen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/font-koulen.css -------------------------------------------------------------------------------- /src/assets/fonts/font-source-code-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/fonts/font-source-code-pro.css -------------------------------------------------------------------------------- /src/assets/images/portals-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/assets/images/portals-bg.svg -------------------------------------------------------------------------------- /src/components/FileIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/components/FileIcon/index.tsx -------------------------------------------------------------------------------- /src/components/PageContainer/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/components/PageContainer/index.scss -------------------------------------------------------------------------------- /src/components/PageContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/components/PageContainer/index.tsx -------------------------------------------------------------------------------- /src/components/Shortcuts/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Shortcuts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/components/Shortcuts/index.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/Browse/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/pages/Browse/index.scss -------------------------------------------------------------------------------- /src/pages/Browse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/pages/Browse/index.tsx -------------------------------------------------------------------------------- /src/pages/File/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/pages/File/index.scss -------------------------------------------------------------------------------- /src/pages/File/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/pages/File/index.tsx -------------------------------------------------------------------------------- /src/pages/Files/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/pages/Files/index.scss -------------------------------------------------------------------------------- /src/pages/Files/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/pages/Files/index.tsx -------------------------------------------------------------------------------- /src/pages/Settings/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/pages/Settings/index.scss -------------------------------------------------------------------------------- /src/pages/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/pages/Settings/index.tsx -------------------------------------------------------------------------------- /src/pages/Share/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/pages/Share/index.scss -------------------------------------------------------------------------------- /src/pages/Share/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/pages/Share/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/service-worker.ts -------------------------------------------------------------------------------- /src/serviceWorkerRegistration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/serviceWorkerRegistration.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/theme/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/theme/variables.css -------------------------------------------------------------------------------- /src/util/ipfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/util/ipfs.ts -------------------------------------------------------------------------------- /src/util/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/src/util/upload.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/Durin/HEAD/tsconfig.json --------------------------------------------------------------------------------