Skip to content

Commit 73df6e8

Browse files
authored
Merge pull request #2 from BenHerbst/master
Merge 0.8.0 with current master
2 parents 803e8bc + 4420a1c commit 73df6e8

32 files changed

+336
-537
lines changed

.classpath

+20-7
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,38 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="src" output="bin/main" path="src/main/java">
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
44
<attributes>
55
<attribute name="gradle_scope" value="main"/>
66
<attribute name="gradle_used_by_scope" value="main,test"/>
7+
<attribute name="optional" value="true"/>
8+
<attribute name="maven.pomderived" value="true"/>
79
</attributes>
810
</classpathentry>
9-
<classpathentry kind="src" output="bin/main" path="src/main/resources">
11+
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
1012
<attributes>
1113
<attribute name="gradle_scope" value="main"/>
1214
<attribute name="gradle_used_by_scope" value="main,test"/>
15+
<attribute name="maven.pomderived" value="true"/>
1316
</attributes>
1417
</classpathentry>
15-
<classpathentry kind="src" output="bin/test" path="src/test/java">
18+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
1619
<attributes>
20+
<attribute name="test" value="true"/>
1721
<attribute name="gradle_scope" value="test"/>
1822
<attribute name="gradle_used_by_scope" value="test"/>
19-
<attribute name="test" value="true"/>
23+
<attribute name="optional" value="true"/>
24+
<attribute name="maven.pomderived" value="true"/>
25+
</attributes>
26+
</classpathentry>
27+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-16">
28+
<attributes>
29+
<attribute name="maven.pomderived" value="true"/>
30+
</attributes>
31+
</classpathentry>
32+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
33+
<attributes>
34+
<attribute name="maven.pomderived" value="true"/>
2035
</attributes>
2136
</classpathentry>
22-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17/"/>
23-
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
24-
<classpathentry kind="output" path="bin/default"/>
37+
<classpathentry kind="output" path="target/classes"/>
2538
</classpath>

.github/ISSUE_TEMPLATE/bug_report.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG]"
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce if necessary**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior if necessary**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots if necessary**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Device (please complete the following information):**
27+
- OS: [e.g. Windows 11]
28+
- Version [e.g. 0.9]
29+
30+
**Additional context**
31+
Add any other context about the problem here.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33

44
# Ignore Gradle build output directory
55
build
6+
/target/

.project

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>ainm</name>
3+
<name>Idaesbasic</name>
44
<comment>Project ainm created by Buildship.</comment>
55
<projects>
66
</projects>
@@ -11,13 +11,13 @@
1111
</arguments>
1212
</buildCommand>
1313
<buildCommand>
14-
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
14+
<name>org.eclipse.m2e.core.maven2Builder</name>
1515
<arguments>
1616
</arguments>
1717
</buildCommand>
1818
</buildSpec>
1919
<natures>
20+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
2021
<nature>org.eclipse.jdt.core.javanature</nature>
21-
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
2222
</natures>
2323
</projectDescription>

.settings/org.eclipse.jdt.core.prefs

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=16
3+
org.eclipse.jdt.core.compiler.compliance=16
4+
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
5+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
6+
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
7+
org.eclipse.jdt.core.compiler.release=enabled
8+
org.eclipse.jdt.core.compiler.source=16

.settings/org.eclipse.m2e.core.prefs

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Ainm - Project managment Redefined
1+
# Idaesbasic - Alpha - Project managment Redefined
22
!["logo"](https://github.com/BenHerbst/ainm/blob/master/icon.png)
33
## Everything is a file
44
With this project managment tool, everything is a file. Your todolists are .todo files and your kanbans .kanban ...
5-
You can store everything local on you computer and directly in your project. For example: figures/player/player.todo, if you are a game dev and you want to manage planning ofthe player.
5+
You can store everything local on you computer and directly in your project. For example: figures/player/player.todo, if you are a game dev and you want to manage planning of the player.
66

77
## Big tool set
88
There will be lot of tools in ainm:

ainm.todo

-4
This file was deleted.

build.gradle

-43
This file was deleted.

gradle/wrapper/gradle-wrapper.jar

-58.1 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

-5
This file was deleted.

0 commit comments

Comments
 (0)