Matrix room/space, a bit more rebranding

This commit is contained in:
swirl 2021-12-24 14:28:54 -05:00
parent df7f5754b6
commit a254467184
No known key found for this signature in database
GPG Key ID: 46507311CD292A08
11 changed files with 45 additions and 33 deletions

View File

@ -1,5 +1,5 @@
blank_issues_enabled: true blank_issues_enabled: true
contact_links: contact_links:
- name: PolyMC Discord - name: PolyMC Matrix Support Room
url: https://example.com url: https://matrix.to/#/#support:polymc.org
about: Please ask for support here before opening an issue. about: Please ask for support here before opening an issue.

View File

@ -16,6 +16,8 @@ This is a **fork** of the MultiMC Launcher and not endorsed by MultiMC. The Poly
- [ ] Packaging for MacOS/Windows - [ ] Packaging for MacOS/Windows
- [ ] Stop relying on MultiMC-Hosted metadata services - [ ] Stop relying on MultiMC-Hosted metadata services
- [ ] Remove references to MultiMC - [ ] Remove references to MultiMC
- [ ] Change up packaging, remove the install script junk
- [ ] AppImage, Flatpak, .deb, ebuild, and AUR packages
- [ ] Meson - [ ] Meson
- [x] Long-term solution for the MSA client ID issue - [x] Long-term solution for the MSA client ID issue
- [x] Figure out a way to switch to GPL. - [x] Figure out a way to switch to GPL.
@ -48,6 +50,17 @@ TODO
## Forking/Redistributing/Custom builds policy ## Forking/Redistributing/Custom builds policy
Do whatever you want, we don't care. Just follow the license. If you have any questions about this feel free to ask in an issue. Do whatever you want, we don't care. Just follow the license. If you have any questions about this feel free to ask in an issue.
## Help & Support
Feel free to create an issue if you need help. However, you should always ask the Matrix room. Be sure to enable spaces first (Settings -> Labs -> Spaces), and then you may join the space:
<a href="https://matrix.to/#/#polymc:polymc.org" alt="PolyMC Matrix Space"><img src="https://img.shields.io/badge/matrix-%23polymc:polymc.org-brightgreen.svg"></a>
If this doesn't work for you, then you may simply join the support room:
<a href="https://matrix.to/#/#support:polymc.org" alt="Matrix Room"><img src="https://img.shields.io/badge/matrix-%23support:polymc.org-brightgreen.svg"></a>
Discord will be made soon.
## Copyright ## Copyright
Copyright 2013-2021 MultiMC contributors Copyright 2013-2021 MultiMC contributors
Copyright 2021 PolyMC contributors Copyright 2021 PolyMC contributors

View File

@ -1,17 +1,17 @@
Name: MultiMC5 Name: PolyMC
Version: 1.4 Version: 1.4
Release: 3%{?dist} Release: 3%{?dist}
Summary: A local install wrapper for MultiMC Summary: A local install wrapper for PolyMC
License: ASL 2.0 License: ASL 2.0
URL: https://multimc.org URL: https://polymc.org
BuildArch: x86_64 BuildArch: x86_64
Requires: zenity qt5-qtbase wget xrandr Requires: zenity qt5-qtbase wget xrandr
Provides: multimc MultiMC multimc5 Provides: polymc PolyMC polymc5
%description %description
A local install wrapper for MultiMC A local install wrapper for PolyMC
%prep %prep
@ -19,24 +19,24 @@ A local install wrapper for MultiMC
%build %build
%install %install
mkdir -p %{buildroot}/opt/multimc mkdir -p %{buildroot}/opt/polymc
install -m 0644 ../ubuntu/multimc/opt/multimc/icon.svg %{buildroot}/opt/multimc/icon.svg install -m 0644 ../ubuntu/polymc/opt/polymc/icon.svg %{buildroot}/opt/polymc/icon.svg
install -m 0755 ../ubuntu/multimc/opt/multimc/run.sh %{buildroot}/opt/multimc/run.sh install -m 0755 ../ubuntu/polymc/opt/polymc/run.sh %{buildroot}/opt/polymc/run.sh
mkdir -p %{buildroot}/%{_datadir}/applications mkdir -p %{buildroot}/%{_datadir}/applications
install -m 0644 ../ubuntu/multimc/usr/share/applications/multimc.desktop %{buildroot}/%{_datadir}/applications/multimc.desktop install -m 0644 ../ubuntu/polymc/usr/share/applications/polymc.desktop %{buildroot}/%{_datadir}/applications/polymc.desktop
mkdir -p %{buildroot}/%{_datadir}/metainfo mkdir -p %{buildroot}/%{_datadir}/metainfo
install -m 0644 ../ubuntu/multimc/usr/share/metainfo/multimc.metainfo.xml %{buildroot}/%{_datadir}/metainfo/multimc.metainfo.xml install -m 0644 ../ubuntu/polymc/usr/share/metainfo/polymc.metainfo.xml %{buildroot}/%{_datadir}/metainfo/polymc.metainfo.xml
mkdir -p %{buildroot}/%{_mandir}/man1 mkdir -p %{buildroot}/%{_mandir}/man1
install -m 0644 ../ubuntu/multimc/usr/share/man/man1/multimc.1 %{buildroot}/%{_mandir}/man1/multimc.1 install -m 0644 ../ubuntu/polymc/usr/share/man/man1/polymc.1 %{buildroot}/%{_mandir}/man1/polymc.1
%files %files
%dir /opt/multimc %dir /opt/polymc
/opt/multimc/icon.svg /opt/polymc/icon.svg
/opt/multimc/run.sh /opt/polymc/run.sh
%{_datadir}/applications/multimc.desktop %{_datadir}/applications/polymc.desktop
%{_datadir}/metainfo/multimc.metainfo.xml %{_datadir}/metainfo/polymc.metainfo.xml
%dir /usr/share/man/man1 %dir /usr/share/man/man1
%{_mandir}/man1/multimc.1.gz %{_mandir}/man1/polymc.1.gz
%changelog %changelog
* Sun Oct 03 2021 imperatorstorm <30777770+ImperatorStorm@users.noreply.github.com> * Sun Oct 03 2021 imperatorstorm <30777770+ImperatorStorm@users.noreply.github.com>

View File

@ -1,14 +1,14 @@
# What is this? # What is this?
A simple Ubuntu package for MultiMC that contains a script that downloads and installs real MultiMC on Ubuntu based systems. A simple Ubuntu package for PolyMC that contains a script that downloads and installs real PolyMC on Ubuntu based systems.
It contains a `.desktop` file, an icon, and a simple script that does the heavy lifting. It contains a `.desktop` file, an icon, and a simple script that does the heavy lifting.
This is also the source for the files in the [RPM package](../rpm). If you rename, create or delete files here, you'll likely also have to update the RPM spec file there. This is also the source for the files in the [RPM package](../rpm). If you rename, create or delete files here, you'll likely also have to update the RPM spec file there.
# How to build this? # How to build this?
You need dpkg utils. Rename the `multimc` folder to `multimc_1.6-1` and then run: You need dpkg utils. Rename the `polymc` folder to `polymc_1.6-1` and then run:
``` ```
fakeroot dpkg-deb --build multimc_1.6-1 fakeroot dpkg-deb --build polymc_1.6-1
``` ```
Replace the version with whatever is appropriate. Replace the version with whatever is appropriate.

View File

@ -1,4 +1,4 @@
Package: multimc Package: polymc
Version: 1.6-2 Version: 1.6-2
Architecture: all Architecture: all
Maintainer: Petr Mrázek <peterix@gmail.com> Maintainer: Petr Mrázek <peterix@gmail.com>
@ -7,6 +7,5 @@ Priority: optional
Installed-Size: 75 Installed-Size: 75
Depends: zenity, desktop-file-utils, libqt5widgets5, libqt5gui5, libqt5network5, libqt5core5a, libqt5xml5, libqt5concurrent5, wget Depends: zenity, desktop-file-utils, libqt5widgets5, libqt5gui5, libqt5network5, libqt5core5a, libqt5xml5, libqt5concurrent5, wget
Recommends: openjdk-8-jre Recommends: openjdk-8-jre
Homepage: http://multimc.org Homepage: http://polymc.org
Description: A local install wrapper for MultiMC Description: A local install wrapper for PolyMC

View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
INSTDIR="${XDG_DATA_HOME-$HOME/.local/share}/multimc" INSTDIR="${XDG_DATA_HOME-$HOME/.local/share}/polymc"
if [ `getconf LONG_BIT` = "64" ] if [ `getconf LONG_BIT` = "64" ]
then then

View File

@ -23,25 +23,25 @@
</description> </description>
<screenshots> <screenshots>
<screenshot type="default"> <screenshot type="default">
<image type="source" width="936" height="921">https://multimc.org/images/screenshots/main.png</image> <image type="source" width="936" height="921">https://polymc.org/images/screenshots/main.png</image>
</screenshot> </screenshot>
<screenshot> <screenshot>
<image type="source" width="936" height="998">https://multimc.org/images/screenshots/editmods.png</image> <image type="source" width="936" height="998">https://polymc.org/images/screenshots/editmods.png</image>
</screenshot> </screenshot>
<screenshot> <screenshot>
<image type="source" width="936" height="998">https://multimc.org/images/screenshots/version.png</image> <image type="source" width="936" height="998">https://polymc.org/images/screenshots/version.png</image>
</screenshot> </screenshot>
<screenshot> <screenshot>
<image type="source" width="936" height="998">https://multimc.org/images/screenshots/console.png</image> <image type="source" width="936" height="998">https://polymc.org/images/screenshots/console.png</image>
</screenshot> </screenshot>
<screenshot> <screenshot>
<image type="source" width="936" height="921">https://multimc.org/images/screenshots/settings.png</image> <image type="source" width="936" height="921">https://polymc.org/images/screenshots/settings.png</image>
</screenshot> </screenshot>
</screenshots> </screenshots>
<releases> <releases>
<release date="2021-01-07" version="5"/> <release date="2021-01-07" version="5"/>
</releases> </releases>
<url type="homepage">https://multimc.org/</url> <url type="homepage">https://polymc.org/</url>
<url type="help">https://discord.com/invite/0k2zsXGNHs0fE4Wm</url> <url type="help">https://discord.com/invite/0k2zsXGNHs0fE4Wm</url>
<url type="faq">https://github.com/MultiMC/Launcher/wiki/FAQ</url> <url type="faq">https://github.com/MultiMC/Launcher/wiki/FAQ</url>
<url type="bugtracker">https://github.com/MultiMC/Launcher/issues</url> <url type="bugtracker">https://github.com/MultiMC/Launcher/issues</url>