Skip to content

Commit 022b71f

Browse files
committed
Finish v1.0.0
2 parents d301ae1 + adbf089 commit 022b71f

23 files changed

+1802
-0
lines changed

.env.example

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env bash
2+
#
3+
# Environment variables for build scripts.
4+
# Copy this file to ".env" and enter your custom environment variables.
5+
#
6+
7+
GO="${HOME}/go/go1.16.2/bin/go"
8+
export GOPATH="${HOME}/go"

.gitignore

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
/.env
2+
/target
3+
/testing/Contents/MacOS
4+
5+
6+
#
7+
# Default entries for IntelliJ IDEA
8+
# based on https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
9+
#
10+
11+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
12+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
13+
14+
# User-specific stuff
15+
.idea/**/workspace.xml
16+
.idea/**/tasks.xml
17+
.idea/**/usage.statistics.xml
18+
.idea/**/dictionaries/*
19+
.idea/**/shelf
20+
21+
# Generated files
22+
.idea/**/contentModel.xml
23+
24+
# Sensitive or high-churn files
25+
.idea/**/dataSources/
26+
.idea/**/dataSources.ids
27+
.idea/**/dataSources.local.xml
28+
.idea/**/sqlDataSources.xml
29+
.idea/**/dynamic.xml
30+
.idea/**/uiDesigner.xml
31+
.idea/**/dbnavigator.xml
32+
33+
# Gradle
34+
.idea/**/gradle.xml
35+
.idea/**/libraries
36+
37+
# Gradle and Maven with auto-import
38+
# When using Gradle or Maven with auto-import, you should exclude module files,
39+
# since they will be recreated, and may cause churn. Uncomment if using
40+
# auto-import.
41+
.idea/modules.xml
42+
.idea/*.iml
43+
.idea/modules
44+
45+
# CMake
46+
cmake-build-*/
47+
48+
# Mongo Explorer plugin
49+
.idea/**/mongoSettings.xml
50+
51+
# File-based project format
52+
*.iws
53+
54+
# IntelliJ
55+
out/
56+
57+
# mpeltonen/sbt-idea plugin
58+
.idea_modules/
59+
60+
# JIRA plugin
61+
atlassian-ide-plugin.xml
62+
63+
# Cursive Clojure plugin
64+
.idea/replstate.xml
65+
66+
# Crashlytics plugin (for Android Studio and IntelliJ)
67+
com_crashlytics_export_strings.xml
68+
crashlytics.properties
69+
crashlytics-build.properties
70+
fabric.properties
71+
72+
# Editor-based Rest Client
73+
.idea/httpRequests
74+
75+
# Android studio 3.1+ serialized cache file
76+
.idea/caches/build_file_checksums.ser

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/build.xml

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/release.xml

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/run.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Changelog for JavaMacLauncher
2+
=============================
3+
4+
5+
1.0.0 (18 Mar 2021)
6+
-------------------
7+
8+
- first public release

CONTRIBUTING.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Contributing
2+
3+
4+
## Notes about branches
5+
6+
This project follows the principles of the [GitFlow branching model](http://jeffkreeftmeijer.com/2010/why-arent-you-using-git-flow/) as [proposed by Vincent Driessen](http://nvie.com/posts/a-successful-git-branching-model/). According to this model you will find these branches at the GitHub project page:
7+
8+
- The [master branch](https://github.com/OpenIndex/JavaMacLauncher/tree/master) contains the current stable releases. No development is directly taking place in that branch.
9+
10+
- The [develop branch](https://github.com/OpenIndex/JavaMacLauncher/tree/develop) represents the current state of development. Changes from this branch are merged into [master](https://github.com/OpenIndex/JavaMacLauncher/tree/master) when a new version is released.
11+
12+
- For more complex features you may also find different feature branches. These are derived from [develop branch](https://github.com/OpenIndex/JavaMacLauncher/tree/develop) and are merged back / removed as soon as the feature is ready for release.
13+
14+
> **Notice:** If you like to provide changes to this project, you should always use the [develop branch](https://github.com/OpenIndex/JavaMacLauncher/tree/develop) as basis for your customization. Feel free to create separate feature branches for any custom feature you like to share.
15+
16+
17+
## Create a pull request
18+
19+
We love pull requests. Here's a quick guide.
20+
21+
- Fork this project into you GitHub profile.
22+
23+
- Clone the [develop branch](https://github.com/OpenIndex/JavaMacLauncher/tree/develop) of the repository to your
24+
local disk:
25+
```
26+
git clone -b develop git@github.com:your-username/JavaMacLauncher.git
27+
```
28+
29+
- Do your changes to the local repository and push the changes back into your fork at GitHub.
30+
31+
- [Submit a pull request](https://github.com/OpenIndex/JavaMacLauncher/compare/) with the changes from your fork.
32+
33+
At this point you're waiting on us. We like to comment on pull requests as soon as possible. We may suggest some changes or improvements or alternatives.
34+
35+
Some things that will increase the chance that your pull request is accepted:
36+
37+
- Test your changes.
38+
39+
- Write a [good commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).

0 commit comments

Comments
 (0)