From d7564a51ce4a85799bd421dac0c913cb20d25a63 Mon Sep 17 00:00:00 2001 From: Forkk Date: Tue, 7 Jan 2014 19:21:42 -0600 Subject: Bump minor version number and update changelog. --- changelog.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'changelog.yaml') diff --git a/changelog.yaml b/changelog.yaml index 63c4b4b1..38b8f755 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,2 +1,18 @@ +# +# This is MultiMC's changelog. It is formatted in YAML. +# +# Each key below represents a release version name. Each release key has several string entries under it, each containing information about a single change. Each of these entries may contain Markdown for formatting. +# + 0.0: - Initial release. +0.1: + - Reworked the version numbering system to support our [new Git workflow](http://nvie.com/posts/a-successful-git-branching-model/). + - Added a tray icon for the console window. + - Fixed instances getting deselected after FTB instances are loaded (or whenever the model is reset). + - Implemented proxy settings. + - Added a hack to fix NVidia Optimus using the wrong graphics card. + - Fixed sorting of Java installations in the Java list. + - Jar files are now distributed separately, rather than being extracted from the binary at runtime. + - Added additional information to the about dialog. + -- cgit From 7ace682260bb392714e2a9a8a985e79f3ee9b022 Mon Sep 17 00:00:00 2001 From: Forkk Date: Wed, 8 Jan 2014 17:54:23 -0600 Subject: Remove lies from the changelog There wasn't really an Optimus fix. LIES! ALL LIES! --- changelog.yaml | 1 - 1 file changed, 1 deletion(-) (limited to 'changelog.yaml') diff --git a/changelog.yaml b/changelog.yaml index 38b8f755..0e41abdd 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -11,7 +11,6 @@ - Added a tray icon for the console window. - Fixed instances getting deselected after FTB instances are loaded (or whenever the model is reset). - Implemented proxy settings. - - Added a hack to fix NVidia Optimus using the wrong graphics card. - Fixed sorting of Java installations in the Java list. - Jar files are now distributed separately, rather than being extracted from the binary at runtime. - Added additional information to the about dialog. -- cgit From 7d74c9bc2574609470c886b1c4cf1a4776e8d70a Mon Sep 17 00:00:00 2001 From: Forkk Date: Wed, 8 Jan 2014 22:50:08 -0600 Subject: Change the issue tracker URL to GitHub issues Bump hotfix version number and add an entry in the changelog. --- CMakeLists.txt | 2 +- changelog.yaml | 2 ++ gui/MainWindow.cpp | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) (limited to 'changelog.yaml') diff --git a/CMakeLists.txt b/CMakeLists.txt index 274e4155..425ddf5f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -91,7 +91,7 @@ SET(MultiMC_NEWS_RSS_URL "http://multimc.org/rss.xml" CACHE STRING "URL to fetch ######## Set version numbers ######## SET(MultiMC_VERSION_MAJOR 0) SET(MultiMC_VERSION_MINOR 1) -SET(MultiMC_VERSION_HOTFIX 0) +SET(MultiMC_VERSION_HOTFIX 1) # Build number SET(MultiMC_VERSION_BUILD -1 CACHE STRING "Build number. -1 for no build number.") diff --git a/changelog.yaml b/changelog.yaml index 0e41abdd..82dccd69 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -14,4 +14,6 @@ - Fixed sorting of Java installations in the Java list. - Jar files are now distributed separately, rather than being extracted from the binary at runtime. - Added additional information to the about dialog. +0.1.1: + - Hotfix - Changed the issue tracker URL to [GitHub issues](https://github.com/MultiMC/MultiMC5/issues). diff --git a/gui/MainWindow.cpp b/gui/MainWindow.cpp index 69cdf602..31e4b9e4 100644 --- a/gui/MainWindow.cpp +++ b/gui/MainWindow.cpp @@ -857,7 +857,7 @@ void MainWindow::on_actionManageAccounts_triggered() void MainWindow::on_actionReportBug_triggered() { - openWebPage(QUrl("http://multimc.myjetbrains.com/youtrack/dashboard#newissue=yes")); + openWebPage(QUrl("https://github.com/MultiMC/MultiMC5/issues")); } void MainWindow::on_actionMoreNews_triggered() -- cgit