Skip to content

Pluggin Raising "No Internet Connection Error", possibly version related.  #72

@aggerdom

Description

@aggerdom

Hey,
Thanks for all the great work you're doing with the pluggin. I've been using the pluggin for awhile, but after installing an update for Pycharm Edu 2.0.2 to 2.0.3. The newer version of the pluggin gets a "This pluggin is not compatible with this release" error when attempting to install. An old version will install fine, but is unable to connect when attempting to create a project. I assume its raising an verify my checkio credentials with a popup:

Title: "No internet connection"
Message: "CheckiO Is Unavailable"

I assume this is the relevant error.

https://github.com/evgraph/CheckIOPyCharmPlugin/blob/master/src/com/jetbrains/checkio/courseGeneration/CheckIOProjectGenerator.java

  @Nullable
  @Override
  public BooleanFunction<PythonProjectGenerator> beforeProjectGenerated(@Nullable final Sdk sdk) {
    if (sdk == null) return generator -> false;
    final ProgressManager progressManager = ProgressManager.getInstance();
    final Project project = ProjectManager.getInstance().getDefaultProject();
    if (!CheckIOUtils.checkConnection()) {
      Messages.showWarningDialog("No internet connection", "CheckiO Is Unavailable");
      return generator -> false;
    }
    }

Do you: (A) plan on releasing an update to support the newer version or (B) know if there is a download page for past releases of pycharm edu?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions