Unverified Commit e635acd3 authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

graphest: init at 1.8.2-unstable-2026-01-21 (#444217)

parents 75d1f546 4822857c
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -100,5 +100,11 @@ stdenv.mkDerivation (finalAttrs: {
    platforms = lib.platforms.all;
    homepage = "https://www.flintlib.org/";
    downloadPage = "https://www.flintlib.org/downloads.html";
    # > checking for library containing cblas_dgemm... no
    broken =
      withBlas
      && stdenv.hostPlatform.isStatic
      && stdenv.hostPlatform.isLinux
      && stdenv.hostPlatform.isAarch64;
  };
})
+141 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
  <dict>
    <key>CFBundleDisplayName</key>
    <string>Graphest</string>
    <key>CFBundleDocumentTypes</key>
    <array>
      <dict>
        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>LSHandlerRank</key>
        <string>Owner</string>
        <key>LSItemContentTypes</key>
        <array>
          <string>io.github.unageek.graphest.document</string>
        </array>
      </dict>
    </array>
    <key>CFBundleExecutable</key>
    <string>Graphest</string>
    <key>CFBundleIconFile</key>
    <string>icon.icns</string>
    <key>CFBundleIdentifier</key>
    <string>io.github.unageek.graphest</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>CFBundleName</key>
    <string>Graphest</string>
    <key>CFBundlePackageType</key>
    <string>APPL</string>
    <key>CFBundleShortVersionString</key>
    <string>@version@</string>
    <key>CFBundleURLTypes</key>
    <array>
      <dict>
        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>CFBundleURLName</key>
        <string>Graphest</string>
        <key>CFBundleURLSchemes</key>
        <array>
          <string>graphest</string>
        </array>
      </dict>
    </array>
    <key>CFBundleVersion</key>
    <string>@version@</string>
    <key>LSApplicationCategoryType</key>
    <string>public.app-category.utilities</string>
    <key>LSEnvironment</key>
    <dict>
      <key>MallocNanoZone</key>
      <string>0</string>
    </dict>
    <key>LSMinimumSystemVersion</key>
    <string>10.13</string>
    <key>NSAppTransportSecurity</key>
    <dict>
      <key>NSAllowsArbitraryLoads</key>
      <true/>
      <key>NSAllowsLocalNetworking</key>
      <true/>
      <key>NSExceptionDomains</key>
      <dict>
        <key>127.0.0.1</key>
        <dict>
          <key>NSIncludesSubdomains</key>
          <false/>
          <key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
          <true/>
          <key>NSTemporaryExceptionAllowsInsecureHTTPSLoads</key>
          <false/>
          <key>NSTemporaryExceptionMinimumTLSVersion</key>
          <string>1.0</string>
          <key>NSTemporaryExceptionRequiresForwardSecrecy</key>
          <false/>
        </dict>
        <key>localhost</key>
        <dict>
          <key>NSIncludesSubdomains</key>
          <false/>
          <key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
          <true/>
          <key>NSTemporaryExceptionAllowsInsecureHTTPSLoads</key>
          <false/>
          <key>NSTemporaryExceptionMinimumTLSVersion</key>
          <string>1.0</string>
          <key>NSTemporaryExceptionRequiresForwardSecrecy</key>
          <false/>
        </dict>
      </dict>
    </dict>
    <key>NSBluetoothAlwaysUsageDescription</key>
    <string>This app needs access to Bluetooth</string>
    <key>NSBluetoothPeripheralUsageDescription</key>
    <string>This app needs access to Bluetooth</string>
    <key>NSCameraUsageDescription</key>
    <string>This app needs access to the camera</string>
    <key>NSHighResolutionCapable</key>
    <true/>
    <key>NSHumanReadableCopyright</key>
    <string>Copyright © 2023 Masashi Mizuno</string>
    <key>NSMainNibFile</key>
    <string>MainMenu</string>
    <key>NSMicrophoneUsageDescription</key>
    <string>This app needs access to the microphone</string>
    <key>NSPrincipalClass</key>
    <string>AtomApplication</string>
    <key>NSQuitAlwaysKeepsWindows</key>
    <false/>
    <key>NSRequiresAquaSystemAppearance</key>
    <false/>
    <key>NSSupportsAutomaticGraphicsSwitching</key>
    <true/>
    <key>UTExportedTypeDeclarations</key>
    <array>
      <dict>
        <key>UTTypeConformsTo</key>
        <array>
          <string>public.content</string>
          <string>public.data</string>
        </array>
        <key>UTTypeDescription</key>
        <string>Graphest Document</string>
        <key>UTTypeIcons</key>
        <dict>
          <key>UTTypeIconText</key>
          <string>graph</string>
        </dict>
        <key>UTTypeIdentifier</key>
        <string>io.github.unageek.graphest.document</string>
        <key>UTTypeTagSpecification</key>
        <dict>
          <key>public.filename-extension</key>
          <string>graphest</string>
        </dict>
      </dict>
    </array>
  </dict>
</plist>
+25 −0
Original line number Diff line number Diff line
diff --git a/rust/graphest-flint-sys/build.rs b/rust/graphest-flint-sys/build.rs
index 14c0039..b1b0f6a 100644
--- a/rust/graphest-flint-sys/build.rs
+++ b/rust/graphest-flint-sys/build.rs
@@ -50,6 +50,7 @@ fn load_cache(env: &Environment) {
 }
 
 fn build_flint(env: &Environment) {
+    let _ = copy_dir_all("@flint@", env.out_dir.clone());
     if env.lib_dir.join("libflint.a").exists() {
         return;
     }
diff --git a/rust/graphest-fftw-sys/build.rs b/rust/graphest-fftw-sys/build.rs
index 2e3247d..a4ac573 100644
--- a/rust/graphest-fftw-sys/build.rs
+++ b/rust/graphest-fftw-sys/build.rs
@@ -53,6 +53,8 @@ fn load_cache(env: &Environment) {
 }
 
 fn build(env: &Environment) {
+    let _ = copy_dir_all("@fftwLib@", env.out_dir.clone());
+    let _ = copy_dir_all("@fftwDev@", env.out_dir.clone());
     if env.lib_dir.join("libfftw3f.a").exists() {
         return;
     }
+12 −0
Original line number Diff line number Diff line
diff --git a/src/main/main.ts b/src/main/main.ts
index d9413cc..b49e641 100644
--- a/src/main/main.ts
+++ b/src/main/main.ts
@@ -280,7 +280,6 @@ app.whenReady().then(async () => {
   }
 
   createMainWindow();
-  autoUpdater.checkForUpdatesAndNotify();
 });
 
 app.on("open-file", (_, path) => {
+7 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
  <mime-type type="application/x-graphest">
    <comment xml:lang="en">Graphest Document</comment>
    <glob pattern="*.graphest"/>
  </mime-type>
</mime-info>
Loading