Changeset 36147 in osm for applications
- Timestamp:
- 2023-09-20T17:59:32+02:00 (14 months ago)
- Location:
- applications/editors/josm/plugins/geochat
- Files:
-
- 5 added
- 1 deleted
- 1 edited
- 10 copied
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/geochat/build.xml
r36122 r36147 8 8 9 9 <property name="plugin.author" value="Ilya Zverev"/> 10 <property name="plugin.class" value=" geochat.GeoChatPlugin"/>10 <property name="plugin.class" value="org.openstreetmap.josm.plugins.geochat.GeoChatPlugin"/> 11 11 <property name="plugin.description" value="Talk with users editing the map nearby, be notified when someone comes close."/> 12 12 <property name="plugin.icon" value="images/dialogs/geochat.png"/> -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/ChatMessage.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat;2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import java.time.Instant; -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/ChatPaneManager.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat;2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/ChatServerConnection.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat;2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/ChatServerConnectionListener.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat;2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import java.util.List; -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/GeoChatPanel.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat;2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 68 68 */ 69 69 public GeoChatPanel() { 70 super(tr("GeoChat"), " geochat", tr("Open GeoChat panel"), null, 200, true);70 super(tr("GeoChat"), "org/openstreetmap/josm/plugins/geochat", tr("Open GeoChat panel"), null, 200, true); 71 71 72 72 noData = new JLabel(tr("Zoom in to see messages"), SwingConstants.CENTER); -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/GeoChatPlugin.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat;2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import org.openstreetmap.josm.gui.MapFrame; -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/GeoChatPopupAdapter.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat;2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/JPanelTextField.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat;2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import java.awt.KeyboardFocusManager; -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/JsonQueryCallback.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat;2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import jakarta.json.JsonObject; -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/JsonQueryUtil.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat;2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import java.awt.EventQueue;
Note:
See TracChangeset
for help on using the changeset viewer.