-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from mattwright324/develop
Develop
- Loading branch information
Showing
67 changed files
with
3,284 additions
and
1,627 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,5 @@ commentsuite.sqlite3 | |
thumbs/ | ||
target/ | ||
*.sqlite3-journal | ||
exports/ | ||
exports/ | ||
*.~vsdx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
Build Documentation | ||
= | ||
|
||
This project is configured to be built with Maven. | ||
|
||
### Building youtube-comment-suite | ||
|
||
Get a copy of the repository | ||
|
||
``` | ||
git clone https://github.com/mattwright324/youtube-comment-suite.git | ||
``` | ||
|
||
Install [Java Development Kit 8](https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html) | ||
if it isn't installed already. | ||
|
||
Open the cloned project folder with your IDE of choice that supports Maven. | ||
Make sure the workspace and/or project is configured to use JDK8. | ||
Depending on the IDE, you may need to wait for dependencies to download and things to index. | ||
|
||
To perform a project build, run the `mvn package` command. | ||
|
||
- **IntelliJ** In the Maven tab, double click the `package` option under Lifecycle. | ||
- **Eclipse** Right click `pom.xml` -> `Run as...` -> Choose `Maven build...` -> Type `package` in the Goals textfield -> Run | ||
|
||
The build files will appear in folder `target/package/` and contains the following: | ||
|
||
- `lib/` folder containing dependency jars | ||
- `LICENSE` | ||
- `README.md` | ||
- `youtube-comment-suite-#.#.#.jar` | ||
|
||
This is what gets zipped up for a release. | ||
|
||
The project version and year is configured in `pom.xml` with properties `project.version` and `current.year`. | ||
Maven will use the version in the built jar name. | ||
Maven will also insert these values into `Settings.fxml` during the build. | ||
|
||
### Running youtube-comment-suite | ||
|
||
There are two ways to run this application from your IDE | ||
|
||
1. **From in IDE** Right click on file and run `src/main/java/io.mattw.youtube.commentsuite/FXMLSuite.java` | ||
2. **From package** Double click the jar at `target/package/youtube-comment-suite-#.#.#.jar` | ||
|
||
*Note: My YouTube API key provided in the application is not restricted at all given it isn't a website. | ||
Access should work for all local development. Please do not abuse it such that it uses up the daily quota.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Contributing Documentation | ||
= | ||
|
||
Contributions are certainly welcome and encouraged. | ||
|
||
Pull requests should generally describe the changes being made or the issue being addressed. | ||
Pull requests should be merged into the `develop` branch so that I may make any additional tweaks or adjustments before | ||
merging into `master` for the future release. | ||
|
||
Make the pull request from your own fork of the project. | ||
It is recommended to base it off the `develop` branch. | ||
However, depending how involved you would like to be, I can consider adding you to the main project if asked. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.