Skip to content

Commit 0019257

Browse files
committed
Initial checkin
1 parent ad37165 commit 0019257

File tree

16 files changed

+387
-0
lines changed

16 files changed

+387
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
notesolver/_deploy.bat
3+
notesolver/build/GPL-v2.0.txt
4+
notesolver/build/GPL-v3.0.txt
5+
notesolver/build/README

notesolver/MANIFEST

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Manifest-Version: 1.0
2+
Ant-Version: Apache Ant 1.10.7
3+
Created-By: 1.8.0_251-b08 (Oracle Corporation)
4+
Plugin-Mainversion: 10580
5+
Plugin-Version: UNKNOWN
6+
Plugin-Class: org.openstreetmap.josm.plugins.notesolver.NoteSolverPlug
7+
in
8+
Plugin-Description: Used for closing notes when uploading a changeset
9+
and referencing them in each other's comments to keep references.
10+
Plugin-Date: 2020-05-10T23:07:54.659
11+
Author: Kai Michael Poppe
12+
Plugin-Link: https://wiki.openstreetmap.org/wiki/User:Kmpoppe/Plugins#
13+
noteSolver
14+
Plugin-Canloadatruntime: true
15+

notesolver/README

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
README
2+
======
3+
4+
Readme for your plugin
5+
6+
* Plugin author and contact email address.
7+
8+
* The license for your plugin source code. If you have no special preferences,
9+
you can pick the license that is used for JOSM ("GPL v2 or later").
10+
11+
* Notes for future developers, if needed.

notesolver/build.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<project name="notesolver" default="dist" basedir=".">
3+
<property name="commit.message" value="Note Solver"/>
4+
<property name="plugin.main.version" value="10580"/>
5+
<property name="plugin.version" value="16000"/>
6+
<property name="plugin.author" value="Kai Michael Poppe"/>
7+
<property name="plugin.class" value="org.openstreetmap.josm.plugins.notesolver.NoteSolverPlugin"/>
8+
<property name="plugin.description" value="Used for closing notes when uploading a changeset and referencing them in each other's comments to keep references."/>
9+
<property name="plugin.icon" value=""/>
10+
<property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/User:Kmpoppe/Plugins#noteSolver"/>
11+
<property name="plugin.canloadatruntime" value="true"/>
12+
<import file="../build-common.xml"/>
13+
</project>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)