├── .codecov.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE │ ├── bug_fix.md │ └── new_feature.md ├── .gitignore ├── .mvn └── extensions.xml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bundles ├── fr.kazejiyu.discord.rpc.integration.adapters │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ └── src │ │ └── fr │ │ └── kazejiyu │ │ └── discord │ │ └── rpc │ │ └── integration │ │ └── adapters │ │ ├── DefaultClassFileEditorInputRichPresence.java │ │ ├── DefaultFileEditorInputRichPresence.java │ │ ├── DefaultURIEditorInputRichPresence.java │ │ ├── LanguageLabel.java │ │ └── package-info.java ├── fr.kazejiyu.discord.rpc.integration.ui.preferences │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ └── src │ │ └── fr │ │ └── kazejiyu │ │ └── discord │ │ └── rpc │ │ └── integration │ │ └── ui │ │ └── preferences │ │ ├── Activator.java │ │ ├── DiscordIntegrationIconsPreferencesPage.java │ │ ├── DiscordIntegrationPreferencesPage.java │ │ ├── DiscordIntegrationWordingPreferencesPage.java │ │ ├── internal │ │ ├── CustomWordingVariables.java │ │ ├── GroupFieldEditor.java │ │ ├── LambdaLabelProvider.java │ │ └── LinkFieldEditor.java │ │ └── properties │ │ ├── AbstractPropertyPage.java │ │ ├── ProjectPropertiesIconsPage.java │ │ ├── ProjectPropertiesPage.java │ │ └── ProjectPropertiesWordingPage.java ├── fr.kazejiyu.discord.rpc.integration │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ ├── schema │ │ └── editor_input_adapter.exsd │ └── src │ │ └── fr │ │ └── kazejiyu │ │ └── discord │ │ └── rpc │ │ └── integration │ │ ├── Activator.java │ │ ├── Plugin.java │ │ ├── core │ │ ├── DiscordRpcLifecycle.java │ │ ├── DiscordRpcProxy.java │ │ ├── ImmutableRichPresence.java │ │ ├── PreferredRichPresence.java │ │ ├── RichPresence.java │ │ ├── SelectionTimes.java │ │ └── package-info.java │ │ ├── extensions │ │ ├── EditorInputToRichPresenceAdapter.java │ │ ├── EditorRichPresenceFromInput.java │ │ ├── internal │ │ │ ├── EditorRichPresenceFromExtensions.java │ │ │ ├── UnknownInputRichPresence.java │ │ │ └── package-info.java │ │ └── package-info.java │ │ ├── files │ │ ├── AddListenerOnWindowOpened.java │ │ ├── EditionContext.java │ │ ├── EditorToRichPresenceAdapter.java │ │ ├── OnPostShutdown.java │ │ ├── UpdateDiscordOnEditorChange.java │ │ └── package-info.java │ │ ├── languages │ │ ├── Language.java │ │ └── package-info.java │ │ └── settings │ │ ├── DiscordIntegrationPreferencesInitializer.java │ │ ├── GlobalPreferences.java │ │ ├── GlobalPreferencesListener.java │ │ ├── Moment.java │ │ ├── ProjectPreferences.java │ │ ├── ProjectPreferencesListener.java │ │ ├── SettingChangeListener.java │ │ ├── Settings.java │ │ ├── UpdateDiscordOnSettingChange.java │ │ ├── UserPreferences.java │ │ └── package-info.java ├── java-discord-rpc │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── discord-rpc-release-v3.4.0.jar │ ├── java-discord-rpc-2.0.2.jar │ ├── jna-4.4.0.jar │ └── pom.xml └── pom.xml ├── checkstyle.xml ├── docs ├── .gitignore ├── Makefile ├── README.md ├── conf.py ├── contribute │ └── contributing-guide.rst ├── customize │ ├── change-language-icons.rst │ ├── change-name-of-projects.rst │ ├── change-wording.rst │ ├── deactivate-plugin.rst │ ├── global-and-project-scopes.rst │ ├── hide-information.rst │ └── images │ │ ├── change_icons_preferences_page.png │ │ ├── change_wording_preferences_page.png │ │ ├── custom_icon.png │ │ ├── global_preferences.png │ │ └── project_preferences.png ├── extend │ ├── change-wording.rst │ └── support-new-editors.rst ├── images │ ├── rich-presence-examples.gif │ └── rich_presence_example.png ├── index.rst ├── install │ ├── from-marketplace.rst │ └── from-p2.rst ├── make.bat └── troubleshooting │ ├── not-detected-as-game.rst │ └── workbench-early-startup-error.rst ├── features ├── fr.kazejiyu.discord.rpc.integration.feature │ ├── .project │ ├── build.properties │ └── feature.xml ├── fr.kazejiyu.discord.rpc.integration.ui.feature │ ├── .project │ ├── build.properties │ └── feature.xml ├── java-discord-rpc.feature │ ├── .project │ ├── build.properties │ └── feature.xml └── pom.xml ├── pom.xml ├── releng ├── fr.kazejiyu.discord.rpc.integration.p2 │ ├── .project │ ├── bintray.ant │ ├── category.xml │ ├── packaging-p2composite.ant │ ├── pom.xml │ └── removeFromBintray.sh ├── fr.kazejiyu.discord.rpc.integration.target │ ├── .project │ ├── fr.kazejiyu.discord.rpc.integration.target.target │ └── pom.xml └── pom.xml ├── sonar-project.properties └── tests ├── fr.kazejiyu.discord.rpc.integration.adapters.tests ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── lib │ └── org.junit.jupiter.engine-5.1.0.v20180327-1502.jar ├── pom.xml └── src │ └── fr │ └── kazejiyu │ └── discord │ └── rpc │ └── integration │ ├── adapters │ ├── DefaultFileEditorInputRichPresenceTest.java │ └── DefaultURIEditorInputRichPresenceTest.java │ └── tests │ └── mock │ ├── MockitoExtension.java │ └── package-info.java ├── fr.kazejiyu.discord.rpc.integration.tests.report └── pom.xml ├── fr.kazejiyu.discord.rpc.integration.tests ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── lib │ └── org.junit.jupiter.engine-5.1.0.v20180327-1502.jar ├── pom.xml └── src │ └── fr │ └── kazejiyu │ └── discord │ └── rpc │ └── integration │ ├── core │ ├── ImmutableRichPresenceTest.java │ ├── PreferredRichPresenceTest.java │ └── SelectionTimesTest.java │ ├── extensions │ ├── EditorInputToRichPresenceAdapterTest.java │ └── internal │ │ ├── ChildOfIEditorInput.java │ │ ├── EditorRichPresenceFromExtensionsTest.java │ │ ├── FakeEditorInputRichPresence.java │ │ ├── GrandchildOfIEditorInput.java │ │ └── UnknownInputRichPresenceTest.java │ ├── files │ ├── AddListenerOnWindowOpenedTest.java │ ├── EditorToRichPresenceAdapterTest.java │ └── UpdateDiscordOnEditorChangeTest.java │ ├── languages │ └── LanguageTest.java │ ├── settings │ ├── GlobalPreferencesListenerTest.java │ └── UpdateDiscordOnSettingChangeTest.java │ └── tests │ └── mock │ ├── MockitoExtension.java │ └── package-info.java ├── org.assertj ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── assertj-core-3.9.0.jar └── build.properties └── pom.xml /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/bug_fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/.github/PULL_REQUEST_TEMPLATE/bug_fix.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/new_feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/.github/PULL_REQUEST_TEMPLATE/new_feature.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/.mvn/extensions.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/README.md -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.adapters/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.adapters/.classpath -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.adapters/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.adapters/.project -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.adapters/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.adapters/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.adapters/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.adapters/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.adapters/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.adapters/build.properties -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.adapters/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.adapters/plugin.xml -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.adapters/src/fr/kazejiyu/discord/rpc/integration/adapters/DefaultClassFileEditorInputRichPresence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.adapters/src/fr/kazejiyu/discord/rpc/integration/adapters/DefaultClassFileEditorInputRichPresence.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.adapters/src/fr/kazejiyu/discord/rpc/integration/adapters/DefaultFileEditorInputRichPresence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.adapters/src/fr/kazejiyu/discord/rpc/integration/adapters/DefaultFileEditorInputRichPresence.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.adapters/src/fr/kazejiyu/discord/rpc/integration/adapters/DefaultURIEditorInputRichPresence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.adapters/src/fr/kazejiyu/discord/rpc/integration/adapters/DefaultURIEditorInputRichPresence.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.adapters/src/fr/kazejiyu/discord/rpc/integration/adapters/LanguageLabel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.adapters/src/fr/kazejiyu/discord/rpc/integration/adapters/LanguageLabel.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.adapters/src/fr/kazejiyu/discord/rpc/integration/adapters/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.adapters/src/fr/kazejiyu/discord/rpc/integration/adapters/package-info.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/.classpath -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/.project -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/build.properties -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/plugin.xml -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/Activator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/Activator.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/DiscordIntegrationIconsPreferencesPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/DiscordIntegrationIconsPreferencesPage.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/DiscordIntegrationPreferencesPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/DiscordIntegrationPreferencesPage.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/DiscordIntegrationWordingPreferencesPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/DiscordIntegrationWordingPreferencesPage.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/internal/CustomWordingVariables.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/internal/CustomWordingVariables.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/internal/GroupFieldEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/internal/GroupFieldEditor.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/internal/LambdaLabelProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/internal/LambdaLabelProvider.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/internal/LinkFieldEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/internal/LinkFieldEditor.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/properties/AbstractPropertyPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/properties/AbstractPropertyPage.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/properties/ProjectPropertiesIconsPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/properties/ProjectPropertiesIconsPage.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/properties/ProjectPropertiesPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/properties/ProjectPropertiesPage.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/properties/ProjectPropertiesWordingPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/src/fr/kazejiyu/discord/rpc/integration/ui/preferences/properties/ProjectPropertiesWordingPage.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/.classpath -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/.project -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/build.properties -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/plugin.xml -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/schema/editor_input_adapter.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/schema/editor_input_adapter.exsd -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/Activator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/Activator.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/Plugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/Plugin.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/core/DiscordRpcLifecycle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/core/DiscordRpcLifecycle.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/core/DiscordRpcProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/core/DiscordRpcProxy.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/core/ImmutableRichPresence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/core/ImmutableRichPresence.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/core/PreferredRichPresence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/core/PreferredRichPresence.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/core/RichPresence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/core/RichPresence.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/core/SelectionTimes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/core/SelectionTimes.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/core/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/core/package-info.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/extensions/EditorInputToRichPresenceAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/extensions/EditorInputToRichPresenceAdapter.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/extensions/EditorRichPresenceFromInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/extensions/EditorRichPresenceFromInput.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/extensions/internal/EditorRichPresenceFromExtensions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/extensions/internal/EditorRichPresenceFromExtensions.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/extensions/internal/UnknownInputRichPresence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/extensions/internal/UnknownInputRichPresence.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/extensions/internal/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/extensions/internal/package-info.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/extensions/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/extensions/package-info.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/files/AddListenerOnWindowOpened.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/files/AddListenerOnWindowOpened.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/files/EditionContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/files/EditionContext.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/files/EditorToRichPresenceAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/files/EditorToRichPresenceAdapter.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/files/OnPostShutdown.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/files/OnPostShutdown.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/files/UpdateDiscordOnEditorChange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/files/UpdateDiscordOnEditorChange.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/files/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/files/package-info.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/languages/Language.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/languages/Language.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/languages/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/languages/package-info.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/DiscordIntegrationPreferencesInitializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/DiscordIntegrationPreferencesInitializer.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/GlobalPreferences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/GlobalPreferences.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/GlobalPreferencesListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/GlobalPreferencesListener.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/Moment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/Moment.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/ProjectPreferences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/ProjectPreferences.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/ProjectPreferencesListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/ProjectPreferencesListener.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/SettingChangeListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/SettingChangeListener.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/Settings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/Settings.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/UpdateDiscordOnSettingChange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/UpdateDiscordOnSettingChange.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/UserPreferences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/UserPreferences.java -------------------------------------------------------------------------------- /bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/fr.kazejiyu.discord.rpc.integration/src/fr/kazejiyu/discord/rpc/integration/settings/package-info.java -------------------------------------------------------------------------------- /bundles/java-discord-rpc/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/java-discord-rpc/.classpath -------------------------------------------------------------------------------- /bundles/java-discord-rpc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/java-discord-rpc/.project -------------------------------------------------------------------------------- /bundles/java-discord-rpc/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/java-discord-rpc/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /bundles/java-discord-rpc/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/java-discord-rpc/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/java-discord-rpc/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/java-discord-rpc/build.properties -------------------------------------------------------------------------------- /bundles/java-discord-rpc/discord-rpc-release-v3.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/java-discord-rpc/discord-rpc-release-v3.4.0.jar -------------------------------------------------------------------------------- /bundles/java-discord-rpc/java-discord-rpc-2.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/java-discord-rpc/java-discord-rpc-2.0.2.jar -------------------------------------------------------------------------------- /bundles/java-discord-rpc/jna-4.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/java-discord-rpc/jna-4.4.0.jar -------------------------------------------------------------------------------- /bundles/java-discord-rpc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/java-discord-rpc/pom.xml -------------------------------------------------------------------------------- /bundles/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/bundles/pom.xml -------------------------------------------------------------------------------- /checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/checkstyle.xml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | # Sphinx 2 | _build/ -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contribute/contributing-guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/contribute/contributing-guide.rst -------------------------------------------------------------------------------- /docs/customize/change-language-icons.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/customize/change-language-icons.rst -------------------------------------------------------------------------------- /docs/customize/change-name-of-projects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/customize/change-name-of-projects.rst -------------------------------------------------------------------------------- /docs/customize/change-wording.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/customize/change-wording.rst -------------------------------------------------------------------------------- /docs/customize/deactivate-plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/customize/deactivate-plugin.rst -------------------------------------------------------------------------------- /docs/customize/global-and-project-scopes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/customize/global-and-project-scopes.rst -------------------------------------------------------------------------------- /docs/customize/hide-information.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/customize/hide-information.rst -------------------------------------------------------------------------------- /docs/customize/images/change_icons_preferences_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/customize/images/change_icons_preferences_page.png -------------------------------------------------------------------------------- /docs/customize/images/change_wording_preferences_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/customize/images/change_wording_preferences_page.png -------------------------------------------------------------------------------- /docs/customize/images/custom_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/customize/images/custom_icon.png -------------------------------------------------------------------------------- /docs/customize/images/global_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/customize/images/global_preferences.png -------------------------------------------------------------------------------- /docs/customize/images/project_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/customize/images/project_preferences.png -------------------------------------------------------------------------------- /docs/extend/change-wording.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/extend/change-wording.rst -------------------------------------------------------------------------------- /docs/extend/support-new-editors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/extend/support-new-editors.rst -------------------------------------------------------------------------------- /docs/images/rich-presence-examples.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/images/rich-presence-examples.gif -------------------------------------------------------------------------------- /docs/images/rich_presence_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/images/rich_presence_example.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install/from-marketplace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/install/from-marketplace.rst -------------------------------------------------------------------------------- /docs/install/from-p2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/install/from-p2.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/troubleshooting/not-detected-as-game.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/troubleshooting/not-detected-as-game.rst -------------------------------------------------------------------------------- /docs/troubleshooting/workbench-early-startup-error.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/docs/troubleshooting/workbench-early-startup-error.rst -------------------------------------------------------------------------------- /features/fr.kazejiyu.discord.rpc.integration.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/features/fr.kazejiyu.discord.rpc.integration.feature/.project -------------------------------------------------------------------------------- /features/fr.kazejiyu.discord.rpc.integration.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/fr.kazejiyu.discord.rpc.integration.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/features/fr.kazejiyu.discord.rpc.integration.feature/feature.xml -------------------------------------------------------------------------------- /features/fr.kazejiyu.discord.rpc.integration.ui.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/features/fr.kazejiyu.discord.rpc.integration.ui.feature/.project -------------------------------------------------------------------------------- /features/fr.kazejiyu.discord.rpc.integration.ui.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/fr.kazejiyu.discord.rpc.integration.ui.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/features/fr.kazejiyu.discord.rpc.integration.ui.feature/feature.xml -------------------------------------------------------------------------------- /features/java-discord-rpc.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/features/java-discord-rpc.feature/.project -------------------------------------------------------------------------------- /features/java-discord-rpc.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/java-discord-rpc.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/features/java-discord-rpc.feature/feature.xml -------------------------------------------------------------------------------- /features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/features/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/pom.xml -------------------------------------------------------------------------------- /releng/fr.kazejiyu.discord.rpc.integration.p2/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/releng/fr.kazejiyu.discord.rpc.integration.p2/.project -------------------------------------------------------------------------------- /releng/fr.kazejiyu.discord.rpc.integration.p2/bintray.ant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/releng/fr.kazejiyu.discord.rpc.integration.p2/bintray.ant -------------------------------------------------------------------------------- /releng/fr.kazejiyu.discord.rpc.integration.p2/category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/releng/fr.kazejiyu.discord.rpc.integration.p2/category.xml -------------------------------------------------------------------------------- /releng/fr.kazejiyu.discord.rpc.integration.p2/packaging-p2composite.ant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/releng/fr.kazejiyu.discord.rpc.integration.p2/packaging-p2composite.ant -------------------------------------------------------------------------------- /releng/fr.kazejiyu.discord.rpc.integration.p2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/releng/fr.kazejiyu.discord.rpc.integration.p2/pom.xml -------------------------------------------------------------------------------- /releng/fr.kazejiyu.discord.rpc.integration.p2/removeFromBintray.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/releng/fr.kazejiyu.discord.rpc.integration.p2/removeFromBintray.sh -------------------------------------------------------------------------------- /releng/fr.kazejiyu.discord.rpc.integration.target/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/releng/fr.kazejiyu.discord.rpc.integration.target/.project -------------------------------------------------------------------------------- /releng/fr.kazejiyu.discord.rpc.integration.target/fr.kazejiyu.discord.rpc.integration.target.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/releng/fr.kazejiyu.discord.rpc.integration.target/fr.kazejiyu.discord.rpc.integration.target.target -------------------------------------------------------------------------------- /releng/fr.kazejiyu.discord.rpc.integration.target/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/releng/fr.kazejiyu.discord.rpc.integration.target/pom.xml -------------------------------------------------------------------------------- /releng/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/releng/pom.xml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/.classpath -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/.project -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/build.properties -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/lib/org.junit.jupiter.engine-5.1.0.v20180327-1502.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/lib/org.junit.jupiter.engine-5.1.0.v20180327-1502.jar -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/pom.xml -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/src/fr/kazejiyu/discord/rpc/integration/adapters/DefaultFileEditorInputRichPresenceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/src/fr/kazejiyu/discord/rpc/integration/adapters/DefaultFileEditorInputRichPresenceTest.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/src/fr/kazejiyu/discord/rpc/integration/adapters/DefaultURIEditorInputRichPresenceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/src/fr/kazejiyu/discord/rpc/integration/adapters/DefaultURIEditorInputRichPresenceTest.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/src/fr/kazejiyu/discord/rpc/integration/tests/mock/MockitoExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/src/fr/kazejiyu/discord/rpc/integration/tests/mock/MockitoExtension.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/src/fr/kazejiyu/discord/rpc/integration/tests/mock/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/src/fr/kazejiyu/discord/rpc/integration/tests/mock/package-info.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests.report/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests.report/pom.xml -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/.classpath -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/.project -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/build.properties -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/lib/org.junit.jupiter.engine-5.1.0.v20180327-1502.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/lib/org.junit.jupiter.engine-5.1.0.v20180327-1502.jar -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/pom.xml -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/core/ImmutableRichPresenceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/core/ImmutableRichPresenceTest.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/core/PreferredRichPresenceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/core/PreferredRichPresenceTest.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/core/SelectionTimesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/core/SelectionTimesTest.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/extensions/EditorInputToRichPresenceAdapterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/extensions/EditorInputToRichPresenceAdapterTest.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/extensions/internal/ChildOfIEditorInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/extensions/internal/ChildOfIEditorInput.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/extensions/internal/EditorRichPresenceFromExtensionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/extensions/internal/EditorRichPresenceFromExtensionsTest.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/extensions/internal/FakeEditorInputRichPresence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/extensions/internal/FakeEditorInputRichPresence.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/extensions/internal/GrandchildOfIEditorInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/extensions/internal/GrandchildOfIEditorInput.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/extensions/internal/UnknownInputRichPresenceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/extensions/internal/UnknownInputRichPresenceTest.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/files/AddListenerOnWindowOpenedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/files/AddListenerOnWindowOpenedTest.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/files/EditorToRichPresenceAdapterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/files/EditorToRichPresenceAdapterTest.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/files/UpdateDiscordOnEditorChangeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/files/UpdateDiscordOnEditorChangeTest.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/languages/LanguageTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/languages/LanguageTest.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/settings/GlobalPreferencesListenerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/settings/GlobalPreferencesListenerTest.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/settings/UpdateDiscordOnSettingChangeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/settings/UpdateDiscordOnSettingChangeTest.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/tests/mock/MockitoExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/tests/mock/MockitoExtension.java -------------------------------------------------------------------------------- /tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/tests/mock/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/fr.kazejiyu.discord.rpc.integration.tests/src/fr/kazejiyu/discord/rpc/integration/tests/mock/package-info.java -------------------------------------------------------------------------------- /tests/org.assertj/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/org.assertj/.classpath -------------------------------------------------------------------------------- /tests/org.assertj/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/org.assertj/.project -------------------------------------------------------------------------------- /tests/org.assertj/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/org.assertj/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /tests/org.assertj/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/org.assertj/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /tests/org.assertj/assertj-core-3.9.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/org.assertj/assertj-core-3.9.0.jar -------------------------------------------------------------------------------- /tests/org.assertj/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/org.assertj/build.properties -------------------------------------------------------------------------------- /tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echebbi/eclipse-discord-integration/HEAD/tests/pom.xml --------------------------------------------------------------------------------