diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
new file mode 100644
index 0000000000..f40e0f70b4
--- /dev/null
+++ b/.github/FUNDING.yml
@@ -0,0 +1 @@
+open_collective: gephi
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
new file mode 100644
index 0000000000..99593f4c77
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,37 @@
+---
+name: Bug report
+about: Create a report to help us improve Gephi
+title: ''
+labels: To review
+assignees: ''
+
+---
+
+
+
+## Expected Behavior
+
+## Current Behavior
+
+## Possible Solution
+
+
+
+## Steps to Reproduce
+
+1.
+2.
+3.
+4.
+
+## Context
+
+
+
+## Your Environment
+
+* Version used: Gephi 0.11.2
+* Operating System:
+
+
+
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 0000000000..b7e015a5ab
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,5 @@
+blank_issues_enabled: false
+contact_links:
+ - name: Ask a question (discussions)
+ url: https://github.com/gephi/gephi/discussions
+ about: Please ask and answer questions here.
\ No newline at end of file
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
new file mode 100644
index 0000000000..133725a872
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,19 @@
+---
+name: Feature request
+about: Suggest an idea for Gephi
+title: ''
+labels: Wishlist, To review
+assignees: ''
+
+---
+
+
+
+### Proposed solution
+
+
+### Alternatives considered
+
+
+### Additional context
+
\ No newline at end of file
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000000..addc803f5b
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,11 @@
+version: 2
+updates:
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "weekly"
+
+ - package-ecosystem: "maven"
+ directory: "/"
+ schedule:
+ interval: "weekly"
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
new file mode 100644
index 0000000000..bbd090faa9
--- /dev/null
+++ b/.github/pull_request_template.md
@@ -0,0 +1,38 @@
+
+
+## Description
+
+
+
+## Checklist
+
+- [ ] Merged with master beforehand
+
+## Added tests?
+
+- [ ] π yes
+- [ ] π no, because they aren't needed
+
+
+## Added to documentation?
+- [ ] π README.md
+- [ ] π [API Changes](https://github.com/gephi/gephi/blob/master/src/main/javadoc/overview.html)
+- [ ] π Additional documentation in [docs](https://github.com/gephi/gephi-documentation)
+- [ ] π Relevant code documentation
+- [ ] π no, because they arenβt needed
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000000..a263f8b388
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,21 @@
+name: build
+
+on:
+ push:
+ branches-ignore:
+ - 0.11.3
+ - weblate**
+
+jobs:
+ build_and_test:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v7
+ - name: Set up JDK 17
+ uses: actions/setup-java@v5.7.0
+ with:
+ java-version: '17'
+ distribution: 'temurin'
+ cache: 'maven'
+ - name: Build project with Maven
+ run: mvn -T 4 --batch-mode -Djava.awt.headless=true verify -P enableCheckStyle
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
new file mode 100644
index 0000000000..7085201ab7
--- /dev/null
+++ b/.github/workflows/release.yml
@@ -0,0 +1,412 @@
+name: release
+
+on:
+ push:
+ branches: [ 0.11.3 ]
+
+jobs:
+ build-base:
+ runs-on: ubuntu-latest
+ outputs:
+ is_release: ${{ steps.detect.outputs.is_release }}
+ version: ${{ steps.detect.outputs.version }}
+ steps:
+ - uses: actions/checkout@v7
+
+ # Detect whether this build is a release (no -SNAPSHOT) or a snapshot.
+ # - SNAPSHOT: existing flow, each job deploys directly to Central.
+ # - RELEASE: every job stages locally (-DskipPublishing=true) and the
+ # publish-central job merges and uploads a single bundle.
+ - name: Detect version
+ id: detect
+ shell: bash
+ run: |
+ VERSION=$(grep -A1 'gephi-parent' pom.xml | grep '' | head -1 | sed -E 's|.*([^<]+).*|\1|')
+ if [[ -z "$VERSION" ]]; then
+ echo "Could not detect project version from pom.xml" >&2
+ exit 1
+ fi
+ if [[ "$VERSION" == *SNAPSHOT* ]]; then
+ IS_RELEASE=false
+ else
+ IS_RELEASE=true
+ fi
+ echo "version=$VERSION" >> "$GITHUB_OUTPUT"
+ echo "is_release=$IS_RELEASE" >> "$GITHUB_OUTPUT"
+ echo "Detected version: $VERSION (is_release=$IS_RELEASE)"
+
+ - name: Set up Maven Central Repository
+ uses: actions/setup-java@v5.7.0
+ with:
+ java-version: '17'
+ distribution: 'temurin'
+ cache: 'maven'
+ server-id: central
+ server-username: OSSRH_USER
+ server-password: OSSRH_PASS
+ gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
+ gpg-passphrase: GPG_PASSPHRASE
+
+ - name: Setup Maven
+ uses: stCarolas/setup-maven@v5
+ with:
+ maven-version: 3.9.14
+
+ - name: Get NBM Keystore
+ run: |
+ echo "${{ secrets.NBM_KEYSTORE }}" > keystore.ks.asc
+ gpg -d --passphrase "${{ secrets.NBM_KEYSTORE_ENC_PASSPHRASE }}" --batch keystore.ks.asc > keystore.ks
+
+ - name: Build and publish modules
+ shell: bash
+ run: |
+ SKIP_PUBLISHING=""
+ if [[ "${{ steps.detect.outputs.is_release }}" == "true" ]]; then
+ SKIP_PUBLISHING="-DskipPublishing=true"
+ echo "Release mode: staging artifacts locally; upload happens in publish-central."
+ else
+ echo "Snapshot mode: deploying directly to Central."
+ fi
+ mvn --batch-mode -Djava.awt.headless=true \
+ -Dkeystore.password=${{ secrets.KEYSTORE_PASSWD }} \
+ $SKIP_PUBLISHING \
+ site deploy \
+ -P deployment,sign-artifacts,create-modules,create-sources,create-javadoc,create-autoupdate
+ env:
+ OSSRH_USER: ${{ secrets.OSSRH_TOKEN_USER }}
+ OSSRH_PASS: ${{ secrets.OSSRH_TOKEN_PASSWD }}
+ GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
+
+ - name: Upload central staging (base)
+ if: steps.detect.outputs.is_release == 'true'
+ uses: actions/upload-artifact@v7
+ with:
+ name: central-staging-base
+ path: target/central-staging
+ if-no-files-found: error
+ retention-days: 1
+
+ - name: Upload autoupdate output
+ uses: actions/upload-artifact@v7
+ with:
+ name: autoupdate-output
+ path: modules/application/target/autoupdate_site
+ if-no-files-found: error
+ retention-days: 1
+
+ - name: Prepare modules output
+ run: tar -I 'zstd -9 -T0' -cf /tmp/modules.tar.zst -C ~/.m2/repository/org/gephi .
+
+ - name: Upload modules output
+ uses: actions/upload-artifact@v7
+ with:
+ name: modules-output
+ path: /tmp/modules.tar.zst
+ if-no-files-found: error
+ retention-days: 1
+
+ bundle:
+ needs: build-base
+ strategy:
+ fail-fast: false
+ max-parallel: 1
+ matrix:
+ os: [ ubuntu-latest, windows-latest, macos-latest ]
+ arch: [ x64 ]
+ include:
+ - task: create-targz
+ os: ubuntu-latest
+ arch: x64
+ - task: create-targz
+ os: ubuntu-latest
+ arch: aarch64
+ - task: create-exe
+ os: windows-latest
+ arch: x64
+ - task: create-dmg,notarize-dmg
+ os: macos-latest
+ arch: x64
+ - task: create-dmg,notarize-dmg
+ os: macos-latest
+ arch: aarch64
+ runs-on: ${{ matrix.os }}
+ steps:
+ - uses: actions/checkout@v7
+ - name: Set up Maven Central Repository
+ uses: actions/setup-java@v5.7.0
+ with:
+ java-version: '17'
+ distribution: 'temurin'
+ server-id: central
+ server-username: OSSRH_USER
+ server-password: OSSRH_PASS
+ gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
+ gpg-passphrase: GPG_PASSPHRASE
+
+ - name: Install MacOS requirements
+ run: brew install gnupg@1.4 create-dmg
+ if: runner.os == 'macOS'
+
+ - name: Apple Developer Certificates
+ run: |
+ gpg1 --output .github/workflows/release/certs/dev_id.cer --passphrase "$ENCRYPTION_SECRET" --decrypt .github/workflows/release/certs/dev_id.cer.enc
+ gpg1 --output .github/workflows/release/certs/dev_id.p12 --passphrase "$ENCRYPTION_SECRET" --decrypt .github/workflows/release/certs/dev_id.p12.enc
+ ./.github/workflows/release/add-key.sh
+ if: runner.os == 'macOS'
+ env:
+ ENCRYPTION_SECRET: ${{ secrets.ENCRYPTION_SECRET }}
+ KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
+
+ # Workaround for "hdiutil: create failed - Resource busy" error
+ # https://github.com/actions/runner-images/issues/7522
+ - name: MacOS hdiutil workaround
+ run: |
+ echo killing...; sudo pkill -9 XProtect >/dev/null || true;
+ echo waiting...; while pgrep XProtect; do sleep 3; done;
+ if: runner.os == 'macOS'
+
+ - name: Retrieve modules output
+ uses: actions/download-artifact@v8
+ with:
+ name: modules-output
+
+ - name: Extract artifacts Linux
+ run: |
+ mkdir -p ~/.m2/repository/org/gephi/
+ tar --zstd -xf modules.tar.zst -C ~/.m2/repository/org/gephi
+ if: runner.os == 'Linux'
+
+ - name: Extract artifacts Mac OS
+ run: |
+ mkdir -p ~/.m2/repository/org/gephi/
+ unzstd -c modules.tar.zst | tar -x -C ~/.m2/repository/org/gephi
+ if: runner.os == 'macOS'
+
+ - name: Extract artifacts Windows
+ shell: bash
+ run: |
+ mkdir -p ~/.m2/repository/org/gephi/
+ tar --zstd -xf modules.tar.zst -C ~/.m2/repository/org/gephi
+ if: runner.os == 'Windows'
+
+ - name: Build and publish bundle
+ shell: bash
+ run: |
+ SKIP_PUBLISHING=""
+ if [[ "${{ needs.build-base.outputs.is_release }}" == "true" ]]; then
+ SKIP_PUBLISHING="-DskipPublishing=true"
+ echo "Release mode: staging artifacts locally; upload happens in publish-central."
+ else
+ echo "Snapshot mode: deploying directly to Central."
+ fi
+ mvn --batch-mode -Djava.awt.headless=true \
+ -DautoPublish=true -DwaitUntil=published \
+ $SKIP_PUBLISHING \
+ -Dgephi.apple.notarization.username=$APPLE_USERNAME \
+ -Dgephi.apple.notarization.password=$APPLE_PASSWORD \
+ -Dgephi.apple.notarization.teamId=$APPLE_TEAM_ID \
+ -Dgephi.windows.codesign.username=$CODESIGN_USERNAME \
+ -Dgephi.windows.codesign.password=$CODESIGN_PASSWORD \
+ -Dgephi.windows.codesign.totp=$CODESIGN_TOTP \
+ -Dgephi.bundle.arch=${{ matrix.arch }} \
+ deploy -P deployment,sign-artifacts,${{ matrix.task }}
+ working-directory: modules/application
+ env:
+ OSSRH_USER: ${{ secrets.OSSRH_TOKEN_USER }}
+ OSSRH_PASS: ${{ secrets.OSSRH_TOKEN_PASSWD }}
+ GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
+ APPLE_USERNAME: ${{ secrets.APPLE_USERNAME }}
+ APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
+ APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
+ CODESIGN_USERNAME: ${{ secrets.CODESIGN_USERNAME }}
+ CODESIGN_PASSWORD: ${{ secrets.CODESIGN_PASSWORD }}
+ CODESIGN_TOTP: ${{ secrets.CODESIGN_TOTP }}
+
+ - name: CleanUp MacOS keychain
+ run: ./.github/workflows/release/remove-key.sh
+ if: runner.os == 'macOS'
+
+ - name: Upload central staging
+ if: needs.build-base.outputs.is_release == 'true'
+ uses: actions/upload-artifact@v7
+ with:
+ name: central-staging-${{ matrix.os }}-${{ matrix.arch }}
+ path: modules/application/target/central-staging
+ if-no-files-found: error
+ retention-days: 1
+
+ - name: Output download link
+ shell: bash
+ run: |
+ VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
+ [[ "$VERSION" != *SNAPSHOT* ]] && exit 0
+ BASE="https://central.sonatype.com/repository/maven-snapshots/org/gephi/gephi/$VERSION"
+ METADATA=$(curl -sf "$BASE/maven-metadata.xml")
+ SNAPSHOT_TS=$(echo "$METADATA" | sed -n 's/.*\([^<]*\)<\/timestamp>.*/\1/p')
+ SNAPSHOT_BN=$(echo "$METADATA" | sed -n 's/.*\([^<]*\)<\/buildNumber>.*/\1/p')
+ SNAP_SUFFIX="${SNAPSHOT_TS}-${SNAPSHOT_BN}"
+ FILE=$(find ~/.m2/repository/org/gephi/gephi/$VERSION/ \
+ -name "gephi-*-${{ matrix.arch }}.*" \
+ ! -name "*.asc" ! -name "*.md5" ! -name "*.sha*" ! -name "*.pom" \
+ | sort | tail -1)
+ FILENAME=$(basename "$FILE")
+ REMOTE_FILENAME="${FILENAME/SNAPSHOT/$SNAP_SUFFIX}"
+ echo "- [$REMOTE_FILENAME]($BASE/$REMOTE_FILENAME)" >> $GITHUB_STEP_SUMMARY
+
+ # Releases only: download every job's central-staging tree, merge them into a
+ # single Maven Repository Layout directory, zip it, and upload it as a single
+ # deployment to the Sonatype Central Publisher Portal as USER_MANAGED. The
+ # deployment then needs to be validated and published manually via the UI at
+ # https://central.sonatype.com/publishing/deployments.
+ publish-central:
+ needs: [ build-base, bundle ]
+ if: needs.build-base.outputs.is_release == 'true'
+ runs-on: ubuntu-latest
+ steps:
+ - name: Download all central staging artifacts
+ uses: actions/download-artifact@v8
+ with:
+ pattern: 'central-staging-*'
+ path: staging-parts
+
+ - name: Merge staging trees into a single bundle
+ shell: bash
+ run: |
+ set -euo pipefail
+ mkdir -p bundle
+ # Merge base first so its application POM and signatures win for files
+ # produced by multiple jobs (every job stages a gephi-.pom + .asc;
+ # the per-classifier .tar.gz / .exe / .dmg files are unique).
+ if [[ -d "staging-parts/central-staging-base" ]]; then
+ echo "Merging central-staging-base"
+ rsync -a staging-parts/central-staging-base/ bundle/
+ else
+ echo "central-staging-base artifact missing" >&2
+ exit 1
+ fi
+ for d in staging-parts/*/; do
+ name=$(basename "$d")
+ if [[ "$name" == "central-staging-base" ]]; then
+ continue
+ fi
+ echo "Merging $name"
+ rsync -a --ignore-existing "$d" bundle/
+ done
+ # Drop the plugin's intermediate metadata files; they must not be in
+ # the Portal bundle.
+ find bundle -name 'maven-metadata*' -delete
+ echo "Bundle contents:"
+ find bundle -type f | sort
+
+ - name: Create bundle zip
+ shell: bash
+ run: |
+ set -euo pipefail
+ (cd bundle && zip -qr ../central-bundle.zip .)
+ ls -la central-bundle.zip
+
+ - name: Upload bundle to Sonatype Central Portal
+ id: upload
+ shell: bash
+ env:
+ OSSRH_USER: ${{ secrets.OSSRH_TOKEN_USER }}
+ OSSRH_PASS: ${{ secrets.OSSRH_TOKEN_PASSWD }}
+ VERSION: ${{ needs.build-base.outputs.version }}
+ run: |
+ set -euo pipefail
+ TOKEN=$(printf '%s:%s' "$OSSRH_USER" "$OSSRH_PASS" | base64 -w0)
+ DEPLOYMENT_NAME="org.gephi:gephi:${VERSION}"
+ echo "Uploading bundle as $DEPLOYMENT_NAME"
+ ID=$(curl -fsS -X POST \
+ -H "Authorization: Bearer $TOKEN" \
+ -F "bundle=@central-bundle.zip" \
+ "https://central.sonatype.com/api/v1/publisher/upload?publishingType=USER_MANAGED&name=${DEPLOYMENT_NAME}")
+ if [[ -z "$ID" ]]; then
+ echo "Upload returned an empty deployment ID" >&2
+ exit 1
+ fi
+ echo "Deployment ID: $ID"
+ echo "deployment_id=$ID" >> "$GITHUB_OUTPUT"
+
+ - name: Wait for Central validation
+ shell: bash
+ env:
+ OSSRH_USER: ${{ secrets.OSSRH_TOKEN_USER }}
+ OSSRH_PASS: ${{ secrets.OSSRH_TOKEN_PASSWD }}
+ DEPLOYMENT_ID: ${{ steps.upload.outputs.deployment_id }}
+ run: |
+ set -euo pipefail
+ TOKEN=$(printf '%s:%s' "$OSSRH_USER" "$OSSRH_PASS" | base64 -w0)
+ while true; do
+ RESPONSE=$(curl -fsS -X POST \
+ -H "Authorization: Bearer $TOKEN" \
+ "https://central.sonatype.com/api/v1/publisher/status?id=${DEPLOYMENT_ID}")
+ STATE=$(echo "$RESPONSE" | jq -r '.deploymentState')
+ echo "Current state: $STATE"
+ case "$STATE" in
+ VALIDATED|PUBLISHING|PUBLISHED)
+ echo "Deployment is in $STATE state."
+ break
+ ;;
+ FAILED)
+ echo "Deployment failed:"
+ echo "$RESPONSE" | jq .
+ exit 1
+ ;;
+ esac
+ sleep 15
+ done
+
+ - name: Write summary
+ shell: bash
+ env:
+ DEPLOYMENT_ID: ${{ steps.upload.outputs.deployment_id }}
+ VERSION: ${{ needs.build-base.outputs.version }}
+ run: |
+ {
+ echo "## Maven Central deployment ready for publishing"
+ echo
+ echo "- Component: \`org.gephi:gephi:${VERSION}\`"
+ echo "- Deployment ID: \`${DEPLOYMENT_ID}\`"
+ echo
+ echo "Validate it and click **Publish** at ."
+ } >> "$GITHUB_STEP_SUMMARY"
+
+ update-site:
+ # In snapshot mode bundle directly publishes binaries, so update-site can
+ # run right after. In release mode wait for publish-central to succeed so
+ # we don't push the autoupdate XML before the bundle is at least validated
+ # by Central. The bundle still needs to be manually published in the UI to
+ # actually become live, so the autoupdate site may briefly point to
+ # not-yet-published files until that step is completed.
+ needs: [ build-base, bundle, publish-central ]
+ if: |
+ always() &&
+ needs.build-base.result == 'success' &&
+ needs.bundle.result == 'success' &&
+ (needs.publish-central.result == 'success' || needs.publish-central.result == 'skipped')
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v7
+ - name: Set up JDK 17
+ uses: actions/setup-java@v5.7.0
+ with:
+ java-version: '17'
+ distribution: 'temurin'
+
+ - name: Retrieve autoupdate output
+ uses: actions/download-artifact@v8
+ with:
+ name: autoupdate-output
+ path: modules/application/target/autoupdate_site
+
+ - name: Configure Git user
+ run: |
+ git config --global user.email "github-action@users.noreply.github.com"
+ git config --global user.name "GitHub Actions"
+
+ - name: Update autoupdate content on gh-pages
+ run: mvn validate scm-publish:publish-scm -P push-site
+ working-directory: modules/application
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/.github/workflows/release/add-key.sh b/.github/workflows/release/add-key.sh
new file mode 100755
index 0000000000..35fe2cd137
--- /dev/null
+++ b/.github/workflows/release/add-key.sh
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+# Create a custom keychain
+security create-keychain -p travis gephi-build.keychain
+
+# Make the custom keychain default, so xcodebuild will use it for signing
+security default-keychain -s gephi-build.keychain
+
+# Unlock the keychain
+security unlock-keychain -p travis gephi-build.keychain
+
+# Set keychain timeout to 1 hour for long builds
+security set-keychain-settings -t 3600 -l ~/Library/Keychains/gephi-build.keychain
+
+# Add certificates to keychain and allow codesign to access them
+security import ./.github/workflows/release/certs/apple.cer -k ~/Library/Keychains/gephi-build.keychain -T /usr/bin/codesign
+security import ./.github/workflows/release/certs/dev_id.cer -k ~/Library/Keychains/gephi-build.keychain -T /usr/bin/codesign
+security import ./.github/workflows/release/certs/dev_id.p12 -k ~/Library/Keychains/gephi-build.keychain -P $KEY_PASSWORD -T /usr/bin/codesign
+
+security set-key-partition-list -S apple-tool:,apple: -s -k travis gephi-build.keychain
\ No newline at end of file
diff --git a/.github/workflows/release/certs/apple.cer b/.github/workflows/release/certs/apple.cer
new file mode 100644
index 0000000000..0de099b869
Binary files /dev/null and b/.github/workflows/release/certs/apple.cer differ
diff --git a/.github/workflows/release/certs/dev_id.cer.enc b/.github/workflows/release/certs/dev_id.cer.enc
new file mode 100644
index 0000000000..f472cf74f5
Binary files /dev/null and b/.github/workflows/release/certs/dev_id.cer.enc differ
diff --git a/.github/workflows/release/certs/dev_id.p12.enc b/.github/workflows/release/certs/dev_id.p12.enc
new file mode 100644
index 0000000000..8628c3cd1d
Binary files /dev/null and b/.github/workflows/release/certs/dev_id.p12.enc differ
diff --git a/.github/workflows/release/remove-key.sh b/.github/workflows/release/remove-key.sh
new file mode 100755
index 0000000000..497a8a779f
--- /dev/null
+++ b/.github/workflows/release/remove-key.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+security delete-keychain gephi-build.keychain
+rm -rf .github/workflows/build/certs
diff --git a/.gitignore b/.gitignore
index f289760cc1..fccc17c9f6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -32,8 +32,6 @@ keystore.ks
/modules/DesktopSpigot/target/
/modules/DesktopStatistics/target/
/modules/DesktopTimeline/target/
-/modules/DesktopTools/target/
-/modules/DHNSGraph/target/
/modules/DirectoryChooser/target/
/modules/DynamicAPI/target/
/modules/DynamicImpl/target/
@@ -99,3 +97,33 @@ keystore.ks
/modules/AppearancePlugin/target/
/modules/AppearancePluginUI/target/
/modules/DesktopAppearance/target/
+/modules/DesktopAttributes/target/
+/modules/branding/src/main/nbm-branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/ui/Bundle.properties
+/modules/branding/src/main/nbm-branding/core/core.jar/org/netbeans/core/startup/Bundle.properties
+/modules/TestUtils/target
+.java-version
+nb-configuration.xml
+*.args
+*.gpg
+dev_id.cer
+*.p12
+
+*.iml
+.idea/
+*.project
+.settings/**
+**/.settings/**
+**/.classpath
+**/.factorypath
+modules/DesktopBranding/src/main/nbm-branding/core/core.jar/org/netbeans/core/startup/Bundle.properties
+modules/DesktopBranding/src/main/nbm-branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/
+build.sh
+*.asc
+**/keystore/**
+src/macosx-launcher/.build
+src/macosx-launcher/.swiftpm
+src/macosx-launcher/Packages
+src/macosx-launcher/*.xcodeproj
+xcuserdata/
+projects.xml
+modules/application/.flattened-pom.xml
\ No newline at end of file
diff --git a/.tx/config b/.tx/config
deleted file mode 100644
index aa180fc062..0000000000
--- a/.tx/config
+++ /dev/null
@@ -1,951 +0,0 @@
-[main]
-host = gephi
-
-[gephi.org-gephi-ui-workspace]
-file_filter = modules\WorkspaceUI\src\main\resources\org\gephi\ui\workspace\.po
-source_file = modules\WorkspaceUI\src\main\resources\org\gephi\ui\workspace\org-gephi-ui-workspace.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-welcome]
-file_filter = modules\WelcomeScreen\src\main\resources\org\gephi\desktop\welcome\.po
-source_file = modules\WelcomeScreen\src\main\resources\org\gephi\desktop\welcome\org-gephi-desktop-welcome.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-visualization]
-file_filter = modules\VisualizationImpl\src\main\resources\org\gephi\visualization\.po
-source_file = modules\VisualizationImpl\src\main\resources\org\gephi\visualization\org-gephi-visualization.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-visualization-screenshot]
-file_filter = modules\VisualizationImpl\src\main\resources\org\gephi\visualization\screenshot\.po
-source_file = modules\VisualizationImpl\src\main\resources\org\gephi\visualization\screenshot\org-gephi-visualization-screenshot.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-visualization-options]
-file_filter = modules\VisualizationImpl\src\main\resources\org\gephi\visualization\options\.po
-source_file = modules\VisualizationImpl\src\main\resources\org\gephi\visualization\options\org-gephi-visualization-options.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-visualization-config]
-file_filter = modules\VisualizationImpl\src\main\resources\org\gephi\visualization\config\.po
-source_file = modules\VisualizationImpl\src\main\resources\org\gephi\visualization\config\org-gephi-visualization-config.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-visualization-component]
-file_filter = modules\VisualizationImpl\src\main\resources\org\gephi\visualization\component\.po
-source_file = modules\VisualizationImpl\src\main\resources\org\gephi\visualization\component\org-gephi-visualization-component.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-visualization-apiimpl-contextmenuitems]
-file_filter = modules\VisualizationImpl\src\main\resources\org\gephi\visualization\apiimpl\contextmenuitems\.po
-source_file = modules\VisualizationImpl\src\main\resources\org\gephi\visualization\apiimpl\contextmenuitems\org-gephi-visualization-apiimpl-contextmenuitems.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-visualization-opengl]
-file_filter = modules\VisualizationImpl\src\main\resources\org\gephi\visualization\opengl\.po
-source_file = modules\VisualizationImpl\src\main\resources\org\gephi\visualization\opengl\org-gephi-visualization-opengl.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-visualization-api]
-file_filter = modules\VisualizationAPI\src\main\resources\org\gephi\visualization\api\.po
-source_file = modules\VisualizationAPI\src\main\resources\org\gephi\visualization\api\org-gephi-visualization-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-lib-validation]
-file_filter = modules\ValidationAPI\src\main\resources\org\gephi\lib\validation\.po
-source_file = modules\ValidationAPI\src\main\resources\org\gephi\lib\validation\org-gephi-lib-validation.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-utils]
-file_filter = modules\Utils\src\main\resources\org\gephi\utils\.po
-source_file = modules\Utils\src\main\resources\org\gephi\utils\org-gephi-utils.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-utils]
-file_filter = modules\UIUtils\src\main\resources\org\gephi\ui\utils\.po
-source_file = modules\UIUtils\src\main\resources\org\gephi\ui\utils\org-gephi-ui-utils.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-components]
-file_filter = modules\UIComponents\src\main\resources\org\gephi\ui\components\.po
-source_file = modules\UIComponents\src\main\resources\org\gephi\ui\components\org-gephi-ui-components.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-tools-plugin]
-file_filter = modules\ToolsPlugin\src\main\resources\org\gephi\ui\tools\plugin\.po
-source_file = modules\ToolsPlugin\src\main\resources\org\gephi\ui\tools\plugin\org-gephi-ui-tools-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-tools-plugin-edit]
-file_filter = modules\ToolsPlugin\src\main\resources\org\gephi\ui\tools\plugin\edit\.po
-source_file = modules\ToolsPlugin\src\main\resources\org\gephi\ui\tools\plugin\edit\org-gephi-ui-tools-plugin-edit.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-tools-plugin]
-file_filter = modules\ToolsPlugin\src\main\resources\org\gephi\tools\plugin\.po
-source_file = modules\ToolsPlugin\src\main\resources\org\gephi\tools\plugin\org-gephi-tools-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-tools-api]
-file_filter = modules\ToolsAPI\src\main\resources\org\gephi\tools\api\.po
-source_file = modules\ToolsAPI\src\main\resources\org\gephi\tools\api\org-gephi-tools-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-timeline]
-file_filter = modules\TimelineAPI\src\main\resources\org\gephi\timeline\.po
-source_file = modules\TimelineAPI\src\main\resources\org\gephi\timeline\org-gephi-timeline.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-statistics-plugin]
-file_filter = modules\StatisticsPluginUI\src\main\resources\org\gephi\ui\statistics\plugin\.po
-source_file = modules\StatisticsPluginUI\src\main\resources\org\gephi\ui\statistics\plugin\org-gephi-ui-statistics-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-statistics-plugin-dynamic]
-file_filter = modules\StatisticsPluginUI\src\main\resources\org\gephi\ui\statistics\plugin\dynamic\.po
-source_file = modules\StatisticsPluginUI\src\main\resources\org\gephi\ui\statistics\plugin\dynamic\org-gephi-ui-statistics-plugin-dynamic.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-statistics-plugin]
-file_filter = modules\StatisticsPlugin\src\main\resources\org\gephi\statistics\plugin\.po
-source_file = modules\StatisticsPlugin\src\main\resources\org\gephi\statistics\plugin\org-gephi-statistics-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-statistics-plugin-dynamic]
-file_filter = modules\StatisticsPlugin\src\main\resources\org\gephi\statistics\plugin\dynamic\.po
-source_file = modules\StatisticsPlugin\src\main\resources\org\gephi\statistics\plugin\dynamic\org-gephi-statistics-plugin-dynamic.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-statistics-plugin-dynamic-builder]
-file_filter = modules\StatisticsPlugin\src\main\resources\org\gephi\statistics\plugin\dynamic\builder\.po
-source_file = modules\StatisticsPlugin\src\main\resources\org\gephi\statistics\plugin\dynamic\builder\org-gephi-statistics-plugin-dynamic-builder.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-statistics-plugin-builder]
-file_filter = modules\StatisticsPlugin\src\main\resources\org\gephi\statistics\plugin\builder\.po
-source_file = modules\StatisticsPlugin\src\main\resources\org\gephi\statistics\plugin\builder\org-gephi-statistics-plugin-builder.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-statistics-spi]
-file_filter = modules\StatisticsAPI\src\main\resources\org\gephi\statistics\spi\.po
-source_file = modules\StatisticsAPI\src\main\resources\org\gephi\statistics\spi\org-gephi-statistics-spi.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-statistics-api]
-file_filter = modules\StatisticsAPI\src\main\resources\org\gephi\statistics\api\.po
-source_file = modules\StatisticsAPI\src\main\resources\org\gephi\statistics\api\org-gephi-statistics-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-components-SplineEditor]
-file_filter = modules\SplineEditor\src\main\resources\org\gephi\ui\components\SplineEditor\.po
-source_file = modules\SplineEditor\src\main\resources\org\gephi\ui\components\SplineEditor\org-gephi-ui-components-SplineEditor.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-spigot-plugin]
-file_filter = modules\SpigotPluginUI\src\main\resources\org\gephi\ui\spigot\plugin\.po
-source_file = modules\SpigotPluginUI\src\main\resources\org\gephi\ui\spigot\plugin\org-gephi-ui-spigot-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-spigot-plugin-email]
-file_filter = modules\SpigotPluginUI\src\main\resources\org\gephi\ui\spigot\plugin\email\.po
-source_file = modules\SpigotPluginUI\src\main\resources\org\gephi\ui\spigot\plugin\email\org-gephi-ui-spigot-plugin-email.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-io-spigot-plugin]
-file_filter = modules\SpigotPlugin\src\main\resources\org\gephi\io\spigot\plugin\.po
-source_file = modules\SpigotPlugin\src\main\resources\org\gephi\io\spigot\plugin\org-gephi-io-spigot-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-io-spigot-plugin-email]
-file_filter = modules\SpigotPlugin\src\main\resources\org\gephi\io\spigot\plugin\email\.po
-source_file = modules\SpigotPlugin\src\main\resources\org\gephi\io\spigot\plugin\email\org-gephi-io-spigot-plugin-email.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-upgrader]
-file_filter = modules\SettingsUpgrader\src\main\resources\org\gephi\ui\upgrader\.po
-source_file = modules\SettingsUpgrader\src\main\resources\org\gephi\ui\upgrader\org-gephi-ui-upgrader.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-ranking-plugin]
-file_filter = modules\RankingPluginUI\src\main\resources\org\gephi\ui\ranking\plugin\.po
-source_file = modules\RankingPluginUI\src\main\resources\org\gephi\ui\ranking\plugin\org-gephi-ui-ranking-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ranking-plugin]
-file_filter = modules\RankingPlugin\src\main\resources\org\gephi\ranking\plugin\.po
-source_file = modules\RankingPlugin\src\main\resources\org\gephi\ranking\plugin\org-gephi-ranking-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ranking-api]
-file_filter = modules\RankingAPI\src\main\resources\org\gephi\ranking\api\.po
-source_file = modules\RankingAPI\src\main\resources\org\gephi\ranking\api\org-gephi-ranking-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-project]
-file_filter = modules\ProjectUI\src\main\resources\org\gephi\ui\project\.po
-source_file = modules\ProjectUI\src\main\resources\org\gephi\ui\project\org-gephi-ui-project.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-project-io]
-file_filter = modules\ProjectAPI\src\main\resources\org\gephi\project\io\.po
-source_file = modules\ProjectAPI\src\main\resources\org\gephi\project\io\org-gephi-project-io.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-project-impl]
-file_filter = modules\ProjectAPI\src\main\resources\org\gephi\project\impl\.po
-source_file = modules\ProjectAPI\src\main\resources\org\gephi\project\impl\org-gephi-project-impl.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-project-api]
-file_filter = modules\ProjectAPI\src\main\resources\org\gephi\project\api\.po
-source_file = modules\ProjectAPI\src\main\resources\org\gephi\project\api\org-gephi-project-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-processor-plugin]
-file_filter = modules\ProcessorPluginUI\src\main\resources\org\gephi\ui\processor\plugin\.po
-source_file = modules\ProcessorPluginUI\src\main\resources\org\gephi\ui\processor\plugin\org-gephi-ui-processor-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-io-processor-plugin]
-file_filter = modules\ProcessorPlugin\src\main\resources\org\gephi\io\processor\plugin\.po
-source_file = modules\ProcessorPlugin\src\main\resources\org\gephi\io\processor\plugin\org-gephi-io-processor-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-preview-plugin]
-file_filter = modules\PreviewPlugin\src\main\resources\org\gephi\preview\plugin\.po
-source_file = modules\PreviewPlugin\src\main\resources\org\gephi\preview\plugin\org-gephi-preview-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-preview-plugin-renderers]
-file_filter = modules\PreviewPlugin\src\main\resources\org\gephi\preview\plugin\renderers\.po
-source_file = modules\PreviewPlugin\src\main\resources\org\gephi\preview\plugin\renderers\org-gephi-preview-plugin-renderers.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-exporter-preview]
-file_filter = modules\PreviewExportUI\src\main\resources\org\gephi\ui\exporter\preview\.po
-source_file = modules\PreviewExportUI\src\main\resources\org\gephi\ui\exporter\preview\org-gephi-ui-exporter-preview.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-io-exporter-preview]
-file_filter = modules\PreviewExport\src\main\resources\org\gephi\io\exporter\preview\.po
-source_file = modules\PreviewExport\src\main\resources\org\gephi\io\exporter\preview\org-gephi-io-exporter-preview.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-preview]
-file_filter = modules\PreviewAPI\src\main\resources\org\gephi\preview\.po
-source_file = modules\PreviewAPI\src\main\resources\org\gephi\preview\org-gephi-preview.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-preview-presets]
-file_filter = modules\PreviewAPI\src\main\resources\org\gephi\preview\presets\.po
-source_file = modules\PreviewAPI\src\main\resources\org\gephi\preview\presets\org-gephi-preview-presets.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-preview-api]
-file_filter = modules\PreviewAPI\src\main\resources\org\gephi\preview\api\.po
-source_file = modules\PreviewAPI\src\main\resources\org\gephi\preview\api\org-gephi-preview-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-perspective-api]
-file_filter = modules\PerspectiveAPI\src\main\resources\org\gephi\perspective\api\.po
-source_file = modules\PerspectiveAPI\src\main\resources\org\gephi\perspective\api\org-gephi-perspective-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-partition-plugin]
-file_filter = modules\PartitionPluginUI\src\main\resources\org\gephi\ui\partition\plugin\.po
-source_file = modules\PartitionPluginUI\src\main\resources\org\gephi\ui\partition\plugin\org-gephi-ui-partition-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-partition-plugin]
-file_filter = modules\PartitionPlugin\src\main\resources\org\gephi\partition\plugin\.po
-source_file = modules\PartitionPlugin\src\main\resources\org\gephi\partition\plugin\org-gephi-partition-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-partition-api]
-file_filter = modules\PartitionAPI\src\main\resources\org\gephi\partition\api\.po
-source_file = modules\PartitionAPI\src\main\resources\org\gephi\partition\api\org-gephi-partition-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-mrufiles-api]
-file_filter = modules\MostRecentFilesAPI\src\main\resources\org\gephi\desktop\mrufiles\api\.po
-source_file = modules\MostRecentFilesAPI\src\main\resources\org\gephi\desktop\mrufiles\api\org-gephi-desktop-mrufiles-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-utils-longtask]
-file_filter = modules\LongTaskAPI\src\main\resources\org\gephi\utils\longtask\.po
-source_file = modules\LongTaskAPI\src\main\resources\org\gephi\utils\longtask\org-gephi-utils-longtask.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-layout-plugin]
-file_filter = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\.po
-source_file = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\org-gephi-layout-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-layout-plugin-scale]
-file_filter = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\scale\.po
-source_file = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\scale\org-gephi-layout-plugin-scale.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-layout-plugin-rotate]
-file_filter = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\rotate\.po
-source_file = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\rotate\org-gephi-layout-plugin-rotate.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-layout-plugin-random]
-file_filter = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\random\.po
-source_file = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\random\org-gephi-layout-plugin-random.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-layout-plugin-multilevel]
-file_filter = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\multilevel\.po
-source_file = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\multilevel\org-gephi-layout-plugin-multilevel.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-layout-plugin-labelAdjust]
-file_filter = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\labelAdjust\.po
-source_file = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\labelAdjust\org-gephi-layout-plugin-labelAdjust.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-layout-plugin-fruchterman]
-file_filter = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\fruchterman\.po
-source_file = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\fruchterman\org-gephi-layout-plugin-fruchterman.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-layout-plugin-forceAtlas2]
-file_filter = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\forceAtlas2\.po
-source_file = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\forceAtlas2\org-gephi-layout-plugin-forceAtlas2.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-layout-plugin-forceAtlas]
-file_filter = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\forceAtlas\.po
-source_file = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\forceAtlas\org-gephi-layout-plugin-forceAtlas.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-layout-plugin-force-yifanHu]
-file_filter = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\force\yifanHu\.po
-source_file = modules\LayoutPlugin\src\main\resources\org\gephi\layout\plugin\force\yifanHu\org-gephi-layout-plugin-force-yifanHu.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-layout]
-file_filter = modules\LayoutAPI\src\main\resources\org\gephi\layout\.po
-source_file = modules\LayoutAPI\src\main\resources\org\gephi\layout\org-gephi-layout.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-layout-api]
-file_filter = modules\LayoutAPI\src\main\resources\org\gephi\layout\api\.po
-source_file = modules\LayoutAPI\src\main\resources\org\gephi\layout\api\org-gephi-layout-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-importer-plugin]
-file_filter = modules\ImportPluginUI\src\main\resources\org\gephi\ui\importer\plugin\.po
-source_file = modules\ImportPluginUI\src\main\resources\org\gephi\ui\importer\plugin\org-gephi-ui-importer-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-io-importer-plugin]
-file_filter = modules\ImportPlugin\src\main\resources\org\gephi\io\importer\plugin\.po
-source_file = modules\ImportPlugin\src\main\resources\org\gephi\io\importer\plugin\org-gephi-io-importer-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-io-importer-plugin-file]
-file_filter = modules\ImportPlugin\src\main\resources\org\gephi\io\importer\plugin\file\.po
-source_file = modules\ImportPlugin\src\main\resources\org\gephi\io\importer\plugin\file\org-gephi-io-importer-plugin-file.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-io-importer-impl]
-file_filter = modules\ImportAPI\src\main\resources\org\gephi\io\importer\impl\.po
-source_file = modules\ImportAPI\src\main\resources\org\gephi\io\importer\impl\org-gephi-io-importer-impl.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-io-importer-api]
-file_filter = modules\ImportAPI\src\main\resources\org\gephi\io\importer\api\.po
-source_file = modules\ImportAPI\src\main\resources\org\gephi\io\importer\api\org-gephi-io-importer-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-graph-api]
-file_filter = modules\GraphAPI\src\main\resources\org\gephi\graph\api\.po
-source_file = modules\GraphAPI\src\main\resources\org\gephi\graph\api\org-gephi-graph-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-lib-gleem]
-file_filter = modules\Gleem\src\main\resources\org\gephi\lib\gleem\.po
-source_file = modules\Gleem\src\main\resources\org\gephi\lib\gleem\org-gephi-lib-gleem.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-generator-plugin]
-file_filter = modules\GeneratorPluginUI\src\main\resources\org\gephi\ui\generator\plugin\.po
-source_file = modules\GeneratorPluginUI\src\main\resources\org\gephi\ui\generator\plugin\org-gephi-ui-generator-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-io-generator-plugin]
-file_filter = modules\GeneratorPlugin\src\main\resources\org\gephi\io\generator\plugin\.po
-source_file = modules\GeneratorPlugin\src\main\resources\org\gephi\io\generator\plugin\org-gephi-io-generator-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-io-generator-api]
-file_filter = modules\GeneratorAPI\src\main\resources\org\gephi\io\generator\api\.po
-source_file = modules\GeneratorAPI\src\main\resources\org\gephi\io\generator\api\org-gephi-io-generator-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-filters-plugin]
-file_filter = modules\FiltersPluginUI\src\main\resources\org\gephi\ui\filters\plugin\.po
-source_file = modules\FiltersPluginUI\src\main\resources\org\gephi\ui\filters\plugin\org-gephi-ui-filters-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-filters-plugin-partition]
-file_filter = modules\FiltersPluginUI\src\main\resources\org\gephi\ui\filters\plugin\partition\.po
-source_file = modules\FiltersPluginUI\src\main\resources\org\gephi\ui\filters\plugin\partition\org-gephi-ui-filters-plugin-partition.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-filters-plugin-operator]
-file_filter = modules\FiltersPluginUI\src\main\resources\org\gephi\ui\filters\plugin\operator\.po
-source_file = modules\FiltersPluginUI\src\main\resources\org\gephi\ui\filters\plugin\operator\org-gephi-ui-filters-plugin-operator.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-filters-plugin-graph]
-file_filter = modules\FiltersPluginUI\src\main\resources\org\gephi\ui\filters\plugin\graph\.po
-source_file = modules\FiltersPluginUI\src\main\resources\org\gephi\ui\filters\plugin\graph\org-gephi-ui-filters-plugin-graph.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-filters-plugin-dynamic]
-file_filter = modules\FiltersPluginUI\src\main\resources\org\gephi\ui\filters\plugin\dynamic\.po
-source_file = modules\FiltersPluginUI\src\main\resources\org\gephi\ui\filters\plugin\dynamic\org-gephi-ui-filters-plugin-dynamic.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-filters-plugin-attribute]
-file_filter = modules\FiltersPluginUI\src\main\resources\org\gephi\ui\filters\plugin\attribute\.po
-source_file = modules\FiltersPluginUI\src\main\resources\org\gephi\ui\filters\plugin\attribute\org-gephi-ui-filters-plugin-attribute.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-filters-plugin]
-file_filter = modules\FiltersPlugin\src\main\resources\org\gephi\filters\plugin\.po
-source_file = modules\FiltersPlugin\src\main\resources\org\gephi\filters\plugin\org-gephi-filters-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-filters-plugin-partition]
-file_filter = modules\FiltersPlugin\src\main\resources\org\gephi\filters\plugin\partition\.po
-source_file = modules\FiltersPlugin\src\main\resources\org\gephi\filters\plugin\partition\org-gephi-filters-plugin-partition.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-filters-plugin-operator]
-file_filter = modules\FiltersPlugin\src\main\resources\org\gephi\filters\plugin\operator\.po
-source_file = modules\FiltersPlugin\src\main\resources\org\gephi\filters\plugin\operator\org-gephi-filters-plugin-operator.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-filters-plugin-hierarchy]
-file_filter = modules\FiltersPlugin\src\main\resources\org\gephi\filters\plugin\hierarchy\.po
-source_file = modules\FiltersPlugin\src\main\resources\org\gephi\filters\plugin\hierarchy\org-gephi-filters-plugin-hierarchy.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-filters-plugin-graph]
-file_filter = modules\FiltersPlugin\src\main\resources\org\gephi\filters\plugin\graph\.po
-source_file = modules\FiltersPlugin\src\main\resources\org\gephi\filters\plugin\graph\org-gephi-filters-plugin-graph.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-filters-plugin-edge]
-file_filter = modules\FiltersPlugin\src\main\resources\org\gephi\filters\plugin\edge\.po
-source_file = modules\FiltersPlugin\src\main\resources\org\gephi\filters\plugin\edge\org-gephi-filters-plugin-edge.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-filters-plugin-dynamic]
-file_filter = modules\FiltersPlugin\src\main\resources\org\gephi\filters\plugin\dynamic\.po
-source_file = modules\FiltersPlugin\src\main\resources\org\gephi\filters\plugin\dynamic\org-gephi-filters-plugin-dynamic.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-filters-plugin-attribute]
-file_filter = modules\FiltersPlugin\src\main\resources\org\gephi\filters\plugin\attribute\.po
-source_file = modules\FiltersPlugin\src\main\resources\org\gephi\filters\plugin\attribute\org-gephi-filters-plugin-attribute.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-filters]
-file_filter = modules\FiltersImpl\src\main\resources\org\gephi\filters\.po
-source_file = modules\FiltersImpl\src\main\resources\org\gephi\filters\org-gephi-filters.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-filters-api]
-file_filter = modules\FiltersAPI\src\main\resources\org\gephi\filters\api\.po
-source_file = modules\FiltersAPI\src\main\resources\org\gephi\filters\api\org-gephi-filters-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-exporter-plugin]
-file_filter = modules\ExportPluginUI\src\main\resources\org\gephi\ui\exporter\plugin\.po
-source_file = modules\ExportPluginUI\src\main\resources\org\gephi\ui\exporter\plugin\org-gephi-ui-exporter-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-io-exporter-plugin]
-file_filter = modules\ExportPlugin\src\main\resources\org\gephi\io\exporter\plugin\.po
-source_file = modules\ExportPlugin\src\main\resources\org\gephi\io\exporter\plugin\org-gephi-io-exporter-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-io-exporter-impl]
-file_filter = modules\ExportAPI\src\main\resources\org\gephi\io\exporter\impl\.po
-source_file = modules\ExportAPI\src\main\resources\org\gephi\io\exporter\impl\org-gephi-io-exporter-impl.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-io-exporter-api]
-file_filter = modules\ExportAPI\src\main\resources\org\gephi\io\exporter\api\.po
-source_file = modules\ExportAPI\src\main\resources\org\gephi\io\exporter\api\org-gephi-io-exporter-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-dynamic]
-file_filter = modules\DynamicImpl\src\main\resources\org\gephi\dynamic\.po
-source_file = modules\DynamicImpl\src\main\resources\org\gephi\dynamic\org-gephi-dynamic.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-dynamic-api]
-file_filter = modules\DynamicAPI\src\main\resources\org\gephi\dynamic\api\.po
-source_file = modules\DynamicAPI\src\main\resources\org\gephi\dynamic\api\org-gephi-dynamic-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-netbeans-swing-dirchooser]
-file_filter = modules\DirectoryChooser\src\main\resources\org\netbeans\swing\dirchooser\.po
-source_file = modules\DirectoryChooser\src\main\resources\org\netbeans\swing\dirchooser\org-netbeans-swing-dirchooser.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-graph-dhns]
-file_filter = modules\DHNSGraph\src\main\resources\org\gephi\graph\dhns\.po
-source_file = modules\DHNSGraph\src\main\resources\org\gephi\graph\dhns\org-gephi-graph-dhns.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-tools]
-file_filter = modules\DesktopTools\src\main\resources\org\gephi\desktop\tools\.po
-source_file = modules\DesktopTools\src\main\resources\org\gephi\desktop\tools\org-gephi-desktop-tools.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-timeline]
-file_filter = modules\DesktopTimeline\src\main\resources\org\gephi\desktop\timeline\.po
-source_file = modules\DesktopTimeline\src\main\resources\org\gephi\desktop\timeline\org-gephi-desktop-timeline.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-statistics]
-file_filter = modules\DesktopStatistics\src\main\resources\org\gephi\desktop\statistics\.po
-source_file = modules\DesktopStatistics\src\main\resources\org\gephi\desktop\statistics\org-gephi-desktop-statistics.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-spigot]
-file_filter = modules\DesktopSpigot\src\main\resources\org\gephi\desktop\spigot\.po
-source_file = modules\DesktopSpigot\src\main\resources\org\gephi\desktop\spigot\org-gephi-desktop-spigot.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-recentfiles]
-file_filter = modules\DesktopRecentFiles\src\main\resources\org\gephi\desktop\recentfiles\.po
-source_file = modules\DesktopRecentFiles\src\main\resources\org\gephi\desktop\recentfiles\org-gephi-desktop-recentfiles.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-ranking]
-file_filter = modules\DesktopRanking\src\main\resources\org\gephi\desktop\ranking\.po
-source_file = modules\DesktopRanking\src\main\resources\org\gephi\desktop\ranking\org-gephi-desktop-ranking.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-project]
-file_filter = modules\DesktopProject\src\main\resources\org\gephi\desktop\project\.po
-source_file = modules\DesktopProject\src\main\resources\org\gephi\desktop\project\org-gephi-desktop-project.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-progress]
-file_filter = modules\DesktopProgress\src\main\resources\org\gephi\desktop\progress\.po
-source_file = modules\DesktopProgress\src\main\resources\org\gephi\desktop\progress\org-gephi-desktop-progress.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-preview]
-file_filter = modules\DesktopPreview\src\main\resources\org\gephi\desktop\preview\.po
-source_file = modules\DesktopPreview\src\main\resources\org\gephi\desktop\preview\org-gephi-desktop-preview.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-preview-propertyeditors]
-file_filter = modules\DesktopPreview\src\main\resources\org\gephi\desktop\preview\propertyeditors\.po
-source_file = modules\DesktopPreview\src\main\resources\org\gephi\desktop\preview\propertyeditors\org-gephi-desktop-preview-propertyeditors.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-perspective]
-file_filter = modules\DesktopPerspective\src\main\resources\org\gephi\desktop\perspective\.po
-source_file = modules\DesktopPerspective\src\main\resources\org\gephi\desktop\perspective\org-gephi-desktop-perspective.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-perspective-plugin]
-file_filter = modules\DesktopPerspective\src\main\resources\org\gephi\desktop\perspective\plugin\.po
-source_file = modules\DesktopPerspective\src\main\resources\org\gephi\desktop\perspective\plugin\org-gephi-desktop-perspective-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-partition]
-file_filter = modules\DesktopPartition\src\main\resources\org\gephi\desktop\partition\.po
-source_file = modules\DesktopPartition\src\main\resources\org\gephi\desktop\partition\org-gephi-desktop-partition.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-layout]
-file_filter = modules\DesktopLayout\src\main\resources\org\gephi\desktop\layout\.po
-source_file = modules\DesktopLayout\src\main\resources\org\gephi\desktop\layout\org-gephi-desktop-layout.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-importer]
-file_filter = modules\DesktopImport\src\main\resources\org\gephi\desktop\importer\.po
-source_file = modules\DesktopImport\src\main\resources\org\gephi\desktop\importer\org-gephi-desktop-importer.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-hierarchy]
-file_filter = modules\DesktopHierarchy\src\main\resources\org\gephi\desktop\hierarchy\.po
-source_file = modules\DesktopHierarchy\src\main\resources\org\gephi\desktop\hierarchy\org-gephi-desktop-hierarchy.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-generate]
-file_filter = modules\DesktopGenerate\src\main\resources\org\gephi\desktop\generate\.po
-source_file = modules\DesktopGenerate\src\main\resources\org\gephi\desktop\generate\org-gephi-desktop-generate.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-filters]
-file_filter = modules\DesktopFilters\src\main\resources\org\gephi\desktop\filters\.po
-source_file = modules\DesktopFilters\src\main\resources\org\gephi\desktop\filters\org-gephi-desktop-filters.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-filters-query]
-file_filter = modules\DesktopFilters\src\main\resources\org\gephi\desktop\filters\query\.po
-source_file = modules\DesktopFilters\src\main\resources\org\gephi\desktop\filters\query\org-gephi-desktop-filters-query.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-filters-library]
-file_filter = modules\DesktopFilters\src\main\resources\org\gephi\desktop\filters\library\.po
-source_file = modules\DesktopFilters\src\main\resources\org\gephi\desktop\filters\library\org-gephi-desktop-filters-library.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-io-export]
-file_filter = modules\DesktopExport\src\main\resources\org\gephi\desktop\io\export\.po
-source_file = modules\DesktopExport\src\main\resources\org\gephi\desktop\io\export\org-gephi-desktop-io-export.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-io-export-api]
-file_filter = modules\DesktopExport\src\main\resources\org\gephi\desktop\io\export\api\.po
-source_file = modules\DesktopExport\src\main\resources\org\gephi\desktop\io\export\api\org-gephi-desktop-io-export-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-datalab]
-file_filter = modules\DesktopDataLaboratory\src\main\resources\org\gephi\desktop\datalab\.po
-source_file = modules\DesktopDataLaboratory\src\main\resources\org\gephi\desktop\datalab\org-gephi-desktop-datalab.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-datalab-utils]
-file_filter = modules\DesktopDataLaboratory\src\main\resources\org\gephi\desktop\datalab\utils\.po
-source_file = modules\DesktopDataLaboratory\src\main\resources\org\gephi\desktop\datalab\utils\org-gephi-desktop-datalab-utils.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-datalab-general-actions]
-file_filter = modules\DesktopDataLaboratory\src\main\resources\org\gephi\desktop\datalab\general\actions\.po
-source_file = modules\DesktopDataLaboratory\src\main\resources\org\gephi\desktop\datalab\general\actions\org-gephi-desktop-datalab-general-actions.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-context]
-file_filter = modules\DesktopContext\src\main\resources\org\gephi\desktop\context\.po
-source_file = modules\DesktopContext\src\main\resources\org\gephi\desktop\context\org-gephi-desktop-context.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-desktop-clustering]
-file_filter = modules\DesktopClustering\src\main\resources\org\gephi\desktop\clustering\.po
-source_file = modules\DesktopClustering\src\main\resources\org\gephi\desktop\clustering\org-gephi-desktop-clustering.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-branding-desktop]
-file_filter = modules\DesktopBranding\src\main\resources\org\gephi\branding\desktop\.po
-source_file = modules\DesktopBranding\src\main\resources\org\gephi\branding\desktop\org-gephi-branding-desktop.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-branding-desktop-reporter]
-file_filter = modules\DesktopBranding\src\main\resources\org\gephi\branding\desktop\reporter\.po
-source_file = modules\DesktopBranding\src\main\resources\org\gephi\branding\desktop\reporter\org-gephi-branding-desktop-reporter.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-branding-desktop-multilingual]
-file_filter = modules\DesktopBranding\src\main\resources\org\gephi\branding\desktop\multilingual\.po
-source_file = modules\DesktopBranding\src\main\resources\org\gephi\branding\desktop\multilingual\org-gephi-branding-desktop-multilingual.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-branding-desktop-actions]
-file_filter = modules\DesktopBranding\src\main\resources\org\gephi\branding\desktop\actions\.po
-source_file = modules\DesktopBranding\src\main\resources\org\gephi\branding\desktop\actions\org-gephi-branding-desktop-actions.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-io-database-drivers]
-file_filter = modules\DBDrivers\src\main\resources\org\gephi\io\database\drivers\.po
-source_file = modules\DBDrivers\src\main\resources\org\gephi\io\database\drivers\org-gephi-io-database-drivers.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-datalab-plugin]
-file_filter = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\.po
-source_file = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\org-gephi-datalab-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-datalab-plugin-manipulators-values]
-file_filter = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\values\.po
-source_file = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\values\org-gephi-datalab-plugin-manipulators-values.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-datalab-plugin-manipulators-ui]
-file_filter = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\ui\.po
-source_file = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\ui\org-gephi-datalab-plugin-manipulators-ui.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-datalab-plugin-manipulators-rows-merge]
-file_filter = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\rows\merge\.po
-source_file = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\rows\merge\org-gephi-datalab-plugin-manipulators-rows-merge.pot
-source_lang = en
-type = PO
-
-[gephi.s--gephi-datalab-plugin-manipulators-rows-merge-ui]
-file_filter = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\rows\merge\ui\.po
-source_file = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\rows\merge\ui\org-gephi-datalab-plugin-manipulators-rows-merge-ui.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-datalab-plugin-manipulators-nodes]
-file_filter = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\nodes\.po
-source_file = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\nodes\org-gephi-datalab-plugin-manipulators-nodes.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-datalab-plugin-manipulators-nodes-ui]
-file_filter = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\nodes\ui\.po
-source_file = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\nodes\ui\org-gephi-datalab-plugin-manipulators-nodes-ui.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-datalab-plugin-manipulators-general]
-file_filter = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\general\.po
-source_file = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\general\org-gephi-datalab-plugin-manipulators-general.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-datalab-plugin-manipulators-general-ui]
-file_filter = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\general\ui\.po
-source_file = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\general\ui\org-gephi-datalab-plugin-manipulators-general-ui.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-datalab-plugin-manipulators-edges]
-file_filter = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\edges\.po
-source_file = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\edges\org-gephi-datalab-plugin-manipulators-edges.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-datalab-plugin-manipulators-edges-ui]
-file_filter = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\edges\ui\.po
-source_file = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\edges\ui\org-gephi-datalab-plugin-manipulators-edges-ui.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-datalab-plugin-manipulators-columns]
-file_filter = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\columns\.po
-source_file = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\columns\org-gephi-datalab-plugin-manipulators-columns.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-datalab-plugin-manipulators-columns-ui]
-file_filter = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\columns\ui\.po
-source_file = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\columns\ui\org-gephi-datalab-plugin-manipulators-columns-ui.pot
-source_lang = en
-type = PO
-
-[gephi.s--gephi-datalab-plugin-manipulators-columns-merge]
-file_filter = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\columns\merge\.po
-source_file = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\columns\merge\org-gephi-datalab-plugin-manipulators-columns-merge.pot
-source_lang = en
-type = PO
-
-[gephi.s-phi-datalab-plugin-manipulators-columns-merge-ui]
-file_filter = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\columns\merge\ui\.po
-source_file = modules\DataLaboratoryPlugin\src\main\resources\org\gephi\datalab\plugin\manipulators\columns\merge\ui\org-gephi-datalab-plugin-manipulators-columns-merge-ui.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-datalab-impl]
-file_filter = modules\DataLaboratoryAPI\src\main\resources\org\gephi\datalab\impl\.po
-source_file = modules\DataLaboratoryAPI\src\main\resources\org\gephi\datalab\impl\org-gephi-datalab-impl.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-datalab-api]
-file_filter = modules\DataLaboratoryAPI\src\main\resources\org\gephi\datalab\api\.po
-source_file = modules\DataLaboratoryAPI\src\main\resources\org\gephi\datalab\api\org-gephi-datalab-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-utils-collection]
-file_filter = modules\CollectionUtils\src\main\resources\org\gephi\utils\collection\.po
-source_file = modules\CollectionUtils\src\main\resources\org\gephi\utils\collection\org-gephi-utils-collection.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-clustering-plugin]
-file_filter = modules\ClusteringPlugin\src\main\resources\org\gephi\clustering\plugin\.po
-source_file = modules\ClusteringPlugin\src\main\resources\org\gephi\clustering\plugin\org-gephi-clustering-plugin.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-clustering-plugin-mcl]
-file_filter = modules\ClusteringPlugin\src\main\resources\org\gephi\clustering\plugin\mcl\.po
-source_file = modules\ClusteringPlugin\src\main\resources\org\gephi\clustering\plugin\mcl\org-gephi-clustering-plugin-mcl.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-clustering-api]
-file_filter = modules\ClusteringAPI\src\main\resources\org\gephi\clustering\api\.po
-source_file = modules\ClusteringAPI\src\main\resources\org\gephi\clustering\api\org-gephi-clustering-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-data-attributes]
-file_filter = modules\AttributesImpl\src\main\resources\org\gephi\data\attributes\.po
-source_file = modules\AttributesImpl\src\main\resources\org\gephi\data\attributes\org-gephi-data-attributes.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-data-attributes-api]
-file_filter = modules\AttributesAPI\src\main\resources\org\gephi\data\attributes\api\.po
-source_file = modules\AttributesAPI\src\main\resources\org\gephi\data\attributes\api\org-gephi-data-attributes-api.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-ui-propertyeditor]
-file_filter = modules\AttributeColumnPropertyEditor\src\main\resources\org\gephi\ui\propertyeditor\.po
-source_file = modules\AttributeColumnPropertyEditor\src\main\resources\org\gephi\ui\propertyeditor\org-gephi-ui-propertyeditor.pot
-source_lang = en
-type = PO
-
-[gephi.org-gephi-algorithms]
-file_filter = modules\AlgorithmsPlugin\src\main\resources\org\gephi\algorithms\.po
-source_file = modules\AlgorithmsPlugin\src\main\resources\org\gephi\algorithms\org-gephi-algorithms.pot
-source_lang = en
-type = PO
-
diff --git a/.tx/readme.txt b/.tx/readme.txt
deleted file mode 100644
index b16b71be83..0000000000
--- a/.tx/readme.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-This folder contains the https://www.transifex.net/projects/p/gephi translation tool configuration to push and pull translation files from there.
-
-!!Transifex needs "\" separators in windows to correctly find .po files, depending on your OS you should use / or \ in the config file. This can be easily replaced with a text editor.
-See set_transifex.py script
\ No newline at end of file
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
new file mode 100644
index 0000000000..0c6820b852
--- /dev/null
+++ b/CODE_OF_CONDUCT.md
@@ -0,0 +1,128 @@
+# Gephi Code of Conduct
+
+## Our Pledge
+
+We as Gephi contributors and maintainers pledge to make participation in our
+community a harassment-free experience for everyone, regardless of age, body
+size, visible or invisible disability, ethnicity, sex characteristics, gender
+identity and expression, level of experience, education, socio-economic status,
+nationality, personal appearance, race, religion, or sexual identity
+and orientation.
+
+We pledge to act and interact in ways that contribute to an open, welcoming,
+diverse, inclusive, and healthy community.
+
+## Our Standards
+
+Examples of behavior that contributes to a positive environment for our
+community include:
+
+* Demonstrating empathy and kindness toward other people
+* Being respectful of differing opinions, viewpoints, and experiences
+* Giving and gracefully accepting constructive feedback
+* Accepting responsibility and apologizing to those affected by our mistakes,
+ and learning from the experience
+* Focusing on what is best not just for us as individuals, but for the
+ overall community
+
+Examples of unacceptable behavior include:
+
+* The use of sexualized language or imagery, and sexual attention or
+ advances of any kind
+* Trolling, insulting or derogatory comments, and personal or political attacks
+* Public or private harassment
+* Publishing others' private information, such as a physical or email
+ address, without their explicit permission
+* Other conduct which could reasonably be considered inappropriate in a
+ professional setting
+
+## Enforcement Responsibilities
+
+Community leaders are responsible for clarifying and enforcing our standards of
+acceptable behavior and will take appropriate and fair corrective action in
+response to any behavior that they deem inappropriate, threatening, offensive,
+or harmful.
+
+Community leaders have the right and responsibility to remove, edit, or reject
+comments, commits, code, wiki edits, issues, and other contributions that are
+not aligned to this Code of Conduct, and will communicate reasons for moderation
+decisions when appropriate.
+
+## Scope
+
+This Code of Conduct applies within all community spaces, and also applies when
+an individual is officially representing the community in public spaces.
+Examples of representing our community include using an official e-mail address,
+posting via an official social media account, or acting as an appointed
+representative at an online or offline event.
+
+## Enforcement
+
+Instances of abusive, harassing, or otherwise unacceptable behavior may be
+reported to the community leaders responsible for enforcement at
+contact@gephi.org.
+All complaints will be reviewed and investigated promptly and fairly.
+
+All community leaders are obligated to respect the privacy and security of the
+reporter of any incident.
+
+## Enforcement Guidelines
+
+Community leaders will follow these Community Impact Guidelines in determining
+the consequences for any action they deem in violation of this Code of Conduct:
+
+### 1. Correction
+
+**Community Impact**: Use of inappropriate language or other behavior deemed
+unprofessional or unwelcome in the community.
+
+**Consequence**: A private, written warning from community leaders, providing
+clarity around the nature of the violation and an explanation of why the
+behavior was inappropriate. A public apology may be requested.
+
+### 2. Warning
+
+**Community Impact**: A violation through a single incident or series
+of actions.
+
+**Consequence**: A warning with consequences for continued behavior. No
+interaction with the people involved, including unsolicited interaction with
+those enforcing the Code of Conduct, for a specified period of time. This
+includes avoiding interactions in community spaces as well as external channels
+like social media. Violating these terms may lead to a temporary or
+permanent ban.
+
+### 3. Temporary Ban
+
+**Community Impact**: A serious violation of community standards, including
+sustained inappropriate behavior.
+
+**Consequence**: A temporary ban from any sort of interaction or public
+communication with the community for a specified period of time. No public or
+private interaction with the people involved, including unsolicited interaction
+with those enforcing the Code of Conduct, is allowed during this period.
+Violating these terms may lead to a permanent ban.
+
+### 4. Permanent Ban
+
+**Community Impact**: Demonstrating a pattern of violation of community
+standards, including sustained inappropriate behavior, harassment of an
+individual, or aggression toward or disparagement of classes of individuals.
+
+**Consequence**: A permanent ban from any sort of public interaction within
+the community.
+
+## Attribution
+
+This Code of Conduct is adapted from the [Contributor Covenant][homepage],
+version 2.0, available at
+https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
+
+Community Impact Guidelines were inspired by [Mozilla's code of conduct
+enforcement ladder](https://github.com/mozilla/diversity).
+
+[homepage]: https://www.contributor-covenant.org
+
+For answers to common questions about this code of conduct, see the FAQ at
+https://www.contributor-covenant.org/faq. Translations are available at
+https://www.contributor-covenant.org/translations.
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100644
index 0000000000..6b111d165d
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+Copyright (C) 2007 Free Software Foundation, Inc.
+Everyone is permitted to copy and distribute verbatim copies
+of this license document, but changing it is not allowed.
+
+ Preamble
+
+The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+0. Definitions.
+
+"This License" refers to version 3 of the GNU General Public License.
+
+"Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+"The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+1. Source Code.
+
+The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+The Corresponding Source for a work in source code form is that
+same work.
+
+2. Basic Permissions.
+
+All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+4. Conveying Verbatim Copies.
+
+You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+5. Conveying Modified Source Versions.
+
+You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+6. Conveying Non-Source Forms.
+
+You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+"Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+7. Additional Terms.
+
+"Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+8. Termination.
+
+You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+9. Acceptance Not Required for Having Copies.
+
+You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+10. Automatic Licensing of Downstream Recipients.
+
+Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+11. Patents.
+
+A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+12. No Surrender of Others' Freedom.
+
+If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+13. Use with the GNU Affero General Public License.
+
+Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+14. Revised Versions of this License.
+
+The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+15. Disclaimer of Warranty.
+
+THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+16. Limitation of Liability.
+
+IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+17. Interpretation of Sections 15 and 16.
+
+If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ Copyright (C)
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+.
+
+The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+.
diff --git a/README.md b/README.md
index bcdebbca67..2f021d088d 100644
--- a/README.md
+++ b/README.md
@@ -1,120 +1,144 @@
-# Gephi - The Open Graph Viz Platform
-
-[Gephi](http://gephi.org) is an award-winning open-source platform for visualizing and manipulating large graphs. It runs on Windows, Mac OS X and Linux. Localization is available in French, Spanish, Japanese, Russian, Brazilian Portuguese, Chinese and Czech.
-
-- **Fast** Powered by a built-in OpenGL engine, Gephi is able to push the envelope with very large networks. Visualize networks up to a million elements. All actions (e.g. layout, filter, drag) run in real-time.
-
-- **Simple** Easy to install and [get started](http://gephi.org/users/quick-start/). An UI that is centered around the visualization. Like Photoshopβ’ for graphs.
-
-- **Modular** Extend Gephi with [plug-ins](http://gephi.org/plugins/). The architecture is built on top of Netbeans Platform and can be extended or reused easily through well-written APIs.
-
-[Download Gephi](http://gephi.org/users/download/) for Windows, Mac OS X and Linux and consult the [release notes](https://wiki.gephi.org/index.php/Gephi_Releases). Example datasets can be found on our [wiki](https://wiki.gephi.org/index.php?title=Datasets).
-
-
-
-## Install and use Gephi
-
-Download and [Install](http://gephi.org/users/install) Gephi on your computer.
-
-Get started with the [Quick Start](http://gephi.org/users/quick-start/) and follow the [Tutorials](http://gephi.org/users/). Load a sample [dataset](https://wiki.gephi.org/index.php?title=Datasets) and start to play with the data.
-
-If you run into any trouble or have questions consult our [forum](http://forum.gephi.org).
-
-## Latest releases
-
-### Stable
-
-- Latest stable release on [gephi.org](http://gephi.org/download).
-
-### Nightly builds
-
-Current version is 0.9-SNAPSHOT
-
-- [gephi-0.9-SNAPSHOT.zip](http://nexus.gephi.org/nexus/service/local/artifact/maven/content?r=snapshots&g=org.gephi&a=gephi&v=0.9-SNAPSHOT&p=zip) (Windows & Linux)
-
-- [gephi-0.9-SNAPSHOT.dmg](http://nexus.gephi.org/nexus/service/local/artifact/maven/content?r=snapshots&g=org.gephi&a=gephi&v=0.9-SNAPSHOT&p=dmg) (Mac OS X)
-
-- [gephi-0.9-SNAPSHOT-sources.tar.gz](http://nexus.gephi.org/nexus/service/local/artifact/maven/redirect?r=snapshots&g=org.gephi&a=gephi-parent&v=0.9-SNAPSHOT&c=sources&p=tar.gz) (Sources)
-
-- [gephi-0.9-SNAPSHOT-javadoc.jar](http://nexus.gephi.org/nexus/service/local/artifact/maven/redirect?r=snapshots&g=org.gephi&a=gephi-parent&v=0.9-SNAPSHOT&c=javadoc&p=jar) (Javadoc)
-
-## Developer Introduction
-
-Gephi is developed in Java and uses OpenGL for its visualization engine. Built on the top of Netbeans Platform, it follows a loosely-coupled, modular architecture philosophy. That allows it to be used build large applications and to grow in a sustainable way. Gephi is split into modules, which depend on other modules through well-written APIs. Plugins can reuse existing APIs, create new services and even replace a default implementation with a new one.
-
-Consult the [**Javadoc**](http://gephi.org/docs/api) for an overview of the APIs.
-
-### Requirements
-
-- Java JDK 6 or 7 with preferably [Oracle Java JDK](http://java.com/en/).
-
-- [Apache Maven](http://maven.apache.org/) version 3.0.4 or later
-
-### Checkout and Build the sources
-
-- Fork the repository and clone
-
- git clone git@github.com:username/gephi.git
-
-- Run the following command or [open the project in Netbeans](http://wiki.gephi.org/index.php/Build_Gephi)
-
- mvn clean install
-
-- Once built, one can test running Gephi
-
- cd modules/application
- mvn nbm:cluster-app nbm:run-platform
-
-### Create Plug-ins
-
-Gephi is extensible and lets users create plug-ins to add new features, or to modify existing features. For example, you can create a new layout algorithm, add a metric, create a filter or a tool, support a new file format or database, or modify the visualization.
-
-- [**Plugins Portal**](http://wiki.gephi.org/index.php/Plugins_portal)
-
-- [Plugins Quick Start (5 minutes)](http://wiki.gephi.org/index.php/Plugin_Quick_Start_(5_minutes\))
-
-- Browse the [plugins](http://gephi.org/plugins) created by the community
-
-- We've created a [**Plugins Bootcamp**](https://github.com/gephi/gephi-plugins-bootcamp) to learn by examples.
-
-## Gephi Toolkit
-
-The Gephi Toolkit project packages essential Gephi modules (Graph, Layout, Filters, IOβ¦) in a standard Java library which any Java project can use for getting things done. It can be used on a server or command-line tool to do the same things Gephi does but automatically.
-
-- [Download](http://gephi.org/toolkit/)
-
-- [GitHub Project](https://github.com/gephi/gephi-toolkit)
-
-- [Toolkit Portal](https://wiki.gephi.org/index.php/Toolkit_portal)
-
-## License
-
-Gephi main source code is distributed under the dual license [CDDL 1.0](http://www.opensource.org/licenses/CDDL-1.0) and [GNU General Public License v3](http://www.gnu.org/licenses/gpl.html). Read the [Legal FAQs](https://gephi.org/about/legal/faq/) to learn more.
-
-Copyright 2011 Gephi Consortium. All rights reserved.
-
-The contents of this file are subject to the terms of either the GNU
-General Public License Version 3 only ("GPL") or the Common
-Development and Distribution License("CDDL") (collectively, the
-"License"). You may not use this file except in compliance with the
-License. You can obtain a copy of the License at
-http://gephi.org/about/legal/license-notice/
-or /cddl-1.0.txt and /gpl-3.0.txt. See the License for the
-specific language governing permissions and limitations under the
-License. When distributing the software, include this License Header
-Notice in each file and include the License files at
-/cddl-1.0.txt and /gpl-3.0.txt. If applicable, add the following below the
-License Header, with the fields enclosed by brackets [] replaced by
-your own identifying information:
-"Portions Copyrighted [year] [name of copyright owner]"
-
-If you wish your version of this file to be governed by only the CDDL
-or only the GPL Version 3, indicate your decision by adding
-"[Contributor] elects to include this software in this distribution
-under the [CDDL or GPL Version 3] license." If you do not indicate a
-single choice of license, a recipient has the option to distribute
-your version of this file under either the CDDL, the GPL Version 3 or
-to extend the choice of license to its licensees as provided above.
-However, if you add GPL Version 3 code and therefore, elected the GPL
-Version 3 license, then the option applies only if the new code is
-made subject to such option by the copyright holder.
+# Gephi - The Open Graph Viz Platform
+
+[](https://github.com/gephi/gephi/actions/workflows/build.yml)
+[](https://github.com/gephi/gephi/releases/tag/v0.11.2)
+[](https://github.com/gephi/gephi/releases/)
+[](https://hosted.weblate.org/engage/gephi/?utm_source=widget)
+
+[Gephi](http://gephi.org) is an award-winning open-source platform for visualizing and manipulating large graphs. It runs on Windows, Mac OS X and Linux. Localization is available in English, French, Spanish, Japanese, Russian, Brazilian Portuguese, Chinese, Czech, German, Romanian, Greek, Hungarian, Korean, Swedish and Ukrainian.
+
+- **Fast** Powered by a built-in OpenGL engine, Gephi is able to push the envelope with very large networks. Visualize networks up to a million elements. All actions (e.g. layout, filter, drag) run in real-time.
+
+- **Simple** Easy to install and [get started](https://gephi.org/quickstart/). An UI that is centered around the visualization. Like Photoshopβ’ for graphs.
+
+- **Modular** Extend Gephi with [plug-ins](https://gephi.org/desktop/plugins/). The architecture is built on top of [Apache Netbeans Platform](https://netbeans.apache.org/tutorials/nbm-quick-start.html) and can be extended or reused easily through well-written APIs.
+
+[Download Gephi](https://gephi.org/desktop/) for Windows, Mac OS X and Linux and consult the [release notes](https://github.com/gephi/gephi/releases). Example datasets can be found on our [wiki](https://docs.gephi.org/desktop/User_Manual/Datasets/).
+
+
+
+## Install and use Gephi
+
+Download and [Install](https://gephi.github.io/users/install/) Gephi on your computer.
+
+Get started with the [Quick Start](https://gephi.org/quickstart/) and follow the [Tutorials](https://gephi.org/quickstart/). Load a sample [dataset](https://docs.gephi.org/desktop/User_Manual/Datasets/) and start to play with the data.
+
+If you run into any trouble or have questions consult our [discussions](https://github.com/gephi/gephi/discussions).
+
+## Latest releases
+
+### Stable
+
+- Latest stable release on [gephi.org](https://gephi.org/desktop/).
+
+### Development builds
+
+Development builds are [generated regularly](https://github.com/gephi/gephi/actions/workflows/release.yml?query=is%3Asuccess++). Current version is 0.11.2-SNAPSHOT
+
+- [gephi-0.11.2-SNAPSHOT-windows-x64.exe](https://central.sonatype.com/repository/maven-snapshots/org/gephi/gephi/0.11.2-SNAPSHOT/gephi-0.11.2-20260509.150210-9-windows-x64.exe) (Windows)
+
+- [gephi-0.11.2-SNAPSHOT-macos-x64.dmg](https://central.sonatype.com/repository/maven-snapshots/org/gephi/gephi/0.11.2-SNAPSHOT/gephi-0.11.2-20260509.150534-10-macos-x64.dmg) (Mac OS X)
+
+- [gephi-0.11.2-SNAPSHOT-macos-aarch64.dmg](https://central.sonatype.com/repository/maven-snapshots/org/gephi/gephi/0.11.2-SNAPSHOT/gephi-0.11.2-20260509.152025-12-macos-aarch64.dmg) (Mac OS X Silicon)
+
+- [gephi-0.11.2-SNAPSHOT-linux-aarch64.tar.gz](https://central.sonatype.com/repository/maven-snapshots/org/gephi/gephi/0.11.2-SNAPSHOT/gephi-0.11.2-20260509.151835-11-linux-aarch64.tar.gz) (Linux aarch64)
+
+- [gephi-0.11.2-SNAPSHOT-linux-x64.tar.gz](https://central.sonatype.com/repository/maven-snapshots/org/gephi/gephi/0.11.2-SNAPSHOT/gephi-0.11.2-20260509.145838-8-linux-x64.tar.gz) (Linux)
+
+## Developer Introduction
+
+Gephi is developed in Java and uses OpenGL for its visualization engine. Built on the top of Netbeans Platform, it follows a loosely-coupled, modular architecture philosophy. Gephi is split into modules, which depend on other modules through well-written APIs. Plugins can reuse existing APIs, create new services and even replace a default implementation with a new one.
+
+Consult the [**Javadoc**](https://javadoc.io/doc/org.gephi/gephi/latest/index.html) for an overview of the APIs.
+
+### Requirements
+
+- Java JDK 17 (or later)
+
+- [Apache Maven](http://maven.apache.org/) version 3.6.3 or later
+
+### Checkout and Build the sources
+
+- Fork the repository and clone
+
+ git clone git@github.com:username/gephi.git
+
+- Run the following command or [open the project in an IDE](https://docs.gephi.org/desktop/Developer_Documentation/how_to_build_gephi)
+
+ mvn -T 4 clean install
+
+- To skip tests and speed up the build, use the `skipTests` profile
+
+ mvn -T 4 clean install -P skipTests
+
+- Once built, one can test running Gephi
+
+ cd modules/application
+ mvn nbm:cluster-app nbm:run-platform
+
+Note that while Gephi can be built using JDK 17 or later, it currently requires JDK 17 to run.
+
+### Create Plug-ins
+
+Gephi is extensible and lets developers create plug-ins to add new features, or to modify existing features. For example, you can create a new layout algorithm, add a metric, create a filter or a tool, support a new file format or database, or modify the visualization.
+
+- [**Plugins Portal**](https://gephi.org/desktop/plugins/)
+
+- [Plugins Quick Start (5 minutes)](https://docs.gephi.org/desktop/Plugins)
+
+- Browse the [plugins](https://gephi.org/plugins) created by the community
+
+- We've created a [**Plugins Bootcamp**](https://github.com/gephi/gephi-plugins-bootcamp) to learn by examples.
+
+## Gephi Toolkit
+
+The Gephi Toolkit project packages essential Gephi modules (Graph, Layout, Filters, IOβ¦) in a standard Java library which any Java project can use for getting things done. It can be used on a server or command-line tool to do the same things Gephi does but automatically.
+
+- [Download](https://gephi.org/toolkit/)
+
+- [GitHub Project](https://github.com/gephi/gephi-toolkit)
+
+- [Toolkit Portal](https://github.com/gephi/gephi/wiki/Toolkit)
+
+## Localization
+
+We use [Weblate](https://hosted.weblate.org/projects/gephi/) for localization. Follow the guidelines on the [wiki](https://docs.gephi.org/desktop/Developer_Documentation/localization) for more details how to contribute.
+
+## Icons
+
+Gephi uses icons from various sources. The icons are licensed under the [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/) license.
+
+All icons can be found in the `DesktopIcons` module, organised by module name.
+
+## License
+
+Gephi main source code is distributed under the dual license [CDDL 1.0](http://www.opensource.org/licenses/CDDL-1.0) and [GNU General Public License v3](http://www.gnu.org/licenses/gpl.html). Read the [Legal FAQs](https://gephi.org/about/) to learn more.
+
+Copyright 2011 Gephi Consortium. All rights reserved.
+
+The contents of this file are subject to the terms of either the GNU
+General Public License Version 3 only ("GPL") or the Common
+Development and Distribution License ("CDDL") (collectively, the
+"License"). You may not use this file except in compliance with the
+License. You can obtain a copy of the License at
+http://gephi.github.io/developers/license/
+or /cddl-1.0.txt and /gpl-3.0.txt. See the License for the
+specific language governing permissions and limitations under the
+License. When distributing the software, include this License Header
+Notice in each file and include the License files at
+/cddl-1.0.txt and /gpl-3.0.txt. If applicable, add the following below the
+License Header, with the fields enclosed by brackets [] replaced by
+your own identifying information:
+"Portions Copyrighted [year] [name of copyright owner]"
+
+If you wish your version of this file to be governed by only the CDDL
+or only the GPL Version 3, indicate your decision by adding
+"[Contributor] elects to include this software in this distribution
+under the [CDDL or GPL Version 3] license." If you do not indicate a
+single choice of license, a recipient has the option to distribute
+your version of this file under either the CDDL, the GPL Version 3 or
+to extend the choice of license to its licensees as provided above.
+However, if you add GPL Version 3 code and therefore, elected the GPL
+Version 3 license, then the option applies only if the new code is
+made subject to such option by the copyright holder.
+
diff --git a/SECURITY.md b/SECURITY.md
new file mode 100644
index 0000000000..7c0c120ee2
--- /dev/null
+++ b/SECURITY.md
@@ -0,0 +1,76 @@
+# Security Policy
+
+## Introduction
+
+Before diving into the details, it's important to note that Gephi is a **desktop software**.
+- It only interacts with local files. It **does NOT connect to the web** or to any networks.
+- Gephi **does NOT have any servers** and **does NOT host any data**.
+
+All of the data you load into Gephi only resides in your computer's memory and hard drive. As a result, Gephi is much less exposed to security problems compared to web software for instance. Please take that in account while evaluating the policy below.
+
+The only exception when it comes to **connecting to the web** is for crash reporting.
+
+## Supported Versions
+
+We monitor security vulnerabilities in the dependencies we use, as well as within the core codebase. In case of a major vulnerability, we would release a new patch version of Gephi to address it.
+
+| Version | Supported |
+|---------| ------------------ |
+| 0.11.1 | :white_check_mark: |
+| 0.10.1 | :white_check_mark: |
+| 0.9.7 | :x: |
+
+## Code security
+
+Gephi's codebase is entirely open-source and [available on GitHub](https://github.com/gephi/gephi/). The project had always restricted commit permissions on its `main` branch and stable contributors. No external organisations are responsible for auditing the codebase.
+
+Gephi has numerous dependencies, listed in the projects' `pom.xml` files. It only depends on other open-source projects. There are no dependencies on closed sources. If you're having a hard-time locating the source code of some of our dependencies, don't hesitate to reach out.
+
+In addition, we have enabled **dependabot** to get informed about security vulnerabilities in our dependencies.
+
+## Contributors
+
+Gephi had contributions from many individuals in many countries but the vast majority of the code was written by less than 5 people. We have CLA agreements with all major contributors. The core contributors are from France and Spain.
+
+## Release versions
+
+The artifacts produced via the Gephi repository are secured. Users can always trust us with the release binaries they download from [gephi.or](https://gephi.org) or [https://github.com/gephi/gephi/releases](https://github.com/gephi/gephi/releases).
+
+**These measures are in place to ensure Gephi artifacts are safe and can't be compromised:**
+- Only the members of the core Gephi team can approve contributions and trigger releases.
+- The release process is [completely automated](https://github.com/gephi/gephi/actions/workflows/release.yml) via GitHub Actions and doesn't require any interactions with a developer's local computer.
+- Binaries are directly uploaded from GitHub Actions to [Maven Central](https://central.sonatype.com/artifact/org.gephi/gephi/overview). Only our project can push artifacts to the `org.gephi` groupId. As you may know, once a file is released on Maven Central, it can't be altered.
+- Digital signatures for the release binaries are also available on Maven Central.
+- The Mac OS app goes through a thorough [notarisation process](https://developer.apple.com/documentation/security/notarizing-macos-software-before-distribution) before being released. This means the package is sent to Apple's servers for verification and only if approved it can be released.
+- The Windows installer is also codesigned using an official certificate.
+
+## Vulnerabilities
+
+Here is a history of security/data vulnerabilities:
+
+| Name | Type | Severity | Description | Reported | Fixed |
+| ---- | ---- | -------- | ----------- | -------- | ----- |
+| PII in Crash Reports | Data privacy | Low | In the application logs it's possible to identify the username. The crash reports are voluntary, but it would be better to anonymize them. | October 2021 | β Yes, in version 0.9.3 [#2340](https://github.com/gephi/gephi/issues/2340) |
+| Log4j vulnerability | Dependency vulnerability | N/A | Gephi doesn't depend on Log4j, we weren't affected. | December 2021 | N/A |
+
+## Reporting a Vulnerability
+
+In case you find a vulnerability or want to get in touch regarding security, reach out to us at contact [at] gephi.org. Alternatively, you can [directly report via GitHub](https://github.com/gephi/gephi/security/advisories/new).
+
+Based on your analysis, we'll evaluate if there are any risks for our users. In case we decide to release a patched version, you'll be informed.
+
+We don't offer any rewards. If you provide a PR or a patch with your report, we'll be happy to include you in the release notes (if you desire so).
+
+## Gephi Plugins
+
+[Plugins](https://gephi.org/plugins/#/) are extensions users can install within Gephi to extend its functionalities. Plugins are made available within Gephi via an approval process [detailed here](https://github.com/gephi/gephi-plugins).
+
+**These measures are in place to avoid malicious code from Plugins:**
+- Plugin contributors have to make PRs to the repository we control. Plugins artifacts can only be built from our repository. You can [inspect the codebase](https://github.com/gephi/gephi-plugins/tree/master-forge).
+- Plugin artifacts are hosted on GitHub on [our page](https://github.com/gephi/gephi-plugins/tree/gh-pages/plugins) branch. There is full visibility. These are the plugins files downloaded from Gephi.
+- Plugin packages (i.e. NBM files) are signed.
+- We only accept open-source dependencies in plugins.
+
+That all said, be aware that Gephi Plugins can pose a risk:
+- Plugins can be packaged and distributed as NBMs files. Only the plugins available via Gephi are officially approved. If you manually install (e.g. via a NBM file you have received), you do that at your own risk.
+- Some Plugins may require network access. We recommend you to review the source code of the plugins you install.
diff --git a/checkstyle-suppressions.xml b/checkstyle-suppressions.xml
new file mode 100644
index 0000000000..4af6827c10
--- /dev/null
+++ b/checkstyle-suppressions.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/checkstyle.xml b/checkstyle.xml
new file mode 100644
index 0000000000..2a89081015
--- /dev/null
+++ b/checkstyle.xml
@@ -0,0 +1,378 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/flathub/gephi.png b/flathub/gephi.png
new file mode 100644
index 0000000000..0ccc65c771
Binary files /dev/null and b/flathub/gephi.png differ
diff --git a/flathub/org.gephi.Gephi.desktop b/flathub/org.gephi.Gephi.desktop
new file mode 100644
index 0000000000..2dabf7e685
--- /dev/null
+++ b/flathub/org.gephi.Gephi.desktop
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Version=1.0
+Type=Application
+Name=Gephi
+Comment=The Open Graph Viz Platform
+Exec=gephi %F
+Icon=org.gephi.Gephi
+Terminal=false
+Categories=Science;
+StartupNotify=true
+StartupWMClass=Gephi
\ No newline at end of file
diff --git a/flathub/org.gephi.Gephi.metainfo.xml b/flathub/org.gephi.Gephi.metainfo.xml
new file mode 100644
index 0000000000..a4d358b5a6
--- /dev/null
+++ b/flathub/org.gephi.Gephi.metainfo.xml
@@ -0,0 +1,58 @@
+
+
+ org.gephi.Gephi
+ CC-BY-SA-3.0
+ GPL-3.0
+ Gephi
+ The Open Graph Viz Platform
+
+
+ Gephi is the leading open-source platform for visualizing and manipulating large graphs.
+
+
+
+
Fast: Powered by a built-in OpenGL engine, Gephi is able to push the envelope with very large networks. Visualize networks up to a million elements. All actions (e.g. layout, filter, drag) run in real-time.
+
Simple: Easy to install and get started. An UI that is centered around the visualization. Like Photoshopβ’ for graphs.
+
Extensible: Extend Gephi with plug-ins.
+
+
+
+ Example datasets can be found on our wiki: https://github.com/gephi/gephi/wiki/Datasets
+
+
Localization is available in English, French, Spanish, Japanese, Russian, Brazilian Portuguese, Chinese, Czech, German, Romanian, Greek, Hungarian, Korean, Swedish and Ukrainian.