Skip to content

Commit

Permalink
Update idea to 2024.2
Browse files Browse the repository at this point in the history
  • Loading branch information
PHPirates committed Oct 7, 2024
1 parent 83b40ba commit 926fdc1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
11 changes: 4 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
pluginName = intellij-pdf-viewer
group = com.firsttimeinforever.intellij.pdf.viewer
version = 0.16.1
version = 0.17.1-alpha.1

# To run with AS 2021.3.1 Canary 5
#platformVersion = 213.6777.52

#IntelliJ IDEA 2021.1.2 Preview
platformVersion = 2024.1
platformVersion = 2024.2
pluginSinceVersion = 241
pluginUntilVersion = 299.*
pluginVerifierIdeVersions = 241.15989.69
pluginVerifierIdeVersions = 241, 242

texifyVersion = 0.9.4

nodeVersion = 18.16.0
texifyVersion = 0.9.7

kotlinVersion = 1.9.20
kotlinxSerializationJsonVersion = 1.2.1
Expand Down
1 change: 0 additions & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ tasks {
}
withType<PatchPluginXmlTask> {
sinceBuild.set(fromProperties("pluginSinceVersion"))
untilBuild.set(fromProperties("pluginUntilVersion"))
changeNotes.set(changelog.renderItem(changelog.getLatest().withHeader(true), Changelog.OutputType.HTML))
pluginDescription.set(extractPluginDescription())
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ package com.firsttimeinforever.intellij.pdf.viewer.ui.editor.view.controls
import com.firsttimeinforever.intellij.pdf.viewer.actions.PdfActionUtils.createActionToolbar
import com.intellij.openapi.Disposable
import com.intellij.openapi.actionSystem.ActionPlaces
import com.intellij.openapi.actionSystem.toolbarLayout.RightActionsAdjusterStrategyWrapper
import com.intellij.openapi.actionSystem.toolbarLayout.WrapLayoutStrategy
import java.awt.Component
import java.awt.Dimension
import java.awt.FlowLayout
Expand Down Expand Up @@ -34,7 +32,6 @@ class PdfEditorControlPanel: JPanel(GridLayout()), Disposable {
rightPanel.layout = FlowLayout(FlowLayout.RIGHT, 0, 0)

rightPanel.add(rightToolbar.component)
rightToolbar.layoutStrategy = RightActionsAdjusterStrategyWrapper(WrapLayoutStrategy(true))
rightPanel.preferredSize = Dimension(Int.MAX_VALUE, 24)
add(rightPanel, Component.RIGHT_ALIGNMENT)
}
Expand Down

0 comments on commit 926fdc1

Please sign in to comment.